/* ═══════════════════════════════════════════════════════════
   Dr. Fatima Nasser Dental Clinic
   Palette taken from the clinic's own brand mark — the warm
   greige bar and white monoline tooth used on her case cards.
   1 tokens · 2 base · 3 layout · 4 components
   5 sections · 6 responsive · 7 motion
   ═══════════════════════════════════════════════════════════ */

/* ─── 1. DESIGN TOKENS ─────────────────────────────────── */
:root {
  /* warm greige — sampled from the brand bar */
  --ink:      #23201c;
  --ink-2:    #3a352f;
  --greige-700:#5f584e;
  --greige-600:#7a7268;
  --greige-500:#9a9188;   /* the logo bar */
  --greige-300:#c4bbaf;
  --greige-200:#ddd5c9;
  --greige-100:#ebe4da;
  --cream:    #f6f1e9;
  --paper:    #fdfbf7;
  --white:    #ffffff;

  --brass:    #a8865a;
  --brass-soft:#e6d5b8;
  --navy:     #45536b;    /* her scrubs, used sparingly */

  --radius-sm: 10px;
  --radius:    18px;
  --radius-lg: 28px;
  --radius-xl: 40px;

  --shadow-xs: 0 1px 2px rgba(35,32,28,.05);
  --shadow-sm: 0 2px 10px rgba(35,32,28,.06);
  --shadow:    0 16px 40px -16px rgba(35,32,28,.20), 0 2px 8px rgba(35,32,28,.04);
  --shadow-lg: 0 40px 80px -32px rgba(35,32,28,.32), 0 10px 28px -16px rgba(35,32,28,.14);

  --ease:     cubic-bezier(.22,1,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);

  --fs-xs:   .76rem;
  --fs-sm:   .875rem;
  --fs-base: clamp(1rem, .97rem + .16vw, 1.075rem);
  --fs-lg:   clamp(1.08rem, 1.02rem + .32vw, 1.28rem);
  --fs-h3:   clamp(1.25rem, 1.14rem + .5vw, 1.55rem);
  --fs-h2:   clamp(2.2rem, 1.5rem + 3vw, 4rem);
  --fs-h1:   clamp(2.9rem, 1.7rem + 5.2vw, 6rem);

  --container: 1240px;
  --gutter: clamp(1.15rem, 4vw, 2.5rem);

  --font-display:'Cormorant Garamond', 'Iowan Old Style', Georgia, serif;
  --font-body:   'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-script: 'Sacramento', 'Segoe Script', cursive;

  --header-h: 78px;
}

/* ─── 2. BASE ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 20px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--fs-base);
  font-weight: 400;
  line-height: 1.7;
  color: var(--greige-700);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body.is-locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.04;
  letter-spacing: -.015em;
  margin: 0 0 .55em;
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); font-weight: 300; }
h2 { font-size: var(--fs-h2); font-weight: 300; }
h3 { font-size: var(--fs-h3); font-weight: 500; letter-spacing: 0; }
h4 { font-family: var(--font-body); font-size: .95rem; font-weight: 600; }

h1 em, h2 em {
  font-style: italic;
  font-weight: 300;
  color: var(--greige-600);
}

p { margin: 0 0 1.15em; text-wrap: pretty; }
p:last-child { margin-bottom: 0; }

a { color: var(--ink); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--brass); }

img, svg { max-width: 100%; display: block; }
img { height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button, input, select, textarea { font: inherit; color: inherit; }

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

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

.skip-link {
  position: absolute; left: 50%; top: -100px; transform: translateX(-50%);
  z-index: 999; background: var(--ink); color: #fff;
  padding: .7rem 1.4rem; border-radius: 0 0 12px 12px; font-weight: 600;
  transition: top .25s var(--ease);
}
.skip-link:focus { top: 0; color: #fff; }

.ico { width: 1.05em; height: 1.05em; fill: currentColor; flex: none; }
.ico--lg { width: 1.6em; height: 1.6em; }
.muted { color: var(--greige-500); }
.stars { color: var(--brass); letter-spacing: .12em; font-size: .95em; }

/* ─── 3. LAYOUT ────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding: clamp(4.5rem, 9vw, 9rem) 0; position: relative; }
.section--cream { background: var(--cream); }
.section--dark {
  background: var(--ink); color: rgba(255,255,255,.62); overflow: hidden;
}
.section--dark::before {
  content: ''; position: absolute; inset: -30% -10% auto -10%; height: 80%;
  background: radial-gradient(55% 60% at 30% 40%, rgba(168,134,90,.22), transparent 70%),
              radial-gradient(45% 50% at 82% 25%, rgba(154,145,136,.16), transparent 70%);
  pointer-events: none;
}
.section--dark > * { position: relative; }
.section--dark h2, .section--dark h3 { color: #fff; }
.section--dark h2 em { color: var(--brass-soft); }

.section__head { max-width: 46rem; margin: 0 auto clamp(2.75rem, 5vw, 4.5rem); text-align: center; }
.section__head--light .eyebrow { color: var(--brass-soft); }
.section__head--light .eyebrow::before { background: var(--brass-soft); }
.section__lede { font-size: var(--fs-lg); color: var(--greige-600); font-weight: 300; }
.section--dark .section__lede { color: rgba(255,255,255,.55); }

.eyebrow {
  display: inline-flex; align-items: center; gap: .65rem;
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: .22em;
  text-transform: uppercase; color: var(--greige-600); margin-bottom: 1.2rem;
}
.eyebrow::before { content: ''; width: 28px; height: 1px; background: var(--greige-500); flex: none; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2.5rem, 6vw, 6rem); align-items: center; }
.grid-2--reverse .clinic__copy { order: 2; }
.grid-2--narrow { grid-template-columns: .75fr 1fr; align-items: start; }

/* ─── 4. COMPONENTS ────────────────────────────────────── */

/* Buttons */
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: 1.05rem 2rem;
  border: 1px solid transparent; border-radius: 100px;
  font-size: var(--fs-sm); font-weight: 500; letter-spacing: .04em;
  cursor: pointer; white-space: nowrap;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease),
              background .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
}
.btn--primary { background: var(--ink); color: #fff; box-shadow: 0 12px 28px -14px rgba(35,32,28,.7); }
.btn--primary:hover { background: #100e0c; color: #fff; transform: translateY(-2px); box-shadow: 0 20px 40px -16px rgba(35,32,28,.75); }
.btn--primary:active { transform: translateY(0); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--greige-300); }
.btn--ghost:hover { color: var(--ink); border-color: var(--ink); background: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-sm); }
.btn--ghost .ico { transition: transform .3s var(--ease); }
.btn--ghost:hover .ico { transform: translateX(4px); }

.btn--sm { padding: .72rem 1.4rem; font-size: var(--fs-xs); }
.btn--block { width: 100%; padding: 1.2rem; font-size: var(--fs-base); }

.link { font-weight: 500; font-size: var(--fs-sm); color: var(--brass); }

/* Topbar */
.topbar { background: var(--ink); color: rgba(255,255,255,.6); font-size: var(--fs-xs); letter-spacing: .04em; }
.topbar__inner { display: flex; align-items: center; gap: 1.9rem; height: 40px; }
.topbar__item { display: inline-flex; align-items: center; gap: .45rem; color: rgba(255,255,255,.72); }
a.topbar__item:hover { color: #fff; }
.topbar__item--right { margin-left: auto; }
.dot {
  width: 6px; height: 6px; border-radius: 50%; background: #6fc39a;
  box-shadow: 0 0 0 3px rgba(111,195,154,.22);
}

/* Language switcher */
.lang { display: flex; align-items: center; gap: .15rem; }
.lang__link {
  padding: .25rem .55rem; border-radius: 100px;
  color: rgba(255,255,255,.55); font-size: var(--fs-xs); font-weight: 500;
}
.lang__link:hover { color: #fff; }
.lang__link.is-current { background: rgba(255,255,255,.12); color: #fff; }

/* Header */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(253,251,247,.7);
  backdrop-filter: blur(20px) saturate(1.5);
  -webkit-backdrop-filter: blur(20px) saturate(1.5);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), background .3s var(--ease), box-shadow .3s var(--ease);
}
.header.is-stuck {
  background: rgba(253,251,247,.9);
  border-bottom-color: var(--greige-200);
  box-shadow: 0 4px 24px -14px rgba(35,32,28,.2);
}
.header__inner { display: flex; align-items: center; gap: 2rem; height: var(--header-h); }

/* Brand lockup — monoline tooth + script wordmark */
.brand { display: inline-flex; align-items: center; gap: .7rem; color: var(--ink); }
.brand__mark { width: 34px; height: 32px; color: var(--greige-600); transition: color .3s var(--ease); flex: none; }
.brand:hover .brand__mark { color: var(--brass); }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-script); font-size: 1.6rem; line-height: 1.05; letter-spacing: .01em; }
.brand__sub {
  font-size: .58rem; font-weight: 500; letter-spacing: .28em;
  text-transform: uppercase; color: var(--greige-500); margin-top: .1rem;
}
.brand--light { color: #fff; }
.brand--light .brand__mark { color: rgba(255,255,255,.8); }
.brand--light .brand__sub { color: rgba(255,255,255,.45); }

.nav { display: flex; align-items: center; gap: .2rem; margin-left: auto; }
.nav__link {
  position: relative; padding: .55rem .85rem;
  font-size: var(--fs-sm); font-weight: 400; color: var(--greige-700);
  transition: color .2s var(--ease);
}
.nav__link::after {
  content: ''; position: absolute; left: 50%; bottom: 6px;
  width: 0; height: 1px; background: var(--brass);
  transform: translateX(-50%); transition: width .3s var(--ease);
}
.nav__link:hover { color: var(--ink); }
.nav__link:hover::after, .nav__link.is-active::after { width: 16px; }
.nav__link.is-active { color: var(--ink); }
.nav__cta { margin-left: .8rem; }

.hamburger {
  display: none; margin-left: auto; width: 44px; height: 44px; padding: 0;
  background: transparent; border: 1px solid var(--greige-200); border-radius: 12px;
  cursor: pointer; flex-direction: column; align-items: center; justify-content: center; gap: 5px;
}
.hamburger span { display: block; width: 19px; height: 1.5px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s var(--ease); }
.hamburger.is-open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Cards */
/* min() guard: without it a fixed minmax floor overflows viewports narrower than the track */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(258px, 100%), 1fr)); gap: clamp(.9rem, 1.8vw, 1.25rem); }
.card {
  position: relative; overflow: hidden;
  padding: 2.2rem 1.9rem 1.9rem;
  background: var(--white); border: 1px solid var(--greige-200); border-radius: var(--radius-lg);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease), border-color .45s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--greige-300); }
.card__icon {
  display: grid; place-items: center; width: 54px; height: 54px; margin-bottom: 1.4rem;
  background: var(--cream); border-radius: 50%;
  transition: transform .45s var(--ease), background .45s var(--ease);
}
.card__icon svg { width: 26px; height: 26px; fill: var(--greige-700); stroke-width: 6; color: var(--greige-700); transition: fill .45s var(--ease), color .45s var(--ease); }
.card:hover .card__icon { transform: scale(1.06); background: var(--ink); }
.card:hover .card__icon svg { fill: #fff; color: #fff; }
.card h3 { margin-bottom: .5rem; }
.card p { font-size: var(--fs-sm); color: var(--greige-600); margin-bottom: 1.3rem; }
.card__meta {
  display: block; padding-top: .95rem; border-top: 1px solid var(--greige-100);
  font-size: var(--fs-xs); font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--brass);
}
.card--dark { background: var(--ink); border-color: transparent; }
.card--dark h3 { color: #fff; }
.card--dark p { color: rgba(255,255,255,.6); }
.card--dark .card__meta { color: var(--brass-soft); border-top-color: rgba(255,255,255,.14); }
.card--dark .card__icon { background: rgba(255,255,255,.08); }
.card--dark .card__icon svg { fill: var(--brass-soft); color: var(--brass-soft); }
.card--dark:hover .card__icon { background: var(--brass); }
.card--dark:hover .card__icon svg { fill: var(--ink); color: var(--ink); }

/* Photo button (lightbox trigger) */
.shot {
  display: block; position: relative; padding: 0; margin: 0; width: 100%;
  border: none; background: var(--greige-100); border-radius: var(--radius-lg);
  overflow: hidden; cursor: zoom-in;
  box-shadow: var(--shadow-sm);
  transition: transform .45s var(--ease), box-shadow .45s var(--ease);
}
.shot img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.shot:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.shot:hover img { transform: scale(1.035); }
.shot__label {
  position: absolute; left: 12px; bottom: 12px;
  padding: .4rem .85rem; border-radius: 100px;
  background: rgba(35,32,28,.7); backdrop-filter: blur(8px);
  color: #fff; font-size: var(--fs-xs); font-weight: 500; letter-spacing: .04em;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  display: grid; place-items: center; padding: clamp(1rem, 4vw, 3rem);
  background: rgba(20,18,16,.92); backdrop-filter: blur(6px);
  animation: fade .25s var(--ease);
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(100%, 900px); max-height: 88vh; width: auto; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close {
  position: absolute; top: 1rem; right: 1.25rem;
  width: 46px; height: 46px; font-size: 2rem; line-height: 1;
  background: rgba(255,255,255,.1); color: #fff;
  border: 1px solid rgba(255,255,255,.2); border-radius: 50%;
  cursor: pointer; transition: background .2s var(--ease);
}
.lightbox__close:hover { background: rgba(255,255,255,.22); }

/* ─── 5. SECTIONS ──────────────────────────────────────── */

/* HERO */
.hero { position: relative; padding: clamp(3rem, 6vw, 5.5rem) 0 clamp(3rem, 5vw, 4rem); overflow: hidden; }
.hero__bg {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(45% 40% at 80% 6%,  rgba(230,213,184,.55), transparent 66%),
    radial-gradient(38% 42% at 10% 22%, rgba(196,187,175,.32), transparent 66%),
    var(--paper);
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(35,32,28,.05) 1px, transparent 0);
  background-size: 28px 28px;
  mask-image: radial-gradient(65% 55% at 50% 25%, #000, transparent 78%);
  -webkit-mask-image: radial-gradient(65% 55% at 50% 25%, #000, transparent 78%);
}
.hero__inner {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: clamp(2.5rem, 5vw, 5rem); align-items: center;
  padding-bottom: clamp(2.5rem, 5vw, 4.5rem);
}
.hero__title { margin-bottom: 1.5rem; }
.hero__lede { font-size: var(--fs-lg); font-weight: 300; color: var(--greige-600); max-width: 34rem; margin-bottom: 2.2rem; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-bottom: 2.5rem; }
.hero__trust { display: flex; flex-wrap: wrap; gap: .6rem 1.6rem; font-size: var(--fs-sm); color: var(--greige-700); }
.hero__trust li { display: inline-flex; align-items: center; gap: .45rem; }
.hero__trust .ico { color: var(--brass); }

/* The script wordmark sits above the portrait; padding reserves its height,
   and both scale from one variable so it stays flexible down to 320px. */
.hero__media {
  position: relative;
  --script-size: clamp(1.85rem, 7.4vw, 3.6rem);
  padding-top: calc(var(--script-size) + .3rem);
}
.hero__frame { position: relative; z-index: 1; }
.hero__frame img {
  width: 100%; aspect-ratio: 4 / 5; object-fit: cover; object-position: 50% 22%;
  border-radius: 200px 200px var(--radius-lg) var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__inset {
  position: absolute; z-index: 2; left: -8%; bottom: 6%;
  width: 40%; max-width: 200px; margin: 0;
  border-radius: var(--radius); overflow: hidden;
  background: var(--white); padding: 6px;
  box-shadow: var(--shadow-lg);
  animation: float 7s ease-in-out infinite;
}
.hero__inset img { width: 100%; border-radius: 12px; }
.hero__inset figcaption {
  font-size: var(--fs-xs); text-align: center; padding: .5rem 0 .2rem;
  color: var(--greige-600); letter-spacing: .1em; text-transform: uppercase;
}
.hero__script {
  position: absolute; top: 0; right: 1%; z-index: 3;
  font-family: var(--font-script);
  font-size: var(--script-size); line-height: 1;
  color: var(--greige-600);
  white-space: nowrap; pointer-events: none;
}

/* Stats */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--greige-200); border-bottom: 1px solid var(--greige-200);
}
.stat { padding: 2rem 1.25rem; text-align: center; position: relative; }
.stat + .stat::before {
  content: ''; position: absolute; left: 0; top: 25%; bottom: 25%;
  width: 1px; background: var(--greige-200);
}
.stat__num {
  display: block; font-family: var(--font-display); font-weight: 300;
  font-size: clamp(2.2rem, 1.4rem + 2.4vw, 3.4rem); line-height: 1;
  color: var(--ink); letter-spacing: -.02em; font-variant-numeric: tabular-nums;
}
.stat__label {
  display: block; margin-top: .6rem; font-size: var(--fs-xs); font-weight: 400;
  letter-spacing: .16em; text-transform: uppercase; color: var(--greige-500);
}

/* ABOUT */
.about__media { position: relative; padding-bottom: 3rem; padding-right: 2rem; }
.about__img { object-fit: cover; box-shadow: var(--shadow-lg); }
.about__img--main {
  width: 100%; aspect-ratio: 4 / 5;
  border-radius: var(--radius-xl) var(--radius-xl) var(--radius-xl) 140px;
}
.about__img--sub {
  position: absolute; right: 0; bottom: 0; z-index: 2;
  width: 46%; aspect-ratio: 3 / 4;
  border: 8px solid var(--paper); border-radius: var(--radius-lg);
}
.about__badge {
  position: absolute; left: -10px; top: 8%; z-index: 3;
  display: flex; align-items: center; gap: .8rem;
  padding: .8rem 1.2rem .8rem 1rem;
  background: rgba(255,255,255,.86);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.7);
  border-radius: 100px; box-shadow: var(--shadow);
}
.about__rating { font-family: var(--font-display); font-size: 1.8rem; font-weight: 400; color: var(--ink); line-height: 1; }
.about__badge small { display: block; font-size: var(--fs-xs); color: var(--greige-500); }

.creds { display: grid; margin: 2.4rem 0; border-left: 1px solid var(--greige-200); }
.creds li { display: grid; grid-template-columns: 62px 1fr; gap: 1.2rem; padding: 1rem 0 1rem 1.6rem; position: relative; }
.creds li::before {
  content: ''; position: absolute; left: -3.5px; top: 1.55rem;
  width: 7px; height: 7px; border-radius: 50%; background: var(--greige-300);
  transition: background .3s var(--ease), transform .3s var(--ease);
}
.creds li:hover::before { background: var(--brass); transform: scale(1.4); }
.creds__year { font-family: var(--font-display); font-size: 1.15rem; color: var(--brass); }
.creds__body { font-size: var(--fs-sm); color: var(--greige-600); line-height: 1.5; }
.creds__body strong { display: block; color: var(--ink); font-weight: 500; }

.signature { font-family: var(--font-script); font-size: 2.6rem; line-height: 1; color: var(--greige-500); }

/* RESULTS — compare sliders */
.cases { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(320px, 100%), 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); }
.case { margin: 0; }
.compare {
  position: relative; overflow: hidden; aspect-ratio: 4 / 3;
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
  cursor: ew-resize; background: var(--greige-100);
  user-select: none; -webkit-user-select: none;
  /* let the browser keep vertical scrolling; we only claim horizontal drags */
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
  --pos: 50%;
}
.compare__img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; pointer-events: none; }
/* Clip the "before" layer so both photos stay pixel-aligned at every position */
.compare__clip { position: absolute; inset: 0; clip-path: inset(0 calc(100% - var(--pos)) 0 0); }
.compare::after {
  content: ''; position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 2px; margin-left: -1px; z-index: 1;
  background: rgba(255,255,255,.95); box-shadow: 0 0 14px rgba(35,32,28,.3);
  pointer-events: none;
}
.compare__handle {
  position: absolute; top: 50%; left: var(--pos); z-index: 2;
  transform: translate(-50%,-50%);
  width: 48px; height: 48px; display: grid; place-items: center;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border-radius: 50%; box-shadow: 0 8px 22px rgba(35,32,28,.3);
  pointer-events: none; transition: transform .25s var(--ease);
}
.compare__handle svg { width: 22px; height: 22px; fill: var(--ink); }
.compare:hover .compare__handle { transform: translate(-50%,-50%) scale(1.08); }
.compare__tag {
  position: absolute; top: 14px; z-index: 2;
  padding: .35rem .85rem; font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: .16em; text-transform: uppercase; border-radius: 100px;
  backdrop-filter: blur(8px); pointer-events: none;
}
.compare__tag--before { left: 14px; background: rgba(35,32,28,.6); color: #fff; }
.compare__tag--after  { right: 14px; background: rgba(255,255,255,.92); color: var(--ink); }
.case figcaption { padding: 1.4rem .3rem 0; }
.case figcaption h3 { margin-bottom: .3rem; }
.case figcaption p { font-size: var(--fs-sm); color: var(--greige-600); }

/* Case book */
.casebook { margin-top: clamp(3rem, 6vw, 5rem); }
.casebook__title {
  text-align: center; font-family: var(--font-body); font-size: var(--fs-xs);
  font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--greige-500); margin-bottom: 1.8rem;
}
.casebook__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(min(240px, 100%), 1fr));
  gap: clamp(1rem, 2vw, 1.5rem); align-items: start;
}
/* These are complete before/after composites — show them whole, never cropped. */
.casebook__grid .shot img { height: auto; object-fit: contain; }

.consent-note {
  margin-top: 2.5rem; text-align: center;
  font-size: var(--fs-xs); color: var(--greige-500); letter-spacing: .03em;
}

/* PROCESS */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(232px, 100%), 1fr)); gap: clamp(1.25rem, 2.5vw, 2rem); }
.step {
  padding: 2.1rem 1.7rem;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg); backdrop-filter: blur(6px);
  transition: transform .4s var(--ease), background .4s var(--ease), border-color .4s var(--ease);
}
.step:hover { transform: translateY(-6px); background: rgba(255,255,255,.07); border-color: rgba(168,134,90,.4); }
.step__num {
  display: block; margin-bottom: 1.2rem;
  font-family: var(--font-display); font-size: 2.8rem; font-weight: 300; line-height: 1;
  color: var(--brass-soft); opacity: .55;
}
.step h3 { font-size: 1.2rem; margin-bottom: .45rem; }
.step p { font-size: var(--fs-sm); color: rgba(255,255,255,.55); }

/* CLINIC */
.clinic__gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.clinic__gallery .shot--tall { grid-row: span 2; height: 100%; }
.clinic__gallery .shot--tall img { height: 100%; }
.clinic__gallery .shot:not(.shot--tall) { aspect-ratio: 1; }

.features { display: grid; gap: 1.15rem; margin-top: 2.2rem; }
.features li { display: flex; gap: .9rem; align-items: flex-start; }
.features .ico {
  margin-top: .3em; color: var(--brass); background: var(--cream);
  border-radius: 50%; width: 1.5em; height: 1.5em; padding: .24em; flex: none;
}
.features strong { display: block; color: var(--ink); font-weight: 500; }
.features span { font-size: var(--fs-sm); color: var(--greige-600); }

/* REVIEWS */
.quotes { columns: 2; column-gap: clamp(1rem, 2vw, 1.5rem); }
.quote {
  break-inside: avoid; margin: 0 0 clamp(1rem, 2vw, 1.5rem);
  padding: 2rem;
  background: var(--white); border: 1px solid var(--greige-200);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-xs);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.quote:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.quote p {
  font-family: var(--font-display); font-size: 1.3rem; font-weight: 400;
  line-height: 1.45; color: var(--ink); margin: 1rem 0 1.5rem;
}
.quote footer { display: flex; align-items: center; gap: .85rem; }
.quote__avatar {
  display: grid; place-items: center; width: 42px; height: 42px; flex: none;
  background: var(--cream); color: var(--greige-700); border-radius: 50%;
  font-family: var(--font-display); font-size: 1.25rem;
}
.quote footer strong { display: block; font-size: var(--fs-sm); color: var(--ink); font-weight: 500; }
.quote footer small { font-size: var(--fs-xs); color: var(--greige-500); }

/* FAQ */
.faq__intro { position: sticky; top: calc(var(--header-h) + 2rem); }
.faq { display: grid; gap: .6rem; }
.faq__item {
  background: var(--white); border: 1px solid var(--greige-200);
  border-radius: var(--radius); overflow: hidden;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.faq__item[open] { border-color: var(--greige-300); box-shadow: var(--shadow-sm); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  padding: 1.3rem 1.5rem; font-weight: 500; font-size: var(--fs-base);
  color: var(--ink); cursor: pointer; list-style: none;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary:hover { color: var(--brass); }
.faq__chev {
  position: relative; width: 24px; height: 24px; flex: none;
  border-radius: 50%; background: var(--cream);
  transition: transform .35s var(--ease), background .3s var(--ease);
}
.faq__chev::before, .faq__chev::after {
  content: ''; position: absolute; top: 50%; left: 50%;
  background: var(--greige-700); transform: translate(-50%,-50%); transition: opacity .3s var(--ease);
}
.faq__chev::before { width: 10px; height: 1.5px; }
.faq__chev::after  { width: 1.5px; height: 10px; }
.faq__item[open] .faq__chev { background: var(--ink); transform: rotate(90deg); }
.faq__item[open] .faq__chev::before { background: #fff; }
.faq__item[open] .faq__chev::after { opacity: 0; }
.faq__body { padding: 0 1.5rem 1.5rem; }
.faq__body p { font-size: var(--fs-sm); color: var(--greige-600); max-width: 58ch; }
.faq__item[open] .faq__body { animation: slideDown .35s var(--ease-out); }

/* CONTACT */
.contact { display: grid; grid-template-columns: 1.35fr .8fr; gap: clamp(1.5rem, 3vw, 2.5rem); align-items: start; }
.form {
  display: grid; gap: 1.2rem; padding: clamp(1.75rem, 3vw, 2.9rem);
  background: var(--white); border: 1px solid var(--greige-200);
  border-radius: var(--radius-lg); box-shadow: var(--shadow);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field { display: grid; gap: .4rem; }
.field label { font-size: var(--fs-sm); font-weight: 500; color: var(--ink); }
.field label span { color: var(--brass); }
.field input, .field select, .field textarea {
  width: 100%; padding: .9rem 1rem;
  background: var(--paper); border: 1px solid var(--greige-200); border-radius: var(--radius-sm);
  font-size: var(--fs-sm); color: var(--ink);
  transition: border-color .2s var(--ease), background .2s var(--ease), box-shadow .2s var(--ease);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input::placeholder, .field textarea::placeholder { color: var(--greige-300); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; background: var(--white); border-color: var(--greige-500);
  box-shadow: 0 0 0 4px rgba(154,145,136,.14);
}
.field.has-error input, .field.has-error select { border-color: #c1584e; background: #fdf5f4; }
.field__error { font-size: var(--fs-xs); color: #b04a41; }
.field__error:empty { display: none; }

.checkbox { display: flex; align-items: flex-start; gap: .65rem; font-size: var(--fs-sm); color: var(--greige-600); cursor: pointer; }
.checkbox input { width: 18px; height: 18px; margin-top: 3px; accent-color: var(--ink); flex: none; }

.form__note { font-size: var(--fs-xs); color: var(--greige-500); text-align: center; }
.form__success {
  display: flex; align-items: center; gap: .9rem;
  padding: 1.2rem 1.4rem; background: var(--cream);
  border: 1px solid var(--greige-200); border-radius: var(--radius-sm);
  animation: slideDown .4s var(--ease-out);
}
.form__success .ico { color: var(--brass); }
.form__success strong { display: block; color: var(--ink); font-size: var(--fs-sm); }
.form__success span { font-size: var(--fs-xs); color: var(--greige-600); }

.details { display: grid; gap: 1rem; }
.details__block {
  padding: 1.6rem 1.7rem; background: var(--white);
  border: 1px solid var(--greige-200); border-radius: var(--radius); box-shadow: var(--shadow-xs);
}
.details__block h3 {
  font-family: var(--font-body); font-size: var(--fs-xs); font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase; color: var(--greige-500); margin-bottom: .8rem;
}
.details__block p { font-size: var(--fs-sm); }
.details__block--alert { background: var(--ink); border-color: transparent; color: rgba(255,255,255,.6); }
.details__block--alert strong {
  display: block; color: #fff; font-family: var(--font-display);
  font-size: 1.35rem; font-weight: 400; margin-bottom: .35rem;
}
.details__block--alert a { color: var(--brass-soft); font-weight: 500; }
.details__block--alert a:hover { color: #fff; }

.hours { width: 100%; border-collapse: collapse; font-size: var(--fs-sm); }
.hours th { text-align: left; font-weight: 400; color: var(--greige-500); padding: .4rem 0; white-space: nowrap; }
.hours td { text-align: right; color: var(--ink); font-weight: 500; padding: .4rem 0; }
.hours tr + tr th, .hours tr + tr td { border-top: 1px solid var(--greige-100); }

/* FOOTER */
.footer { background: var(--ink); color: rgba(255,255,255,.55); padding: clamp(3.5rem, 6vw, 5.5rem) 0 2rem; position: relative; overflow: hidden; }
.footer::before {
  content: ''; position: absolute; top: -60%; right: -8%; width: 55%; height: 150%;
  background: radial-gradient(circle, rgba(168,134,90,.18), transparent 65%); pointer-events: none;
}
.footer__inner { position: relative; display: grid; grid-template-columns: 1.1fr 1.5fr; gap: clamp(2.5rem, 5vw, 4rem); padding-bottom: 3rem; }
.footer__brand p { font-size: var(--fs-sm); margin: 1.3rem 0 1.6rem; max-width: 30ch; }
.socials { display: flex; gap: .6rem; }
.socials a {
  display: grid; place-items: center; width: 40px; height: 40px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12); border-radius: 12px;
  transition: background .25s var(--ease), transform .25s var(--ease), border-color .25s var(--ease);
}
.socials svg { width: 18px; height: 18px; fill: rgba(255,255,255,.75); }
.socials a:hover { background: var(--brass); border-color: var(--brass); transform: translateY(-3px); }
.footer__nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.footer__nav h4 { color: #fff; font-size: var(--fs-xs); letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.2rem; opacity: .8; }
.footer__nav a { display: block; font-size: var(--fs-sm); color: rgba(255,255,255,.55); padding: .32rem 0; transition: color .2s var(--ease), transform .2s var(--ease); }
.footer__nav a:hover { color: #fff; transform: translateX(3px); }
.footer__bottom {
  position: relative; display: flex; flex-wrap: wrap; gap: .6rem 1.5rem;
  justify-content: space-between; align-items: center;
  padding-top: 1.8rem; border-top: 1px solid rgba(255,255,255,.1); font-size: var(--fs-xs);
}
.footer__bottom p { margin: 0; }
.footer__legal a { color: rgba(255,255,255,.7); }
.footer__legal a:hover { color: #fff; }
.footer__legal .muted { color: rgba(255,255,255,.35); }

/* Floating mobile CTA */
.fab {
  position: fixed; right: 1.1rem; bottom: 1.1rem; z-index: 90;
  display: none; align-items: center; gap: .5rem;
  padding: 1rem 1.6rem; background: var(--ink); color: #fff;
  font-size: var(--fs-sm); font-weight: 500; border-radius: 100px;
  box-shadow: 0 14px 32px -12px rgba(35,32,28,.7);
  opacity: 0; transform: translateY(20px) scale(.9); pointer-events: none;
  transition: opacity .35s var(--ease), transform .35s var(--ease);
}
.fab.is-visible { opacity: 1; transform: none; pointer-events: auto; }
.fab:hover { color: #fff; }

/* ─── 6. RESPONSIVE ────────────────────────────────────── */
@media (max-width: 1024px) {
  .grid-2, .grid-2--narrow { grid-template-columns: 1fr; }
  .grid-2--reverse .clinic__copy { order: 0; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { max-width: 440px; margin-inline: auto; }
  .about__media { max-width: 520px; margin-inline: auto; }
  .faq__intro { position: static; }
  .contact { grid-template-columns: 1fr; }
  .quotes { columns: 1; }
  .footer__inner { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(340px, 86vw);
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: .2rem; margin: 0;
    padding: calc(var(--header-h) + 1.75rem) 1.5rem 2rem;
    background: var(--paper); box-shadow: -20px 0 60px -20px rgba(35,32,28,.3);
    transform: translateX(100%); transition: transform .4s var(--ease); overflow-y: auto;
  }
  .nav.is-open { transform: none; }
  .nav__link { padding: 1rem .8rem; font-size: 1.05rem; border-bottom: 1px solid var(--greige-100); }
  .nav__link::after { display: none; }
  .nav__link.is-active { color: var(--brass); }
  .nav__cta { margin: 1.3rem 0 0; padding: 1rem; font-size: var(--fs-sm); }
  .fab { display: flex; }
  .stats { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(3)::before, .stat:nth-child(1)::before { display: none; }
  .stat:nth-child(3), .stat:nth-child(4) { border-top: 1px solid var(--greige-200); }
  .topbar__item--hide-sm { display: none; }
}

@media (max-width: 620px) {
  :root { --header-h: 66px; }
  .topbar__item--right { display: none; }
  .topbar__inner { justify-content: center; }
  .form__row { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .hero__frame img { border-radius: 140px 140px var(--radius-lg) var(--radius-lg); }
  .hero__inset { left: -4%; width: 38%; }
  .about__media { padding-right: 0; padding-bottom: 4rem; }
  .about__img--sub { width: 52%; right: -4px; }
  .about__badge { left: 0; padding: .65rem 1rem; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; }
  .hero__actions { flex-direction: column; }
  .clinic__gallery { grid-template-columns: 1fr 1fr; }
  .clinic__gallery .shot--tall { grid-column: 1 / -1; grid-row: auto; aspect-ratio: 4/5; }
}

/* ─── 7. MOTION ────────────────────────────────────────── */
.reveal {
  opacity: 0; transform: translateY(26px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
  transition-delay: var(--delay, 0ms);
}
.reveal.is-in { opacity: 1; transform: none; }

@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@keyframes slideDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

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

/* ─── PRINT ────────────────────────────────────────────── */
@media print {
  .topbar, .header, .fab, .hero__bg, .form, .lightbox { display: none; }
  body { background: #fff; color: #000; }
  .reveal { opacity: 1; transform: none; }
}
