/* ─── TOKENS (Welfit palette) ─── */
:root {
  --blue:         #2794de;
  --blue-deep:    #1a78ba;
  --blue-mid:     #3da5ec;
  --blue-soft:    #81cbff;
  --blue-tint:    #eef8ff;
  --blue-tint-2:  #f6fbff;
  --navy:         #15263a;
  --ink:          #1a2330;
  --ink-soft:     #4a5666;
  --line:         #dbe7f1;
  --line-soft:    #ecf2f8;
  --line-on-blue: rgba(255,255,255,0.22);
  --white:        #ffffff;

  --font-display: "Poppins", system-ui, sans-serif;
  --font-body:    Arial, Helvetica, "Helvetica Neue", sans-serif;

  --radius-sm:    6px;
  --radius-md:    12px;
  --radius-lg:    20px;
  --radius-pill:  999px;

  --maxw:        1240px;
  --gutter:      clamp(20px, 4vw, 56px);
  --ease:        cubic-bezier(.22, 1, .36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: 0; color: inherit; }
::selection { background: var(--blue-soft); color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--ink);
}

/* ─── PRIMITIVES ─── */
.shell {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 26px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.005em;
  transition: background-color .22s var(--ease), color .22s var(--ease), border-color .22s var(--ease), transform .22s var(--ease);
}
.btn--primary  { background: var(--blue); color: var(--white); }
.btn--primary:hover { background: var(--blue-deep); transform: translateY(-1px); }
.btn--ghost    { background: transparent; color: var(--ink); border: 1px solid var(--ink); }
.btn--ghost:hover  { background: var(--ink); color: var(--white); transform: translateY(-1px); }
.btn--invert   { background: var(--white); color: var(--blue); }
.btn--invert:hover { background: var(--blue-tint); transform: translateY(-1px); }
.btn--invert-ghost { background: transparent; color: var(--white); border: 1px solid rgba(255,255,255,0.6); }
.btn--invert-ghost:hover { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn--small   { height: 40px; padding: 0 18px; font-size: 13px; }

/* ─── NAV ─── */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s var(--ease);
}
.nav.is-scrolled { border-bottom-color: var(--line); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.brand img { height: 48px; width: auto; display: block; }

.nav__menu { display: none; gap: 32px; }
.nav__menu a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  letter-spacing: -0.005em;
}
.nav__menu a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%;
  bottom: 0;
  height: 1.5px;
  background: var(--blue);
  transition: right .25s var(--ease);
}
.nav__menu a:hover::after { right: 0; }
.nav__menu a:hover { color: var(--blue); }

.nav__actions {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav__phone {
  display: none;
  align-items: baseline;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink);
  font-weight: 500;
  letter-spacing: -0.01em;
  transition: color .22s var(--ease);
}
.nav__phone:hover { color: var(--blue); }
.nav__phone-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  font-weight: 500;
}

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
  width: 40px;
  height: 40px;
  background: transparent;
  cursor: pointer;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: border-color .22s var(--ease), background-color .22s var(--ease);
}
.nav__toggle:hover { border-color: var(--ink); }
.nav__toggle-bar {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--ink);
  transition: transform .25s var(--ease);
}
.nav.is-open .nav__toggle-bar:nth-child(1) { transform: translateY(3px) rotate(45deg); }
.nav.is-open .nav__toggle-bar:nth-child(2) { transform: translateY(-3px) rotate(-45deg); }

@media (min-width: 920px) {
  .nav__menu { display: flex; }
  .nav__toggle { display: none; }
  .nav__inner { height: 84px; gap: 32px; }
  .brand img { height: 52px; }
}
@media (min-width: 1080px) {
  .nav__phone { display: inline-flex; }
}

.nav__drawer {
  display: none;
  border-top: 1px solid var(--line);
  background: var(--white);
  padding: 20px 0 28px;
}
.nav.is-open .nav__drawer { display: block; }
.nav__drawer-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__drawer-list a {
  display: block;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -0.015em;
  color: var(--ink);
  padding: 10px 0;
  transition: color .22s var(--ease);
}
.nav__drawer-list a:hover { color: var(--blue); }
.nav__drawer-contacts {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-family: var(--font-display);
  font-size: 14px;
}
.nav__drawer-contacts span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  font-weight: 500;
  margin-right: 6px;
}
.nav__drawer-contacts a {
  color: var(--ink);
  padding: 4px 0;
}
.nav__drawer-contacts a:hover { color: var(--blue); }

/* ─── HERO (full-bleed photo + overlay, all viewports) ─── */
.hero {
  position: relative;
  min-height: clamp(620px, 92vh, 920px);
  overflow: hidden;
  isolation: isolate;
  background: var(--navy);
  color: var(--white);
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% 35%;
  display: block;
}
.hero__veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(15, 24, 39, 0.72) 0%,
      rgba(15, 24, 39, 0.45) 38%,
      rgba(15, 24, 39, 0.15) 70%,
      rgba(15, 24, 39, 0.05) 100%
    ),
    linear-gradient(180deg,
      rgba(15, 24, 39, 0.15) 0%,
      rgba(15, 24, 39, 0.10) 45%,
      rgba(15, 24, 39, 0.55) 100%
    );
}

.hero__inner {
  position: relative;
  z-index: 1;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(56px, 8vh, 120px);
  padding-top: clamp(28px, 4vw, 56px);
  padding-bottom: clamp(48px, 6vw, 88px);
}

/* MOBILE — shorter hero so more of the photo's width shows */
@media (max-width: 760px) {
  .hero {
    min-height: clamp(540px, 68vh, 660px);
  }
  .hero__media img {
    object-position: 50% 32%;
  }
  .hero__veil {
    background:
      linear-gradient(180deg,
        rgba(15, 24, 39, 0.30) 0%,
        rgba(15, 24, 39, 0.28) 28%,
        rgba(15, 24, 39, 0.70) 55%,
        rgba(15, 24, 39, 0.92) 85%,
        rgba(15, 24, 39, 0.96) 100%
      );
  }
  .hero__title,
  .hero__tagline,
  .hero__lede {
    text-shadow: 0 2px 16px rgba(15, 24, 39, 0.45);
  }
}
/* Universal: let the meta pill wrap as a safety net on extremely narrow widths. */
.hero__meta-pill { flex-wrap: wrap; }
/* Mobile: shrink pill so the full content fits on one line at 375px+ (iPhone SE up). */
@media (max-width: 540px) {
  .hero__meta-dot { display: none; }
  .hero__meta-pill {
    padding: 7px 13px;
    gap: 3px 11px;
    font-size: 10.5px;
    letter-spacing: 0.01em;
  }
}

.hero__top {
  display: flex;
  align-items: flex-start;
}

.hero__meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 18px;
  background: rgba(255, 255, 255, 0.10);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  backdrop-filter: blur(14px) saturate(140%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.95);
}
.hero__meta-brand { font-weight: 600; color: var(--white); }
.hero__meta-dot {
  width: 3px; height: 3px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
}

.hero__bottom { max-width: 720px; }

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(40px, 6.4vw, 84px);
  line-height: 1.02;
  font-weight: 400;
  letter-spacing: -0.028em;
  color: var(--white);
  max-width: 14ch;
  text-wrap: balance;
}

.hero__tagline {
  margin-top: clamp(20px, 2.5vw, 28px);
  max-width: 28ch;
  font-family: var(--font-display);
  font-size: clamp(17px, 1.5vw, 22px);
  line-height: 1.35;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.95);
}

.hero__lede {
  margin-top: clamp(14px, 1.5vw, 18px);
  max-width: 56ch;
  font-family: var(--font-body);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.75);
}

.hero__actions {
  display: flex;
  gap: 4px 28px;
  margin-top: clamp(32px, 3.5vw, 44px);
  flex-wrap: wrap;
  align-items: center;
}
.hero__actions .btn--primary {
  background: var(--white);
  color: var(--ink);
}
.hero__actions .btn--primary:hover {
  background: var(--blue-tint);
  transform: translateY(-1px);
}
.hero__link {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 4px;
  letter-spacing: -0.005em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  transition: color .22s var(--ease), gap .22s var(--ease), border-color .22s var(--ease);
}
.hero__link:hover {
  color: var(--blue-soft);
  gap: 14px;
  border-color: var(--blue-soft);
}

/* ─── TRUST ─── */
.trust {
  background: var(--blue-tint);
  padding: 22px 0;
}
.trust__row {
  display: flex;
  gap: 14px 40px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
}
.trust__sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: var(--blue);
}
/* When the strip wraps (narrow viewports), the separator dots end up dangling
   at line ends — hide them and let the row gap do the spacing. */
@media (max-width: 720px) {
  .trust__sep { display: none; }
  .trust__row { gap: 6px 24px; }
}

/* ─── SECTIONS ─── */
.section { padding: clamp(72px, 9vw, 128px) 0; }
.section--white { background: var(--white); color: var(--ink); }
.section--tint  { background: var(--blue-tint); color: var(--ink); }
.section--blue  { background: var(--blue); color: var(--white); }
.section--blue h1, .section--blue h2, .section--blue h3, .section--blue h4 { color: var(--white); }

.section__title {
  font-size: clamp(32px, 4.6vw, 56px);
  line-height: 1.06;
  font-weight: 500;
  max-width: 22ch;
}

/* Section heading layouts vary per section */
.section__head--stacked { margin-bottom: clamp(56px, 6vw, 88px); }
.section__head--row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: end;
  margin-bottom: clamp(56px, 6vw, 88px);
}
@media (min-width: 880px) {
  .section__head--row { grid-template-columns: 1.4fr 1fr; gap: 64px; }
}
.section__lede {
  font-size: clamp(15px, 1.1vw, 17px);
  color: var(--ink-soft);
  max-width: 44ch;
  line-height: 1.65;
}
.section--blue .section__lede { color: rgba(255,255,255,0.82); }

/* ─── WHAT TO EXPECT ─── */
.expect-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
}
@media (min-width: 900px) {
  .expect-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
    gap: clamp(64px, 8vw, 128px);
    align-items: start;
  }
  .expect-grid__head { position: sticky; top: 120px; }
}
.expect-grid__eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 24px;
}
.expect-grid__title {
  font-family: var(--font-display);
  font-size: clamp(34px, 4.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--navy);
  margin: 0 0 24px;
  max-width: 16ch;
}
.expect-grid__lede {
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 42ch;
  margin: 0;
}

.expect-flow {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}
.expect-flow::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 12px;
  bottom: 12px;
  width: 1px;
  background: var(--line);
}
.expect-flow__step {
  position: relative;
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: clamp(16px, 2vw, 28px);
  padding: clamp(24px, 3vw, 36px) 0;
}
.expect-flow__step + .expect-flow__step {
  border-top: 1px solid var(--line);
}
.expect-flow__step:first-child { padding-top: 4px; }
.expect-flow__step:last-child { padding-bottom: 4px; }

.expect-flow__index {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--blue);
  margin-top: 6px;
}
.expect-flow__content { min-width: 0; }
.expect-flow__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.25;
  font-weight: 500;
  color: var(--navy);
  margin: 0 0 10px;
  letter-spacing: -0.005em;
}
.expect-flow__body {
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin: 0;
  max-width: 56ch;
}
@media (max-width: 760px) {
  .expect-flow__step { grid-template-columns: 36px 1fr; gap: 14px; }
  .expect-flow::before { left: 8px; }
  .expect-flow__index { width: 22px; height: 22px; font-size: 10px; margin-top: 4px; }
}

/* ─── PRACTICE PHOTO ─── */
.practice { width: 100%; background: var(--line-soft); }
.practice img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: cover;
  display: block;
}

/* ─── CONDITIONS (on blue) — mixed-weight ticker ─── */
.ct { padding-block: clamp(72px, 9vw, 120px); }

.ct__eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin: 0 0 22px;
}
.ct__heading {
  font-family: var(--font-display);
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 24px;
  max-width: 18ch;
}
.ct__lede {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.82);
  margin: 0;
  max-width: 54ch;
}

.ct10__head { margin-bottom: clamp(40px, 5vw, 60px); max-width: 880px; }

/* Static, professional checklist (replaces the old scrolling ticker) */
.ct-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2px;
  max-width: 980px;
}
@media (min-width: 600px) { .ct-list { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: 48px; } }
@media (min-width: 940px) { .ct-list { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
.ct-list__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-size: clamp(16px, 1.3vw, 19px);
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--white);
  padding: 14px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}
.ct-list__item::before {
  content: "\2713";
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

/* ─── PRICING ─── */
.price-list {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--line);
}
.price-row {
  display: grid;
  grid-template-columns: 56px 1fr auto auto;
  align-items: center;
  gap: clamp(16px, 3vw, 36px);
  padding: clamp(26px, 3.5vw, 36px) 0;
  border-bottom: 1px solid var(--line);
  transition: background-color .2s var(--ease);
}
@media (max-width: 640px) {
  .price-row {
    grid-template-columns: 40px 1fr;
    grid-template-areas:
      "num title"
      "num price"
      ".   cta";
    row-gap: 8px;
  }
  .price-row__num   { grid-area: num; align-self: start; padding-top: 4px; }
  .price-row__title { grid-area: title; }
  .price-row__price { grid-area: price; justify-self: start; }
  .price-row__cta   { grid-area: cta; justify-self: start; margin-top: 16px; }
}
.price-row__num {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--blue);
  letter-spacing: 0.04em;
}
.price-row__title {
  font-family: var(--font-display);
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.price-row__title a {
  color: var(--blue);
  text-decoration: underline;
  text-decoration-color: var(--blue-soft);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transition: color .2s var(--ease), text-decoration-color .2s var(--ease);
}
.price-row__title a::after {
  content: " \2192";
  text-decoration: none;
  display: inline-block;
  transition: transform .2s var(--ease);
}
.price-row__title a:hover { color: var(--blue-deep); text-decoration-color: var(--blue-deep); }
.price-row__title a:hover::after { transform: translateX(3px); }
.price-row__dur {
  margin-left: 10px;
  font-size: 0.78em;
  font-weight: 400;
  color: var(--ink-soft);
  font-family: var(--font-body);
  white-space: nowrap;
}
.price-row__price {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.4vw, 32px);
  font-weight: 400;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.price-row__cta {
  align-self: center;
}
.price-fineprint {
  margin-top: 36px;
  max-width: 70ch;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

/* ─── THERAPIST ─── */
.therapist {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 72px);
  align-items: start;
}
@media (min-width: 880px) {
  .therapist { grid-template-columns: 0.9fr 1.1fr; }
}
.therapist__visuals {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.therapist__portrait img {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.therapist__role {
  font-family: var(--font-display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--blue);
}
.therapist__name {
  font-size: clamp(36px, 4.6vw, 60px);
  line-height: 1;
  font-weight: 500;
  margin: 12px 0 6px;
}
.therapist__reg {
  font-family: var(--font-display);
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 28px;
}
.therapist__bio {
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 56ch;
}

/* ─── REVIEWS ─── */
.reviews {
  border-top: 1px solid var(--line);
}
.review {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  padding: clamp(40px, 5vw, 64px) 0;
  border-bottom: 1px solid var(--line);
  align-items: start;
}
@media (min-width: 760px) {
  .review {
    grid-template-columns: 220px 1fr;
    gap: clamp(40px, 5vw, 80px);
  }
}
@media (min-width: 1080px) {
  .review { grid-template-columns: 260px 1fr; }
}
.review__meta {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding-top: 6px;
}
.review__name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.review__condition {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--blue);
}
.review__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 64ch;
}
.review__quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--ink);
  max-width: 24ch;
}
.review__body {
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* ─── VISIT ─── */
.visit-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}
@media (min-width: 880px) {
  .visit-grid { grid-template-columns: 1fr 1fr; }
}
.visit__address {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.45;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--white);
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 28px;
}
.contact-list a {
  font-size: 16px;
  color: var(--white);
  padding: 4px 0;
  border-bottom: 1px solid var(--line-on-blue);
  transition: color .22s var(--ease), border-color .22s var(--ease);
  width: fit-content;
}
.contact-list a:hover { color: var(--blue-tint); border-color: var(--white); }

.hours-label {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  margin-bottom: 16px;
}
.hours { border-top: 1px solid var(--line-on-blue); }
.hours__row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-on-blue);
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 400;
}
.hours__row--closed { color: rgba(255,255,255,0.55); }
.hours__time { font-feature-settings: "tnum"; }

.map {
  margin: clamp(48px, 5vw, 72px) auto 0;
  max-width: 560px;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--line-on-blue);
}
.map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.visit__cta-row {
  margin-top: clamp(40px, 5vw, 64px);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* ─── FOOTER ─── */
.footer {
  background: var(--navy);
  color: var(--white);
  padding: clamp(56px, 6vw, 80px) 0 28px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
@media (min-width: 720px) {
  .footer__grid { grid-template-columns: 2fr 1fr 1fr; }
}
.footer__brand img {
  height: 64px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.92;
}
.footer__tagline {
  margin-top: 18px;
  font-size: 14px;
  max-width: 38ch;
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
}
.footer__heading {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}
.footer__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 15px;
}
.footer__list a:hover { color: var(--blue-soft); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  flex-wrap: wrap;
  gap: 16px;
}

/* ─── SERVICE PAGES ─── */
/* Service intro: single centered column, balanced whitespace */
.service-intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 720px;
  margin-inline: auto;
}
.service-intro .service-cta-row { margin-top: 0; }
.service-intro__head .section__title,
.related-head .section__title { margin-bottom: 16px; }
.prose {
  max-width: 720px;
  margin-top: 0;
}
.prose p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--ink-soft);
  margin-bottom: 18px;
}
.prose p:last-child { margin-bottom: 0; }
.prose strong { color: var(--ink); font-weight: 500; }
.related {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.related a {
  display: inline-block;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius-pill);
  color: var(--ink);
  text-decoration: none;
  font-size: 15px;
  transition: border-color .2s var(--ease), color .2s var(--ease);
}
.related a:hover { border-color: var(--blue); color: var(--blue); }
.service-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

/* ─── NAV DROPDOWN (desktop) ─── */
.nav__dropdown { position: relative; display: inline-flex; align-items: center; }
/* hover bridge so the menu doesn't drop when crossing the gap */
.nav__dropdown::after {
  content: "";
  position: absolute;
  top: 100%; left: -12px; right: -12px;
  height: 14px;
}
.nav__dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 224px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 8px;
  box-shadow: 0 14px 34px rgba(21, 38, 58, 0.12);
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .2s var(--ease), transform .2s var(--ease);
  z-index: 60;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(12px);
}
.nav__dropdown-menu a {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  padding: 9px 12px;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: background-color .18s var(--ease), color .18s var(--ease);
}
.nav__dropdown-menu a::after { display: none; }
.nav__dropdown-menu a:hover { background: var(--blue-tint); color: var(--blue); }

/* ─── NAV DRAWER SUB-LIST (mobile) ─── */
.nav__drawer-sub {
  list-style: none;
  margin: 4px 0 8px;
  padding-left: 16px;
  border-left: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nav__drawer-sub a {
  display: block;
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink-soft);
  padding: 7px 0;
  transition: color .22s var(--ease);
}
.nav__drawer-sub a:hover { color: var(--blue); }
