:root {
  --navy: #173a5c;
  --navy-deep: #10263d;
  --teal: #3f8f8c;
  --teal-bright: #4ea3a0;
  --teal-soft: #d7eceb;
  --cream: #f7f4ee;
  --paper: #fffcf8;
  --ink: #243044;
  --muted: #5c6b7a;
  --line: #e4ddd2;
  --white: #ffffff;
  --shadow: 0 18px 40px rgba(23, 58, 92, 0.12);
  --radius: 22px;
  --max: 1140px;
  --header-h: 76px;
}

* { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 14px);
}
body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
h1, h2, h3, p { overflow-wrap: anywhere; }
a { color: var(--teal); }
.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 8px 12px;
  z-index: 1000;
}
.skip:focus { left: 12px; top: 12px; }

.wrap {
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap { position: relative; }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-h);
  gap: 16px;
  width: 100%;
}
.brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--navy);
  min-width: 0;
  flex: 1 1 auto;
}
.brand-mark {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
}
.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  line-height: 1.05;
}
.brand-script {
  font-family: "Great Vibes", cursive;
  font-size: 1.7rem;
  color: var(--teal);
  line-height: 1;
}
.brand-rest {
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.68rem;
  text-transform: uppercase;
}
.nav {
  display: flex;
  align-items: center;
  gap: 22px;
}
.nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}
.nav a:hover { color: var(--teal); }
.nav a.btn-primary { color: #fff; }
.nav a.btn-primary:hover { color: #fff; background: var(--navy-deep); }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  padding: 12px 22px;
  font: inherit;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary { background: var(--navy); color: #fff; }
.btn-primary:hover { background: var(--navy-deep); color: #fff; }
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover { background: var(--navy); color: #fff; }
.btn-teal { background: var(--teal); color: #fff; }
.btn-teal:hover { background: #347875; color: #fff; }
.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1.5px solid var(--navy);
  border-radius: 10px;
  width: 44px;
  height: 44px;
  padding: 0;
  cursor: pointer;
  flex: 0 0 44px;
  margin-left: auto;
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
  box-shadow: 0 -6px 0 var(--navy), 0 6px 0 var(--navy);
}
html, body {
  overflow-x: hidden;
  max-width: 100%;
  width: 100%;
  min-width: 0;
}
.hero-grid > *, .header-inner { min-width: 0; }

.hero {
  padding: 48px 0 28px;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.kicker {
  font-family: "Great Vibes", cursive;
  font-size: 2.1rem;
  color: var(--teal);
  margin: 0;
}
.learn-line {
  letter-spacing: 0.14em;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  font-size: 0.82rem;
  margin: 4px 0 18px;
  max-width: 100%;
}
.learn-line span { color: var(--teal); }
h1 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2.6rem, 5vw, 4.4rem);
  line-height: 1.05;
  color: var(--navy);
  margin: 0 0 8px;
}
h1 em {
  font-style: italic;
  color: var(--teal);
  font-weight: 500;
  display: block;
  font-size: 0.72em;
}
.lede {
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.4rem, 4.2vw, 2rem);
  color: var(--teal);
  margin: 8px 0 22px;
  line-height: 1.3;
  max-width: 100%;
  overflow-wrap: break-word;
}
.hero p.body {
  font-size: 1.12rem;
  color: var(--muted);
  max-width: 36rem;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 18px;
}
.hero-actions .btn { min-height: 44px; }
.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--navy);
  font-weight: 600;
  font-size: 0.95rem;
}
.meta-row span { display: inline-flex; align-items: center; gap: 8px; }
.portrait-wrap {
  position: relative;
  justify-self: center;
  width: min(400px, 100%);
  max-width: 100%;
  min-width: 0;
}
.portrait {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
  border: 10px solid #fff;
  box-shadow: var(--shadow);
}
.ribbon {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 8px;
  background: var(--navy);
  color: #fff;
  padding: 10px 12px;
  border-radius: 8px;
  text-align: center;
  box-shadow: var(--shadow);
}
.ribbon strong {
  display: block;
  font-family: "Great Vibes", cursive;
  font-size: clamp(1.15rem, 4.5vw, 1.55rem);
  font-weight: 400;
  overflow-wrap: anywhere;
}
.ribbon small {
  display: block;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.65rem;
  color: #cde7e6;
  white-space: normal;
}

.trust {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  padding: 8px 0 40px;
}
.trust-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px 18px;
  text-align: center;
}
.trust-card strong { display: block; color: var(--navy); font-size: 1.15rem; }
.trust-card span { color: var(--muted); font-size: 0.9rem; }

.section { padding: 64px 0; }
.section h2 {
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--navy);
  margin: 0 0 8px;
}
.section-kicker {
  font-family: "Great Vibes", cursive;
  color: var(--teal);
  font-size: 1.8rem;
  margin: 0;
}
.center { text-align: center; }
.sub {
  color: var(--muted);
  max-width: 40rem;
  margin: 0 auto 36px;
}

.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.service {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 24px rgba(23, 58, 92, 0.06);
}
.service img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
}
.service-body { padding: 20px 22px 24px; }
.icon-pill {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal-soft);
  color: var(--teal);
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  margin-bottom: 10px;
}
.service h3 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.2rem;
}
.service p { margin: 0; color: var(--muted); }
.wide { grid-column: span 1; }

.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 40px;
  align-items: center;
}
.checks { list-style: none; padding: 0; margin: 18px 0 0; }
.checks li {
  display: flex;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  font-weight: 600;
  color: var(--navy);
}
.tick {
  color: var(--teal);
  font-weight: 800;
}
.price-card {
  background: var(--navy);
  color: #fff;
  border-radius: 28px;
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.price-card::after {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  right: -40px;
  bottom: -50px;
}
.price-amt {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 5rem;
  line-height: 0.9;
  margin: 8px 0;
}
.price-amt span { font-size: 1.6rem; vertical-align: super; }
.price-card p { color: #cfe3e2; margin: 0 0 18px; }
.badge {
  display: inline-block;
  background: var(--teal);
  color: #fff;
  border-radius: 999px;
  padding: 6px 14px;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.step {
  background: var(--paper);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--line);
}
.step-num {
  color: var(--teal);
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.8rem;
  margin: 0 0 8px;
}
.step h3 { margin: 0 0 8px; color: var(--navy); }
.step p { margin: 0; color: var(--muted); }

.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 42px;
  align-items: center;
}
.about-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 7;
  border-radius: 28px;
  object-fit: cover;
  object-position: 78% center;
  box-shadow: var(--shadow);
}
.quote {
  font-family: "Great Vibes", cursive;
  font-size: 2.1rem;
  color: var(--teal);
  line-height: 1.3;
  margin: 22px 0 0;
}

.locations {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 28px;
}
.loc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
}
.loc h3 { margin: 8px 0; color: var(--navy); }
.loc p { margin: 0; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 32px;
}
.contact-card, form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
}
.contact-card a {
  color: var(--navy);
  font-weight: 700;
  text-decoration: none;
}
.contact-card a:hover { color: var(--teal); }
.contact-line { margin: 12px 0; font-size: 1.05rem; }
label {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 6px;
}
input, select, textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font: inherit;
  font-size: 16px;
  background: #fff;
}
input[type="checkbox"] {
  width: 1.1em;
  height: 1.1em;
  padding: 0;
  flex-shrink: 0;
  accent-color: var(--navy);
}
textarea { min-height: 120px; resize: vertical; }
.checks-inline {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 14px;
  margin: 8px 0 16px;
}
.checks-inline label {
  font-weight: 600;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 12px;
}
.label-like {
  display: block;
  font-weight: 700;
  color: var(--navy);
  margin: 12px 0 6px;
}
.form-note {
  display: none;
  margin-top: 12px;
  padding: 12px;
  border-radius: 12px;
  background: var(--teal-soft);
  color: var(--navy);
  font-weight: 600;
}
.form-note.show { display: block; }

.site-footer {
  background: var(--navy);
  color: #d7e4ef;
  padding: 48px 0 28px;
  margin-top: 24px;
}
.site-footer h2 {
  font-family: "Great Vibes", cursive;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0 0 12px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.site-footer a { color: #cde7e6; }
.tiny { font-size: 0.85rem; color: #9fb4c6; margin-top: 24px; }

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
    position: fixed;
    right: 12px;
    top: 14px;
    transform: none;
    z-index: 100;
  }
  .header-inner { padding-right: 56px; }
  .brand { max-width: 100%; padding-right: 4px; }
  .learn-line { letter-spacing: 0.06em; font-size: 0.7rem; white-space: normal; }
  .lede {
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    font-size: 1.08rem;
    font-style: italic;
    max-width: 100%;
  }
  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px 22px;
    border-bottom: 1px solid var(--line);
    gap: 12px;
  }
  .nav.open { display: flex; }
  .hero-grid, .why-grid, .about-grid, .contact-grid {
    grid-template-columns: minmax(0, 1fr);
  }
  .portrait-wrap { order: -1; width: min(260px, 68vw); max-width: 100%; margin: 0 auto 8px; }
  .ribbon {
    position: static;
    margin-top: 12px;
    left: auto;
    right: auto;
    bottom: auto;
    width: 100%;
  }
  .ribbon strong {
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
  }
  .trust, .services, .steps, .locations, .who-grid {
    grid-template-columns: 1fr 1fr;
  }
  .about-photo {
    aspect-ratio: 4 / 3;
    object-position: 80% center;
  }
  h1 { font-size: clamp(2rem, 8.5vw, 2.8rem); }
  .brand-script { font-size: 1.15rem; }
  .section h2 { font-size: clamp(1.55rem, 7vw, 2.4rem); }
  .wrap { padding-left: 16px; padding-right: 16px; }
}
@media (max-width: 620px) {
  .trust, .services, .steps, .locations, .who-grid { grid-template-columns: 1fr; }
  .hero { padding-top: 16px; }
  .kicker { font-size: 1.55rem; }
  .brand-script { font-size: 1.18rem; }
  .brand-rest { font-size: 0.6rem; }
  .hero p.body { font-size: 1.05rem; max-width: 100%; }
  .meta-row { gap: 8px; flex-direction: column; align-items: flex-start; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .service img { height: 210px; }
  .mobile-cta { display: flex; }
  .mobile-cta.is-hidden { display: none; }
  body { padding-bottom: 88px; }
  .site-footer { padding-bottom: 28px; }
  .checks-inline { grid-template-columns: 1fr; }
  .checks-inline label { white-space: normal; }
  .section { padding: 48px 0; }
  .price-amt { font-size: 4rem; }
}

#why, #about { background: #fff; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
#faq { background: var(--cream); }

.service-plain {
  background:
    radial-gradient(120px 80px at 90% 10%, rgba(63, 143, 140, 0.16), transparent 70%),
    var(--paper);
  min-height: 220px;
  display: flex;
  align-items: flex-end;
}

.who-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.who-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
}
.who-card h3 { margin: 0 0 10px; color: var(--navy); }
.who-card p { margin: 0; color: var(--muted); }

.faq-wrap { max-width: 760px; }
.faq { margin-top: 28px; }
.faq details {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 4px 18px;
  margin-bottom: 10px;
}
.faq summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  padding: 14px 0;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  float: right;
  color: var(--teal);
  font-weight: 400;
  font-size: 1.3rem;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 16px; color: var(--muted); }

.opt { font-weight: 600; color: var(--muted); font-size: 0.9rem; }
.form-error {
  color: #9b2c2c;
  font-weight: 700;
  margin: 10px 0 0;
}
form .btn { margin-top: 16px; }

.mobile-cta {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  gap: 10px;
  padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
  background: rgba(247, 244, 238, 0.96);
  border-top: 1px solid var(--line);
  z-index: 40;
}
.mobile-cta .btn { flex: 1; }

.site-header.is-scrolled { box-shadow: 0 8px 24px rgba(23, 58, 92, 0.08); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
