/* =============================================================================
   LUMEN — Oculofacial Plastic Surgery
   Bespoke design system. No framework, no build step.
   Aesthetic: editorial luxury, grounded in the eye / light / focus.
   ========================================================================== */

/* ---------- Design tokens -------------------------------------------------- */
:root {
  /* Palette — warm ivory gallery, deep warm ink, restrained champagne, blush */
  --ivory:        #F7F3EC;
  --ivory-deep:   #F1EBE0;
  --bone:         #EAE2D5;
  --ink:          #1C1815;
  --ink-soft:     #423B34;
  --ink-mute:     #6B6157;
  --gold:         #856536;   /* champagne (WCAG AA: 4.85:1 ivory, 4.52:1 ivory-deep — keep ≥4.5 for small text) */
  --gold-soft:    #C2A26A;   /* lighter champagne — only on the dark ink panels */
  --blush:        #E5D3C5;
  --line:         rgba(28, 24, 21, 0.14);
  --line-soft:    rgba(28, 24, 21, 0.08);
  --white:        #FFFFFF;

  /* Type */
  --display: "Fraunces", "Times New Roman", serif;
  --sans: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Fluid type scale */
  --fs-eyebrow: 0.78rem;
  --fs-body:    1.0625rem;
  --fs-lead:    clamp(1.15rem, 0.95rem + 0.9vw, 1.45rem);
  --fs-h3:      clamp(1.4rem, 1.1rem + 1.4vw, 2rem);
  --fs-h2:      clamp(2rem, 1.4rem + 2.8vw, 3.4rem);
  --fs-h1:      clamp(2.9rem, 1.8rem + 5.2vw, 6.2rem);
  --fs-display: clamp(3.6rem, 2rem + 8vw, 9rem);

  /* Space + rhythm */
  --section-y: clamp(5rem, 3rem + 8vw, 10rem);
  --gutter:    clamp(1.25rem, 0.5rem + 4vw, 5rem);
  --maxw:      1320px;
  --maxw-text: 64ch;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-soft: cubic-bezier(0.4, 0, 0.2, 1);
  --reveal-dur: 0.95s;
}

/* ---------- Reset ---------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: 88px; overflow-x: clip; }
body {
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.65;
  color: var(--ink);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img, picture, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; cursor: pointer; background: none; border: none; }
ul { list-style: none; padding: 0; }
::selection { background: var(--ink); color: var(--ivory); }

/* Consistent, visible keyboard focus across all interactive elements. */
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 2px; }

/* Skip-to-content — visually hidden until keyboard focus (WCAG 2.4.1). */
.skip-link {
  position: fixed; top: 0.8rem; left: 0.8rem; z-index: 200;
  background: var(--ink); color: var(--ivory); padding: 0.8rem 1.4rem; border-radius: 100px;
  font-size: 0.85rem; font-weight: 600; letter-spacing: 0.04em;
  transform: translateY(-200%); transition: transform 0.2s;
}
.skip-link:focus { transform: translateY(0); }
:focus:not(:focus-visible) { outline: none; }

/* ---------- Typography ----------------------------------------------------- */
h1, h2, h3, h4 { font-family: var(--display); font-weight: 380; line-height: 1.04; letter-spacing: -0.015em; }
.display {
  font-family: var(--display);
  font-size: var(--fs-display);
  font-weight: 340;
  line-height: 0.98;
  letter-spacing: -0.025em;
}
.h1 { font-size: var(--fs-h1); }
.h2 { font-size: var(--fs-h2); }
.h3 { font-size: var(--fs-h3); font-weight: 420; }
.serif-italic { font-style: italic; font-variation-settings: "SOFT" 60, "WONK" 1; }
.lead { font-size: var(--fs-lead); line-height: 1.5; color: var(--ink-soft); font-weight: 360; }

.eyebrow {
  font-family: var(--sans);
  font-size: var(--fs-eyebrow);
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 1.8em;
  height: 1px;
  background: var(--gold-soft);
  display: inline-block;
}
.eyebrow.center::after {
  content: "";
  width: 1.8em;
  height: 1px;
  background: var(--gold-soft);
  display: inline-block;
}
.muted { color: var(--ink-mute); }

/* ---------- Layout --------------------------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: var(--section-y); position: relative; }
.section--tight { padding-block: clamp(3rem, 2rem + 4vw, 6rem); }

/* Alternating section tone — a soft, full-bleed warm ground on every other
   section for gentle visual separation (no hard divider lines). */
.section--alt { position: relative; z-index: 0; }
.section--alt::before {
  content: ""; position: absolute; inset-block: 0; left: 50%; transform: translateX(-50%);
  width: 100vw; background: var(--ivory-deep); z-index: -1;
}
/* On a tinted section, the (normally ivory-deep) testimonial cards go white so they still read as cards. */
.section--alt .testi__card { background: var(--white); box-shadow: 0 1px 0 var(--line-soft); }
.divider { height: 1px; background: var(--line); border: 0; }
.stack > * + * { margin-top: 1.1rem; }
.measure { max-width: var(--maxw-text); }

/* Overflow safety: stop grid/flex children from forcing the page wider than the
   viewport (min-content blowout). Critical for no horizontal scroll on mobile. */
.intro__grid > *, .journey > *, .bio > *, .consult__inner > *,
.sec-head > *, .footer__grid > *, .proc-grid > *, .testi > *,
.gallery > *, .hero > * { min-width: 0; }

/* ---------- Buttons -------------------------------------------------------- */
.btn {
  --btn-fg: var(--ivory);
  --btn-bg: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
  padding: 1.05em 1.9em;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--btn-fg);
  background: var(--btn-bg);
  border-radius: 100px;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
  will-change: transform;
}
.btn span { position: relative; z-index: 1; transition: transform 0.5s var(--ease); }
.btn::after {
  content: "";
  position: absolute; inset: 0;
  background: var(--gold);
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px -12px rgba(28,24,21,0.45); }
.btn:hover::after { transform: translateY(0); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--ghost {
  --btn-fg: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  padding: 1.0em 1.7em;
}
.btn--ghost::after { background: var(--ink); }
.btn--ghost:hover { color: var(--ivory); border-color: var(--ink); }

.link-underline {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: 600;
  font-size: 0.84rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding-bottom: 2px;
  background: linear-gradient(var(--gold), var(--gold)) left bottom / 0% 1px no-repeat;
  transition: background-size 0.45s var(--ease), color 0.3s;
}
.link-underline .arrow { transition: transform 0.4s var(--ease); }
.link-underline:hover { background-size: 100% 1px; }
.link-underline:hover .arrow { transform: translateX(4px); }

/* ---------- Header / Nav --------------------------------------------------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: clamp(1rem, 0.6rem + 1vw, 1.6rem) var(--gutter);
  transition: padding 0.4s var(--ease), background 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.site-header.scrolled {
  padding-block: 0.9rem;
  background: rgba(247, 243, 236, 0.82);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 1px 0 var(--line-soft);
}
.brand { display: inline-flex; align-items: baseline; gap: 0.55rem; font-family: var(--display); }
.brand__mark { font-size: 1.5rem; letter-spacing: 0.02em; font-weight: 420; }
.brand__sub {
  font-family: var(--sans);
  font-size: 0.6rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-mute);
  font-weight: 600;
}
.nav { display: flex; align-items: center; gap: clamp(1.2rem, 0.5rem + 1.6vw, 2.6rem); }
.nav__links { display: flex; gap: clamp(1.2rem, 0.5rem + 1.6vw, 2.4rem); }
.nav__links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  position: relative;
  padding: 0.3em 0;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--ink);
  transform: scaleX(0); transform-origin: right; transition: transform 0.4s var(--ease);
}
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }
.nav__cta { display: inline-flex; }

.menu-toggle { display: none; width: 30px; height: 18px; position: relative; z-index: 110; }
.menu-toggle span {
  position: absolute; left: 0; height: 1.5px; width: 100%; background: var(--ink);
  transition: transform 0.4s var(--ease), opacity 0.3s, width 0.4s var(--ease);
}
.menu-toggle span:nth-child(1) { top: 2px; }
.menu-toggle span:nth-child(2) { top: 9px; width: 70%; }
.menu-toggle span:nth-child(3) { top: 16px; }
body.menu-open .menu-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
body.menu-open .menu-toggle span:nth-child(2) { opacity: 0; }
body.menu-open .menu-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); width: 100%; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 105;
  background: var(--ivory);
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--gutter);
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path 0.7s var(--ease);
  pointer-events: none;
}
body.menu-open .mobile-nav { clip-path: circle(150% at calc(100% - 40px) 40px); pointer-events: auto; }
.mobile-nav a {
  font-family: var(--display);
  font-size: clamp(2rem, 1.4rem + 4vw, 3.4rem);
  font-weight: 360;
  padding: 0.18em 0;
  opacity: 0; transform: translateY(16px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
body.menu-open .mobile-nav a { opacity: 1; transform: none; }
body.menu-open .mobile-nav a:nth-child(1) { transition-delay: 0.18s; }
body.menu-open .mobile-nav a:nth-child(2) { transition-delay: 0.24s; }
body.menu-open .mobile-nav a:nth-child(3) { transition-delay: 0.30s; }
body.menu-open .mobile-nav a:nth-child(4) { transition-delay: 0.36s; }
body.menu-open .mobile-nav a:nth-child(5) { transition-delay: 0.42s; }
body.menu-open .mobile-nav a:nth-child(6) { transition-delay: 0.48s; }
.mobile-nav__foot { margin-top: 2.5rem; color: var(--ink-mute); font-size: 0.9rem; opacity: 0; transition: opacity 0.5s 0.5s; }
body.menu-open .mobile-nav__foot { opacity: 1; }

/* ---------- Hero ----------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: end;
  padding-top: clamp(7rem, 6rem + 6vw, 12rem);
  padding-bottom: clamp(2.5rem, 2rem + 3vw, 5rem);
  gap: var(--gutter);
}
.hero__copy { position: relative; z-index: 3; align-self: center; }
.hero__title { font-size: var(--fs-h1); font-weight: 330; letter-spacing: -0.03em; }
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line > span { display: block; }
.hero__title em { font-style: italic; color: var(--gold); }
.hero__lead { margin-top: 1.6rem; max-width: 46ch; }
.hero__actions { margin-top: 2.4rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }

.hero__visual { position: relative; align-self: stretch; min-height: 60svh; }
.hero__frame {
  position: absolute; inset: 0;
  border-radius: 280px 280px 14px 14px;
  overflow: hidden;
  background: linear-gradient(150deg, var(--bone), var(--blush) 70%, #d8c3b4);
}
.hero__frame img { width: 100%; height: 100%; object-fit: cover; }
.hero__copy, .hero__visual { min-width: 0; }
.hero__meta {
  position: absolute; left: var(--gutter); right: var(--gutter); bottom: clamp(2.5rem,2rem + 3vw,5rem);
  display: flex; flex-wrap: wrap; gap: 1.4rem 2.4rem; z-index: 3;
}
.hero__meta .stat .n { font-family: var(--display); font-size: 2.2rem; line-height: 1; }
.hero__meta .stat .l { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-top: 0.4rem; }

/* Aperture / iris signature motif */
.aperture {
  position: absolute;
  top: clamp(6rem, 5rem + 6vw, 10rem); right: clamp(0rem, -2rem + 6vw, 6rem);
  width: clamp(120px, 18vw, 260px); aspect-ratio: 1;
  z-index: 2; pointer-events: none; color: var(--gold);
}
.aperture svg { width: 100%; height: 100%; }
.aperture .ring { animation: spin 38s linear infinite; transform-origin: center; }
.aperture .ring--rev { animation-duration: 26s; animation-direction: reverse; }

@keyframes spin { to { transform: rotate(360deg); } }

.scroll-cue {
  position: absolute; left: 50%; bottom: 1.6rem; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.6rem; z-index: 3;
  font-size: 0.66rem; letter-spacing: 0.24em; text-transform: uppercase; color: var(--ink-mute);
}
.scroll-cue .bar { width: 1px; height: 42px; background: var(--line); overflow: hidden; }
.scroll-cue .bar::after {
  content: ""; display: block; width: 100%; height: 40%; background: var(--gold);
  animation: scrollcue 2.4s var(--ease) infinite;
}
@keyframes scrollcue { 0% { transform: translateY(-100%);} 60%,100% { transform: translateY(250%);} }

/* ---------- Hero: full-bleed cinematic ------------------------------------- */
.hero-cine {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-cine__media { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.hero-cine__media > img,
.hero-cine__media > video,
.hero-cine__ph {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; transform-origin: 65% 35%;
}
/* Warm, soft, photographic-feeling placeholder until real media is added */
.hero-cine__ph {
  background:
    radial-gradient(42% 52% at 70% 28%, rgba(229,211,197,0.95), transparent 70%),
    radial-gradient(55% 65% at 18% 82%, rgba(234,226,213,0.85), transparent 72%),
    linear-gradient(158deg, var(--bone), var(--blush) 58%, #d7c2b3 100%);
}
.hero-cine__ph::after {
  content: ""; position: absolute; inset: 0; opacity: 0.5; mix-blend-mode: multiply;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.06'/%3E%3C/svg%3E");
}
/* Slow cinematic zoom (Ken Burns) — only with JS + motion allowed */
.js .hero-cine__media > img,
.js .hero-cine__media > video,
.js .hero-cine__ph { animation: kenburns 26s ease-out both; }
@keyframes kenburns { from { transform: scale(1.0); } to { transform: scale(1.09); } }

/* Lightweight motion: a soft warm light slowly drifting over the hero (CSS only).
   Lives above the image, below the scrim. Disabled for reduced-motion. */
.hero-cine__fx {
  position: absolute; inset: -18%; z-index: 1; pointer-events: none;
  background:
    radial-gradient(30% 40% at 28% 30%, rgba(255,249,238,0.72), transparent 60%),
    radial-gradient(26% 34% at 72% 62%, rgba(226,198,158,0.58), transparent 62%),
    radial-gradient(20% 28% at 50% 86%, rgba(255,243,224,0.46), transparent 64%);
  mix-blend-mode: screen; opacity: 0.9; will-change: transform, opacity;
}
/* Second, slower layer drifting the other way → richer, more obvious parallax. */
.hero-cine__fx::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(34% 44% at 60% 22%, rgba(255,246,230,0.5), transparent 62%),
    radial-gradient(28% 36% at 22% 70%, rgba(214,186,150,0.45), transparent 64%);
  mix-blend-mode: screen;
}
.js .hero-cine__fx { animation: heroDrift 15s ease-in-out infinite; }
.js .hero-cine__fx::after { animation: heroDrift2 21s ease-in-out infinite; }
@keyframes heroDrift {
  0%   { transform: translate3d(-7%, -4%, 0) scale(1.04); opacity: 0.6; }
  50%  { transform: translate3d(7%, 5%, 0) scale(1.13); opacity: 1; }
  100% { transform: translate3d(-7%, -4%, 0) scale(1.04); opacity: 0.6; }
}
@keyframes heroDrift2 {
  0%   { transform: translate3d(6%, 3%, 0) scale(1.08); }
  50%  { transform: translate3d(-6%, -4%, 0) scale(1.0); }
  100% { transform: translate3d(6%, 3%, 0) scale(1.08); }
}
@media (prefers-reduced-motion: reduce) { .js .hero-cine__fx, .js .hero-cine__fx::after { animation: none; } }

/* Scrim: keep dark text legible over a light/medium image; fade up from ivory */
.hero-cine__scrim {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(to top, var(--ivory) 2%, rgba(247,243,236,0.72) 20%, rgba(247,243,236,0.12) 48%, rgba(247,243,236,0) 68%),
    linear-gradient(to bottom, rgba(247,243,236,0.55), rgba(247,243,236,0) 16%);
}
.hero-cine__inner {
  position: relative; z-index: 2; width: 100%;
  padding-top: clamp(8rem, 6rem + 6vw, 12rem);
  padding-bottom: clamp(2.5rem, 1.5rem + 4vw, 6rem);
}
.hero-cine__copy { max-width: 50rem; }
.hero-cine__title { font-size: var(--fs-h1); font-weight: 330; letter-spacing: -0.03em; }
.hero-cine__title .line { display: block; overflow: hidden; }
.hero-cine__title em { font-style: italic; color: var(--gold); }
.hero-cine__lead { margin-top: 1.5rem; max-width: 48ch; }
.hero-cine__actions { margin-top: 2.2rem; display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; }
.hero-cine__stats {
  margin-top: 2.6rem; display: flex; flex-wrap: wrap; gap: 1rem 2.4rem;
  border-top: 1px solid var(--line); padding-top: 1.6rem; max-width: 46rem;
}
.hero-cine__stats .stat .n { font-family: var(--display); font-size: 1.5rem; line-height: 1; }
.hero-cine__stats .stat .l { font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-top: 0.4rem; }

/* Dark-image variant: add class hero-cine--dark on the section if you use a dark photo/video */
.hero-cine--dark { color: var(--ivory); }
.hero-cine--dark .hero-cine__scrim {
  background:
    linear-gradient(to top, rgba(18,15,13,0.85) 2%, rgba(18,15,13,0.5) 24%, rgba(18,15,13,0.08) 55%, rgba(18,15,13,0) 72%),
    linear-gradient(to bottom, rgba(18,15,13,0.6), rgba(18,15,13,0.12) 16%, rgba(18,15,13,0) 26%);
}

/* Light header text while sitting over a dark hero (before the header gets its
   scrolled ivory background). Reverts to dark text once scrolled. */
body.hero-dark .site-header:not(.scrolled) .brand__mark,
body.hero-dark .site-header:not(.scrolled) .nav__links a { color: var(--ivory); }
body.hero-dark .site-header:not(.scrolled) .brand__sub { color: rgba(247,243,236,0.7); }
body.hero-dark .site-header:not(.scrolled) .nav__links a::after { background: var(--ivory); }
body.hero-dark .site-header:not(.scrolled) .menu-toggle span { background: var(--ivory); }
.hero-cine--dark .hero-cine__title em { color: var(--gold-soft); }
.hero-cine--dark .hero-cine__lead { color: rgba(247,243,236,0.82); }
.hero-cine--dark .hero-cine__stats { border-color: rgba(247,243,236,0.25); }
.hero-cine--dark .hero-cine__stats .stat .l { color: rgba(247,243,236,0.6); }

/* Load reveal (mirrors the .hero behavior) */
.js .hero-cine [data-load] { opacity: 0; transform: translateY(26px); filter: blur(10px); }
.hero-cine.loaded [data-load] { opacity: 1; transform: none; filter: none; transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 1.1s var(--ease); }
.hero-cine.loaded [data-load="1"] { transition-delay: 0.15s; }
.hero-cine.loaded [data-load="2"] { transition-delay: 0.30s; }
.hero-cine.loaded [data-load="3"] { transition-delay: 0.45s; }
.hero-cine.loaded [data-load="4"] { transition-delay: 0.60s; }
.hero-cine.loaded [data-load="5"] { transition-delay: 0.78s; }

@media (max-width: 540px) {
  .hero-cine__stats { gap: 0.9rem 1.6rem; }
  .hero-cine__stats .stat .n { font-size: 1.25rem; }
}
@media (prefers-reduced-motion: reduce) {
  .js .hero-cine__media > * { animation: none !important; }
}

/* ---------- Marquee strip -------------------------------------------------- */
.marquee {
  position: relative;
  border-block: 1px solid var(--line);
  overflow: hidden; padding-block: 1.3rem;
  background: var(--ivory-deep);
}
.marquee__track { display: flex; gap: 3.5rem; width: max-content; animation: marquee 38s linear infinite; }
.marquee:hover .marquee__track, .marquee.paused .marquee__track { animation-play-state: paused; }
/* Pause control — WCAG 2.2.2 requires a pause mechanism for touch/keyboard, not just hover. */
.marquee__toggle {
  position: absolute; right: clamp(1rem, 4vw, 2.5rem); top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px; border-radius: 50%; border: 1px solid var(--line);
  background: var(--ivory); color: var(--ink-mute); display: grid; place-items: center;
  cursor: pointer; transition: color 0.3s, border-color 0.3s;
}
.marquee__toggle:hover { color: var(--gold); border-color: var(--gold); }
.marquee__toggle svg { display: block; }
.marquee__toggle .icon-play { display: none; }
.marquee.paused .icon-pause { display: none; }
.marquee.paused .icon-play { display: block; }
.marquee__item {
  font-family: var(--display); font-size: clamp(1.1rem, 0.9rem + 0.8vw, 1.5rem);
  font-style: italic; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 3.5rem;
}
.marquee__item::after { content: "✦"; color: var(--gold); font-style: normal; font-size: 0.7em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Section header pattern ---------------------------------------- */
.sec-head { display: grid; grid-template-columns: 1fr; gap: 1.2rem; margin-bottom: clamp(2.5rem,2rem + 3vw,4.5rem); }
.sec-head.split { grid-template-columns: 1fr 1fr; align-items: end; gap: 2rem; }
.sec-head h2 { max-width: 18ch; }

/* ---------- Philosophy / intro -------------------------------------------- */
.intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 1rem + 5vw, 6rem); align-items: start; }
.intro__statement { font-family: var(--display); font-weight: 330; font-size: var(--fs-h2); line-height: 1.12; letter-spacing: -0.02em; }
.intro__statement em { font-style: italic; color: var(--gold); }
.intro__aside { padding-top: 0.6rem; }
.intro__aside p { color: var(--ink-soft); }
.signature {
  margin-top: 2rem; font-family: var(--display); font-style: italic; font-size: 1.5rem;
  color: var(--ink); transform: rotate(-4deg); display: inline-block;
}

/* ---------- Procedures grid (editorial catalogue, no table borders) ------- */
.proc-grid { display: grid; grid-template-columns: repeat(3, 1fr); column-gap: clamp(1.5rem, 1rem + 2vw, 3.5rem); row-gap: 0; }
.proc {
  position: relative;
  display: flex; flex-direction: column;
  padding: 1.9rem 0 2.1rem;
  border-top: 1px solid var(--line);
  transition: transform 0.4s var(--ease);
}
.proc::after {
  content: ""; position: absolute; top: -1px; left: 0;
  width: 0; height: 1px; background: var(--gold); transition: width 0.55s var(--ease);
}
.proc:hover { transform: translateY(-4px); }
.proc:hover::after { width: 100%; }
.proc__num { font-size: 0.72rem; letter-spacing: 0.16em; color: var(--gold); font-weight: 600; text-transform: uppercase; }
.proc__title { font-family: var(--display); font-size: clamp(1.4rem,1.1rem + 1vw,1.9rem); font-weight: 400; margin-top: 1rem; transition: color 0.3s var(--ease); }
.proc:hover .proc__title { color: var(--gold); }
.proc__desc { color: var(--ink-mute); margin-top: 0.6rem; font-size: 0.95rem; }
.proc__go { margin-top: auto; padding-top: 1.6rem; display: inline-flex; align-items: center; gap: 0.6rem; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; font-weight: 600; color: var(--ink); }
.proc__go .arrow { transition: transform 0.4s var(--ease); }
.proc:hover .proc__go .arrow { transform: translateX(5px); }

/* ---------- Journey (full-width stepped band — real sequence) ------------- */
.journey-band { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0 clamp(1.5rem, 1rem + 2vw, 3.5rem); margin-top: clamp(2.5rem, 2rem + 3vw, 4.5rem); }
.jstep { border-top: 1px solid var(--line); padding-top: 1.7rem; }
.jstep__n { font-family: var(--display); font-size: clamp(1.8rem, 1.4rem + 1.2vw, 2.4rem); color: var(--gold); font-weight: 360; line-height: 1; }
.jstep__title { font-family: var(--display); font-size: var(--fs-h3); font-weight: 400; margin-top: 0.9rem; }
.jstep__body { color: var(--ink-soft); margin-top: 0.6rem; font-size: 0.97rem; }
@media (max-width: 760px) { .journey-band { grid-template-columns: 1fr; } .jstep { padding-top: 1.4rem; } }

/* ---------- Surgeon bio ---------------------------------------------------- */
.bio { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: clamp(2rem,1rem + 5vw,6rem); align-items: center; }
.bio__portrait { aspect-ratio: 4/5; border-radius: 6px 6px 200px 200px; overflow: hidden; background: linear-gradient(160deg, var(--bone), var(--blush)); }
.bio__portrait img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 14%; display: block; }
/* Cut-out variant — transparent PNG floating on a warm gradient (matches the About page). */
.bio__portrait--cutout { position: relative; aspect-ratio: 1 / 1.08; border-radius: 18px;
  background: radial-gradient(122% 92% at 62% 15%, var(--blush), var(--bone) 55%, var(--ivory-deep)); }
.bio__portrait--cutout img { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 97%; height: auto; max-width: none; object-fit: contain;
  filter: drop-shadow(0 20px 34px rgba(28,24,21,0.20)); }
.bio__credentials { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.8rem; }
.chip { font-size: 0.72rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; color: var(--ink-soft); border: 1px solid var(--line); border-radius: 100px; padding: 0.5em 1em; }

/* ---------- Gallery teaser ------------------------------------------------- */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.gallery figure { position: relative; aspect-ratio: 3/4; border-radius: 6px; overflow: hidden; background: linear-gradient(160deg, var(--bone), var(--blush)); }
.gallery figure:nth-child(even) { aspect-ratio: 3/4.4; }
.gallery .ba { position: absolute; inset: 0; display: flex; }
.gallery .ba span { flex: 1; display: grid; place-items: center; font-size: 0.66rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.85); align-self: end; padding-bottom: 1rem; }
.gallery figcaption { position: absolute; left: 0.8rem; top: 0.8rem; font-size: 0.66rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-soft); background: rgba(247,243,236,0.85); padding: 0.3em 0.7em; border-radius: 100px; }

/* ---------- Testimonials --------------------------------------------------- */
.quote-wrap { max-width: 30ch; }
/* Reviews CTA — link out to Google/Yelp instead of republishing quotes on-site. */
.reviews-cta { max-width: 720px; margin-inline: auto; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 1.15rem;
  background: var(--white); border: 1px solid var(--line-soft); border-radius: 20px;
  padding: clamp(2.4rem, 1.6rem + 3vw, 4rem); box-shadow: 0 24px 60px -40px rgba(28,24,21,0.35); }
.reviews-cta__score { display: flex; align-items: baseline; gap: 0.7rem; }
.reviews-cta__stars { color: var(--gold); letter-spacing: 0.22em; font-size: 1.15rem; }
.reviews-cta__num { font-family: var(--display); font-size: 2rem; font-weight: 400; color: var(--ink); line-height: 1; }
.reviews-cta__lead { color: var(--ink-soft); font-size: var(--fs-lead); line-height: 1.55; }
.reviews-cta__actions { display: flex; flex-wrap: wrap; gap: 0.85rem; justify-content: center; margin-top: 0.5rem; }

.testi { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1.25rem,1rem + 1.5vw,2rem); }
.testi__card { position: relative; background: var(--ivory-deep); border-radius: 14px; padding: clamp(1.8rem,1.2rem + 2vw,2.6rem); display: flex; flex-direction: column; gap: 1.1rem; overflow: hidden; }
.testi__card::before { content: "\201C"; position: absolute; top: -0.32em; right: 0.12em; font-family: var(--display); font-size: 7rem; line-height: 1; color: var(--gold); opacity: 0.14; pointer-events: none; }
.testi__stars { color: var(--gold); letter-spacing: 0.2em; font-size: 0.8rem; position: relative; }
.testi__text { font-family: var(--display); font-size: clamp(1.05rem,0.95rem + 0.5vw,1.3rem); font-weight: 380; line-height: 1.45; font-style: italic; color: var(--ink); position: relative; }
.testi__who { font-size: 0.8rem; letter-spacing: 0.04em; color: var(--ink-mute); margin-top: auto; position: relative; }
.testi__who strong { color: var(--ink); font-weight: 600; display: block; letter-spacing: 0.02em; }

/* ---------- CTA / Consultation -------------------------------------------- */
.consult { background: var(--ink); color: var(--ivory); border-radius: 20px; overflow: hidden; }
.consult__inner { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.consult__copy { padding: clamp(3rem,2rem + 4vw,5rem); display: flex; flex-direction: column; justify-content: center; }
.consult__copy .eyebrow { color: var(--gold-soft); }
.consult__copy h2 { color: var(--ivory); font-weight: 330; }
.consult__copy h2 em { font-style: italic; color: var(--gold-soft); }
.consult__copy p { color: rgba(247,243,236,0.72); margin-top: 1.2rem; max-width: 42ch; }
.consult__contact { margin-top: 2.4rem; display: grid; gap: 1rem; }
.consult__contact a { display: inline-flex; gap: 0.8rem; align-items: center; color: rgba(247,243,236,0.9); font-size: 0.95rem; }
.consult__contact a:hover { color: var(--gold-soft); }
.consult__form { padding: clamp(3rem,2rem + 4vw,5rem); background: rgba(255,255,255,0.03); border-left: 1px solid rgba(255,255,255,0.08); display: flex; flex-direction: column; justify-content: center; }

/* Form */
.field { position: relative; margin-bottom: 1.5rem; }
.field input, .field select, .field textarea {
  width: 100%; background: transparent; border: 0; border-bottom: 1px solid rgba(247,243,236,0.45);
  color: var(--ivory); padding: 0.9rem 0 0.7rem; font-size: 1rem; font-family: var(--sans);
  transition: border-color 0.3s;
}
.field textarea { resize: vertical; min-height: 70px; }
.field select option { color: var(--ink); }
.field label {
  position: absolute; left: 0; top: 0.9rem; color: rgba(247,243,236,0.5);
  pointer-events: none; transition: transform 0.3s var(--ease), font-size 0.3s, color 0.3s; transform-origin: left;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold-soft); }
.field input:focus + label, .field input:not(:placeholder-shown) + label,
.field textarea:focus + label, .field textarea:not(:placeholder-shown) + label,
.field select:focus + label, .field select.filled + label {
  transform: translateY(-1.5rem) scale(0.74); color: var(--gold-soft);
}
.field input::placeholder, .field textarea::placeholder { color: transparent; }
.field--error input, .field--error select, .field--error textarea { border-color: #E0805F; }
.field__msg { font-size: 0.72rem; color: #E0A07F; margin-top: 0.4rem; min-height: 1em; letter-spacing: 0.02em; }
.form__note { font-size: 0.74rem; color: rgba(247,243,236,0.58); margin-top: 1rem; line-height: 1.5; }
.form__err { color: #E8A07F; font-size: 0.82rem; margin-top: 0.9rem; line-height: 1.5; }
.hp { position: absolute; left: -9999px; }
.form__success {
  display: none; text-align: center; padding: 2rem 0;
}
.form__success.show { display: block; animation: fadeUp 0.6s var(--ease); }
.form__success .check { width: 54px; height: 54px; border-radius: 50%; border: 1px solid var(--gold-soft); display: grid; place-items: center; margin: 0 auto 1.2rem; color: var(--gold-soft); }

/* ---------- Footer --------------------------------------------------------- */
.site-footer { background: var(--ivory-deep); border-top: 1px solid var(--line); padding-top: clamp(3.5rem,2rem + 5vw,6rem); }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 4rem; }
.footer__brand .brand__mark { font-size: 2rem; }
.footer__brand p { color: var(--ink-mute); margin-top: 1.2rem; max-width: 30ch; font-size: 0.95rem; }
.footer__col h4 { font-family: var(--sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); font-weight: 700; margin-bottom: 1.2rem; }
.footer__col a, .footer__col address { display: block; color: var(--ink-soft); font-size: 0.95rem; font-style: normal; margin-bottom: 0.7rem; transition: color 0.3s; }
.footer__col a:hover { color: var(--gold); }
.footer__bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; padding-block: 1.8rem; border-top: 1px solid var(--line); font-size: 0.78rem; color: var(--ink-mute); }
.footer__bottom .disclaimer { max-width: 60ch; line-height: 1.5; }

/* ---------- Scroll reveal -------------------------------------------------- */
/* Hidden state only applies when JS is present (.js on <html>); without JS all
   content stays visible, never trapped at opacity:0. */
.js .reveal { opacity: 0; transform: translateY(22px); filter: blur(7px); transition: opacity var(--reveal-dur) var(--ease), transform var(--reveal-dur) var(--ease), filter var(--reveal-dur) var(--ease); }
.reveal.in { opacity: 1; transform: none; filter: none; }
.reveal[data-d="1"] { transition-delay: 0.08s; }
.reveal[data-d="2"] { transition-delay: 0.16s; }
.reveal[data-d="3"] { transition-delay: 0.24s; }
.reveal[data-d="4"] { transition-delay: 0.32s; }
.reveal[data-d="5"] { transition-delay: 0.40s; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }

/* Hero load focus animation */
.js .hero [data-load] { opacity: 0; transform: translateY(26px); filter: blur(10px); }
.hero.loaded [data-load] { opacity: 1; transform: none; filter: none; transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 1.1s var(--ease); }
.hero.loaded [data-load="1"] { transition-delay: 0.15s; }
.hero.loaded [data-load="2"] { transition-delay: 0.30s; }
.hero.loaded [data-load="3"] { transition-delay: 0.45s; }
.hero.loaded [data-load="4"] { transition-delay: 0.60s; }
.hero.loaded [data-load="5"] { transition-delay: 0.75s; }
.js .hero__frame { clip-path: inset(0 0 100% 0); transition: clip-path 1.3s var(--ease) 0.2s; }
.hero.loaded .hero__frame { clip-path: inset(0 0 0% 0); }

/* ---------- Interior page components --------------------------------------- */
/* Spec row */
.specs { display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; }
.specs > div { padding: clamp(1.2rem,1rem + 1vw,1.8rem); border-right: 1px solid var(--line); }
.specs > div:last-child { border-right: 0; }
.specs dt { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; }
.specs dd { font-family: var(--display); font-size: clamp(1.1rem,0.9rem + 0.8vw,1.5rem); margin-top: 0.5rem; font-weight: 380; }

/* Prose */
.prose { max-width: 68ch; }
.prose p { color: var(--ink-soft); margin-bottom: 1.1rem; }
.prose p:first-of-type { font-size: var(--fs-lead); color: var(--ink); line-height: 1.55; }
.prose h3 { font-size: var(--fs-h3); margin: 2.4rem 0 1rem; }
.prose ul.ticks { margin: 1.2rem 0; display: grid; gap: 0.7rem; }
.prose ul.ticks li { position: relative; padding-left: 1.8rem; color: var(--ink-soft); }
.prose ul.ticks li::before { content: ""; position: absolute; left: 0; top: 0.55em; width: 9px; height: 9px; border: 1px solid var(--gold); border-radius: 50%; }

/* Two-column interior layout */
.split-col { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem,1rem + 4vw,5rem); align-items: start; }
.split-col .sticky { position: sticky; top: 6rem; }

/* Ingredients framework grid */
.ingredients { display: grid; grid-template-columns: 1fr 1fr; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: 10px; overflow: hidden; padding: 0; margin: 0; }
.ingredients li { background: var(--ivory); padding: clamp(1.2rem,1rem + 1vw,1.6rem); list-style: none; }
.ingredients .ing-n { font-size: 0.7rem; letter-spacing: 0.16em; color: var(--gold); font-weight: 600; }
.ingredients .ing-cause { font-family: var(--display); font-size: clamp(1.1rem,1rem + 0.4vw,1.3rem); font-weight: 420; margin: 0.5rem 0 0.35rem; }
.ingredients .ing-fix { font-size: 0.9rem; color: var(--ink-mute); }
.ingredients .ing-fix b { color: var(--ink-soft); font-weight: 600; }
@media (max-width: 640px) { .ingredients { grid-template-columns: 1fr; } }

/* Timeline */
.timeline { border-top: 1px solid var(--line); }
.timeline__row { display: grid; grid-template-columns: 8rem 1fr; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.timeline__when { font-family: var(--display); color: var(--gold); font-size: 1.1rem; }
.timeline__what strong { display: block; margin-bottom: 0.3rem; }
.timeline__what p { color: var(--ink-mute); font-size: 0.95rem; }

/* FAQ via native details */
.faq { border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  list-style: none; cursor: pointer; padding: 1.5rem 0; display: flex;
  justify-content: space-between; align-items: center; gap: 1.5rem;
  font-family: var(--display); font-size: clamp(1.1rem,1rem + 0.6vw,1.4rem); font-weight: 400;
  transition: color 0.3s;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--gold); }
.faq summary .icon { flex-shrink: 0; width: 22px; height: 22px; position: relative; }
.faq summary .icon::before, .faq summary .icon::after { content: ""; position: absolute; background: var(--gold); transition: transform 0.35s var(--ease); }
.faq summary .icon::before { top: 10px; left: 0; width: 22px; height: 1.5px; }
.faq summary .icon::after { top: 0; left: 10px; width: 1.5px; height: 22px; }
.faq details[open] summary .icon::after { transform: scaleY(0); }
.faq__body { padding: 0 0 1.6rem; color: var(--ink-soft); max-width: 70ch; animation: fadeUp 0.4s var(--ease); }

/* Compact CTA band (interior) */
.cta-band { background: var(--ink); color: var(--ivory); border-radius: 16px; padding: clamp(2.4rem,1.5rem + 4vw,4.5rem); text-align: center; }
.cta-band .eyebrow { color: var(--gold-soft); justify-content: center; }
.cta-band h2 { color: var(--ivory); font-weight: 330; margin: 1rem auto 0; max-width: 18ch; }
.cta-band h2 em { font-style: italic; color: var(--gold-soft); }
.cta-band p { color: rgba(247,243,236,0.72); max-width: 46ch; margin: 1.2rem auto 0; }
.cta-band .actions { margin-top: 2rem; display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.cta-band .btn--ghost { color: var(--ivory); border-color: rgba(247,243,236,0.3); }
.cta-band .btn--ghost::after { background: var(--ivory); }
.cta-band .btn--ghost:hover { color: var(--ink); }

/* Next procedures */
.next-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.next-card { border: 1px solid var(--line); border-radius: 10px; padding: 1.8rem; transition: background 0.4s var(--ease), transform 0.4s var(--ease); }
.next-card:hover { background: var(--ivory-deep); transform: translateY(-3px); }
.next-card .k { font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.next-card h4 { font-family: var(--display); font-size: 1.3rem; font-weight: 400; margin-top: 0.8rem; }

@media (max-width: 860px) {
  .specs { grid-template-columns: 1fr 1fr; }
  .specs > div:nth-child(2) { border-right: 0; }
  .specs > div:nth-child(1), .specs > div:nth-child(2) { border-bottom: 1px solid var(--line); }
  .split-col { grid-template-columns: 1fr; }
  .split-col .sticky { position: static; }
  .timeline__row { grid-template-columns: 1fr; gap: 0.3rem; }
  .next-grid { grid-template-columns: 1fr; }
}

/* ---------- Page hero (interior pages) ------------------------------------ */
.page-hero { padding-top: clamp(8rem, 7rem + 6vw, 13rem); padding-bottom: clamp(2.5rem,2rem + 3vw,4rem); }
.page-hero .crumb { font-size: 0.76rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-mute); margin-bottom: 1.4rem; }
.page-hero .crumb a:hover { color: var(--gold); }
.page-hero h1 { font-size: var(--fs-h1); font-weight: 330; max-width: 16ch; }
.page-hero .lead { margin-top: 1.4rem; }

/* ---------- About page ---------------------------------------------------- */
.about-hero { display: grid; grid-template-columns: 1fr 0.92fr; gap: clamp(2rem, 1rem + 4vw, 5rem); align-items: center; }
.about-hero__panel {
  position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 1 / 1.06;
  background: radial-gradient(125% 95% at 66% 16%, var(--blush), var(--bone) 56%, var(--ivory-deep));
}
.about-hero__panel img {
  position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
  width: 96%; max-width: none; height: auto;
  filter: drop-shadow(0 20px 34px rgba(28,24,21,0.20));
}
/* "Trained at" wordmark strip */
.creds-strip { display: flex; flex-wrap: wrap; align-items: center; gap: 0.6rem 1.6rem; border-block: 1px solid var(--line); padding-block: 1.5rem; }
.creds-strip .lbl { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-mute); font-weight: 600; flex-shrink: 0; }
.creds-strip ul { display: flex; flex-wrap: wrap; align-items: center; gap: 0.4rem 1.4rem; }
.creds-strip li { font-family: var(--display); font-size: clamp(1rem, 0.9rem + 0.4vw, 1.25rem); color: var(--ink-soft); position: relative; }
.creds-strip li + li::before { content: "·"; position: absolute; left: -0.85rem; color: var(--gold); }
@media (max-width: 860px) {
  .about-hero { grid-template-columns: 1fr; align-items: start; gap: 2.2rem; }
  /* On mobile the image flows normally (panel sizes to it); the cutout's transparency
     lets the warm gradient show around him. */
  .about-hero__panel { max-width: 360px; margin-inline: auto; order: -1; aspect-ratio: auto; }
  .about-hero__panel img { position: static; transform: none; width: 100%; }
}

/* ---------- Blog ----------------------------------------------------------- */
.post-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(1.5rem,1rem + 2vw,2.5rem); }
.post-card { display: flex; flex-direction: column; border-bottom: 1px solid var(--line); padding-bottom: 1.6rem; }
.post-card__cover { aspect-ratio: 16/10; border-radius: 8px; overflow: hidden; background: linear-gradient(150deg, var(--bone), var(--blush)); margin-bottom: 1.4rem; position: relative; }
.post-card__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.post-card:hover .post-card__cover img { transform: scale(1.04); }
.post-card__meta { font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.post-card__title { font-family: var(--display); font-size: clamp(1.4rem,1.1rem + 1vw,1.9rem); font-weight: 400; margin: 0.7rem 0; line-height: 1.12; }
.post-card a.cover-link { display: block; }
.post-card__excerpt { color: var(--ink-mute); font-size: 0.97rem; }
.post-card__more { margin-top: 1rem; }
/* Text-only cards (no cover image): a clean editorial entry with a top rule. */
.post-card--textonly { border-top: 1px solid var(--line); padding-top: 1.5rem; }
.post-card--textonly .post-card__title { font-size: clamp(1.5rem,1.15rem + 1.2vw,2.1rem); }
.post-card.feature { grid-column: 1 / -1; display: grid; grid-template-columns: 1.1fr 0.9fr; gap: clamp(1.5rem,1rem + 3vw,3.5rem); align-items: center; border-bottom: 0; padding-bottom: 0; }
.post-card.feature .post-card__cover { aspect-ratio: 4/3; margin-bottom: 0; }
.post-card.feature .post-card__title { font-size: clamp(1.8rem,1.3rem + 2vw,2.8rem); }

/* Article */
.article { max-width: 72ch; margin-inline: auto; }
.article__head { text-align: center; max-width: 60ch; margin: 0 auto clamp(2.5rem,2rem + 3vw,4rem); }
.article__meta { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); font-weight: 600; margin-bottom: 1.2rem; }
.article__cover { aspect-ratio: 16/9; border-radius: 10px; overflow: hidden; background: linear-gradient(150deg, var(--bone), var(--blush)); margin-bottom: clamp(2.5rem,2rem + 3vw,4rem); }
.article__cover img { width: 100%; height: 100%; object-fit: cover; }
.article__body { font-size: 1.12rem; line-height: 1.75; color: var(--ink-soft); }
.article__body > *:first-child { margin-top: 0; }
.article__body h2 { font-size: var(--fs-h3); color: var(--ink); margin: 2.4rem 0 1rem; }
.article__body h3 { font-family: var(--display); font-size: 1.4rem; color: var(--ink); margin: 2rem 0 0.8rem; font-weight: 420; }
.article__body p { margin-bottom: 1.3rem; }
.article__body a { color: var(--gold); text-decoration: underline; text-underline-offset: 3px; }
.article__body ul, .article__body ol { margin: 0 0 1.3rem 1.2rem; display: grid; gap: 0.5rem; }
.article__body li { padding-left: 0.3rem; }
.article__body blockquote { border-left: 2px solid var(--gold); padding-left: 1.4rem; margin: 1.8rem 0; font-family: var(--display); font-style: italic; font-size: 1.3rem; color: var(--ink); }
.article__body img { border-radius: 8px; margin: 1.8rem 0; }
.article__body strong { color: var(--ink); font-weight: 600; }
.loading-note { text-align: center; color: var(--ink-mute); padding: 3rem 0; }

@media (max-width: 860px) {
  .post-grid { grid-template-columns: 1fr; }
  .post-card.feature { grid-template-columns: 1fr; }
  .post-card.feature .post-card__cover { aspect-ratio: 16/10; }
}

/* ---------- Responsive ----------------------------------------------------- */
@media (max-width: 1024px) {
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .testi { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 860px) {
  .nav__links, .nav__cta { display: none; }
  .menu-toggle { display: block; }
  .hero { grid-template-columns: 1fr; align-items: start; min-height: auto; }
  .hero__visual { min-height: 56svh; order: 2; }
  .hero__meta { position: static; padding-top: 1.6rem; }
  .aperture { top: 5rem; right: 0; opacity: 0.5; }
  .intro__grid, .journey, .bio, .consult__inner { grid-template-columns: 1fr; }
  .sec-head.split { grid-template-columns: 1fr; }
  .journey__media { position: static; order: -1; }
  .bio__portrait { max-width: 420px; }
  .consult__form { border-left: 0; border-top: 1px solid rgba(255,255,255,0.08); }
  .scroll-cue { display: none; }
}
@media (max-width: 540px) {
  .proc-grid { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .hero__meta { gap: 1.6rem; }
  .hero__frame { border-radius: 180px 180px 12px 12px; }
}

/* ---------- Reduced motion ------------------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
  .reveal, .hero [data-load] { opacity: 1 !important; transform: none !important; filter: none !important; }
  .hero__frame { clip-path: none !important; }
  .aperture .ring { animation: none !important; }
  .marquee__track { animation: none !important; }
}
