/* =============================================================
   BY BEX & CO, The Aesthetics Collective
   Global Design System
   Palette: Charcoal / Blush / Cream / Gold
   Fonts:   Playfair Display (serif) · Inter (sans) · Great Vibes (script)
   ============================================================= */

/* ---------- TOKENS ---------- */
:root {
  --charcoal: #2D2D2D;
  --charcoal-light: #3D3D3D;
  --charcoal-dark: #1F1F1F;
  --blush: #E8B4B8;
  --blush-light: #F0CDD0;
  --blush-dark: #C98F94;
  --blush-muted: #EAC4C7;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --white: #FFFFFF;
  --gold: #C9A96E;
  --gold-light: #D9BE8E;

  --ink: #2D2D2D;
  --ink-60: rgba(45, 45, 45, 0.62);
  --ink-45: rgba(45, 45, 45, 0.45);
  --on-dark: rgba(255, 255, 255, 0.92);
  --on-dark-60: rgba(255, 255, 255, 0.6);
  --on-dark-40: rgba(255, 255, 255, 0.4);
  --hair-dark: rgba(255, 255, 255, 0.1);
  --hair-light: rgba(45, 45, 45, 0.1);

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-script: 'Great Vibes', cursive;

  --container: 1280px;
  --container-px: 24px;

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;

  --shadow-sm: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.12);
  --shadow-blush: 0 8px 32px rgba(232, 180, 184, 0.35);

  --ease-reveal: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --z-progress: 100;
  --z-nav: 90;
  --z-mobile-menu: 85;
  --z-sticky-book: 80;

  --nav-h: 76px;
}

/* ---------- RESET ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
:focus-visible { outline: 2px solid var(--blush-dark); outline-offset: 3px; border-radius: 4px; }

/* ---------- TYPOGRAPHY ---------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; letter-spacing: -0.01em; color: var(--charcoal); }
h1 { font-size: clamp(2.4rem, 5vw, 3.5rem); line-height: 1.08; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.35rem, 2.4vw, 1.75rem); }
h4 { font-size: 1.25rem; }
p { color: var(--ink-60); }
strong { color: inherit; font-weight: 600; }

.script { font-family: var(--font-script); font-weight: 400; letter-spacing: 0; }
.serif { font-family: var(--font-serif); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--blush-dark);
  display: inline-block;
  margin-bottom: 16px;
}
.eyebrow--light { color: var(--blush); }

.lead { font-size: 1.125rem; line-height: 1.7; color: var(--ink-60); }

/* ---------- LAYOUT ---------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--container-px); }
.container--narrow { max-width: 860px; }
.container--prose { max-width: 720px; }

.section { padding: clamp(60px, 9vw, 120px) 0; position: relative; }
.section--tight { padding: clamp(48px, 6vw, 80px) 0; }

.bg-cream { background: var(--cream); }
.bg-cream-dark { background: var(--cream-dark); }
.bg-charcoal { background: var(--charcoal); color: var(--on-dark); }
.bg-charcoal h1, .bg-charcoal h2, .bg-charcoal h3, .bg-charcoal h4 { color: var(--white); }
.bg-charcoal p { color: var(--on-dark-60); }
.bg-blush { background: var(--blush-light); }
.bg-white { background: var(--white); }

.section-head { text-align: center; max-width: 640px; margin: 0 auto clamp(40px, 6vw, 64px); }
.section-head p { margin-top: 14px; }
.text-center { text-align: center; }

.grid { display: grid; gap: 24px; }
.divider-line { width: 48px; height: 2px; background: var(--blush); border: 0; margin: 0 0 18px; }
.divider-line--center { margin: 0 auto 18px; }

/* ---------- BUTTONS ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 15px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  line-height: 1;
  cursor: pointer;
  transition: transform .3s var(--ease-bounce), box-shadow .3s var(--ease-smooth),
              background-color .25s var(--ease-smooth), color .25s var(--ease-smooth),
              border-color .25s var(--ease-smooth);
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--blush); color: var(--charcoal); box-shadow: var(--shadow-blush); }
.btn-primary:hover { transform: scale(1.03); box-shadow: 0 12px 40px rgba(232, 180, 184, 0.45); }
.btn-primary:active { transform: scale(0.98); }

.btn-dark { background: var(--charcoal); color: var(--white); }
.btn-dark:hover { background: var(--charcoal-dark); transform: scale(1.03); }

.btn-ghost { background: transparent; color: var(--charcoal); border: 1.5px solid var(--hair-light); }
.btn-ghost:hover { border-color: var(--charcoal); }

.btn-outline-light { background: transparent; color: var(--white); border: 1.5px solid rgba(255,255,255,0.5); }
.btn-outline-light:hover { background: rgba(255,255,255,0.12); border-color: var(--white); }

.btn-sm { padding: 11px 22px; font-size: 0.82rem; }
.btn-block { width: 100%; }

/* ---------- NAVIGATION ---------- */
.nav {
  position: fixed; inset: 0 0 auto 0; height: var(--nav-h);
  z-index: var(--z-nav);
  display: flex; align-items: center;
  transition: background-color .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
}
.nav__inner { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 var(--container-px);
  display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.nav__brand { display: flex; flex-direction: column; line-height: 1; }
.nav__brand .script { font-size: 1.75rem; color: var(--white); transition: color .4s ease; }
.nav__brand .tag { font-size: 0.55rem; text-transform: uppercase; letter-spacing: 0.22em; color: var(--blush); margin-top: 2px; }
.nav__links { display: flex; align-items: center; gap: 30px; }
.nav__link { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.85); position: relative; transition: color .25s ease; }
.nav__link::after { content: ''; position: absolute; left: 0; bottom: -6px; width: 0; height: 2px; background: var(--blush); transition: width .3s var(--ease-reveal); }
.nav__link:hover { color: var(--white); }
.nav__link:hover::after, .nav__link[aria-current="page"]::after { width: 100%; }
.nav__cta { margin-left: 6px; }

/* Scrolled state */
.nav.is-scrolled { background: rgba(45,45,45,0.95); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.12); }

/* Solid variant for interior pages (always dark so text is legible over light hero) */
.nav.is-solid { background: rgba(45,45,45,0.96); backdrop-filter: blur(12px); box-shadow: 0 2px 20px rgba(0,0,0,0.12); }

/* Dropdown */
.nav__item { position: relative; }
.nav__item--has-menu > .nav__link { display: inline-flex; align-items: center; gap: 5px; }
.nav__item--has-menu > .nav__link svg { width: 14px; height: 14px; opacity: .7; }
.nav__dropdown {
  position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 10px; min-width: 230px; opacity: 0; visibility: hidden; transition: all .25s var(--ease-smooth);
}
.nav__item--has-menu:hover .nav__dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.nav__dropdown a { display: block; padding: 10px 14px; border-radius: var(--radius-sm); font-size: 0.86rem; color: var(--charcoal); transition: background .2s ease, color .2s ease; }
.nav__dropdown a:hover { background: var(--cream); color: var(--blush-dark); }
.nav__dropdown a span { display: block; font-size: 0.72rem; color: var(--ink-45); margin-top: 1px; }

.nav__burger { display: none; width: 30px; height: 22px; position: relative; }
.nav__burger span { position: absolute; left: 0; width: 100%; height: 2px; background: var(--white); border-radius: 2px; transition: transform .3s ease, opacity .3s ease, top .3s ease; }
.nav__burger span:nth-child(1) { top: 0; }
.nav__burger span:nth-child(2) { top: 10px; }
.nav__burger span:nth-child(3) { top: 20px; }
.nav.is-open .nav__burger span:nth-child(1) { top: 10px; transform: rotate(45deg); }
.nav.is-open .nav__burger span:nth-child(2) { opacity: 0; }
.nav.is-open .nav__burger span:nth-child(3) { top: 10px; transform: rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: var(--nav-h) 0 0 0; z-index: var(--z-mobile-menu);
  background: rgba(31,31,31,0.98); backdrop-filter: blur(16px);
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  opacity: 0; visibility: hidden; transition: opacity .35s ease, visibility .35s ease;
  padding: 30px; overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); padding: 12px; }
.mobile-menu a.sub { font-family: var(--font-sans); font-size: 1rem; color: var(--on-dark-60); padding: 6px; }
.mobile-menu .btn { margin-top: 18px; }
.mobile-menu .mm-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.2em; color: var(--blush); margin-top: 14px; }

/* Scroll progress */
.scroll-progress { position: fixed; top: 0; left: 0; height: 3px; width: 0%; background: linear-gradient(90deg, var(--blush), var(--gold)); z-index: var(--z-progress); transition: width .1s linear; }

/* ---------- HERO ---------- */
.hero {
  position: relative; min-height: 92vh; display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white); overflow: hidden; padding: calc(var(--nav-h) + 40px) 20px 80px;
}
.hero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.hero__overlay { position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(45,45,45,0.6) 0%, rgba(45,45,45,0.42) 42%, rgba(45,45,45,0.72) 100%); }
.hero__inner { max-width: 860px; }
.hero h1 { color: var(--white); text-shadow: 0 2px 40px rgba(0,0,0,0.35); }
.hero h1 em { font-style: italic; color: var(--blush-light); }
.hero__sub { font-size: 1.15rem; color: rgba(255,255,255,0.92); max-width: 580px; margin: 22px auto 0; }
.hero__cta { display: flex; gap: 16px; justify-content: center; margin-top: 38px; flex-wrap: wrap; }
.hero__script { font-family: var(--font-script); font-size: 2rem; color: var(--blush); opacity: 0.9; margin-bottom: 10px; }

/* Page hero (interior, shorter) */
.page-hero {
  position: relative; padding: calc(var(--nav-h) + 70px) 0 70px; text-align: center; color: var(--white); overflow: hidden;
}
.page-hero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; }
.page-hero__overlay { position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(45,45,45,0.66), rgba(45,45,45,0.8)); }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 600px; margin: 16px auto 0; }
.breadcrumb { font-size: 0.78rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.6); margin-bottom: 18px; }
.breadcrumb a:hover { color: var(--blush); }

/* Gradient atmospheres used as image stand-ins */
.atmos { background: radial-gradient(120% 120% at 20% 10%, #4a3b3e 0%, #2d2d2d 55%, #1f1f1f 100%); }
.atmos-1 { background: linear-gradient(135deg, #5a4548, #2d2d2d 60%); }
.atmos-2 { background: radial-gradient(130% 130% at 80% 20%, #6d5258, #2c2627 60%); }
.atmos-blush { background: linear-gradient(135deg, #f3d3d6, #e8b4b8 50%, #d89a9e); }

/* ---------- FEATHER CLOUD + NEON (brand signature) ---------- */
/* Recreates the in-clinic illuminated feather cloud with glowing neon wordmark */
.cloud-hero {
  position: relative; display: flex; flex-direction: column;
  align-items: center; justify-content: flex-start; text-align: center; overflow: hidden;
  padding: 0 0 clamp(46px, 7vh, 88px); color: var(--white);
  gap: clamp(24px, 4.5vh, 48px);
  /* neutral charcoal, the warm cloud & neon pop against it (on-brand) */
  background:
    radial-gradient(120% 120% at 50% 30%, #363636 0%, #242424 55%, #171717 100%);
}
.cloud-hero__grain { position: absolute; inset: 0; opacity: .05; pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,.6) 1px, transparent 1px); background-size: 4px 4px; }

.cloud-stage { position: relative; width: min(560px, 92vw); height: 280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: center; }
.cloud-stage--lg { width: min(720px, 94vw); height: 340px; }

/* warm backlight bloom */
.cloud-glow { position: absolute; width: 80%; height: 70%; left: 50%; top: 50%;
  transform: translate(-50%,-50%);
  background: radial-gradient(ellipse at center, rgba(255,196,110,.85) 0%, rgba(255,170,80,.45) 35%, rgba(255,150,60,0) 70%);
  filter: blur(34px); animation: glowPulse 6s var(--ease-smooth) infinite; }
@keyframes glowPulse { 0%,100% { opacity:.85; transform: translate(-50%,-50%) scale(1);} 50% { opacity:1; transform: translate(-50%,-50%) scale(1.06);} }

/* the fluffy feather cloud (dense pure-CSS puffs, softened with blur) */
.feather-cloud { position: relative; width: 128px; height: 104px; border-radius: 50%;
  background: #fffaf2; filter: blur(9px);
  box-shadow:
    /* wide base row */
    -214px 36px 0 -14px #fff8ee, -162px 32px 0 -6px #fffaf2, -110px 42px 0 0 #fffaf2,
    -55px 46px 0 4px #fffaf2, 0 48px 0 6px #fffaf2, 55px 46px 0 4px #fffaf2,
    110px 42px 0 0 #fffaf2, 162px 32px 0 -6px #fffaf2, 214px 36px 0 -14px #fff8ee,
    /* middle body row (densest) */
    -178px 6px 0 -4px #fdf4ea, -122px 10px 0 6px #fffaf2, -62px 6px 0 10px #fff,
    0 4px 0 12px #fffaf2, 62px 6px 0 10px #fff, 122px 10px 0 6px #fffaf2, 178px 6px 0 -4px #fdf4ea,
    /* upper dome */
    -122px -26px 0 -6px #fff8ee, -62px -36px 0 -4px #fff, 0 -42px 0 -2px #fffaf2,
    62px -36px 0 -4px #fff, 122px -26px 0 -6px #fff8ee,
    -30px -20px 0 4px #fff, 30px -20px 0 4px #fff, -92px 4px 0 2px #fff; }
.cloud-stage--lg .feather-cloud { transform: scale(1.12); }

/* neon wordmark */
.cloud-neon { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-52%);
  z-index: 2; white-space: nowrap; line-height: 1; pointer-events: none; }
.neon { font-family: var(--font-script); color: #fff6df;
  text-shadow: 0 0 5px #fff, 0 0 12px #ffe9b8, 0 0 24px #ffce7d, 0 0 44px #ffb347, 0 0 78px #ff9d2e;
  animation: neonFlicker 7s linear infinite; }
.cloud-neon .neon { font-size: clamp(2.4rem, 7vw, 4.2rem); }
.cloud-neon .neon small { font-size: .42em; vertical-align: .55em; letter-spacing: .02em; }
.neon--script-sans { font-family: var(--font-sans); font-weight: 300; }
@keyframes neonFlicker {
  0%,17%,21%,23%,54%,57%,100% { opacity: 1; }
  18%,22%,55% { opacity: .86; }
  20% { opacity: .7; }
}
@media (prefers-reduced-motion: reduce) { .neon, .cloud-glow { animation: none; } }

/* drifting feathers */
.feather { position: absolute; width: 16px; color: rgba(255,255,255,.85); opacity: .8;
  filter: drop-shadow(0 0 6px rgba(255,200,120,.5)); animation: featherFloat 9s ease-in-out infinite; }
.feather svg { width: 100%; height: auto; }
.feather.f1 { left: 8%;  top: 24%; animation-delay: 0s;   width: 14px; }
.feather.f2 { right: 11%; top: 18%; animation-delay: 1.4s; width: 20px; }
.feather.f3 { left: 16%; bottom: 16%; animation-delay: 2.6s; width: 12px; }
.feather.f4 { right: 16%; bottom: 20%; animation-delay: .8s; width: 17px; }
.feather.f5 { left: 46%; top: 6%; animation-delay: 3.4s; width: 13px; }
@keyframes featherFloat { 0%,100% { transform: translateY(0) rotate(-6deg); opacity:.55; } 50% { transform: translateY(-16px) rotate(6deg); opacity:.9; } }

/* "this is where the magic happens" cloud band */
.magic { position: relative; overflow: hidden; text-align: center;
  padding: clamp(70px, 10vw, 130px) 0;
  background: radial-gradient(120% 90% at 50% 40%, #4a3f3a 0%, #2a2422 55%, #1a1614 100%); }
.magic .cloud-stage { margin-bottom: 0; }
.magic-neon { position: absolute; left: 50%; top: 50%; transform: translate(-50%,-50%); z-index: 2; }
.magic-neon .l1 { display: block; font-family: var(--font-sans); font-weight: 300;
  font-size: clamp(.95rem,2.6vw,1.5rem); letter-spacing: .06em; color: #fff6df;
  text-shadow: 0 0 4px #fff, 0 0 12px #ffd98a, 0 0 26px #ffb347; }
.magic-neon .l2 { display: block; font-family: var(--font-script);
  font-size: clamp(2.2rem,7vw,4rem); color: #fff6df; margin-top: 2px;
  text-shadow: 0 0 5px #fff, 0 0 12px #ffe9b8, 0 0 24px #ffce7d, 0 0 46px #ffb347, 0 0 80px #ff9d2e;
  animation: neonFlicker 7s linear infinite; }

/* FULL-BLEED immersive hero, the video fills the whole screen (feather burst). */
/* Video is full-width and scales its height with the width, so the whole
   "By Bex & Co" wordmark is always visible (no cropping). Headline sits below it. */
/* Video (with its poster) shows by default — poster = the lit sign frame, so it
   appears instantly with no fallback flash. The CSS cloud only shows if the video fails. */
.cloud-hero__media { position: relative; width: 100%; z-index: 0; line-height: 0; }
.cloud-hero.no-video .cloud-hero__media { display: none; }
.cloud-hero__video { display: block; width: 100%; height: auto; max-height: 88vh; object-fit: cover; background: #242424; }
.cloud-hero__haze { display: none; }
/* gentle top gradient so the nav stays legible over the video */
.cloud-hero__media::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 150px; z-index: 1; pointer-events: none;
  background: linear-gradient(180deg, rgba(20,20,20,.5) 0%, rgba(20,20,20,0) 100%); }
.cloud-hero__fallback { position: relative; width: 100%; aspect-ratio: 16 / 9; max-height: 88vh; display: none; align-items: center; justify-content: center; z-index: 0; }
.cloud-hero.no-video .cloud-hero__fallback { display: flex; }
.cloud-hero .hero__inner { position: relative; z-index: 2; max-width: 720px; margin-inline: auto; padding: 0 20px; }

/* ---------- TRUST BAR ---------- */
.trustbar { background: var(--charcoal); padding: 26px 0; }
.trustbar__inner { display: flex; align-items: stretch; justify-content: space-between; gap: 12px; }
.trust-item { flex: 1; display: flex; align-items: center; gap: 12px; justify-content: center; position: relative; }
.trust-item + .trust-item::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 1px; height: 34px; background: var(--hair-dark); }
.trust-item svg { width: 22px; height: 22px; color: var(--blush); flex-shrink: 0; }
.trust-item b { display: block; color: var(--white); font-size: 0.9rem; font-weight: 600; }
.trust-item span { display: block; color: var(--on-dark-40); font-size: 0.74rem; }

/* ---------- CARDS ---------- */
.card { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-bounce), box-shadow .4s var(--ease-smooth); overflow: hidden; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

/* Team card */
.team-card { background: var(--white); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-bounce), box-shadow .4s var(--ease-smooth); display: flex; flex-direction: column; }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.team-card__img { aspect-ratio: 3/4; position: relative; display: flex; align-items: flex-end; justify-content: center; overflow: hidden; }
.team-card__img .initial { font-family: var(--font-serif); font-size: 3.2rem; color: rgba(45,45,45,0.22); position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.team-card__img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-smooth); }
.team-card:hover .team-card__img img { transform: scale(1.05); }
.team-card__body { padding: 22px 22px 24px; display: flex; flex-direction: column; flex: 1; }
.team-card__body h3 { font-size: 1.2rem; }
.team-card__role { color: var(--blush-dark); font-size: 0.82rem; font-weight: 600; margin-top: 3px; }
.team-card__days { font-size: 0.74rem; color: var(--ink-45); margin-top: 8px; display: flex; align-items: center; gap: 6px; }
.team-card__days svg { width: 14px; height: 14px; }
.team-card__body p { font-size: 0.86rem; margin-top: 12px; flex: 1; }
.team-card .btn { margin-top: 18px; }

/* Service list (used on dark services section) */
.service-col__head { margin-bottom: 8px; }
.service-col__head h3 { color: var(--blush); }
.service-col__head .note { font-size: 0.8rem; color: var(--on-dark-40); }
.service-row { padding: 18px 0; border-bottom: 1px solid var(--hair-dark); transition: padding-left .25s var(--ease-smooth); }
.service-row:hover { padding-left: 8px; }
.service-row h4 { color: var(--white); font-family: var(--font-sans); font-size: 1rem; font-weight: 600; transition: color .25s ease; display: flex; justify-content: space-between; gap: 14px; align-items: baseline; }
.service-row:hover h4 { color: var(--blush); }
.service-row h4 .price { color: var(--gold-light); font-family: var(--font-serif); font-size: 0.95rem; white-space: nowrap; }
.service-row p { font-size: 0.84rem; color: var(--on-dark-60); margin-top: 4px; }

/* Benefit card */
.benefit { background: var(--white); border-radius: var(--radius-lg); padding: 34px 28px; box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-bounce), box-shadow .4s var(--ease-smooth); }
.benefit:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.benefit__icon { width: 56px; height: 56px; border-radius: 50%; background: var(--blush-light); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.benefit__icon svg { width: 26px; height: 26px; color: var(--charcoal); }
.benefit h3 { font-size: 1.2rem; margin-bottom: 8px; }
.benefit p { font-size: 0.92rem; }

/* Treatment detail card */
.treatment { background: var(--white); border-radius: var(--radius-lg); padding: 30px; box-shadow: var(--shadow-sm); height: 100%;
  transition: transform .4s var(--ease-bounce), box-shadow .4s var(--ease-smooth); display: flex; flex-direction: column; }
.treatment:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.treatment__icon { width: 50px; height: 50px; border-radius: 14px; background: var(--cream); display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.treatment__icon svg { width: 24px; height: 24px; color: var(--blush-dark); }
.treatment h3 { font-size: 1.3rem; margin-bottom: 10px; }
.treatment p { font-size: 0.9rem; flex: 1; }
.treatment__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 18px; }
.tag-pill { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.02em; padding: 6px 12px; border-radius: var(--radius-pill); background: var(--cream-dark); color: var(--charcoal); }
.tag-pill--blush { background: var(--blush-light); color: var(--blush-dark); }
.tag-pill--gold { background: rgba(201,169,110,0.18); color: #9c7c3e; }
.treatment__from { margin-top: 16px; font-family: var(--font-serif); color: var(--blush-dark); font-size: 1.05rem; }
.treatment__from small { font-family: var(--font-sans); color: var(--ink-45); font-size: 0.72rem; }

/* Category card (treatments hub) */
.cat-card { position: relative; border-radius: var(--radius-lg); overflow: hidden; min-height: 320px; display: flex; align-items: flex-end; color: var(--white); padding: 32px; isolation: isolate;
  transition: transform .4s var(--ease-bounce), box-shadow .4s var(--ease-smooth); }
.cat-card::after { content: ''; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(45,45,45,0.15), rgba(31,31,31,0.85)); }
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card h3 { color: var(--white); font-size: 1.6rem; }
.cat-card p { color: rgba(255,255,255,0.82); font-size: 0.9rem; margin: 8px 0 16px; }
.cat-card .link-arrow { color: var(--blush-light); }

.link-arrow { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.88rem; color: var(--blush-dark); }
.link-arrow svg { width: 16px; height: 16px; transition: transform .25s var(--ease-smooth); }
.link-arrow:hover svg { transform: translateX(4px); }

/* ---------- PRICE TABLE ---------- */
.price-block { background: var(--white); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); padding: 8px 30px; margin-bottom: 28px; }
.price-block__head { padding: 24px 0 16px; border-bottom: 2px solid var(--blush-light); display: flex; align-items: baseline; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.price-block__head h3 { font-size: 1.4rem; }
.price-block__head .note { font-size: 0.8rem; color: var(--ink-45); }
.price-row { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--hair-light); }
.price-row:last-child { border-bottom: 0; }
.price-row__name { font-weight: 500; color: var(--charcoal); }
.price-row__name span { display: block; font-size: 0.8rem; font-weight: 400; color: var(--ink-45); margin-top: 2px; }
.price-row__price { font-family: var(--font-serif); font-size: 1.05rem; color: var(--blush-dark); white-space: nowrap; }

/* ---------- TESTIMONIALS ---------- */
.testimonial { text-align: center; max-width: 760px; margin: 0 auto; padding: 20px; position: relative; }
.testimonial__mark { font-family: var(--font-serif); font-size: 6rem; line-height: 0.5; color: var(--blush); opacity: 0.28; display: block; height: 40px; }
.testimonial__quote { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.15rem, 2.4vw, 1.5rem); line-height: 1.5; color: var(--white); }
.testimonial__rule { width: 40px; height: 1px; background: var(--blush); margin: 22px auto; }
.testimonial__name { font-weight: 600; color: var(--white); }
.testimonial__meta { font-size: 0.85rem; color: var(--blush); }

.stars { display: inline-flex; gap: 3px; color: var(--gold); }
.stars svg { width: 18px; height: 18px; fill: currentColor; }

/* Testimonial carousel: slides dissolve like drifting cloud, soft blur + gentle rise */
.testi-track { display: grid; }
.testi-slide { grid-area: 1 / 1; opacity: 0; transform: translateY(18px); filter: blur(10px);
  transition: opacity 1s var(--ease-smooth), transform 1s var(--ease-smooth), filter 1s var(--ease-smooth);
  pointer-events: none; }
.testi-slide.is-active { opacity: 1; transform: none; filter: none; pointer-events: auto; }
.testi-slide.is-leaving { opacity: 0; transform: translateY(-18px); filter: blur(10px); }
.testi-dots { display: flex; gap: 10px; justify-content: center; margin-top: 14px; }
.testi-dots button { width: 10px; height: 10px; border-radius: var(--radius-pill);
  background: rgba(232,180,184,0.3); transition: background .3s ease, width .3s ease; }
.testi-dots button.is-active { background: var(--blush); width: 26px; }
@media (prefers-reduced-motion: reduce) {
  .testi-slide { transition: none; transform: none; filter: none; }
}

/* Review card grid */
.review-card { background: var(--white); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; gap: 12px; height: 100%; }
.review-card .stars svg { width: 16px; height: 16px; }
.review-card p { color: var(--charcoal); font-size: 0.95rem; line-height: 1.6; flex: 1; }
.review-card__foot { display: flex; align-items: center; gap: 12px; }
.review-card__avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--blush-light); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); color: var(--blush-dark); font-size: 1.1rem; flex-shrink: 0; }
.review-card__who b { display: block; font-size: 0.9rem; color: var(--charcoal); }
.review-card__who span { font-size: 0.76rem; color: var(--ink-45); }

/* ---------- SPLIT (image + content) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: center; }
.split--reverse .split__media { order: 2; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; box-shadow: var(--shadow-md); position: relative; }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__content h2 { margin-bottom: 16px; }
.feature-list { margin-top: 22px; display: flex; flex-direction: column; gap: 12px; }
.feature-list li { display: flex; gap: 12px; align-items: flex-start; color: var(--charcoal); font-size: 0.96rem; }
.feature-list svg { width: 20px; height: 20px; color: var(--blush-dark); flex-shrink: 0; margin-top: 2px; }

/* ---------- STATS ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat b { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 2.8rem); color: var(--blush); display: block; line-height: 1; }
.stat span { font-size: 0.85rem; color: var(--on-dark-60); margin-top: 8px; display: block; }

/* ---------- GALLERY ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.gallery-item { aspect-ratio: 1/1; border-radius: var(--radius); overflow: hidden; position: relative; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease-smooth); }
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item__label { position: absolute; inset: auto 0 0 0; padding: 28px 16px 14px; font-size: 0.8rem; color: var(--white);
  background: linear-gradient(180deg, transparent, rgba(31,31,31,0.8)); opacity: 0; transition: opacity .3s ease; }
.gallery-item:hover .gallery-item__label { opacity: 1; }
.gallery-item.tall { aspect-ratio: auto; }

/* ---------- CONTACT ---------- */
.contact-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 48px; align-items: stretch; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); min-height: 420px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 420px; border: 0; display: block; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-line { display: flex; gap: 14px; align-items: flex-start; }
.contact-line svg { width: 22px; height: 22px; color: var(--blush-dark); flex-shrink: 0; margin-top: 2px; }
.contact-line b { display: block; font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--ink-45); margin-bottom: 2px; }
.contact-line a, .contact-line p { color: var(--charcoal); font-size: 1rem; }
.contact-line a:hover { color: var(--blush-dark); }

/* Form */
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--charcoal); margin-bottom: 7px; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border: 1.5px solid var(--cream-dark); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.95rem; color: var(--charcoal); background: var(--cream); transition: border-color .2s ease, background .2s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--blush); background: var(--white); }
.field textarea { min-height: 130px; resize: vertical; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--hair-light); }
.faq-q { width: 100%; text-align: left; padding: 22px 0; display: flex; justify-content: space-between; align-items: center; gap: 16px;
  font-family: var(--font-serif); font-size: 1.12rem; color: var(--charcoal); }
.faq-q svg { width: 20px; height: 20px; color: var(--blush-dark); flex-shrink: 0; transition: transform .3s ease; }
.faq-item.is-open .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s var(--ease-smooth); }
.faq-a p { padding-bottom: 22px; }

/* ---------- CTA BANNER ---------- */
.cta-banner { text-align: center; }
.cta-banner h2 { color: var(--white); max-width: 640px; margin: 0 auto 14px; }
.cta-banner p { max-width: 540px; margin: 0 auto 30px; }

/* ---------- FOOTER ---------- */
.footer { background: var(--charcoal-dark); color: var(--on-dark-60); padding: 64px 0 28px; }
.footer__top { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; }
.footer__brand .script { font-size: 2rem; color: var(--white); }
.footer__brand .tag { font-size: 0.62rem; text-transform: uppercase; letter-spacing: 0.18em; color: var(--blush); margin: 4px 0 16px; }
.footer__brand p { font-size: 0.88rem; max-width: 280px; }
.footer h4 { color: var(--white); font-family: var(--font-sans); font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.12em; margin-bottom: 18px; font-weight: 600; }
.footer__col a { display: block; font-size: 0.9rem; color: var(--on-dark-60); padding: 6px 0; transition: color .2s ease; }
.footer__col a:hover { color: var(--blush); }
.footer__contact li { display: flex; gap: 10px; font-size: 0.9rem; padding: 6px 0; align-items: flex-start; }
.footer__contact svg { width: 16px; height: 16px; color: var(--blush); flex-shrink: 0; margin-top: 4px; }
.footer__contact a:hover { color: var(--blush); }
.footer__socials { display: flex; gap: 14px; margin-top: 16px; }
.footer__socials a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--hair-dark); display: flex; align-items: center; justify-content: center; transition: all .25s ease; }
.footer__socials a:hover { background: var(--blush); border-color: var(--blush); }
.footer__socials a:hover svg { color: var(--charcoal); }
.footer__socials svg { width: 18px; height: 18px; color: var(--on-dark-60); transition: color .25s ease; }
.footer__bottom { border-top: 1px solid var(--hair-dark); margin-top: 44px; padding-top: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer__bottom p, .footer__bottom a { font-size: 0.78rem; color: var(--on-dark-40); }
.footer__bottom a:hover { color: var(--blush); }
.footer__legal { display: flex; gap: 18px; flex-wrap: wrap; }

/* ---------- STICKY BOOK FAB ---------- */
.book-fab { position: fixed; right: 22px; bottom: 22px; z-index: var(--z-sticky-book);
  width: auto; padding: 14px 22px; border-radius: var(--radius-pill); background: var(--blush); color: var(--charcoal);
  display: inline-flex; align-items: center; gap: 9px; font-weight: 600; font-size: 0.88rem; box-shadow: 0 6px 24px rgba(232,180,184,0.5);
  animation: gentlePulse 3.2s infinite; transition: transform .25s var(--ease-bounce); }
.book-fab svg { width: 18px; height: 18px; }
.book-fab:hover { transform: scale(1.05); }
.book-fab:active { transform: scale(0.96); }
@keyframes gentlePulse { 0%,100% { box-shadow: 0 6px 24px rgba(232,180,184,0.5), 0 0 0 0 rgba(232,180,184,0.45); } 50% { box-shadow: 0 6px 24px rgba(232,180,184,0.5), 0 0 0 14px rgba(232,180,184,0); } }

/* ---------- REVEAL ANIMATION (progressive enhancement) ---------- */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity .8s var(--ease-reveal), transform .8s var(--ease-reveal); }
.reveal.is-visible { opacity: 1; transform: none; }
.reveal-stagger > * { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-reveal), transform .7s var(--ease-reveal); }
.reveal-stagger.is-visible > * { opacity: 1; transform: none; }
.reveal-stagger.is-visible > *:nth-child(2) { transition-delay: .08s; }
.reveal-stagger.is-visible > *:nth-child(3) { transition-delay: .16s; }
.reveal-stagger.is-visible > *:nth-child(4) { transition-delay: .24s; }
.reveal-stagger.is-visible > *:nth-child(5) { transition-delay: .32s; }
.reveal-stagger.is-visible > *:nth-child(6) { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-stagger > * { opacity: 1 !important; transform: none !important; transition: none !important; }
  .book-fab { animation: none; }
  html { scroll-behavior: auto; }
}

/* ---------- UTILITIES ---------- */
.mt-0 { margin-top: 0; } .mt-1 { margin-top: 12px; } .mt-2 { margin-top: 24px; } .mt-3 { margin-top: 36px; } .mt-4 { margin-top: 48px; }
.maxw-prose { max-width: 720px; }
.notice { background: var(--blush-light); border-left: 3px solid var(--blush-dark); padding: 16px 20px; border-radius: var(--radius-sm); font-size: 0.9rem; color: var(--charcoal); }
.cols-2 { grid-template-columns: repeat(2, 1fr); }
.cols-3 { grid-template-columns: repeat(3, 1fr); }
.cols-4 { grid-template-columns: repeat(4, 1fr); }
.cols-5 { grid-template-columns: repeat(5, 1fr); }

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .cols-5 { grid-template-columns: repeat(3, 1fr); }
  .cols-4 { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 860px) {
  .nav__links { display: none; }
  .nav__burger { display: block; }
  .split { grid-template-columns: 1fr; }
  .split--reverse .split__media { order: 0; }
  .contact-grid { grid-template-columns: 1fr; }
  .cols-3, .cols-2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); gap: 28px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .trustbar__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 22px 12px; }
  .trust-item { justify-content: flex-start; }
  .trust-item + .trust-item::before { display: none; }
  .footer__bottom { flex-direction: column; }
}
@media (max-width: 560px) {
  :root { --container-px: 18px; }
  .cols-5, .cols-4 { grid-template-columns: 1fr; max-width: 380px; margin-inline: auto; }
  .hero__cta { flex-direction: column; align-items: stretch; }
  .hero__cta .btn { width: 100%; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .price-block { padding: 4px 20px; }
}
