/* ============================================================
   MINTY SMILES — Design System
   Aesthetic: Luxe clinical, deep teal premium spa
   Type: Hanken Grotesk (geometric sans pair)
   ============================================================ */

/* Google Fonts loaded via <link> in HTML head for better performance */

:root {
  /* Color tokens — logo-led teal palette */
  --ink: #133F3D;
  --teal-900: #134B49;
  --teal-800: #1A6664;
  --teal-700: #2A8987;
  --teal: #2F9794;          /* brand teal — direct from logo */
  --teal-bright: #3CB0AB;
  --teal-soft: #A8DAD7;
  --teal-mist: #DDEEEC;
  --sage: #6FA9A5;
  --sage-soft: #B3D2CF;
  --cream: #FBF5EB;
  --cream-light: #FFFBF2;
  --paper: #FFFFFF;
  --gold: #E89B7F;          /* warm coral accent — friendly complement to teal */
  --gold-soft: #F4C2AE;
  --rule: rgba(19, 63, 61, 0.12);
  --rule-soft: rgba(19, 63, 61, 0.06);
  --rule-light: rgba(251, 245, 235, 0.18);

  /* Friendlier rounding */
  --r-sm: 12px;
  --r-md: 20px;
  --r-lg: 28px;

  /* Type scale */
  --font-display: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-body: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;
  --font-mono: 'Hanken Grotesk', system-ui, -apple-system, sans-serif;

  /* Density tokens — switched via .density-airy / .density-compact on body */
  --pad-section: clamp(56px, 7vw, 104px);
  --pad-side: clamp(20px, 4vw, 72px);
  --gap-grid: clamp(16px, 2vw, 32px);
  --max-w: 1440px;

  /* Motion */
  --ease: cubic-bezier(.22, .9, .25, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

body.density-compact {
  --pad-section: clamp(56px, 7vw, 112px);
  --pad-side: clamp(20px, 3.5vw, 64px);
  --gap-grid: clamp(12px, 1.4vw, 24px);
}

body.density-airy {
  --pad-section: clamp(96px, 13vw, 200px);
  --pad-side: clamp(28px, 6vw, 112px);
  --gap-grid: clamp(20px, 2.4vw, 40px);
}

/* ============================================================
   Reset & base
   ============================================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-weight: 420;
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream-light);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul, ol { list-style: none; }

::selection { background: var(--teal-soft); color: var(--ink); }

/* ============================================================
   Type styles
   ============================================================ */
.eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal);
}
.eyebrow--gold { color: var(--gold); }
.eyebrow--cream { color: var(--cream); opacity: 0.7; }

.display {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(48px, 7vw, 112px);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.display em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.h1 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  text-wrap: balance;
}
.h2 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.025em;
  text-wrap: balance;
}
.h3 {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 1.8vw, 24px);
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.lede {
  font-size: clamp(18px, 1.5vw, 22px);
  line-height: 1.45;
  font-weight: 350;
  color: rgba(11, 31, 30, 0.78);
  text-wrap: pretty;
  max-width: 60ch;
}
.body { font-size: 16px; line-height: 1.6; color: rgba(11, 31, 30, 0.78); text-wrap: pretty; }
.body--lg { font-size: 18px; line-height: 1.55; }
.meta { font-size: 13px; letter-spacing: 0.02em; color: var(--sage); }

/* ============================================================
   Layout primitives
   ============================================================ */
.wrap { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-side); }
.section { padding: var(--pad-section) 0; position: relative; }
.section--dark { background: var(--teal-900); color: var(--cream); }
.section--teal { background: var(--teal); color: var(--cream); }
.section--dark .body, .section--dark .lede { color: rgba(244, 239, 230, 0.72); }
.section--cream { background: var(--cream); }
.section--paper { background: var(--paper); }

.rule { height: 1px; background: var(--rule); border: 0; }
.rule--light { background: var(--rule-light); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 96px);
  align-items: end;
}
@media (min-width: 900px) {
  .section-head { grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); }
}
.section-head .eyebrow-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.section-head .eyebrow-row::before {
  content: ''; width: 32px; height: 1px; background: currentColor; opacity: 0.4;
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 28px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: all 0.4s var(--ease);
  position: relative;
  white-space: nowrap;
}
.btn .arrow {
  display: inline-block;
  transition: transform 0.4s var(--ease);
}
.btn:hover .arrow { transform: translateX(4px); }

.btn--primary {
  background: var(--teal);
  color: #fff;
}
.btn--primary:hover { background: var(--teal-800); }

.btn--gold {
  background: var(--gold);
  color: var(--ink);
}
.btn--gold:hover { background: var(--gold-soft); }

.btn--ghost {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}
.btn--ghost:hover { background: currentColor; color: var(--cream); }
.section--dark .btn--ghost:hover { color: var(--ink); }
/* On dark/hero backgrounds currentColor is cream, so flip to ink for readable hover */
.hero .btn--ghost:hover { background: var(--cream); color: var(--ink); }

.btn--link {
  padding: 0;
  background: none;
  font-size: 13px;
  letter-spacing: 0.12em;
  border-bottom: 1px solid currentColor;
  border-radius: 0;
  padding-bottom: 6px;
}

/* ============================================================
   Header / Navigation
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  padding: 26px var(--pad-side);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  border-bottom: 1px solid transparent;
}
/* Use ::before for background/blur so site-header itself has no backdrop-filter.
   Chrome treats backdrop-filter like filter and makes the element a containing block
   for position:fixed children — which breaks the mobile nav drawer positioning. */
.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0;
  background: rgba(250, 247, 241, 0.96);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  transition: opacity 0.4s var(--ease);
  z-index: -1;
  pointer-events: none;
}
.site-header.is-scrolled {
  padding-top: 14px;
  padding-bottom: 14px;
  box-shadow: 0 8px 28px -18px rgba(19, 63, 61, 0.30);
  border-bottom-color: var(--rule);
}
.site-header.is-scrolled::before { opacity: 1; }
.site-header.is-scrolled.on-dark::before {
  background: rgba(14, 42, 42, 0.85);
}
.site-header.is-scrolled.on-dark {
  border-bottom-color: var(--rule-light);
}

.brand {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: inherit;
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.brand-mark {
  width: 48px; height: 48px;
  object-fit: contain;
  display: block;
  background: transparent;
  border: none;
  flex: 0 0 48px;
}
@media (max-width: 640px) { .brand-mark { width: 38px; height: 38px; flex-basis: 38px; } }
.brand-name { font-size: 20px; line-height: 1; font-weight: 500; }
.brand-tag { display: block; font-family: var(--font-mono); font-size: 9.5px; letter-spacing: 0.18em; opacity: 0.55; margin-top: 4px; text-transform: uppercase; font-weight: 400;}

.nav { display: none; align-items: center; gap: 36px; }
@media (min-width: 1024px) { .nav { display: flex; } }
.nav a {
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  position: relative;
  padding: 6px 0;
  opacity: 0.78;
  transition: opacity 0.3s var(--ease);
}
.nav a:hover, .nav a[aria-current="page"] { opacity: 1; }
.nav a[aria-current="page"]::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 1px; background: currentColor;
}

.header-cta { display: flex; align-items: center; gap: 16px; }
.header-phone {
  font-family: var(--font-mono);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  opacity: 0.75;
  display: none;
}
@media (min-width: 720px) { .header-phone { display: inline; } }
.header-cta .btn { padding: 14px 26px; font-size: 14.5px; font-weight: 600; }

.menu-btn {
  display: grid; place-items: center;
  width: 40px; height: 40px;
  border: 1px solid currentColor;
  border-radius: 50%;
  opacity: 0.8;
}
@media (min-width: 1024px) { .menu-btn { display: none; } }
.menu-btn .bars { display: grid; gap: 4px; }
.menu-btn .bars span { width: 14px; height: 1px; background: currentColor; }

/* Header on hero (dark) */
.site-header.on-dark { color: var(--cream); }
.site-header.on-dark .brand-mark { background: transparent; border: none; }
.site-header.on-dark .brand-mark::before { display: none; }
.brand-mark::before { display: none; }
.site-header.on-dark .btn--gold { background: var(--gold); color: var(--ink); }

/* ============================================================
   Hero (full-bleed cinematic)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  background: var(--teal-900);
  color: var(--cream);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--pad-side) clamp(48px, 7vw, 96px);
}
.hero-bg {
  position: absolute; inset: 0;
  background: var(--teal-900) var(--hero-photo, none) 25% center / cover no-repeat;
  z-index: 0;
}
.hero-bg::after {
  /* readability scrim over the photo */
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 31, 30, 0.88) 0%, rgba(11, 31, 30, 0.62) 42%, rgba(11, 31, 30, 0.30) 70%, rgba(11, 31, 30, 0.55) 100%),
    radial-gradient(ellipse 60% 80% at 22% 50%, rgba(11, 31, 30, 0.45), transparent 70%);
  pointer-events: none;
}
.hero-bg.no-photo {
  background-color: var(--teal-900);
  background-image:
    /* Soft glow behind headline text */
    radial-gradient(ellipse 60% 70% at -5% 55%, rgba(42, 137, 135, 0.22) 0%, transparent 55%),
    /* Concentric arc rings from top-right */
    radial-gradient(circle at 107% -7%, transparent 30%, rgba(42, 137, 135, 0.26) 30.8%, transparent 31.8%),
    radial-gradient(circle at 107% -7%, transparent 47%, rgba(42, 137, 135, 0.17) 47.8%, transparent 48.8%),
    radial-gradient(circle at 107% -7%, transparent 64%, rgba(42, 137, 135, 0.10) 64.8%, transparent 65.8%),
    radial-gradient(circle at 107% -7%, transparent 81%, rgba(42, 137, 135, 0.06) 81.8%, transparent 82.8%);
  overflow: hidden;
}
/* Diagonal panel across right half */
.hero-bg.no-photo::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(118deg, transparent 52%, rgba(26, 102, 100, 0.20) 52%);
  pointer-events: none;
}
.hero-bg.no-photo::after { background: none; }
.hero-portrait {
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 58%;
  z-index: 1;
  overflow: hidden;
  display: none;
}
@media (min-width: 900px) { .hero-portrait { display: block; } }
.hero-portrait-inner {
  position: absolute; inset: 0;
  background:
    /* simulated cinematic warm light */
    radial-gradient(ellipse 60% 70% at 45% 35%, rgba(244, 239, 230, 0.15) 0%, transparent 55%),
    radial-gradient(ellipse 80% 90% at 55% 60%, rgba(184, 148, 86, 0.18) 0%, transparent 60%),
    linear-gradient(200deg, rgba(244, 239, 230, 0.04) 0%, transparent 50%);
  animation: kenburns 22s ease-in-out infinite alternate;
}
.hero-portrait-inner::before {
  /* Suggestion of a portrait silhouette */
  content: '';
  position: absolute;
  left: 30%; right: -10%; top: 10%; bottom: 0;
  background: radial-gradient(ellipse 30% 40% at 50% 30%, rgba(244, 239, 230, 0.08), transparent 65%);
  filter: blur(20px);
}
@keyframes kenburns {
  from { transform: scale(1.08); }
  to { transform: scale(1.0); }
}
.hero-portrait-label {
  position: absolute;
  right: 32px; top: 50%;
  transform: translateY(-50%) rotate(-90deg);
  transform-origin: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  color: rgba(244, 239, 230, 0.35);
  text-transform: uppercase;
  white-space: nowrap;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}
.hero-eyebrow {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.65);
}
.hero-eyebrow::before {
  content: ''; width: 32px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(56px, 11vw, 180px);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin-bottom: 32px;
}
.hero h1 .your { display: block; font-weight: 200; }
.hero h1 .priority {
  display: block;
  font-weight: 400;
  font-style: italic;
  color: var(--teal-soft);
}
.hero-meta {
  display: flex; flex-wrap: wrap;
  gap: 16px 48px;
  align-items: center;
  margin-top: 12px;
  padding-top: 36px;
  border-top: 1px solid var(--rule-light);
  max-width: 720px;
}
.hero-meta-item {
  display: flex; flex-direction: column; gap: 4px;
}
.hero-meta-item .label {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
}
.hero-meta-item .value {
  font-size: 15px;
  font-weight: 450;
  color: var(--cream);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }

.hero-marquee {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 18px var(--pad-side);
  border-top: 1px solid var(--rule-light);
  display: flex; align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.55);
  background: rgba(11, 31, 30, 0.4);
  backdrop-filter: blur(6px);
  z-index: 2;
  display: none; /* hide for cleaner hero — keep markup for variants if needed */
}

.scroll-hint {
  position: absolute;
  left: var(--pad-side);
  bottom: 28px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  z-index: 2;
  writing-mode: vertical-rl;
  display: none;
}
@media (min-width: 1200px) { .scroll-hint { display: block; } }
.scroll-hint::after {
  content: '';
  display: block;
  width: 1px; height: 56px;
  background: rgba(244, 239, 230, 0.35);
  margin: 14px auto 0;
  animation: scrollLine 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.3); opacity: 0.4; }
  50% { transform: scaleY(1); opacity: 1; }
}

/* ============================================================
   Stats / values strip
   ============================================================ */
.values-strip {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
}
@media (min-width: 700px) { .values-strip { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1000px) { .values-strip { grid-template-columns: repeat(4, 1fr); } }

.value-cell {
  padding: clamp(28px, 3vw, 48px) clamp(20px, 2.4vw, 36px);
  display: flex; flex-direction: column; gap: 8px;
  border-right: 1px solid var(--rule);
  position: relative;
}
.value-cell:last-child { border-right: none; }
@media (max-width: 999px) {
  .value-cell:nth-child(2n) { border-right: none; }
  .value-cell { border-bottom: 1px solid var(--rule); }
  .value-cell:nth-last-child(-n+1) { border-bottom: none; }
}
.value-cell .num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 4.5vw, 64px);
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--ink);
  font-feature-settings: 'tnum';
}
.value-cell .num .suffix { font-size: 0.5em; color: var(--gold); margin-left: 4px; }
.value-cell .lbl {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-top: 14px;
}

/* ============================================================
   About preview
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
@media (min-width: 1000px) {
  .about-grid { grid-template-columns: 1.05fr 1fr; }
}
.about-grid .col-text { padding-top: clamp(0px, 4vw, 60px); }
.about-grid h2 { margin-bottom: 28px; }
.about-grid .lede { margin-bottom: 32px; }
.about-grid .checklist {
  display: grid; gap: 14px;
  margin: 32px 0 40px;
}
.about-grid .checklist li {
  display: flex; align-items: center; gap: 14px;
  font-size: 15px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--rule);
}
.about-grid .checklist li .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 6px;
}

/* ============================================================
   Image placeholders (designed, labeled)
   ============================================================ */
.placeholder {
  position: relative;
  background:
    linear-gradient(135deg, rgba(47, 151, 148, 0.18), rgba(232, 155, 127, 0.12)),
    var(--cream);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border-radius: var(--r-md);
}
.placeholder::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(11, 31, 30, 0.06) 1px, transparent 1px);
  background-size: 6px 6px;
}
.placeholder--wide { aspect-ratio: 16 / 10; }
.placeholder--square { aspect-ratio: 1 / 1; }
.placeholder--portrait { aspect-ratio: 3 / 4; }
.placeholder--landscape { aspect-ratio: 3 / 2; }
.placeholder--tall { aspect-ratio: 9 / 16; }

.placeholder .ph-label {
  position: absolute;
  left: 18px; bottom: 18px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  opacity: 0.55;
  display: flex; align-items: center; gap: 10px;
  background: rgba(244, 239, 230, 0.8);
  padding: 8px 12px;
  backdrop-filter: blur(6px);
  border-radius: 999px;
}
.placeholder .ph-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}
.placeholder--dark { background: linear-gradient(135deg, var(--teal-800), var(--teal-700)); }
.placeholder--dark::before { background-image: radial-gradient(circle at 1px 1px, rgba(244, 239, 230, 0.08) 1px, transparent 1px); }
.placeholder--dark .ph-label { background: rgba(11, 31, 30, 0.7); color: var(--cream); }

/* Real image variant — keeps the placeholder slot dimensions but shows a photo */
.placeholder.has-image {
  background: var(--photo, var(--cream)) center/cover no-repeat;
}
.placeholder.has-image::before { display: none; }
.placeholder.has-image .ph-label {
  background: rgba(11, 31, 30, 0.72);
  color: var(--cream);
  backdrop-filter: blur(6px);
}

/* abstract scene inside placeholder — suggests subject without faking a photo */
.placeholder .scene {
  position: absolute; inset: 0;
  display: grid; place-items: center;
}
.placeholder .scene svg { width: 50%; height: auto; opacity: 0.32; }

/* ============================================================
   Services
   ============================================================ */
.services { background: var(--cream); }
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-grid);
}
@media (min-width: 800px) { .services-grid { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  background: var(--paper);
  color: var(--ink);
  padding: clamp(28px, 3vw, 48px);
  padding-left: calc(clamp(28px, 3vw, 48px) + 8px);
  display: flex;
  flex-direction: column;
  gap: 22px;
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  min-height: 540px;
  box-shadow: 0 18px 50px -34px rgba(19, 63, 61, 0.30);
}
.service-card::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 8px;
  background: var(--gold);
  transition: width 0.4s var(--ease);
}
.service-card::after {
  content: attr(data-num);
  position: absolute;
  top: 24px; right: 24px;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 400;
  font-style: italic;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -0.02em;
  opacity: 0.85;
  transition: opacity 0.4s var(--ease), color 0.4s var(--ease);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 70px -30px rgba(19, 63, 61, 0.38);
}
.service-card:hover::before { width: 12px; }
.service-card .index { color: var(--teal); }
.service-card h3 { color: var(--teal-900); }
.service-card .summary { color: rgba(11, 31, 30, 0.78); }
.service-card ul.sub-services { border-top-color: var(--rule); padding-top: 22px; }
.service-card ul.sub-services li {
  background: transparent;
  border: 1px solid var(--rule);
  color: var(--teal-900);
}
.service-card ul.sub-services li:hover {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--cream);
}
.service-card .card-cta { color: var(--teal); border-bottom-color: var(--teal); }
.service-card .card-cta:hover { color: var(--gold); border-bottom-color: var(--gold); gap: 12px; }
.service-card .icon-block { background: rgba(47, 151, 148, 0.08); border-color: rgba(47, 151, 148, 0.3); }
.service-card .icon-block svg { stroke: var(--teal); }
.service-card:hover .icon-block svg { stroke: var(--gold); }
.service-card .index {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--sage);
}
.service-card h3 {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(28px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  flex: 0 0 auto;
}
.service-card .summary {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(11, 31, 30, 0.7);
}
.service-card ul.sub-services {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  list-style: none;
}
.service-card ul.sub-services li {
  padding: 8px 14px;
  border: 1px solid var(--rule);
  background: var(--cream);
  border-radius: 999px;
  font-size: 13px;
  color: var(--teal-900);
  display: inline-flex; align-items: center; gap: 6px;
  transition: all 0.25s var(--ease);
  cursor: default;
}
.service-card ul.sub-services li:hover {
  color: var(--cream);
  background: var(--teal);
  border-color: var(--teal);
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -8px rgba(19,63,61,0.4);
}
.service-card ul.sub-services li .arr {
  opacity: 0;
  width: 0;
  margin-left: 0;
  transform: translateX(-4px);
  transition: all 0.25s var(--ease);
  font-size: 11px;
  display: inline-block;
  overflow: hidden;
}
.service-card ul.sub-services li:hover .arr {
  opacity: 1;
  width: 10px;
  margin-left: 2px;
  transform: translateX(0);
}
.service-card .card-cta {
  margin-top: 24px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 1px solid currentColor;
  transition: gap 0.3s var(--ease);
}
.service-card:hover .card-cta { gap: 14px; }

/* Service card style variants — toggled via body class */
.service-card .icon-block {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  margin-bottom: 8px;
  transition: all 0.4s var(--ease);
}
.service-card:hover .icon-block {
  background: var(--ink);
  border-color: var(--ink);
}
.service-card:hover .icon-block svg { stroke: var(--gold); }
.service-card .icon-block svg { width: 28px; height: 28px; stroke: var(--ink); fill: none; stroke-width: 1.25; transition: stroke 0.4s var(--ease); }
.service-card .image-block {
  margin: calc(clamp(28px, 3vw, 48px) * -1) calc(clamp(28px, 3vw, 48px) * -1) 0;
  aspect-ratio: 4 / 3;
  position: relative;
}

/* Default = text-first: hide icon and image */
.service-card .icon-block,
.service-card .image-block { display: none; }

body.cards-icon-first .service-card .icon-block { display: grid; }
body.cards-icon-first .service-card h3 { font-size: clamp(24px, 2.2vw, 32px); }

body.cards-image-first .service-card { padding-top: 0; }
body.cards-image-first .service-card .image-block { display: block; }
body.cards-image-first .service-card .index,
body.cards-image-first .service-card h3,
body.cards-image-first .service-card .summary { padding-left: 0; }

/* ============================================================
   Testimonials
   ============================================================ */
.testimonials { background: var(--teal-900); color: var(--cream); }
.testimonials .lede { color: rgba(244, 239, 230, 0.82); }
.testimonials .section-head .eyebrow-row::before { background: var(--gold); opacity: 1; }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap-grid);
}
@media (min-width: 800px) { .testimonials-grid { grid-template-columns: repeat(3, 1fr); } }

/* Stories bento — editorial layout */
.stories-bento {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: clamp(40px, 5vw, 64px);
}
@media (min-width: 800px) {
  .stories-bento {
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
  }
}
.story {
  position: relative;
  padding: clamp(28px, 2.6vw, 40px);
  border: 1px solid rgba(244, 239, 230, 0.14);
  background: rgba(244, 239, 230, 0.03);
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: all 0.4s var(--ease);
}
.story:hover { border-color: rgba(184, 148, 86, 0.45); background: rgba(244, 239, 230, 0.05); transform: translateY(-2px); }
.story-mark {
  font-family: var(--font-display);
  font-size: 64px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.35;
  font-style: italic;
}
.story-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
}
.story-meta .story-stars { color: var(--gold); letter-spacing: 0.18em; font-size: 12px; }
.story-quote {
  font-family: var(--font-display);
  font-weight: 280;
  font-size: clamp(28px, 2.8vw, 42px);
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--cream);
  text-wrap: pretty;
  flex: 1;
}
.story-quote em { font-style: italic; color: var(--gold); font-weight: 300; }
.story-quote-sm {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.55;
  color: rgba(244, 239, 230, 0.86);
  text-wrap: pretty;
  flex: 1;
}
.story-byline {
  padding-top: 18px;
  border-top: 1px solid rgba(244, 239, 230, 0.12);
  display: flex; flex-direction: column; gap: 5px;
}
.story-byline .story-name {
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 350;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.story-byline .story-tag {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage-soft);
}
@media (min-width: 800px) {
  .story--feature { grid-column: span 4; grid-row: span 2; padding: clamp(40px, 4vw, 64px); }
  .story--rating { grid-column: span 2; grid-row: span 2; }
  .story--quote { grid-column: span 2; }
  .story--wide { grid-column: span 3; }
}
.story--gold {
  background: linear-gradient(180deg, rgba(184,148,86,0.10) 0%, rgba(184,148,86,0.02) 100%);
  border-color: rgba(184, 148, 86, 0.3);
}
.story--gold .story-mark { opacity: 0.6; }
.story--rating {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--ink);
  justify-content: space-between;
}
.story--rating .rating-num {
  font-family: var(--font-display);
  font-weight: 250;
  font-size: clamp(72px, 9vw, 120px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  color: var(--ink);
}
.story--rating .rating-of { font-size: 0.34em; opacity: 0.5; margin-left: 4px; }
.story--rating .rating-bar {
  height: 2px;
  background: rgba(11, 31, 30, 0.2);
  position: relative;
  overflow: hidden;
}
.story--rating .rating-bar span {
  position: absolute; inset: 0;
  width: 98%;
  background: var(--ink);
}
.story--rating .rating-copy {
  font-size: 14.5px;
  line-height: 1.55;
  color: rgba(11, 31, 30, 0.78);
  text-wrap: pretty;
}
.story--rating .rating-link {
  font-family: var(--font-mono);
  font-size: 11.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
  padding-top: 16px;
  border-top: 1px solid rgba(11, 31, 30, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 0.3s var(--ease);
}
.story--rating .rating-link:hover { gap: 16px; }

/* Editorial reviews layout (homepage) */
.reviews-editorial {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(20px, 2vw, 28px);
}
@media (min-width: 900px) {
  .reviews-editorial { grid-template-columns: 1.45fr 1fr; align-items: stretch; }
}
.review-feature {
  position: relative;
  background: var(--cream);
  border: 1px solid rgba(184, 148, 86, 0.35);
  border-radius: var(--r-lg);
  padding: clamp(40px, 4vw, 64px) clamp(32px, 3.4vw, 56px);
  display: flex;
  flex-direction: column;
  gap: clamp(28px, 3vw, 40px);
  box-shadow: 0 30px 80px -40px rgba(0,0,0,0.55);
  overflow: hidden;
}
.review-feature::after {
  content: "";
  position: absolute;
  inset: auto -40px -40px auto;
  width: 220px; height: 220px;
  background: radial-gradient(circle at center, rgba(232,155,127,0.18), transparent 60%);
  pointer-events: none;
}
.review-glyph {
  font-family: var(--font-display);
  font-size: clamp(96px, 9vw, 140px);
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.65;
  letter-spacing: -0.05em;
  margin: 0;
  font-weight: 400;
}
.review-feature-quote {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.1vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  font-weight: 500;
  margin: 0;
  text-wrap: pretty;
  flex: 1;
}
.review-feature-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: clamp(20px, 2vw, 28px);
  border-top: 1px solid var(--rule);
  position: relative;
  z-index: 1;
}
.review-author {
  display: flex; align-items: center; gap: 14px;
}
.review-initial {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0;
  flex: 0 0 46px;
}
.review-author-meta { display: flex; flex-direction: column; gap: 2px; }
.review-name {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.review-sub {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: rgba(11,31,30,0.55);
  text-transform: uppercase;
}
.review-stars { color: var(--gold); display: inline-flex; align-items: center; }
.review-stars svg { width: clamp(78px, 7vw, 96px); height: auto; }

.reviews-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: clamp(20px, 2vw, 28px);
}
.review-mini {
  background: rgba(244, 239, 230, 0.06);
  border: 1px solid rgba(244, 239, 230, 0.18);
  border-radius: var(--r-md);
  padding: clamp(24px, 2.4vw, 32px) clamp(24px, 2.6vw, 34px);
  display: flex;
  flex-direction: column;
  gap: 14px;
  backdrop-filter: blur(2px);
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.4s var(--ease);
}
.review-mini:hover {
  background: rgba(244, 239, 230, 0.1);
  border-color: rgba(232, 155, 127, 0.5);
  transform: translateY(-2px);
}
.review-mini-stars { color: var(--gold); display: inline-flex; }
.review-mini-stars svg { width: 70px; height: auto; }
.review-mini-quote {
  font-family: var(--font-display);
  font-size: clamp(16px, 1.25vw, 19px);
  line-height: 1.5;
  color: var(--cream);
  margin: 0;
  font-weight: 400;
  text-wrap: pretty;
  flex: 1;
}
.review-mini-author {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.t-card {
  padding: clamp(32px, 3vw, 48px);
  border: 1px solid rgba(244, 239, 230, 0.16);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: #F3DDCE;
  color: var(--ink);
  opacity: 1 !important;
  transition: all 0.5s var(--ease);
  min-height: 360px;
  box-shadow: 0 18px 50px -30px rgba(0,0,0,0.45);
}
.t-card:hover {
  background: #F8E7DA;
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 26px 60px -28px rgba(0,0,0,0.5);
}
.t-card .quote { color: var(--ink) !important; font-weight: 900 !important; text-align: center !important; font-size: clamp(20px, 1.7vw, 24px) !important; line-height: 1.4 !important; align-self: center; max-width: 100%; }
.t-card .author { border-top-color: var(--rule); }
.t-card .author .name { color: var(--ink); }
.t-card .quote-mark {
  width: 48px; height: 48px;
  border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(184, 148, 86, 0.14);
  color: var(--gold);
  border: 1px solid rgba(184, 148, 86, 0.35);
}
.t-card .quote-mark svg { width: 26px; height: 26px; }
.t-card .quote {
  font-size: 18px;
  line-height: 1.55;
  color: var(--cream);
  font-weight: 350;
  flex: 1;
  text-wrap: pretty;
}
.t-card .author {
  padding-top: 20px;
  border-top: 1px solid var(--rule-light);
  display: flex; align-items: center; justify-content: flex-start;
  gap: 14px;
}
.t-card .author .avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--paper);
  color: var(--teal);
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  flex-shrink: 0;
  overflow: hidden;
}
.t-card .author .avatar svg { width: 28px; height: 28px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.t-card .author-meta { display: flex; flex-direction: column; gap: 4px; flex: 1; }
.t-card .author .name {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.t-card .author .stars {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.google-row {
  margin-top: clamp(40px, 4vw, 56px);
  padding-top: 32px;
  border-top: 1px solid var(--rule-light);
  display: flex; flex-wrap: wrap; align-items: center;
  gap: 16px 32px;
}
.google-row .stars-big {
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 300;
  letter-spacing: -0.03em;
  color: var(--gold);
}
.google-row .stars-big .of { font-size: 0.4em; opacity: 0.6; margin-left: 4px; color: var(--cream); }
.google-row .label-block { display: flex; flex-direction: column; }
.google-row .label-block .label { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--sage-soft); }
.google-row .label-block .source { font-size: 14px; margin-top: 6px; color: var(--cream); }
.google-row .cta { margin-left: auto; }

/* ============================================================
   Team
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 56px);
}
@media (min-width: 800px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.team-member {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
}
.team-member .placeholder { aspect-ratio: 4 / 5; }
.team-member .info { display: flex; flex-direction: column; gap: 14px; }
.team-member .role {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}
.team-member .name {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(28px, 2.6vw, 38px);
  line-height: 1.05;
  letter-spacing: -0.025em;
}
.team-member .bio {
  font-size: 15px;
  line-height: 1.55;
  color: rgba(11, 31, 30, 0.72);
}
.team-member .credentials {
  display: flex; flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}
.team-member .credentials span {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 6px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  color: rgba(11, 31, 30, 0.65);
}

/* ============================================================
   Smile gallery
   ============================================================ */
.gallery {
  background: var(--cream);
}
.gallery-track {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap-grid);
}
@media (min-width: 800px) { .gallery-track { grid-template-columns: repeat(4, 1fr); } }
.gallery-card {
  position: relative;
  overflow: hidden;
  background: var(--cream-light);
  border: 1px solid var(--rule);
  border-radius: var(--r-md);
  transition: all 0.5s var(--ease);
}
.gallery-card:hover { transform: translateY(-4px); border-color: var(--teal); box-shadow: 0 20px 50px -28px rgba(19,63,61,0.25); }
.gallery-card .placeholder { aspect-ratio: 3 / 4; }
.gallery-card .meta-row {
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gallery-card .meta-row .treatment { color: var(--sage); }
.gallery-card .meta-row .ba { color: var(--ink); opacity: 0.7; }
.gallery-card .ba-tag {
  position: absolute;
  top: 16px; left: 16px;
  padding: 6px 12px;
  background: var(--cream-light);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ============================================================
   Membership / financing
   ============================================================ */
.membership {
  background: linear-gradient(180deg, var(--cream) 0%, var(--paper) 100%);
  position: relative;
}
.membership::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--rule) 50%, transparent 100%);
}
.membership-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
  align-items: stretch;
}
@media (min-width: 900px) { .membership-grid { grid-template-columns: 1.2fr 1fr; } }
.membership-grid--three { gap: 28px; }
@media (min-width: 900px) {
  .membership-grid--three { grid-template-columns: 1fr 1.12fr 1fr; align-items: stretch; }
}
.membership-card--featured { position: relative; z-index: 1; }
@media (min-width: 900px) { .membership-card--featured { transform: scale(1.02); } }
.membership-card--featured::after {
  content: 'Most popular';
  position: absolute;
  top: -10px; right: 24px;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  font-weight: 600;
}
.membership-card {
  background: var(--teal-900);
  color: var(--cream);
  padding: clamp(40px, 4vw, 64px);
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
  overflow: hidden;
  border-radius: var(--r-lg);
}
.membership-card::before {
  content: '';
  position: absolute;
  right: -100px; top: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(184, 148, 86, 0.25), transparent 60%);
}
.membership-card .price {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 88px);
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--cream);
  display: flex; align-items: baseline; gap: 8px;
}
.membership-card .price .dollar { font-size: 0.4em; color: var(--gold); font-weight: 400; }
.membership-card .price .per { font-size: 0.22em; color: rgba(244,239,230,0.6); font-family: var(--font-mono); letter-spacing: 0.1em; text-transform: uppercase; }
.membership-card ul.includes { display: grid; gap: 10px; }
.membership-card ul.includes li {
  padding: 14px 0;
  border-bottom: 1px solid var(--rule-light);
  font-size: 15px;
  display: flex; gap: 14px;
}
.membership-card ul.includes li::before {
  content: ''; width: 16px; height: 1px; background: var(--gold); margin-top: 12px; flex: 0 0 16px;
}

.financing { display: flex; flex-direction: column; gap: 32px; }
.financing h2 { margin-bottom: 16px; }
.partner-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 14px;
}
.partner-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(115px, 1fr));
  gap: 12px;
  margin-top: 12px;
}
@media (max-width: 700px) { .partner-logos { grid-template-columns: repeat(2, 1fr); } }
.partner-logos .logo {
  aspect-ratio: 5 / 2;
  border: 1px solid var(--rule);
  border-radius: var(--r-sm);
  display: grid; place-items: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--teal-900);
  padding: 10px;
  background: #ffffff;
  text-align: center;
  line-height: 1.15;
  box-shadow: 0 8px 24px -20px rgba(19,63,61,0.4);
  transition: all 0.3s var(--ease);
}
.partner-logos .logo:hover { border-color: var(--gold); transform: translateY(-2px); }

/* ============================================================
   Promo banner
   ============================================================ */
.promo {
  background: #F4C9A8;
  color: var(--ink);
  border-radius: var(--r-lg);
  margin: clamp(24px, 3vw, 48px) var(--pad-side) clamp(48px, 6vw, 80px);
  padding: clamp(48px, 5vw, 80px) var(--pad-side);
  position: relative;
  overflow: hidden;
}
.promo-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: clamp(20px, 2.4vw, 36px);
  text-align: center;
}
.promo-inner .promo-headline { flex: 0 1 auto; max-width: 720px; }
.promo .promo-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 999px;
}
.promo .promo-headline {
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(24px, 2.6vw, 36px);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-wrap: balance;
}
.promo .promo-headline strong { font-weight: 500; font-style: italic; }
.promo .btn { font-size: 16px; padding: 20px 32px; }
.promo .btn .arrow { font-size: 16px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  border-top: none;
}
.faq-item {
  border: 1px solid var(--teal-900);
  background: var(--teal-900);
  color: var(--cream);
  border-radius: var(--r-md);
  padding: 0;
  overflow: hidden;
  transition: border-color 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), transform 0.35s var(--ease);
}
.faq-item:hover {
  border-color: var(--ink);
  background: var(--ink);
  box-shadow: 0 10px 24px -16px rgba(11,31,30,0.55);
  transform: translateY(-1px);
}
.faq-item[open] {
  border-color: var(--rule);
  background: var(--cream);
  box-shadow: 0 18px 40px -22px rgba(19,63,61,0.18);
}
.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  cursor: pointer;
  list-style: none;
  padding: clamp(18px, 2vw, 26px) clamp(20px, 2.4vw, 30px);
  font-family: var(--font-display);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--cream);
  transition: color 0.3s var(--ease);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item:hover summary { color: var(--cream); }
.faq-item .answer { color: rgba(244, 239, 230, 0.85); }
.faq-item[open] summary { color: var(--ink) !important; font-weight: 700; }
.faq-item[open] .answer { color: rgba(11, 31, 30, 0.78) !important; }
.faq-item .plus {
  width: 36px; height: 36px;
  background: rgba(244, 239, 230, 0.12);
  color: var(--cream);
  border: 1px solid rgba(244, 239, 230, 0.3);
  border-radius: 50%;
  border: 1px solid var(--rule);
  display: grid; place-items: center;
  flex: 0 0 36px;
  position: relative;
  transition: all 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.faq-item .plus::before, .faq-item .plus::after {
  content: ''; position: absolute; background: currentColor;
}
.faq-item .plus::before { width: 12px; height: 1px; transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1); }
.faq-item .plus::after { width: 1px; height: 12px; transition: transform 0.3s var(--ease); }
.faq-item:hover .plus { background: var(--gold); color: var(--teal-900); border-color: var(--gold); }
.faq-item[open] .plus { background: var(--teal); color: var(--cream); border-color: var(--teal); transform: rotate(180deg); }
.faq-item[open] .plus::after { transform: scaleY(0); }
.faq-item .answer {
  margin: 0 clamp(20px, 2.4vw, 30px) clamp(18px, 2vw, 26px);
  padding: 0 0 4px;
  font-size: 16px;
  line-height: 1.6;
  color: rgba(11, 31, 30, 0.78);
  max-width: 70ch;
  animation: faqOpen 0.4s var(--ease) both;
}
@keyframes faqOpen {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   Contact / Map
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
@media (min-width: 1000px) { .contact-grid { grid-template-columns: 1fr 1fr; } }

.contact-card {
  display: flex; flex-direction: column; gap: 32px;
}
.contact-card h2 { margin-bottom: 8px; }
.contact-meta-list {
  display: grid; gap: 0;
  border-top: 1px solid var(--rule);
}
.contact-meta-list .row {
  padding: 20px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 24px;
  align-items: baseline;
}
.contact-meta-list .row .lbl {
  font-family: var(--font-mono);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--sage);
}
.contact-meta-list .row .val,
.contact-meta-list .row .val.big {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
}
.contact-meta-list .row .val .sub {
  display: block;
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-top: 0;
}
.contact-meta-list .row .val a { color: inherit; text-decoration: none; border-bottom: none; transition: color 0.25s var(--ease); }
.contact-meta-list .row .val a:hover { color: var(--gold); }

/* Map block */
.clinic-block { overflow: hidden; }
.clinic-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: 50% 55%;
  display: block;
}
.clinic-scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,30,0) 40%, rgba(11,31,30,0.55) 100%);
  pointer-events: none;
}
.clinic-block .map-label {
  background: var(--cream);
  color: var(--ink);
  padding: 16px 22px;
  border-radius: 4px;
  box-shadow: 0 14px 40px -16px rgba(11,31,30,0.45);
  z-index: 2;
}
.clinic-directions {
  position: absolute;
  right: 20px; bottom: 24px;
  z-index: 2;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: rgba(11,31,30,0.6);
  backdrop-filter: blur(8px);
  padding: 12px 18px;
  border: 1px solid rgba(244,239,230,0.25);
  text-decoration: none;
  transition: background 0.3s var(--ease), gap 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.clinic-directions:hover { background: var(--gold); color: var(--ink); border-color: var(--gold); gap: 14px; }

.map-block {
  position: relative;
  background: var(--teal-900);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  border: 1px solid var(--rule);
}
.map-svg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
}
.map-pin {
  position: absolute;
  left: 50%; top: 48%;
  width: 64px; height: 64px;
  transform: translate(-50%, -100%);
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.4));
  z-index: 2;
}
.map-pin::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid var(--cream);
}
.map-pin::after {
  content: '';
  position: absolute;
  left: 50%; top: 50%;
  width: 14px; height: 14px;
  transform: translate(-50%, -50%);
  background: var(--cream);
  border-radius: 50%;
}
.map-label {
  position: absolute;
  left: 24px; bottom: 24px;
  right: 24px;
  z-index: 3;
  background: rgba(244, 239, 230, 0.95);
  padding: 16px 20px;
  backdrop-filter: blur(8px);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.map-label .a-name { font-family: var(--font-display); font-size: 16px; font-weight: 500; }
.map-label .a-addr { font-family: var(--font-mono); font-size: 11px; letter-spacing: 0.04em; color: rgba(11,31,30,0.7); }
.map-controls {
  position: absolute;
  top: 16px; right: 16px;
  display: grid; gap: 4px;
  z-index: 3;
}
.map-controls button {
  width: 36px; height: 36px;
  background: rgba(244, 239, 230, 0.95);
  display: grid; place-items: center;
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--ink);
}

/* Contact form */
.contact-form { display: grid; gap: 4px; }
.contact-form .field {
  display: grid; gap: 6px;
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.contact-form label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}
.contact-form input, .contact-form textarea {
  font-family: var(--font-body);
  font-size: 18px;
  border: 0;
  background: transparent;
  outline: none;
  color: var(--ink);
  padding: 0;
  width: 100%;
  resize: none;
}
.contact-form input::placeholder, .contact-form textarea::placeholder {
  color: rgba(11, 31, 30, 0.3);
}
.contact-form textarea { min-height: 80px; }
.contact-form .submit-row { padding-top: 24px; }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(80px, 8vw, 120px) var(--pad-side) 48px;
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 4vw, 72px);
}
@media (min-width: 800px) {
  .footer-inner { grid-template-columns: 2fr 1fr 1fr 1fr; }
}
.footer-brand { max-width: 360px; }
.footer-brand h3 {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 24px;
  color: var(--cream);
}
.footer-brand h3 em { font-style: italic; color: var(--gold); font-weight: 300; }
.footer-brand p {
  font-size: 14px;
  color: rgba(244, 239, 230, 0.6);
  line-height: 1.55;
  margin-bottom: 32px;
}
.footer-brand .contact-line {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.02em;
  color: var(--cream);
  display: flex; flex-direction: column; gap: 8px;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  font-weight: 400;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a {
  font-size: 14px;
  color: rgba(244, 239, 230, 0.7);
  transition: color 0.3s var(--ease);
}
.footer-col a:hover { color: var(--gold); }

.footer-bottom {
  margin-top: clamp(56px, 6vw, 88px);
  padding-top: 32px;
  border-top: 1px solid var(--rule-light);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.04em;
  color: rgba(244, 239, 230, 0.45);
}
.footer-bottom .socials { display: flex; gap: 20px; }
.footer-bottom .socials a { color: rgba(244, 239, 230, 0.6); }
.footer-bottom .socials a:hover { color: var(--gold); }

/* ============================================================
   Page hero (for non-home pages)
   ============================================================ */
.page-hero {
  background: var(--teal-900);
  color: var(--cream);
  padding: clamp(120px, 13vw, 180px) var(--pad-side) clamp(56px, 6vw, 96px);
  position: relative;
  overflow: hidden;
}
.page-hero::before { content: none; }
.page-hero-bg {
  position: absolute; inset: 0;
  background: var(--teal-900) var(--hero-photo, none) center / cover no-repeat;
  z-index: 0;
}
.page-hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(105deg, rgba(11, 31, 30, 0.88) 0%, rgba(11, 31, 30, 0.62) 42%, rgba(11, 31, 30, 0.30) 70%, rgba(11, 31, 30, 0.55) 100%),
    radial-gradient(ellipse 60% 80% at 22% 50%, rgba(11, 31, 30, 0.45), transparent 70%);
  pointer-events: none;
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 1000px) { .page-hero-inner { grid-template-columns: 1.4fr 1fr; align-items: end; } }
.page-hero .breadcrumb {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
  display: flex; gap: 12px; align-items: center;
  margin-bottom: 36px;
}
.page-hero .breadcrumb a:hover { color: var(--gold); }
.page-hero .breadcrumb .sep { opacity: 0.4; }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 250;
  font-size: clamp(48px, 8vw, 120px);
  line-height: 0.92;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.page-hero h1 em { font-style: italic; color: var(--gold); font-weight: 300; }
.page-hero .page-lede {
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.5;
  color: rgba(244, 239, 230, 0.72);
  max-width: 540px;
  font-weight: 350;
  text-wrap: pretty;
}

/* ============================================================
   Reveal animations
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.1s var(--ease-out), transform 1.1s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal-stagger.in > * { opacity: 1; transform: translateY(0); }
.reveal-stagger.in > *:nth-child(1) { transition-delay: 0ms; }
.reveal-stagger.in > *:nth-child(2) { transition-delay: 80ms; }
.reveal-stagger.in > *:nth-child(3) { transition-delay: 160ms; }
.reveal-stagger.in > *:nth-child(4) { transition-delay: 240ms; }
.reveal-stagger.in > *:nth-child(5) { transition-delay: 320ms; }
.reveal-stagger.in > *:nth-child(6) { transition-delay: 400ms; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .reveal, .reveal-stagger > * { opacity: 1; transform: none; }
}

/* ============================================================
   Subpage / Services tree
   ============================================================ */
.services-tree {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(56px, 6vw, 96px);
}
.service-category {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 64px);
  position: relative;
  padding: clamp(28px, 3vw, 48px) 0 0;
}
@media (min-width: 900px) { .service-category { grid-template-columns: 1fr 1.4fr; } }
.service-category .head { position: relative; }
.service-category .cat-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 32px;
  background: var(--teal-900) var(--cat-photo, none) center / cover no-repeat;
  box-shadow: 0 30px 60px -30px rgba(11,31,30,0.35);
}
.service-category .cat-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,30,0.05) 0%, rgba(11,31,30,0.55) 100%);
}
.service-category .cat-media .cat-tag {
  position: absolute;
  left: 18px; bottom: 18px;
  z-index: 1;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--cream);
  padding: 8px 12px;
  background: rgba(11,31,30,0.55);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(244,239,230,0.2);
}
.service-category .big-num {
  position: absolute;
  top: -28px; right: 0;
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(140px, 16vw, 220px);
  line-height: 1;
  color: var(--gold);
  opacity: 0.08;
  letter-spacing: -0.05em;
  pointer-events: none;
  z-index: 0;
}
.service-category .head > * { position: relative; z-index: 1; }
.service-category .highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 26px;
}
.service-category .highlights .chip {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--teal-900);
  padding: 7px 12px;
  border: 1px solid var(--rule);
  border-radius: 999px;
  background: rgba(244,239,230,0.4);
}
.service-category .highlights .chip.is-gold {
  color: var(--gold);
  border-color: rgba(184,148,86,0.4);
  background: rgba(184,148,86,0.06);
}
.service-category[data-tone="cosmetic"] {
  background: linear-gradient(180deg, transparent 0%, rgba(184,148,86,0.04) 100%);
  padding: clamp(40px, 5vw, 72px) clamp(20px, 3vw, 40px);
  border-radius: 8px;
  margin: 12px 0;
}

.service-category .head .num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-bottom: 16px;
}
.service-category h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 0.98;
  letter-spacing: -0.035em;
  margin-bottom: 24px;
  text-wrap: balance;
}
.service-category .summary {
  font-size: 16px;
  line-height: 1.55;
  color: rgba(11, 31, 30, 0.72);
  margin-bottom: 32px;
  max-width: 42ch;
}
.sub-list {
  display: grid;
  grid-template-columns: 1fr;
  border-top: 1px solid var(--rule);
}
@media (min-width: 600px) { .sub-list { grid-template-columns: 1fr 1fr; } }
.sub-list a.sub-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-bottom: 1px solid var(--rule);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.4vw, 20px);
  font-weight: 400;
  letter-spacing: -0.005em;
  gap: 16px;
  transition: all 0.4s var(--ease);
}
.sub-list a.sub-item:nth-child(odd) { padding-right: 20px; }
.sub-list a.sub-item:nth-child(even) { padding-left: 20px; }
@media (max-width: 599px) {
  .sub-list a.sub-item:nth-child(odd), .sub-list a.sub-item:nth-child(even) { padding-left: 0; padding-right: 0; }
}
.sub-list a.sub-item:hover { color: var(--gold); padding-left: 12px; }
@media (min-width: 600px) {
  .sub-list a.sub-item:nth-child(even):hover { padding-left: 32px; }
}
.sub-list a.sub-item .arr { font-family: var(--font-mono); font-size: 12px; opacity: 0.4; transition: opacity 0.3s var(--ease); }
.sub-list a.sub-item:hover .arr { opacity: 1; }
.sub-list a.sub-item .sub-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--gold);
  margin-right: 16px;
}

/* ============================================================
   Services typographic index — three-column table of contents
   ============================================================ */
.svc-header { margin-bottom: clamp(40px, 5vw, 72px); max-width: 720px; }
.svc-header-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.svc-header-title {
  font-family: var(--font-display);
  font-weight: 280;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.svc-header-title em { font-style: italic; font-weight: 300; color: var(--gold); }

.svc-index {
  display: grid;
  grid-template-columns: 1fr;
  counter-reset: svc;
  gap: clamp(18px, 1.6vw, 24px);
}
@media (min-width: 820px) {
  .svc-index { grid-template-columns: repeat(3, 1fr); }
}
.svc-col {
  --c-bg: var(--teal-900);
  --c-fg: var(--cream);
  --c-fg-soft: rgba(251,245,235,0.65);
  --c-rule: rgba(251,245,235,0.14);
  --c-accent: var(--gold);
  --c-chip: rgba(251,245,235,0.10);
  --c-chip-hover: rgba(251,245,235,0.18);
  --c-num: rgba(251,245,235,0.45);
  position: relative;
  display: flex;
  flex-direction: column;
  isolation: isolate;
  overflow: hidden;
  background: var(--c-bg);
  color: var(--c-fg);
  border-radius: 28px;
  padding: clamp(28px, 2.6vw, 40px) clamp(24px, 2.2vw, 36px) clamp(24px, 2.2vw, 32px);
  box-shadow: 0 30px 80px -36px rgba(11,31,30,0.45), 0 2px 0 rgba(255,255,255,0.04) inset;
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.svc-col:hover {
  transform: translateY(-6px);
  box-shadow: 0 50px 110px -40px rgba(11,31,30,0.55), 0 2px 0 rgba(255,255,255,0.06) inset;
}
/* All variants now share the deep teal base */
.svc-col--gold,
.svc-col--sage { /* inherits default teal */ }
/* Decorative grain + glyph */
.svc-col::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 22px 22px;
  opacity: 0.7;
  pointer-events: none;
  z-index: 0;
}
.svc-col--gold::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(19,63,61,0.08) 1px, transparent 1px);
}
.svc-col > * { position: relative; z-index: 1; }

.svc-col-head {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 14px;
  row-gap: 0;
  align-items: center;
  margin-bottom: 22px;
}
.svc-col-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--c-accent);
  font-size: 0;
  box-shadow: 0 0 0 6px color-mix(in oklab, var(--c-accent) 18%, transparent);
}
.svc-col-rule {
  height: 1px;
  background: linear-gradient(90deg, var(--c-rule) 0%, transparent 100%);
}
.svc-col-title {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-weight: 320;
  font-size: clamp(34px, 3vw, 46px);
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin: 18px 0 12px;
  color: var(--c-fg);
}
.svc-col-title em {
  font-style: italic;
  font-weight: 320;
  color: var(--c-accent);
  display: block;
}
.svc-col-blurb {
  grid-column: 1 / -1;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 320;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.45;
  color: var(--c-fg-soft);
  margin: 0;
  text-wrap: pretty;
  max-width: 34ch;
}

/* Service list — bulleted list rows */
.svc-toc {
  list-style: none;
  margin: auto 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 4px;
  column-gap: 20px;
}
.svc-toc--two-col { grid-template-columns: 1fr; }
@media (min-width: 520px) {
  .svc-toc--two-col { grid-template-columns: 1fr 1fr; }
}
.svc-toc li { margin: 0; display: flex; }
.svc-toc a {
  flex: 1;
  display: grid;
  grid-template-columns: 14px 1fr 14px;
  align-items: center;
  column-gap: 14px;
  padding: 12px 4px;
  border-radius: 0;
  background: transparent;
  text-decoration: none;
  color: var(--c-fg);
  font-family: var(--font-sans, var(--font-display));
  font-weight: 450;
  font-size: clamp(13.5px, 1vw, 15.5px);
  letter-spacing: -0.005em;
  line-height: 1.3;
  border-bottom: 1px solid var(--c-rule);
  transition: color 0.3s var(--ease);
}
.svc-toc a:hover { color: var(--c-accent); }
/* Bullet (the bubble) */
.svc-toc-n {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--c-accent);
  font-size: 0;
  color: transparent;
  box-shadow: 0 0 0 4px color-mix(in oklab, var(--c-accent) 22%, transparent);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.svc-toc a:hover .svc-toc-n {
  transform: scale(1.15);
  box-shadow: 0 0 0 6px color-mix(in oklab, var(--c-accent) 28%, transparent);
}
.svc-toc-name {
  display: inline-block;
  text-wrap: balance;
}
.svc-toc-dots { display: none; }
.svc-toc a::after {
  content: '→';
  font-family: var(--font-mono);
  font-size: 14px;
  color: var(--c-accent);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
  text-align: right;
}
.svc-toc a:hover::after { opacity: 1; transform: translateX(0); }

.svc-col-cta {
  margin-top: auto;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  padding: 18px 22px;
  border-radius: 999px;
  background: var(--cream);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.svc-col-cta:hover { transform: translateY(-2px); background: var(--cream-light); }
.svc-col-cta .arrow { font-size: 14px; color: var(--ink); }

/* ============================================================
   Services showcase — LEGACY (hidden)
   ============================================================ */
.svc-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) {
  .svc-showcase { grid-template-columns: minmax(260px, 320px) minmax(0, 1fr); gap: clamp(32px, 4vw, 64px); align-items: start; }
}
.svc-tabs {
  display: grid;
  gap: 8px;
  position: sticky;
  top: 96px;
  align-self: start;
}
@media (max-width: 899px) {
  .svc-tabs { position: static; grid-template-columns: 1fr 1fr 1fr; gap: 6px; }
}
.svc-tab {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid rgba(11,31,30,0.12);
  border-radius: var(--r-md);
  padding: clamp(18px, 1.8vw, 26px) clamp(18px, 1.8vw, 24px);
  text-align: left;
  cursor: pointer;
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 16px;
  row-gap: 6px;
  align-items: start;
  color: var(--ink);
  font-family: inherit;
  transition: all 0.4s var(--ease);
  position: relative;
}
.svc-tab:hover { border-color: var(--gold); background: rgba(184,148,86,0.05); }
.svc-tab.is-active {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--cream);
}
.svc-tab.is-active::before {
  content: '';
  position: absolute;
  left: -1px; top: 16px; bottom: 16px;
  width: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.svc-tab-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  opacity: 0.55;
  margin-top: 4px;
}
.svc-tab.is-active .svc-tab-num { color: var(--gold); opacity: 1; }
.svc-tab-label {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.7vw, 26px);
  font-weight: 350;
  letter-spacing: -0.015em;
  line-height: 1.1;
  grid-column: 2;
}
.svc-tab-label em { font-style: italic; font-weight: 300; opacity: 0.7; }
.svc-tab.is-active .svc-tab-label em { color: var(--gold); opacity: 1; }
.svc-tab-count {
  grid-column: 2;
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.55;
  margin-top: 4px;
}
@media (max-width: 899px) {
  .svc-tab { grid-template-columns: 1fr; padding: 14px 12px; gap: 4px; }
  .svc-tab-label { grid-column: 1; font-size: 16px; }
  .svc-tab-label br { display: none; }
  .svc-tab-label em { margin-left: 4px; }
  .svc-tab-count { grid-column: 1; font-size: 9px; }
  .svc-tab-num { grid-column: 1; margin-top: 0; }
  .svc-tab.is-active::before { display: none; }
}

.svc-panels { position: relative; }
.svc-panel {
  display: none;
  flex-direction: column;
  gap: 0;
  border: 1px solid rgba(11,31,30,0.1);
  border-radius: var(--r-lg);
  overflow: hidden;
  background: var(--cream);
  animation: svcFade 0.5s var(--ease);
}
.svc-panel.is-active { display: flex; }
@keyframes svcFade {
  from { opacity: 0; transform: translateY(8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.svc-panel-image {
  height: clamp(220px, 32vw, 360px);
  background-color: var(--teal-900);
  background-size: cover;
  background-position: 50% 40%;
  position: relative;
}
.svc-panel-image::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,30,0.1) 0%, rgba(11,31,30,0.5) 100%);
}
.svc-panel-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(32px, 3.5vw, 56px);
}
.svc-panel-tag {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 12px;
}
.svc-panel-tag::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--gold);
}
.svc-panel-title {
  font-family: var(--font-display);
  font-weight: 280;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  letter-spacing: -0.03em;
  margin: 0;
  text-wrap: balance;
}
.svc-panel-title em { font-style: italic; font-weight: 300; color: var(--gold); }
.svc-panel-summary {
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  max-width: 56ch;
  color: rgba(11,31,30,0.78);
  text-wrap: pretty;
  margin: 0 0 8px;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0;
  border-top: 1px solid rgba(11,31,30,0.1);
  border-left: 1px solid rgba(11,31,30,0.1);
  margin: 8px 0 12px;
}
.svc-chip {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border-right: 1px solid rgba(11,31,30,0.1);
  border-bottom: 1px solid rgba(11,31,30,0.1);
  font-family: var(--font-display);
  font-weight: 350;
  font-size: clamp(15px, 1.15vw, 18px);
  letter-spacing: -0.005em;
  color: var(--ink);
  text-decoration: none;
  background: transparent;
  transition: all 0.3s var(--ease);
  position: relative;
}
.svc-chip-num {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--gold);
  opacity: 0.6;
  flex: 0 0 auto;
}
.svc-chip:hover {
  background: var(--ink);
  color: var(--cream);
}
.svc-chip:hover .svc-chip-num { color: var(--gold); opacity: 1; }
.svc-chip::after {
  content: '→';
  position: absolute;
  right: 16px;
  font-family: var(--font-mono);
  font-size: 13px;
  opacity: 0;
  transform: translateX(-6px);
  transition: all 0.3s var(--ease);
}
.svc-chip:hover::after { opacity: 1; transform: translateX(0); }
.svc-chip:hover > span:not(.svc-chip-num) { padding-right: 16px; }

/* tone tinting on the active panel image */
[data-tone="cosmetic"] .svc-panel-image::after {
  background: linear-gradient(180deg, rgba(184,148,86,0.1) 0%, rgba(11,31,30,0.55) 100%);
}
[data-tone="restorative"] .svc-panel-image::after {
  background: linear-gradient(180deg, rgba(44,99,86,0.1) 0%, rgba(11,31,30,0.55) 100%);
}

/* ============================================================
   Service spreads — LEGACY (hidden)
   ============================================================ */
.service-spreads { display: block; }
.spread {
  position: relative;
  overflow: hidden;
  padding: clamp(72px, 9vw, 140px) var(--pad-side);
}
.spread + .spread { border-top: 1px solid rgba(11,31,30,0.08); }
.spread-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 3vw, 48px);
  position: relative;
  z-index: 2;
}
@media (min-width: 820px) {
  .spread-inner {
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    grid-template-areas:
      "meta media"
      "body media"
      "services services";
    column-gap: clamp(48px, 6vw, 96px);
    row-gap: clamp(36px, 3.5vw, 56px);
    align-items: start;
  }
  .spread-meta { grid-area: meta; }
  .spread-body { grid-area: body; }
  .spread-media { grid-area: media; }
  .spread-services { grid-area: services; }
  .spread--reverse .spread-inner {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.05fr);
    grid-template-areas:
      "media meta"
      "media body"
      "services services";
  }
}
.spread-meta {
  display: flex; align-items: center; gap: 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.spread-meta .spread-index { font-size: 13px; font-weight: 500; }
.spread-meta .spread-rule { flex: 0 0 48px; height: 1px; background: currentColor; opacity: 0.35; }
.spread-meta .spread-cat { opacity: 0.7; }
.spread-title {
  font-family: var(--font-display);
  font-weight: 250;
  font-size: clamp(44px, 5.5vw, 80px);
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin: 0 0 24px;
  text-wrap: balance;
}
.spread-title em {
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
}
.spread-summary {
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  max-width: 48ch;
  margin: 0 0 32px;
  text-wrap: pretty;
}
.spread-cta { align-self: flex-start; }
.spread-media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 5;
  background: var(--photo, var(--teal-900)) center / cover no-repeat;
  border-radius: var(--r-md);
  overflow: hidden;
  box-shadow: 0 40px 80px -40px rgba(11,31,30,0.45);
}
.spread-media::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(11,31,30,0) 50%, rgba(11,31,30,0.35) 100%);
}

/* Service chip list */
.spread-services {
  list-style: none;
  margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1px;
  background: currentColor;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  position: relative;
  isolation: isolate;
}
.spread-services li {
  background: var(--spread-bg, var(--paper));
  position: relative;
}
.spread-services a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 6px;
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(17px, 1.4vw, 21px);
  letter-spacing: -0.01em;
  color: inherit;
  text-decoration: none;
  transition: transform 0.4s var(--ease), color 0.3s var(--ease);
}
.spread-services a .dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--gold);
  flex: 0 0 5px;
  transition: transform 0.4s var(--ease), background 0.3s var(--ease);
}
.spread-services a:hover {
  color: var(--gold);
  transform: translateX(6px);
}
.spread-services a:hover .dot { transform: scale(2.2); }

/* === Dark variant === */
.spread--dark {
  background: var(--teal-900);
  color: var(--cream);
  --spread-bg: var(--teal-900);
}
.spread--dark .spread-bg {
  position: absolute; inset: 0;
  background: var(--photo, none) 50% 35% / cover no-repeat;
  opacity: 0.18;
  z-index: 0;
  filter: saturate(0.85) contrast(1.05);
}
.spread--dark .spread-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 60% at 20% 30%, rgba(11,31,30,0.5), transparent 70%),
    linear-gradient(180deg, rgba(11,31,30,0.55), rgba(11,31,30,0.85));
}
.spread--dark .spread-meta { color: rgba(244,239,230,0.7); }
.spread--dark .spread-summary { color: rgba(244,239,230,0.78); }
.spread--dark .spread-services { color: rgba(244,239,230,0.18); }
.spread--dark .spread-services a { color: var(--cream); }

/* === Light variant === */
.spread--light {
  background: var(--paper);
  color: var(--ink);
  --spread-bg: var(--paper);
}
.spread--light .spread-services { color: rgba(11,31,30,0.12); }

/* === Cream variant === */
.spread--cream {
  background: var(--cream);
  color: var(--ink);
  --spread-bg: var(--cream);
}
.spread--cream .spread-services { color: rgba(11,31,30,0.12); }

@media (max-width: 819px) {
  .spread-media { aspect-ratio: 16/10; margin-bottom: 8px; }
  .spread-services { grid-template-columns: 1fr 1fr; }
  .spread { padding: clamp(56px, 8vw, 96px) var(--pad-side); }
  .spread-title { font-size: clamp(40px, 8vw, 64px); }
}
@media (max-width: 520px) {
  .spread-services { grid-template-columns: 1fr; }
}

.sub-list a.sub-item .sub-num {
  letter-spacing: 0.2em;
  opacity: 0.4;
  margin-right: 16px;
}

/* ============================================================
   MOBILE — comprehensive
   ============================================================ */
:root { --pad-side: clamp(20px, 5vw, 80px); }
.wrap { width: 100%; max-width: 1320px; margin: 0 auto; padding-left: var(--pad-side); padding-right: var(--pad-side); box-sizing: border-box; }
img, svg, video { max-width: 100%; }
html, body { overflow-x: hidden; }

@media (max-width: 900px) {
  :root { --pad-side: 20px; }
  .section { padding-top: 40px; padding-bottom: 40px; }
  .h1 { font-size: clamp(34px, 9vw, 54px); line-height: 1.05; }
  .h2 { font-size: clamp(26px, 6vw, 38px); line-height: 1.12; }
  .lede { font-size: 16px; }
  .eyebrow { font-size: 11px; }
  .btn { padding: 14px 22px; font-size: 14.5px; min-height: 48px; box-sizing: border-box; }
  .btn--gold, .btn--ghost { width: auto; }
  .cta-row { flex-wrap: wrap; gap: 12px; }
  .cta-row .btn { flex: 1 1 auto; min-width: 0; justify-content: center; }
}

@media (max-width: 640px) {
  .site-header { padding: 14px 20px; }
  .header-cta { gap: 8px; }
  .header-cta .btn { padding: 10px 14px; font-size: 13px; min-height: 40px; }
  .brand-name { font-size: 17px; }
  .brand-tag { font-size: 8.5px; letter-spacing: 0.16em; }

  .hero { min-height: auto; padding: 100px 0 56px; }
  .hero-inner { gap: 28px; }
  .hero-portrait { display: none !important; }
  .hero .hero-title { font-size: clamp(38px, 11vw, 56px); }
  .hero .lede { font-size: 16px; }
  .stat-strip { grid-template-columns: repeat(2, 1fr) !important; gap: 20px 16px; }
  .stat-strip .stat-num { font-size: clamp(28px, 9vw, 40px); }
  .scroll-hint { display: none !important; }

  .section-head { grid-template-columns: 1fr !important; gap: 16px !important; }
  .section { padding-top: 36px; padding-bottom: 36px; }
  .values-strip { grid-template-columns: 1fr !important; gap: 0; }
  .value-cell { border-right: none !important; border-bottom: 1px solid var(--rule); padding: 40px 0; gap: 12px; }
  .value-cell:last-child { border-bottom: none; }
  .value-cell .num { font-size: clamp(48px, 13vw, 72px); }
  .value-cell .lbl { margin-top: 0; font-size: 12px; letter-spacing: 0.2em; }

  .services-grid, .testimonials-grid, .team-grid, .gallery-track,
  .membership-grid, .contact-grid, .reviews-editorial, .reviews-side,
  .about-grid, .service-category, .footer-inner, .page-hero-inner,
  .promo-inner, .sub-list, .partner-logos {
    grid-template-columns: 1fr !important;
  }
  .partner-logos { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }

  .service-card { padding: 28px 22px; }
  .review-feature { padding: 36px 24px; }
  .review-feature-quote { font-size: 20px; }
  .review-glyph { font-size: 84px; }
  .review-feature-foot { flex-direction: column; align-items: flex-start; gap: 16px; }
  .review-mini { padding: 22px 20px; }
  .google-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .google-row .stars-big { font-size: 40px; }

  .faq-item summary { padding: 16px 20px; font-size: 16px; gap: 14px; }
  .faq-item .plus { width: 32px; height: 32px; flex-basis: 32px; }
  .faq-item .answer { margin: 0 20px 18px; font-size: 15px; }

  .promo .promo-tag { font-size: 11px; }
  .promo h3 { font-size: 22px; }

  .contact-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr !important; }
  input, select, textarea { font-size: 16px !important; min-height: 48px; }
  label { font-size: 13px; }

  footer.site-footer { padding: 56px 0 32px; }
  .footer-inner { gap: 36px; }
  .footer-brand h3 { font-size: clamp(28px, 8vw, 40px); }
  .footer-col h5 { margin-bottom: 14px; }

  .page-hero { padding: 110px 0 48px; }
  .page-hero h1 { font-size: clamp(40px, 11vw, 60px); }

  .team-member { text-align: left; }
  .placeholder { aspect-ratio: 4/3; }
  .placeholder--portrait { aspect-ratio: 3/4; max-width: 340px; }
}

/* Mobile drawer nav */
@media (max-width: 1023px) {
  /* Backdrop: sits behind the drawer, in front of page content */
  .nav-backdrop {
    position: fixed; inset: 0;
    background: rgba(7,22,22,0.60);
    backdrop-filter: blur(3px);
    z-index: 150;                       /* behind drawer (160), in front of page */
    opacity: 0; pointer-events: none;
    transition: opacity 0.3s var(--ease);
  }
  .nav-backdrop.show { opacity: 1; pointer-events: auto; }

  /* Drawer: slides in from right, above backdrop */
  .nav.open {
    display: flex !important;
    position: fixed;
    inset: 0 0 0 auto;
    width: min(88vw, 340px);
    background: var(--teal-900);
    color: var(--cream);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 80px 0 0;
    z-index: 160;                       /* above backdrop */
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    box-shadow: -24px 0 60px rgba(0,0,0,0.45);
    animation: drawerIn 0.28s cubic-bezier(.2,.8,.2,1) both;
  }

  /* Top brand strip inside the drawer */
  .nav.open::before {
    content: 'Minty Smiles';
    display: block;
    position: absolute;
    top: 0; left: 0; right: 0;
    padding: 22px 24px 18px;
    font-family: var(--font-display);
    font-size: 15px; font-weight: 600;
    letter-spacing: 0.04em;
    color: var(--cream);
    border-bottom: 1px solid rgba(244,239,230,0.1);
    pointer-events: none;
  }

  /* Primary nav links */
  /* All links in the open drawer: full opacity (overrides global .nav a { opacity: 0.78 }) */
  .nav.open a { opacity: 1; }

  .nav.open > a,
  .nav.open > .nav-group > a:first-child {
    font-family: var(--font-display);
    font-size: 18px;
    font-weight: 500;
    padding: 15px 24px;
    border-bottom: 1px solid rgba(244,239,230,0.08);
    color: rgba(251,245,235,0.92);
    display: flex; align-items: center; justify-content: space-between;
    min-height: 52px;
  }
  .nav.open > a:hover,
  .nav.open > .nav-group > a:first-child:hover { color: var(--cream); background: rgba(255,255,255,0.04); }
  .nav.open a[aria-current="page"] { color: var(--gold) !important; }

  /* Close button (X) — kept on top of drawer */
  .menu-btn.open {
    position: fixed; right: 16px; top: 16px;
    z-index: 170;
    color: var(--cream);
    border-color: rgba(244,239,230,0.3);
    background: rgba(19,75,73,0.9);
  }
  .menu-btn .bars span { transition: transform 0.28s var(--ease), opacity 0.18s; }
  .menu-btn.open .bars span:nth-child(1) { transform: translateY(5px) rotate(45deg); }
  .menu-btn.open .bars span:nth-child(2) { opacity: 0; }
  .menu-btn.open .bars span:nth-child(3) { transform: translateY(-5px) rotate(-45deg); }

  body.nav-locked { overflow: hidden; }
}
@keyframes drawerIn {
  from { transform: translateX(100%); opacity: 0.6; }
  to   { transform: translateX(0);    opacity: 1; }
}

/* Service detail pages
   ============================================================ */
.sd-hero {
  background: var(--ink);
  color: var(--cream);
  padding: clamp(96px, 12vw, 160px) var(--pad-side) clamp(56px, 7vw, 96px);
  position: relative;
  overflow: hidden;
}
.sd-hero::after {
  content: attr(data-glyph);
  position: absolute;
  right: -2vw; bottom: -8vw;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(280px, 38vw, 560px);
  line-height: 0.8;
  color: rgba(244,239,230,0.05);
  pointer-events: none;
}
.sd-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; z-index: 1; }
.sd-hero .breadcrumb { color: rgba(244,239,230,0.65); margin-bottom: 32px; }
.sd-hero .breadcrumb a { color: rgba(244,239,230,0.85); }
.sd-hero .sd-cat-tag {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 28px;
}
.sd-hero .sd-cat-tag::before { content: ""; width: 28px; height: 1px; background: var(--gold); }
.sd-hero h1 {
  font-family: var(--font-display); font-weight: 350;
  font-size: clamp(48px, 7vw, 96px); line-height: 0.98;
  letter-spacing: -0.02em; margin: 0 0 32px; text-wrap: balance;
}
.sd-hero h1 em { font-style: italic; color: var(--gold); font-weight: 350; }
.sd-hero .sd-lede {
  font-family: var(--font-display); font-weight: 350;
  font-size: clamp(20px, 1.8vw, 26px); line-height: 1.4;
  max-width: 720px; color: rgba(244,239,230,0.85); text-wrap: pretty;
}

.sd-overview { padding: clamp(64px, 7vw, 112px) var(--pad-side); }
.sd-overview-inner {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; gap: clamp(32px, 4vw, 64px);
  grid-template-columns: 1fr;
}
@media (min-width: 900px) { .sd-overview-inner { grid-template-columns: 1fr 1.4fr; } }
.sd-overview h2 {
  font-family: var(--font-display); font-weight: 350;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.02;
  letter-spacing: -0.02em; margin: 0; color: var(--ink);
}
.sd-overview h2 em { font-style: italic; color: var(--gold); font-weight: 350; }
.sd-overview .sd-body {
  font-family: var(--font-sans); font-size: 18px; line-height: 1.65;
  color: var(--ink); text-wrap: pretty;
}
.sd-overview .sd-body p + p { margin-top: 16px; }
.sd-overview .sd-meta {
  margin-top: 32px; padding-top: 24px;
  border-top: 1px solid rgba(19,63,61,0.12);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px 32px;
}
.sd-overview .sd-meta-item .lbl {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(19,63,61,0.55); display: block; margin-bottom: 6px;
}
.sd-overview .sd-meta-item .val {
  font-family: var(--font-sans); font-size: 15px; color: var(--ink); font-weight: 500;
}

.sd-section { padding: clamp(64px, 7vw, 112px) var(--pad-side); }
.sd-section .wrap { max-width: var(--max-w); margin: 0 auto; }
.sd-section-head {
  display: grid; grid-template-columns: 1fr; gap: 24px;
  align-items: end; margin-bottom: 56px;
}
@media (min-width: 900px) { .sd-section-head { grid-template-columns: 1fr 1fr; gap: 64px; } }
.sd-section-head .eyebrow-row {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px;
}
.sd-section-head .eyebrow-row::before {
  content: ""; width: 32px; height: 1px; background: var(--gold);
}
.sd-section-head .eyebrow {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink);
}
.sd-section-head h2 {
  font-family: var(--font-display); font-weight: 350;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.02;
  letter-spacing: -0.02em; margin: 0; color: var(--ink);
}
.sd-section-head h2 em { font-style: italic; color: var(--gold); font-weight: 350; }
.sd-section-head p {
  font-family: var(--font-sans); font-size: 17px;
  line-height: 1.6; color: var(--ink); margin: 0;
}

.sd-steps {
  display: grid; gap: 1px; background: rgba(19,63,61,0.12);
  border: 1px solid rgba(19,63,61,0.12);
  border-radius: var(--r-lg); overflow: hidden;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .sd-steps { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .sd-steps { grid-template-columns: repeat(4, 1fr); } }
.sd-step { background: var(--cream-light); padding: 32px 28px; display: flex; flex-direction: column; gap: 14px; }
.sd-step .n {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.sd-step h3 {
  font-family: var(--font-display); font-weight: 350;
  font-size: 24px; line-height: 1.15; letter-spacing: -0.01em;
  margin: 0; color: var(--ink); text-wrap: balance;
}
.sd-step p {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.55;
  color: rgba(19,63,61,0.78); margin: 0;
}

.sd-benefits-grid {
  display: grid; gap: 16px; grid-template-columns: 1fr;
}
@media (min-width: 700px) { .sd-benefits-grid { grid-template-columns: 1fr 1fr; gap: 16px 32px; } }
.sd-benefit {
  display: grid; grid-template-columns: 32px 1fr; gap: 20px;
  padding: 20px 0; border-top: 1px solid rgba(19,63,61,0.12);
}
.sd-benefit .check {
  width: 32px; height: 32px; border-radius: 999px;
  background: var(--gold); color: var(--ink);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-weight: 600; font-size: 14px;
}
.sd-benefit h4 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 20px; line-height: 1.2; margin: 4px 0 6px; color: var(--ink);
}
.sd-benefit p {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.55;
  color: rgba(19,63,61,0.78); margin: 0;
}

.sd-faq { display: flex; flex-direction: column; }
.sd-faq details {
  border-top: 1px solid rgba(19,63,61,0.18);
  padding: 24px 0;
}
.sd-faq details:last-of-type { border-bottom: 1px solid rgba(19,63,61,0.18); }
.sd-faq summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 24px; font-family: var(--font-display); font-weight: 400;
  font-size: clamp(20px, 2vw, 26px); line-height: 1.25;
  letter-spacing: -0.01em; color: var(--ink);
}
.sd-faq summary::-webkit-details-marker { display: none; }
.sd-faq summary::after {
  content: "+"; font-family: var(--font-display); font-weight: 300;
  font-size: 28px; color: var(--gold); line-height: 1;
  transition: transform 0.25s ease;
}
.sd-faq details[open] summary::after { content: "−"; }
.sd-faq details > div {
  margin-top: 16px; max-width: 760px;
  font-family: var(--font-sans); font-size: 16px; line-height: 1.6;
  color: rgba(19,63,61,0.78); text-wrap: pretty;
}

.sd-related-grid {
  display: grid; gap: 16px; grid-template-columns: 1fr;
}
@media (min-width: 700px) { .sd-related-grid { grid-template-columns: repeat(3, 1fr); } }
.sd-related-card {
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 32px; padding: 28px; min-height: 200px;
  background: var(--cream-light); border-radius: var(--r-md);
  border: 1px solid rgba(19,63,61,0.10);
  text-decoration: none; color: var(--ink);
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.sd-related-card:hover {
  transform: translateY(-3px);
  border-color: var(--gold); background: var(--cream);
}
.sd-related-card .cat {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold);
}
.sd-related-card h3 {
  font-family: var(--font-display); font-weight: 350;
  font-size: 26px; line-height: 1.1; letter-spacing: -0.01em;
  margin: 12px 0 0; color: var(--ink);
}
.sd-related-card .go {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink);
}
.sd-related-card .go .arrow { transition: transform 0.25s ease; }
.sd-related-card:hover .go .arrow { transform: translateX(6px); }

/* Utility
   ============================================================ */
.bg-cream { background: var(--cream); }
.bg-paper { background: var(--paper); }
.text-center { text-align: center; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.mt-l { margin-top: clamp(40px, 4vw, 64px); }

/* ============================================================
   Header dropdown / megamenu
   ============================================================ */
/* Always hidden — only shown inside mobile drawer via .nav.open .nav-drawer-cta */
.nav-drawer-cta { display: none; }

.nav-group { position: relative; display: inline-flex; align-items: center; }
.nav-group > a { display: inline-flex; align-items: center; gap: 6px; }
.nav-group .nav-caret {
  width: 8px; height: 8px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
  opacity: 0.7;
  transition: transform 0.25s var(--ease), opacity 0.25s var(--ease);
  flex: 0 0 auto;
}
.nav-group:hover .nav-caret,
.nav-group:focus-within .nav-caret { opacity: 1; }

/* Desktop dropdown panel */
@media (min-width: 1024px) {
  .nav-panel {
    display: block;
    position: absolute;
    top: calc(100% + 18px);
    background: var(--paper);
    color: var(--ink);
    border: 1px solid var(--rule);
    border-radius: 6px;
    box-shadow: 0 30px 80px -30px rgba(11, 31, 30, 0.35), 0 8px 24px -12px rgba(11, 31, 30, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
    z-index: 70;
    padding: 32px;
  }
  /* hover-bridge: keeps panel open while moving from link to panel */
  .nav-group::after {
    content: '';
    position: absolute;
    left: 0; right: 0; top: 100%;
    height: 18px;
    pointer-events: none;
  }
  .nav-group:hover::after,
  .nav-group:focus-within::after { pointer-events: auto; }

  .nav-group:hover .nav-panel,
  .nav-group:focus-within .nav-panel,
  .nav-group.is-open .nav-panel {
    opacity: 1; visibility: visible; transform: translateY(0); pointer-events: auto;
  }
  .nav-group:hover .nav-caret,
  .nav-group:focus-within .nav-caret { transform: translateY(0) rotate(225deg); }

  /* Services megamenu — 3 columns */
  .nav-panel--mega {
    left: 50%;
    transform: translate(-50%, -6px);
    width: min(960px, calc(100vw - 80px));
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
  }
  .nav-group:hover .nav-panel--mega,
  .nav-group:focus-within .nav-panel--mega,
  .nav-group.is-open .nav-panel--mega { transform: translate(-50%, 0); }

  .nav-mega-col {
    padding: 4px 28px;
    border-left: 1px solid var(--rule-soft);
  }
  .nav-mega-col:first-child { border-left: none; padding-left: 4px; }
  .nav-mega-col:last-child { padding-right: 4px; }

  .nav-mega-col .col-head {
    display: flex; align-items: baseline; gap: 10px;
    padding-bottom: 14px;
    margin-bottom: 14px;
    border-bottom: 1px solid var(--rule);
  }
  .nav-mega-col .col-num {
    font-family: var(--font-mono);
    font-size: 10px; letter-spacing: 0.22em;
    color: var(--sage); text-transform: uppercase;
  }
  .nav-mega-col .col-title {
    font-family: var(--font-display);
    font-weight: 400;
    font-size: 19px; line-height: 1.1;
    letter-spacing: -0.01em;
    color: var(--teal-900);
    text-decoration: none;
    opacity: 1;
    padding: 0;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .nav-mega-col .col-title em { font-style: italic; color: var(--gold); font-weight: 400; }
  .nav-mega-col .col-title:hover { color: var(--teal); }

  .nav-mega-list { display: flex; flex-direction: column; gap: 2px; }
  .nav-mega-list a {
    display: flex; align-items: center; justify-content: space-between; gap: 10px;
    padding: 9px 10px;
    margin: 0 -10px;
    font-family: var(--font-sans, inherit);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0;
    color: var(--ink);
    opacity: 0.78;
    border-radius: 4px;
    transition: background 0.18s var(--ease), opacity 0.18s var(--ease), color 0.18s var(--ease);
  }
  .nav-mega-list a::after { display: none; }
  .nav-mega-list a .arr {
    font-family: var(--font-mono);
    font-size: 13px; opacity: 0; transform: translateX(-4px);
    transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
    color: var(--gold);
  }
  .nav-mega-list a:hover {
    background: var(--cream);
    color: var(--teal-900);
    opacity: 1;
  }
  .nav-mega-list a:hover .arr { opacity: 1; transform: translateX(0); }

  /* About single-column dropdown */
  .nav-panel--single {
    left: 50%;
    transform: translate(-50%, -6px);
    min-width: 260px;
    padding: 14px;
  }
  .nav-group:hover .nav-panel--single,
  .nav-group:focus-within .nav-panel--single,
  .nav-group.is-open .nav-panel--single { transform: translate(-50%, 0); }
  .nav-panel--single .nav-mega-list a {
    padding: 11px 14px;
    margin: 0;
    font-size: 15px;
  }
}

/* Mobile drawer dropdowns — accordion toggle */
@media (max-width: 1023px) {
  /* Show caret so users know the item is expandable */
  .nav-caret {
    display: inline-block !important;
    width: 8px; height: 8px;
    border-right: 1.5px solid rgba(244,239,230,0.7);
    border-bottom: 1.5px solid rgba(244,239,230,0.7);
    transform: translateY(-2px) rotate(45deg);
    transition: transform 0.25s var(--ease);
    flex: 0 0 auto;
    margin-left: 6px;
  }
  .nav-group.is-open .nav-caret { transform: translateY(2px) rotate(225deg); }

  /* Nav group layout in the open drawer */
  .nav.open .nav-group {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    border-bottom: 1px solid rgba(244,239,230,0.08);
  }
  .nav.open .nav-group > a:first-child {
    border-bottom: none;
  }
  /* Chevron rotates when accordion is open */
  .nav-group.is-open > a > .nav-caret { transform: rotate(180deg); }

  /* Panel hidden by default on mobile; shown when group is tapped */
  .nav-panel {
    display: none;
    background: rgba(0,0,0,0.15);
    border: none;
    box-shadow: none;
    padding: 8px 0 16px;
  }
  .nav-group.is-open .nav-panel { display: block; }
  .nav-group.is-open .nav-panel--mega { display: flex; flex-direction: column; gap: 0; }

  /* Section headers inside accordion (General, Cosmetic, Restorative) */
  .nav.open .nav-mega-col { padding: 0; border: none; }
  .nav.open .nav-mega-col .col-head {
    padding: 12px 24px 8px;
    border-bottom: none;
    flex-wrap: wrap;
  }
  .nav.open .nav-mega-col .col-num {
    color: var(--gold); opacity: 0.7; font-size: 10px;
  }
  .nav.open .nav-mega-col .col-title {
    font-family: var(--font-display);
    color: rgba(251,245,235,0.5);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    border: none !important;
    padding: 0;
  }
  .nav.open .nav-mega-col .col-title em { color: inherit; font-style: normal; }

  /* Service/page links inside accordion */
  .nav.open .nav-mega-list a {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 400;
    color: rgba(251,245,235,0.78);
    padding: 11px 24px;             /* 44px tap target height */
    border: none !important;
    display: flex; align-items: center;
    min-height: 44px;
    transition: background 0.15s, color 0.15s;
  }
  .nav.open .nav-mega-list a:hover {
    color: var(--cream);
    background: rgba(255,255,255,0.05);
  }
  .nav.open .nav-mega-list a .arr { display: none; }
  .nav.open .nav-mega-list a span:first-child { flex: 1; }

  /* Drawer footer CTA strip */
  .nav-drawer-cta {
    display: none;
  }
  .nav.open .nav-drawer-cta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px 24px 28px;
    margin-top: auto;
    border-top: 1px solid rgba(244,239,230,0.12);
  }
  .nav.open .nav-drawer-cta .btn {
    width: 100%; justify-content: center;
    padding: 14px 20px; font-size: 14px;
  }
  .nav.open .nav-drawer-cta .drawer-phone {
    display: flex; align-items: center; justify-content: center;
    gap: 8px; font-size: 14px; color: rgba(251,245,235,0.65);
    padding: 4px 0; border: none !important; min-height: auto;
  }
  .nav.open .nav-drawer-cta .drawer-phone:hover { color: var(--cream); background: none; }
}

/* Megamenu backdrop scrim (desktop only) */
@media (min-width: 1024px) {
  .nav-scrim {
    position: fixed; inset: 0;
    background: rgba(11, 31, 30, 0.22);
    backdrop-filter: blur(2px);
    opacity: 0; pointer-events: none;
    transition: opacity 0.25s var(--ease);
    z-index: 40;
  }
  .nav-scrim.show { opacity: 1; }
}


/* ============================================================
   Service detail — ENHANCED (v2)
   ============================================================ */

/* Split hero — text + image */
.sd-hero--split { padding: clamp(80px, 9vw, 140px) var(--pad-side) clamp(60px, 6vw, 100px); }
.sd-hero--split::after { right: 8%; opacity: 0.06; }
.sd-hero-inner--split {
  display: grid; gap: clamp(40px, 5vw, 80px);
  grid-template-columns: 1fr;
  align-items: center;
}
@media (min-width: 960px) {
  .sd-hero-inner--split { grid-template-columns: 1.05fr 1fr; }
}
.sd-hero-text .sd-hero-actions {
  display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px;
}
.sd-hero-art {
  position: relative;
  isolation: isolate;
}
.sd-hero-art .placeholder--portrait {
  aspect-ratio: 4 / 5;
  background:
    linear-gradient(135deg, rgba(232, 155, 127, 0.16), rgba(47, 151, 148, 0.18)),
    var(--teal-800);
  border-radius: var(--r-lg);
}
.sd-hero-art .placeholder::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(244, 239, 230, 0.06) 1px, transparent 1px);
}
.sd-hero-art .ph-label {
  background: rgba(11, 31, 30, 0.65); color: var(--cream);
  backdrop-filter: blur(8px);
}
.sd-hero-floating-card {
  position: absolute;
  bottom: -28px; left: -24px;
  background: var(--cream);
  color: var(--ink);
  padding: 20px 26px;
  border-radius: var(--r-md);
  box-shadow: 0 30px 60px -20px rgba(11, 31, 30, 0.45);
  display: flex; flex-direction: column; gap: 4px;
  min-width: 180px;
  z-index: 2;
}
.sd-hero-floating-card .hf-label {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.sd-hero-floating-card .hf-value {
  font-family: var(--font-display); font-weight: 400;
  font-size: 22px; line-height: 1.1; letter-spacing: -0.01em;
}
@media (max-width: 640px) {
  .sd-hero-floating-card { left: 16px; bottom: -20px; padding: 16px 20px; }
  .sd-hero-floating-card .hf-value { font-size: 18px; }
}

/* Quick-facts ribbon */
.sd-facts-ribbon {
  background: var(--cream);
  padding: 0 var(--pad-side);
  border-bottom: 1px solid var(--rule-soft);
}
.sd-facts-ribbon .wrap {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; gap: 0;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 800px) { .sd-facts-ribbon .wrap { grid-template-columns: repeat(4, 1fr); } }
.sd-fact {
  padding: 32px 24px;
  border-right: 1px solid var(--rule-soft);
  display: flex; flex-direction: column; gap: 6px;
  align-items: flex-start;
}
.sd-fact:nth-child(2) { border-right: none; }
@media (min-width: 800px) { .sd-fact:nth-child(2) { border-right: 1px solid var(--rule-soft); } }
.sd-fact:last-child { border-right: none; }
.sd-fact .fact-num {
  font-family: var(--font-display); font-weight: 350;
  font-size: clamp(36px, 4.2vw, 56px); line-height: 0.95;
  letter-spacing: -0.02em; color: var(--ink);
}
.sd-fact .fact-num em { font-style: italic; color: var(--gold); }
.sd-fact .fact-unit {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); margin-top: -2px;
}
.sd-fact .fact-lbl {
  font-family: var(--font-mono); font-size: 11px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(19,63,61,0.55); margin-top: 4px;
}

/* Overview enhanced */
.sd-overview--enhanced { background: var(--cream-light); padding-top: clamp(80px, 8vw, 140px); }
.sd-overview--enhanced .sd-overview-inner {
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 960px) {
  .sd-overview--enhanced .sd-overview-inner { grid-template-columns: 1.2fr 1fr; }
}
.sd-overview-art { display: flex; flex-direction: column; gap: 20px; }
.sd-overview-art .placeholder--portrait { aspect-ratio: 4 / 5; }
.sd-overview-art .placeholder--landscape { aspect-ratio: 4 / 3; }
.sd-overview-art .placeholder {
  background:
    linear-gradient(135deg, rgba(47, 151, 148, 0.10), rgba(232, 155, 127, 0.08)),
    var(--cream);
  border-radius: var(--r-md);
}
.sd-callout {
  margin-top: 32px;
  background: var(--cream);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 24px 28px;
  display: flex; gap: 16px; align-items: flex-start;
  position: relative;
}
.sd-callout .callout-mark {
  font-family: var(--font-display); font-style: italic;
  color: var(--gold); font-size: 48px; line-height: 0.6;
  margin-top: 8px; flex: 0 0 auto;
}
.sd-callout p {
  font-family: var(--font-display); font-weight: 350; font-style: italic;
  font-size: clamp(17px, 1.4vw, 21px); line-height: 1.4;
  color: var(--ink); margin: 0;
}

/* Gallery */
.sd-gallery {
  padding: clamp(64px, 7vw, 112px) var(--pad-side);
  background: var(--paper);
}
.sd-gallery .wrap { max-width: var(--max-w); margin: 0 auto; }
.sd-gallery-grid {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .sd-gallery-grid { grid-template-columns: 1.4fr 1fr 1fr; } }
.sd-gallery-grid .placeholder {
  aspect-ratio: 4/3;
  border-radius: var(--r-md);
  background:
    linear-gradient(135deg, rgba(47, 151, 148, 0.14), rgba(232, 155, 127, 0.10)),
    var(--cream);
}
.sd-gallery-grid .placeholder:first-child { aspect-ratio: auto; min-height: 280px; }
@media (min-width: 700px) {
  .sd-gallery-grid .placeholder:first-child {
    grid-row: span 2; aspect-ratio: 3/4;
  }
  .sd-gallery-grid { grid-template-rows: repeat(2, 1fr); }
}

/* Steps enhanced */
.sd-steps--enhanced {
  border: none; background: transparent;
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .sd-steps--enhanced { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1100px) { .sd-steps--enhanced { grid-template-columns: repeat(4, 1fr); } }
.sd-step--enhanced {
  background: var(--paper);
  border: 1px solid var(--rule-soft);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 14px;
  position: relative;
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  overflow: hidden;
}
.sd-step--enhanced::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: var(--gold);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.sd-step--enhanced:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  box-shadow: 0 20px 40px -20px rgba(11, 31, 30, 0.18);
}
.sd-step--enhanced:hover::before { transform: scaleX(1); }
.sd-step--enhanced .step-num-big {
  font-family: var(--font-display); font-weight: 300;
  font-size: 48px; line-height: 0.9;
  color: var(--teal-mist);
  letter-spacing: -0.03em;
  position: absolute; top: 20px; right: 24px;
  font-style: italic;
}
.sd-step--enhanced .n {
  display: inline-flex; align-items: center; gap: 8px;
  z-index: 1;
}
.sd-step--enhanced .n::before {
  content: ''; width: 18px; height: 18px;
  border-radius: 50%;
  background: var(--gold);
  display: inline-block;
}
.sd-step--enhanced h3 { z-index: 1; }
.sd-step--enhanced p { z-index: 1; }

/* Benefits enhanced */
.sd-benefits-enhanced {
  display: grid; gap: 16px;
  grid-template-columns: 1fr;
}
@media (min-width: 700px) { .sd-benefits-enhanced { grid-template-columns: 1fr 1fr; } }
.sd-benefit-card {
  padding: 32px 28px;
  border-radius: var(--r-md);
  display: flex; flex-direction: column; gap: 12px;
  position: relative;
  overflow: hidden;
  min-height: 200px;
  border: 1px solid transparent;
}
.sd-benefit-card .b-num {
  font-family: var(--font-display); font-style: italic; font-weight: 350;
  font-size: 56px; line-height: 0.9;
  letter-spacing: -0.03em;
  opacity: 0.85;
}
.sd-benefit-card h4 {
  font-family: var(--font-display); font-weight: 400;
  font-size: 24px; line-height: 1.15; margin: 0;
  letter-spacing: -0.01em;
}
.sd-benefit-card p {
  font-family: var(--font-sans); font-size: 15px; line-height: 1.55;
  margin: 0;
}
.sd-benefit-card--gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%);
  color: var(--ink);
}
.sd-benefit-card--gold .b-num { color: rgba(19, 63, 61, 0.4); }
.sd-benefit-card--teal {
  background: linear-gradient(135deg, var(--teal-900) 0%, var(--teal-800) 100%);
  color: var(--cream);
}
.sd-benefit-card--teal .b-num { color: rgba(232, 155, 127, 0.55); }
.sd-benefit-card--teal p { color: rgba(244, 239, 230, 0.78); }
.sd-benefit-card--sage {
  background: var(--teal-mist);
  color: var(--ink);
}
.sd-benefit-card--sage .b-num { color: var(--teal); }
.sd-benefit-card--cream {
  background: var(--cream);
  border-color: var(--rule);
  color: var(--ink);
}
.sd-benefit-card--cream .b-num { color: var(--gold); }

/* Pricing / Insurance highlight */
.sd-pricing {
  padding: clamp(64px, 7vw, 112px) var(--pad-side);
  background: var(--cream-light);
}
.sd-pricing .wrap { max-width: var(--max-w); margin: 0 auto; }
.sd-pricing-card {
  background: var(--teal-900);
  color: var(--cream);
  border-radius: var(--r-lg);
  padding: clamp(40px, 5vw, 72px);
  display: grid; gap: 40px;
  grid-template-columns: 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}
@media (min-width: 800px) { .sd-pricing-card { grid-template-columns: 1.4fr 1fr; gap: 60px; } }
.sd-pricing-card::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle at center, rgba(232, 155, 127, 0.16), transparent 65%);
}
.sd-pricing-card .eyebrow { color: var(--gold); margin-bottom: 18px; display: block; }
.sd-pricing-card h2 {
  font-family: var(--font-display); font-weight: 350;
  font-size: clamp(32px, 4vw, 52px); line-height: 1.02;
  letter-spacing: -0.02em; margin: 0 0 18px; color: var(--cream);
  text-wrap: balance;
}
.sd-pricing-card h2 em { font-style: italic; color: var(--gold); font-weight: 350; }
.sd-pricing-card p {
  font-family: var(--font-sans); font-size: 17px; line-height: 1.6;
  color: rgba(244, 239, 230, 0.85); margin: 0;
}
.sd-pricing-cta {
  display: flex; flex-direction: column; gap: 12px;
}
.sd-pricing-cta .btn--ghost {
  color: var(--cream); border-color: rgba(244, 239, 230, 0.35);
}
.sd-pricing-cta .btn--ghost:hover { background: var(--cream); color: var(--ink); border-color: var(--cream); }

/* FAQ with side image */
.sd-faq-grid {
  display: grid; gap: clamp(32px, 4vw, 64px);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 900px) { .sd-faq-grid { grid-template-columns: 1fr 1.4fr; } }
.sd-faq-side { display: flex; flex-direction: column; gap: 24px; position: sticky; top: 100px; }
.sd-faq-side .placeholder {
  aspect-ratio: 4/5;
  border-radius: var(--r-md);
  background:
    linear-gradient(135deg, rgba(232, 155, 127, 0.14), rgba(47, 151, 148, 0.10)),
    var(--cream);
}
.sd-faq-aside {
  background: var(--cream); border-radius: var(--r-md);
  padding: 28px;
}
.sd-faq-aside p {
  font-family: var(--font-display); font-weight: 350;
  font-size: 20px; line-height: 1.3; color: var(--ink);
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}

/* Related enhanced */
.sd-related-card--enhanced {
  padding: 0; min-height: auto;
  overflow: hidden;
}
.sd-related-card--enhanced .rc-thumb {
  position: relative; width: 100%;
}
.sd-related-card--enhanced .rc-thumb .placeholder {
  aspect-ratio: 4/3;
  background:
    linear-gradient(135deg, rgba(47, 151, 148, 0.14), rgba(232, 155, 127, 0.10)),
    var(--cream);
  border-radius: 0; margin: 0;
}
.sd-related-card--enhanced .rc-thumb .placeholder::before {
  background-image: radial-gradient(circle at 1px 1px, rgba(11, 31, 30, 0.06) 1px, transparent 1px);
}
.sd-related-card--enhanced .rc-content {
  padding: 22px 24px 4px;
}
.sd-related-card--enhanced .go {
  padding: 0 24px 22px;
}

/* Body bg accent */
body.sd-page { background: var(--cream-light); }
.sd-divider {
  height: 1px; background: var(--rule-soft);
  margin: 0 auto; max-width: var(--max-w);
}


/* ============================================================
   Service detail — COMPACT HERO (v2.1)
   ============================================================ */
.sd-hero--split { padding: clamp(56px, 6vw, 96px) var(--pad-side) clamp(48px, 5vw, 80px); }
.sd-hero-inner--split { gap: clamp(32px, 4vw, 64px); }
@media (min-width: 960px) {
  .sd-hero-inner--split { grid-template-columns: 1fr 1fr; }
}
.sd-hero--split h1 { font-size: clamp(40px, 5.4vw, 72px); margin-bottom: 24px; }
.sd-hero--split .sd-lede { font-size: clamp(17px, 1.4vw, 21px); max-width: 520px; }
.sd-hero--split .breadcrumb { margin-bottom: 20px; }
.sd-hero--split .sd-cat-tag { margin-bottom: 20px; }
.sd-hero-text .sd-hero-actions { margin-top: 28px; }

.sd-hero-art .placeholder--portrait { aspect-ratio: 5 / 6; }

.sd-hero-meta {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid rgba(244, 239, 230, 0.18);
  max-width: 520px;
}
@media (min-width: 600px) {
  .sd-hero-meta { grid-template-columns: repeat(4, auto); gap: 36px; }
}
.sd-hero-meta-item { display: flex; flex-direction: column; gap: 4px; padding: 6px 0; }
.sd-hero-meta-item .lbl {
  font-family: var(--font-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold);
}
.sd-hero-meta-item .val {
  font-family: var(--font-display); font-weight: 350;
  font-size: 18px; line-height: 1.1; letter-spacing: -0.01em;
  color: var(--cream);
}

/* Overview — slimmer single column, callout inline */
.sd-overview--enhanced { padding-top: clamp(56px, 6vw, 88px); padding-bottom: clamp(40px, 5vw, 72px); }
.sd-overview--enhanced .sd-overview-inner {
  grid-template-columns: 1fr;
  max-width: 880px;
}
@media (min-width: 960px) {
  .sd-overview--enhanced .sd-overview-inner { grid-template-columns: 1fr; }
}
.sd-overview--enhanced h2 { font-size: clamp(28px, 3.4vw, 42px); }

/* Gallery — tighter */
.sd-gallery { padding: clamp(48px, 5vw, 88px) var(--pad-side); }
.sd-gallery .sd-section-head { margin-bottom: 32px; }
.sd-gallery-grid { grid-template-columns: 1fr; gap: 12px; }
@media (min-width: 700px) { .sd-gallery-grid { grid-template-columns: repeat(3, 1fr); grid-template-rows: auto; } }
.sd-gallery-grid .placeholder:first-child { aspect-ratio: 4/3; min-height: 0; }
@media (min-width: 700px) {
  .sd-gallery-grid .placeholder:first-child { grid-row: auto; aspect-ratio: 4/3; }
}

/* ============================================================
   PATIENT RESULTS — before/after section
   ============================================================ */
.sd-results { padding: clamp(56px, 7vw, 96px) var(--pad-side); background: var(--ink); color: var(--cream); }
.sd-results-inner { max-width: var(--max-w); margin: 0 auto; }
.sd-results .sd-section-head { margin-bottom: clamp(32px, 4vw, 56px); }
.sd-results .sd-section-head h2 { color: var(--cream); }
.sd-results .sd-section-head p { color: rgba(244,239,230,0.7); }

.sd-ba-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--r-lg);
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
}
.sd-ba-half {
  position: relative;
  overflow: hidden;
}
.sd-ba-half img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  aspect-ratio: 1 / 1.1;
}
.sd-ba-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 10px 16px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(to top, rgba(7,22,22,0.78) 60%, transparent);
}
.sd-ba-half--before .sd-ba-label { background: linear-gradient(to top, rgba(7,22,22,0.78) 60%, transparent); }
.sd-ba-half--after  .sd-ba-label { background: linear-gradient(to top, rgba(19,63,61,0.85) 60%, transparent); color: var(--gold); }

.sd-ba-note {
  text-align: center;
  margin-top: 20px;
  font-size: 13px;
  font-family: var(--font-mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(244,239,230,0.45);
}

@media (max-width: 480px) {
  .sd-ba-card { grid-template-columns: 1fr; }
  .sd-ba-half img { aspect-ratio: 4/3; }
}

/* ============================================================
   MOBILE RESPONSIVE — additional fixes
   ============================================================ */

/* Remove fixed min-height on service cards so they don't force
   excess scroll on small phones */
@media (max-width: 640px) {
  .service-card { min-height: 0; }
}

/* Landscape phone: shrink the hero so it doesn't take 3 scrolls
   to get past it (e.g. iPhone SE landscape = 375px tall) */
@media (max-height: 520px) and (orientation: landscape) {
  .hero { min-height: auto; padding: 80px 0 40px; }
  .hero h1 { font-size: clamp(32px, 7vw, 52px); margin-bottom: 16px; }
  .hero .lede { font-size: 14px; }
  .hero-meta { padding-top: 20px; margin-top: 8px; }
  .site-header { padding: 10px var(--pad-side); }
}

/* Prevent the hero title from becoming unreadably tiny on very
   narrow phones (< 360 px, e.g. Galaxy Fold outer screen) */
@media (max-width: 360px) {
  .hero h1 { font-size: clamp(30px, 10vw, 44px); }
  .hero .lede { font-size: 15px; }
  .btn { padding: 12px 16px; font-size: 13px; }
  .brand-name { font-size: 15px; }
}

/* Service detail meta grid: stack to 1 col on very small screens */
@media (max-width: 400px) {
  .sd-overview .sd-meta { grid-template-columns: 1fr; }
}
