/* Beauté UI kit — kit-local styles. Imports tokens. */
@import url("/bc_homepage_v2/colors_and_type.css");

/* ---------- Tweaks: expressive theme variables ---------- */
:root {
  /* Mood — overrideable color/contrast envelope */
  --mood-hero-grad: linear-gradient(160deg, #4a5240, #2e3a2a 60%, #1a1815);
  --mood-hero-photo-tint: rgba(0,0,0,0);
  --mood-page-tint: rgba(0,0,0,0);
  --mood-portrait-grayscale: 0.35;
  --mood-section-bg-shift: 0;

  /* Editorial — typographic intensity */
  --ed-display-scale: 1;
  --ed-italic-weight: 300;
  --ed-eyebrow-track: 0.22em;
  --ed-section-pad: 144px;
  --ed-line-height: 1.04;

  /* Motion — animation envelope */
  --mo-anim-mult: 1;
  --mo-parallax-mult: 1;
  --mo-reveal-stagger: 120ms;
  --mo-cursor-scale: 1;
  --mo-kenburns-scale: 1;
}

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

body {
  background: var(--ivory-50);
  color: var(--ink-900);
  font-family: var(--ff-sans);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

/* ---------- Cursor ---------- */
.b-cursor {
  position: fixed;
  top: 0; left: 0;
  width: 12px; height: 12px;
  border-radius: 999px;
  background: var(--gold-600);
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: transform 220ms cubic-bezier(0.22, 0.61, 0.36, 1), opacity 220ms;
  z-index: 9999;
  mix-blend-mode: multiply;
  opacity: 0.85;
}
@media (max-width: 900px) { .b-cursor { display: none; } }

/* ---------- Header ---------- */
.b-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  display: flex;
  align-items: center;
  padding: 22px 56px;
  z-index: 100;
  transition: background 380ms var(--ease-soft), padding 380ms var(--ease-soft), border-color 380ms;
  border-bottom: 1px solid transparent;
}
.b-header.scrolled {
  background: rgba(251, 248, 243, 0.78);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  padding: 14px 56px;
  border-bottom-color: var(--ivory-200);
}
.b-header.over-dark:not(.scrolled) { color: var(--ivory-50); }
.b-header.over-dark:not(.scrolled) .b-logo svg path { fill: var(--ivory-50); }
.b-header.over-dark:not(.scrolled) .b-cta { background: var(--ivory-50); color: var(--ink-900); }
.b-header.over-dark:not(.scrolled) .b-nav a { color: var(--ivory-50); }

.b-logo { display: flex; align-items: center; }
.b-logo svg { height: 28px; transition: opacity .22s; }
.b-logo:hover svg { opacity: 0.7; }

.b-nav {
  flex: 1;
  display: flex;
  justify-content: center;
  gap: 44px;
  list-style: none;
  margin: 0 32px;
  padding: 0;
}
.b-nav a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-900);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
  transition: color .22s;
}
.b-nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: 0;
  height: 1px;
  background: var(--gold-600);
  transition: right 320ms var(--ease-out-quart);
}
.b-nav a:hover::after,
.b-nav li.active a::after { right: 0; }

.b-cta {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ivory-50);
  background: var(--ink-900);
  text-decoration: none;
  padding: 14px 24px;
  border-radius: 2px;
  transition: background .22s var(--ease-soft), color .22s;
  white-space: nowrap;
}
.b-cta:hover { background: var(--moss-700); }

.b-locale {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: inherit;
  margin-right: 28px;
  display: flex;
  gap: 10px;
}
.b-locale span { opacity: 0.4; cursor: pointer; }
.b-locale span.active { opacity: 1; }

/* ---------- Hero ---------- */
.b-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding: 0 56px 96px;
  color: var(--ivory-50);
  overflow: hidden;
}
.b-hero-bg {
  position: absolute; inset: 0;
  background: var(--mood-hero-grad);
  z-index: 0;
  transition: background 800ms var(--ease-soft);
}
.b-hero-bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 20%, rgba(217, 199, 160, 0.18), transparent 50%),
    radial-gradient(circle at 80% 80%, rgba(46, 58, 42, 0.6), transparent 60%);
}
.b-hero-video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
  filter: brightness(0.78) saturate(0.92) contrast(1.02);
}
.b-hero-scrim {
  position: absolute; inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.30) 0%, rgba(0,0,0,0.0) 28%, rgba(0,0,0,0.55) 100%),
    linear-gradient(90deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.05) 50%, rgba(0,0,0,0.0) 100%);
  pointer-events: none;
}
@media (prefers-reduced-motion: reduce) { .b-hero-video { display: none; } }

.b-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: end;
}

.b-hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: rise 1600ms var(--ease-out-quart) forwards;
  animation-delay: 200ms;
}
.b-hero-eyebrow .line { width: 36px; height: 1px; background: var(--gold-300); }

.b-hero h1 {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(56px, 8vw, 132px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--ivory-50);
  margin: 0 0 32px;
  max-width: 14ch;
}
.b-hero h1 em {
  font-style: italic;
  color: var(--gold-300);
  font-weight: 300;
}
.b-hero h1 span {
  display: block;
  opacity: 0;
  transform: translateY(24px);
  animation: rise 1600ms var(--ease-out-quart) forwards;
}
.b-hero h1 span:nth-child(1) { animation-delay: 320ms; }
.b-hero h1 span:nth-child(2) { animation-delay: 440ms; }
.b-hero h1 span:nth-child(3) { animation-delay: 560ms; }

.b-hero-meta {
  font-family: var(--ff-sans);
  font-weight: 300;
  font-size: 17px;
  line-height: 1.7;
  color: rgba(251, 248, 243, 0.85);
  max-width: 38ch;
  margin-bottom: 36px;
  opacity: 0;
  animation: rise 1600ms var(--ease-out-quart) forwards;
  animation-delay: 700ms;
}

.b-hero-actions {
  display: flex;
  gap: 16px;
  opacity: 0;
  animation: rise 1600ms var(--ease-out-quart) forwards;
  animation-delay: 820ms;
}
.b-hero-actions .b-btn { color: var(--ink-900); background: var(--ivory-50); }
.b-hero-actions .b-btn:hover { background: var(--gold-300); }
.b-hero-actions .b-btn-ghost {
  color: var(--ivory-50); background: transparent; border: 1px solid rgba(251,248,243,0.4);
}
.b-hero-actions .b-btn-ghost:hover { background: rgba(251,248,243,0.08); border-color: var(--ivory-50); }

.b-hero-stat {
  align-self: end;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 12px;
}
.b-hero-stat .stat {
  border-top: 1px solid rgba(251,248,243,0.2);
  padding-top: 18px;
  opacity: 0;
  animation: rise 1600ms var(--ease-out-quart) forwards;
}
.b-hero-stat .stat:nth-child(1) { animation-delay: 900ms; }
.b-hero-stat .stat:nth-child(2) { animation-delay: 1000ms; }
.b-hero-stat .stat:nth-child(3) { animation-delay: 1100ms; }
.b-hero-stat .num {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 56px;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--ivory-50);
}
.b-hero-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251, 248, 243, 0.7);
  margin-top: 8px;
}

.b-hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 56px;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(251, 248, 243, 0.7);
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 2;
}
.b-hero-scroll::before {
  content: "";
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold-300), transparent);
  display: block;
  animation: scroll-pulse 2.4s infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: 0.3; transform: translateY(-6px); }
  50% { opacity: 1; transform: translateY(6px); }
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

/* ---------- Generic buttons ---------- */
.b-btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--ff-sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 18px 32px;
  border-radius: 2px;
  border: 0;
  background: var(--ink-900);
  color: var(--ivory-50);
  text-decoration: none;
  cursor: pointer;
  transition: all .28s var(--ease-soft);
}
.b-btn:hover { background: var(--moss-700); }

.b-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-900);
  text-decoration: none;
  padding: 8px 0;
  position: relative;
}
.b-link::before {
  content: "";
  width: 32px; height: 1px;
  background: var(--gold-600);
  transition: width 320ms var(--ease-out-quart);
}
.b-link:hover::before { width: 56px; }

/* ---------- Section base ---------- */
section { padding: var(--ed-section-pad) 56px; position: relative; }
.b-section-head { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; margin-bottom: 80px; max-width: 700px; }
.b-eyebrow {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe-500);
}
.b-eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--gold-600); }
.b-section-head h2 {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: clamp(40px, 5.2vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  margin: 0;
  text-wrap: pretty;
}
.b-section-head h2 em { font-style: italic; color: var(--gold-600); font-weight: 300; }

/* ---------- Concerns / Treatments grid ---------- */
.b-concerns { background: var(--ivory-50); }
.b-concerns-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ivory-300);
}
.b-concern {
  border-bottom: 1px solid var(--ivory-300);
  border-right: 1px solid var(--ivory-300);
  padding: 40px 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  cursor: pointer;
  transition: background .42s var(--ease-soft);
  position: relative;
  min-height: 240px;
}
.b-concern:nth-child(3n) { border-right: 0; }
.b-concern:hover { background: var(--ivory-100); }
.b-concern .num {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: var(--gold-600);
}
.b-concern h3 {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 36px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 4px 0 6px;
}
.b-concern p { font-size: 13.5px; line-height: 1.6; color: var(--taupe-600); margin: 0; }
.b-concern .arrow {
  position: absolute;
  bottom: 32px; right: 32px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--ivory-300);
  border-radius: 999px;
  transition: all .42s var(--ease-soft);
  color: var(--ink-900);
}
.b-concern:hover .arrow { background: var(--ink-900); color: var(--ivory-50); border-color: var(--ink-900); transform: rotate(-45deg); }

/* ---------- Treatments split ---------- */
.b-treatments { background: var(--ivory-100); }
.b-treatments-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.b-treatment-card {
  background: var(--ivory-50);
  border: 1px solid var(--ivory-200);
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: transform .6s var(--ease-out-quart), box-shadow .6s var(--ease-out-quart);
}
.b-treatment-card:hover { transform: translateY(-6px); box-shadow: 0 24px 48px rgba(26,24,21,0.08); }
.b-treatment-card .img {
  height: 320px;
  position: relative; overflow: hidden;
  background: var(--ivory-200);
}
.b-treatment-card .img > img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
  transition: transform 1.6s var(--ease-out-quart);
  z-index: 0;
}
.b-treatment-card:hover .img > img { transform: scale(1.05); }
.b-treatment-card .img::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(26,24,21,0.30));
  z-index: 1;
}
.b-treatment-card .img .ph {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px;
  text-align: center;
  color: var(--ivory-50);
  font-family: var(--ff-sans);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 24px;
  z-index: 2;
}
.b-treatment-card .img .ph svg { width: 38px; height: 38px; opacity: 0.9; }
.b-treatment-card .img .ph .ph-cap { opacity: 0.8; max-width: 200px; line-height: 1.6; font-size: 9px; letter-spacing: 0.18em; }
/* Photographic placeholder backdrops — each evokes the actual subject of the treatment */
.b-treatment-card.t1 .img {
  background:
    radial-gradient(ellipse at 30% 25%, rgba(255,255,255,0.45), transparent 55%),
    radial-gradient(circle at 70% 75%, rgba(154,127,78,0.35), transparent 60%),
    linear-gradient(160deg, #f0e7d4 0%, #d9c5a3 45%, #9a7f4e 100%);
}
.b-treatment-card.t2 .img {
  background:
    radial-gradient(ellipse at 65% 30%, rgba(255,255,255,0.5), transparent 50%),
    radial-gradient(circle at 25% 80%, rgba(184,194,168,0.4), transparent 60%),
    linear-gradient(160deg, #e8e4d8 0%, #c8b89a 50%, #6b6453 100%);
}
.b-treatment-card.t3 .img {
  background:
    radial-gradient(ellipse at 50% 40%, rgba(255,255,255,0.35), transparent 55%),
    linear-gradient(160deg, #e4e8dc 0%, #a8b598 45%, #2e3a2a 100%);
}
.b-treatment-card.t4 .img {
  background:
    radial-gradient(circle at 40% 30%, rgba(255,255,255,0.4), transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(217,199,160,0.35), transparent 55%),
    linear-gradient(160deg, #f4ede0 0%, #d4c8b0 50%, #5c513f 100%);
}
.b-treatment-card .body { padding: 28px 28px 32px; display: flex; flex-direction: column; gap: 10px; }
.b-treatment-card .eb { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-600); font-weight: 500; }
.b-treatment-card h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  color: var(--ink-900);
  margin: 4px 0 6px;
}
.b-treatment-card p { font-size: 13px; line-height: 1.55; color: var(--taupe-600); margin: 0; }
.b-treatment-card .meta { display: flex; justify-content: space-between; padding-top: 16px; border-top: 1px solid var(--ivory-200); margin-top: 16px; font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--taupe-500); }

/* ---------- Editorial split ---------- */
.b-editorial { background: var(--ivory-50); }
.b-editorial-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 96px; align-items: center; }
.b-editorial-img { aspect-ratio: 4 / 5; background: linear-gradient(160deg, #d4c8b0, #5c513f); position: relative; overflow: hidden; }
.b-editorial-img .editorial-photo {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-position: center top;
  object-fit: cover;
  object-position: center 25%;
  filter: saturate(0.92) contrast(1.03);
  z-index: 0;
}
.b-editorial-img::after {
  content: ""; position: absolute; inset: 0;
  background: none;
  pointer-events: none;
}
.b-editorial-img .seal {
  position: absolute; bottom: 32px; right: 32px;
  width: 88px; height: 88px;
  background: rgba(251, 248, 243, 0.92);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
}
.b-editorial-img .seal img { width: 70px; height: 70px; }
.b-editorial-text { padding: 32px 0; max-width: 520px; }
.b-editorial-text h2 { font-family: var(--ff-display); font-weight: 300; font-size: clamp(36px, 4vw, 60px); line-height: 1.06; letter-spacing: -0.02em; margin: 0 0 28px; }
.b-editorial-text h2 em { font-style: italic; font-weight: 300; color: var(--gold-600); }
.b-editorial-text p { font-size: 16px; line-height: 1.75; color: var(--taupe-600); font-weight: 300; margin-bottom: 20px; }

/* ---------- Doctors ---------- */
.b-doctors { background: var(--moss-700); color: var(--ink-900); }
.b-doctors .b-section-head { max-width: none; }
.b-doctors .b-section-head h2 { color: var(--ink-900); max-width: 22ch; }
.b-doctors .b-eyebrow { color: var(--ink-900); }
.b-doctors .b-eyebrow::before { background: var(--ink-900); }
.b-doctors-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.b-doctor {
  display: flex; flex-direction: column; gap: 20px; cursor: pointer;
}
.b-doctor .portrait {
  aspect-ratio: 4 / 5;
  background: var(--ivory-100);
  position: relative;
  overflow: hidden;
}
.b-doctor .portrait img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 18%;
  object-position: center 22%;
  display: block;
}
.b-doctor .portrait::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(46, 58, 42, 0.35));
  pointer-events: none;
}
.b-doctor .name {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 28px;
  letter-spacing: -0.01em;
}
.b-doctor .name { color: var(--ink-900); }
.b-doctor .role { font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-900); margin-top: -10px; opacity: 0.78; }
.b-doctor .bio { font-size: 14px; line-height: 1.6; color: rgba(26,24,21,0.72); font-weight: 300; }

/* ---------- Devices grid ---------- */
.b-devices { background: var(--ivory-50); padding: 144px 56px; }
.b-devices-head {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end;
  margin-bottom: 72px;
}
.b-devices-title {
  font-family: var(--ff-display); font-weight: 300;
  font-size: clamp(36px, 4vw, 60px); line-height: 1.04; letter-spacing: -0.02em;
  margin: 12px 0 0; max-width: 14ch; text-wrap: pretty;
}
.b-devices-title em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.b-devices-lede {
  font-size: 16px; line-height: 1.7; color: var(--taupe-600);
  max-width: 48ch; font-weight: 300; margin: 0;
}
.b-devices-editorial {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 32px;
}
.b-devices-shot {
  position: relative; overflow: hidden;
  background: var(--ivory-100);
  margin: 0;
}
.b-devices-shot.tall { aspect-ratio: 4/5; }
.b-devices-shot.wide { aspect-ratio: 4/3.2; }
.b-devices-shot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transform: scale(1.02);
  transition: transform 1.6s var(--ease-out-quart);
}
.b-devices-shot:hover img { transform: scale(1.07); }
.b-devices-shot figcaption {
  position: absolute; left: 24px; bottom: 24px; right: 24px;
  display: flex; flex-direction: column; gap: 6px;
  color: var(--ivory-50);
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}
.b-devices-shot figcaption .eb {
  font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold-300);
}
.b-devices-shot figcaption .caption {
  font-family: var(--ff-display); font-weight: 300; font-style: italic;
  font-size: 18px; line-height: 1.3; letter-spacing: -0.005em;
  max-width: 28ch;
}
.b-devices-aside { display: flex; flex-direction: column; gap: 28px; }
.b-devices-more {
  display: inline-flex; align-items: center; gap: 14px;
  align-self: flex-start;
  padding: 14px 0;
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-900);
  text-decoration: none;
  border-bottom: 1px solid var(--ink-900);
  transition: gap .4s var(--ease-soft), color .3s;
}
.b-devices-more:hover { gap: 22px; color: var(--gold-600); }
.b-devices-more .arr { font-size: 14px; }
.b-devices-list {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--ivory-300);
}
.b-devices-list li {
  display: flex; flex-direction: column; gap: 6px;
  padding: 18px 0;
  border-bottom: 1px solid var(--ivory-300);
}
.b-devices-list li:nth-child(odd) { padding-right: 16px; }
.b-devices-list li:nth-child(even) { padding-left: 16px; border-left: 1px solid var(--ivory-300); }
.b-devices-list .name {
  font-family: var(--ff-display); font-weight: 300;
  font-size: 19px; line-height: 1.15; letter-spacing: -0.01em;
  color: var(--ink-900);
}
.b-devices-list .cat {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--taupe-500);
}

@media (max-width: 1100px) {
  .b-devices-head { grid-template-columns: 1fr; gap: 24px; }
  .b-devices-editorial { grid-template-columns: 1fr; }
  .b-devices-shot.tall { aspect-ratio: 16/11; }
}
@media (max-width: 720px) {
  .b-devices { padding: 96px 24px; }
  .b-devices-list { grid-template-columns: 1fr; }
  .b-devices-list li:nth-child(even) { padding-left: 0; border-left: 0; }
}
.b-marquee {
  display: flex;
  gap: 96px;
  animation: marquee 60s linear infinite;
  width: max-content;
}
.b-marquee-item {
  font-family: var(--ff-display);
  font-weight: 300;
  font-size: 80px;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink-900);
  display: flex; align-items: center; gap: 96px;
  white-space: nowrap;
}
.b-marquee-item::after {
  content: "";
  width: 8px; height: 8px;
  background: var(--gold-600);
  border-radius: 999px;
  display: inline-block;
}
@keyframes marquee {
  to { transform: translateX(-50%); }
}

/* ---------- Testimonial ---------- */
.b-testimonial { background: var(--ink-900); color: var(--ivory-50); padding: 160px 56px; }
.b-testimonial .inner { max-width: 980px; margin: 0 auto; text-align: center; }
.b-testimonial .hr { width: 36px; height: 1px; background: var(--gold-300); margin: 0 auto 32px; }
.b-testimonial blockquote {
  font-family: var(--ff-display);
  font-weight: 300;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ivory-50);
  margin: 0;
  text-wrap: balance;
}
.b-testimonial .who { margin-top: 40px; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-300); }
.b-testimonial .nav { margin-top: 56px; display: flex; gap: 14px; justify-content: center; }
.b-testimonial .nav button {
  background: transparent; border: 1px solid rgba(251,248,243,0.3); color: var(--ivory-50);
  width: 48px; height: 48px; border-radius: 999px; cursor: pointer;
  transition: all .28s; font-size: 16px;
}
.b-testimonial .nav button:hover { background: var(--ivory-50); color: var(--ink-900); }
.b-testimonial .dots { display: flex; gap: 6px; align-items: center; }
.b-testimonial .dots span { width: 24px; height: 1px; background: rgba(251,248,243,0.3); }
.b-testimonial .dots span.active { background: var(--gold-300); }

/* ---------- CTA strip ---------- */
.b-cta-band { background: var(--ivory-100); padding: 144px 56px; text-align: center; }
.b-cta-band h2 { font-family: var(--ff-display); font-weight: 300; font-size: clamp(40px, 5vw, 76px); line-height: 1.04; letter-spacing: -0.02em; margin: 0 auto 24px; max-width: 18ch; }
.b-cta-band h2 em { font-style: italic; color: var(--gold-600); font-weight: 300; }
.b-cta-band p { font-size: 17px; line-height: 1.7; color: var(--taupe-600); max-width: 50ch; margin: 0 auto 40px; font-weight: 300; }

/* ---------- Footer ---------- */
.b-footer {
  position: relative;
  background: linear-gradient(180deg, #14120f 0%, #1a1815 60%, #0f0e0c 100%);
  color: var(--ivory-50);
  padding: 96px 56px 28px;
  overflow: hidden;
}
.b-footer::before {
  content: ""; position: absolute; top: 0; left: 56px; right: 56px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-300), transparent);
  opacity: 0.4;
}

.b-footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.4fr; gap: 56px; padding-bottom: 48px; border-bottom: 1px solid rgba(251,248,243,0.10); }
.b-footer-brand img { height: 28px; margin-bottom: 20px; }
.b-footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(251,248,243,0.7); font-weight: 300; max-width: 38ch; margin: 0 0 24px; }
.b-footer-pill {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: rgba(251,248,243,0.85);
  border: 1px solid rgba(251,248,243,0.18);
  padding: 8px 14px; border-radius: 999px;
}
.b-footer-pill .dot { width: 6px; height: 6px; border-radius: 999px; background: #88b888; box-shadow: 0 0 8px #88b888; animation: pillPulse 2.4s var(--ease-soft) infinite; }
@keyframes pillPulse { 0%,100%{opacity:0.7;transform:scale(1);} 50%{opacity:1;transform:scale(1.2);} }

.b-footer-loc h5 {
  font-family: var(--ff-display); font-weight: 300; font-size: 22px; line-height: 1; letter-spacing: -0.01em;
  color: var(--ivory-50); text-transform: none;
  margin: 0 0 14px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(217,199,160,0.25);
}
.b-footer-loc .addr { font-size: 13px; line-height: 1.7; color: rgba(251,248,243,0.78); font-weight: 300; margin: 0 0 8px; }
.b-footer-loc .hrs { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: rgba(217,199,160,0.7); margin: 0 0 12px; }
.b-footer-loc .ph { color: var(--ivory-50); font-size: 14px; text-decoration: none; font-weight: 400; transition: color .22s; }
.b-footer-loc .ph:hover { color: var(--gold-300); }

.b-footer-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.b-footer h5 { font-size: 11px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--gold-300); margin: 0 0 20px; }
.b-footer-cols h5 { color: rgba(251,248,243,0.5); }
.b-footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.b-footer ul a { color: rgba(251,248,243,0.78); font-size: 14px; text-decoration: none; font-weight: 300; transition: color .22s; }
.b-footer ul a:hover { color: var(--gold-300); }

.b-footer-bot {
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
  padding-top: 24px;
  font-size: 11px; color: rgba(251,248,243,0.45); letter-spacing: 0.04em;
}
.b-footer-langs { display: flex; gap: 8px; font-size: 11px; letter-spacing: 0.22em; }
.b-footer-langs span { color: rgba(251,248,243,0.4); }
.b-footer-langs span.active { color: var(--gold-300); }
.b-footer-bot .social { display: flex; gap: 22px; }
.b-footer-bot .social a {
  color: rgba(251,248,243,0.6); text-decoration: none;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 6px;
  transition: color .22s;
}
.b-footer-bot .social a span { font-size: 9px; opacity: 0.5; }
.b-footer-bot .social a:hover { color: var(--gold-300); }

@media (max-width: 1100px) {
  .b-footer-grid { grid-template-columns: 1fr 1fr; gap: 48px; }
}
@media (max-width: 720px) {
  .b-footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .b-footer-cols { grid-template-columns: 1fr 1fr; }
  .b-footer-bot { flex-direction: column; align-items: flex-start; gap: 16px; }
}

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 1200ms var(--ease-out-quart), transform 1200ms var(--ease-out-quart); }
.reveal.in { opacity: 1; transform: translateY(0); }

/* Word-by-word reveal for big headlines */
.reveal-words .word { display: inline-block; overflow: hidden; vertical-align: top; }
.reveal-words .word > span { display: inline-block; transform: translateY(110%); transition: transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.reveal-words.in .word > span { transform: translateY(0); }
.reveal-words .word:nth-child(2) > span { transition-delay: 80ms; }
.reveal-words .word:nth-child(3) > span { transition-delay: 160ms; }
.reveal-words .word:nth-child(4) > span { transition-delay: 240ms; }
.reveal-words .word:nth-child(5) > span { transition-delay: 320ms; }
.reveal-words .word:nth-child(6) > span { transition-delay: 400ms; }
.reveal-words .word:nth-child(7) > span { transition-delay: 480ms; }

/* Image reveal — ivory mask wipes upward */
.img-reveal { position: relative; overflow: hidden; }
.img-reveal::after {
  content: ""; position: absolute; inset: 0;
  background: var(--c-bg, #FBF8F3);
  transform: translateY(0);
  transition: transform 1400ms cubic-bezier(0.65, 0, 0.35, 1);
}
.img-reveal.in::after { transform: translateY(-101%); }
.img-reveal > * { transform: scale(1.08); transition: transform 2400ms cubic-bezier(0.22, 0.61, 0.36, 1); }
.img-reveal.in > * { transform: scale(1); }

/* Parallax layers driven by JS via --p (0..1) */
.parallax { will-change: transform; transform: translate3d(0, calc(var(--p, 0) * var(--depth, 60px)), 0); }
.parallax-bg { will-change: transform; transform: translate3d(0, calc(var(--p, 0) * 120px), 0) scale(1.18); }

/* Hero monogram drifting behind type */
.b-hero-monogram {
  position: absolute;
  top: 50%; right: -120px;
  width: 720px; height: 720px;
  transform: translate(0, -50%) rotate(0deg);
  opacity: 0.06;
  z-index: 1;
  animation: drift 60s linear infinite;
  pointer-events: none;
}
.b-hero-monogram img { width: 100%; height: 100%; filter: brightness(2.5); }
@keyframes drift {
  to { transform: translate(0, -50%) rotate(360deg); }
}

/* Marquee with subtle vertical bob */
.b-marquee-item { transition: transform 600ms var(--ease-soft); }
.b-marquee:hover { animation-play-state: paused; }

/* Magnetic CTA */
.magnet { transition: transform 420ms cubic-bezier(0.22, 0.61, 0.36, 1); }

/* Section number marker that rises in */
.section-num {
  position: absolute;
  top: 56px; right: 56px;
  font-family: var(--ff-display);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--gold-600);
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 800ms var(--ease-soft), transform 800ms var(--ease-out-quart);
}
.section-num.in { opacity: 0.8; transform: translateY(0); }

/* Concern card hover — image-reveal-on-hover */
.b-concern { overflow: hidden; }
.b-concern .hover-img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transform: scale(1.1);
  transition: opacity 800ms var(--ease-soft), transform 1600ms var(--ease-out-quart);
  z-index: 0;
}
.b-concern:hover .hover-img { opacity: 0.18; transform: scale(1); }
.b-concern > * { position: relative; z-index: 1; }

/* Doctor portrait — natural color, no ken-burns */
@keyframes kenburns {
  from { transform: scale(1) translate(0, 0); }
  to { transform: scale(1.06) translate(-1.5%, -1%); }
}

/* Testimonial — quote letter-fade in */
.b-testimonial blockquote { transition: opacity 480ms var(--ease-soft); }

/* Cursor on hover state */
.b-cursor.expand { transform: translate(-50%, -50%) scale(2.6); background: transparent; box-shadow: inset 0 0 0 1px var(--gold-600); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .b-marquee { animation: none; }
}

/* ---------- Booking modal ---------- */
.b-modal-backdrop {
  position: fixed; inset: 0;
  background: rgba(26, 24, 21, 0.6);
  backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity .42s var(--ease-soft);
}
.b-modal-backdrop.open { opacity: 1; pointer-events: auto; }
.b-modal {
  background: var(--ivory-50);
  width: 540px; max-width: calc(100% - 32px);
  padding: 56px 56px 48px;
  position: relative;
  transform: translateY(24px);
  transition: transform .6s var(--ease-out-quart);
}
.b-modal-backdrop.open .b-modal { transform: translateY(0); }
.b-modal h3 { font-family: var(--ff-display); font-weight: 300; font-size: 36px; line-height: 1.1; letter-spacing: -0.01em; margin: 0 0 8px; }
.b-modal p { font-size: 14px; color: var(--taupe-600); margin: 0 0 32px; }
.b-modal .field { margin-bottom: 22px; }
.b-modal label { display: block; font-size: 10px; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--taupe-500); margin-bottom: 8px; }
.b-modal input, .b-modal select { width: 100%; font-family: var(--ff-sans); font-size: 15px; color: var(--ink-900); background: transparent; border: 0; border-bottom: 1px solid var(--ivory-300); padding: 6px 0; outline: none; transition: border-color .22s; }
.b-modal input:focus, .b-modal select:focus { border-color: var(--moss-700); }
.b-modal .close { position: absolute; top: 24px; right: 24px; background: 0; border: 0; cursor: pointer; font-size: 24px; color: var(--ink-900); line-height: 1; }
.b-modal .actions { margin-top: 36px; display: flex; gap: 12px; }
.b-modal .b-btn { width: 100%; justify-content: center; }

/* ---------- Toast ---------- */
.b-toast {
  position: fixed; bottom: 32px; left: 50%;
  transform: translate(-50%, 24px);
  background: var(--ink-900); color: var(--ivory-50);
  padding: 16px 28px;
  font-size: 13px; letter-spacing: 0.06em;
  z-index: 2000;
  opacity: 0;
  transition: all .42s var(--ease-soft);
  display: flex; align-items: center; gap: 12px;
}
.b-toast.show { opacity: 1; transform: translate(-50%, 0); }
.b-toast .dot { width: 6px; height: 6px; border-radius: 999px; background: var(--gold-300); }

/* ---------- Responsive ---------- */
@media (max-width: 1200px) {
  .b-header { padding: 18px 32px; }
  .b-header.scrolled { padding: 12px 32px; }
  .b-nav { gap: 28px; margin: 0 20px; }
  .b-locale { margin-right: 18px; }
}
@media (max-width: 1100px) {
  .b-nav { display: none; }
  .b-locale { margin-left: auto; }
  .b-hero-inner { grid-template-columns: 1fr; }
  .b-hero-stat { flex-direction: row; gap: 32px; }
  .b-treatments-grid { grid-template-columns: repeat(2, 1fr); }
  .b-doctors-grid { grid-template-columns: repeat(2, 1fr); }
  .b-editorial-inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 720px) {
  section, .b-hero, .b-cta-band, .b-testimonial, .b-footer { padding-left: 24px; padding-right: 24px; }
  .b-header { padding: 16px 24px; }
  .b-nav { display: none; }
  .b-concerns-grid { grid-template-columns: 1fr; }
  .b-concern, .b-concern:nth-child(3n) { border-right: 0; }
  .b-treatments-grid, .b-doctors-grid { grid-template-columns: 1fr; }
  .b-footer-grid { grid-template-columns: 1fr; gap: 40px; }
}
