/* =========================================================
   Best4Kids Therapy — stylesheet
   Mobile-first. Light, calm, generous whitespace.
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Colour */
  --paper:       #FCFBF8;   /* warm off-white page */
  --paper-sink:  #F5F2EB;   /* subtle section fill */
  --surface:     #FFFFFF;
  --ink:         #16211F;
  --ink-soft:    #4C5A57;
  --line:        #E6E1D7;

  --brand:       #0E5F55;   /* deep teal — calm, clinical, warm */
  --brand-deep:  #0A453E;
  --brand-tint:  #E2EFEA;
  --brand-wash:  #F1F7F4;

  --sun:         #E08A45;   /* warm apricot accent */
  --sun-tint:    #FBEBDB;

  --focus:       #0E5F55;

  /* Type */
  --font-display: "Domine", Georgia, "Times New Roman", serif;
  --font-body: "Work Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --step--1: clamp(0.82rem, 0.79rem + 0.15vw, 0.9rem);
  --step-0:  clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  --step-1:  clamp(1.15rem, 1.08rem + 0.35vw, 1.35rem);
  --step-2:  clamp(1.4rem, 1.25rem + 0.7vw, 1.85rem);
  --step-3:  clamp(1.75rem, 1.45rem + 1.4vw, 2.6rem);
  --step-4:  clamp(2.15rem, 1.6rem + 2.6vw, 3.6rem);

  /* Space & shape */
  --gutter: 1.25rem;
  --radius-s: 10px;
  --radius:   18px;
  --radius-l: 26px;
  --radius-xl: 38px;

  --shadow-sm: 0 1px 2px rgba(22, 33, 31, .05), 0 6px 16px -10px rgba(22, 33, 31, .18);
  --shadow-md: 0 2px 4px rgba(22, 33, 31, .05), 0 18px 40px -22px rgba(22, 33, 31, .30);

  --bar-h: 4.75rem; /* mobile sticky CTA height */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  /* room for the sticky mobile CTA bar */
  padding-bottom: calc(var(--bar-h) + env(safe-area-inset-bottom, 0px));
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.018em;
  margin: 0 0 .6em;
  text-wrap: balance;
}
h1 { font-size: var(--step-4); }
h2 { font-size: var(--step-3); }
h3 { font-size: var(--step-1); }

p { margin: 0 0 1rem; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--brand); text-underline-offset: 3px; }
img, svg { max-width: 100%; height: auto; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 3px;
  border-radius: 4px;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ---------- Layout helpers ---------- */
.wrap {
  width: min(100% - (var(--gutter) * 2), 1080px);
  margin-inline: auto;
}
.wrap--narrow { max-width: 720px; }

section { padding-block: clamp(3rem, 8vw, 5.5rem); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: var(--step--1);
  font-weight: 600;
  letter-spacing: .09em;
  text-transform: uppercase;
  color: var(--brand);
  margin: 0 0 1rem;
}
.eyebrow::before {
  content: "";
  width: 1.5rem; height: 2px;
  background: var(--sun);
  border-radius: 2px;
}

.lede { font-size: var(--step-1); color: var(--ink-soft); line-height: 1.55; }
.muted { color: var(--ink-soft); }
.small { font-size: var(--step--1); }

.section-head { max-width: 42ch; margin-bottom: clamp(1.75rem, 5vw, 2.75rem); }

.skip {
  position: absolute; left: -9999px;
  background: var(--brand); color: #fff;
  padding: .75rem 1.25rem; border-radius: 0 0 var(--radius-s) 0;
  z-index: 200;
}
.skip:focus { left: 0; top: 0; }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--brand);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  min-height: 3.25rem;
  padding: .85rem 1.5rem;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--btn-bg);
  color: var(--btn-fg);
  font: inherit;
  font-weight: 600;
  font-size: var(--step-0);
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary { box-shadow: var(--shadow-sm); }
.btn--primary:hover { --btn-bg: var(--brand-deep); box-shadow: var(--shadow-md); }

/* Background must come from --btn-bg (not a hard-coded `background`),
   so the inverted variant inside .cta can override it. */
.btn--ghost {
  --btn-bg: var(--surface);
  --btn-fg: var(--brand);
  border-color: var(--line);
}
.btn--ghost:hover { border-color: var(--brand); }

.btn--sm { min-height: 2.75rem; padding: .5rem 1.1rem; font-size: var(--step--1); }
.btn--block { width: 100%; }

.btn-row {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.75rem;
}
@media (min-width: 34rem) {
  .btn-row { flex-direction: row; flex-wrap: wrap; align-items: center; }
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 2.75rem;     /* 44px tap target */
  font-weight: 600;
  text-decoration: none;
}
.link-arrow::after { content: "→"; transition: transform .18s ease; }
.link-arrow:hover::after { transform: translateX(4px); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(252, 251, 248, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease;
}
.site-header[data-scrolled="true"] { border-bottom-color: var(--line); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.25rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding-block: .35rem;   /* keeps the tap target at 44px+ */
  text-decoration: none;
  color: var(--ink);
}
.logo__mark {
  flex: none;
  width: 2.15rem; height: 2.15rem;
  display: grid; place-items: center;
  background: var(--brand);
  border-radius: 12px;
  color: #fff;
}
.logo__mark svg { width: 1.25rem; height: 1.25rem; }
.logo__text { display: flex; flex-direction: column; line-height: 1.05; }
.logo__name { font-family: var(--font-display); font-weight: 600; font-size: 1.06rem; letter-spacing: -.02em; }
.logo__sub { font-size: .625rem; letter-spacing: .16em; text-transform: uppercase; color: var(--ink-soft); }

.nav-desktop { display: none; }
.header-cta { display: none; }

.menu-btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  min-height: 2.75rem;
  padding: .5rem .9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  color: var(--ink);
  font: inherit;
  font-size: var(--step--1);
  font-weight: 600;
  cursor: pointer;
}
.menu-btn__bars { display: grid; gap: 4px; }
.menu-btn__bars span {
  display: block; width: 16px; height: 2px;
  background: var(--ink); border-radius: 2px;
  transition: transform .2s ease, opacity .2s ease;
}
.menu-btn[aria-expanded="true"] .menu-btn__bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-btn[aria-expanded="true"] .menu-btn__bars span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] .menu-btn__bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ---------- Mobile menu sheet ---------- */
.mobile-menu {
  position: fixed;
  inset: 4.25rem 0 0;
  z-index: 99;
  background: var(--paper);
  padding: 1.5rem var(--gutter) 2.5rem;
  overflow-y: auto;
  animation: sheet-in .22s ease both;
}
.mobile-menu[hidden] { display: none; }
@keyframes sheet-in { from { opacity: 0; transform: translateY(-8px); } }

.mobile-menu a.mm-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.05rem .25rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-display);
  font-size: var(--step-2);
  color: var(--ink);
  text-decoration: none;
}
.mobile-menu a.mm-link::after { content: "→"; color: var(--brand); font-family: var(--font-body); }
.mobile-menu a.mm-link[aria-current="page"] { color: var(--brand); }
.mm-foot { margin-top: 2rem; display: grid; gap: .75rem; }
.mm-call { text-align: center; font-size: var(--step--1); color: var(--ink-soft); }
.mm-call a { font-weight: 600; }

body.is-locked { overflow: hidden; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--brand-wash);
  border-bottom-left-radius: var(--radius-xl);
  border-bottom-right-radius: var(--radius-xl);
  overflow: hidden;
  padding-block: clamp(2.5rem, 7vw, 4.5rem) clamp(3rem, 8vw, 5rem);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.hero::before {
  width: 22rem; height: 22rem;
  top: -9rem; right: -8rem;
  background: radial-gradient(circle at 30% 30%, var(--brand-tint), transparent 70%);
}
.hero::after {
  width: 16rem; height: 16rem;
  bottom: -7rem; left: -6rem;
  background: radial-gradient(circle at 60% 40%, var(--sun-tint), transparent 70%);
}
.hero .wrap { position: relative; z-index: 1; }

.hero__grid { display: grid; gap: clamp(2rem, 6vw, 3.5rem); }

.hero h1 .mark {
  position: relative;
  white-space: nowrap;
}
.hero h1 .mark::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: .04em;
  height: .28em;
  background: var(--sun-tint);
  border-radius: 999px;
  z-index: -1;
}

.trust-chips {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1.75rem;
}
.trust-chips li {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .4rem .8rem .4rem .55rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: var(--step--1);
  font-weight: 500;
  color: var(--ink-soft);
}
.trust-chips svg { width: 1rem; height: 1rem; color: var(--brand); flex: none; }

/* Hero panel — abstract, honest, no stock photography */
.hero__panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  box-shadow: var(--shadow-md);
  padding: 1.25rem;
  display: grid;
  gap: .75rem;
}
.panel-row {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem;
  border-radius: var(--radius);
  background: var(--brand-wash);
}
.panel-row:nth-child(2) { background: var(--sun-tint); }
.panel-row__icon {
  flex: none;
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--surface);
  color: var(--brand);
  box-shadow: var(--shadow-sm);
}
.panel-row__icon svg { width: 1.25rem; height: 1.25rem; }
.panel-row strong { display: block; font-size: var(--step-0); }
.panel-row span { font-size: var(--step--1); color: var(--ink-soft); }

/* ---------- Steps ---------- */
.steps { display: grid; gap: 1.25rem; counter-reset: step; }
.step {
  position: relative;
  padding-left: 3.5rem;
  counter-increment: step;
}
.step::before {
  content: counter(step);
  position: absolute;
  left: 0; top: 0;
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
}
.step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 1.24rem; top: 2.9rem; bottom: -1.25rem;
  width: 2px;
  background: linear-gradient(var(--line), transparent);
}
.step h3 { margin-bottom: .3rem; }
.step p { color: var(--ink-soft); }

/* ---------- Cards ---------- */
.card-grid { display: grid; gap: 1rem; }

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: 1.5rem;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card--link:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--brand-tint); }
.card h3 { margin-bottom: .4rem; }
.card p { color: var(--ink-soft); font-size: var(--step-0); }

.card__icon {
  width: 3rem; height: 3rem;
  display: grid; place-items: center;
  border-radius: 14px;
  background: var(--brand-tint);
  color: var(--brand-deep);
  margin-bottom: 1.1rem;
}
.card__icon svg { width: 1.5rem; height: 1.5rem; }
.card:nth-child(even) .card__icon { background: var(--sun-tint); color: #9A5320; }

/* Detailed service card */
.service {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.4rem, 4vw, 2rem);
}
.service__head { display: flex; align-items: center; gap: .9rem; margin-bottom: .9rem; }
.service__head h3 { margin: 0; }
.service ul { display: grid; gap: .55rem; margin-top: 1rem; }
.service li {
  display: flex; gap: .6rem;
  font-size: var(--step--1); color: var(--ink-soft);
}
.service li::before {
  content: "";
  flex: none;
  margin-top: .5rem;
  width: .4rem; height: .4rem;
  border-radius: 50%;
  background: var(--sun);
}

/* ---------- Tinted band ---------- */
.band { background: var(--paper-sink); }
.band--tint { background: var(--brand-wash); }

/* Value list */
.values { display: grid; gap: 1.5rem; }
.value h3 { display: flex; align-items: center; gap: .6rem; margin-bottom: .35rem; }
.value h3 svg { width: 1.35rem; height: 1.35rem; color: var(--brand); flex: none; }
.value p { color: var(--ink-soft); }

/* ---------- Big CTA ---------- */
.cta {
  position: relative;
  background: var(--brand);
  color: #fff;
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 7vw, 3.5rem);
  overflow: hidden;
  text-align: center;
}
.cta::after {
  content: "";
  position: absolute;
  width: 20rem; height: 20rem;
  right: -8rem; bottom: -12rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, .06);
}
.cta > * { position: relative; z-index: 1; }
.cta h2 { color: #fff; }
.cta p { color: rgba(255, 255, 255, .82); max-width: 46ch; margin-inline: auto; }
.cta .btn--primary { --btn-bg: #fff; --btn-fg: var(--brand-deep); }
.cta .btn--primary:hover { --btn-bg: var(--sun-tint); }
.cta .btn-row { justify-content: center; }
.cta .btn--ghost { --btn-bg: transparent; --btn-fg: #fff; border-color: rgba(255,255,255,.4); }
.cta .btn--ghost:hover { border-color: #fff; }

/* ---------- Contact / form ---------- */
.contact-grid { display: grid; gap: 1.75rem; }

.form-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-l);
  padding: clamp(1.25rem, 5vw, 2rem);
  box-shadow: var(--shadow-sm);
}

.field { margin-bottom: 1.1rem; }
.field label {
  display: block;
  font-size: var(--step--1);
  font-weight: 600;
  margin-bottom: .4rem;
}
.field .opt { font-weight: 400; color: var(--ink-soft); }

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 3.25rem;
  padding: .8rem 1rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-s);
  background: var(--paper);
  font: inherit;
  font-size: 1rem; /* >=16px stops iOS zoom-on-focus */
  color: var(--ink);
  transition: border-color .16s ease, box-shadow .16s ease;
}
.field textarea { min-height: 6.5rem; resize: vertical; }
.field select { appearance: none; background-image: none; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px var(--brand-tint);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"] { border-color: #B3261E; }

.error {
  display: none;
  margin-top: .35rem;
  font-size: var(--step--1);
  color: #B3261E;
}
.error.is-shown { display: block; }

.field-row { display: grid; gap: 0; }
@media (min-width: 34rem) {
  .field-row { grid-template-columns: 1fr 1fr; gap: 0 1rem; }
}

.form-note { margin-top: .9rem; text-align: center; font-size: var(--step--1); color: var(--ink-soft); }

.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.form-success {
  text-align: center;
  padding: 1rem 0 .5rem;
}
.form-success__icon {
  width: 3.5rem; height: 3.5rem;
  margin: 0 auto 1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--brand-tint);
  color: var(--brand-deep);
}
.form-success__icon svg { width: 1.75rem; height: 1.75rem; }

/* Contact detail list */
.detail-list { display: grid; gap: 1.1rem; }
.detail {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.detail__icon {
  flex: none;
  width: 2.5rem; height: 2.5rem;
  display: grid; place-items: center;
  border-radius: 12px;
  background: var(--brand-tint);
  color: var(--brand-deep);
}
.detail__icon svg { width: 1.2rem; height: 1.2rem; }
.detail dt { font-size: var(--step--1); font-weight: 600; color: var(--ink-soft); }
.detail dd { margin: 0; font-size: var(--step-0); }
.detail dd a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;          /* 44px tap target */
  font-weight: 600;
  text-decoration: none;
}
.detail dd a:hover { text-decoration: underline; }

/* "What happens next" numbered list */
.next-steps {
  counter-reset: n;
  display: grid;
  gap: .6rem;
  margin: .75rem 0 0;
  padding: 0;
  list-style: none;
}
.next-steps li {
  counter-increment: n;
  display: flex;
  gap: .65rem;
  font-size: var(--step--1);
  color: var(--ink-soft);
  line-height: 1.5;
}
.next-steps li::before {
  content: counter(n);
  flex: none;
  width: 1.4rem; height: 1.4rem;
  margin-top: .1rem;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--surface);
  color: var(--brand-deep);
  font-size: .72rem;
  font-weight: 700;
}

/* ---------- FAQ ---------- */
.faq { display: grid; gap: .6rem; }
.faq details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 1.1rem;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 2rem 1.05rem 0;
  font-weight: 600;
  position: relative;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-size: 1.35rem;
  color: var(--brand);
  line-height: 1;
}
.faq details[open] summary::after { content: "–"; }
.faq details > p {
  padding-bottom: 1.1rem;
  color: var(--ink-soft);
  font-size: var(--step--1);
}

/* ---------- Sticky mobile CTA bar ---------- */
.cta-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 98;
  display: flex;
  gap: .6rem;
  padding: .7rem var(--gutter) calc(.7rem + env(safe-area-inset-bottom, 0px));
  background: rgba(252, 251, 248, .94);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.cta-bar .btn { flex: 1; min-height: 3.25rem; }
.cta-bar .btn--ghost { flex: 0 0 auto; padding-inline: 1.15rem; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--paper-sink);
  border-top: 1px solid var(--line);
  padding-block: clamp(2.5rem, 7vw, 3.5rem) 2rem;
}
.footer-grid { display: grid; gap: 2rem; }
.footer-explore { display: none; }   /* nav is already in the mobile menu */
.footer-grid h4 {
  font-family: var(--font-body);
  font-size: var(--step--1);
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: .75rem;
}
.footer-links { display: grid; gap: .15rem; }
.footer-links a,
.footer-links span {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;          /* 44px tap target */
  color: var(--ink);
  text-decoration: none;
}
.footer-links a:hover { color: var(--brand); text-decoration: underline; }

.footer-bottom {
  margin-top: 2.25rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
  display: grid;
  gap: .5rem;
  font-size: var(--step--1);
  color: var(--ink-soft);
}

/* =========================================================
   Larger screens
   ========================================================= */
@media (min-width: 48rem) {
  .card-grid--2 { grid-template-columns: repeat(2, 1fr); }
  .card-grid--3 { grid-template-columns: repeat(3, 1fr); }
  .values { grid-template-columns: repeat(2, 1fr); gap: 2rem; }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 2rem; }
  .step { padding-left: 0; padding-top: 3.5rem; }
  .step::before { top: 0; }
  .step:not(:last-child)::after {
    left: 3rem; right: -2rem; top: 1.24rem; bottom: auto;
    width: auto; height: 2px;
    background: linear-gradient(90deg, var(--line), transparent);
  }
  .footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .footer-explore { display: block; }
  .footer-bottom { grid-auto-flow: column; justify-content: space-between; align-items: center; }
}

@media (min-width: 62rem) {
  :root { --gutter: 2rem; }

  body { padding-bottom: 0; }          /* sticky bar hidden on desktop */
  .cta-bar { display: none; }
  .menu-btn { display: none; }
  .mobile-menu { display: none !important; }

  .nav-desktop { display: flex; align-items: center; gap: 2rem; }
  .nav-desktop a {
    position: relative;
    color: var(--ink);
    text-decoration: none;
    font-weight: 500;
    padding-block: .35rem;
  }
  .nav-desktop a::after {
    content: "";
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    border-radius: 2px;
    background: var(--sun);
    transform: scaleX(0);
    transition: transform .18s ease;
  }
  .nav-desktop a:hover::after,
  .nav-desktop a[aria-current="page"]::after { transform: scaleX(1); }

  .header-cta { display: inline-flex; }

  .hero__grid { grid-template-columns: 1.05fr .95fr; align-items: center; }
  .hero__panel { padding: 1.5rem; }

  .contact-grid { grid-template-columns: 1.15fr .85fr; align-items: start; gap: 3rem; }
  .contact-aside { position: sticky; top: 6rem; }
}
