/* ==========================================================
   DENTAL STUDIO — Award-winning private dental practice
   Burgundy + cream + gold. Glass morphism. Editorial type.
   ========================================================== */

:root {
  /* ===== Brand: black + hot pink + bone ===== */
  /* Light surfaces */
  --bg: #f5f3ef;            /* warm bone */
  --bg-alt: #ebe7e0;        /* deeper bone */
  --bg-paper: #ffffff;      /* clean paper */
  /* Dark surfaces */
  --ink-bg: #0c0c0e;        /* near-black */
  --ink-bg-2: #18181b;      /* charcoal surface */
  --ink-bg-3: #232327;      /* elevated dark surface */
  /* Pink */
  --primary: #ff3d8a;       /* hot pink (brand accent) */
  --primary-2: #e6286f;     /* hover pink */
  --primary-deep: #b81356;  /* deep pink for type on light */
  --primary-soft: #ffe1ec;  /* whisper pink */
  --accent: #ff3d8a;        /* alias */
  --accent-deep: #b81356;   /* alias */
  /* Text */
  --ink: #0c0c0e;
  --ink-soft: #5a5a62;
  --cream: #f5f3ef;
  --cream-soft: rgba(245,243,239,0.72);
  /* Hairlines */
  --hairline: rgba(12, 12, 14, 0.10);
  --hairline-soft: rgba(12, 12, 14, 0.05);
  --hairline-dark: rgba(255, 255, 255, 0.10);
  --hairline-dark-soft: rgba(255, 255, 255, 0.05);

  /* Glass */
  --glass-bg: rgba(245,243,239,0.6);
  --glass-bg-dark: rgba(27, 27, 27, 0.45);
  --glass-border: rgba(255, 255, 255, 0.5);
  --glass-border-dark: rgba(255, 255, 255, 0.10);

  /* Type */
  --serif: "Fraunces", "Instrument Serif", Georgia, serif;
  --serif-display: "Instrument Serif", "Fraunces", Georgia, serif;
  --sans: "Geist", "Manrope", -apple-system, BlinkMacSystemFont, "SF Pro Text", system-ui, sans-serif;

  /* Layout */
  --maxw: 1320px;
  --gutter: 28px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--sans);
  background: var(--bg-paper);
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: "ss01", "ss02", "cv11";
  overflow-x: hidden;
  width: 100%;
}

img, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

::selection { background: var(--primary); color: var(--bg); }

/* Subtle film grain on the whole page — adds warmth */
body::after {
  content: "";
  position: fixed; inset: 0; pointer-events: none; z-index: 2000;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0  0 0 0 0 0  0 0 0 0 0  0 0 0 0.35 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  opacity: 0.035;
  mix-blend-mode: multiply;
}

/* =====================================
   TYPOGRAPHY
   ===================================== */
.serif { font-family: var(--serif); font-weight: 350; letter-spacing: -0.02em; }
.serif-display { font-family: var(--serif-display); font-weight: 400; letter-spacing: -0.015em; }
.italic { font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--accent-deep);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
}
.eyebrow.on-dark { color: var(--accent); }

.h-display {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(48px, 7.2vw, 116px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--primary);
}
.h-display em {
  font-style: italic;
  font-weight: 400;
  font-family: var(--serif-display);
  font-variation-settings: "opsz" 144;
  color: var(--accent-deep);
}

.h-section {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(36px, 5.2vw, 68px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--primary);
}
.h-section em {
  font-style: italic;
  font-weight: 400;
  font-family: var(--serif-display);
  color: var(--accent-deep);
}
.h-section.on-dark { color: var(--bg-paper); }
.h-section.on-dark em { color: var(--accent); }

/* =====================================
   CONTAINER + LAYOUT
   ===================================== */
.container {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

section {
  padding: 120px 0;
  position: relative;
}

/* =====================================
   BUTTONS
   ===================================== */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  font-family: var(--sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  transition: all 0.4s var(--ease-out);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  cursor: pointer;
}
.btn .arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: currentColor;
  margin-right: -8px;
  transition: transform 0.4s var(--ease-out);
}
.btn .arrow svg { width: 10px; height: 10px; }
.btn:hover .arrow { transform: translateX(4px) rotate(-45deg); }

.btn-primary {
  background: var(--primary);
  color: var(--bg-paper);
}
.btn-primary .arrow { background: var(--bg-paper); }
.btn-primary .arrow svg { color: var(--primary); }
.btn-primary:hover {
  background: var(--primary-2);
  transform: translateY(-2px);
  box-shadow: 0 18px 40px -10px rgba(255,61,138,0.45);
}

.btn-glass {
  background: rgba(255,255,255,0.75);
  color: var(--ink);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(12,12,14,0.08);
}
.btn-glass .arrow { background: var(--ink); }
.btn-glass .arrow svg { color: var(--bg-paper); }
.btn-glass:hover { background: var(--bg-paper); border-color: rgba(12,12,14,0.18); }

.btn-glass-dark {
  background: rgba(255,255,255,0.06);
  color: var(--cream);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.18);
}
.btn-glass-dark .arrow { background: var(--bg-paper); }
.btn-glass-dark .arrow svg { color: var(--ink); }
.btn-glass-dark:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.30); }

.btn-ghost {
  color: var(--ink);
  border-color: rgba(12,12,14,0.18);
  background: transparent;
}
.btn-ghost .arrow { background: var(--ink); }
.btn-ghost .arrow svg { color: var(--bg-paper); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(12,12,14,0.04); }

/* gold kept as alias for back-compat - identical to primary */
.btn-gold { background: var(--primary); color: var(--bg-paper); }
.btn-gold .arrow { background: var(--bg-paper); }
.btn-gold .arrow svg { color: var(--primary); }
.btn-gold:hover { background: var(--primary-2); transform: translateY(-2px); box-shadow: 0 18px 40px -10px rgba(255,61,138,0.45); }

/* =====================================
   TOP BAR
   ===================================== */
.top-bar {
  background: var(--ink-bg);
  color: rgba(245,243,239,0.85);
  font-size: 12.5px;
  padding: 11px 0;
  letter-spacing: 0.02em;
  position: relative;
  z-index: 110;
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.top-bar a { transition: color 0.2s; }
.top-bar a:hover { color: var(--accent); }
.top-bar .phones { display: flex; gap: 24px; align-items: center; flex-wrap: wrap; }
.top-bar .phones .lbl { color: var(--accent); font-weight: 500; margin-right: 8px; letter-spacing: 0.06em; text-transform: uppercase; font-size: 10.5px; }
.top-bar .pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 4px 12px 4px 4px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
}
.top-bar .pill .dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent);
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--bg-paper);
  font-size: 9px;
}
.top-bar .socials { display: flex; gap: 10px; }
.top-bar .socials a {
  width: 26px; height: 26px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.06);
  transition: all 0.3s;
}
.top-bar .socials a:hover { background: var(--accent); color: var(--bg-paper); }
.top-bar .socials svg { width: 11px; height: 11px; fill: currentColor; }

/* =====================================
   NAV — GLASS MORPHISM
   ===================================== */
.nav-shell {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: all 0.4s var(--ease-out);
  padding: 22px 0;
  background: transparent;
  border-bottom: 1px solid transparent;
}
.nav-shell.scrolled {
  padding: 14px 0;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-bottom: 1px solid rgba(12,12,14,0.06);
}
.nav-shell.over-dark:not(.scrolled) {
  /* When over the dark hero, no background but white text */
}
.nav-shell.over-dark:not(.scrolled) .nav-links a { color: rgba(255,255,255,0.78); }
.nav-shell.over-dark:not(.scrolled) .nav-links a:hover { color: var(--bg-paper); }
.nav-shell.over-dark:not(.scrolled) .nav-logo .logo-img { filter: brightness(0) invert(1) opacity(0.96); }
.nav-shell.over-dark:not(.scrolled) .menu-toggle { background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.16); }
.nav-shell.over-dark:not(.scrolled) .menu-toggle .bar { background: var(--bg-paper); }

.nav-glass {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}
/* (nav-shell handles its own scrolled chrome now) */

.nav-shell.on-dark .nav-glass {
  background: rgba(27,27,27, 0.45);
  border-color: rgba(255,255,255,0.14);
  color: var(--bg-paper);
}
.nav-shell.on-dark .nav-logo { color: var(--bg-paper); }
.nav-shell.on-dark .nav-links a { color: rgba(245,243,239,0.88); }
.nav-shell.on-dark .nav-links a:hover { color: var(--bg-paper); }
.nav-shell.on-dark .menu-toggle .bar { background: var(--bg-paper); }

@media (max-width: 1100px) {
  .nav-shell { padding-left: var(--gutter); padding-right: var(--gutter); }
}

.nav-logo {
  display: inline-flex; align-items: center;
  color: var(--primary);
  flex-shrink: 0;
  text-decoration: none;
}
.nav-logo .logo-img {
  height: 44px;
  width: auto;
  display: block;
  transition: opacity 0.3s;
}
.nav-logo:hover .logo-img { opacity: 0.85; }

.nav-logo.is-light .logo-img {
  /* Tint the original burgundy logo to cream-white for dark backgrounds */
  filter: brightness(0) invert(1) opacity(0.95);
}

@media (max-width: 720px) {
  .nav-logo .logo-img { height: 38px; }
}

.nav-links { display: flex; gap: 4px; align-items: center; flex: 1; justify-content: center; }
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  transition: all 0.3s;
  position: relative;
  white-space: nowrap;
}
.nav-links a:hover { background: rgba(201,59,122,0.07); color: var(--primary); }
.nav-links a.has-sub { display: inline-flex; align-items: center; gap: 6px; }
.nav-links a.has-sub::after {
  content: ""; width: 6px; height: 6px;
  border-right: 1.4px solid currentColor;
  border-bottom: 1.4px solid currentColor;
  transform: rotate(45deg);
  transition: transform 0.3s;
  margin-bottom: 3px;
  opacity: 0.6;
}

.nav-cta { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.nav-cta .btn { padding: 12px 22px; font-size: 13px; }

/* HAMBURGER */
.menu-toggle {
  display: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  background: var(--primary);
  align-items: center; justify-content: center;
  position: relative;
  transition: all 0.4s var(--ease-out);
  flex-shrink: 0;
}
.menu-toggle:hover { background: var(--ink); transform: scale(1.05); }
.menu-toggle .bar {
  position: absolute;
  width: 18px; height: 1.5px;
  background: var(--bg-paper);
  transition: all 0.45s var(--ease-out);
  border-radius: 1px;
}
.menu-toggle .bar:nth-child(1) { transform: translateY(-4px); width: 18px; }
.menu-toggle .bar:nth-child(2) { transform: translateY(4px); width: 12px; }
.menu-toggle.open { background: var(--bg-paper); }
.menu-toggle.open .bar { background: var(--primary); }
.menu-toggle.open .bar:nth-child(1) { transform: rotate(45deg); width: 18px; }
.menu-toggle.open .bar:nth-child(2) { transform: rotate(-45deg); width: 18px; }

@media (max-width: 980px) {
  .nav-links, .nav-cta-desktop { display: none; }
  .menu-toggle { display: inline-flex; }
  .nav-glass { padding: 8px 8px 8px 22px; }
}

/* =====================================
   FULL-SCREEN GLASS MENU
   ===================================== */
.fs-menu {
  position: fixed; inset: 0;
  z-index: 200;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
}
.fs-menu.open { pointer-events: auto; visibility: visible; }

.fs-menu .backdrop {
  position: absolute; inset: 0;
  background: rgba(27,27,27, 0.55);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  transition: opacity 0.55s var(--ease-out);
}
.fs-menu.open .backdrop { opacity: 1; }

.fs-panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(540px, 92vw);
  background: var(--ink-bg);
  color: var(--bg-paper);
  transform: translateX(110%);
  transition: transform 0.7s var(--ease-out);
  display: flex; flex-direction: column;
  padding: 32px 40px 40px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  box-shadow: -40px 0 80px -20px rgba(0,0,0,0.6);
}
.fs-menu.open .backdrop { touch-action: none; }
.fs-menu.open { touch-action: pan-y; }
.fs-panel::before {
  /* Soft pink glow in the corner — a single hint of brand color */
  content: "";
  position: absolute;
  bottom: -150px; right: -150px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,61,138,0.25) 0%, transparent 65%);
  filter: blur(20px);
  pointer-events: none;
}
.fs-panel::after {
  /* Subtle texture line */
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,61,138,0.4), transparent);
}
.fs-menu.open .fs-panel { transform: translateX(0); }

.fs-panel .glass-overlay {
  position: absolute; inset: 0;
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(2px);
  pointer-events: none;
}
.fs-panel > * { position: relative; z-index: 2; }

.fs-header { display: flex; align-items: center; justify-content: space-between; }
.fs-close {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  color: var(--bg-paper);
  display: inline-flex; align-items: center; justify-content: center;
  transition: all 0.4s var(--ease-out);
}
.fs-close:hover { background: var(--accent); color: var(--bg-paper); transform: rotate(90deg); }
.fs-close svg { width: 16px; height: 16px; }

.fs-eyebrow {
  font-size: 10.5px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.6);
  margin-top: 36px;
  margin-bottom: 10px;
  display: block;
}

.fs-nav { display: flex; flex-direction: column; gap: 4px; margin-top: 4px; }
.fs-nav a {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 6.5vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--bg-paper);
  padding: 12px 0;
  display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  transition: all 0.4s var(--ease-out);
  position: relative;

  /* Stagger entry */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out), padding 0.3s, color 0.3s;
}
.fs-nav a .idx {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: rgba(245,243,239,0.4);
  font-weight: 500;
}
.fs-nav a:hover {
  color: var(--accent);
  padding-left: 18px;
}
.fs-nav a:hover .idx { color: var(--accent); }
.fs-nav a em { font-style: italic; font-family: var(--serif-display); }

.fs-menu.open .fs-nav a {
  opacity: 1;
  transform: translateY(0);
}
.fs-menu.open .fs-nav a:nth-child(1) { transition-delay: 0.25s; }
.fs-menu.open .fs-nav a:nth-child(2) { transition-delay: 0.32s; }
.fs-menu.open .fs-nav a:nth-child(3) { transition-delay: 0.39s; }
.fs-menu.open .fs-nav a:nth-child(4) { transition-delay: 0.46s; }
.fs-menu.open .fs-nav a:nth-child(5) { transition-delay: 0.53s; }
.fs-menu.open .fs-nav a:nth-child(6) { transition-delay: 0.60s; }

.fs-foot {
  margin-top: auto;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: flex; gap: 32px; flex-wrap: wrap;
}
.fs-foot .col { flex: 1; min-width: 180px; opacity: 0; transform: translateY(20px); transition: all 0.7s var(--ease-out) 0.7s; }
.fs-menu.open .fs-foot .col { opacity: 1; transform: translateY(0); }
.fs-foot small {
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.55);
  display: block;
  margin-bottom: 8px;
}
.fs-foot a.tel {
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--bg-paper);
  display: block;
  transition: color 0.3s;
}
.fs-foot a.tel:hover { color: var(--accent); }
.fs-foot .lite { font-size: 13px; color: rgba(245,243,239,0.75); line-height: 1.5; }

/* =====================================
   HERO — CINEMATIC
   ===================================== */
/* HERO — CINEMATIC */
.hero {
  position: relative;
  min-height: 100vh;
  margin-top: 0;
  padding-top: 200px;
  padding-bottom: 100px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-bg);
}
@media (max-width: 980px) { .hero { padding-top: 160px; min-height: auto; } }

.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  overflow: hidden;
  opacity: 0.22;
  filter: grayscale(40%) contrast(1.05);
}
.hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(12,12,14,0.55) 0%, rgba(12,12,14,0.4) 50%, rgba(12,12,14,0.95) 100%),
    linear-gradient(90deg, rgba(12,12,14,0.7) 0%, rgba(12,12,14,0.3) 70%, rgba(12,12,14,0.5) 100%);
  z-index: 2;
}
.hero-bg::before {
  /* Subtle pink atmospheric glow in top-right */
  content: "";
  position: absolute;
  top: -150px; right: -150px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,61,138,0.22) 0%, transparent 65%);
  filter: blur(60px);
  z-index: 3;
  pointer-events: none;
}
.hero-bg img, .hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute; inset: 0;
  animation: kenBurns 28s var(--ease-in-out) infinite alternate;
}
@keyframes kenBurns {
  from { transform: scale(1.02) translate(0, 0); }
  to   { transform: scale(1.10) translate(-2%, -1%); }
}

.hero-inner {
  position: relative; z-index: 3;
  width: 100%;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: end;
  color: var(--bg-paper);
}
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; gap: 32px; align-items: start; }
}

.hero-content h1 {
  color: var(--bg-paper);
  font-family: var(--serif);
  font-weight: 250;
  font-size: clamp(54px, 8vw, 132px);
  line-height: 0.94;
  letter-spacing: -0.045em;
  margin: 28px 0 0;
}
.hero-content h1 em {
  font-style: italic;
  font-weight: 350;
  font-family: var(--serif-display);
  color: var(--accent);
  font-variation-settings: "opsz" 144;
}
.hero-content h1 .word {
  display: inline;
  opacity: 1;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 14px;
  padding: 8px 18px 8px 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(20px) saturate(160%);
  -webkit-backdrop-filter: blur(20px) saturate(160%);
  border-radius: var(--radius-pill);
  font-size: 11.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--bg-paper);
  font-weight: 500;
}
.hero-eyebrow .badge {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--bg-paper);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px;
  font-family: var(--serif-display);
  font-style: italic;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .hero-eyebrow {
    font-size: 9.5px;
    letter-spacing: 0.16em;
    padding: 6px 14px 6px 6px;
    gap: 10px;
    white-space: nowrap;
    max-width: 100%;
  }
  .hero-eyebrow .badge {
    width: 24px; height: 24px;
    font-size: 10px;
  }
}

@media (max-width: 360px) {
  .hero-eyebrow { font-size: 8.5px; letter-spacing: 0.14em; }
}

.hero-lede {
  color: rgba(245,243,239,0.78);
  font-size: 17px;
  line-height: 1.65;
  max-width: 480px;
  margin: 28px 0 32px;
}

.hero-cta { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero info column (right side) — bold layered cards */
.hero-info {
  display: flex; flex-direction: column; gap: 14px;
  padding-bottom: 8px;
}

/* Big highlight card with pink number */
.hero-highlight {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(20px) saturate(140%);
  -webkit-backdrop-filter: blur(20px) saturate(140%);
  border-radius: var(--radius-md);
  padding: 30px 28px;
  position: relative;
  overflow: hidden;
  color: var(--bg-paper);
}
.hero-highlight::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255,61,138,0.25) 0%, transparent 55%);
  pointer-events: none;
}
.hero-highlight > * { position: relative; z-index: 1; }
.hero-highlight .hl-num {
  font-family: var(--serif);
  font-weight: 250;
  font-size: clamp(56px, 7vw, 88px);
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: var(--bg-paper);
  margin-bottom: 12px;
}
.hero-highlight .hl-plus {
  color: var(--primary);
  font-style: italic;
  font-family: var(--serif-display);
}
.hero-highlight .hl-meta { display: flex; flex-direction: column; gap: 8px; }
.hero-highlight .hl-eyebrow {
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}
.hero-highlight .hl-desc {
  font-size: 14px;
  line-height: 1.55;
  color: rgba(255,255,255,0.72);
  max-width: 320px;
}

/* Stats row — split 2 cells */
.hero-stat-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
}
.hs-cell {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  color: var(--bg-paper);
}
.hs-cell strong {
  display: block;
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(34px, 4vw, 44px);
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--bg-paper);
  margin-bottom: 8px;
}
.hs-cell .pl {
  color: var(--primary);
  font-style: italic;
  font-family: var(--serif-display);
}
.hs-cell span {
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}

/* Mini patient quote */
.hero-quote-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: var(--radius-md);
  padding: 22px 24px;
  color: var(--bg-paper);
  display: flex; flex-direction: column; gap: 12px;
}
.hero-quote-card .qc-stars {
  color: var(--primary);
  font-size: 13px;
  letter-spacing: 0.3em;
}
.hero-quote-card .qc-text {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 350;
  font-size: 17px;
  line-height: 1.4;
  color: var(--bg-paper);
  letter-spacing: -0.01em;
}
.hero-quote-card .qc-meta {
  display: flex; align-items: center; gap: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.hero-quote-card .qc-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,61,138,0.4);
}
.hero-quote-card .qc-meta strong {
  font-family: var(--sans);
  display: block;
  font-size: 13px;
  color: var(--bg-paper);
  font-weight: 600;
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}
.hero-quote-card .qc-meta span {
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

.glass-card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-radius: var(--radius-md);
  padding: 24px;
  color: var(--bg-paper);
  position: relative;
  overflow: hidden;
}
.glass-card::before {
  content: "";
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
}

.hero-stats {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 0;
}
.hero-stats .stat { padding: 6px 18px; border-left: 1px solid rgba(255,255,255,0.12); }
.hero-stats .stat:first-child { border-left: none; padding-left: 0; }
.hero-stats .stat strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(28px, 3.6vw, 38px);
  line-height: 1;
  color: var(--bg-paper);
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}
.hero-stats .stat strong em { color: var(--accent); font-style: italic; font-family: var(--serif-display); }
.hero-stats .stat span {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.65);
  font-weight: 500;
}

.hero-mini-quote {
  display: flex; gap: 16px; align-items: center;
}
.hero-mini-quote .avatar {
  width: 52px; height: 52px;
  border-radius: 50%;
  background-size: cover; background-position: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(255,255,255,0.2);
}
.hero-mini-quote .text {
  font-family: var(--serif);
  font-size: 16px;
  font-style: italic;
  font-weight: 350;
  line-height: 1.4;
  color: var(--bg-paper);
}
.hero-mini-quote .meta {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.55);
  display: block;
  margin-top: 6px;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 28px; left: 50%; transform: translateX(-50%);
  z-index: 5;
  display: flex; flex-direction: column; align-items: center; gap: 12px;
  color: rgba(245,243,239,0.6);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}
.scroll-cue .line {
  width: 1px; height: 48px;
  background: linear-gradient(180deg, transparent, rgba(245,243,239,0.6));
  position: relative; overflow: hidden;
}
.scroll-cue .line::after {
  content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px;
  background: var(--accent);
  animation: scrollLine 2.4s var(--ease-in-out) infinite;
}
@keyframes scrollLine {
  0% { top: -16px; }
  100% { top: 48px; }
}

/* Award badge floating */
.award-badge {
  position: absolute;
  bottom: 40px; right: 40px; z-index: 4;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-paper);
  animation: rotateBadge 22s linear infinite;
}
.award-badge .inner {
  position: absolute; inset: 12px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.award-badge svg {
  width: 100%; height: 100%;
}
.award-badge .star {
  position: absolute;
  font-size: 22px;
  color: var(--accent);
  animation: pulseStar 3s ease infinite;
}
@keyframes rotateBadge { to { transform: rotate(360deg); } }
@keyframes pulseStar { 50% { transform: scale(0.85); opacity: 0.7; } }

@media (max-width: 980px) {
  .award-badge { width: 100px; height: 100px; bottom: 20px; right: 20px; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .hero-stats .stat:nth-child(3) { display: none; }
}

/* =====================================
   TRUST MARQUEE
   ===================================== */
.marquee-strip {
  background: var(--ink-bg);
  color: rgba(245,243,239,0.7);
  padding: 28px 0;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.marquee-track {
  display: flex; gap: 64px;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 350;
  letter-spacing: -0.01em;
  white-space: nowrap;
}
.marquee-item em { font-style: italic; color: var(--accent); font-family: var(--serif-display); }
.marquee-item .dot {
  width: 8px; height: 8px; border-radius: 50%; background: var(--accent);
  flex-shrink: 0;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =====================================
   WELCOME
   ===================================== */
.welcome { padding: 140px 0 120px; background: var(--bg); }
.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.welcome-media {
  position: relative;
  height: 640px;
}
.welcome-media .img-main {
  position: absolute;
  top: 0; left: 0;
  width: 72%; height: 100%;
  border-radius: 280px 280px 16px 16px;
  background-size: cover; background-position: center;
  overflow: hidden;
}
.welcome-media .img-sec {
  position: absolute;
  bottom: 40px; right: 0;
  width: 50%; height: 50%;
  border-radius: 16px;
  background-size: cover; background-position: center;
  box-shadow: -30px -30px 0 var(--bg);
}
.welcome-media .deco-circle {
  position: absolute;
  top: 20%; right: 8%;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, var(--accent) 0%, transparent 70%);
  opacity: 0.5;
  filter: blur(20px);
  z-index: -1;
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  50% { transform: translateY(-30px) translateX(20px); }
}
.welcome-text p {
  font-size: 17px;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.7;
  max-width: 520px;
}
.welcome-text p:first-of-type::first-letter {
  font-family: var(--serif-display);
  font-size: 74px;
  float: left;
  line-height: 0.8;
  margin: 8px 14px -4px 0;
  color: var(--primary);
  font-style: italic;
  font-weight: 400;
}
.welcome-text h2 { margin: 18px 0 30px; }
.welcome-signature {
  display: flex; align-items: center; gap: 16px;
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--hairline);
}
.welcome-signature .sig {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 34px;
  color: var(--primary);
  line-height: 1;
}
.welcome-signature .sig-meta {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.welcome-signature .sig-meta strong { color: var(--primary); display: block; margin-bottom: 4px; font-size: 13px; letter-spacing: 0.05em; text-transform: none; font-weight: 600; }

/* =====================================
   SECTION HEAD
   ===================================== */
.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 48px; margin-bottom: 64px; flex-wrap: wrap;
}
.section-head .lead h2 { max-width: 760px; margin-top: 18px; }
.section-head .aside { max-width: 380px; }
.section-head .aside p { color: var(--ink-soft); font-size: 16px; line-height: 1.65; }
.section-head.on-dark .aside p { color: rgba(245,243,239,0.7); }

/* =====================================
   SERVICES — Featured cards
   ===================================== */
.services { background: var(--bg-paper); padding: 130px 0; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.svc-wrap { display: block; height: 100%; }
.svc-card {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: var(--bg-alt);
  aspect-ratio: 4 / 5;
  cursor: pointer;
  border: 1px solid var(--hairline-soft);
  transition: transform 0.5s var(--ease-out);
}
.svc-card:hover { transform: translateY(-8px); }
.svc-card .img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transition: transform 1.2s var(--ease-out);
}
.svc-card:hover .img { transform: scale(1.08); }
.svc-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0) 25%, rgba(0,0,0,0.85) 100%);
}
.svc-card .num {
  position: absolute; top: 18px; left: 18px; z-index: 2;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--bg-paper);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--serif-display); font-style: italic; font-size: 14px;
}
.svc-card .body {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 26px 24px 24px;
  color: var(--bg-paper);
  display: flex; flex-direction: column; gap: 14px;
}
.svc-card .body h3 {
  font-family: var(--serif);
  font-weight: 350;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--bg-paper);
}
.svc-card .body p {
  font-size: 13.5px;
  color: rgba(245,243,239,0.78);
  line-height: 1.55;
  max-height: 0; overflow: hidden;
  opacity: 0;
  transition: all 0.5s var(--ease-out);
}
.svc-card:hover .body p { max-height: 80px; opacity: 1; }
.svc-card .body .more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11.5px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
  transition: gap 0.3s;
}
.svc-card:hover .body .more { gap: 14px; }

@media (max-width: 1024px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .services-grid { grid-template-columns: 1fr; } .svc-card { aspect-ratio: 5 / 4; } }

/* =====================================
   WHY — Dark editorial section
   ===================================== */
.why {
  background: var(--ink-bg);
  color: var(--bg-paper);
  position: relative;
  overflow: hidden;
}
.why::before {
  content: "";
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,61,138,0.35) 0%, transparent 70%);
  filter: blur(40px);
}
.why::after {
  content: "";
  position: absolute;
  bottom: -100px; left: -200px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(60,60,68,0.5) 0%, transparent 70%);
  filter: blur(40px);
}
.why .container { position: relative; z-index: 2; }
.why-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 64px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 0; }
.why-item {
  padding: 28px 0;
  border-top: 1px solid rgba(255,255,255,0.12);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  transition: padding 0.4s var(--ease-out);
}
.why-item:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.why-item:hover { padding-left: 16px; }
.why-item .num {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 42px;
  font-weight: 300;
  color: var(--accent);
  line-height: 1;
}
.why-item h3 {
  font-family: var(--serif);
  font-weight: 350;
  font-size: clamp(22px, 2vw, 28px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--bg-paper);
  margin-bottom: 10px;
}
.why-item p {
  font-size: 14.5px;
  line-height: 1.65;
  color: rgba(245,243,239,0.72);
  max-width: 520px;
}

.why-visual {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 200px 200px 16px 16px;
  overflow: hidden;
  background-size: cover; background-position: center;
  box-shadow: 0 40px 80px -20px rgba(0,0,0,0.5);
}
.why-visual::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7));
}
.why-floating-card {
  position: absolute;
  bottom: 28px; left: 28px; right: 28px;
  padding: 20px 22px;
  background: rgba(12,12,14,0.65);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-radius: var(--radius-md);
  color: var(--bg-paper);
  display: flex;
  gap: 18px;
  align-items: center;
  box-shadow: 0 20px 60px -10px rgba(0,0,0,0.4);
}
.why-floating-card .icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg-paper);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px -6px rgba(255,61,138,0.5);
}
.why-floating-card .icon svg { width: 22px; height: 22px; }
.why-floating-card .text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.why-floating-card .text small {
  display: block;
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
}
.why-floating-card .text strong {
  font-family: var(--serif);
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--bg-paper);
}

@media (max-width: 980px) {
  .why-grid { grid-template-columns: 1fr; }
  .why-visual { max-width: 480px; margin: 0 auto; }
}

/* =====================================
   VIDEO TESTIMONIAL
   ===================================== */
.video-block {
  position: relative;
  padding: 120px 0;
  background: var(--bg);
}
.video-frame {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 40px 100px -30px rgba(201,59,122,0.45);
}
.video-frame video, .video-frame img.poster {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 8s linear;
}
.video-frame:hover img.poster { transform: scale(1.06); }
.video-frame::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.75) 100%);
  pointer-events: none;
}
.play-btn {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 110px; height: 110px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex; align-items: center; justify-content: center;
  color: var(--bg-paper);
  transition: all 0.4s var(--ease-out);
  z-index: 3;
}
.play-btn::before {
  content: "";
  position: absolute; inset: -8px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.25);
  animation: pulseRing 2.2s ease infinite;
}
@keyframes pulseRing {
  0% { transform: scale(0.95); opacity: 0.8; }
  100% { transform: scale(1.25); opacity: 0; }
}
.play-btn:hover { background: var(--accent); transform: translate(-50%, -50%) scale(1.06); color: var(--bg-paper); border-color: var(--accent); }
.play-btn svg { width: 28px; height: 28px; margin-left: 4px; }

.video-caption {
  position: absolute;
  left: 32px; bottom: 28px;
  z-index: 3;
  color: var(--bg-paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2.4vw, 30px);
  max-width: 60%;
  line-height: 1.3;
  font-weight: 350;
}
.video-caption small {
  display: block; margin-top: 8px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(245,243,239,0.7);
  font-style: normal;
}

.video-side {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 60px;
}
.video-side .vs-item {
  display: flex; gap: 18px; align-items: start;
  padding-top: 22px; border-top: 1px solid var(--hairline);
}
.video-side .vs-item .vs-num {
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 32px;
  color: var(--accent-deep);
  flex-shrink: 0;
  line-height: 1;
}
.video-side .vs-item h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 19px;
  color: var(--primary);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.video-side .vs-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }

/* =====================================
   TREATMENT MENU
   ===================================== */
.treatments { background: var(--bg-paper); padding: 130px 0; }
.treatments-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--hairline);
}
.t-cat {
  padding: 36px 32px;
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  transition: background 0.35s;
  position: relative;
}
.t-cat:nth-child(3n) { border-right: none; }
.t-cat:hover { background: var(--bg); }
.t-cat::before {
  content: "";
  position: absolute; top: 0; left: 0; height: 2px; width: 0;
  background: var(--accent);
  transition: width 0.5s var(--ease-out);
}
.t-cat:hover::before { width: 100%; }
.t-cat h3 {
  font-family: var(--serif);
  font-weight: 450;
  font-size: 24px;
  color: var(--primary);
  margin-bottom: 22px;
  display: flex; align-items: baseline; justify-content: space-between;
  letter-spacing: -0.01em;
}
.t-cat h3 .num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--accent-deep);
  font-weight: 600;
}
.t-cat ul { list-style: none; }
.t-cat li {
  padding: 9px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--hairline-soft);
  display: flex; justify-content: space-between; align-items: center;
  transition: all 0.3s;
  cursor: pointer;
}
.t-cat li:last-child { border-bottom: none; }
.t-cat li:hover { color: var(--primary); padding-left: 6px; }
.t-cat li::after {
  content: "→";
  opacity: 0;
  color: var(--accent-deep);
  transition: opacity 0.25s;
}
.t-cat li:hover::after { opacity: 1; }

@media (max-width: 980px) {
  .treatments-list { grid-template-columns: repeat(2, 1fr); }
  .t-cat:nth-child(3n) { border-right: 1px solid var(--hairline); }
  .t-cat:nth-child(2n) { border-right: none; }
}
@media (max-width: 600px) {
  .treatments-list { grid-template-columns: 1fr; }
  .t-cat { border-right: none !important; }
}

/* =====================================
   GALLERY — Editorial masonry
   ===================================== */
.gallery { background: var(--bg); padding: 130px 0; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 100px;
  gap: 14px;
}
.g-item {
  background-size: cover; background-position: center;
  border-radius: var(--radius-md);
  position: relative; overflow: hidden;
  transition: all 0.5s var(--ease-out);
}
.g-item .scrim {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.75) 100%);
  opacity: 0; transition: opacity 0.4s;
}
.g-item:hover .scrim { opacity: 1; }
.g-item .label {
  position: absolute; bottom: 18px; left: 18px;
  color: var(--bg-paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  opacity: 0; transform: translateY(10px);
  transition: all 0.5s var(--ease-out) 0.05s;
}
.g-item:hover .label { opacity: 1; transform: translateY(0); }

.g-item.t1 { grid-column: span 5; grid-row: span 5; }
.g-item.t2 { grid-column: span 4; grid-row: span 3; }
.g-item.t3 { grid-column: span 3; grid-row: span 3; }
.g-item.t4 { grid-column: span 4; grid-row: span 2; }
.g-item.t5 { grid-column: span 3; grid-row: span 2; }
.g-item.t6 { grid-column: span 7; grid-row: span 3; }
.g-item.t7 { grid-column: span 5; grid-row: span 3; }

@media (max-width: 980px) {
  .gallery-grid { grid-template-columns: repeat(6, 1fr); }
  .g-item.t1 { grid-column: span 6; grid-row: span 4; }
  .g-item.t2, .g-item.t3 { grid-column: span 3; grid-row: span 3; }
  .g-item.t4, .g-item.t5 { grid-column: span 3; grid-row: span 2; }
  .g-item.t6, .g-item.t7 { grid-column: span 6; grid-row: span 3; }
}

/* =====================================
   TESTIMONIAL LARGE
   ===================================== */
.testimonial {
  padding: 140px 0;
  background: var(--bg-paper);
  position: relative;
  text-align: center;
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: 60px; left: 50%; transform: translateX(-50%);
  font-family: var(--serif-display);
  font-style: italic;
  font-size: 260px;
  color: var(--accent);
  opacity: 0.18;
  line-height: 0.8;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--primary);
  max-width: 1000px;
  margin: 30px auto;
}
.testimonial blockquote em { color: var(--accent-deep); font-family: var(--serif-display); }
.testimonial cite {
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 600;
  display: block;
  margin-top: 28px;
}
.testimonial cite strong { color: var(--primary); display: block; margin-bottom: 6px; }
.testimonial .stars {
  display: inline-flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 22px;
  color: var(--accent-deep);
  font-size: 14px;
  letter-spacing: 0.3em;
}

/* =====================================
   LOCATIONS
   ===================================== */
.locations { background: var(--bg); padding: 130px 0; }
.loc-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
}
.loc-card {
  position: relative;
  background: var(--bg-paper);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--hairline-soft);
  transition: all 0.5s var(--ease-out);
}
.loc-card:hover { transform: translateY(-6px); box-shadow: 0 40px 80px -30px rgba(201,59,122,0.25); }
.loc-img {
  height: 320px;
  background-size: cover; background-position: center;
  position: relative;
  overflow: hidden;
}
.loc-img::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.7) 100%);
}
.loc-img .pin {
  position: absolute; top: 24px; left: 24px;
  padding: 8px 16px;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-pill);
  font-size: 10.5px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  font-weight: 600;
  z-index: 2;
}
.loc-img .city {
  position: absolute; bottom: 24px; left: 28px;
  font-family: var(--serif);
  font-weight: 350;
  font-size: 54px;
  line-height: 0.95;
  letter-spacing: -0.025em;
  color: var(--bg-paper);
  z-index: 2;
}
.loc-img .city em { font-style: italic; font-family: var(--serif-display); }
.loc-body { padding: 36px 36px 40px; }
.loc-info { display: grid; gap: 14px; padding: 24px 0; border-top: 1px solid var(--hairline-soft); border-bottom: 1px solid var(--hairline-soft); margin-bottom: 28px; }
.loc-info-row {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 14.5px; color: var(--ink-soft);
}
.loc-info-row svg { width: 16px; height: 16px; color: var(--accent-deep); flex-shrink: 0; margin-top: 3px; }
.loc-info-row strong { color: var(--primary); font-weight: 600; }
.loc-cta { display: flex; gap: 10px; flex-wrap: wrap; }

@media (max-width: 980px) {
  .loc-grid { grid-template-columns: 1fr; }
  .loc-img .city { font-size: 42px; }
}

/* =====================================
   CTA
   ===================================== */
.cta-section {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background: var(--ink-bg);
}
.cta-section .bg {
  position: absolute; inset: 0; z-index: -1;
  background-image: url("https://images.unsplash.com/photo-1606811971618-4486d14f3f99?w=2000&q=80&auto=format&fit=crop");
  background-size: cover; background-position: center;
  opacity: 0.18;
}
.cta-section::after {
  content: "";
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(circle at 80% 20%, rgba(255,61,138,0.35) 0%, transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(60,60,68,0.45) 0%, transparent 50%);
}
.cta-section .container { text-align: center; position: relative; z-index: 2; color: var(--bg-paper); }
.cta-section h2 {
  font-family: var(--serif);
  font-weight: 250;
  font-size: clamp(48px, 7.4vw, 110px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: var(--bg-paper);
  margin: 20px 0 36px;
}
.cta-section h2 em {
  font-style: italic; font-family: var(--serif-display); color: var(--accent);
}
.cta-section .actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* =====================================
   FOOTER
   ===================================== */
footer {
  background: var(--ink-bg);
  color: rgba(245,243,239,0.75);
  padding: 100px 0 30px;
  font-size: 14px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: ""; position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,61,138,0.2), transparent 70%);
  filter: blur(40px);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 80px;
  position: relative;
}
.footer-brand p {
  margin: 24px 0;
  line-height: 1.7;
  max-width: 360px;
}
.footer-grid h4 {
  font-family: var(--serif);
  font-size: 17px;
  font-weight: 450;
  color: var(--bg-paper);
  margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.footer-grid ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { transition: color 0.2s; }
.footer-grid a:hover { color: var(--accent); }

.footer-cta {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 22px;
  margin-top: 24px;
}
.footer-cta small {
  font-size: 10px; letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--accent); font-weight: 600;
}
.footer-cta strong {
  display: block;
  font-family: var(--serif); font-size: 22px; font-weight: 400;
  color: var(--bg-paper); margin: 8px 0 14px;
}
.footer-cta a { color: var(--accent); display: inline-flex; align-items: center; gap: 8px; font-weight: 500; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 28px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 12.5px;
  color: rgba(245,243,239,0.55);
  position: relative;
}
.footer-bottom a:hover { color: var(--accent); }

@media (max-width: 980px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 600px) { .footer-grid { grid-template-columns: 1fr; gap: 36px; } }

/* =====================================
   GENERIC REVEAL
   ===================================== */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 1s var(--ease-out), transform 1s var(--ease-out); will-change: transform, opacity; }
.reveal.in { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =====================================
   RESPONSIVE TWEAKS
   ===================================== */
@media (max-width: 720px) {
  section { padding: 90px 0; }
  .container { padding: 0 22px; }
  .welcome-grid { grid-template-columns: 1fr; gap: 40px; }
  .welcome-media { height: 480px; }
  .video-side { grid-template-columns: 1fr; gap: 22px; margin-top: 40px; }
  .section-head { flex-direction: column; align-items: flex-start; }
}
