/* =====================================================================
   HARBORVIEW DENTAL CARE - Premium Home Page (Mock)
   Brand: #d3e3ef  #87b7df  #1a2738  #f4efea  #ffffff
   ===================================================================== */

/* ---------- Tokens ---------- */
:root {
  --cream:   #f4efea;
  --white:   #ffffff;
  --sky:     #d3e3ef;
  --blue:    #87b7df;
  --navy:    #1a2738;
  --accent:  #2575ae;

  --ink:        #1a2738;
  --ink-soft:   rgba(26, 39, 56, 0.66);
  --ink-faint:  rgba(26, 39, 56, 0.42);
  --line:       rgba(26, 39, 56, 0.12);
  --on-dark:        #f4efea;
  --on-dark-soft:   rgba(244, 239, 234, 0.68);
  --on-dark-line:   rgba(244, 239, 234, 0.16);

  --font-display: 'Jost', system-ui, sans-serif;
  --font-body:    'Barlow', system-ui, sans-serif;
  --font-serif:   'Cormorant Garamond', Georgia, serif;

  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);

  --container: 1280px;
  --pad: clamp(1.25rem, 5vw, 3rem);
  --section-y: clamp(5rem, 9vw, 9rem);

  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 11px;

  --shadow-sm: 0 6px 24px -8px rgba(26, 39, 56, 0.18);
  --shadow-md: 0 26px 60px -22px rgba(26, 39, 56, 0.30);
  --shadow-lg: 0 50px 100px -34px rgba(26, 39, 56, 0.45);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.075rem);
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, svg, iframe { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

::selection { background: var(--navy); color: var(--cream); }

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

/* ---------- Typography helpers ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--ink);
}

.serif {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--pad); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--accent);
}
.eyebrow::before {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}
.eyebrow.is-centered::after {
  content: "";
  width: 38px;
  height: 1px;
  background: currentColor;
  opacity: 0.55;
}

.section-head { max-width: 720px; }
.section-head.is-centered { margin-inline: auto; text-align: center; }
.section-head h2 {
  margin-top: 1.4rem;
  font-size: clamp(2.1rem, 1.3rem + 2.7vw, 3.65rem);
}
.section-head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  letter-spacing: 0.005em;
}
.section-head .lead {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 56ch;
}
.section-head.is-centered .lead { margin-inline: auto; }

/* On dark sections */
.is-dark { background: var(--navy); color: var(--on-dark); }
.is-dark h1, .is-dark h2, .is-dark h3, .is-dark h4 { color: var(--on-dark); }
.is-dark .eyebrow { color: var(--blue); }
.is-dark .section-head .lead { color: var(--on-dark-soft); }

/* ---------- Buttons ---------- */
.btn {
  --btn-bg: var(--navy);
  --btn-fg: var(--cream);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1.05rem 1.9rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: 100px;
  border: 1px solid var(--btn-bg);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease),
              background-color 0.45s var(--ease), color 0.45s var(--ease),
              border-color 0.45s var(--ease);
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.45s var(--ease);
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.btn:hover .arrow { transform: translateX(5px); }

.btn--primary { --btn-bg: var(--navy); --btn-fg: var(--cream); }
.btn--primary:hover { background: var(--accent); border-color: var(--accent); }

.btn--accent { --btn-bg: var(--accent); --btn-fg: var(--white); }
.btn--accent:hover { background: var(--navy); border-color: var(--navy); }

.btn--light {
  --btn-bg: var(--cream); --btn-fg: var(--navy);
  border-color: var(--cream);
}
.btn--light:hover { background: var(--white); border-color: var(--white); }

.btn--ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn--ghost:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }

.is-dark .btn--ghost { color: var(--on-dark); border-color: var(--on-dark-line); }
.is-dark .btn--ghost:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

/* Text link with animated underline */
.tlink {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  padding-bottom: 4px;
}
.tlink::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease);
}
.tlink:hover::after { transform: scaleX(1); transform-origin: left; }
.tlink .arrow { transition: transform 0.45s var(--ease); }
.tlink:hover .arrow { transform: translateX(5px); }

/* =====================================================================
   PRELOADER
   ===================================================================== */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: var(--cream);
  transition: opacity 0.8s var(--ease), visibility 0.8s var(--ease);
}
.preloader__inner { display: grid; place-items: center; gap: 1.4rem; }
.preloader img { width: 66px; animation: float-pulse 1.7s var(--ease) infinite; }
.preloader__bar {
  width: 120px; height: 2px;
  background: var(--line);
  overflow: hidden;
}
.preloader__bar::after {
  content: "";
  display: block;
  width: 40%; height: 100%;
  background: var(--accent);
  animation: loadbar 1.2s var(--ease) infinite;
}
@keyframes loadbar {
  0% { transform: translateX(-120%); }
  100% { transform: translateX(360%); }
}
@keyframes float-pulse {
  0%, 100% { transform: translateY(0) scale(1); opacity: 1; }
  50% { transform: translateY(-7px) scale(1.04); opacity: 0.82; }
}
body.loaded .preloader { opacity: 0; visibility: hidden; }

/* Scroll progress */
.progress {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 100%;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  transform: scaleX(0);
  transform-origin: left;
  z-index: 1200;
}

/* =====================================================================
   REVEAL ANIMATIONS
   ===================================================================== */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  transition: opacity 1s var(--ease), transform 1.15s var(--ease);
  transition-delay: calc(var(--i, 0) * 0.09s);
}
.reveal.in-view { opacity: 1; transform: none; }

.reveal-img {
  position: relative;
  overflow: hidden;
}
.reveal-img img {
  clip-path: inset(0 0 100% 0);
  transform: scale(1.16);
  transition: clip-path 1.35s var(--ease), transform 1.7s var(--ease);
}
.reveal-img.in-view img {
  clip-path: inset(0 0 0 0);
  transform: scale(1);
}

/* =====================================================================
   NAV
   ===================================================================== */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.55rem var(--pad);
  transition: background-color 0.5s var(--ease), padding 0.5s var(--ease),
              box-shadow 0.5s var(--ease), backdrop-filter 0.5s var(--ease);
}
.nav--solid {
  background: rgba(244, 239, 234, 0.95);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
  box-shadow: 0 1px 0 var(--line), 0 16px 40px -30px rgba(26, 39, 56, 0.5);
}

.nav__logo { display: block; line-height: 0; }
.nav__logo img {
  height: 40px;
  width: auto;
  transition: height 0.5s var(--ease);
}
.nav__logo .nav__logo-dark { display: none; }
.nav--solid .nav__logo .nav__logo-light { display: none; }
.nav--solid .nav__logo .nav__logo-dark { display: block; }
.nav--solid .nav__logo img { height: 36px; }

.nav__menu {
  display: flex;
  align-items: center;
  gap: 2.4rem;
}
.nav__link {
  position: relative;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.9);
  padding: 4px 0;
  transition: color 0.4s var(--ease);
}
.nav--solid .nav__link { color: var(--ink-soft); }
.nav__link::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease);
}
.nav__link:hover { color: var(--cream); }
.nav--solid .nav__link:hover { color: var(--ink); }
.nav__link:hover::after { transform: scaleX(1); transform-origin: left; }

/* --- Nav dropdown (Services) --- */
.nav__dropdown { position: relative; }
.nav__dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 240px;
  height: 18px;
  pointer-events: auto;
}
.nav__dropdown-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  line-height: 1.4;
}
.nav__dropdown-caret {
  width: 9px;
  height: 6px;
  transition: transform 0.35s var(--ease);
}
.nav__dropdown:hover .nav__dropdown-caret,
.nav__dropdown:focus-within .nav__dropdown-caret,
.nav__dropdown.is-open .nav__dropdown-caret {
  transform: rotate(180deg);
}
.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 250px;
  background: var(--white);
  border-radius: 14px;
  padding: 0.65rem;
  box-shadow: 0 32px 64px -22px rgba(26, 39, 56, 0.28), 0 12px 28px rgba(26, 39, 56, 0.08);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.32s var(--ease), transform 0.32s var(--ease), visibility 0s linear 0.32s;
  z-index: 110;
}
.nav__dropdown-menu::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  width: 12px;
  height: 12px;
  background: var(--white);
  transform: translateX(-50%) rotate(45deg);
  border-top-left-radius: 3px;
}
.nav__dropdown:hover .nav__dropdown-menu,
.nav__dropdown:focus-within .nav__dropdown-menu,
.nav__dropdown.is-open .nav__dropdown-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
  transition-delay: 0s;
}
.nav__dropdown-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.72rem 0.9rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  border-radius: 9px;
  transition: background-color 0.28s var(--ease), color 0.28s var(--ease), padding-left 0.28s var(--ease);
}
.nav__dropdown-link::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--blue);
  opacity: 0.45;
  transition: opacity 0.28s var(--ease), transform 0.28s var(--ease);
}
.nav__dropdown-link:hover {
  background: rgba(135, 183, 223, 0.12);
  color: var(--accent);
  padding-left: 1.05rem;
}
.nav__dropdown-link:hover::before {
  opacity: 1;
  transform: scale(1.25);
}
.nav__dropdown-link.is-current {
  background: rgba(135, 183, 223, 0.10);
  color: var(--accent);
}
.nav__dropdown-link.is-current::before {
  opacity: 1;
  background: var(--accent);
}

.nav__right { display: flex; align-items: center; gap: 1.6rem; }
.nav__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: rgba(244, 239, 234, 0.92);
  transition: color 0.4s var(--ease);
}
.nav--solid .nav__phone { color: var(--ink); }
.nav__phone svg { width: 15px; height: 15px; }

.nav__cta {
  padding: 0.78rem 1.45rem;
  font-size: 0.72rem;
}
.nav .btn { background: var(--accent); border-color: var(--accent); color: var(--white); }
.nav--solid .btn:not(:hover) { background: var(--navy); border-color: var(--navy); }
.nav .btn:hover { background: var(--blue); border-color: var(--blue); color: var(--navy); }

/* Hamburger */
.nav__toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  z-index: 1101;
}
.nav__toggle span {
  position: absolute;
  left: 9px;
  width: 26px; height: 1.6px;
  background: var(--cream);
  transition: transform 0.45s var(--ease), opacity 0.3s var(--ease), background-color 0.4s;
}
.nav--solid .nav__toggle span { background: var(--navy); }
.nav__toggle span:nth-child(1) { top: 16px; }
.nav__toggle span:nth-child(2) { top: 22px; }
.nav__toggle span:nth-child(3) { top: 28px; }
body.menu-open .nav__toggle span { background: var(--cream); }
body.menu-open .nav__toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
body.menu-open .nav__toggle span:nth-child(2) { opacity: 0; }
body.menu-open .nav__toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.4rem;
  padding: var(--pad);
  clip-path: circle(0% at calc(100% - 44px) 44px);
  transition: clip-path 0.7s var(--ease);
  pointer-events: none;
}
body.menu-open .mobile-menu {
  clip-path: circle(150% at calc(100% - 44px) 44px);
  pointer-events: auto;
}
.mobile-menu a,
.mobile-menu .mobile-menu__group {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 9vw, 3.1rem);
  color: var(--cream);
  letter-spacing: -0.01em;
  padding: 0.35rem 0;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s var(--ease), transform 0.6s var(--ease);
}
.mobile-menu .mobile-menu__group {
  cursor: default;
  color: rgba(244, 239, 234, 0.6);
}
body.menu-open .mobile-menu a,
body.menu-open .mobile-menu .mobile-menu__group { opacity: 1; transform: none; }
body.menu-open .mobile-menu > :nth-child(1) { transition-delay: 0.18s; }
body.menu-open .mobile-menu > :nth-child(2) { transition-delay: 0.25s; }
body.menu-open .mobile-menu > :nth-child(3) { transition-delay: 0.32s; }
body.menu-open .mobile-menu > :nth-child(4) { transition-delay: 0.39s; }
body.menu-open .mobile-menu > :nth-child(5) { transition-delay: 0.46s; }
.mobile-menu a em { font-family: var(--font-serif); font-style: italic; color: var(--blue); }
.mobile-menu__foot {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.5s var(--ease) 0.55s, transform 0.6s var(--ease) 0.55s;
}
body.menu-open .mobile-menu__foot { opacity: 1; transform: none; }
.mobile-menu__foot span {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.mobile-menu__foot a { font-size: 1.5rem; font-family: var(--font-display); }

/* Mobile menu - submenu sub-links (under Services) */
.mobile-menu a.mobile-menu__sub-link {
  font-size: clamp(1.05rem, 4.5vw, 1.4rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  padding-left: 1.4rem;
  color: rgba(244, 239, 234, 0.78);
  position: relative;
}
.mobile-menu a.mobile-menu__sub-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 18px;
  height: 1px;
  background: rgba(135, 183, 223, 0.55);
}
body.menu-open .mobile-menu a:nth-child(6) { transition-delay: 0.53s; }
body.menu-open .mobile-menu a:nth-child(7) { transition-delay: 0.60s; }

/* =====================================================================
   HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  padding: 9rem 0 8rem;
  overflow: hidden;
  background: var(--navy);
}
.hero__media {
  position: absolute;
  top: -20%;
  left: 0;
  width: 100%;
  height: 140%;
  z-index: 0;
  will-change: transform;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenburns 7s var(--ease-soft) both;
}
@keyframes kenburns {
  from { transform: scale(1.12); }
  to   { transform: scale(1); }
}
.hero__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(95deg, rgba(26,39,56,0.80) 0%, rgba(26,39,56,0.42) 42%, rgba(26,39,56,0.12) 68%, transparent 88%),
    linear-gradient(180deg, rgba(26,39,56,0.55) 0%, rgba(26,39,56,0.20) 34%, rgba(26,39,56,0.46) 68%, rgba(26,39,56,0.92) 100%),
    radial-gradient(120% 80% at 82% 22%, rgba(135,183,223,0.18), transparent 60%);
}
.hero .container { position: relative; z-index: 2; }

.hero__inner { max-width: 940px; }
.hero .eyebrow { color: var(--blue); }

.hero h1 {
  margin-top: 1.7rem;
  color: var(--cream);
  font-size: clamp(3rem, 1.6rem + 6.2vw, 6.6rem);
  font-weight: 300;
  line-height: 1.04;
}
.hero h1 .line { display: block; }
.hero h1 .word {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: 0.16em 0;
  margin: -0.16em 0;
}
.hero h1 .word.is-open { overflow: visible; }
.hero h1 .word > span {
  display: inline-block;
  transform: translateY(118%);
  transition: transform 1.05s var(--ease);
}
body.loaded .hero h1 .word > span { transform: translateY(0); }
.hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.005em;
}

.hero__sub {
  margin-top: 1.9rem;
  max-width: 50ch;
  font-size: 1.15rem;
  color: rgba(244, 239, 234, 0.86);
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease) 0.7s, transform 1s var(--ease) 0.7s;
}
body.loaded .hero__sub { opacity: 1; transform: none; }

.hero__actions {
  margin-top: 2.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease) 0.86s, transform 1s var(--ease) 0.86s;
}
body.loaded .hero__actions { opacity: 1; transform: none; }
.hero__actions .btn--primary { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.hero__actions .btn--primary:hover { background: var(--blue); border-color: var(--blue); }
.hero__actions .btn--ghost { color: var(--cream); border-color: rgba(244, 239, 234, 0.45); }
.hero__actions .btn--ghost:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }

.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 2rem;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  opacity: 0;
  transition: opacity 0.9s var(--ease) 1.3s;
}
body.loaded .hero__scroll { opacity: 1; }
.hero__scroll span {
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.75);
}
.hero__scroll i {
  width: 1px; height: 52px;
  background: linear-gradient(var(--blue), transparent);
  position: relative;
  overflow: hidden;
}
.hero__scroll i::after {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 40%;
  background: var(--cream);
  animation: scroll-cue 2.1s var(--ease) infinite;
}
@keyframes scroll-cue {
  0% { transform: translateY(-100%); }
  60%, 100% { transform: translateY(280%); }
}

/* =====================================================================
   QUICK INFO (overlaps hero)
   ===================================================================== */
.quick {
  position: relative;
  z-index: 5;
  margin-top: -5.5rem;
}
.quick__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}
.quick__card {
  display: flex;
  gap: 1.1rem;
  padding: 2.1rem 2rem;
  border-right: 1px solid var(--line);
  transition: background-color 0.4s var(--ease);
}
.quick__card:last-child { border-right: none; }
.quick__card:hover { background: var(--cream); }
.quick__ico {
  flex-shrink: 0;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--sky);
  color: var(--accent);
}
.quick__ico svg { width: 20px; height: 20px; }
.quick__card h3 {
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.quick__card p {
  margin-top: 0.35rem;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.5;
}
.quick__card p strong { font-weight: 600; }

/* =====================================================================
   MARQUEE
   ===================================================================== */
.marquee {
  padding: 2.2rem 0;
  background: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 42s linear infinite;
}
.marquee:hover .marquee__track,
.marquee.is-paused .marquee__track { animation-play-state: paused; }
@keyframes marquee {
  to { transform: translateX(-50%); }
}
.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 3.2rem;
  padding-right: 3.2rem;
  font-family: var(--font-display);
  font-size: clamp(1rem, 0.9rem + 0.5vw, 1.35rem);
  font-weight: 300;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  white-space: nowrap;
}
.marquee__item em {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
}
.marquee__dot { color: var(--blue); font-size: 0.9rem; }

/* =====================================================================
   ABOUT
   ===================================================================== */
.about { padding: var(--section-y) 0; background: var(--white); }
.about__grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.about__media {
  position: relative;
  padding-bottom: 3.5rem;
  padding-right: 3.5rem;
}
.about__media .main-img {
  border-radius: var(--r-md);
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}
.about__media .main-img img { width: 100%; height: 100%; object-fit: cover; }
.about__accent {
  position: absolute;
  right: 0; bottom: 0;
  width: 46%;
  border-radius: var(--r-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
}
.about__accent img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; }
.about__badge {
  position: absolute;
  top: 1.6rem; left: -1.6rem;
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-sm);
  padding: 1.1rem 1.3rem;
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about__badge .num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.4rem;
  line-height: 1;
}
.about__badge .lbl {
  margin-top: 0.3rem;
  font-size: 0.62rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

.about__body h2,
.doctor__body h2 {
  margin-top: 1.35rem;
  font-size: clamp(2.1rem, 1.3rem + 2.7vw, 3.65rem);
}

.about__body p.intro {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  line-height: 1.4;
  color: var(--navy);
}
.about__body p.copy {
  margin-top: 1.4rem;
  color: var(--ink-soft);
}
.about__features {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1.6rem;
}
.about__features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.96rem;
  color: var(--ink);
}
.about__features svg { width: 19px; height: 19px; color: var(--accent); flex-shrink: 0; }
.about__sign {
  margin-top: 2.2rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.about__sign .name {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--navy);
}
.about__sign .role {
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* =====================================================================
   STATS BAND
   ===================================================================== */
.stats {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
  background: var(--navy);
  overflow: hidden;
}
.stats__watermark {
  position: absolute;
  right: -60px; top: 50%;
  transform: translateY(-50%);
  width: 320px;
  opacity: 0.05;
  filter: brightness(0) invert(1);
}
.stats__grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.stat { text-align: center; padding: 0.5rem 1rem; position: relative; }
.stat:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  width: 1px; height: 64%;
  background: var(--on-dark-line);
}
.stat__num {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.28rem;
  min-height: 1em;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.6rem, 1.8rem + 2.4vw, 4.2rem);
  line-height: 1;
  color: var(--cream);
}
.stat__num-text {
  font-size: clamp(1.2rem, 0.6rem + 2vw, 2.5rem);
  font-weight: 300;
  line-height: 1.15;
}
.stat__num .unit { color: var(--blue); }
.stat__lbl {
  margin-top: 0.7rem;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

/* =====================================================================
   DOCTOR
   ===================================================================== */
.doctor { padding: clamp(7rem, 12vw, 13rem) 0; background: var(--cream); }
.doctor__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
}
.doctor__media { position: relative; }
.doctor__media .frame {
  border-radius: var(--r-md);
  aspect-ratio: 5 / 6;
  box-shadow: var(--shadow-md);
}
.doctor__media .frame img { width: 100%; height: 100%; object-fit: cover; }
.doctor__media .ring {
  position: absolute;
  inset: -18px;
  border: 1px solid var(--line);
  border-radius: calc(var(--r-md) + 18px);
  z-index: -1;
}
.doctor__quote {
  position: absolute;
  right: -2rem; bottom: 2.5rem;
  max-width: 250px;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 1.5rem 1.6rem;
  box-shadow: var(--shadow-lg);
}
.doctor__quote .mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 3.4rem;
  line-height: 0.4;
  color: var(--blue);
}
.doctor__quote p {
  margin-top: 0.6rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.45;
  color: var(--navy);
}

.doctor__body .section-head h2 { margin-top: 1.2rem; }
.doctor__body .copy { margin-top: 1.5rem; color: var(--ink-soft); }
.doctor__body .copy + .copy { margin-top: 1rem; }
.doctor__creds-label {
  display: block;
  margin-top: 2.1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.doctor__creds {
  margin-top: 0.85rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}
.doctor__creds span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border: 1px solid var(--line);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.doctor__creds span::before {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--blue);
}
.doctor__body .btn { margin-top: 2.2rem; }

/* =====================================================================
   SERVICES
   ===================================================================== */
.services { padding: var(--section-y) 0; }
.services .section-head { display: flex; flex-direction: column; }
.services__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 2rem;
  flex-wrap: wrap;
}
.services__grid {
  margin-top: 3.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.scard {
  position: relative;
  display: flex;
  flex-direction: column;
  background: rgba(244, 239, 234, 0.05);
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: transform 0.6s var(--ease), box-shadow 0.6s var(--ease),
              border-color 0.6s var(--ease);
}
.scard:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(135, 183, 223, 0.5);
}
.scard__media {
  position: relative;
  aspect-ratio: 7 / 5;
  overflow: hidden;
  transform: translateZ(0);
  isolation: isolate;
}
.scard__media img {
  display: block;
  width: 100%; height: 100%;
  object-fit: cover;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 0.6s var(--ease);
  will-change: transform;
  backface-visibility: hidden;
}
.scard:hover .scard__media img { transform: translate3d(0, 0, 0) scale(1.07); }
.scard__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,39,56,0.58) 0%, rgba(26,39,56,0) 22%, rgba(26,39,56,0) 42%, rgba(26,39,56,0.88) 100%);
  pointer-events: none;
  transform: translate3d(0, 0, 0) scale(1);
  transition: transform 0.6s var(--ease);
  will-change: transform;
  backface-visibility: hidden;
}
.scard:hover .scard__media::after { transform: translate3d(0, 0, 0) scale(1.07); }
.scard__num {
  position: absolute;
  top: 1.1rem; left: 1.2rem;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--blue);
}
.scard__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.8rem 1.8rem 2rem;
}
.scard__body h3 {
  font-size: 1.5rem;
  color: var(--cream);
}
.scard__body p {
  margin-top: 0.8rem;
  font-size: 0.96rem;
  color: var(--on-dark-soft);
}
.scard__tags {
  margin-top: 1.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.scard__tags span {
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  background: rgba(135, 183, 223, 0.12);
  color: var(--blue);
}
.scard .tlink {
  margin-top: auto;
  padding-top: 1.5rem;
  color: var(--cream);
}
.scard .tlink::after { background: var(--blue); }

/* =====================================================================
   WHY CHOOSE US
   ===================================================================== */
.why { padding: var(--section-y) 0; background: var(--white); }
.why__grid {
  margin-top: 3.4rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.why__card {
  padding: 2.3rem 1.9rem;
  border-radius: var(--r-md);
  background: var(--cream);
  border: 1px solid transparent;
  transition: transform 0.5s var(--ease), background-color 0.5s var(--ease),
              border-color 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.why__card:hover {
  transform: translateY(-8px);
  background: var(--white);
  border-color: var(--line);
  box-shadow: var(--shadow-md);
}
.why__ico {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--sky);
  color: var(--accent);
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease);
}
.why__card:hover .why__ico { background: var(--navy); color: var(--blue); }
.why__ico svg { width: 26px; height: 26px; }
.why__card h3 {
  margin-top: 1.5rem;
  font-size: 1.28rem;
}
.why__card p {
  margin-top: 0.7rem;
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.why__index {
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  color: var(--ink-faint);
}

/* =====================================================================
   SPECIAL OFFER ($99)
   ===================================================================== */
.special {
  padding: clamp(5.5rem, 11vw, 12rem) 0;
  background: var(--sky);
}
.special .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* The Welcome Offer card */
.offer {
  margin-top: 2.6rem;
  width: 100%;
  max-width: 1060px;
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  background: var(--navy);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(52px) scale(0.975);
  transition: opacity 1.1s var(--ease), transform 1.3s var(--ease);
}
.offer.in-view { opacity: 1; transform: none; }

.offer__visual {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 420px;
  padding: 2.4rem;
  overflow: hidden;
}
.offer__visual > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.offer__visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(158deg, rgba(26,39,56,0.40) 0%, rgba(26,39,56,0.86) 100%);
}

.offer__price {
  position: relative;
  z-index: 2;
  margin: auto 0;
  text-align: center;
  color: var(--cream);
}
.offer__price-cur {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 1.3rem + 1.5vw, 2.7rem);
  color: var(--blue);
  vertical-align: 0.62em;
  margin-right: 0.06em;
}
.offer__price-val {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(5.5rem, 3rem + 9vw, 9.5rem);
  line-height: 0.85;
  letter-spacing: -0.02em;
}
.offer__price-note {
  display: block;
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}

.offer__chip {
  position: relative;
  z-index: 2;
  align-self: flex-start;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: var(--white);
  border-radius: var(--r-sm);
  padding: 0.85rem 1.1rem;
  box-shadow: var(--shadow-md);
}
.offer__chip img { width: 40px; height: 40px; flex-shrink: 0; }
.offer__chip-text { display: flex; flex-direction: column; }
.offer__chip-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.96rem;
  color: var(--navy);
}
.offer__chip-sub {
  margin-top: 0.12rem;
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--ink-soft);
}

.offer__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2.6rem, 4vw, 4.2rem);
  overflow: hidden;
}
.offer__panel h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 1.4rem + 1.9vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.offer__panel h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.offer__panel p {
  margin-top: 1.3rem;
  font-size: 1.02rem;
  color: var(--on-dark-soft);
}
.offer__panel .btn { margin-top: 2rem; align-self: flex-start; }
.offer__note {
  margin-top: 1.1rem;
  font-size: 0.8rem;
  color: rgba(244, 239, 234, 0.5);
}
.offer__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 34%, rgba(244,239,234,0.13) 49%, transparent 64%);
  transform: translateX(-130%);
  pointer-events: none;
}
.offer.in-view .offer__panel::after {
  animation: offer-sheen 1.8s var(--ease) 0.5s both;
}
@keyframes offer-sheen { to { transform: translateX(130%); } }

/* =====================================================================
   CONTACT
   ===================================================================== */
.contact {
  position: relative;
  padding: clamp(6rem, 10vw, 11rem) 0;
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(255,255,255, 0.6) 0%, transparent 60%),
    var(--cream);
  overflow: hidden;
}
.contact__watermark {
  position: absolute;
  left: -100px;
  bottom: -100px;
  width: 380px;
  opacity: 0.06;
  pointer-events: none;
}
.contact__grid {
  position: relative;
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: start;
}

.contact__intro .eyebrow { color: var(--accent); }
.contact__intro h2 {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.3vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.contact__intro h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.contact__intro p {
  margin-top: 1.4rem;
  max-width: 40ch;
  color: var(--ink);
}
.contact__details {
  margin-top: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.05rem;
}
.contact__details li {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-size: 0.97rem;
  color: var(--ink);
}
.contact__details a { color: var(--ink); transition: color 0.35s var(--ease); font-weight: 500; }
.contact__details a:hover { color: var(--accent); }
.contact__details .ico {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(26, 39, 56, 0.32);
  color: var(--navy);
  background: var(--white);
}
.contact__details .ico svg { width: 17px; height: 17px; }

.contact__form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem;
}
.field { position: relative; }
.field--full { grid-column: 1 / -1; }
.field input,
.field textarea {
  width: 100%;
  background: var(--white);
  border: 1.5px solid rgba(26, 39, 56, 0.38);
  border-radius: var(--r-sm);
  padding: 1.7rem 1.15rem 0.7rem;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--navy);
  transition: border-color 0.4s var(--ease), background-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; }
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(135, 183, 223, 0.22);
}
.field label {
  position: absolute;
  left: 1.18rem;
  top: 1.2rem;
  font-size: 1rem;
  color: var(--ink);
  pointer-events: none;
  transform-origin: left top;
  transition: transform 0.3s var(--ease), color 0.3s var(--ease);
}
.field input:focus + label,
.field input:not(:placeholder-shown) + label,
.field textarea:focus + label,
.field textarea:not(:placeholder-shown) + label {
  transform: translateY(-0.7rem) scale(0.72);
  color: var(--accent);
}
.contact__form .btn {
  grid-column: 1 / -1;
  justify-self: start;
  margin-top: 0.4rem;
}

.contact__success { display: none; }
.contact.is-sent .contact__form { display: none; }
.contact.is-sent .contact__success {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  animation: success-in 0.7s var(--ease) both;
}
@keyframes success-in {
  from { opacity: 0; transform: translateY(22px); }
  to { opacity: 1; transform: none; }
}
.contact__success-ico {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--navy);
  color: var(--accent);
}
.contact__success-ico svg { width: 30px; height: 30px; }
.contact__success-ico path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  animation: check-draw 0.6s var(--ease) 0.3s forwards;
}
@keyframes check-draw { to { stroke-dashoffset: 0; } }
.contact__success h3 {
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.9rem;
  color: var(--navy);
}
.contact__success p {
  margin-top: 0.7rem;
  max-width: 38ch;
  color: var(--ink-soft);
}

/* =====================================================================
   ABOUT PAGE
   ===================================================================== */

/* current-page indicator in nav */
.nav__link.is-current { color: var(--ink); }
.nav__link.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
  background: var(--accent);
}
.nav:not(.nav--solid) .nav__link.is-current { color: var(--cream); }
.nav:not(.nav--solid) .nav__link.is-current::after { background: var(--blue); }

/* --- HERO --- */
.about-hero {
  position: relative;
  background:
    radial-gradient(78% 60% at 85% 22%, rgba(135, 183, 223, 0.30) 0%, transparent 65%),
    radial-gradient(60% 55% at 8% 95%, rgba(135, 183, 223, 0.16) 0%, transparent 70%),
    var(--cream);
  padding: clamp(7.5rem, 13vw, 12rem) 0 clamp(5rem, 8vw, 8rem);
  overflow: hidden;
}
.about-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  align-items: center;
}
.about-hero h1 {
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.7rem, 1.4rem + 5vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--navy);
}
.about-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.about-hero__sub {
  margin-top: 2rem;
  max-width: 46ch;
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.about-hero__meta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.about-hero__portrait {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 30px 80px rgba(26, 39, 56, 0.20), 0 12px 30px rgba(26, 39, 56, 0.14);
  width: 100%;
  max-width: 520px;
  justify-self: end;
}
.about-hero__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- STORY (timeline) --- */
.story {
  position: relative;
  background:
    radial-gradient(72% 55% at 50% 12%, rgba(135, 183, 223, 0.28) 0%, transparent 60%),
    radial-gradient(50% 45% at 88% 78%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    radial-gradient(45% 40% at 6% 60%, rgba(135, 183, 223, 0.12) 0%, transparent 65%),
    linear-gradient(180deg, #0e1828 0%, #142033 45%, #0e1828 100%);
  padding: clamp(7rem, 12vw, 12rem) 0;
  color: var(--cream);
  overflow: hidden;
}
.story::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(2px 2px at 12% 22%, rgba(211, 227, 239, 0.45), transparent 60%),
    radial-gradient(2px 2px at 78% 18%, rgba(211, 227, 239, 0.35), transparent 60%),
    radial-gradient(2px 2px at 22% 78%, rgba(211, 227, 239, 0.4), transparent 60%),
    radial-gradient(2px 2px at 86% 62%, rgba(211, 227, 239, 0.3), transparent 60%),
    radial-gradient(1.5px 1.5px at 50% 8%, rgba(211, 227, 239, 0.35), transparent 60%),
    radial-gradient(1.5px 1.5px at 64% 88%, rgba(211, 227, 239, 0.32), transparent 60%);
  opacity: 0.55;
}
.story::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 110px;
  background: linear-gradient(180deg, transparent 0%, rgba(14, 24, 40, 0.0) 30%, rgba(14, 24, 40, 0.6) 100%);
  pointer-events: none;
}
.story > .container {
  position: relative;
  z-index: 1;
}
.story__head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.story .eyebrow { color: var(--blue); }
.story__head h2 {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--cream);
}
.story__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.story__lead {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(244, 239, 234, 0.72);
}
.story__timeline {
  position: relative;
  margin: clamp(3.5rem, 6vw, 5.5rem) auto 0;
  max-width: 1080px;
}
.story__line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(211, 227, 239, 0.18);
  transform: translateX(-0.5px);
}
.story__line-fill {
  position: absolute;
  inset: 0;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(135, 183, 223, 0.55);
  transform-origin: top;
  transform: scaleY(0);
  will-change: transform;
}
.story__milestone {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 84px 1fr;
  align-items: center;
  padding: clamp(2.8rem, 5vw, 4rem) 0;
}
.story__milestone-side {
  grid-row: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.55rem;
  padding: 0 clamp(1.2rem, 2.5vw, 2.4rem);
}
.story__milestone:nth-child(odd) .story__milestone-side {
  grid-column: 1;
  align-items: flex-end;
  text-align: right;
}
.story__milestone:nth-child(even) .story__milestone-side {
  grid-column: 3;
  align-items: flex-start;
  text-align: left;
}
.story__milestone-text {
  grid-row: 1;
  padding: 0 clamp(1.2rem, 2.5vw, 2.4rem);
}
.story__milestone:nth-child(odd) .story__milestone-text {
  grid-column: 3;
  text-align: left;
}
.story__milestone:nth-child(even) .story__milestone-text {
  grid-column: 1;
  text-align: right;
}
.story__chapter {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2rem, 1.3rem + 2.1vw, 3.4rem);
  line-height: 1.02;
  letter-spacing: -0.005em;
  color: var(--blue);
  text-shadow: 0 2px 24px rgba(135, 183, 223, 0.25);
}
.story__chapter-sub {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(211, 227, 239, 0.55);
}
.story__polaroid {
  width: 100%;
  max-width: 230px;
  margin-bottom: 0.4rem;
  background: var(--cream);
  padding: 10px 10px 22px;
  border-radius: 4px;
  box-shadow: 0 30px 60px -18px rgba(0, 0, 0, 0.65), 0 12px 24px rgba(0, 0, 0, 0.35);
  transform: rotate(-1.5deg);
  transition: transform 0.6s var(--ease);
}
.story__milestone:nth-child(even) .story__polaroid {
  transform: rotate(1.5deg);
}
.story__milestone.in-view .story__polaroid {
  transform: rotate(0deg);
}
.story__polaroid img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 2px;
}
.story__marker {
  grid-column: 2;
  grid-row: 1;
  justify-self: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 4px solid rgba(135, 183, 223, 0.35);
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  box-shadow: 0 14px 30px -8px rgba(0, 0, 0, 0.65), 0 0 0 6px rgba(14, 24, 40, 0.6);
  transition: background-color 0.6s var(--ease), border-color 0.6s var(--ease), transform 0.5s var(--ease), box-shadow 0.6s var(--ease);
}
.story__milestone.in-view .story__marker {
  background: var(--blue);
  border-color: rgba(244, 239, 234, 0.7);
  transform: scale(1.08);
  box-shadow: 0 18px 36px -8px rgba(135, 183, 223, 0.55), 0 0 0 6px rgba(14, 24, 40, 0.6), 0 0 28px rgba(135, 183, 223, 0.45);
}
.story__marker-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--navy);
  line-height: 1;
  transition: color 0.6s var(--ease);
}
.story__milestone.in-view .story__marker-num {
  color: var(--cream);
}
.story__milestone-text h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 1.1rem + 1vw, 2rem);
  line-height: 1.18;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.story__milestone-text p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: rgba(244, 239, 234, 0.72);
}

/* --- PHILOSOPHY (pull-quote) --- */
.philosophy {
  position: relative;
  background: var(--sky);
  padding: clamp(6rem, 11vw, 9.5rem) 0;
  text-align: center;
  overflow: hidden;
}
.philosophy__watermark {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 320px;
  opacity: 0.07;
  pointer-events: none;
}
.philosophy .container { position: relative; }
.philosophy__open {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 600;
  font-size: 5.5rem;
  line-height: 0.5;
  color: var(--accent);
  opacity: 0.45;
}
.philosophy__quote {
  max-width: 900px;
  margin: 1.5rem auto 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.5rem, 0.95rem + 1.8vw, 2.6rem);
  line-height: 1.4;
  color: var(--navy);
}
.philosophy__sig {
  margin-top: 3rem;
  font-family: 'Italianno', cursive;
  font-size: clamp(2.6rem, 1.7rem + 2.4vw, 3.8rem);
  line-height: 1;
  color: var(--accent);
}
.philosophy__role {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* --- FIRST VISIT (numbered steps) --- */
.first-visit {
  background: var(--cream);
  padding: clamp(7rem, 12vw, 11rem) 0;
}
.first-visit__head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.first-visit__head h2 {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.4rem);
  line-height: 1.15;
  color: var(--navy);
}
.first-visit__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.first-visit__lead {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.first-visit__steps {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 880px;
  list-style: none;
  padding: 0;
}
.fv-step {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: clamp(1.5rem, 3vw, 3rem);
  align-items: baseline;
  padding: clamp(2rem, 3vw, 2.5rem) 0;
  border-top: 1px solid var(--line);
}
.fv-step:first-child { border-top: 0; padding-top: 0.5rem; }
.fv-step__num {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.6rem, 1.6rem + 3vw, 4.6rem);
  line-height: 0.9;
  color: var(--accent);
  letter-spacing: -0.02em;
}
.fv-step__body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.fv-step__body p {
  margin-top: 0.7rem;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 56ch;
}
.first-visit__essentials {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 800px;
  padding: 2.2rem 1.5rem;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.essentials__label {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.first-visit__essentials ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 0.9rem;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}
.first-visit__essentials li {
  padding: 0.6rem 1.15rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  font-size: 0.9rem;
  color: var(--ink);
}

/* --- SPECS (amenities & technology) --- */
.specs {
  background: var(--navy);
  padding: clamp(7rem, 12vw, 11rem) 0;
  color: var(--cream);
}
.specs__head {
  max-width: 760px;
  margin-inline: auto;
  text-align: center;
}
.specs__head .eyebrow { color: var(--blue); }
.specs__head h2 {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.4rem);
  line-height: 1.15;
  color: var(--cream);
}
.specs__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.specs__columns {
  margin: clamp(3.5rem, 5vw, 4.5rem) auto 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.specs__divider {
  background: var(--on-dark-line);
}
.specs__col h3 {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--blue);
}
.specs__items {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
}
.specs__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.3rem;
  align-items: start;
}
.specs__item-ico {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 1px solid var(--on-dark-line);
  border-radius: 50%;
  color: var(--blue);
}
.specs__item-ico svg { width: 22px; height: 22px; }
.specs__item-ico svg path,
.specs__item-ico svg circle,
.specs__item-ico svg rect {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1s var(--ease);
}
.specs__item.in-view .specs__item-ico svg path,
.specs__item.in-view .specs__item-ico svg circle,
.specs__item.in-view .specs__item-ico svg rect {
  stroke-dashoffset: 0;
  transition-delay: 0.25s;
}
.specs__item h4 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--cream);
}
.specs__item p {
  margin-top: 0.55rem;
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--on-dark-soft);
}

/* --- ABOUT CTA --- */
.about-cta {
  background: var(--cream);
  padding: clamp(6rem, 10vw, 9rem) 0;
  text-align: center;
}
.about-cta__inner {
  max-width: 720px;
  margin-inline: auto;
}
.about-cta h2 {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.4rem);
  line-height: 1.15;
  color: var(--navy);
}
.about-cta h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.about-cta p {
  margin-top: 1.4rem;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.about-cta .btn { margin-top: 2.5rem; }
.about-cta__sig {
  margin-top: 3.2rem;
  font-family: 'Italianno', cursive;
  font-size: clamp(2.6rem, 1.7rem + 2.4vw, 3.8rem);
  line-height: 1;
  color: var(--accent);
}
.about-cta__role {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* --- COASTAL MOMENT --- */
.coast-moment {
  position: relative;
  height: clamp(380px, 52vw, 580px);
  overflow: hidden;
  background: var(--navy);
}
.coast-moment img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 118%;
  object-fit: cover;
  will-change: transform;
}
.coast-moment::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(26,39,56,0.28) 0%, rgba(26,39,56,0.62) 100%),
    radial-gradient(80% 60% at 50% 50%, transparent 30%, rgba(26,39,56,0.25) 100%);
  pointer-events: none;
}
.coast-moment__inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--pad);
  text-align: center;
}
.coast-moment__line {
  max-width: 900px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.55rem, 0.9rem + 1.9vw, 2.7rem);
  line-height: 1.32;
  letter-spacing: -0.005em;
  color: var(--cream);
}
.coast-moment__line em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}

/* --- INTERIOR MOMENT --- */
.interior-moment {
  position: relative;
  height: clamp(300px, 38vw, 480px);
  overflow: hidden;
  background: var(--navy);
}
.interior-moment img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.interior-moment::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 30%;
  background: linear-gradient(180deg, var(--cream) 0%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.interior-moment::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 55%;
  background: linear-gradient(180deg, transparent 0%, var(--navy) 90%);
  pointer-events: none;
  z-index: 2;
}

/* --- ABOUT responsive --- */
@media (max-width: 1080px) {
  .about-hero__grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-hero__portrait {
    max-width: 440px;
    margin: 0 auto;
    justify-self: center;
    aspect-ratio: 4 / 5;
  }
  .specs__columns {
    grid-template-columns: 1fr;
  }
  .specs__divider { display: none; }
}

@media (max-width: 820px) {
  .story__milestone {
    grid-template-columns: 56px 1fr;
    padding: 2.2rem 0;
    align-items: start;
  }
  .story__milestone-side,
  .story__milestone:nth-child(odd) .story__milestone-side,
  .story__milestone:nth-child(even) .story__milestone-side {
    grid-column: 2;
    grid-row: 1;
    padding: 0 0 0 1rem;
    text-align: left;
    align-items: flex-start;
    margin-bottom: 0.8rem;
  }
  .story__milestone-text,
  .story__milestone:nth-child(odd) .story__milestone-text,
  .story__milestone:nth-child(even) .story__milestone-text {
    grid-column: 2;
    grid-row: 2;
    padding: 0 0 0 1rem;
    text-align: left;
  }
  .story__marker {
    grid-column: 1;
    grid-row: 1;
    justify-self: center;
    width: 44px;
    height: 44px;
    border-width: 3px;
  }
  .story__marker-num { font-size: 1.1rem; }
  .story__line, .story__line-fill { left: 27px; }
  .story__chapter { font-size: 1.7rem; }
  .story__polaroid { max-width: 160px; }
  .fv-step {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 0.6rem;
  }
  .fv-step__num { font-size: 2.6rem; }
}

/* =====================================================================
   TESTIMONIALS
   ===================================================================== */
.reviews {
  padding: var(--section-y) 0;
  background: var(--cream);
  overflow: hidden;
}
.reviews__head {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.reviews__stage {
  position: relative;
  margin-top: 3rem;
  max-width: 860px;
  margin-inline: auto;
  min-height: 400px;
}
.review {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
  pointer-events: none;
}
.review.is-active { opacity: 1; transform: none; pointer-events: auto; }
.review__stars {
  color: var(--blue);
  letter-spacing: 0.28em;
  font-size: 0.95rem;
}
.review__text {
  margin-top: 1.6rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.4rem, 1.1rem + 1.3vw, 2.15rem);
  line-height: 1.4;
  color: var(--navy);
}
.review__person {
  margin-top: 1.9rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.review__person img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
}
.review__meta { text-align: left; }
.review__meta .n {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
}
.review__meta .r {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.reviews__nav {
  margin-top: 2.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.4rem;
}
.reviews__dots { display: flex; gap: 0.55rem; }
.reviews__dots button {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--line);
  transition: background-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.reviews__dots button.is-active { background: var(--accent); transform: scale(1.35); }
.reviews__arrow {
  width: 50px; height: 50px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--line);
  color: var(--navy);
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
              border-color 0.4s var(--ease);
}
.reviews__arrow:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.reviews__arrow svg { width: 18px; height: 18px; }

/* Google verified badge */
.reviews__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  margin-top: 1.4rem;
  padding: 0.7rem 1.1rem 0.7rem 0.7rem;
  background: var(--white);
  border-radius: 999px;
  box-shadow: 0 12px 24px -12px rgba(26, 39, 56, 0.25), 0 0 0 1px rgba(26, 39, 56, 0.06);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  text-align: left;
}
.reviews__badge:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 32px -14px rgba(26, 39, 56, 0.3), 0 0 0 1px rgba(135, 183, 223, 0.5);
}
.reviews__badge-g {
  display: grid;
  place-items: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  flex-shrink: 0;
}
.reviews__badge-g svg { width: 20px; height: 20px; }
.reviews__badge-text {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
}
.reviews__badge-line1 {
  display: inline-flex;
  align-items: baseline;
  gap: 0.45rem;
  font-family: var(--font-display);
  color: var(--navy);
  line-height: 1.15;
}
.reviews__badge-line1 strong {
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: -0.005em;
}
.reviews__badge-stars {
  color: #fbbc04;
  font-size: 0.86rem;
  letter-spacing: 0.05em;
}
.reviews__badge-line2 {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Initial-based avatar */
.review__avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(165deg, var(--accent) 0%, var(--navy) 100%);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.35rem;
  letter-spacing: 0.01em;
  box-shadow: 0 6px 14px -6px rgba(37, 117, 174, 0.5);
  flex-shrink: 0;
}

/* Per-review "Posted on Google" line */
.review__meta .r {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.1rem;
}
.review__google-g {
  width: 13px; height: 13px;
  flex-shrink: 0;
}

/* =====================================================================
   CTA
   ===================================================================== */
.cta {
  position: relative;
  padding: clamp(6rem, 12vw, 11rem) 0;
  overflow: hidden;
  background: var(--navy);
}
.cta__media { position: absolute; top: -16%; left: 0; width: 100%; height: 132%; z-index: 0; will-change: transform; }
.cta__media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.cta__veil {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(26,39,56,0.82), rgba(26,39,56,0.62) 50%, rgba(26,39,56,0.88));
}
.cta .container { position: relative; z-index: 2; text-align: center; }
.cta .eyebrow { color: var(--blue); justify-content: center; }
.cta h2 {
  margin-top: 1.5rem;
  color: var(--cream);
  font-size: clamp(2.4rem, 1.5rem + 4vw, 5rem);
}
.cta h2 em { font-family: var(--font-serif); font-style: italic; color: var(--blue); }
.cta p {
  margin-top: 1.4rem;
  margin-inline: auto;
  max-width: 52ch;
  font-size: 1.12rem;
  color: rgba(244, 239, 234, 0.84);
}
.cta__actions {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.cta__actions .btn--ghost { color: var(--cream); border-color: rgba(244, 239, 234, 0.45); }
.cta__actions .btn--ghost:hover { background: var(--cream); color: var(--navy); border-color: var(--cream); }
.cta__phone {
  margin-top: 2.4rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--on-dark-soft);
}
.cta__phone a {
  display: block;
  margin-top: 0.4rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 2rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--cream);
}

/* =====================================================================
   FOOTER
   ===================================================================== */
.footer {
  background: var(--navy);
  color: var(--on-dark-soft);
  padding-top: clamp(4rem, 7vw, 6rem);
}
.footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1.3fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--on-dark-line);
}
.footer__brand img {
  height: 40px;
}
.footer__brand p {
  margin-top: 1.3rem;
  max-width: 34ch;
  font-size: 0.95rem;
  color: var(--on-dark-soft);
}
.footer__social {
  margin-top: 1.6rem;
  display: flex;
  gap: 0.7rem;
}
.footer__social a {
  width: 42px; height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid var(--on-dark-line);
  color: var(--cream);
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease),
              transform 0.4s var(--ease), border-color 0.4s var(--ease);
}
.footer__social a:hover {
  background: var(--blue);
  color: var(--navy);
  border-color: var(--blue);
  transform: translateY(-3px);
}
.footer__social svg { width: 17px; height: 17px; }

.footer__col h4 {
  font-family: var(--font-display);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
}
.footer__col ul { margin-top: 1.3rem; display: flex; flex-direction: column; gap: 0.7rem; }
.footer__col a, .footer__col li {
  font-size: 0.95rem;
  color: var(--on-dark-soft);
  transition: color 0.35s var(--ease);
}
.footer__col a:hover { color: var(--cream); }

.footer__contact .row {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.3rem;
  font-size: 0.95rem;
  color: var(--on-dark-soft);
}
.footer__contact .row:first-of-type { margin-top: 1.3rem; }
.footer__contact .row svg { width: 17px; height: 17px; color: var(--blue); flex-shrink: 0; margin-top: 3px; }
.footer__contact .row strong { color: var(--cream); font-weight: 500; }
.footer__contact .row strong a { color: inherit; }
.footer__contact .row a { color: var(--on-dark-soft); transition: color 0.35s var(--ease); }
.footer__contact .row a:hover { color: var(--cream); }

.footer__directions {
  margin-top: 1.9rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.05rem 1.2rem;
  border: 1px solid var(--on-dark-line);
  border-radius: var(--r-sm);
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.footer__directions:hover {
  background: rgba(244, 239, 234, 0.05);
  border-color: rgba(135, 183, 223, 0.5);
}
.fd__ico {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--navy);
}
.fd__ico svg { width: 19px; height: 19px; }
.fd__txt { display: flex; flex-direction: column; line-height: 1.35; }
.fd__txt strong { color: var(--cream); font-size: 0.98rem; font-weight: 500; }
.fd__txt span { font-size: 0.83rem; color: var(--on-dark-soft); }
.fd__arrow {
  margin-left: auto;
  color: var(--blue);
  font-size: 1.1rem;
  transition: transform 0.4s var(--ease);
}
.footer__directions:hover .fd__arrow { transform: translateX(4px); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding: 1.8rem 0;
  font-size: 0.82rem;
  color: var(--on-dark-soft);
}
.footer__bottom .links { display: flex; gap: 1.5rem; }
.footer__bottom a:hover { color: var(--cream); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1080px) {
  .nav__menu { display: none; }
  .nav__toggle { display: block; }
  .nav__phone { display: none; }
  .nav__cta { display: none; }

  .about__grid,
  .doctor__grid { grid-template-columns: 1fr; }
  .about__media { padding-right: 2.5rem; padding-bottom: 3rem; max-width: 480px; }
  .doctor__media { max-width: 460px; margin-inline: auto; }
  .doctor__quote { right: 0; }
  .services__grid { grid-template-columns: 1fr 1fr; }
  .why__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
  :root { --section-y: clamp(4rem, 12vw, 5.5rem); }

  .quick { margin-top: -3rem; }
  .quick__grid { grid-template-columns: 1fr; }
  .quick__card { border-right: none; border-bottom: 1px solid var(--line); }
  .quick__card:last-child { border-bottom: none; }

  .stats__grid { grid-template-columns: 1fr 1fr; gap: 2rem 1rem; }
  .stat:nth-child(2)::after { display: none; }
  .stat:nth-child(1)::after,
  .stat:nth-child(3)::after { display: none; }

  .services__grid { grid-template-columns: 1fr; }
  .why__grid { grid-template-columns: 1fr; }
  .contact__grid { grid-template-columns: 1fr; gap: 2.6rem; }
  .contact__form { grid-template-columns: 1fr; }

  .footer__top { grid-template-columns: 1fr; }
  .doctor__quote {
    position: relative;
    right: auto; bottom: auto;
    margin-top: 1.4rem;
    max-width: none;
  }
  .about__badge { left: 0; }
  .offer { grid-template-columns: 1fr; }
  .offer__visual { min-height: 300px; }
  .reviews__stage { min-height: 480px; }
}

@media (max-width: 460px) {
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .cta__actions { flex-direction: column; }
  .cta__actions .btn { width: 100%; justify-content: center; }
  .about__features { grid-template-columns: 1fr; }
}

/* =====================================================================
   COSMETIC DENTIST PAGE (page shell; components live in cosmetic.css)
   ===================================================================== */
.page-cosmetic { background: var(--cream); }

/* =====================================================================
   RESTORATIVE DENTIST PAGE
   ===================================================================== */
.page-restorative { background: var(--cream); }

/* --- Hero --- */
.rh-hero {
  position: relative;
  background:
    radial-gradient(60% 50% at 10% 20%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    radial-gradient(50% 45% at 92% 92%, rgba(135, 183, 223, 0.12) 0%, transparent 70%),
    var(--cream);
  padding: clamp(7.5rem, 13vw, 12rem) 0 clamp(5rem, 8vw, 8rem);
  overflow: hidden;
}
.rh-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 5.5rem);
  align-items: center;
}
.rh-hero h1 {
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.5rem, 1.2rem + 5vw, 5.2rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--navy);
  max-width: 16ch;
}
.rh-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.rh-hero__sig {
  display: block;
  margin-top: 1.2rem;
  font-family: 'Italianno', cursive;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.01em;
}
.rh-hero__sub {
  margin-top: 1.6rem;
  max-width: 48ch;
  font-size: 1.12rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.rh-hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.rh-hero__status {
  margin-top: 2.4rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1rem;
  background: var(--white);
  border-radius: 999px;
  border: 1px solid rgba(135, 183, 223, 0.4);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  box-shadow: 0 8px 18px -8px rgba(26, 39, 56, 0.16);
}
.rh-hero__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 3px rgba(135, 183, 223, 0.3);
  animation: rh-pulse 2.4s ease-in-out infinite;
}
@keyframes rh-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(135, 183, 223, 0.3); }
  50%      { box-shadow: 0 0 0 6px rgba(135, 183, 223, 0.15); }
}
.rh-hero__still {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 540px;
}
/* (Old .rh-hero__still-frame / __plate rules removed - the hero's right column
   is now the "case file" composition; see .rxstudio rules at end of file.) */

/* --- Symptom Router (signature) --- */
.symptom {
  background:
    radial-gradient(70% 55% at 50% 12%, rgba(135, 183, 223, 0.22) 0%, transparent 60%),
    radial-gradient(50% 45% at 90% 90%, rgba(135, 183, 223, 0.14) 0%, transparent 65%),
    linear-gradient(180deg, #0e1828 0%, #142033 50%, #0e1828 100%);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
  color: var(--cream);
}
.symptom__head { text-align: center; max-width: 760px; margin-inline: auto; }
.symptom .eyebrow { color: var(--blue); }
.symptom__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 1.4rem + 2.8vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.symptom__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.symptom__lede {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(244, 239, 234, 0.74);
}
.symptom__grid {
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.symptom__tile {
  position: relative;
  text-align: left;
  background: var(--cream);
  border: 1px solid rgba(135, 183, 223, 0.18);
  border-radius: 16px;
  padding: 1.3rem 1.4rem 1.4rem;
  cursor: pointer;
  font-family: inherit;
  color: var(--navy);
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease),
              background-color 0.35s var(--ease), border-color 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: 0 12px 30px -16px rgba(0, 0, 0, 0.45);
}
.symptom__tile:hover {
  transform: translateY(-3px);
  border-color: rgba(135, 183, 223, 0.55);
  box-shadow: 0 20px 40px -18px rgba(0, 0, 0, 0.55);
}
.symptom__tile.is-active {
  background: var(--blue);
  color: var(--navy);
  border-color: var(--blue);
  box-shadow: 0 24px 50px -16px rgba(135, 183, 223, 0.5), 0 0 0 4px rgba(135, 183, 223, 0.25);
  transform: translateY(-3px);
}
.symptom__ico {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(135, 183, 223, 0.16);
  color: var(--accent);
}
.symptom__tile.is-active .symptom__ico { background: rgba(14, 24, 40, 0.16); color: var(--navy); }
.symptom__ico svg { width: 22px; height: 22px; }
.symptom__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.symptom__sub {
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.symptom__tile.is-active .symptom__sub { color: rgba(14, 24, 40, 0.7); }
.symptom__foot {
  margin-top: 2rem;
  text-align: center;
}
.symptom__reset {
  background: none;
  border: 1px solid rgba(135, 183, 223, 0.35);
  border-radius: 999px;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.7rem 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease), background-color 0.35s var(--ease), color 0.35s var(--ease);
}
.symptom__reset.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.symptom__reset:hover { background: rgba(135, 183, 223, 0.14); color: var(--cream); }
/* Urgent skip link - routes acute-pain visitors straight to the emergency lane */
.symptom__urgent {
  display: block;
  margin-bottom: 1.1rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 4px;
  transition: color 0.35s var(--ease);
}
.symptom__urgent:hover { color: var(--cream); }
/* Light-background variant of the reset button, shown inside the chapters head */
.chapters__reset {
  margin-top: 1.4rem;
  border-color: rgba(26, 39, 56, 0.25);
  color: var(--accent);
}
.chapters__reset:hover { background: rgba(135, 183, 223, 0.18); color: var(--navy); }

/* --- Reassurance Strip --- */
/* --- Reassurance Strip (overhauled - see also new .assure__head, .assure__icon, .assure__h, .assure__sub, .assure__item--stat rules at end of file) --- */
.assure {
  background:
    radial-gradient(60% 55% at 0% 0%, rgba(255,255,255, 0.6) 0%, transparent 60%),
    radial-gradient(50% 50% at 100% 100%, rgba(26, 39, 56, 0.06) 0%, transparent 65%),
    var(--sky);
  padding: clamp(4rem, 7vw, 6.5rem) 0;
  position: relative;
}
.assure::before,
.assure::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 39, 56, 0.18) 20%, rgba(26, 39, 56, 0.18) 80%, transparent);
}
.assure::before { top: 0; }
.assure::after { bottom: 0; }
.assure__row {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(0.8rem, 1.4vw, 1.4rem);
  align-items: stretch;
}
.assure__item {
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(26, 39, 56, 0.12);
  border-radius: var(--r-md);
  padding: clamp(1.4rem, 1.8vw, 1.8rem) clamp(1rem, 1.6vw, 1.4rem) clamp(1.4rem, 1.8vw, 1.7rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.65rem;
  position: relative;
  transition: transform 0.4s var(--ease), background 0.4s var(--ease), border-color 0.4s var(--ease);
}
.assure__item:hover {
  background: rgba(255, 255, 255, 0.85);
  border-color: rgba(26, 39, 56, 0.22);
  transform: translateY(-2px);
}

/* --- Treatment Chapters --- */
.chapters {
  background: var(--cream);
  padding: clamp(7rem, 12vw, 11rem) 0;
}
.chapters__head { text-align: center; max-width: 780px; margin-inline: auto; }
.chapters__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 1.4rem + 2.8vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.chapters__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.chapters__lede {
  margin-top: 1.3rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.chapters__list {
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  list-style: none;
  padding: 0;
  max-width: 1080px;
}
.chapter {
  position: relative;
  display: grid;
  grid-template-columns: 130px 1.4fr 200px 240px;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.6rem);
  padding: clamp(1.6rem, 3vw, 2.4rem) 0;
  border-top: 1px solid rgba(26, 39, 56, 0.12);
  transition: opacity 0.45s var(--ease);
}
.chapter:last-child { border-bottom: 1px solid rgba(26, 39, 56, 0.12); }
.chapter.is-dimmed { opacity: 0.32; }
.chapter__index { position: relative; }
.chapter__num {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(3rem, 2rem + 2.5vw, 4.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.chapter__rec {
  display: inline-flex;
  align-items: center;
  margin-top: 0.6rem;
  padding: 0.32rem 0.7rem;
  background: rgba(135, 183, 223, 0.18);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(4px);
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0s linear 0.35s;
}
.chapter.is-matched .chapter__rec {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: none;
  transition: opacity 0.35s var(--ease), transform 0.35s var(--ease), visibility 0s linear 0s;
}
.chapter__body h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 2rem);
  line-height: 1.15;
  letter-spacing: -0.008em;
  color: var(--navy);
}
.chapter__body p {
  margin-top: 0.7rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 48ch;
}
.chapter__media {
  aspect-ratio: 5 / 4;
  border-radius: 12px;
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(135, 183, 223, 0.22) 0%, rgba(135, 183, 223, 0.05) 55%, rgba(255, 255, 255, 0) 100%),
    var(--cream);
  border: 1px solid rgba(135, 183, 223, 0.28);
  box-shadow:
    0 14px 26px -18px rgba(26, 39, 56, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.6);
  display: grid;
  place-items: center;
  padding: 1.1rem;
  position: relative;
  overflow: hidden;
}
.chapter__media::before {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 8px;
  border: 1px dashed rgba(135, 183, 223, 0.35);
  pointer-events: none;
}
.chapter__media svg {
  width: 72%;
  max-width: 200px;
  height: auto;
  color: var(--navy);
  filter: drop-shadow(0 8px 14px rgba(26, 39, 56, 0.12));
}
.chapter__media svg .accent { stroke: var(--accent); }
.chapter__media svg .soft   { stroke: rgba(26, 39, 56, 0.32); }
.chapter__media svg .fill-cream { fill: var(--cream); }
.chapter__media svg .fill-sky   { fill: rgba(135, 183, 223, 0.32); }
.chapter__media svg .fill-accent { fill: var(--accent); }
.chapter__media svg .no-fill { fill: none; }
.chapter:nth-child(2n) .chapter__media {
  background:
    radial-gradient(120% 100% at 50% 0%, rgba(135, 183, 223, 0.32) 0%, rgba(135, 183, 223, 0.06) 60%, rgba(255, 255, 255, 0) 100%),
    var(--cream);
}
.chapter:nth-child(3n) .chapter__media {
  background:
    radial-gradient(120% 100% at 50% 100%, rgba(135, 183, 223, 0.20) 0%, rgba(255, 255, 255, 0) 60%),
    var(--cream);
}
@media (max-width: 720px) {
  .chapter__media { aspect-ratio: 16 / 9; padding: 0.9rem; }
  .chapter__media svg { max-width: 160px; }
}
/* Treatment chapter pricing anchor */
.chapter__price {
  display: inline-flex;
  align-items: baseline;
  gap: 0.55rem;
  margin-top: 0.85rem;
  padding: 0.42rem 0.78rem;
  background: rgba(244, 239, 234, 0.7);
  border: 1px solid rgba(26, 39, 56, 0.08);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--navy);
}
.chapter__price strong {
  font-weight: 500;
  color: var(--navy);
}
.chapter__price em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: 0.96em;
  letter-spacing: 0.005em;
}
.chapter__price-sep {
  width: 1px;
  height: 0.85em;
  background: rgba(26, 39, 56, 0.18);
  display: inline-block;
  margin: 0 0.05rem;
}
.chapter__facts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem 1rem;
  margin: 0;
}
.chapter__facts > div {
  display: flex;
  flex-direction: column;
  padding: 0.55rem 0.65rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 4px 12px -8px rgba(26, 39, 56, 0.2);
}
.chapter__facts dt {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.chapter__facts dd {
  margin: 0.18rem 0 0;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--navy);
}

/* --- Technology Bench --- */
.tech-bench {
  position: relative;
  background:
    radial-gradient(60% 55% at 15% 20%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    radial-gradient(50% 45% at 88% 88%, rgba(135, 183, 223, 0.12) 0%, transparent 70%),
    linear-gradient(180deg, #0e1828 0%, #142033 50%, #0e1828 100%);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
  color: var(--cream);
}
.tech-bench__head { text-align: center; max-width: 780px; margin-inline: auto; }
.tech-bench .eyebrow { color: var(--blue); }
.tech-bench__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.tech-bench__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.tech-bench__lede {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(244, 239, 234, 0.74);
}
.tech-bench__stage {
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}
.tech-bench__photo {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 16 / 11;
  box-shadow: 0 30px 60px -22px rgba(0, 0, 0, 0.55);
}
.tech-bench__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.92);
}
.tech-bench__hotspot {
  position: absolute;
  left: var(--x); top: var(--y);
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  border: 2px solid var(--cream);
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: grid;
  place-items: center;
  box-shadow: 0 0 0 4px rgba(244, 239, 234, 0.2), 0 12px 20px rgba(0, 0, 0, 0.4);
  transition: transform 0.4s var(--ease), background-color 0.4s var(--ease),
              color 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.tech-bench__hotspot::after {
  content: "";
  position: absolute;
  inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(135, 183, 223, 0.4);
  animation: rh-ring 2.6s ease-in-out infinite;
}
@keyframes rh-ring {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50%      { opacity: 0.2; transform: scale(1.3); }
}
.tech-bench__hotspot:hover,
.tech-bench__hotspot.is-active {
  background: var(--blue);
  color: var(--navy);
  border-color: var(--blue);
  transform: translate(-50%, -50%) scale(1.12);
  box-shadow: 0 0 0 6px rgba(135, 183, 223, 0.3), 0 14px 28px rgba(0, 0, 0, 0.5);
}
.tech-bench__callouts {
  position: relative;
  min-height: 220px;
}
.tech-bench__callout {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  opacity: 0;
  transform: translateX(12px);
  visibility: hidden;
  transition: opacity 0.45s var(--ease), transform 0.45s var(--ease), visibility 0s linear 0.45s;
}
.tech-bench__callout.is-active {
  opacity: 1;
  transform: none;
  visibility: visible;
  transition-delay: 0s;
}
.tech-bench__callout-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1;
  color: var(--blue);
}
.tech-bench__callout h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 1.1rem + 1vw, 2.1rem);
  line-height: 1.15;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.tech-bench__callout p {
  font-size: 1.02rem;
  line-height: 1.75;
  color: rgba(244, 239, 234, 0.78);
  max-width: 32ch;
}
.tech-bench__more {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(244, 239, 234, 0.1);
  list-style: none;
}
.tech-bench__more li {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.tech-bench__more b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--cream);
}
.tech-bench__more span {
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.48);
}

/* --- Materials Bar --- */
.materials {
  background: var(--cream);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.materials__head { text-align: center; max-width: 720px; margin-inline: auto; }
.materials__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.materials__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.materials__grid {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.material {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.material__photo {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background:
    radial-gradient(120% 80% at 50% 10%, rgba(255, 255, 255, 0.7) 0%, transparent 55%),
    linear-gradient(165deg, #e8f1f8 0%, #cfe1f0 55%, #b8d1e6 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.6rem;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.55),
    0 18px 30px -16px rgba(26, 39, 56, 0.32);
}
.material__photo::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(26, 39, 56, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 39, 56, 0.045) 1px, transparent 1px);
  background-size: 22px 22px;
  background-position: center center;
  pointer-events: none;
  mask-image: radial-gradient(75% 75% at 50% 50%, #000 40%, transparent 100%);
  -webkit-mask-image: radial-gradient(75% 75% at 50% 50%, #000 40%, transparent 100%);
}
.material__photo::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0.55rem;
  width: 56%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(26, 39, 56, 0.18), transparent);
  transform: translateX(-50%);
  pointer-events: none;
}
.material__icon {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  z-index: 1;
  filter: drop-shadow(0 6px 10px rgba(26, 39, 56, 0.18));
  transition: transform 0.6s var(--ease);
}
.material:hover .material__icon {
  transform: translateY(-3px);
}
.material__num {
  position: absolute;
  top: 0.8rem; left: 1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--navy);
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.6);
  opacity: 0.85;
  z-index: 2;
}
.material h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.material p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.material__tag {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.32rem 0.7rem;
  background: rgba(135, 183, 223, 0.16);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* --- Insurance Ledger --- */
.ledger {
  background:
    radial-gradient(55% 50% at 5% 5%, rgba(255,255,255, 0.5) 0%, transparent 65%),
    var(--sky);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.ledger__head { text-align: center; max-width: 720px; margin-inline: auto; }
.ledger__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.ledger__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.ledger__lede {
  margin-top: 1.3rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.ledger__panel {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1080px;
  background-color: var(--cream);
  background-image: repeating-linear-gradient(180deg, transparent 0px, transparent 47px, rgba(26, 39, 56, 0.04) 48px);
  border-radius: var(--r-md);
  padding: clamp(2rem, 4vw, 3.4rem);
  box-shadow: 0 28px 60px -28px rgba(26, 39, 56, 0.25);
}
.ledger__cols {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 1.4rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(26, 39, 56, 0.18);
}
.ledger__cols > :first-child { grid-column: 2; }
.ledger__col-h {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.ledger__rows {
  display: flex;
  flex-direction: column;
}
.ledger__row {
  display: grid;
  grid-template-columns: 180px 1fr 1fr;
  gap: 1.4rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26, 39, 56, 0.12);
  align-items: baseline;
  transition: background-color 0.3s var(--ease);
}
.ledger__row:hover { background: rgba(135, 183, 223, 0.08); }
.ledger__row:last-child { border-bottom: 0; }
.ledger__label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.ledger__left, .ledger__right {
  font-family: var(--font-display);
  font-size: 0.96rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.ledger__right { color: var(--navy); }
.ledger__sig {
  display: block;
  margin-top: 2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--accent);
  text-align: center;
}
.ledger__hand {
  font-family: 'Italianno', cursive;
  font-style: normal;
  font-size: 1.7rem;
  color: var(--accent);
  margin-left: 0.4rem;
  vertical-align: -0.25rem;
}
.ledger__plans {
  margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
  max-width: 1080px;
  text-align: center;
}
.ledger__plans-h {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 1.4rem;
}
.ledger__plans ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.8rem 1.8rem;
  padding: 0;
}
.ledger__plans li {
  font-family: var(--font-display);
  font-size: 0.96rem;
  color: var(--navy);
  position: relative;
  padding-right: 1.8rem;
}
.ledger__plans li:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0; top: 50%;
  width: 4px; height: 4px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 0.45;
}

/* --- Patient Stories (3 stacked) --- */
.stories {
  background:
    radial-gradient(60% 55% at 50% 8%, rgba(135, 183, 223, 0.16) 0%, transparent 60%),
    linear-gradient(180deg, #0e1828 0%, #142033 50%, #0e1828 100%);
  padding: clamp(7rem, 12vw, 11rem) 0;
  color: var(--cream);
}
.stories__head { text-align: center; max-width: 760px; margin-inline: auto; }
.stories .eyebrow { color: var(--blue); }
.stories__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 1.4rem + 2.8vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.stories__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.stories__list {
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  max-width: 980px;
  display: flex;
  flex-direction: column;
}
.story-chap {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: clamp(1.6rem, 3vw, 2.4rem);
  padding: clamp(2rem, 3vw, 2.6rem) 0;
  border-top: 1px solid rgba(244, 239, 234, 0.12);
  align-items: start;
}
.story-chap:last-child { border-bottom: 1px solid rgba(244, 239, 234, 0.12); }
.story-chap__portrait {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
  box-shadow: 0 18px 36px -16px rgba(0, 0, 0, 0.55);
}
.story-chap__portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92);
}
.story-chap__tag {
  position: absolute;
  bottom: 0.7rem; left: 0.7rem;
  padding: 0.32rem 0.65rem;
  background: rgba(14, 24, 40, 0.78);
  backdrop-filter: blur(4px);
  border-radius: 4px;
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}
.story-chap__body h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 1.1rem + 1.2vw, 2.2rem);
  line-height: 1.18;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.story-chap__body h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.story-chap__body p {
  margin-top: 1rem;
  font-size: 1.02rem;
  line-height: 1.7;
  color: rgba(244, 239, 234, 0.78);
}
.story-chap__did {
  display: block;
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--blue);
}
.story-chap__did b {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.42);
  margin-right: 0.35rem;
}

/* --- First Visit Itinerary --- */
.itinerary {
  background: var(--cream);
  padding: clamp(7rem, 12vw, 11rem) 0;
}
.itinerary__head { text-align: center; max-width: 760px; margin-inline: auto; }
.itinerary__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 1.4rem + 2.8vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.itinerary__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.itinerary__lede {
  margin-top: 1.3rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.itinerary__rail {
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  max-width: 720px;
  list-style: none;
  padding: 0;
  position: relative;
}
.itinerary__rail::before {
  content: "";
  position: absolute;
  left: 56px;
  top: 30px;
  bottom: 30px;
  width: 1px;
  background: rgba(135, 183, 223, 0.4);
}
.itinerary__step {
  position: relative;
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 2rem;
  padding: clamp(1.4rem, 2vw, 1.8rem) 0;
}
.itinerary__time {
  position: relative;
  z-index: 1;
  width: 90px;
  text-align: center;
  padding: 0.55rem 0;
  background: var(--cream);
  border: 1px solid rgba(135, 183, 223, 0.55);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  transition: background-color 0.5s var(--ease), color 0.5s var(--ease), border-color 0.5s var(--ease);
}
.itinerary__step.in-view .itinerary__time {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
}
.itinerary__copy h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 1.1rem + 0.5vw, 1.55rem);
  line-height: 1.2;
  color: var(--navy);
}
.itinerary__copy p {
  margin-top: 0.55rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 48ch;
}

/* --- Open FAQ --- */
.rfaq {
  background:
    radial-gradient(55% 50% at 95% 95%, rgba(255,255,255, 0.45) 0%, transparent 65%),
    var(--sky);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.rfaq__head { text-align: center; max-width: 780px; margin-inline: auto; }
.rfaq__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.rfaq__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.rfaq__lede {
  margin-top: 1.3rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.rfaq__grid {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: clamp(2rem, 4vw, 3.6rem);
  row-gap: 2.2rem;
}
.rfaq__group {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 1.1rem;
  margin-top: clamp(1.4rem, 2.4vw, 2.4rem);
}
.rfaq__grid > .rfaq__group:first-child { margin-top: 0; }
.rfaq__group-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
  flex-shrink: 0;
}
.rfaq__group-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, rgba(26, 39, 56, 0.32) 0%, rgba(26, 39, 56, 0.06) 100%);
}
.rfaq__group + .rfaq__item,
.rfaq__group + .rfaq__item + .rfaq__item {
  border-top-color: rgba(26, 39, 56, 0.10);
  padding-top: 0.9rem;
}
@media (max-width: 960px) {
  .rfaq__group { grid-column: 1 / -1; margin-top: clamp(1.2rem, 3vw, 2rem); }
  .rfaq__group-label { font-size: 0.7rem; }
}
.rfaq__item {
  padding-top: 1.2rem;
  border-top: 1px solid rgba(26, 39, 56, 0.18);
}
.rfaq__item h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.15rem, 1rem + 0.4vw, 1.35rem);
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.rfaq__item p {
  margin-top: 0.7rem;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* --- Emergency Lane --- */
.emergency {
  background:
    radial-gradient(50% 60% at 50% 50%, rgba(135, 183, 223, 0.16) 0%, transparent 65%),
    linear-gradient(180deg, #0e1828 0%, #142033 100%);
  padding: clamp(4rem, 7vw, 6rem) 0;
}
.emergency__card {
  margin: 0 auto;
  max-width: 720px;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: clamp(2.4rem, 4vw, 3.5rem);
  text-align: center;
  position: relative;
  box-shadow: 0 32px 70px -28px rgba(0, 0, 0, 0.55), 0 0 0 1px rgba(135, 183, 223, 0.18);
}
.emergency__ico {
  display: inline-grid;
  place-items: center;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(135, 183, 223, 0.18);
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.emergency__ico svg { width: 28px; height: 28px; }
.emergency__eyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
}
.emergency h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.emergency h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.emergency__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin: 1.6rem 0 1.4rem;
  padding: 1rem 1.6rem;
  background: var(--navy);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
  box-shadow: 0 14px 28px -10px rgba(26, 39, 56, 0.45);
  transition: background-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.emergency__phone svg { width: 20px; height: 20px; color: var(--blue); }
.emergency__phone:hover { background: var(--accent); transform: translateY(-2px); }
.emergency__list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.7rem 1.5rem;
}
.emergency__list li {
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  position: relative;
  padding-left: 1rem;
}
.emergency__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 5px; height: 5px;
  background: var(--accent);
  border-radius: 50%;
  transform: translateY(-50%);
}
.emergency__note {
  margin-top: 1.6rem;
  font-size: 0.96rem;
  color: var(--ink-soft);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
}
.emergency__note em { color: var(--accent); font-weight: 600; }

/* --- Closing Band --- */
.close-band {
  background:
    radial-gradient(60% 50% at 12% 88%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    var(--cream);
  padding: clamp(6.5rem, 11vw, 10rem) 0 clamp(4.5rem, 7vw, 7rem);
}
.close-band__grid {
  display: grid;
  grid-template-columns: 1.15fr 0.9fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.close-band h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 1.4rem + 3vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--navy);
}
.close-band h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.close-band__sub {
  margin-top: 1.5rem;
  max-width: 48ch;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.close-band__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.close-band__sig {
  display: block;
  margin-top: 2.4rem;
  font-family: 'Italianno', cursive;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: 0.01em;
}
.close-band__aside {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 460px;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
.close-band__photo {
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 5 / 4;
  box-shadow: 0 28px 60px -22px rgba(26, 39, 56, 0.32);
}
.close-band__photo img { width: 100%; height: 100%; object-fit: cover; }
.close-band__hours {
  background: var(--white);
  border-radius: 14px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 16px 30px -16px rgba(26, 39, 56, 0.18);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.close-band__hours > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 1rem;
  font-family: var(--font-display);
}
.close-band__hours dt {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  align-self: center;
}
.close-band__hours dd {
  margin: 0;
  font-size: 0.96rem;
  color: var(--navy);
}

/* --- Restorative page responsive --- */
@media (max-width: 1080px) {
  .rh-hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .rh-hero__still { justify-self: stretch; max-width: 100%; }
  .symptom__grid { grid-template-columns: repeat(2, 1fr); }
  .assure__row { grid-template-columns: repeat(2, 1fr); }
  .assure__item:nth-child(2) { border-right: 0; }
  .chapter {
    grid-template-columns: 110px 1fr;
    grid-template-areas:
      "idx body"
      "media media"
      "facts facts";
  }
  .chapter__index { grid-area: idx; }
  .chapter__body { grid-area: body; }
  .chapter__media { grid-area: media; max-width: 360px; }
  .chapter__facts { grid-area: facts; grid-template-columns: repeat(4, 1fr); }
  .tech-bench__stage { grid-template-columns: 1fr; }
  .tech-bench__more { grid-template-columns: 1fr; }
  .materials__grid { grid-template-columns: repeat(2, 1fr); }
  .ledger__cols, .ledger__row { grid-template-columns: 140px 1fr 1fr; }
  .story-chap { grid-template-columns: 140px 1fr; }
  .rfaq__grid { grid-template-columns: 1fr; }
  .close-band__grid { grid-template-columns: 1fr; gap: 3rem; }
  .close-band__aside { justify-self: start; max-width: 100%; }
}
@media (max-width: 720px) {
  .symptom__grid { grid-template-columns: 1fr; }
  .assure__row { grid-template-columns: 1fr; }
  .assure__item { border-right: 0; border-bottom: 1px solid rgba(26, 39, 56, 0.18); }
  .assure__item:last-child { border-bottom: 0; }
  .chapter__facts { grid-template-columns: repeat(2, 1fr); }
  .materials__grid { grid-template-columns: 1fr; }
  .ledger__cols, .ledger__row { grid-template-columns: 1fr; }
  .ledger__cols > :first-child { grid-column: 1; }
  .story-chap { grid-template-columns: 1fr; }
  .story-chap__portrait { max-width: 160px; }
  .itinerary__step { grid-template-columns: 90px 1fr; gap: 1.4rem; }
  .itinerary__rail::before { left: 44px; }
}

/* =====================================================================
   PREVENTIVE DENTIST PAGE
   ===================================================================== */
.page-preventive { background: var(--cream); }

/* --- Hero (Almanac Cover) --- */
.pv-hero {
  position: relative;
  background:
    radial-gradient(70% 55% at 50% 18%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    radial-gradient(50% 45% at 12% 95%, rgba(135, 183, 223, 0.12) 0%, transparent 70%),
    radial-gradient(50% 45% at 88% 95%, rgba(135, 183, 223, 0.10) 0%, transparent 70%),
    var(--cream);
  padding: clamp(7.5rem, 13vw, 12rem) 0 clamp(5rem, 8vw, 8rem);
  overflow: hidden;
}
.pv-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(1px 1px at 20% 22%, rgba(26, 39, 56, 0.06), transparent 50%),
    radial-gradient(1px 1px at 78% 30%, rgba(26, 39, 56, 0.06), transparent 50%),
    radial-gradient(1px 1px at 30% 78%, rgba(26, 39, 56, 0.05), transparent 50%),
    radial-gradient(1px 1px at 82% 76%, rgba(26, 39, 56, 0.06), transparent 50%);
  opacity: 0.7;
  pointer-events: none;
}
.pv-hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1.08fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.pv-hero__meta {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.pv-hero h1 {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.6rem, 1.2rem + 5.2vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--navy);
}
.pv-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.pv-hero__sub {
  margin: 1.7rem 0 0;
  max-width: 46ch;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.pv-hero__actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
/* (Almanac-chart orbit removed - hero is now the Yearly Smile Plan composition; see .pvstudio at end of file.) */

/* --- Atlas (SIGNATURE) --- */
.atlas {
  background:
    radial-gradient(60% 50% at 50% 0%, rgba(135, 183, 223, 0.14) 0%, transparent 65%),
    var(--cream);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
  border-top: 1px solid rgba(26, 39, 56, 0.08);
}
.atlas__head { text-align: center; max-width: 740px; margin-inline: auto; }
.atlas__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 1.4rem + 2.8vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.atlas__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.atlas__lede {
  margin-top: 1.3rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.atlas__filter {
  margin: 2.4rem auto 0;
  max-width: 1080px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.55rem;
}
.atlas__chip {
  background: var(--white);
  border: 1px solid rgba(26, 39, 56, 0.14);
  border-radius: 999px;
  padding: 0.55rem 1rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--navy);
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.atlas__chip:hover { border-color: rgba(135, 183, 223, 0.55); color: var(--accent); }
.atlas__chip.is-active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.atlas__grid {
  margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
  max-width: 1140px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.95rem;
}
.plate {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(26, 39, 56, 0.1);
  border-radius: 14px;
  padding: 1.4rem 1.2rem 1.3rem;
  text-align: left;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  transition: transform 0.35s var(--ease), border-color 0.35s var(--ease),
              box-shadow 0.35s var(--ease), opacity 0.45s var(--ease), background-color 0.35s var(--ease);
  box-shadow: 0 8px 18px -14px rgba(26, 39, 56, 0.25);
}
.plate:hover {
  transform: translateY(-3px);
  border-color: rgba(135, 183, 223, 0.5);
  box-shadow: 0 18px 36px -16px rgba(26, 39, 56, 0.28);
}
.plate.is-dimmed { opacity: 0.25; }
.plate.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
  box-shadow: 0 22px 44px -16px rgba(26, 39, 56, 0.45);
}
.plate__roman {
  position: absolute;
  top: 0.9rem; right: 1.1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--accent);
  opacity: 0.7;
}
.plate.is-active .plate__roman { color: var(--blue); opacity: 1; }
.plate__ico {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(135, 183, 223, 0.16);
  color: var(--accent);
}
.plate.is-active .plate__ico { background: rgba(135, 183, 223, 0.22); color: var(--blue); }
.plate__ico svg { width: 22px; height: 22px; }
.plate__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  line-height: 1.22;
  letter-spacing: -0.005em;
}
.plate.is-active .plate__name { color: var(--cream); }
.plate__tag {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.plate.is-active .plate__tag { color: var(--blue); }

/* Dossier panel */
.dossier {
  margin: 2.2rem auto 0;
  max-width: 1140px;
  background:
    radial-gradient(50% 50% at 90% 10%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    linear-gradient(165deg, #142033 0%, #0e1828 100%);
  color: var(--cream);
  border-radius: var(--r-md);
  padding: clamp(1.8rem, 3vw, 2.8rem);
  box-shadow: 0 36px 72px -28px rgba(0, 0, 0, 0.55);
  animation: pv-dossier-in 0.45s var(--ease);
}
@keyframes pv-dossier-in {
  from { opacity: 0; transform: translateY(18px); }
  to   { opacity: 1; transform: none; }
}
.dossier__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.2rem;
  padding-bottom: 1.4rem;
  border-bottom: 1px solid rgba(244, 239, 234, 0.16);
}
.dossier__roman {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--blue);
}
.dossier__title {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.dossier__tag {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}
.dossier__title h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.4rem, 1.1rem + 1vw, 1.9rem);
  line-height: 1.15;
  color: var(--cream);
}
.dossier__close {
  background: none;
  border: 1px solid rgba(244, 239, 234, 0.2);
  border-radius: 50%;
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  color: var(--cream);
  cursor: pointer;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.dossier__close:hover { background: rgba(244, 239, 234, 0.08); border-color: var(--blue); }
.dossier__close svg { width: 16px; height: 16px; }
.dossier__body {
  padding: 1.4rem 0 0;
}
.dossier__lede {
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(244, 239, 234, 0.82);
  max-width: 62ch;
}
.dossier__facts {
  margin: 1.6rem 0 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(244, 239, 234, 0.1);
}
.dossier__facts > div { display: flex; flex-direction: column; gap: 0.25rem; }
.dossier__facts dt {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.5);
}
.dossier__facts dd {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.96rem;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.dossier__foot {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(244, 239, 234, 0.1);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
}
.dossier__nav {
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--blue);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  transition: color 0.3s var(--ease);
}
.dossier__nav:hover { color: var(--cream); }
.dossier__nav:first-of-type { justify-self: start; }
.dossier__nav:last-of-type { justify-self: end; }
.dossier__pos {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.55);
}
.dossier__pos b { color: var(--cream); font-weight: 500; }

/* --- Cadence Band --- */
.cadence {
  background:
    radial-gradient(60% 50% at 0% 50%, rgba(255,255,255, 0.45) 0%, transparent 65%),
    var(--sky);
  padding: clamp(3.5rem, 6vw, 5rem) 0;
}
.cadence__row {
  display: grid;
  grid-template-columns: 1.2fr 1.4fr 0.9fr;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 2.5rem);
}
.cadence__copy h2 {
  margin-top: 0.6rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 1.2rem + 1.5vw, 2.4rem);
  line-height: 1.15;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.cadence__copy h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.cadence__line {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  position: relative;
}
.cadence__line::before {
  content: "";
  position: absolute;
  left: 0; right: 0;
  top: 50%;
  height: 1px;
  background: rgba(26, 39, 56, 0.2);
  z-index: 0;
}
.cadence__beat {
  position: relative;
  z-index: 1;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 0 4px rgba(135, 183, 223, 0.3);
  animation: pv-beat 3.6s ease-in-out infinite;
  animation-delay: calc(var(--m, 0) * 0.3s);
}
@keyframes pv-beat {
  0%, 100% { box-shadow: 0 0 0 4px rgba(135, 183, 223, 0.3); transform: scale(1); }
  50%      { box-shadow: 0 0 0 8px rgba(135, 183, 223, 0.18); transform: scale(1.05); }
}
.cadence__tick {
  flex: 1;
  height: 6px;
  position: relative;
  z-index: 1;
}
.cadence__tick::after {
  content: "";
  position: absolute;
  left: 50%; top: 50%;
  width: 4px; height: 4px;
  background: var(--ink-faint);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.cadence__stats {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}
.cadence__stats li {
  display: grid;
  grid-template-columns: 60px 1fr;
  align-items: baseline;
  gap: 0.6rem;
}
.cadence__stats b {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--accent);
  letter-spacing: -0.02em;
  text-align: right;
}
.cadence__stats span {
  font-family: var(--font-display);
  font-size: 0.86rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* --- Route (5-stop curving ribbon) --- */
.route {
  background:
    radial-gradient(60% 50% at 50% 8%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    linear-gradient(180deg, #0e1828 0%, #142033 50%, #0e1828 100%);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
  color: var(--cream);
}
.route__head { text-align: center; max-width: 780px; margin-inline: auto; }
.route .eyebrow { color: var(--blue); }
.route__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.route__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.route__lede {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(244, 239, 234, 0.72);
}
.route__rail {
  position: relative;
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  max-width: 1100px;
  padding: 1rem 0;
}
.route__line {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: rgba(135, 183, 223, 0.5);
  pointer-events: none;
}
.route__stops {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  position: relative;
  z-index: 1;
}
.route__stops li {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.4rem;
}
.route__num {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--cream);
  color: var(--navy);
  display: grid;
  place-items: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  box-shadow: 0 14px 28px -10px rgba(0, 0, 0, 0.55), 0 0 0 5px rgba(14, 24, 40, 0.6);
  transition: transform 0.5s var(--ease), background-color 0.5s var(--ease);
}
.route__stops li:nth-child(odd) { transform: translateY(-12px); }
.route__stops li:nth-child(even) { transform: translateY(12px); }
.route__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.1rem;
  color: var(--cream);
  letter-spacing: -0.005em;
  margin-top: 0.55rem;
}
.route__line2 {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.92rem;
  color: rgba(135, 183, 223, 0.75);
  letter-spacing: 0.005em;
}

/* --- Family Ledger (5 horizontal age rows) --- */
.family {
  background: var(--cream);
  padding: clamp(7rem, 12vw, 11rem) 0;
}
.family__head { text-align: center; max-width: 760px; margin-inline: auto; }
.family__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 1.4rem + 2.8vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.family__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.family__lede {
  margin-top: 1.3rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.family__rows {
  margin: clamp(3rem, 5vw, 4.5rem) auto 0;
  max-width: 1000px;
}
.famrow {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: clamp(1.6rem, 3vw, 2.6rem);
  padding: clamp(1.6rem, 2.5vw, 2.2rem) 0;
  border-top: 1px solid rgba(26, 39, 56, 0.12);
  align-items: center;
  transition: background-color 0.4s var(--ease);
}
.famrow:last-child { border-bottom: 1px solid rgba(26, 39, 56, 0.12); }
.famrow:hover { background: rgba(135, 183, 223, 0.06); }
.famrow__age {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: -0.005em;
  color: var(--navy);
}
.famrow__age em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  margin-right: 0.4rem;
  font-size: 1.15rem;
}
.famrow__body h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.famrow__body p {
  margin-top: 0.6rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 60ch;
}
.famrow__chips {
  margin-top: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}
.famrow__chips span {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.32rem 0.7rem;
  background: rgba(135, 183, 223, 0.14);
  border-radius: 999px;
}

/* --- Insurance Index Card --- */
.ins {
  background:
    radial-gradient(60% 55% at 50% 12%, rgba(255,255,255, 0.45) 0%, transparent 65%),
    var(--sky);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.ins__head { text-align: center; max-width: 720px; margin-inline: auto; }
.ins__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.ins__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.ins__card {
  position: relative;
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 620px;
  background: var(--cream);
  border-radius: 14px;
  padding: 2.4rem 2.2rem 2rem;
  transform: rotate(-1.5deg);
  box-shadow: 0 32px 60px -22px rgba(26, 39, 56, 0.4), 0 12px 26px rgba(26, 39, 56, 0.12);
  transition: transform 0.6s var(--ease);
}
.ins__card.in-view { transform: rotate(0deg); }
.ins__rule {
  display: block;
  height: 1px;
  background: var(--navy);
  margin-bottom: 1.4rem;
}
.ins__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  align-items: baseline;
  gap: 1rem;
  padding: 0.6rem 0;
  border-bottom: 1px dashed rgba(26, 39, 56, 0.18);
}
.ins__row:last-of-type { border-bottom: 0; }
.ins__amt {
  text-align: right;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: 3rem;
  line-height: 1;
  color: var(--navy);
}
.ins__amt em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.ins__what {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--navy);
  letter-spacing: 0.02em;
}
.ins__fine {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
}
.ins__stamp {
  position: absolute;
  top: -28px; right: -28px;
  width: 100px; height: 100px;
  color: var(--accent);
  opacity: 0.78;
  transform: rotate(14deg);
}
.ins__note {
  margin: 1.8rem auto 0;
  max-width: 600px;
  text-align: center;
  font-size: 0.98rem;
  color: var(--ink-soft);
}
.ins__note em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}

/* --- Family Saturday Schedule --- */
.saturday {
  background:
    radial-gradient(60% 50% at 12% 12%, rgba(135, 183, 223, 0.16) 0%, transparent 65%),
    linear-gradient(180deg, #0e1828 0%, #142033 50%, #0e1828 100%);
  padding: clamp(7rem, 12vw, 11rem) 0;
  color: var(--cream);
}
.saturday__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.saturday__copy .eyebrow { color: var(--blue); }
.saturday__copy h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 1.4rem + 2.8vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.saturday__copy h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.saturday__sub {
  margin-top: 1.5rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(244, 239, 234, 0.78);
  max-width: 48ch;
}
.saturday__copy .btn { margin-top: 2rem; }
.saturday__schedule {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  padding-left: 80px;
}
.saturday__schedule::before {
  content: "";
  position: absolute;
  left: 56px; top: 30px; bottom: 80px;
  width: 1px;
  background: rgba(135, 183, 223, 0.35);
}
.saturday__schedule > li {
  position: relative;
  padding: 0.85rem 0;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.4rem;
  align-items: center;
}
.saturday__schedule > li:not(.saturday__home)::before {
  content: "";
  position: absolute;
  left: -32px; top: 50%;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  border: 3px solid #0e1828;
  transform: translateY(-50%);
  box-shadow: 0 0 0 4px rgba(135, 183, 223, 0.25);
}
.saturday__time {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--blue);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.saturday__slot {
  background: rgba(244, 239, 234, 0.05);
  border: 1px solid rgba(244, 239, 234, 0.1);
  border-radius: 10px;
  padding: 0.7rem 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.saturday__who {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.saturday__what {
  font-family: var(--font-display);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 234, 0.62);
}
.saturday__home {
  padding-top: 1.6rem !important;
}
.saturday__done {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--blue);
}

/* --- Worry Wall --- */
.worry {
  background: var(--cream);
  padding: clamp(7rem, 12vw, 11rem) 0;
}
.worry__head { text-align: center; max-width: 720px; margin-inline: auto; }
.worry__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 1.4rem + 2.8vw, 3.6rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.worry__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.worry__lede {
  margin-top: 1.3rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.worry__wall {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.4rem, 2.5vw, 2.4rem);
}
.worry-note {
  position: relative;
  background: var(--white);
  padding: 1.7rem 1.6rem 1.8rem;
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: 0 14px 30px -20px rgba(26, 39, 56, 0.18);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease), border-color 0.5s var(--ease);
}
.worry-note:hover {
  transform: translateY(-4px);
  border-color: rgba(135, 183, 223, 0.5);
  box-shadow: 0 24px 42px -20px rgba(26, 39, 56, 0.26);
}
.worry-note__q {
  font-size: 1.15rem;
  line-height: 1.4;
}
.worry-note__q em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.24rem;
  line-height: 1.35;
  color: var(--navy);
}
.worry-note__a {
  margin-top: 0.9rem;
  padding-top: 0.9rem;
  border-top: 1px solid rgba(26, 39, 56, 0.12);
  font-family: var(--font-display);
  font-size: 0.94rem;
  line-height: 1.55;
  color: var(--ink-soft);
}

/* --- Preventive FAQ (slide-down) --- */
.pfaq {
  background:
    radial-gradient(50% 50% at 90% 90%, rgba(255,255,255, 0.4) 0%, transparent 65%),
    var(--sky);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.pfaq__head { text-align: center; max-width: 740px; margin-inline: auto; }
.pfaq__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.pfaq__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.pfaq__list {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 820px;
}
.pq {
  border-top: 1px solid rgba(26, 39, 56, 0.16);
}
.pq:last-child { border-bottom: 1px solid rgba(26, 39, 56, 0.16); }
.pq__head {
  width: 100%;
  display: grid;
  grid-template-columns: 60px 1fr 32px;
  align-items: center;
  gap: 1.2rem;
  padding: 1.4rem 0;
  background: none;
  border: 0;
  cursor: pointer;
  text-align: left;
  font-family: inherit;
  color: var(--navy);
  transition: color 0.35s var(--ease);
}
.pq__n {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.55;
}
.pq__q {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.1rem, 0.95rem + 0.5vw, 1.35rem);
  letter-spacing: -0.005em;
  color: var(--navy);
}
.pq__chev {
  display: grid;
  place-items: center;
  color: var(--accent);
  transition: transform 0.4s var(--ease);
}
.pq__chev svg { width: 14px; height: 10px; }
.pq.is-open .pq__chev { transform: rotate(180deg); }
.pq.is-open .pq__n { opacity: 1; color: var(--accent); }
.pq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s var(--ease);
}
.pq__a > p {
  overflow: hidden;
  padding: 0 0 0 calc(60px + 1.2rem);
  margin: 0;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--ink-soft);
  max-width: 60ch;
}
.pq.is-open .pq__a {
  grid-template-rows: 1fr;
}
.pq.is-open .pq__a > p {
  padding-bottom: 1.4rem;
}

/* --- Postcard Close --- */
.postcard {
  background: var(--cream);
  padding: clamp(7rem, 12vw, 11rem) 0;
}
.postcard__card {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  background: var(--white);
  padding: clamp(2.8rem, 5vw, 4.5rem);
  border-radius: 4px;
  text-align: center;
  transform: rotate(-1deg);
  box-shadow: 0 36px 72px -28px rgba(26, 39, 56, 0.4), 0 14px 26px rgba(26, 39, 56, 0.12);
  transition: transform 0.6s var(--ease);
  border: 1px solid rgba(26, 39, 56, 0.06);
}
.postcard__card.in-view { transform: rotate(0deg); }
.postcard__greeting {
  display: block;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--accent);
  margin-bottom: 1.4rem;
}
.postcard__greeting em {
  font-family: 'Italianno', cursive;
  font-style: normal;
  font-size: 2rem;
  vertical-align: -0.2rem;
  margin: 0 0.2rem;
}
.postcard h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.4rem, 1.4rem + 3vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--navy);
}
.postcard h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.postcard p {
  margin: 1.4rem auto 0;
  max-width: 46ch;
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.postcard__actions {
  margin-top: 2.2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.postcard__sig {
  display: block;
  margin-top: 2.4rem;
  font-family: 'Italianno', cursive;
  font-size: 2.6rem;
  color: var(--accent);
  line-height: 1;
}
.postcard__postmark {
  position: absolute;
  top: 18px; right: 18px;
  width: 110px; height: 110px;
  color: var(--accent);
  opacity: 0.5;
  transform: rotate(8deg);
}

/* --- Preventive page responsive --- */
@media (max-width: 1080px) {
  .atlas__grid { grid-template-columns: repeat(3, 1fr); }
  .dossier__facts { grid-template-columns: repeat(2, 1fr); }
  .cadence__row { grid-template-columns: 1fr; gap: 2rem; }
  .cadence__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
  .cadence__stats li { grid-template-columns: 1fr; text-align: center; }
  .cadence__stats b { text-align: center; font-size: 1.8rem; }
  .route__stops li:nth-child(odd), .route__stops li:nth-child(even) { transform: none; }
  .route__line { opacity: 0; }
  .saturday__grid { grid-template-columns: 1fr; gap: 3rem; }
  .worry__wall { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 720px) {
  .atlas__grid { grid-template-columns: repeat(2, 1fr); }
  .dossier__head { grid-template-columns: 1fr; }
  .dossier__roman { font-size: 2rem; }
  .dossier__foot { grid-template-columns: 1fr; gap: 0.6rem; text-align: center; }
  .dossier__nav:first-of-type, .dossier__nav:last-of-type { justify-self: center; }
  .famrow { grid-template-columns: 1fr; gap: 0.8rem; }
  .ins__row { grid-template-columns: 1fr; text-align: center; gap: 0.3rem; }
  .ins__amt { text-align: center; }
  .worry__wall { grid-template-columns: 1fr; }
  .route__stops { grid-template-columns: 1fr; gap: 1.4rem; }
  .saturday__schedule { padding-left: 60px; }
  .saturday__schedule::before { left: 36px; }
  .saturday__schedule > li:not(.saturday__home)::before { left: -28px; }
  .saturday__schedule > li { grid-template-columns: 70px 1fr; gap: 0.8rem; }
  .pq__head { grid-template-columns: 40px 1fr 28px; gap: 0.8rem; }
  .pq__a > p { padding-left: calc(40px + 0.8rem); }
}

/* =====================================================================
   PATIENT FORMS PAGE
   ===================================================================== */
.page-resource { background: var(--cream); }

.forms-hero {
  position: relative;
  background:
    radial-gradient(60% 50% at 15% 18%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    radial-gradient(55% 45% at 90% 92%, rgba(135, 183, 223, 0.12) 0%, transparent 70%),
    var(--cream);
  padding: clamp(7.5rem, 13vw, 11rem) 0 clamp(5rem, 8vw, 7rem);
  overflow: hidden;
}
.forms-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.forms-hero h1 {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.7rem, 1.3rem + 5.5vw, 5.8rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--navy);
}
.forms-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.forms-hero__sub {
  margin-top: 1.6rem;
  max-width: 50ch;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.forms-hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.forms-hero__actions .btn span:first-child { display: inline-flex; align-items: center; }
.forms-hero__meta {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Paper stack */
.forms-hero__stack {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1.18;
}
.paper {
  position: absolute;
  inset: 0;
  background: var(--white);
  border: 1px solid rgba(26, 39, 56, 0.08);
  border-radius: 4px;
  padding: 1.6rem 1.4rem;
  box-shadow: 0 26px 52px -22px rgba(26, 39, 56, 0.35), 0 8px 18px rgba(26, 39, 56, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.paper--3 {
  transform: rotate(4deg) translate(28px, 22px);
  background: var(--cream);
  z-index: 1;
}
.paper--2 {
  transform: rotate(-2deg) translate(-18px, 12px);
  background: #faf6f0;
  z-index: 2;
}
.paper--1 { z-index: 3; }
.paper__line, .paper__field { height: 6px; background: rgba(26, 39, 56, 0.05); border-radius: 2px; }
.paper__line { width: 60%; }
.paper__line:nth-of-type(2) { width: 80%; }
.paper__line:nth-of-type(3) { width: 50%; }
.paper__field { height: 22px; width: 100%; }
.paper__field:nth-of-type(2) { width: 70%; }
.paper__label {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.paper__title {
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.7rem;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.paper__sub {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  margin-bottom: 0.6rem;
}
.paper__form {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.paper__row {
  display: grid;
  grid-template-columns: 110px 1fr;
  align-items: center;
  gap: 0.8rem;
}
.paper__row b {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.paper__row i {
  display: block;
  height: 1px;
  background: rgba(26, 39, 56, 0.22);
}
.paper__row--sig {
  margin-top: 0.4rem;
  align-items: baseline;
}
.paper__sig {
  font-family: 'Italianno', cursive;
  font-size: 2.3rem;
  line-height: 1;
  color: var(--accent);
}
.paper__stamp {
  position: absolute;
  bottom: -16px; right: -8px;
  width: 90px; height: 90px;
  color: var(--accent);
  opacity: 0.6;
  transform: rotate(-10deg);
}

/* Packet */
.packet {
  background:
    radial-gradient(60% 55% at 50% 8%, rgba(255,255,255, 0.45) 0%, transparent 65%),
    var(--sky);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.packet__head { text-align: center; max-width: 720px; margin-inline: auto; }
.packet__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.packet__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.packet__lede {
  margin-top: 1.2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.packet__grid {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1140px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
}
.form-card {
  position: relative;
  background: var(--cream);
  border-radius: 14px;
  padding: 1.4rem 1.2rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: 0 14px 28px -16px rgba(26, 39, 56, 0.25);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 40px -18px rgba(26, 39, 56, 0.32);
}
.form-card__num {
  position: absolute;
  top: 0.9rem; right: 1.1rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--accent);
  opacity: 0.7;
}
.form-card__ico {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(135, 183, 223, 0.18);
  color: var(--accent);
}
.form-card__ico svg { width: 22px; height: 22px; }
.form-card h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.form-card p {
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.form-card__time {
  margin-top: auto;
  padding-top: 0.7rem;
  border-top: 1px solid rgba(26, 39, 56, 0.1);
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Saved time visual */
.saved {
  background: var(--cream);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.saved__head { text-align: center; max-width: 740px; margin-inline: auto; }
.saved__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.saved__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.saved__compare {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 840px;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}
.saved__row {
  display: grid;
  grid-template-columns: 260px 1fr;
  align-items: center;
  gap: 1.4rem;
}
.saved__label {
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  text-align: right;
}
.saved__row--good .saved__label { color: var(--navy); font-weight: 500; }
.saved__bar {
  position: relative;
  height: 36px;
  background: var(--white);
  border-radius: 999px;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(26, 39, 56, 0.1);
}
.saved__fill {
  position: absolute;
  inset: 4px auto 4px 4px;
  width: calc(var(--w) - 8px);
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--blue));
  animation: saved-fill 1.4s var(--ease) backwards;
  animation-delay: 0.2s;
}
.saved__row--bad .saved__fill { background: linear-gradient(90deg, rgba(26, 39, 56, 0.4), rgba(26, 39, 56, 0.5)); }
@keyframes saved-fill { from { width: 0; } }
.saved__minutes {
  position: absolute;
  right: 14px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--cream);
  letter-spacing: 0.04em;
}
.saved__note {
  margin: 2rem auto 0;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.saved__note em { color: var(--accent); }

/* Forms close */
.forms-close {
  background:
    radial-gradient(60% 50% at 50% 14%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    linear-gradient(180deg, #0e1828 0%, #142033 100%);
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.forms-close__card {
  max-width: 1080px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: clamp(2.4rem, 4vw, 3.6rem);
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.4rem;
  align-items: center;
  box-shadow: 0 36px 72px -28px rgba(0, 0, 0, 0.55);
}
.forms-close__body h2 {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.forms-close__body h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.forms-close__body p {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.forms-close__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.forms-close__actions .btn span:first-child { display: inline-flex; align-items: center; }
.forms-close__phone {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 0.9rem 1.1rem;
  border: 1px solid rgba(26, 39, 56, 0.12);
  border-radius: 12px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  transition: background-color 0.4s var(--ease), border-color 0.4s var(--ease);
}
.forms-close__phone svg { width: 20px; height: 20px; color: var(--blue); flex-shrink: 0; }
.forms-close__phone b { color: var(--accent); font-weight: 500; }
.forms-close__phone:hover { background: var(--white); border-color: rgba(135, 183, 223, 0.4); }

/* =====================================================================
   ACCEPTED INSURANCES PAGE
   ===================================================================== */
.ins-hero {
  position: relative;
  background:
    radial-gradient(60% 50% at 50% 15%, rgba(135, 183, 223, 0.22) 0%, transparent 65%),
    radial-gradient(50% 45% at 12% 92%, rgba(135, 183, 223, 0.14) 0%, transparent 70%),
    var(--cream);
  padding: clamp(7.5rem, 13vw, 11rem) 0 clamp(4.5rem, 8vw, 7rem);
  overflow: hidden;
  text-align: center;
}
.ins-hero__inner { max-width: 780px; margin-inline: auto; }
.ins-hero h1 {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.6rem, 1.2rem + 5.2vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--navy);
}
.ins-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-size: 1.12em;
}
.ins-hero__sub {
  margin: 1.6rem auto 0;
  max-width: 60ch;
  font-size: 1.08rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.ins-hero__actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.9rem;
}

/* Wall of plans */
.wall {
  background: var(--cream);
  padding: clamp(5rem, 9vw, 8rem) 0 clamp(6.5rem, 11vw, 10rem);
}
.wall__head { text-align: center; max-width: 720px; margin-inline: auto; }
.wall__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.wall__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.wall__lede {
  margin-top: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.wall__grid {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.85rem;
}
.plan {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(26, 39, 56, 0.08);
  border-radius: 12px;
  padding: 1.3rem 1.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  min-height: 80px;
  cursor: default;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.plan:hover {
  transform: translateY(-3px);
  border-color: rgba(135, 183, 223, 0.5);
  box-shadow: 0 18px 32px -14px rgba(26, 39, 56, 0.22);
}
.plan__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.005em;
  z-index: 1;
}
.plan__check {
  display: grid;
  place-items: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(135, 183, 223, 0.16);
  color: var(--accent);
  flex-shrink: 0;
  transition: background-color 0.3s var(--ease), color 0.3s var(--ease);
}
.plan__check svg { width: 16px; height: 16px; }
.plan:hover .plan__check { background: var(--accent); color: var(--cream); }
.plan--ask { background: rgba(135, 183, 223, 0.12); border-style: dashed; }
.plan--ask .plan__name { color: var(--accent); font-style: italic; font-family: var(--font-serif); font-size: 1.08rem; }
.plan__check--ask { background: var(--accent); color: var(--cream); }

/* Coverage tiers */
.tiers {
  background:
    radial-gradient(50% 50% at 5% 5%, rgba(255,255,255, 0.5) 0%, transparent 65%),
    var(--sky);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.tiers__head { text-align: center; max-width: 720px; margin-inline: auto; }
.tiers__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.tiers__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.tiers__lede {
  margin-top: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.tiers__grid {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.tier {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem 1.8rem 2rem;
  box-shadow: 0 22px 40px -18px rgba(26, 39, 56, 0.22);
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.tier--prev { background: linear-gradient(180deg, var(--cream) 0%, rgba(135, 183, 223, 0.18) 100%); }
.tier--basic { background: var(--cream); }
.tier--major { background: linear-gradient(180deg, var(--cream) 0%, rgba(26, 39, 56, 0.08) 100%); }
.tier__pct {
  display: inline-flex;
  align-items: baseline;
  font-family: var(--font-display);
  font-weight: 200;
  line-height: 1;
  letter-spacing: -0.02em;
}
.tier__pct em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 4rem;
  color: var(--accent);
}
.tier__pct b {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--accent);
  margin-left: 0.15em;
}
.tier h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.tier p {
  font-size: 0.96rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.tier__list {
  margin-top: auto;
  list-style: none;
  padding: 0.8rem 0 0;
  border-top: 1px solid rgba(26, 39, 56, 0.12);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.tier__list li {
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--navy);
  letter-spacing: 0.01em;
  position: relative;
  padding-left: 1.1rem;
}
.tier__list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.6rem;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* Verify panel */
.verify {
  background: var(--cream);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.verify__card {
  max-width: 1080px;
  margin: 0 auto;
  background:
    radial-gradient(50% 50% at 90% 10%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    linear-gradient(165deg, #142033 0%, #0e1828 100%);
  color: var(--cream);
  border-radius: var(--r-md);
  padding: clamp(2.4rem, 4vw, 3.6rem);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2.4rem, 4vw, 4rem);
  box-shadow: 0 32px 60px -22px rgba(0, 0, 0, 0.5);
}
.verify .eyebrow { color: var(--blue); }
.verify h2 {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 1.3rem + 1.5vw, 2.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.verify h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.verify__body p {
  margin-top: 1.2rem;
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(244, 239, 234, 0.78);
}
.verify__list {
  margin-top: 1.4rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.verify__list li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: rgba(244, 239, 234, 0.8);
}
.verify__list svg {
  width: 18px; height: 18px;
  color: var(--blue);
  background: rgba(135, 183, 223, 0.18);
  border-radius: 50%;
  padding: 3px;
  flex-shrink: 0;
}
.verify__fine {
  margin-top: 1.3rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(244, 239, 234, 0.14);
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(244, 239, 234, 0.62);
}
.verify__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
}
.verify__form label { display: flex; flex-direction: column; gap: 0.35rem; }
.verify__form label span {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.55);
}
.verify__form input {
  padding: 0.85rem 1rem;
  background: rgba(244, 239, 234, 0.06);
  border: 1px solid rgba(244, 239, 234, 0.18);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.verify__form input:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(135, 183, 223, 0.06);
}
.verify__form input::placeholder { color: rgba(244, 239, 234, 0.4); }
.verify__form .btn { margin-top: 0.4rem; }
.verify__sent {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(20, 32, 51, 0.94);
  border-radius: 12px;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.45s var(--ease);
}
.verify__sent em { color: var(--blue); margin-right: 0.4rem; }
.verify__form.is-sent .verify__sent { opacity: 1; pointer-events: auto; }

/* =====================================================================
   FINANCE PLANS PAGE
   ===================================================================== */
.fin-hero {
  position: relative;
  background:
    radial-gradient(60% 50% at 12% 18%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    radial-gradient(55% 45% at 90% 92%, rgba(135, 183, 223, 0.12) 0%, transparent 70%),
    var(--cream);
  padding: clamp(7.5rem, 13vw, 11rem) 0 clamp(5rem, 8vw, 7rem);
  overflow: hidden;
}
.fin-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.fin-hero h1 {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.6rem, 1.2rem + 5.2vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--navy);
}
.fin-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.fin-hero__sub {
  margin-top: 1.6rem;
  max-width: 48ch;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.fin-hero__actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* Receipt */
.fin-hero__receipt {
  justify-self: end;
  width: 100%;
  max-width: 420px;
  transform: rotate(-1.5deg);
  transition: transform 0.6s var(--ease);
}
.fin-hero__receipt.in-view { transform: rotate(0deg); }
.receipt {
  background: var(--white);
  border-radius: 14px;
  padding: 1.8rem 1.8rem 1.6rem;
  box-shadow: 0 30px 60px -22px rgba(26, 39, 56, 0.4), 0 12px 24px rgba(26, 39, 56, 0.1);
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  position: relative;
}
.receipt__hand {
  position: absolute;
  top: -22px; right: 14px;
  font-family: 'Italianno', cursive;
  font-size: 2.2rem;
  color: var(--accent);
  transform: rotate(-6deg);
}
.receipt__hand em {
  font-family: 'Italianno', cursive;
  font-style: normal;
}
.receipt__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 0.96rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.receipt__row--head { font-weight: 500; color: var(--navy); }
.receipt__amt {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--navy);
}
.receipt__num {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--navy);
}
.receipt__rule {
  display: block;
  height: 1px;
  background: rgba(26, 39, 56, 0.12);
  margin: 0.3rem 0;
}
.receipt__row--monthly {
  align-items: baseline;
  padding: 0.4rem 0 0.2rem;
}
.receipt__row--monthly span:first-child {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.88rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.receipt__mo em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2.6rem;
  color: var(--accent);
  letter-spacing: -0.02em;
  line-height: 1;
}
.receipt__foot {
  margin-top: 0.4rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--ink-faint);
  text-align: right;
}

/* Partners */
.partners {
  background:
    radial-gradient(60% 55% at 50% 8%, rgba(255,255,255, 0.45) 0%, transparent 65%),
    var(--sky);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.partners__head { text-align: center; max-width: 720px; margin-inline: auto; }
.partners__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.partners__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.partners__lede {
  margin-top: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.partners__grid {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 980px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}
.partner {
  background: var(--cream);
  border-radius: 16px;
  padding: clamp(1.8rem, 3vw, 2.4rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 22px 40px -18px rgba(26, 39, 56, 0.22);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.partner:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 50px -20px rgba(26, 39, 56, 0.28);
}
.partner__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.partner__mark {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.partner__pct {
  display: grid;
  place-items: center;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
}
.partner__leaf {
  width: 38px; height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.14);
  color: #2e7d32;
}
.partner__leaf svg { width: 22px; height: 22px; }
.partner__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.45rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.partner__tag {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  padding: 0.3rem 0.65rem;
  background: rgba(135, 183, 223, 0.16);
  border-radius: 999px;
}
.partner__lede {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.partner__list {
  list-style: none;
  padding: 0;
  margin: 0.4rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.partner__list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1rem;
  align-items: baseline;
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--navy);
  padding-bottom: 0.55rem;
  border-bottom: 1px solid rgba(26, 39, 56, 0.08);
}
.partner__list li:last-child { border-bottom: 0; }
.partner__list b {
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.partner__list span { color: var(--ink-soft); letter-spacing: 0.01em; }
.partner .btn { margin-top: 0.6rem; align-self: flex-start; }

/* Examples (interactive) */
.ex {
  background: var(--cream);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.ex__head { text-align: center; max-width: 760px; margin-inline: auto; }
.ex__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.ex__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.ex__lede {
  margin-top: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.ex__panel {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1080px;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 2rem;
  background: var(--white);
  border-radius: var(--r-md);
  padding: clamp(2rem, 3.5vw, 3rem);
  box-shadow: 0 30px 60px -22px rgba(26, 39, 56, 0.22);
  align-items: center;
}
.ex__choices { display: flex; flex-direction: column; gap: 0.6rem; }
.ex__label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.5rem;
}
.ex__row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ex__chip {
  background: var(--cream);
  border: 1px solid rgba(26, 39, 56, 0.1);
  border-radius: 999px;
  padding: 0.65rem 0.95rem;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: -0.005em;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.ex__chip i {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 500;
}
.ex__chip:hover { border-color: rgba(135, 183, 223, 0.55); }
.ex__chip.is-active {
  background: var(--navy);
  color: var(--cream);
  border-color: var(--navy);
}
.ex__chip.is-active i { color: var(--blue); }
.ex__readout {
  background: linear-gradient(165deg, #142033 0%, #0e1828 100%);
  color: var(--cream);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  text-align: center;
  position: relative;
  box-shadow: 0 26px 52px -22px rgba(0, 0, 0, 0.5);
}
.ex__bigeyebrow {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.8rem;
}
.ex__big {
  display: block;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(3.5rem, 2.5rem + 4vw, 6rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cream);
  transition: opacity 0.3s var(--ease);
}
.ex__sub {
  display: block;
  margin-top: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  color: rgba(244, 239, 234, 0.75);
}
.ex__hand {
  display: block;
  margin-top: 1.4rem;
  font-family: 'Italianno', cursive;
  font-size: 1.6rem;
  color: var(--blue);
}
.ex__hand em {
  font-family: 'Italianno', cursive;
  font-style: normal;
}

/* How it works */
.works {
  background:
    radial-gradient(60% 50% at 50% 14%, rgba(135, 183, 223, 0.16) 0%, transparent 65%),
    linear-gradient(180deg, #0e1828 0%, #142033 50%, #0e1828 100%);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
  color: var(--cream);
}
.works__head { text-align: center; max-width: 720px; margin-inline: auto; }
.works .eyebrow { color: var(--blue); }
.works__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.works__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.works__steps {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1080px;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.works__step {
  background: rgba(244, 239, 234, 0.05);
  border: 1px solid rgba(244, 239, 234, 0.1);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}
.works__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--blue);
}
.works__step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.works__step p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: rgba(244, 239, 234, 0.75);
}
.works__cta {
  margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.works__or {
  font-family: var(--font-display);
  font-size: 0.94rem;
  color: rgba(244, 239, 234, 0.62);
  letter-spacing: 0.02em;
}
.works__or b { color: var(--cream); font-weight: 500; }

/* --- Resource pages responsive --- */
@media (max-width: 1080px) {
  .forms-hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .forms-hero__stack { justify-self: stretch; max-width: 100%; aspect-ratio: 1 / 0.95; }
  .packet__grid { grid-template-columns: repeat(3, 1fr); }
  .saved__row { grid-template-columns: 1fr; gap: 0.5rem; }
  .saved__label { text-align: left; }
  .forms-close__card { grid-template-columns: 1fr; gap: 2rem; }
  .wall__grid { grid-template-columns: repeat(3, 1fr); }
  .tiers__grid { grid-template-columns: 1fr; }
  .verify__card { grid-template-columns: 1fr; gap: 2.4rem; }
  .fin-hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .fin-hero__receipt { justify-self: start; max-width: 460px; }
  .partners__grid { grid-template-columns: 1fr; }
  .ex__panel { grid-template-columns: 1fr; gap: 1.6rem; }
  .works__steps { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .packet__grid { grid-template-columns: repeat(2, 1fr); }
  .wall__grid { grid-template-columns: repeat(2, 1fr); }
}

/* =====================================================================
   MEMBERSHIP (SMILE CLUB) PAGE
   ===================================================================== */
.page-club { background: var(--cream); }

/* --- Hero with Membership Card --- */
.club-hero {
  position: relative;
  background:
    radial-gradient(60% 50% at 14% 18%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    radial-gradient(55% 45% at 90% 92%, rgba(135, 183, 223, 0.14) 0%, transparent 70%),
    var(--cream);
  padding: clamp(7.5rem, 13vw, 11rem) 0 clamp(5rem, 8vw, 7rem);
  overflow: hidden;
}
.club-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.club-hero h1 {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.6rem, 1.2rem + 5.2vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--navy);
}
.club-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.club-hero__sub {
  margin-top: 1.6rem;
  max-width: 50ch;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.club-hero__actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.club-hero__meta {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.8rem;
  font-family: var(--font-display);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* The actual membership card */
.club-hero__card-wrap {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 460px;
  perspective: 1200px;
}
.member-card {
  position: relative;
  aspect-ratio: 1.6 / 1;
  background:
    radial-gradient(60% 60% at 88% 22%, rgba(135, 183, 223, 0.42) 0%, transparent 65%),
    radial-gradient(50% 50% at 12% 90%, rgba(135, 183, 223, 0.22) 0%, transparent 70%),
    linear-gradient(165deg, #1a2738 0%, #0e1828 100%);
  color: var(--cream);
  border-radius: 20px;
  padding: 1.5rem 1.6rem 1.4rem;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  gap: 0.85rem;
  transform: rotate(-3deg);
  transform-origin: center center;
  box-shadow:
    0 40px 80px -32px rgba(0, 0, 0, 0.6),
    0 18px 38px -16px rgba(26, 39, 56, 0.5),
    inset 0 0 0 1px rgba(244, 239, 234, 0.08);
  transition: transform 0.7s var(--ease);
  overflow: hidden;
}
.club-hero__card-wrap.in-view .member-card { transform: rotate(-1.5deg); }
.member-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(135deg, transparent 0px, transparent 120px, rgba(135, 183, 223, 0.04) 121px, rgba(135, 183, 223, 0.04) 122px);
  pointer-events: none;
}
.member-card__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
  z-index: 1;
}
.member-card__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.member-card__brand img {
  width: 32px; height: 32px;
  filter: brightness(2.5);
  opacity: 0.85;
}
.member-card__brand span {
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.72);
  line-height: 1.25;
}
.member-card__brand b {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  text-transform: none;
  color: var(--blue);
}
.member-card__tier {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--blue);
}
.member-card__chip {
  position: relative;
  z-index: 1;
  display: inline-grid;
  width: 44px; height: 32px;
  color: rgba(135, 183, 223, 0.85);
}
.member-card__chip svg { width: 100%; height: 100%; }
.member-card__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  align-self: end;
}
.member-card__label {
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.5);
}
.member-card__name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.member-card__foot {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}
.member-card__foot > div { display: flex; flex-direction: column; gap: 0.2rem; }
.member-card__value {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--cream);
}
.member-card__sig {
  font-family: 'Italianno', cursive;
  font-size: 2.4rem;
  line-height: 1;
  color: var(--blue);
  align-self: end;
}
.member-card__crest {
  position: absolute;
  top: 50%;
  right: -18px;
  transform: translateY(-50%);
  width: 110px; height: 110px;
  color: var(--blue);
  opacity: 0.16;
}

/* --- Plans Grid --- */
.plans {
  background:
    radial-gradient(60% 55% at 50% 8%, rgba(135, 183, 223, 0.16) 0%, transparent 65%),
    var(--cream);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
  border-top: 1px solid rgba(26, 39, 56, 0.08);
}
.plans__head { text-align: center; max-width: 720px; margin-inline: auto; }
.plans__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.plans__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.plans__lede {
  margin-top: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.plans__grid {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1140px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.1rem;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(26, 39, 56, 0.08);
  border-radius: 16px;
  padding: 1.8rem 1.5rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: 0 18px 36px -18px rgba(26, 39, 56, 0.2);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.plan-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 50px -22px rgba(26, 39, 56, 0.3);
}
.plan-card--featured {
  background: linear-gradient(180deg, var(--cream) 0%, var(--white) 100%);
  border: 1px solid rgba(135, 183, 223, 0.45);
  box-shadow: 0 28px 56px -22px rgba(135, 183, 223, 0.45), 0 0 0 1px rgba(135, 183, 223, 0.18);
  transform: translateY(-8px);
}
.plan-card--featured:hover { transform: translateY(-12px); }
.plan-card__badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  padding: 0.35rem 0.8rem;
  background: var(--accent);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}
.plan-card__tier {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.plan-card__elig {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--accent);
}
.plan-card__price {
  margin: 0.4rem 0 0.6rem;
  display: inline-flex;
  align-items: baseline;
  gap: 0.4rem;
}
.plan-card__price em {
  font-family: var(--font-display);
  font-weight: 200;
  font-style: normal;
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--navy);
}
.plan-card__price b {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.plan-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid rgba(26, 39, 56, 0.1);
  padding-top: 0.9rem;
}
.plan-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.plan-card__list svg {
  flex-shrink: 0;
  width: 14px; height: 14px;
  color: var(--accent);
  background: rgba(135, 183, 223, 0.18);
  border-radius: 50%;
  padding: 2px;
  margin-top: 1px;
}
.plan-card__off {
  margin-top: auto;
  padding-top: 0.9rem;
  border-top: 1px dashed rgba(26, 39, 56, 0.18);
  font-family: var(--font-display);
  font-size: 0.84rem;
  color: var(--ink-soft);
  text-align: center;
}
.plan-card__off em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  margin-right: 0.3rem;
  font-size: 1.05rem;
}
.plan-card .btn { margin-top: 0.6rem; justify-content: center; width: 100%; }

/* --- VS Insurance Comparison --- */
.vs {
  background:
    radial-gradient(60% 50% at 50% 12%, rgba(135, 183, 223, 0.16) 0%, transparent 65%),
    linear-gradient(180deg, #0e1828 0%, #142033 50%, #0e1828 100%);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
  color: var(--cream);
}
.vs__head { text-align: center; max-width: 820px; margin-inline: auto; }
.vs .eyebrow { color: var(--blue); }
.vs__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.2rem);
  line-height: 1.16;
  letter-spacing: -0.012em;
  color: var(--cream);
}
.vs__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.vs__table {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 980px;
}
.vs__row {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 1.4rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid rgba(244, 239, 234, 0.1);
  align-items: baseline;
}
.vs__row--head { padding-bottom: 0.6rem; border-bottom-color: rgba(244, 239, 234, 0.22); }
.vs__what {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  color: var(--cream);
  letter-spacing: -0.005em;
}
.vs__row--head .vs__what {}
.vs__a, .vs__b {
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
}
.vs__row--head .vs__a, .vs__row--head .vs__b {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.55);
}
.vs__a { color: rgba(244, 239, 234, 0.6); text-decoration: line-through; text-decoration-color: rgba(244, 239, 234, 0.3); }
.vs__row--head .vs__a { text-decoration: none; }
.vs__b { color: var(--blue); font-weight: 500; }
.vs__row--head .vs__b { color: rgba(244, 239, 234, 0.55); font-weight: 500; }
.vs__note {
  margin: 2.2rem auto 0;
  max-width: 720px;
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.5;
  color: rgba(244, 239, 234, 0.78);
}
.vs__note em { color: var(--blue); font-weight: 600; }

/* --- Savings Calculator --- */
.savings {
  background: var(--cream);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.savings__head { text-align: center; max-width: 740px; margin-inline: auto; }
.savings__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.savings__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.savings__lede {
  margin-top: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.savings__panel {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1080px;
  background: var(--white);
  border-radius: var(--r-md);
  padding: clamp(2rem, 3.5vw, 3rem);
  box-shadow: 0 30px 60px -22px rgba(26, 39, 56, 0.25);
}
.savings__choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.8rem;
}
.savings__pick {
  background: var(--cream);
  border: 1px solid rgba(26, 39, 56, 0.1);
  border-radius: 14px;
  padding: 1.2rem 1.1rem;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  color: var(--navy);
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.savings__pick:hover {
  border-color: rgba(135, 183, 223, 0.55);
  transform: translateY(-2px);
}
.savings__pick.is-active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--cream);
}
.savings__pick-ico {
  display: grid;
  place-items: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(135, 183, 223, 0.18);
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.savings__pick.is-active .savings__pick-ico { background: rgba(135, 183, 223, 0.22); color: var(--blue); }
.savings__pick-ico svg { width: 24px; height: 24px; }
.savings__pick-label {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: -0.005em;
}
.savings__pick-sub {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.savings__pick.is-active .savings__pick-sub { color: rgba(244, 239, 234, 0.7); }

.savings__readout {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
  background: var(--cream);
  border-radius: 14px;
  overflow: hidden;
}
.savings__col {
  padding: 1.6rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  border-right: 1px solid rgba(26, 39, 56, 0.1);
}
.savings__col:last-child { border-right: 0; }
.savings__col-label {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.savings__col-amt {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2rem, 1.4rem + 1.8vw, 2.8rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
  transition: opacity 0.3s var(--ease);
}
.savings__col--bad .savings__col-amt { color: rgba(26, 39, 56, 0.55); text-decoration: line-through; text-decoration-color: rgba(26, 39, 56, 0.25); }
.savings__col--good .savings__col-amt { color: var(--navy); }
.savings__col-sub {
  font-family: var(--font-display);
  font-size: 0.82rem;
  color: var(--ink-soft);
  letter-spacing: 0.01em;
}
.savings__delta {
  padding: 1.6rem 1.4rem;
  background:
    radial-gradient(50% 50% at 80% 20%, rgba(135, 183, 223, 0.3) 0%, transparent 65%),
    linear-gradient(165deg, #142033 0%, #0e1828 100%);
  color: var(--cream);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.savings__delta-label {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
}
.savings__delta-amt {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.4rem, 1.4rem + 2.2vw, 3.4rem);
  line-height: 1;
  color: var(--cream);
  font-variant-numeric: tabular-nums;
  transition: opacity 0.3s var(--ease);
}
.savings__delta-extra {
  font-family: var(--font-display);
  font-size: 0.84rem;
  letter-spacing: 0.01em;
  color: rgba(244, 239, 234, 0.78);
}
.savings__delta-extra em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.savings__fine {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-size: 0.76rem;
  letter-spacing: 0.02em;
  color: var(--ink-faint);
  text-align: center;
}

/* --- How to Join --- */
.join {
  background:
    radial-gradient(60% 55% at 50% 8%, rgba(255,255,255, 0.4) 0%, transparent 65%),
    var(--sky);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.join__head { text-align: center; max-width: 720px; margin-inline: auto; }
.join__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.join__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.join__steps {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1080px;
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.join__step {
  background: var(--cream);
  border-radius: 16px;
  padding: 2rem 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  box-shadow: 0 16px 28px -18px rgba(26, 39, 56, 0.25);
}
.join__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1;
  color: var(--accent);
}
.join__step h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.join__step p {
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.join__cta {
  margin: clamp(2.5rem, 4vw, 3.5rem) auto 0;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.join__or {
  font-family: var(--font-display);
  font-size: 0.94rem;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}
.join__or b { color: var(--accent); font-weight: 500; }

/* --- Member FAQ (card grid, distinct format) --- */
.mfaq {
  background: var(--cream);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.mfaq__head { text-align: center; max-width: 720px; margin-inline: auto; }
.mfaq__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.2rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.mfaq__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.mfaq__grid {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.qcard {
  background: var(--white);
  border-radius: 14px;
  padding: 1.6rem 1.4rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  box-shadow: 0 14px 26px -16px rgba(26, 39, 56, 0.2);
  border-top: 3px solid var(--accent);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.qcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 36px -16px rgba(26, 39, 56, 0.28);
}
.qcard__q {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--navy);
  letter-spacing: -0.005em;
  display: block;
}
.qcard__q em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.qcard p {
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--ink-soft);
}

/* --- Closing CTA --- */
.club-cta {
  background:
    radial-gradient(60% 50% at 50% 14%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    linear-gradient(180deg, #0e1828 0%, #142033 100%);
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.club-cta__card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: clamp(2.4rem, 4vw, 3.6rem);
  text-align: center;
  position: relative;
  box-shadow: 0 36px 72px -28px rgba(0, 0, 0, 0.55);
}
.club-cta__crest {
  display: inline-block;
  width: 64px; height: 64px;
  color: var(--accent);
  opacity: 0.85;
  margin-bottom: 1rem;
}
.club-cta__crest svg { width: 100%; height: 100%; }
.club-cta h2 {
  margin-top: 1.2rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.2vw, 3rem);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.club-cta h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.club-cta p {
  margin: 1.4rem auto 0;
  max-width: 46ch;
  font-size: 1.04rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.club-cta__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.club-cta__sig {
  display: block;
  margin-top: 2rem;
  font-family: 'Italianno', cursive;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
}

/* --- Membership page responsive --- */
@media (max-width: 1080px) {
  .club-hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .club-hero__card-wrap { justify-self: start; max-width: 480px; }
  .plans__grid { grid-template-columns: repeat(2, 1fr); }
  .plan-card--featured { transform: none; }
  .plan-card--featured:hover { transform: translateY(-4px); }
  .savings__choices { grid-template-columns: 1fr; }
  .savings__readout { grid-template-columns: 1fr; }
  .savings__col { border-right: 0; border-bottom: 1px solid rgba(26, 39, 56, 0.1); }
  .join__steps { grid-template-columns: 1fr; }
  .mfaq__grid { grid-template-columns: repeat(2, 1fr); }
  .vs__row { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 720px) {
  .plans__grid { grid-template-columns: 1fr; }
  .mfaq__grid { grid-template-columns: 1fr; }
  .vs__row { grid-template-columns: 1fr; gap: 0.4rem; padding: 1rem 0; }
  .vs__row--head { display: none; }
  .vs__a, .vs__b { font-size: 0.92rem; }
  .vs__a::before { content: "Insurance: "; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(244, 239, 234, 0.45); margin-right: 0.4rem; }
  .vs__b::before { content: "Smile Club: "; font-size: 0.66rem; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(135, 183, 223, 0.6); margin-right: 0.4rem; }
}

/* =====================================================================
   CONTACT PAGE
   ===================================================================== */
.page-contact { background: var(--cream); }

/* --- Hero with 3 channels --- */
.ct-hero {
  position: relative;
  background:
    radial-gradient(60% 50% at 12% 18%, rgba(135, 183, 223, 0.20) 0%, transparent 65%),
    radial-gradient(55% 45% at 92% 92%, rgba(135, 183, 223, 0.14) 0%, transparent 70%),
    var(--cream);
  padding: clamp(7.5rem, 13vw, 11rem) 0 clamp(5rem, 8vw, 7rem);
  overflow: hidden;
}
.ct-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 5rem);
  align-items: center;
}
.ct-hero h1 {
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.6rem, 1.2rem + 5.2vw, 5.4rem);
  line-height: 1.04;
  letter-spacing: -0.018em;
  color: var(--navy);
}
.ct-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.ct-hero__sub {
  margin-top: 1.6rem;
  max-width: 50ch;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.ct-hero__status {
  margin-top: 2rem;
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.1rem;
  background: var(--white);
  border-radius: 999px;
  border: 1px solid rgba(135, 183, 223, 0.42);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
  box-shadow: 0 8px 18px -8px rgba(26, 39, 56, 0.16);
}
.ct-hero__dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #2e9d65;
  box-shadow: 0 0 0 3px rgba(46, 157, 101, 0.25);
  animation: ct-pulse 2.4s ease-in-out infinite;
}
@keyframes ct-pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(46, 157, 101, 0.25); }
  50%      { box-shadow: 0 0 0 6px rgba(46, 157, 101, 0.12); }
}

/* The 3 channel cards */
.ct-hero__channels {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.channel {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  grid-template-areas:
    "head big arr"
    "head sub arr";
  gap: 0.15rem 1.1rem;
  align-items: center;
  padding: 1.2rem 1.3rem 1.2rem 1.3rem;
  background: var(--white);
  border: 1px solid rgba(26, 39, 56, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 32px -18px rgba(26, 39, 56, 0.22);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
  text-align: left;
}
.channel:hover {
  transform: translateY(-3px);
  border-color: rgba(135, 183, 223, 0.55);
  box-shadow: 0 28px 50px -22px rgba(26, 39, 56, 0.3);
}
.channel--call {
  background: linear-gradient(160deg, var(--navy) 0%, #0e1828 100%);
  border-color: var(--navy);
  color: var(--cream);
}
.channel--call:hover { border-color: var(--blue); }
.channel__head {
  grid-area: head;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding-right: 1.1rem;
  border-right: 1px solid rgba(26, 39, 56, 0.1);
  margin-right: 0.2rem;
  align-self: stretch;
  justify-content: center;
}
.channel--call .channel__head { border-right-color: rgba(244, 239, 234, 0.18); }
.channel__ico {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(135, 183, 223, 0.18);
  color: var(--accent);
}
.channel--call .channel__ico { background: rgba(135, 183, 223, 0.18); color: var(--blue); }
.channel__ico svg { width: 22px; height: 22px; }
.channel__label {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.channel--call .channel__label { color: rgba(244, 239, 234, 0.5); }
.channel__big {
  grid-area: big;
  align-self: end;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.15rem, 0.9rem + 0.7vw, 1.4rem);
  letter-spacing: -0.005em;
  color: var(--navy);
}
.channel--call .channel__big { color: var(--cream); }
.channel__sub {
  grid-area: sub;
  align-self: start;
  font-family: var(--font-display);
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.45;
}
.channel--call .channel__sub { color: rgba(244, 239, 234, 0.72); }
.channel__sub em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.channel--call .channel__sub em { color: var(--blue); }
.channel__arrow {
  grid-area: arr;
  font-size: 1.4rem;
  color: var(--accent);
  transition: transform 0.4s var(--ease), color 0.4s var(--ease);
}
.channel--call .channel__arrow { color: var(--blue); }
.channel:hover .channel__arrow { transform: translateX(4px); }

/* --- Contact Form Section --- */
.ct-form {
  background:
    radial-gradient(60% 55% at 50% 8%, rgba(255,255,255, 0.4) 0%, transparent 65%),
    var(--sky);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.ct-form__grid {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}
.ct-form__copy h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 1.4rem + 2.2vw, 3.2rem);
  line-height: 1.12;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.ct-form__copy h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.ct-form__lede {
  margin-top: 1.4rem;
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 42ch;
}
.ct-form__assure {
  margin-top: 1.6rem;
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.ct-form__assure li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-family: var(--font-display);
  font-size: 0.94rem;
  color: var(--ink-soft);
}
.ct-form__assure svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--accent);
  background: rgba(135, 183, 223, 0.18);
  border-radius: 50%;
  padding: 3px;
}
.ct-form__sig {
  display: block;
  margin-top: 1.6rem;
  font-family: 'Italianno', cursive;
  font-size: 2.2rem;
  line-height: 1;
  color: var(--accent);
}

.ct-form__form {
  background:
    radial-gradient(50% 50% at 90% 10%, rgba(135, 183, 223, 0.16) 0%, transparent 65%),
    linear-gradient(165deg, #142033 0%, #0e1828 100%);
  color: var(--cream);
  border-radius: var(--r-md);
  padding: clamp(2rem, 3.5vw, 2.8rem);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 32px 64px -28px rgba(0, 0, 0, 0.55);
  transition: opacity 0.4s var(--ease);
}
.ct-form__type {
  border: 0;
  padding: 0;
  margin: 0 0 0.5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.45rem;
}
.ct-form__type legend {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.55rem;
  width: 100%;
}
.ct-form__type label {
  position: relative;
  cursor: pointer;
}
.ct-form__type input { position: absolute; opacity: 0; pointer-events: none; }
.ct-form__type span {
  display: block;
  text-align: center;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(244, 239, 234, 0.16);
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.84rem;
  color: rgba(244, 239, 234, 0.75);
  letter-spacing: 0.01em;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), color 0.3s var(--ease);
}
.ct-form__type label:hover span { border-color: rgba(135, 183, 223, 0.55); color: var(--cream); }
.ct-form__type input:checked + span {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--navy);
  font-weight: 500;
}
.ct-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
}
.ct-form__form label:not(.ct-form__type label) { display: flex; flex-direction: column; gap: 0.35rem; }
.ct-form__form label > span:not(.ct-form__type span):first-child {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.55);
}
.ct-form__form input,
.ct-form__form textarea {
  padding: 0.85rem 1rem;
  background: rgba(244, 239, 234, 0.06);
  border: 1px solid rgba(244, 239, 234, 0.18);
  border-radius: 10px;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  width: 100%;
  resize: vertical;
  min-height: 44px;
  transition: border-color 0.3s var(--ease), background-color 0.3s var(--ease);
}
.ct-form__form textarea { font-family: var(--font-display); line-height: 1.55; min-height: 110px; }
.ct-form__form input:focus,
.ct-form__form textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: rgba(135, 183, 223, 0.06);
}
.ct-form__form ::placeholder { color: rgba(244, 239, 234, 0.42); }
.ct-form__form .btn { margin-top: 0.6rem; align-self: flex-start; }
.ct-form__fine {
  font-family: var(--font-display);
  font-size: 0.74rem;
  letter-spacing: 0.02em;
  color: rgba(244, 239, 234, 0.5);
  line-height: 1.55;
}

.ct-form__success {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  text-align: center;
  background: var(--cream);
  border-radius: var(--r-md);
  padding: clamp(2rem, 3vw, 3rem);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease);
  box-shadow: 0 32px 64px -28px rgba(26, 39, 56, 0.35);
}
.ct-form.is-sent .ct-form__success { opacity: 1; pointer-events: auto; }
.ct-form.is-sent .ct-form__form,
.ct-form.is-sent .ct-form__copy { opacity: 0.18; pointer-events: none; }
.ct-form__success > div, .ct-form__success > * { max-width: 480px; margin-inline: auto; }
.ct-form__check {
  display: inline-grid;
  place-items: center;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: rgba(135, 183, 223, 0.18);
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.ct-form__check svg { width: 38px; height: 38px; }
.ct-form__success h3 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 1.2rem + 1.2vw, 2.4rem);
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -0.012em;
}
.ct-form__success p {
  margin: 1rem auto 0;
  max-width: 40ch;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.ct-form__success p a { color: var(--accent); border-bottom: 1px solid rgba(37, 117, 174, 0.4); }
.ct-form__success .ct-form__sig { margin-top: 1.4rem; }

/* --- Map + Directions --- */
.ct-map {
  background: var(--cream);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.ct-map__head { text-align: center; max-width: 720px; margin-inline: auto; }
.ct-map__head h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.1rem, 1.4rem + 2.4vw, 3.4rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.ct-map__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.ct-map__lede {
  margin-top: 1.2rem;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.ct-map__grid {
  margin: clamp(3rem, 5vw, 4rem) auto 0;
  max-width: 1180px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: clamp(1.4rem, 2.5vw, 2.2rem);
}
.ct-map__frame {
  position: relative;
  border-radius: var(--r-md);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 30px 60px -22px rgba(26, 39, 56, 0.32), 0 0 0 1px rgba(135, 183, 223, 0.2);
  background: var(--sky);
}
.ct-map__frame iframe {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
}
.ct-map__side { display: flex; flex-direction: column; gap: 1rem; }
.ct-map__card {
  background:
    radial-gradient(60% 55% at 12% 12%, rgba(135, 183, 223, 0.16) 0%, transparent 65%),
    var(--white);
  border-radius: var(--r-md);
  padding: clamp(1.6rem, 2.5vw, 2.2rem);
  box-shadow: 0 22px 44px -20px rgba(26, 39, 56, 0.22);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  height: 100%;
}
.ct-map__pin {
  display: grid;
  place-items: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(135, 183, 223, 0.18);
  color: var(--accent);
}
.ct-map__pin svg { width: 24px; height: 24px; }
.ct-map__small {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.ct-map__card h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.2rem, 1rem + 0.6vw, 1.45rem);
  line-height: 1.25;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.ct-map__links {
  list-style: none;
  margin: 0.4rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.ct-map__links a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(26, 39, 56, 0.1);
  border-radius: 10px;
  transition: background-color 0.3s var(--ease), border-color 0.3s var(--ease), transform 0.3s var(--ease);
}
.ct-map__links a:hover {
  background: var(--cream);
  border-color: rgba(135, 183, 223, 0.55);
  transform: translateX(2px);
}
.ct-map__links svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
.ct-map__links b {
  display: block;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.ct-map__links i {
  display: block;
  font-family: var(--font-display);
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}
.ct-map__landmarks {
  margin-top: auto;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(26, 39, 56, 0.1);
}
.ct-map__landmarks h4 {
  font-family: var(--font-display);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-bottom: 0.7rem;
}
.ct-map__landmarks ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}
.ct-map__landmarks li {
  font-family: var(--font-display);
  font-size: 0.92rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.ct-map__landmarks b {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  margin-right: 0.3rem;
}

/* --- Hours + What to Bring --- */
.ct-hours {
  background:
    radial-gradient(60% 50% at 90% 90%, rgba(135, 183, 223, 0.16) 0%, transparent 65%),
    var(--sky);
  padding: clamp(6.5rem, 11vw, 10rem) 0;
}
.ct-hours__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 3.6rem);
  max-width: 1080px;
  margin: 0 auto;
}
.ct-hours h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.9rem, 1.4rem + 1.6vw, 2.6rem);
  line-height: 1.14;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.ct-hours h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.ct-hours__panel, .ct-hours__bring {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: clamp(1.8rem, 3vw, 2.6rem);
  box-shadow: 0 22px 44px -22px rgba(26, 39, 56, 0.22);
}
.ct-hours__list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.ct-hours__list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(26, 39, 56, 0.1);
  font-family: var(--font-display);
}
.ct-hours__list li:last-child { border-bottom: 0; }
.ct-hours__day {
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.ct-hours__time {
  font-size: 0.96rem;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.ct-hours__sat .ct-hours__time, .ct-hours__sun .ct-hours__time {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--accent);
}
.ct-hours__note {
  margin-top: 1.5rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.5;
}
.ct-hours__note em { color: var(--accent); font-weight: 600; }
.ct-hours__bring-list {
  list-style: none;
  margin: 1.6rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.ct-hours__bring-list > li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 1.1rem;
  align-items: start;
}
.ct-hours__bring-num {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(135, 183, 223, 0.18);
  color: var(--accent);
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
}
.ct-hours__bring-list h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.005em;
}
.ct-hours__bring-list p {
  margin-top: 0.4rem;
  font-size: 0.94rem;
  line-height: 1.6;
  color: var(--ink-soft);
}
.ct-hours__bring-list a {
  color: var(--accent);
  border-bottom: 1px solid rgba(37, 117, 174, 0.45);
  transition: color 0.3s var(--ease), border-color 0.3s var(--ease);
}
.ct-hours__bring-list a:hover { color: var(--navy); }

/* --- Closing --- */
.ct-close {
  background: var(--cream);
  padding: clamp(6rem, 10vw, 9rem) 0;
}
.ct-close__inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.ct-close h2 {
  margin-top: 1.3rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2.2rem, 1.4rem + 2.6vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.014em;
  color: var(--navy);
}
.ct-close h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.ct-close p {
  margin: 1.4rem auto 0;
  max-width: 46ch;
  font-size: 1.08rem;
  line-height: 1.65;
  color: var(--ink-soft);
}
.ct-close__actions {
  margin-top: 2rem;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.9rem;
}
.ct-close__sig {
  display: block;
  margin-top: 1.8rem;
  font-family: 'Italianno', cursive;
  font-size: 2.4rem;
  color: var(--accent);
  line-height: 1;
}
.ct-close__social {
  margin-top: 2rem;
  list-style: none;
  padding: 0;
  display: inline-flex;
  gap: 0.7rem;
}
.ct-close__social a {
  display: grid;
  place-items: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(26, 39, 56, 0.16);
  color: var(--navy);
  transition: background-color 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.ct-close__social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
  transform: translateY(-3px);
}
.ct-close__social svg { width: 18px; height: 18px; }

/* --- Contact page responsive --- */
@media (max-width: 1080px) {
  .ct-hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .ct-form__grid { grid-template-columns: 1fr; gap: 2.4rem; }
  .ct-map__grid { grid-template-columns: 1fr; }
  .ct-map__frame { aspect-ratio: 16 / 10; }
  .ct-hours__grid { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .channel { grid-template-columns: auto 1fr; grid-template-areas: "head big" "head sub" "arr arr"; }
  .channel__arrow { justify-self: end; }
  .ct-form__type { grid-template-columns: 1fr; }
  .ct-form__row { grid-template-columns: 1fr; }
}

/* ============================================================
   RESTORATIVE PAGE OVERHAUL - additions for new sections
   ============================================================ */

/* --- Reassurance Strip - head + new item internals (paired with replaced base rules above) --- */
.assure__head {
  text-align: center;
  margin-bottom: clamp(2.4rem, 4vw, 3.6rem);
}
.assure__head .eyebrow { color: var(--navy); opacity: 0.7; }
.assure__head h2 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0.5rem 0 0;
}
.assure__head h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.assure__icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--cream);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.25rem;
}
.assure__icon svg {
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.assure__h {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  letter-spacing: -0.005em;
  color: var(--navy);
  margin: 0;
  line-height: 1.25;
}
.assure__sub {
  font-family: var(--font-display);
  font-size: 0.86rem;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}
.assure__sub em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
  font-size: 1.05em;
}
.assure__item--stat {
  background: var(--navy);
  border-color: var(--navy);
}
.assure__item--stat:hover {
  background: var(--navy);
  border-color: var(--accent);
  transform: translateY(-2px);
}
.assure__item--stat .assure__h { color: var(--cream); }
.assure__item--stat .assure__sub { color: rgba(243, 233, 218, 0.75); }
.assure__item--stat .assure__sub em { color: var(--sky); }
.assure__statwrap {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  margin-bottom: 0.15rem;
}
.assure__statnum {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(2.6rem, 4vw, 3.2rem);
  line-height: 0.95;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.assure__statplus {
  font-size: 0.55em;
  color: var(--accent);
  vertical-align: super;
  margin-left: 0.05em;
}
.assure__statstars {
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.25em;
  color: var(--accent);
}
@media (max-width: 1024px) {
  .assure__row { grid-template-columns: repeat(3, 1fr); }
  .assure__item--stat { grid-column: span 3; flex-direction: row; align-items: center; gap: 1.4rem; }
  .assure__item--stat .assure__statwrap { flex-direction: row; align-items: baseline; gap: 0.8rem; }
}
@media (max-width: 640px) {
  .assure { padding: clamp(3rem, 8vw, 4rem) 0; }
  .assure__row { grid-template-columns: 1fr; }
  .assure__item--stat { grid-column: span 1; flex-direction: column; align-items: flex-start; gap: 0.65rem; }
  .assure__item--stat .assure__statwrap { flex-direction: column; align-items: flex-start; gap: 0.2rem; }
}

/* --- Materials head: add support for a lede paragraph --- */
.materials__lede {
  margin: 1.2rem auto 0;
  max-width: 640px;
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--ink-soft);
  text-align: center;
}

/* ============ MID-PAGE CTA ============ */
.midcta {
  position: relative;
  background: var(--cream);
  padding: clamp(3.5rem, 2rem + 5vw, 6.5rem) 0 clamp(3rem, 1.6rem + 4vw, 5.5rem);
  overflow: hidden;
}
.midcta::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(55% 45% at 12% 18%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    radial-gradient(50% 45% at 92% 90%, rgba(135, 183, 223, 0.10) 0%, transparent 70%);
  pointer-events: none;
}
.midcta .container { position: relative; }
.midcta__panel {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(0, 1fr);
  gap: clamp(2rem, 1rem + 3vw, 4rem);
  align-items: stretch;
  padding: clamp(2.2rem, 1.4rem + 2.6vw, 3.6rem) clamp(1.8rem, 1rem + 2.4vw, 3.2rem);
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-lg);
  box-shadow:
    0 30px 60px -28px rgba(26, 39, 56, 0.45),
    0 2px 0 0 rgba(244, 239, 234, 0.06) inset;
  overflow: hidden;
  isolation: isolate;
}
.midcta__glow {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(70% 55% at 8% 8%, rgba(135, 183, 223, 0.22) 0%, transparent 60%),
    radial-gradient(55% 50% at 100% 100%, rgba(135, 183, 223, 0.14) 0%, transparent 65%),
    radial-gradient(2px 2px at 18% 30%, rgba(211, 227, 239, 0.35), transparent 60%),
    radial-gradient(1.5px 1.5px at 78% 20%, rgba(211, 227, 239, 0.28), transparent 60%),
    radial-gradient(1.5px 1.5px at 62% 84%, rgba(211, 227, 239, 0.25), transparent 60%);
  pointer-events: none;
}
.midcta__body,
.midcta__sig { position: relative; z-index: 1; }
.midcta__body { display: flex; flex-direction: column; }
.midcta__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--blue);
}
.midcta__eyebrow::before {
  content: "";
  width: 32px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}
.midcta__h {
  margin: 1.1rem 0 0;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.08;
  font-size: clamp(1.9rem, 1.2rem + 2.2vw, 2.9rem);
  color: var(--cream);
  max-width: 18ch;
}
.midcta__h em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
  letter-spacing: 0.005em;
}
.midcta__lede {
  margin: 1.2rem 0 0;
  max-width: 54ch;
  font-size: 1.02rem;
  line-height: 1.65;
  color: rgba(244, 239, 234, 0.78);
}
.midcta__lede strong {
  color: var(--cream);
  font-weight: 500;
  border-bottom: 1px solid rgba(135, 183, 223, 0.45);
  padding-bottom: 1px;
}
.midcta__lede em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--blue);
}
.midcta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.9rem;
}
.midcta__call svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.midcta__trust {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin: 1.5rem 0 0;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(244, 239, 234, 0.12);
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: rgba(244, 239, 234, 0.72);
}
.midcta__trust svg {
  width: 16px;
  height: 16px;
  color: var(--blue);
  flex-shrink: 0;
}
.midcta__sig {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.6rem 0 1.6rem clamp(1.4rem, 0.8rem + 1.4vw, 2.4rem);
  border-left: 1px solid rgba(244, 239, 234, 0.12);
}
.midcta__sig-rule {
  width: 28px;
  height: 1px;
  background: var(--blue);
  opacity: 0.7;
  margin-bottom: 1rem;
}
.midcta__sig-label {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--blue);
}
.midcta__sig-quote {
  margin: 0.9rem 0 1.4rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 0.9rem + 0.7vw, 1.4rem);
  line-height: 1.45;
  color: var(--cream);
  letter-spacing: 0.005em;
}
.midcta__sig-quote em { color: var(--blue); }
.midcta__sig-name {
  font-family: 'Italianno', cursive;
  font-size: clamp(1.8rem, 1.4rem + 1vw, 2.3rem);
  line-height: 1;
  color: var(--cream);
}
.midcta__sig-title {
  margin-top: 0.35rem;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.65);
}
.midcta .btn--light { box-shadow: 0 10px 24px -14px rgba(0, 0, 0, 0.35); }
.midcta .btn--ghost {
  color: var(--cream);
  border-color: rgba(244, 239, 234, 0.32);
}
.midcta .btn--ghost:hover {
  background: var(--cream);
  color: var(--navy);
  border-color: var(--cream);
}
@media (max-width: 880px) {
  .midcta__panel {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .midcta__sig {
    border-left: 0;
    border-top: 1px solid rgba(244, 239, 234, 0.12);
    padding: 1.8rem 0 0;
    margin-top: 1.8rem;
  }
}
@media (max-width: 520px) {
  .midcta__actions { flex-direction: column; align-items: stretch; }
  .midcta__actions .btn { justify-content: center; }
}

/* ============ DR. RITA'S NOTE ============ */
.ritanote {
  background:
    radial-gradient(55% 50% at 50% 0%, rgba(255, 255, 255, 0.5) 0%, transparent 65%),
    var(--sky);
  padding: clamp(5rem, 12vw, 9rem) 0;
  position: relative;
  overflow: hidden;
}
.ritanote::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(135, 183, 223, 0.18), transparent 60%);
  pointer-events: none;
}
.ritanote .container {
  position: relative;
  z-index: 1;
}
.ritanote__card {
  position: relative;
  max-width: 880px;
  margin-inline: auto;
  padding: clamp(48px, 7vw, 92px) clamp(32px, 6vw, 84px) clamp(48px, 6vw, 72px);
  background: var(--navy);
  color: var(--cream);
  border-radius: var(--r-lg);
  box-shadow:
    0 30px 60px -30px rgba(26, 39, 56, 0.45),
    0 2px 0 rgba(255, 255, 255, 0.04) inset;
  text-align: center;
}
.ritanote__eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 1.6rem;
}
.ritanote__portrait {
  width: 108px;
  height: 108px;
  border-radius: 50%;
  margin: 0 auto 1.6rem;
  overflow: hidden;
  border: 2px solid rgba(135, 183, 223, 0.55);
  box-shadow:
    0 14px 28px -10px rgba(0, 0, 0, 0.45),
    0 0 0 6px rgba(255, 255, 255, 0.06);
  background: var(--sky);
}
.ritanote__portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  display: block;
}
.ritanote__quote {
  margin: 0;
  padding: 0;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.25rem, 2vw, 1.7rem);
  line-height: 1.5;
  color: var(--cream);
  letter-spacing: 0.005em;
}
.ritanote__quote p { margin: 0 0 1.1em; }
.ritanote__quote p:last-child { margin-bottom: 0; }
.ritanote__quote em {
  font-style: italic;
  color: var(--blue);
}
.ritanote__rule {
  width: 88px;
  height: 5px;
  margin: clamp(2rem, 4vw, 2.75rem) auto clamp(1.5rem, 3vw, 2rem);
  border-top: 1px solid rgba(211, 227, 239, 0.4);
  border-bottom: 1px solid rgba(211, 227, 239, 0.4);
}
.ritanote__attribution {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
}
.ritanote__signature {
  font-family: 'Italianno', cursive;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  line-height: 1;
  color: var(--cream);
  letter-spacing: 0.01em;
  transform: rotate(-3deg);
  transform-origin: center;
  margin-bottom: 0.2rem;
}
.ritanote__credential {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.ritanote__name {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.ritanote__role {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 234, 0.6);
}
@media (max-width: 640px) {
  .ritanote { padding: 64px 0; }
  .ritanote__card { border-radius: var(--r-md); }
  .ritanote__quote { font-size: 1.15rem; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .hero__sub, .hero__actions, .hero__scroll { opacity: 1 !important; transform: none !important; }
  .reveal-img img { clip-path: none !important; transform: none !important; }
  .hero h1 .word > span { transform: none !important; }
}

/* =====================================================================
   COSMETIC HERO - SMILE DESIGN STUDIO (right-column composition)
   Kept at the end of the file so the 1080px override below wins over
   the earlier .cos-hero__visual media rule by source order.
   ===================================================================== */
.cos-hero__visual--studio {
  max-width: 560px;
  overflow: visible;
}
.studio {
  position: relative;
  width: 100%;
  aspect-ratio: 6 / 7;
  --studio-shadow-sm: 0 16px 34px -16px rgba(26, 39, 56, 0.28);
}

/* --- layer 0 · tracing-paper sheet --- */
.studio__paper {
  position: absolute;
  top: -1.5%;
  right: 0;
  width: 58%;
  height: 44%;
  z-index: 1;
  rotate: 2deg;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background:
    repeating-linear-gradient(0deg,  rgba(26, 39, 56, 0.045) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(26, 39, 56, 0.045) 0 1px, transparent 1px 26px),
    rgba(255, 255, 255, 0.42);
  box-shadow: 0 18px 40px -26px rgba(26, 39, 56, 0.22);
}

/* --- layer 1 · reference portrait --- */
.studio__portrait {
  position: absolute;
  top: 5.5%;
  left: 2%;
  width: 64%;
  z-index: 2;
  rotate: -2deg;
  margin: 0;
}
.studio__portrait-frame {
  position: relative;
  padding: 10px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md), 0 10px 24px -16px rgba(26, 39, 56, 0.20);
}
.studio__portrait-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.9;
  object-fit: cover;
  object-position: 50% 46%;
  border-radius: calc(var(--r-md) - 7px);
  filter: saturate(0.93) contrast(0.97) brightness(1.03);
}
.studio__portrait-frame::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: calc(var(--r-md) - 7px);
  background: linear-gradient(165deg, rgba(211, 227, 239, 0.20) 0%, transparent 48%, rgba(244, 239, 234, 0.14) 100%);
  pointer-events: none;
}
.studio__tape {
  position: absolute;
  top: -13px;
  left: 50%;
  width: 92px;
  height: 26px;
  z-index: 3;
  translate: -50% 0;
  rotate: 1.5deg;
  border-radius: 2px;
  background: rgba(211, 227, 239, 0.62);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  box-shadow: 0 6px 14px -8px rgba(26, 39, 56, 0.25);
}
.studio__portrait-caption {
  margin-top: 0.55rem;
  padding-inline: 0.2rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.8rem;
}
.studio__portrait-caption em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--accent);
}
.studio__portrait-caption span {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}

/* --- layer 2 · smile-line sketch --- */
.studio__spline {
  position: absolute;
  top: 3%;
  right: -1%;
  width: 45%;
  z-index: 4;
  rotate: 2.2deg;
}
.studio__spline-card {
  padding: 0.85rem 0.9rem 0.65rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.58);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.70);
  box-shadow: var(--studio-shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.8);
}
.studio__spline-svg {
  display: block;
  width: 100%;
  height: auto;
}
/* draw-in: the curve sketches itself once the card reveals */
.studio__spline-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.15s var(--ease) 0.9s;
}
.studio__spline.in-view .studio__spline-path { stroke-dashoffset: 0; }
.studio__spline-caption {
  margin-top: 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.studio__spline-caption em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--accent);
}
.studio__spline-caption span {
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* --- layer 3 · shade guide --- */
.studio__shade {
  position: absolute;
  left: -2%;
  bottom: 29%;
  z-index: 5;
  rotate: -3deg;
  padding: 0.85rem 1rem 0.7rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--studio-shadow-sm);
}
.studio__shade-row {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.studio__shade-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}
.studio__shade-tab span {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  color: var(--navy);
}
.studio__shade-tab em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.74rem;
  line-height: 1;
  color: var(--accent);
}
.studio__shade-tooth {
  display: block;
  width: 26px;
  height: 37px;
  border-radius: 8px 8px 12px 12px;
  border: 1px solid rgba(26, 39, 56, 0.10);
  box-shadow: inset 0 2px 3px rgba(255, 255, 255, 0.7), 0 3px 6px -3px rgba(26, 39, 56, 0.25);
}
.studio__shade-tooth--b1 { background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%); }
.studio__shade-tooth--a1 { background: linear-gradient(180deg, rgba(26, 39, 56, 0.02) 0%, rgba(26, 39, 56, 0.07) 100%), var(--cream); }
.studio__shade-tooth--a2 { background: linear-gradient(180deg, rgba(26, 39, 56, 0.05) 0%, rgba(26, 39, 56, 0.12) 100%), var(--cream); }
.studio__shade-tooth--a3 { background: linear-gradient(180deg, rgba(26, 39, 56, 0.09) 0%, rgba(26, 39, 56, 0.18) 100%), var(--cream); }
.studio__shade-tab--target .studio__shade-tooth {
  box-shadow:
    0 0 0 2px var(--white),
    0 0 0 3.5px var(--accent),
    inset 0 2px 3px rgba(255, 255, 255, 0.7);
}

/* --- layer 4 · treatment tabs --- */
.studio__chips {
  position: absolute;
  top: 36%;
  right: 1%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.studio__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.5rem 1.05rem;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--line);
  border-radius: 999px;
  box-shadow: 0 10px 24px -16px rgba(26, 39, 56, 0.30);
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy);
}
.studio__chip-num {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.studio__chip:nth-child(1) { margin-right: 6px;  rotate: 0.8deg; }
.studio__chip:nth-child(2) { margin-right: 22px; rotate: -0.7deg; }
.studio__chip:nth-child(3) { margin-right: 0;    rotate: 0.4deg; }
.studio__chip:nth-child(4) { margin-right: 16px; rotate: -1deg; }

/* --- layer 5 · translucent Smile Plan --- */
.studio__plan {
  position: absolute;
  right: 0;
  bottom: 1%;
  width: 57%;
  z-index: 6;
  rotate: 1.4deg;
}
.studio__plan-card {
  padding: 1.15rem 1.25rem 0.95rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.studio__plan-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.studio__plan-eyebrow {
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.studio__plan-no {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.studio__plan-rows {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
}
.studio__plan-rows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.45rem 0;
}
.studio__plan-rows li + li {
  border-top: 1px dashed rgba(26, 39, 56, 0.16);
}
.studio__plan-rows span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.studio__plan-rows strong {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.studio__plan-foot {
  margin-top: 0.55rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.studio__plan-ok {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: var(--ink-soft);
}
.studio__plan-ok svg { flex-shrink: 0; }
.studio__plan-sig {
  font-family: 'Italianno', cursive;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent);
  rotate: -2deg;
}

/* --- glass fallback for browsers without backdrop-filter --- */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .studio__plan-card { background: rgba(255, 255, 255, 0.92); }
  .studio__spline-card { background: rgba(255, 255, 255, 0.88); }
}

/* --- gentle drift (sketch + plan only) --- */
@media (prefers-reduced-motion: no-preference) {
  .studio__float--a { animation: studio-drift 8.5s ease-in-out infinite alternate; }
  .studio__float--b { animation: studio-drift 7s ease-in-out 1.2s infinite alternate; }
}
@keyframes studio-drift {
  from { translate: 0 0; }
  to   { translate: 0 -7px; }
}
@media (prefers-reduced-motion: reduce) {
  .studio__float--a,
  .studio__float--b { animation: none; }
  .studio__spline-path { stroke-dasharray: none; stroke-dashoffset: 0; transition: none; }
}

/* --- responsive --- */
@media (max-width: 1080px) {
  .cos-hero__visual--studio {
    justify-self: center;
    max-width: 560px;
    margin-inline: auto;
  }
}
@media (max-width: 640px) {
  /* Stacked collage: only the spline keeps an absolute overlap (anchored to
     the top of the stage = top of the portrait, so it can never collide
     with the flowing cards below). Everything else returns to flow. */
  .studio { aspect-ratio: auto; padding-top: 1.5rem; }
  .studio__paper,
  .studio__tape { display: none; }
  .studio__portrait {
    position: relative;
    top: auto;
    left: auto;
    width: 86%;
    rotate: -1.5deg;
  }
  .studio__portrait-frame { padding: 7px; }
  .studio__portrait-frame::after { inset: 7px; }
  .studio__spline { width: 54%; right: -2%; top: -2%; }
  .studio__spline-card { padding: 0.7rem 0.75rem 0.55rem; }
  .studio__shade {
    position: relative;
    bottom: auto;
    left: 2%;
    margin-top: 1.1rem;
    width: max-content;
    rotate: -2deg;
    padding: 0.7rem 0.8rem 0.6rem;
  }
  .studio__shade-row { gap: 0.65rem; }
  .studio__shade-tooth { width: 22px; height: 31px; }
  .studio__chips {
    position: relative;
    top: auto;
    right: auto;
    margin-top: 1rem;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    gap: 0.45rem;
  }
  .studio__chip { padding: 0.42rem 0.85rem; font-size: 0.56rem; }
  .studio__chip:nth-child(n) { margin-right: 0; }
  .studio__plan {
    position: relative;
    right: auto;
    bottom: auto;
    width: 94%;
    margin: 1.1rem 0 0 auto;
    rotate: 0.8deg;
  }
  .studio__plan-card { padding: 0.95rem 1rem 0.8rem; }
}

/* =====================================================================
   RESTORATIVE HERO - THE CASE FILE (right-column composition)
   Appended at file end so the 1080px override wins by source order +
   compound-selector specificity over the earlier .rh-hero__still rule.
   ===================================================================== */
.rh-hero__still.rh-hero__still--studio {
  max-width: 560px;
  overflow: visible;
}
.rxstudio {
  position: relative;
  width: 100%;
  aspect-ratio: 6 / 7;
  --rxstudio-shadow-sm: 0 16px 34px -16px rgba(26, 39, 56, 0.28);
}

/* --- layer 0 (z1) · manila case-file folder --- */
.rxstudio__folder {
  position: absolute;
  top: 1.5%;
  left: -2%;
  width: 78%;
  height: 60%;
  z-index: 1;
  rotate: -1.6deg;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(244, 239, 234, 0.55) 100%);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: 0 18px 40px -26px rgba(26, 39, 56, 0.22);
}
.rxstudio__folder::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 7%;
  width: 112px;
  height: 14px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid var(--line);
  border-bottom: 0;
  border-radius: 7px 7px 0 0;
}
.rxstudio__folder::after {
  content: "case · hvd";
  position: absolute;
  top: -11px;
  left: calc(7% + 20px);
  font-family: var(--font-display);
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* --- layer 1 (z2) · paper-clipped chart photo --- */
.rxstudio__photo {
  position: absolute;
  top: 4.5%;
  left: 4%;
  width: 60%;
  z-index: 2;
  rotate: -2deg;
  margin: 0;
}
.rxstudio__photo-frame {
  position: relative;
  padding: 10px 10px 12px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md), 0 10px 24px -16px rgba(26, 39, 56, 0.20);
}
.rxstudio__photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 4.8;
  object-fit: cover;
  object-position: 50% 30%;
  border-radius: calc(var(--r-md) - 7px);
  filter: saturate(0.95) contrast(0.97) brightness(1.02);
}
.rxstudio__photo-frame::after {
  content: "";
  position: absolute;
  inset: 10px 10px 12px;
  border-radius: calc(var(--r-md) - 7px);
  background: linear-gradient(165deg, rgba(211, 227, 239, 0.18) 0%, transparent 45%, rgba(244, 239, 234, 0.16) 100%);
  pointer-events: none;
}
.rxstudio__clip {
  position: absolute;
  top: -15px;
  left: 9%;
  width: 32px;
  height: auto;
  z-index: 3;
  rotate: -12deg;
  filter: drop-shadow(0 3px 4px rgba(26, 39, 56, 0.22));
}
.rxstudio__photo-caption {
  margin-top: 0.55rem;
  padding-inline: 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
}
.rxstudio__photo-caption em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--accent);
}
.rxstudio__photo-caption span {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}

/* --- layer 2 (z4) · bitewing film on its lightbox --- */
.rxstudio__xray {
  position: absolute;
  top: 0;
  right: -1%;
  width: 44%;
  z-index: 4;
  rotate: 2.2deg;
}
.rxstudio__xray-card {
  position: relative;
  padding: 0.8rem 0.85rem 0.65rem;
  border-radius: var(--r-md);
  background: linear-gradient(168deg, #18263c 0%, #0d1726 100%);
  border: 1px solid rgba(135, 183, 223, 0.28);
  box-shadow:
    0 24px 48px -20px rgba(26, 39, 56, 0.5),
    0 0 30px -2px rgba(135, 183, 223, 0.35),
    inset 0 1px 0 rgba(211, 227, 239, 0.14);
}
.rxstudio__xray-card::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 50%;
  width: 46px;
  height: 16px;
  translate: -50% 0;
  border-radius: 4px;
  background: rgba(211, 227, 239, 0.45);
  box-shadow: 0 4px 10px -4px rgba(26, 39, 56, 0.4);
}
.rxstudio__xray-card::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--r-md);
  background: linear-gradient(115deg, rgba(255, 255, 255, 0.08) 0%, transparent 42%);
  pointer-events: none;
}
.rxstudio__xray-svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 8px;
}
.rxstudio__xray-ring,
.rxstudio__xray-lead {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
}
.rxstudio__xray-ring { transition: stroke-dashoffset 1s var(--ease) 0.95s; }
.rxstudio__xray-lead { transition: stroke-dashoffset 0.8s var(--ease) 1.55s; }
.rxstudio__xray.in-view .rxstudio__xray-ring,
.rxstudio__xray.in-view .rxstudio__xray-lead { stroke-dashoffset: 0; }
.rxstudio__xray-caption {
  margin-top: 0.5rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(211, 227, 239, 0.72);
}
.rxstudio__xray-caption em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.84rem;
  letter-spacing: 0.005em;
  text-transform: none;
  color: var(--blue);
}
.rxstudio__xray-id {
  font-weight: 600;
  color: var(--blue);
  white-space: nowrap;
}

/* --- layer 3 (z5) · milled crown detail card --- */
.rxstudio__crown {
  position: absolute;
  left: -2%;
  bottom: 35.5%;
  z-index: 5;
  rotate: -2.4deg;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.7rem 0.95rem 0.65rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  box-shadow: var(--rxstudio-shadow-sm);
}
.rxstudio__crown-svg {
  display: block;
  width: 44px;
  height: auto;
  flex-shrink: 0;
}
.rxstudio__crown-outline {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 1.1s var(--ease) 0.9s;
}
.rxstudio__crown.in-view .rxstudio__crown-outline { stroke-dashoffset: 0; }
.rxstudio__crown-label {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
}
.rxstudio__crown-label span {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--navy);
}
.rxstudio__crown-label em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.8rem;
  color: var(--accent);
}

/* --- layer 4 (z5) · same-day sticky note --- */
.rxstudio__note {
  position: absolute;
  top: 41%;
  right: 2%;
  z-index: 5;
  rotate: 2.5deg;
  width: max-content;
  max-width: 170px;
  padding: 0.6rem 0.8rem 0.7rem;
  background: linear-gradient(180deg, #e4eef7 0%, var(--sky) 100%);
  border: 1px solid rgba(135, 183, 223, 0.45);
  border-radius: 4px;
  box-shadow: 0 14px 26px -14px rgba(26, 39, 56, 0.35);
}
.rxstudio__note::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 14px;
  height: 14px;
  background: linear-gradient(to top left, rgba(26, 39, 56, 0.12) 50%, transparent 50%);
  border-radius: 0 0 4px 0;
}
.rxstudio__note-line {
  display: block;
  font-family: var(--font-display);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  line-height: 1.6;
  color: var(--navy);
}
.rxstudio__note-aside {
  display: block;
  margin-top: 0.2rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--accent);
}

/* --- layer 5 (z7) · translucent Care Plan --- */
.rxstudio__plan {
  position: absolute;
  right: 0;
  bottom: 1%;
  width: 57%;
  z-index: 7;
  rotate: 1.2deg;
}
.rxstudio__plan-card {
  padding: 1.15rem 1.25rem 0.95rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.rxstudio__plan-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.rxstudio__plan-eyebrow {
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.rxstudio__plan-no {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.rxstudio__plan-rows {
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
}
.rxstudio__plan-rows li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 0.45rem 0;
}
.rxstudio__plan-rows li + li {
  border-top: 1px dashed rgba(26, 39, 56, 0.16);
}
.rxstudio__plan-rows span {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.rxstudio__plan-rows strong {
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--navy);
}
.rxstudio__plan-rows strong.is-done { color: var(--ink-faint); }
.rxstudio__plan-rows strong.is-now { color: var(--accent); }
.rxstudio__plan-foot {
  margin-top: 0.55rem;
  padding-top: 0.65rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.rxstudio__plan-ok {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--font-body);
  font-size: 0.74rem;
  color: var(--ink-soft);
}
.rxstudio__plan-ok svg { flex-shrink: 0; }
.rxstudio__plan-sig {
  font-family: 'Italianno', cursive;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--accent);
  rotate: -2deg;
}

/* --- glass fallback --- */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .rxstudio__plan-card { background: rgba(255, 255, 255, 0.92); }
}

/* --- gentle drift (x-ray film + care plan only) --- */
@media (prefers-reduced-motion: no-preference) {
  .rxstudio__float--a { animation: rxstudio-drift 8.5s ease-in-out infinite alternate; }
  .rxstudio__float--b { animation: rxstudio-drift 7.5s ease-in-out 1.1s infinite alternate; }
}
@keyframes rxstudio-drift {
  from { translate: 0 0; }
  to   { translate: 0 -7px; }
}
@media (prefers-reduced-motion: reduce) {
  .rxstudio__float--a,
  .rxstudio__float--b { animation: none; }
  .rxstudio__xray-ring,
  .rxstudio__xray-lead,
  .rxstudio__crown-outline { stroke-dasharray: none; stroke-dashoffset: 0; transition: none; }
}

/* --- responsive --- */
@media (max-width: 1080px) {
  .rh-hero__still.rh-hero__still--studio {
    justify-self: center;
    max-width: 560px;
    margin-inline: auto;
  }
}
@media (max-width: 640px) {
  /* Stacked case file: only the x-ray keeps an absolute overlap (anchored
     to the stage top). Everything else returns to flow. */
  .rxstudio { aspect-ratio: auto; padding-top: 1.5rem; }
  .rxstudio__folder,
  .rxstudio__clip { display: none; }
  .rxstudio__photo {
    position: relative;
    top: auto;
    left: auto;
    width: 88%;
    rotate: -1.5deg;
  }
  .rxstudio__photo-frame { padding: 7px 7px 9px; }
  .rxstudio__photo-frame::after { inset: 7px 7px 9px; }
  .rxstudio__xray { width: 52%; right: -2%; top: -2%; }
  .rxstudio__xray-card { padding: 0.65rem 0.7rem 0.55rem; }
  .rxstudio__crown {
    position: relative;
    bottom: auto;
    left: 2%;
    margin-top: 1.1rem;
    width: max-content;
    rotate: -2deg;
    padding: 0.6rem 0.8rem 0.55rem;
  }
  .rxstudio__note {
    position: relative;
    top: auto;
    right: auto;
    margin: 1.25rem 0.5rem 0 auto;
    rotate: 2deg;
  }
  .rxstudio__plan {
    position: relative;
    right: auto;
    bottom: auto;
    width: 94%;
    margin: 1.4rem 0 0 auto;
    rotate: 0.8deg;
  }
  .rxstudio__plan-card { padding: 0.95rem 1rem 0.8rem; }
}

/* =====================================================================
   PREVENTIVE HERO - THE YEARLY SMILE PLAN (right-column composition)
   Appended at file end so the 1080px override wins by source order.
   ===================================================================== */
.pv-hero__visual {
  position: relative;
  justify-self: end;
  width: 100%;
  max-width: 560px;
}
.pvstudio {
  position: relative;
  width: 100%;
  aspect-ratio: 6 / 7;
  --pvstudio-shadow-sm: 0 16px 34px -16px rgba(26, 39, 56, 0.28);
}

/* --- layer 0 (z1) · calendar-page backdrop --- */
.pvstudio__page {
  position: absolute;
  top: 0;
  right: -1%;
  width: 62%;
  height: 46%;
  z-index: 1;
  rotate: 2deg;
  border: 1px solid var(--line);
  border-radius: var(--r-sm);
  background:
    linear-gradient(180deg, rgba(135, 183, 223, 0.22) 0 18px, transparent 18px),
    repeating-linear-gradient(0deg,  rgba(26, 39, 56, 0.045) 0 1px, transparent 1px 26px),
    repeating-linear-gradient(90deg, rgba(26, 39, 56, 0.045) 0 1px, transparent 1px 26px),
    rgba(255, 255, 255, 0.5);
  box-shadow: 0 18px 40px -26px rgba(26, 39, 56, 0.22);
}

/* --- layer 1 (z2) · Yearly Smile Plan card --- */
.pvstudio__plan {
  position: absolute;
  top: 3%;
  left: 1%;
  width: 60%;
  z-index: 2;
  rotate: -2deg;
  padding: 1.15rem 1.25rem 1rem;
  background: linear-gradient(180deg, #fcfaf7 0%, var(--cream) 100%);
  border: 1px solid rgba(26, 39, 56, 0.10);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.pvstudio__plan-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
}
.pvstudio__plan-eyebrow {
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.pvstudio__plan-no {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}
.pvstudio__months {
  margin: 0.95rem 0 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pvstudio__months i {
  width: 10px;
  height: 15px;
  border-radius: 3px;
  background: rgba(26, 39, 56, 0.08);
  border: 1px solid rgba(26, 39, 56, 0.05);
}
.pvstudio__months i.is-visit {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--white), 0 0 0 3.5px rgba(37, 117, 174, 0.30);
}
.pvstudio__plan-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
  padding-top: 0.7rem;
  border-top: 1px dashed rgba(26, 39, 56, 0.16);
}
.pvstudio__plan-line {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--accent);
}
.pvstudio__plan-sig {
  font-family: 'Italianno', cursive;
  font-size: 1.45rem;
  line-height: 1;
  color: var(--accent);
  rotate: -2deg;
}

/* --- layer 2 (z4) · appointment markers --- */
.pvstudio__mark {
  position: absolute;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem 0.55rem 0.6rem;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--pvstudio-shadow-sm);
}
.pvstudio__mark--spring { top: 13%; right: 4%; rotate: 1.5deg; }
.pvstudio__mark--fall   { top: 33%; right: -1%; rotate: -1.2deg; }
.pvstudio__mark-ico {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(135, 183, 223, 0.18);
  color: var(--accent);
  flex-shrink: 0;
}
.pvstudio__mark-ico svg { width: 19px; height: 19px; }
.pvstudio__mark-body b {
  display: block;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--navy);
  white-space: nowrap;
}
.pvstudio__mark-body em {
  display: block;
  margin-top: 0.14rem;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.82rem;
  color: var(--accent);
}

/* --- layer 3 (z3) · home-kit still life --- */
.pvstudio__still {
  position: absolute;
  left: -2%;
  bottom: 22%;
  width: 56%;
  z-index: 3;
  rotate: -1.5deg;
  margin: 0;
}
.pvstudio__still-frame {
  padding: 10px;
  background: var(--white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md), 0 10px 24px -16px rgba(26, 39, 56, 0.20);
}
.pvstudio__still-svg {
  display: block;
  width: 100%;
  height: auto;
  border-radius: calc(var(--r-md) - 7px);
  background: linear-gradient(165deg, #eef4f9 0%, #e2ecf5 100%);
}
.pvstudio__still-caption {
  margin-top: 0.5rem;
  padding-inline: 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.18rem;
}
.pvstudio__still-caption em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--accent);
}
.pvstudio__still-caption span {
  font-family: var(--font-display);
  font-size: 0.56rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}

/* --- layer 4 (z6) · every-visit checklist (glass) --- */
.pvstudio__check {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 58%;
  z-index: 6;
  rotate: 1.2deg;
}
.pvstudio__check-card {
  padding: 1.05rem 1.15rem 0.9rem;
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.55);
  -webkit-backdrop-filter: blur(16px) saturate(1.15);
  backdrop-filter: blur(16px) saturate(1.15);
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.85);
}
.pvstudio__check-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.6rem;
}
.pvstudio__check-eyebrow {
  font-family: var(--font-display);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.pvstudio__check-no {
  font-family: var(--font-display);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-faint);
  white-space: nowrap;
}
.pvstudio__check-rows {
  list-style: none;
  margin: 0.55rem 0 0;
  padding: 0;
}
.pvstudio__check-rows li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.36rem 0;
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--navy);
}
.pvstudio__check-rows li + li {
  border-top: 1px dashed rgba(26, 39, 56, 0.14);
}
.pvstudio__check-rows li em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.94em;
  color: var(--ink-soft);
  margin-left: 0.2rem;
}
.pvstudio__tick {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: rgba(135, 183, 223, 0.22);
  display: grid;
  place-items: center;
  color: var(--accent);
  flex-shrink: 0;
}
.pvstudio__tick svg { width: 11px; height: 11px; display: block; }
.pvstudio__tick--cond {
  background: transparent;
  border: 1.5px dashed rgba(37, 117, 174, 0.45);
}
/* checkmarks draw themselves in, one by one */
.pvstudio__tick-path {
  stroke-dasharray: 1;
  stroke-dashoffset: 1;
  transition: stroke-dashoffset 0.5s var(--ease);
}
.pvstudio__check-rows li:nth-child(1) .pvstudio__tick-path { transition-delay: 1.05s; }
.pvstudio__check-rows li:nth-child(2) .pvstudio__tick-path { transition-delay: 1.25s; }
.pvstudio__check-rows li:nth-child(3) .pvstudio__tick-path { transition-delay: 1.45s; }
.pvstudio__check-rows li:nth-child(4) .pvstudio__tick-path { transition-delay: 1.65s; }
.pvstudio__check.in-view .pvstudio__tick-path { stroke-dashoffset: 0; }

/* --- glass fallback --- */
@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .pvstudio__check-card { background: rgba(255, 255, 255, 0.92); }
}

/* --- gentle drift (checklist only) --- */
@media (prefers-reduced-motion: no-preference) {
  .pvstudio__float--b { animation: pvstudio-drift 7.5s ease-in-out 1.1s infinite alternate; }
}
@keyframes pvstudio-drift {
  from { translate: 0 0; }
  to   { translate: 0 -7px; }
}
@media (prefers-reduced-motion: reduce) {
  .pvstudio__float--b { animation: none; }
  .pvstudio__tick-path { stroke-dasharray: none; stroke-dashoffset: 0; transition: none; }
}

/* --- responsive --- */
@media (max-width: 1080px) {
  .pv-hero__grid { grid-template-columns: 1fr; gap: 3rem; }
  .pv-hero__visual { justify-self: center; max-width: 560px; }
}
@media (max-width: 640px) {
  /* Stacked flow: plan → markers → still life → checklist */
  .pvstudio { aspect-ratio: auto; padding-top: 0.5rem; }
  .pvstudio__page { display: none; }
  .pvstudio__plan {
    position: relative;
    top: auto;
    left: auto;
    width: 94%;
    rotate: -1.5deg;
  }
  .pvstudio__mark {
    position: relative;
    margin-top: 1rem;
  }
  .pvstudio__mark--spring { top: auto; right: auto; rotate: 1deg; margin-left: 6%; }
  .pvstudio__mark--fall   { top: auto; right: auto; rotate: -1deg; margin-left: 30%; margin-top: 0.8rem; }
  .pvstudio__still {
    position: relative;
    bottom: auto;
    left: 0;
    width: 88%;
    margin-top: 1.25rem;
    rotate: -1.2deg;
  }
  .pvstudio__still-frame { padding: 7px; }
  .pvstudio__still-svg { border-radius: calc(var(--r-md) - 5px); }
  .pvstudio__check {
    position: relative;
    right: auto;
    bottom: auto;
    width: 94%;
    margin: 1.35rem 0 0 auto;
    rotate: 0.8deg;
  }
  .pvstudio__check-card { padding: 0.95rem 1rem 0.8rem; }
}

/* ============================================================
   WHAT WE ACCEPT band (accepted-insurances)
   ============================================================ */
.accept {
  background: var(--cream);
  padding: 0 0 clamp(5rem, 9vw, 8rem);
  margin-top: clamp(-6rem, -6vw, -3rem);
}
.accept__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
  max-width: 1040px;
  margin: 0 auto;
}
.accept__card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 1.7rem 1.6rem 1.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
.accept__mark {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(211, 227, 239, 0.55);
  color: var(--accent);
  margin-bottom: 0.35rem;
}
.accept__mark svg { width: 17px; height: 17px; }
.accept__card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 0.98rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}
.accept__card p { margin: 0; font-size: 0.93rem; line-height: 1.65; color: var(--ink-soft); }
.accept__card--no { background: var(--navy); border-color: transparent; }
.accept__card--no h3 { color: var(--on-dark); }
.accept__card--no p { color: var(--on-dark-soft); }
.accept__card--no p a { color: var(--blue); text-underline-offset: 3px; }
.accept__mark--no { background: rgba(244, 239, 234, 0.12); color: var(--on-dark); }
@media (max-width: 900px) {
  .accept__grid { grid-template-columns: 1fr; max-width: 560px; }
}

/* ============================================================
   SITE-WIDE MOBILE RESPONSIVE PASS (v54)
   ============================================================ */

/* Mobile menu: scrollable when content exceeds short viewports;
   auto margins keep it visually centered when it fits */
.mobile-menu {
  justify-content: flex-start;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding-top: 5.5rem;
  padding-bottom: 2.5rem;
}
.mobile-menu > :first-child { margin-top: auto; }
.mobile-menu > :last-child { margin-bottom: auto; }
.mobile-menu a.mobile-menu__sub-link { padding-top: 0.55rem; padding-bottom: 0.55rem; }

/* Reviews carousel: dot buttons get a full-size hit area */
.reviews__dots { gap: 1.1rem; }
.reviews__dots button { position: relative; }
.reviews__dots button::before {
  content: "";
  position: absolute;
  inset: -16px;
  border-radius: 50%;
}

/* Patient forms: minute labels readable on the white bar */
.saved__minutes {
  color: var(--navy);
  background: var(--cream);
  padding: 2px 10px;
  border-radius: 999px;
  box-shadow: 0 1px 4px rgba(26, 39, 56, 0.18);
}

/* iOS: inputs under 16px trigger focus zoom */
.verify__form input { font-size: 1rem; }

/* Bare text links near CTAs get real tap areas */
.works__or, .join__or { display: inline-block; padding: 0.6rem 0.4rem; }

@media (max-width: 1080px) {
  .quick__grid { grid-template-columns: 1fr; }
  .quick__card { border-right: none; border-bottom: 1px solid var(--line); }
  .quick__card:last-child { border-bottom: none; }
  .quick__card p { overflow-wrap: anywhere; }
  .route__stops { grid-template-columns: repeat(3, 1fr); row-gap: 2.2rem; }
  .forms-hero__stack { justify-self: center; max-width: 460px; aspect-ratio: 1 / 1.05; }
}

@media (max-width: 760px) {
  .footer__col ul { gap: 0.3rem; }
  .footer__col ul a { display: inline-block; padding: 0.45rem 0; }
  .footer__bottom .links a { display: inline-block; padding: 0.7rem 0.4rem; }
  .ex__chip { min-height: 44px; padding: 0.8rem 1.05rem; }
}

@media (max-width: 720px) {
  .ct-form__type span { padding: 0.85rem 0.85rem; }
  .dossier__close { width: 44px; height: 44px; }
  .dossier__nav { min-height: 44px; padding: 0.6rem 1rem; }
  .ins__stamp { top: -16px; right: -8px; width: 76px; height: 76px; }
}

@media (max-width: 640px) {
  .postcard__postmark { width: 70px; height: 70px; top: 10px; right: 10px; opacity: 0.35; }
  .paper--3 { transform: rotate(3deg) translate(12px, 12px); }
  .paper--2 { transform: rotate(-1.5deg) translate(-8px, 8px); }
  .paper__stamp { right: 0; bottom: -10px; width: 74px; height: 74px; }
}

@media (max-width: 460px) {
  .ct-close__actions, .pv-hero__actions, .postcard__actions, .ins-hero__actions,
  .fin-hero__actions, .club-hero__actions, .club-cta__actions, .forms-hero__actions,
  .forms-close__actions { flex-direction: column; align-items: stretch; }
  .ct-close__actions .btn, .pv-hero__actions .btn, .postcard__actions .btn, .ins-hero__actions .btn,
  .fin-hero__actions .btn, .club-hero__actions .btn, .club-cta__actions .btn, .forms-hero__actions .btn,
  .forms-close__actions .btn { width: 100%; justify-content: center; text-align: center; }
  .reviews__stage { min-height: 560px; }
  .wall__grid { grid-template-columns: 1fr; gap: 0.7rem; }
  .plan { min-height: 64px; }
  .partner__list li { grid-template-columns: 1fr; gap: 0.2rem; }
  .member-card { padding: 1.2rem 1.25rem 1.1rem; gap: 0.7rem; }
  .member-card__foot { gap: 0.7rem; }
  .member-card__sig { font-size: 1.9rem; }
  .member-card__name { font-size: 1.25rem; }
  .packet__grid { grid-template-columns: 1fr; max-width: 400px; }
  .forms-close__card { padding: 2rem 1.4rem; }
  .forms-close__phone { justify-content: center; }
  .ct-hero__status { align-items: flex-start; border-radius: 18px; }
  .ct-hero__dot { margin-top: 0.3rem; flex-shrink: 0; }
}

/* ============================================================
   MOBILE REDESIGN PASS (v3): preventive page
   ============================================================ */
@media (max-width: 720px) {
  /* Hero: keep only the Yearly Smile Plan card */
  .pvstudio { aspect-ratio: auto; }
  .pvstudio__page,
  .pvstudio__mark,
  .pvstudio__still,
  .pvstudio__check { display: none !important; }
  .pvstudio__plan {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    width: 100% !important;
    max-width: 360px;
    margin: 0 auto;
    rotate: 0deg;
  }

  /* What we offer: collapsed rows, details open inline under the tapped row */
  .atlas__grid { grid-template-columns: 1fr !important; gap: 0.55rem; }
  .plate {
    flex-direction: row;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 2.2rem 0.85rem 1rem;
    position: relative;
  }
  .plate::after {
    content: "";
    position: absolute;
    right: 1rem;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -6px;
    border-right: 1.6px solid var(--accent);
    border-bottom: 1.6px solid var(--accent);
    transform: rotate(45deg);
    transition: transform 0.3s ease;
  }
  .plate.is-active::after { transform: rotate(225deg); margin-top: -2px; }
  .plate__roman { font-size: 0.8rem; flex: none; width: 26px; }
  .plate__ico { width: 34px; height: 34px; flex: none; }
  .plate__ico svg { width: 100%; height: 100%; }
  .plate__name { flex: 1; font-size: 1rem; margin: 0; }
  .plate__tag { display: none; }
  .atlas__grid .dossier { grid-column: 1 / -1; margin: 0.15rem 0 0.55rem; }

  /* Inside the visit: readable vertical rows instead of the winding rail */
  .route__rail > svg { display: none; }
  .route__stops { grid-template-columns: 1fr !important; gap: 1rem; }
  .route__stops li {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 1rem;
    row-gap: 0.15rem;
    align-items: center;
    text-align: left;
    transform: none !important;
  }
  .route__num { width: 44px; height: 44px; grid-row: 1 / span 2; }
  .route__name { grid-column: 2; margin: 0; font-size: 1.08rem; font-weight: 400; }
  .route__line2 { grid-column: 2; font-size: 0.88rem; color: rgba(244, 239, 234, 0.82); }

  /* Common concerns: two per row, blue bold questions */
  .worry__wall { grid-template-columns: 1fr 1fr !important; gap: 0.7rem !important; }
  .worry-note { padding: 1.05rem 0.95rem 1.1rem; }
  .worry-note__q,
  .worry-note__q em {
    font-family: var(--font-display);
    font-style: normal;
    font-weight: 600;
    font-size: 1.05rem;
    color: var(--accent);
  }
  .worry-note__a { font-size: 0.85rem; line-height: 1.55; }
}

/* ============================================================
   MOBILE REDESIGN PASS (v3): forms / insurance / finance /
   membership / contact
   ============================================================ */

@media (max-width: 720px) {
  /* ---- Patient forms: drop the decorative intake-paper stack ---- */
  .forms-hero__stack { display: none !important; }

  /* ---- Finance: drop the receipt card in the hero ---- */
  .receipt { display: none !important; }

  /* ---- Finance: Cherry + CareCredit side by side ---- */
  .partners__grid { grid-template-columns: 1fr 1fr !important; gap: 0.65rem !important; }
  .partner { padding: 1.1rem 0.9rem !important; }
  .partner__list li { grid-template-columns: 1fr !important; gap: 0.1rem !important; }
  .partner__list li b { font-size: 0.62rem; }
  .partner__list li span { font-size: 0.82rem; line-height: 1.45; }
  .partner .btn { width: 100%; justify-content: center; padding: 0.75rem 0.8rem; font-size: 0.68rem; }

  /* ---- Finance: compact example-payments calculator ---- */
  .ex__panel { padding: 1.15rem 0.95rem !important; }
  .ex__row { gap: 0.4rem !important; }
  .ex__chip { padding: 0.6rem 0.8rem !important; font-size: 0.8rem !important; min-height: 42px; }
  .ex__chip i { font-size: 0.72rem; }
  .ex__label { font-size: 0.66rem; }
  .ex__readout { padding: 1.1rem 0 0.4rem !important; }
  .ex__big { font-size: 2.7rem !important; }
  .ex__sub { font-size: 0.78rem; }
  .ex__hand { display: none; }

  /* ---- Finance: three numbered steps side by side ---- */
  .works__steps { display: grid !important; grid-template-columns: repeat(3, 1fr) !important; gap: 0.55rem !important; }
  .works__step { padding: 0.95rem 0.7rem !important; margin: 0 !important; }
  .works__num { font-size: 0.8rem; }
  .works__step h3 { font-size: 0.9rem; margin: 0.4rem 0 0.3rem; }
  .works__step p { font-size: 0.76rem; line-height: 1.45; margin: 0; }

  /* ---- Membership: drop the mock membership card in the hero ---- */
  .member-card { display: none !important; }

  /* ---- Contact: channel cards become compact rows ---- */
  .ct-hero__channels { display: grid; grid-template-columns: 1fr; gap: 0.6rem; }
  .channel {
    display: grid !important;
    grid-template-columns: 44px 1fr 14px;
    align-items: center;
    column-gap: 0.9rem;
    row-gap: 0.1rem;
    padding: 0.9rem 1rem !important;
  }
  .channel__head { grid-row: 1 / span 2; display: block; }
  .channel__label { display: none; }
  .channel__ico { width: 44px; height: 44px; }
  .channel__big { grid-column: 2; font-size: 1.05rem !important; margin: 0 !important; }
  .channel__sub { grid-column: 2; font-size: 0.78rem !important; margin: 0 !important; }
  .channel__arrow { grid-column: 3; grid-row: 1 / span 2; }

  /* ---- Contact: shorter form ---- */
  .ct-form__type { display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem; }
  .ct-form__type legend { margin-bottom: 0.4rem; }
  .ct-form__type span { padding: 0.6rem 0.5rem !important; font-size: 0.78rem; text-align: center; display: block; }
  .ct-form__row { display: grid; grid-template-columns: 1fr 1fr !important; gap: 0.6rem !important; }
  .ct-form__form label span { font-size: 0.72rem; }
  .ct-form__form input, .ct-form__form textarea { padding: 0.65rem 0.75rem; }
  .ct-form__msg textarea { min-height: 90px; }
  .ct-form__fine { font-size: 0.72rem; line-height: 1.5; }

  /* ---- Contact: compact find-us ---- */
  .ct-map__grid { display: grid; grid-template-columns: 1fr; gap: 0.9rem; }
  .ct-map__frame { height: 230px !important; min-height: 0 !important; aspect-ratio: auto; min-width: 0; width: 100%; }
  .ct-map__frame iframe { height: 100% !important; }
  .ct-map__card { padding: 1.15rem 1rem !important; }
  .ct-map__card h3 { font-size: 1.02rem; }
  .ct-map__links a { padding: 0.55rem 0 !important; }
  .ct-map__links i { font-size: 0.72rem; }
}

@media (max-width: 640px) {
  /* ---- Insurance wall: compact two-up plan chips ---- */
  .wall__grid { grid-template-columns: 1fr 1fr !important; gap: 0.55rem !important; }
  .plan { padding: 0.72rem 0.85rem !important; min-height: 0 !important; gap: 0.5rem !important; align-items: center; }
  .plan__name { font-size: 0.82rem !important; line-height: 1.3; }
  .plan__check { width: 22px !important; height: 22px !important; flex: none; }
  .plan__check svg { width: 12px; height: 12px; }

  /* ---- Membership: comparison rows stack with mini labels ---- */
  .vs__row { grid-template-columns: 1fr 1fr !important; gap: 0.2rem 0.8rem !important; padding: 0.75rem 0 !important; }
  .vs__row--head { display: none !important; }
  .vs__what { grid-column: 1 / -1; font-size: 0.94rem !important; }
  .vs__a::before,
  .vs__b::before {
    content: "Insurance";
    display: block;
    font-family: var(--font-display);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(244, 239, 234, 0.5);
    margin-bottom: 0.12rem;
  }
  .vs__b::before { content: "Smile Club"; color: var(--blue); }
  .vs__a, .vs__b { font-size: 0.86rem !important; }

  /* ---- Membership: the math, compact ---- */
  .savings__pick { padding: 0.7rem 0.5rem !important; }
  .savings__pick-ico { width: 30px; height: 26px; }
  .savings__pick-label { font-size: 0.82rem; }
  .savings__pick-sub { font-size: 0.68rem; }
  .savings__readout { grid-template-columns: 1fr 1fr !important; gap: 0.6rem !important; }
  .savings__col { padding: 1rem 0.8rem !important; }
  .savings__col-amt { font-size: 1.9rem !important; }
  .savings__col-sub { font-size: 0.72rem; }
  .savings__delta { grid-column: 1 / -1; padding: 0.9rem 0.8rem !important; }
  .savings__delta-amt { font-size: 2.1rem !important; }
}

/* ============================================================
   POLISH PASS (v4)
   ============================================================ */

/* Italic serif accents back to blue */
.section-head h2 em { color: var(--accent); }
.is-dark .section-head h2 em { color: var(--blue); }
.serif { color: var(--accent); }

/* Bring-with-you: bigger checklist, no more pills (all sizes) */
.first-visit__essentials { max-width: 860px; padding: 2.6rem 1.5rem; }
.essentials__label { color: var(--accent); font-size: 0.78rem; }
.first-visit__essentials ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.05rem 2.4rem;
  margin: 1.7rem auto 0;
  max-width: 700px;
  text-align: left;
}
.first-visit__essentials li {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--navy);
}
.first-visit__essentials li::before {
  content: "\2713";
  flex: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--sky);
  color: var(--accent);
  display: grid;
  place-items: center;
  font-size: 1rem;
  font-weight: 600;
}
@media (max-width: 640px) {
  .first-visit__essentials ul { grid-template-columns: 1fr; gap: 0.85rem; }
  .first-visit__essentials li { font-size: 1.04rem; }
  .first-visit__essentials li::before { width: 34px; height: 34px; }
}

/* Preventive: hero visual sits between intro and CTA buttons on phones;
   the visit-route section is desktop-only */
@media (max-width: 720px) {
  .pv-hero__grid { display: flex; flex-direction: column; gap: 0; }
  .pv-hero__body { display: contents; }
  .pv-hero__body > .eyebrow { order: 1; }
  .pv-hero__body > h1 { order: 2; }
  .pv-hero__sub { order: 3; }
  .pv-hero__visual { order: 4; margin: 1.4rem 0 0; }
  .pv-hero__actions { order: 5; margin-top: 1.5rem; }
  .route { display: none; }
}

@media (max-width: 760px) {
  /* Doctor: quote card overlaps the portrait's bottom-right, like desktop */
  .doctor__quote {
    position: absolute;
    right: 0.5rem;
    bottom: -1.4rem;
    margin-top: 0;
    max-width: 205px;
    padding: 1rem 1.05rem;
  }
  .doctor__quote .mark { font-size: 2.4rem; }
  .doctor__quote p { font-size: 0.92rem; margin-top: 0.45rem; }
  .doctor__media { margin-bottom: 2.4rem; }

  /* Credentials: quiet two-column checklist instead of pills */
  .doctor__creds { display: grid; grid-template-columns: 1fr 1fr; gap: 0.45rem 1rem; }
  .doctor__creds span {
    padding: 0;
    border: none;
    border-radius: 0;
    gap: 0.5rem;
  }
  .doctor__creds span::before {
    width: auto; height: auto;
    background: none;
    border-radius: 0;
    content: "\2713";
    color: var(--accent);
    font-weight: 600;
  }

  /* Harborview difference: two cards per row */
  .why__grid { grid-template-columns: 1fr 1fr !important; gap: 0.7rem; }
  .why__card { padding: 1.15rem 0.95rem 1.25rem; }
  .why__ico { width: 40px; height: 40px; border-radius: 12px; }
  .why__ico svg { width: 20px; height: 20px; }
  .why__card h3 { font-size: 0.98rem; }
  .why__card p { font-size: 0.8rem; line-height: 1.5; }

  /* Reviews: stage hugs the active quote (kills the gap above the arrows) */
  .reviews__stage { min-height: 0 !important; }
  .review.is-active { position: relative; inset: auto; }
  .reviews__nav { margin-top: 1.3rem; }

  /* Reviews: smaller Google badge */
  .reviews__badge { margin-top: 1rem; padding: 0.45rem 0.85rem 0.45rem 0.5rem; gap: 0.55rem; }
  .reviews__badge-g { width: 24px; height: 24px; }
  .reviews__badge-g svg { width: 16px; height: 16px; }
  .reviews__badge-line1 { font-size: 0.8rem; }
  .reviews__badge-line2 { font-size: 0.62rem; }

  /* About: coastal band shorter and easier to read */
  .coast-moment { height: 230px; }
  .coast-moment img { height: 100% !important; transform: none !important; }
  .coast-moment::after {
    background: linear-gradient(180deg, rgba(26, 39, 56, 0.45) 0%, rgba(26, 39, 56, 0.72) 100%);
  }
  .coast-moment__line { font-size: 1.28rem; font-weight: 400; line-height: 1.5; max-width: 30ch; }

  /* Footer: brand + contact full width, link columns side by side */
  .footer { padding-top: 2.8rem; }
  .footer__top { grid-template-columns: 1fr 1fr !important; gap: 1.7rem 1.4rem; padding-bottom: 1.8rem; }
  .footer__brand { grid-column: 1 / -1; }
  .footer__brand p { font-size: 0.85rem; }
  .footer__contact { grid-column: 1 / -1; }
  .footer__col h4 { font-size: 0.66rem; }
  .footer__col ul { margin-top: 0.7rem; gap: 0.1rem; }
}

/* =====================================================================
   FAVORITE PRODUCTS  ·  Dr. Snyder's Favorite Products  (.page-favorites)
   Scoped so nothing leaks into sibling resource pages.
   ===================================================================== */

/* Shared outbound / wayfinding arrow */
.page-favorites .fav-arrow { width: 13px; height: 13px; flex-shrink: 0; transition: transform 0.4s var(--ease); }

/* ---------- HERO ---------- */
.fav-hero {
  position: relative;
  background:
    radial-gradient(58% 48% at 88% 14%, rgba(135, 183, 223, 0.20) 0%, transparent 66%),
    radial-gradient(52% 46% at 8% 92%, rgba(135, 183, 223, 0.12) 0%, transparent 70%),
    var(--cream);
  padding: clamp(7.5rem, 13vw, 11rem) 0 clamp(5rem, 8vw, 7rem);
  overflow: hidden;
}
.fav-hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  column-gap: clamp(2.5rem, 5vw, 5rem);
  row-gap: 2rem;
  align-items: center;
  align-content: center;
}
.fav-hero__copy { grid-column: 1; grid-row: 1; }
.fav-hero__actions { grid-column: 1; grid-row: 2; align-self: start; }
.fav-hero h1 {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.6rem, 1.3rem + 5vw, 5.2rem);
  line-height: 1.05;
  letter-spacing: -0.018em;
  color: var(--navy);
}
.fav-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.fav-hero__sub {
  margin-top: 1.5rem;
  max-width: 48ch;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.fav-hero__actions {
  margin-top: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}
.fav-hero__actions .btn span:first-child { display: inline-flex; align-items: center; }
.fav-hero__actions .btn .arrow { font-size: 1.05rem; line-height: 1; }
.fav-hero__actions .btn--primary:hover .arrow { transform: translateY(3px); }

/* ---------- HERO PREVIEW CARD (CSS-only, mirrors the Amazon list) ---------- */
.fav-hero__preview {
  position: relative;
  grid-column: 2;
  grid-row: 1 / span 2;
  justify-self: end;
  width: 100%;
  max-width: 430px;
  margin-inline: auto;
}
.fav-preview__back {
  position: absolute;
  inset: 0;
  transform: rotate(-3deg) translate(-20px, 14px);
  background: #eef4f9;
  border: 1px solid rgba(26, 39, 56, 0.08);
  border-radius: 18px;
  box-shadow: var(--shadow-sm);
}
.fav-preview {
  position: relative;
  background: var(--white);
  border: 1px solid rgba(26, 39, 56, 0.08);
  border-radius: 18px;
  padding: 1.7rem 1.6rem 1.5rem;
  box-shadow: 0 30px 60px -26px rgba(26, 39, 56, 0.42), 0 8px 18px rgba(26, 39, 56, 0.08);
}
.fav-preview__label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.64rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}
.fav-preview__titlerow {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.8rem;
  margin-top: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--line);
}
.fav-preview__title {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.fav-preview__tag {
  font-family: 'Italianno', cursive;
  font-size: 1.75rem;
  line-height: 1;
  color: var(--accent);
  white-space: nowrap;
}
.fav-preview__rows {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 1.1rem;
}
.fav-preview__row { display: flex; align-items: center; gap: 0.85rem; }
.fav-preview__ico {
  flex-shrink: 0;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--sky);
  border-radius: 9px;
  color: var(--navy);
}
.fav-preview__ico svg { width: 19px; height: 19px; }
.fav-preview__text { display: flex; flex-direction: column; gap: 0.12rem; }
.fav-preview__text b {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.92rem;
  color: var(--navy);
}
.fav-preview__text i {
  font-style: normal;
  font-size: 0.78rem;
  color: var(--ink-faint);
}
.fav-preview__stamp {
  position: absolute;
  bottom: -14px; right: -10px;
  width: 66px; height: 66px;
  color: var(--blue);
  opacity: 0.7;
  transform: rotate(-8deg);
  pointer-events: none;
}

/* ---------- THE LISTS ---------- */
.fav-lists {
  background:
    radial-gradient(62% 52% at 50% 6%, rgba(255, 255, 255, 0.5) 0%, transparent 60%),
    var(--sky);
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.fav-lists .section-head { margin-inline: auto; }
.fav-band { margin-top: clamp(3rem, 6vw, 5rem); }
.fav-band:first-of-type { margin-top: clamp(2.6rem, 5vw, 4rem); }
.fav-band__head { max-width: 720px; margin-bottom: clamp(1.6rem, 3vw, 2.3rem); }
.fav-band__head h3 {
  margin-top: 0;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.7rem, 1.2rem + 1.8vw, 2.4rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.fav-band__head h3 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
/* Darker descriptive copy on the --sky lists section for WCAG AA contrast */
.fav-lists .section-head .lead { color: rgba(26, 39, 56, 0.78); }
.fav-grid { display: grid; gap: clamp(1rem, 2vw, 1.4rem); }
.fav-grid--4 { grid-template-columns: repeat(4, 1fr); }
.fav-grid--3 { grid-template-columns: repeat(3, 1fr); }
.fav-grid--2 { grid-template-columns: repeat(2, 1fr); max-width: 760px; }

/* ---------- CATEGORY CARD (entire card is one outbound anchor) ---------- */
.fav-card {
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  background: var(--white);
  border: 1px solid rgba(26, 39, 56, 0.08);
  border-radius: 16px;
  padding: 1.7rem 1.5rem;
  box-shadow: 0 16px 34px -20px rgba(26, 39, 56, 0.28);
  transition: transform 0.45s var(--ease), box-shadow 0.45s var(--ease), border-color 0.45s var(--ease);
}
.fav-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: 0 26px 46px -22px rgba(26, 39, 56, 0.34);
}
.fav-card__ico {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: var(--sky);
  border-radius: 13px;
  color: var(--navy);
}
.fav-card__ico svg { width: 27px; height: 27px; }
.fav-card__name {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.18rem;
  line-height: 1.22;
  letter-spacing: 0.004em;
  color: var(--navy);
}
/* Button pinned to the bottom so every card's CTA aligns across a row */
.fav-card__foot { display: flex; align-items: center; margin-top: auto; padding-top: 0.4rem; }
.fav-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.05rem;
  background: var(--sky);
  border-radius: 100px;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--navy);
  transition: background-color 0.45s var(--ease), color 0.45s var(--ease);
}
/* Arrow relay: the arrow flies out top-right while a fresh one enters from bottom-left */
.fav-card__arrows {
  position: relative;
  display: inline-block;
  width: 12px;
  height: 12px;
  overflow: hidden;
}
.fav-card__arrows .fav-arrow {
  position: absolute;
  top: 0; left: 0;
  width: 12px; height: 12px;
}
.fav-card__arrows .fav-arrow:nth-child(2) { transform: translate(-150%, 150%); }
.fav-card:hover .fav-card__btn,
.fav-card:focus-visible .fav-card__btn { background: var(--navy); color: var(--cream); }
.fav-card:hover .fav-card__arrows .fav-arrow:nth-child(1),
.fav-card:focus-visible .fav-card__arrows .fav-arrow:nth-child(1) { transform: translate(150%, -150%); }
.fav-card:hover .fav-card__arrows .fav-arrow:nth-child(2),
.fav-card:focus-visible .fav-card__arrows .fav-arrow:nth-child(2) { transform: translate(0, 0); }

/* ---------- CLOSING CTA (normal centered section) ---------- */
.fav-close {
  background:
    radial-gradient(55% 50% at 50% 100%, rgba(135, 183, 223, 0.14) 0%, transparent 65%),
    var(--cream);
  padding: clamp(5rem, 9vw, 8rem) 0;
}
.fav-close__inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.fav-close__inner h2 {
  margin-top: 1.1rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(2rem, 1.4rem + 2vw, 3rem);
  line-height: 1.1;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.fav-close__inner h2 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.fav-close__inner > p {
  margin-top: 1.1rem;
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.fav-close__actions {
  margin-top: 2.2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.9rem;
}
.fav-close__actions .btn span:first-child { display: inline-flex; align-items: center; }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1080px) {
  /* Stack the hero: text, then the preview card, then the button */
  .fav-hero__grid { grid-template-columns: 1fr; column-gap: 0; row-gap: clamp(2rem, 6vw, 3rem); }
  .fav-hero__copy, .fav-hero__actions, .fav-hero__preview { grid-column: auto; grid-row: auto; }
  .fav-hero__preview { justify-self: center; max-width: 400px; }
  .fav-hero__actions { justify-content: center; }
  .fav-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .fav-grid--3 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 620px) {
  /* Two cards per row on mobile, in a more compact card */
  .fav-grid--4, .fav-grid--3, .fav-grid--2 { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .fav-card { padding: 1.3rem 1rem 1.2rem; gap: 0.85rem; border-radius: 14px; }
  .fav-card__ico { width: 42px; height: 42px; border-radius: 11px; }
  .fav-card__ico svg { width: 23px; height: 23px; }
  .fav-card__name { font-size: 1rem; }
  .fav-card__btn { padding: 0.5rem 0.85rem; font-size: 0.58rem; letter-spacing: 0.1em; gap: 0.4rem; }
  /* Smaller hero preview card on mobile */
  .fav-hero__preview { max-width: 288px; }
  .fav-preview { padding: 1.3rem 1.2rem 1.15rem; border-radius: 16px; }
  .fav-preview__label { font-size: 0.58rem; letter-spacing: 0.18em; }
  .fav-preview__title { font-size: 1.2rem; }
  .fav-preview__tag { font-size: 1.45rem; }
  .fav-preview__rows { gap: 0.7rem; margin-top: 0.9rem; }
  .fav-preview__ico { width: 30px; height: 30px; border-radius: 8px; }
  .fav-preview__ico svg { width: 16px; height: 16px; }
  .fav-preview__text b { font-size: 0.82rem; }
  .fav-preview__text i { font-size: 0.7rem; }
  .fav-preview__stamp { display: none; }
}

/* =====================================================================
   FORM ERROR STATE
   ===================================================================== */
.form-error {
  margin: 0.9rem 0 0;
  padding: 0.8rem 1rem;
  border-radius: var(--r-sm);
  background: rgba(180, 60, 40, 0.08);
  border: 1px solid rgba(180, 60, 40, 0.25);
  color: #8c3324;
  font-size: 0.92rem;
  line-height: 1.5;
}
.form-error a { color: inherit; font-weight: 600; text-decoration: underline; }
.form-error[hidden] { display: none; }

/* =====================================================================
   LEGAL PAGES (Privacy Policy / Accessibility)
   ===================================================================== */
.page-legal { background: var(--cream); }

.legal-hero {
  position: relative;
  background:
    radial-gradient(60% 50% at 15% 18%, rgba(135, 183, 223, 0.18) 0%, transparent 65%),
    radial-gradient(55% 45% at 90% 92%, rgba(135, 183, 223, 0.12) 0%, transparent 70%),
    var(--cream);
  padding: clamp(7.5rem, 12vw, 10rem) 0 clamp(2.6rem, 4vw, 3.4rem);
  border-bottom: 1px solid var(--line);
}
.legal-hero .container { max-width: 900px; }
.legal-hero h1 {
  margin-top: 1.4rem;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(2.5rem, 1.4rem + 4vw, 4.4rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  text-wrap: balance;
}
.legal-hero h1 em {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  color: var(--accent);
}
.legal-hero__sub {
  margin-top: 1.4rem;
  max-width: 62ch;
  font-size: 1.04rem;
  line-height: 1.7;
  color: var(--ink-soft);
}
.legal-hero__updated {
  display: inline-block;
  margin-top: 1.6rem;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

.legal-body { padding: clamp(3rem, 6vw, 4.5rem) 0 clamp(5rem, 8vw, 7rem); }
.legal-body .container { max-width: 900px; }
.legal-body section + section { margin-top: clamp(2.4rem, 5vw, 3.6rem); }
.legal-body h2 {
  display: flex;
  align-items: baseline;
  gap: 0.9rem;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 1rem + 1.6vw, 2.1rem);
  line-height: 1.2;
  color: var(--ink);
}
.legal-body h2 .legal-num {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 0.85em;
  color: var(--blue);
  flex-shrink: 0;
}
.legal-body h3 {
  margin-top: 1.8rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.02rem;
  color: var(--ink);
}
.legal-body p, .legal-body li {
  margin-top: 1rem;
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink-soft);
}
.legal-body ul {
  margin-top: 1rem;
  padding-left: 1.2rem;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.legal-body ul li { margin-top: 0; }
.legal-body ul li::marker { color: var(--blue); }
.legal-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }
.legal-body a:hover { color: var(--ink); }
.legal-body strong { color: var(--ink); font-weight: 600; }

.legal-callout {
  margin-top: 1.4rem;
  padding: 1.4rem 1.6rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.legal-callout p { margin-top: 0; }
.legal-callout p + p { margin-top: 0.7rem; }

.legal-contact {
  margin-top: clamp(2.8rem, 6vw, 4rem);
  padding: clamp(1.8rem, 4vw, 2.6rem);
  background: var(--navy);
  border-radius: var(--r-lg);
  color: var(--on-dark-soft);
}
.legal-contact h2 { color: var(--cream); }
.legal-contact p { color: var(--on-dark-soft); }
.legal-contact a { color: var(--sky); }
.legal-contact a:hover { color: var(--cream); }

/* Contact hero: live open/closed status */
.ct-hero__status b { font-weight: 600; }
.ct-hero__status.is-closed .ct-hero__dot {
  background: #b0a89d;
  box-shadow: 0 0 0 3px rgba(140, 130, 118, 0.2);
  animation: none;
}

/* =====================================================================
   ACCESSIBILITY & ROBUSTNESS PASS (v62)
   ===================================================================== */

/* Visually hidden, still announced by screen readers */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content link: hidden until keyboard focus */
.skip-link {
  position: fixed;
  top: 10px; left: 10px;
  z-index: 2100;
  padding: 0.7rem 1.2rem;
  background: var(--navy);
  color: var(--cream);
  border-radius: 999px;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  transform: translateY(-260%);
  transition: transform 0.2s ease;
}
.skip-link:focus,
.skip-link:focus-visible {
  transform: none;
  outline: 2px solid var(--cream);
  outline-offset: 2px;
}

/* Closed mobile menu: remove from tab order and the accessibility tree.
   script.js keeps it visible (inline style) while the close animation
   runs, then clears the inline style so this rule re-applies. */
.mobile-menu { visibility: hidden; }
body.menu-open .mobile-menu { visibility: visible; }

/* Legal pages: restore bullets killed by the global ul reset */
.legal-body ul { list-style: disc; }

/* 404 page: buttons inside legal-body should not inherit link underline */
.legal-body .btn, .legal-body .btn span { text-decoration: none; }

/* Collapsed FAQ answers: hide from screen readers and tab order too */
.pq__a {
  visibility: hidden;
  transition: grid-template-rows 0.45s var(--ease), visibility 0s 0.45s;
}
.pq.is-open .pq__a {
  visibility: visible;
  transition: grid-template-rows 0.45s var(--ease), visibility 0s 0s;
}
