:root {
  --ink: #18313d;
  --ink-soft: #52656e;
  --blue: #0c5c7d;
  --blue-dark: #073f57;
  --plum: #503548;
  --gold: #c99549;
  --sage: #dfe9e2;
  --mist: #edf3f4;
  --cream: #f7f4ed;
  --white: #fff;
  --line: #d9e1e1;
  --shadow: 0 20px 60px rgba(18, 48, 61, .13);
  --radius: 22px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  left: 1rem;
  top: -5rem;
  z-index: 999;
  padding: .75rem 1rem;
  background: var(--ink);
  color: var(--white);
  border-radius: 8px;
}
.skip-link:focus { top: 1rem; }

.topbar {
  background: var(--blue-dark);
  color: #eaf5f7;
  font-size: .9rem;
}
.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.topbar a { text-decoration: none; font-weight: 700; }
.topbar-links { display: flex; gap: 1.1rem; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.96);
  box-shadow: 0 1px 0 rgba(24,49,61,.1);
  backdrop-filter: blur(14px);
}
.nav-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.brand { flex: 0 0 auto; }
.brand img { width: 205px; height: auto; }
.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a {
  padding: .7rem .8rem;
  color: var(--ink);
  text-decoration: none;
  font-size: .94rem;
  font-weight: 700;
  border-radius: 9px;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--blue); background: var(--mist); }
.site-nav .nav-cta { background: var(--gold); color: #1f2830; margin-left: .45rem; }
.site-nav .nav-cta:hover { background: #d5a75e; color: #172631; }
.menu-toggle {
  display: none;
  border: 0;
  background: var(--mist);
  color: var(--ink);
  border-radius: 10px;
  padding: .65rem .8rem;
  cursor: pointer;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 660px;
  display: grid;
  align-items: center;
  isolation: isolate;
  overflow: hidden;
  background: var(--ink);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("header.jpg") center 38% / cover no-repeat;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(5,31,43,.92) 0%, rgba(7,50,68,.76) 40%, rgba(5,31,43,.18) 70%, rgba(5,31,43,.08) 100%);
}
.hero-inner {
  width: min(calc(100% - 40px), var(--max));
  margin-inline: auto;
  padding: 90px 0;
}
.hero-copy { max-width: 650px; color: var(--white); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .78rem;
  font-weight: 900;
}
.eyebrow::before { content: ""; width: 32px; height: 2px; background: currentColor; }
h1, h2, h3 { margin: 0 0 .7em; line-height: 1.13; letter-spacing: -.025em; }
h1 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.8rem, 6vw, 5.8rem); font-weight: 500; }
h2 { font-family: Georgia, "Times New Roman", serif; font-size: clamp(2.15rem, 4vw, 3.7rem); font-weight: 500; }
h3 { font-size: 1.25rem; }
.hero-lead { max-width: 585px; font-size: clamp(1.08rem, 2vw, 1.3rem); color: #edf5f5; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.8rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  min-height: 50px;
  padding: .8rem 1.15rem;
  border: 2px solid transparent;
  border-radius: 10px;
  background: var(--gold);
  color: #1d2930;
  text-decoration: none;
  font-weight: 850;
  cursor: pointer;
}
.button:hover { transform: translateY(-1px); filter: brightness(1.05); }
.button-secondary { background: transparent; color: var(--white); border-color: rgba(255,255,255,.75); }
.button-blue { background: var(--blue); color: var(--white); }
.button-light { background: var(--white); color: var(--blue-dark); }

.trust-strip { background: var(--cream); border-bottom: 1px solid #e6e0d5; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
}
.trust-item { padding: 24px 18px; border-right: 1px solid #ddd5c9; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; color: var(--plum); font-size: 1rem; }
.trust-item span { color: var(--ink-soft); font-size: .91rem; }

.section { padding: 100px 0; }
.section-soft { background: var(--cream); }
.section-blue { background: var(--blue-dark); color: var(--white); }
.section-mist { background: var(--mist); }
.section-head { max-width: 760px; margin-bottom: 42px; }
.section-head p { color: var(--ink-soft); font-size: 1.08rem; }
.section-blue .section-head p { color: #d7e6ea; }
.kicker { color: var(--blue); text-transform: uppercase; letter-spacing: .12em; font-size: .76rem; font-weight: 900; }
.section-blue .kicker { color: #f1c477; }

.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card-grid-spaced { margin-top: 22px; }
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 330px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(18,48,61,.06);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.card p { color: var(--ink-soft); }
.card-link { margin-top: auto; color: var(--blue); font-weight: 850; text-decoration: none; }
.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 26px;
  border-radius: 14px;
  background: var(--mist);
  color: var(--blue);
  font-size: 1.35rem;
  font-weight: 900;
}

.split { display: grid; grid-template-columns: 1.05fr .95fr; gap: 70px; align-items: center; }
.split-reverse > :first-child { order: 2; }
.photo-panel {
  min-height: 520px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background: #dbe4e3;
  box-shadow: var(--shadow);
}
.photo-panel img { width: 100%; height: 100%; min-height: 520px; object-fit: cover; }
.photo-panel-person { background: linear-gradient(145deg, #e7edeb, #cadbdd); display: grid; place-items: end center; }
.photo-panel-person img { object-fit: contain; min-height: 0; width: auto; height: 88%; }
.quote-card {
  position: absolute;
  left: 24px;
  bottom: 24px;
  max-width: 360px;
  padding: 22px 24px;
  border-radius: 16px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 12px 35px rgba(20,40,52,.18);
}
.quote-card strong { display: block; color: var(--plum); }
.check-list { list-style: none; padding: 0; margin: 1.4rem 0; }
.check-list li { position: relative; padding: .48rem 0 .48rem 2rem; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .42rem;
  width: 1.45rem;
  height: 1.45rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sage);
  color: #23724f;
  font-size: .78rem;
  font-weight: 900;
}

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; counter-reset: step; }
.step { position: relative; padding: 25px 0 0; border-top: 1px solid rgba(255,255,255,.27); counter-increment: step; }
.step::before { content: "0" counter(step); display: block; margin-bottom: 1rem; color: #f0c478; font-family: Georgia, serif; font-size: 2.2rem; }
.step p { color: #d4e2e6; }

.testimonial {
  padding: 45px;
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
  background: var(--white);
  box-shadow: var(--shadow);
}
.testimonial blockquote { margin: 0 0 1rem; font: 1.45rem/1.55 Georgia, serif; color: var(--plum); }
.testimonial cite { font-style: normal; color: var(--ink-soft); font-weight: 700; }

.cta-band { padding: 64px 0; background: var(--plum); color: var(--white); }
.cta-grid { display: grid; grid-template-columns: 1fr auto; gap: 2rem; align-items: center; }
.cta-grid h2 { margin-bottom: .25rem; font-size: clamp(2rem,4vw,3.3rem); }
.cta-grid p { margin: 0; color: #eadfe5; }

.page-hero {
  padding: 95px 0 85px;
  background: linear-gradient(115deg, var(--blue-dark), #0c6786);
  color: var(--white);
}
.page-hero .section-inner { max-width: var(--max); }
.page-hero-copy { max-width: 800px; }
.page-hero h1 { font-size: clamp(2.75rem,6vw,5rem); }
.page-hero p { max-width: 700px; color: #e2edf0; font-size: 1.2rem; }
.breadcrumbs { display: flex; gap: .5rem; margin-bottom: 1.4rem; color: #cfe1e7; font-size: .88rem; }
.breadcrumbs a { color: #fff; }

.service-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
.service-item { padding: 25px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.service-item h3 { margin-bottom: .35rem; }
.service-item p { margin: 0; color: var(--ink-soft); font-size: .96rem; }

.notice {
  padding: 28px;
  border-radius: 18px;
  background: #e7f0f4;
  border-left: 5px solid var(--blue);
}
.notice h3 { color: var(--blue-dark); }
.notice p:last-child { margin-bottom: 0; }
.notice-warm { background: #fbf0dd; border-color: var(--gold); }

.pricing { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 24px; }
.price-card { padding: 34px; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.price { font: 2.2rem Georgia, serif; color: var(--plum); }
.price small { font: .9rem "Segoe UI", sans-serif; color: var(--ink-soft); }

.faq { max-width: 900px; }
.faq details { border-top: 1px solid var(--line); padding: 1.15rem 0; }
.faq details:last-child { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-weight: 800; color: var(--ink); }
.faq details p { color: var(--ink-soft); }

.contact-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 55px; align-items: start; }
.contact-card { padding: 34px; background: var(--blue-dark); color: var(--white); border-radius: var(--radius); }
.contact-card a { color: #fff; text-decoration-thickness: 1px; }
.contact-card dl { margin: 1.7rem 0 0; }
.contact-card dt { color: #a9c7d1; font-size: .82rem; text-transform: uppercase; letter-spacing: .08em; font-weight: 850; }
.contact-card dd { margin: .15rem 0 1.3rem; }
.form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: flex; flex-direction: column; gap: .4rem; }
.field-full { grid-column: 1 / -1; }
.field label { font-weight: 750; font-size: .92rem; }
.field input, .field textarea, .field select {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid #bac8cb;
  border-radius: 9px;
  background: #fff;
  color: var(--ink);
}
.field textarea { min-height: 150px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { outline: 3px solid rgba(12,92,125,.2); border-color: var(--blue); }
.form-note { grid-column: 1 / -1; color: var(--ink-soft); font-size: .83rem; }

.legal { max-width: 900px; }
.legal h2 { margin-top: 2.2rem; font-size: 2rem; }
.legal h3 { margin-top: 1.8rem; }

.site-footer { background: #102d39; color: #d6e2e5; }
.footer-main { padding: 65px 0 44px; }
.footer-inner { display: grid; grid-template-columns: 1.35fr .7fr .8fr 1fr; gap: 45px; }
.footer-logo { width: 210px; padding: 10px; margin-bottom: 1rem; background: #fff; border-radius: 8px; }
.site-footer h3 { color: #fff; font-size: 1rem; }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li { margin: .35rem 0; }
.site-footer a { color: #d6e2e5; text-decoration: none; }
.site-footer a:hover { color: #fff; text-decoration: underline; }
.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,.13); font-size: .82rem; color: #aac0c7; }
.footer-bottom .section-inner { display: flex; justify-content: space-between; gap: 1rem; }

.reveal { opacity: 1; transform: none; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 940px) {
  .menu-toggle { display: inline-flex; }
  .site-nav {
    display: none;
    position: absolute;
    inset: 100% 20px auto;
    flex-direction: column;
    align-items: stretch;
    padding: 14px;
    background: #fff;
    box-shadow: var(--shadow);
    border-radius: 14px;
  }
  .site-nav.open { display: flex; }
  .site-nav .nav-cta { margin: .3rem 0 0; }
  .card-grid, .steps { grid-template-columns: 1fr; }
  .card { min-height: 0; }
  .split, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .split-reverse > :first-child { order: initial; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-item:nth-child(2) { border-right: 0; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 650px) {
  body { font-size: 16px; }
  .topbar-inner { justify-content: center; }
  .topbar-inner > span { display: none; }
  .topbar-links { gap: .75rem; }
  .nav-inner { min-height: 76px; }
  .brand img { width: 160px; }
  .hero { min-height: 650px; }
  .hero::before { background-position: 62% center; }
  .hero::after { background: linear-gradient(90deg, rgba(5,31,43,.93), rgba(5,31,43,.66)); }
  .hero-inner { padding: 75px 0; }
  .hero-actions .button { width: 100%; }
  .section { padding: 72px 0; }
  .trust-grid, .service-list, .pricing, .form { grid-template-columns: 1fr; }
  .trust-item { border-right: 0; border-bottom: 1px solid #ddd5c9; }
  .field-full { grid-column: auto; }
  .photo-panel, .photo-panel img { min-height: 400px; }
  .cta-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom .section-inner { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .reveal { opacity: 1; transform: none; }
}

@media print {
  .topbar, .site-header, .hero-actions, .cta-band, .site-footer, .menu-toggle { display: none !important; }
  body { color: #000; background: #fff; font-size: 11pt; }
  .hero, .page-hero { min-height: 0; padding: 2cm 0 1cm; background: #fff; color: #000; }
  .hero::before, .hero::after { display: none; }
  .hero-copy, .hero-lead, .page-hero p { color: #000; }
  .section { padding: 1cm 0; }
  .card, .price-card, .testimonial { box-shadow: none; break-inside: avoid; }
}
