/* ───────────────────────────────────────────────────────
   FACETTE — design tokens & base
   ─────────────────────────────────────────────────────── */

:root {
  /* Default palette: Luminous (blush/sand/porcelain) */
  --bg: #FAF6F1;
  --bg-warm: #F1E6D3;
  --bg-blush: #F1DCD4;
  --bg-deep: #1F1816;
  --ink: #20191A;
  --ink-2: #4F4441;
  --ink-3: #93847F;
  --rule: #E5DBD0;
  --rule-2: #D7C8B9;
  --gold: #B68C3A;
  --gold-soft: #D4B273;
  --accent: #C58A7E;
  --accent-deep: #A56B5E;
  --white: #FFFFFF;
  --shadow-soft: 0 1px 2px rgba(31, 24, 22, 0.04), 0 12px 32px -16px rgba(31, 24, 22, 0.12);
  --shadow-card: 0 1px 0 rgba(31, 24, 22, 0.04), 0 24px 56px -28px rgba(31, 24, 22, 0.22);

  /* Type */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Manrope", -apple-system, "Helvetica Neue", sans-serif;
}

/* Palette: Clinical */
[data-palette="clinical"] {
  --bg: #F6F4F0;
  --bg-warm: #ECE7DE;
  --bg-blush: #E4E6E8;
  --bg-deep: #14181C;
  --ink: #14181C;
  --ink-2: #424A52;
  --ink-3: #8E96A0;
  --rule: #DDDFE2;
  --rule-2: #C8CBCF;
  --gold: #7C8C99;
  --gold-soft: #A6B5C2;
  --accent: #6E8A9B;
  --accent-deep: #4B6B7E;
}

/* Palette: Gold Boutique */
[data-palette="boutique"] {
  --bg: #F7F1E6;
  --bg-warm: #ECDFC7;
  --bg-blush: #F2DEC5;
  --bg-deep: #1A1410;
  --ink: #1A1410;
  --ink-2: #4A3D2D;
  --ink-3: #9A8B72;
  --rule: #E3D5BD;
  --rule-2: #C8B391;
  --gold: #9F7A2B;
  --gold-soft: #C8A45E;
  --accent: #9F7A2B;
  --accent-deep: #6B5018;
}

/* ── reset-ish ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: #1a1614;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
button { font: inherit; color: inherit; cursor: pointer; background: none; border: 0; padding: 0; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ── Stage chrome ── */
.stage-chrome {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 52px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 18px;
  background: rgba(20, 17, 16, 0.94);
  backdrop-filter: blur(14px);
  color: #E8DFD6;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  white-space: nowrap;
}
.stage-chrome .sc-brand {
  display: flex; align-items: center; gap: 10px;
  font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase;
  font-size: 10px;
}
.stage-chrome .sc-brand .sc-dot {
  width: 7px; height: 7px; border-radius: 999px;
  background: var(--gold-soft);
  box-shadow: 0 0 0 3px rgba(212, 178, 115, 0.22);
}
.stage-chrome .sc-controls { display: flex; align-items: center; gap: 4px; }
.stage-chrome .sc-btn {
  padding: 6px 10px; border-radius: 999px;
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(232, 223, 214, 0.7);
  transition: background 120ms, color 120ms;
}
.stage-chrome .sc-btn:hover { color: #fff; background: rgba(255, 255, 255, 0.06); }
.stage-chrome .sc-btn.active { color: #1a1614; background: var(--gold-soft); }
.stage-chrome .sc-divider { width: 1px; height: 16px; background: rgba(255, 255, 255, 0.1); margin: 0 4px; }
.stage-chrome .sc-lab { font-size: 9px; letter-spacing: 0.2em; color: rgba(232, 223, 214, 0.5); padding: 0 6px; }

/* ── Stage layout ── */
.stage-wrap {
  position: fixed; top: 52px; left: 0;
  width: 100vw; height: calc(100vh - 52px);
  overflow: hidden;
  background: #14110f;
}
.stage {
  width: var(--stage-w, 1680px);
  height: var(--stage-h, calc(100vh - 52px));
  transform-origin: top left;
  transform: scale(var(--stage-scale, 1));
  display: flex;
  background: #14110f;
}
.stage-desktop {
  flex: 1 1 auto;
  min-width: 0;
  overflow-y: auto;
  overflow-x: hidden;
  background: var(--bg);
  scroll-behavior: smooth;
}
.stage-mobile {
  flex: 0 0 460px;
  padding: 28px 24px 0;
  display: flex; align-items: flex-start; justify-content: center;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  background:
    radial-gradient(ellipse at 50% 0%, rgba(212, 178, 115, 0.08), transparent 50%),
    #14110f;
  overflow: hidden;
}
.stage.mobile-hidden .stage-mobile { display: none; }

/* iPhone frame is from ios-frame.jsx; let it own its sizing */
.mobile-shell { position: sticky; top: 0; }

/* ── Site scaffolding ── */
.site { min-height: 100%; background: var(--bg); color: var(--ink); }
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
}
.section { padding: 96px 0; }
.section-tight { padding: 64px 0; }

/* ── Type primitives ── */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.eyebrow .dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 999px;
  background: var(--gold); margin: 0 10px 2px 0; vertical-align: middle;
}
.display {
  font-family: var(--font-display);
  font-weight: 300;
  font-style: normal;
  letter-spacing: -0.01em;
  line-height: 0.95;
  color: var(--ink);
  text-wrap: balance;
}
.display em {
  font-style: italic;
  font-weight: 400;
}
.lede {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.6;
  color: var(--ink-2);
  text-wrap: pretty;
  max-width: 56ch;
}
.body { font-size: 15px; line-height: 1.65; color: var(--ink-2); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  height: 52px;
  padding: 0 28px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-size: 13px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  transition: transform 140ms, background 140ms, color 140ms, border-color 140ms;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn-primary {
  background: var(--ink);
  color: var(--bg);
}
.btn-primary:hover { background: var(--accent-deep); }
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
}
.btn-secondary:hover { background: var(--ink); color: var(--bg); }
.btn-ghost {
  background: transparent; color: var(--ink);
  padding: 0 4px; height: auto;
  border-bottom: 1px solid var(--ink);
  border-radius: 0;
}
.btn-sm { height: 40px; padding: 0 20px; font-size: 11px; letter-spacing: 0.18em; }

/* ── Chip ── */
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  height: 30px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--rule);
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink);
}
.chip.chip-dark { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.chip .star { color: var(--gold); }

/* ── Striped placeholder (for assets we don't have) ── */
.placeholder-img {
  position: relative;
  background:
    repeating-linear-gradient(
      45deg,
      var(--bg-warm),
      var(--bg-warm) 8px,
      var(--bg) 8px,
      var(--bg) 16px
    );
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.placeholder-img::before {
  content: ""; position: absolute; inset: 14px; border: 1px dashed rgba(31, 24, 22, 0.18);
}
.placeholder-img .ph-label {
  position: relative;
  font-family: "Courier New", "JetBrains Mono", monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  text-align: center;
  background: rgba(250, 246, 241, 0.92);
  padding: 6px 10px;
  white-space: pre-line;
  text-transform: uppercase;
}

/* ── Header / Nav ── */
.fnav {
  position: sticky; top: 0; z-index: 80;
  background: rgba(250, 246, 241, 0.88);
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  border-bottom: 1px solid var(--rule);
}
.fnav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 56px;
  height: 76px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}
.fnav-left { display: flex; align-items: center; gap: 36px; }
.fnav-right { display: flex; align-items: center; gap: 18px; justify-content: flex-end; }
.fnav-logo { display: flex; align-items: center; gap: 14px; }
.fnav-logo .fmark {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 32px;
  letter-spacing: 0.04em;
  color: var(--gold);
  line-height: 1;
}
.fnav-logo .fmark .ff-bar { color: var(--ink); }
.fnav-logo .fwm {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 21px;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: var(--ink);
}
.fnav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  padding: 6px 0;
  position: relative;
}
.fnav-link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -2px;
  height: 1px; background: var(--ink);
  transition: right 220ms ease;
}
.fnav-link:hover::after { right: 0; }
.fnav-link.active::after { right: 0; }

.branch-toggle {
  display: inline-flex; align-items: center;
  background: var(--white); border: 1px solid var(--rule);
  border-radius: 999px;
  overflow: hidden;
}
.branch-toggle button {
  padding: 7px 14px;
  font-size: 10px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-2);
  transition: background 140ms, color 140ms;
}
.branch-toggle button.active { background: var(--ink); color: var(--bg); }

/* ── Trust strip ── */
.trust-strip {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  background: var(--bg);
}
.trust-strip-inner {
  max-width: 1280px; margin: 0 auto; padding: 28px 56px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 32px; align-items: center;
}
.trust-item {
  display: flex; flex-direction: column; gap: 4px;
  text-align: center; align-items: center;
}
.trust-item .ti-fig {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 30px;
  line-height: 1;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.trust-item .ti-fig .ti-star { color: var(--gold); font-size: 24px; vertical-align: 2px; }
.trust-item .ti-lab {
  font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-2);
}
.trust-item.with-rule { border-left: 1px solid var(--rule); padding-left: 32px; }

/* ── Hero ── */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: end;
  padding: 80px 56px 96px;
  max-width: 1440px; margin: 0 auto;
}
.hero-copy { padding-bottom: 24px; }
.hero-eyebrow { margin-bottom: 28px; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(56px, 6.6vw, 92px);
  line-height: 0.96;
  letter-spacing: -0.018em;
  margin: 0 0 28px;
  color: var(--ink);
  text-wrap: balance;
}
.hero h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}
.hero-sub {
  font-size: 17px; line-height: 1.6; color: var(--ink-2);
  max-width: 48ch; margin: 0 0 36px;
}
.hero-ctas { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 40px; }
.hero-meta {
  display: flex; gap: 16px; align-items: center; flex-wrap: wrap;
}
.hero-art {
  position: relative;
  aspect-ratio: 4 / 5;
  background: var(--bg-blush);
  overflow: hidden;
}
.hero-art img { width: 100%; height: 100%; object-fit: cover; }
.hero-art .ha-tag {
  position: absolute; left: 24px; bottom: 24px;
  background: rgba(250, 246, 241, 0.94);
  padding: 14px 18px;
  display: flex; flex-direction: column; gap: 2px;
  max-width: 240px;
}
.hero-art .ha-tag .t-label { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-2); }
.hero-art .ha-tag .t-name { font-family: var(--font-display); font-size: 21px; font-weight: 400; color: var(--ink); }
.hero-side-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px;
  padding-top: 14px;
}
.hero-side-cards .hsc {
  aspect-ratio: 1 / 1;
  background: var(--bg-warm);
  overflow: hidden;
  position: relative;
}
.hero-side-cards .hsc img { width: 100%; height: 100%; object-fit: cover; }

/* ── Section header ── */
.section-head { display: flex; flex-direction: column; gap: 16px; align-items: flex-start; margin-bottom: 56px; }
.section-head.center { align-items: center; text-align: center; }
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(40px, 4.4vw, 58px);
  line-height: 1.0;
  letter-spacing: -0.012em;
  margin: 0;
  color: var(--ink);
}
.section-head h2 em { font-style: italic; font-weight: 400; color: var(--gold); }
.section-head .ks { display: flex; gap: 56px; align-items: end; width: 100%; justify-content: space-between; flex-wrap: wrap; }
.section-head .ks-right { max-width: 32ch; }

/* ── Signature grid ── */
.sig-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.sig-card {
  position: relative;
  background: var(--bg-warm);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  display: flex; flex-direction: column;
}
.sig-card.s-tall { grid-column: span 4; aspect-ratio: 3 / 4; }
.sig-card.s-wide { grid-column: span 5; aspect-ratio: 5 / 4; }
.sig-card.s-half { grid-column: span 3; aspect-ratio: 3 / 4; }
.sig-card .sc-img {
  position: absolute; inset: 0;
}
.sig-card .sc-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.sig-card:hover .sc-img img { transform: scale(1.04); }
.sig-card .sc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 38%, rgba(20, 17, 16, 0.62) 100%);
}
.sig-card .sc-body {
  position: relative; z-index: 1; margin-top: auto;
  padding: 24px;
  color: #fff;
  display: flex; flex-direction: column; gap: 8px;
}
.sig-card .sc-num {
  font-family: var(--font-display); font-size: 13px; opacity: 0.85;
}
.sig-card .sc-name {
  font-family: var(--font-display); font-weight: 400; font-size: 28px;
  line-height: 1.0;
}
.sig-card .sc-meta {
  display: flex; align-items: center; gap: 14px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
}
.sig-card .sc-meta .sc-price { font-weight: 600; }
.sig-card .sc-meta .sc-dot { width: 4px; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.65); }

/* ── Brand row ── */
.brand-row {
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  padding: 36px 0;
}
.brand-row-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: 1fr 4fr; gap: 32px; align-items: center;
}
.brand-row-inner .br-label {
  font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-2);
  border-right: 1px solid var(--rule);
  padding-right: 24px;
  max-width: 16ch;
  line-height: 1.5;
}
.brand-row-inner .br-logos {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  align-items: center;
}
.brand-row-inner .br-logo {
  font-family: var(--font-display); font-size: 22px; letter-spacing: 0.06em;
  text-align: center; color: var(--ink); opacity: 0.85;
  border-left: 1px solid var(--rule);
  padding: 8px 0 8px 24px;
  font-weight: 400;
}
.brand-row-inner .br-logo:first-child { border-left: 0; padding-left: 0; }
.brand-row-inner .br-logo .sub {
  display: block; font-family: var(--font-sans); font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); margin-top: 4px;
}

/* ── Memberships preview ── */
.memb-preview {
  background: var(--bg-deep); color: #EFE4D6;
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.memb-preview h2 { color: #EFE4D6; }
.memb-preview h2 em { color: var(--gold-soft); }
.memb-preview .eyebrow { color: rgba(239, 228, 214, 0.6); }
.memb-preview .lede { color: rgba(239, 228, 214, 0.72); }
.memb-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  background: rgba(239, 228, 214, 0.08);
  border: 1px solid rgba(239, 228, 214, 0.08);
}
.memb-grid .mg-cell {
  background: var(--bg-deep);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 12px;
  min-height: 220px;
}
.memb-grid .mg-cell.feature {
  background: linear-gradient(180deg, rgba(212, 178, 115, 0.16), rgba(212, 178, 115, 0.03));
}
.mg-cell .mg-name {
  font-family: var(--font-display); font-size: 27px; font-weight: 400; line-height: 1.05; color: #EFE4D6;
}
.mg-cell .mg-cad {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(239, 228, 214, 0.55);
}
.mg-cell .mg-price {
  font-family: var(--font-display); font-size: 36px; color: #EFE4D6; margin-top: auto;
}
.mg-cell .mg-price .pre { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.2em; color: var(--gold-soft); display: block; margin-bottom: 4px; }
.mg-cell .mg-price .aed { font-size: 12px; letter-spacing: 0.18em; font-family: var(--font-sans); color: rgba(239, 228, 214, 0.55); margin-left: 6px; }

/* ── Reviews ── */
.reviews-section { background: var(--bg-warm); }
.reviews-grid {
  display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 1px;
  background: var(--rule-2);
  border: 1px solid var(--rule-2);
}
.review-card {
  background: var(--bg-warm);
  padding: 32px;
  display: flex; flex-direction: column; gap: 18px;
}
.review-card .rc-stars {
  font-size: 14px; letter-spacing: 0.08em; color: var(--gold);
}
.review-card .rc-quote {
  font-family: var(--font-display); font-weight: 400; font-style: italic;
  font-size: 21px; line-height: 1.32;
  color: var(--ink);
}
.review-card .rc-meta {
  margin-top: auto;
  display: flex; flex-direction: column; gap: 4px;
}
.review-card .rc-name { font-size: 12px; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; }
.review-card .rc-source { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); }

/* ── Gallery strip ── */
.gallery-strip {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
}
.gallery-strip .gs-cell {
  aspect-ratio: 3 / 4;
  background: var(--bg-warm);
  overflow: hidden;
  cursor: pointer;
}
.gallery-strip .gs-cell img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms; }
.gallery-strip .gs-cell:hover img { transform: scale(1.04); }

/* ── Skin Quiz CTA ── */
.quiz-cta {
  background: var(--bg-blush);
  padding: 80px 0;
}
.quiz-cta-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.quiz-cta-inner .qc-art {
  aspect-ratio: 4 / 5;
  background: var(--bg-warm);
  overflow: hidden;
}
.quiz-cta-inner .qc-art img { width: 100%; height: 100%; object-fit: cover; }

/* ── Footer ── */
.footer {
  background: var(--bg-deep); color: #EFE4D6;
  padding: 80px 0 32px;
}
.footer-inner { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.footer-top {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(239, 228, 214, 0.12);
}
.footer h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 18px;
  margin: 0 0 18px; color: #EFE4D6; letter-spacing: 0.04em;
}
.footer ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer ul a {
  font-size: 13px; color: rgba(239, 228, 214, 0.72);
  transition: color 140ms;
}
.footer ul a:hover { color: #EFE4D6; }
.footer-brand .fb-logo {
  font-family: var(--font-display); font-size: 28px; font-weight: 400; letter-spacing: 0.32em;
  text-transform: uppercase; color: #EFE4D6;
}
.footer-brand .fb-tag {
  font-size: 13px; line-height: 1.6; color: rgba(239, 228, 214, 0.7);
  margin-top: 14px; max-width: 32ch;
}
.footer-bottom {
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(239, 228, 214, 0.45);
}

/* ── Booking flyout (sticky bottom on desktop) ── */
.flyout {
  position: fixed; right: 28px; bottom: 28px; z-index: 70;
  display: flex; gap: 12px;
}
.fab {
  width: 56px; height: 56px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  background: #25D366; color: white;
  box-shadow: 0 10px 32px -10px rgba(20, 17, 16, 0.42);
  transition: transform 160ms;
}
.fab:hover { transform: translateY(-2px); }

/* ── Modal ── */
.modal-scrim {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 17, 16, 0.5);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: scrim-in 220ms;
}
@keyframes scrim-in { from { opacity: 0; } to { opacity: 1; } }
.modal {
  background: var(--bg);
  max-width: 880px;
  width: 100%;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  animation: modal-in 280ms cubic-bezier(0.2, 0.7, 0.2, 1);
}
@keyframes modal-in { from { transform: translateY(12px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 999px;
  background: rgba(250, 246, 241, 0.92);
  color: var(--ink); font-size: 16px;
  z-index: 2;
}
.modal-close:hover { background: var(--ink); color: var(--bg); }

/* ── Treatments page ── */
.tx-hero {
  padding: 80px 0 48px;
  border-bottom: 1px solid var(--rule);
}
.tx-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.tx-hero h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(60px, 7vw, 104px);
  line-height: 0.96; letter-spacing: -0.02em;
  margin: 24px 0 24px;
}
.tx-hero h1 em { font-style: italic; color: var(--gold); }

.tx-catnav {
  position: sticky; top: 76px; z-index: 60;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--rule);
}
.tx-catnav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 56px;
  display: flex; align-items: center; gap: 4px; overflow-x: auto;
  height: 60px;
}
.tx-catnav button {
  padding: 8px 16px;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2);
  white-space: nowrap;
  border-radius: 999px;
  font-weight: 500;
  transition: background 140ms, color 140ms;
}
.tx-catnav button:hover { background: var(--bg-warm); color: var(--ink); }
.tx-catnav button.active { background: var(--ink); color: var(--bg); }

.tx-cat { padding: 80px 0; border-bottom: 1px solid var(--rule); }
.tx-cat:last-child { border-bottom: 0; }
.tx-cat-inner { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.tx-cat-head {
  display: grid; grid-template-columns: 1fr 2fr; gap: 64px; align-items: end;
  margin-bottom: 48px;
}
.tx-cat-head h2 {
  font-family: var(--font-display); font-weight: 400;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1; margin: 12px 0 0;
}
.tx-cat-head h2 em { font-style: italic; color: var(--gold); }
.tx-cat-head .tch-desc { font-size: 16px; line-height: 1.6; color: var(--ink-2); }

.tx-rows { display: flex; flex-direction: column; gap: 0; }
.tx-row {
  display: grid;
  grid-template-columns: 96px 1fr auto 200px;
  gap: 32px;
  padding: 26px 0;
  border-top: 1px solid var(--rule);
  align-items: center;
  cursor: pointer;
  transition: background 160ms;
}
.tx-row:hover { background: rgba(31, 24, 22, 0.03); }
.tx-row:last-child { border-bottom: 1px solid var(--rule); }
.tx-row .txr-thumb {
  width: 96px; height: 96px;
  background: var(--bg-warm); overflow: hidden;
}
.tx-row .txr-thumb img { width: 100%; height: 100%; object-fit: cover; }
.tx-row .txr-body { display: flex; flex-direction: column; gap: 8px; }
.tx-row .txr-name {
  font-family: var(--font-display); font-weight: 400; font-size: 26px; line-height: 1;
  color: var(--ink);
}
.tx-row .txr-desc { font-size: 14px; line-height: 1.5; color: var(--ink-2); max-width: 60ch; }
.tx-row .txr-meta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3);
}
.tx-row .txr-price {
  font-family: var(--font-display); font-size: 30px; font-weight: 400; color: var(--ink);
  line-height: 1; letter-spacing: -0.01em;
}
.tx-row .txr-price .pre { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.16em; color: var(--ink-3); }
.tx-row .txr-price .aed { font-family: var(--font-sans); font-size: 13px; letter-spacing: 0.14em; color: var(--ink-3); margin-left: 4px; }
.tx-row .txr-price.tbc {
  font-size: 14px; font-family: var(--font-sans); letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}
.tx-row .txr-cta {
  display: flex; flex-direction: column; align-items: flex-end; gap: 12px;
  text-align: right;
}

/* Memberships page */
.mb-hero {
  padding: 80px 0 64px;
  background: var(--bg-warm);
  border-bottom: 1px solid var(--rule-2);
}
.mb-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.mb-hero h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(56px, 6.4vw, 96px);
  line-height: 0.96; letter-spacing: -0.02em;
  margin: 24px 0 32px;
}
.mb-hero h1 em { font-style: italic; color: var(--gold); }
.mb-table-wrap { padding: 80px 0; }
.mb-table-wrap .container > .eyebrow { margin-bottom: 16px; }
.mb-table {
  border: 1px solid var(--rule);
  background: var(--white);
  margin-top: 32px;
}
.mb-table-head {
  display: grid;
  grid-template-columns: 1.5fr repeat(7, 1fr);
  border-bottom: 1px solid var(--rule);
}
.mb-table-head .mth {
  padding: 32px 16px;
  display: flex; flex-direction: column; gap: 8px;
  border-left: 1px solid var(--rule);
  position: relative;
}
.mb-table-head .mth.lab { border-left: 0; padding-left: 32px; }
.mb-table-head .mth.featured { background: var(--bg-warm); }
.mb-table-head .mth-name {
  font-family: var(--font-display); font-size: 21px; font-weight: 400; line-height: 1;
  color: var(--ink);
}
.mb-table-head .mth-cad { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-3); }
.mb-table-head .mth-price { font-family: var(--font-display); font-size: 26px; font-weight: 400; margin-top: 8px; color: var(--ink); }
.mb-table-head .mth-price .aed { font-family: var(--font-sans); font-size: 11px; letter-spacing: 0.14em; color: var(--ink-3); margin-left: 2px; }
.mb-table-head .mth-badge {
  position: absolute; top: 12px; right: 12px;
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--gold); color: white; padding: 3px 8px;
}
.mb-row {
  display: grid;
  grid-template-columns: 1.5fr repeat(7, 1fr);
  border-bottom: 1px solid var(--rule);
}
.mb-row:last-child { border-bottom: 0; }
.mb-row .mr-cell {
  padding: 18px 16px;
  border-left: 1px solid var(--rule);
  font-size: 13px;
  text-align: center;
  color: var(--ink-2);
  display: flex; align-items: center; justify-content: center;
}
.mb-row .mr-cell.featured { background: rgba(241, 230, 211, 0.4); }
.mb-row .mr-cell.lab {
  border-left: 0; padding-left: 32px;
  text-align: left; justify-content: flex-start;
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.mb-row .mr-cell .check { color: var(--gold); font-size: 16px; }
.mb-row .mr-cell .tbc {
  font-size: 9px; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--bg-warm); color: var(--ink-3); padding: 3px 8px;
}

/* Locations page */
.loc-hero {
  padding: 80px 0 32px;
}
.loc-hero-inner { max-width: 1280px; margin: 0 auto; padding: 0 56px; }
.loc-hero h1 {
  font-family: var(--font-display); font-weight: 300;
  font-size: clamp(60px, 7vw, 104px);
  line-height: 0.96; letter-spacing: -0.02em;
  margin: 24px 0;
}
.loc-hero h1 em { font-style: italic; color: var(--gold); }
.loc-grid {
  padding: 32px 0 96px;
}
.loc-grid-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 56px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 32px;
}
.loc-card {
  background: var(--white);
  border: 1px solid var(--rule);
  display: flex; flex-direction: column;
  overflow: hidden;
  position: relative;
}
.loc-card.flagship::before {
  content: "Flagship"; position: absolute; top: 16px; left: 16px; z-index: 2;
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  background: var(--ink); color: var(--bg); padding: 5px 10px;
}
.loc-card .lc-img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-warm); }
.loc-card .lc-img img { width: 100%; height: 100%; object-fit: cover; }
.loc-card .lc-body { padding: 32px; display: flex; flex-direction: column; gap: 16px; }
.loc-card h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 32px;
  margin: 0; color: var(--ink);
}
.loc-card .lc-row {
  display: grid; grid-template-columns: 90px 1fr; gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  align-items: start;
}
.loc-card .lc-row .lc-lab {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ink-3);
  padding-top: 2px;
}
.loc-card .lc-row .lc-val { color: var(--ink); line-height: 1.5; }
.loc-card .lc-row .lc-val a { border-bottom: 1px solid var(--rule); }
.loc-card .lc-row .lc-val a:hover { color: var(--accent-deep); border-bottom-color: var(--accent-deep); }
.loc-card .lc-ctas { display: flex; gap: 10px; margin-top: 16px; }

/* ── Live location maps ── */
.location-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.location-map-card {
  border: 1px solid var(--rule);
  background: var(--bg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.location-map-card iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: saturate(.92) contrast(1.04);
}
.location-map-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  padding: 16px 18px;
  border-top: 1px solid var(--rule);
}
.location-map-card__footer strong {
  display: block;
  font-family: var(--font-serif);
  color: var(--ink);
}
.location-map-card__footer span {
  display: block;
  margin-top: 4px;
  color: var(--ink-2);
  font-size: 12px;
}
.location-map-card__footer a {
  white-space: nowrap;
  border-bottom: 1px solid var(--rule);
  color: var(--accent-deep);
}
@media (max-width: 760px) {
  .location-map-grid { grid-template-columns: 1fr; }
  .location-map-card__footer { align-items: flex-start; flex-direction: column; }
}
/* ── Mobile-specific overrides (inside iPhone frame) ── */
.is-mobile {
  font-size: 14px;
}
.is-mobile .container { padding: 0 22px; }
.is-mobile .section { padding: 56px 0; }
.is-mobile .fnav-inner {
  padding: 0 18px;
  height: 56px;
  grid-template-columns: auto 1fr auto;
}
.is-mobile .fnav-left { display: none; }
.is-mobile .fnav-right { display: none; }
.is-mobile .fnav-logo .fwm { font-size: 15px; letter-spacing: 0.32em; }
.is-mobile .fnav-logo .fmark { font-size: 22px; }
.is-mobile .mob-menu-btn { display: flex; }
.is-mobile .hero-grid {
  grid-template-columns: 1fr;
  padding: 32px 22px 48px;
  gap: 40px;
}
.is-mobile .hero h1 { font-size: 52px; }
.is-mobile .hero-side-cards { display: none; }
.is-mobile .trust-strip-inner { grid-template-columns: 1fr 1fr; padding: 24px 22px; gap: 20px; }
.is-mobile .trust-item.with-rule { border-left: 0; padding-left: 0; }
.is-mobile .sig-grid { grid-template-columns: 1fr; gap: 8px; }
.is-mobile .sig-card.s-tall, .is-mobile .sig-card.s-wide, .is-mobile .sig-card.s-half {
  grid-column: span 1; aspect-ratio: 4 / 5;
}
.is-mobile .section-head { margin-bottom: 32px; }
.is-mobile .section-head .ks { flex-direction: column; gap: 16px; align-items: flex-start; }
.is-mobile .section-head h2 { font-size: 36px; }
.is-mobile .brand-row-inner { grid-template-columns: 1fr; gap: 16px; }
.is-mobile .brand-row-inner .br-label { border-right: 0; padding-right: 0; }
.is-mobile .brand-row-inner .br-logos { grid-template-columns: repeat(2, 1fr); gap: 12px; }
.is-mobile .brand-row-inner .br-logo { font-size: 15px; padding: 6px 0 6px 12px; }
.is-mobile .memb-grid { grid-template-columns: 1fr; }
.is-mobile .reviews-grid { grid-template-columns: 1fr; }
.is-mobile .gallery-strip { grid-template-columns: repeat(2, 1fr); }
.is-mobile .quiz-cta-inner { grid-template-columns: 1fr; gap: 32px; padding: 0 22px; }
.is-mobile .footer-top { grid-template-columns: 1fr; gap: 32px; }
.is-mobile .footer-bottom { flex-direction: column; gap: 12px; }
.is-mobile .tx-hero-inner, .is-mobile .mb-hero-inner, .is-mobile .loc-hero-inner { padding: 0 22px; }
.is-mobile .tx-hero h1, .is-mobile .mb-hero h1, .is-mobile .loc-hero h1 { font-size: 44px; }
.is-mobile .tx-row {
  grid-template-columns: 64px 1fr;
  grid-template-areas: "thumb body" "thumb meta";
  gap: 16px;
  padding: 18px 0;
}
.is-mobile .tx-row .txr-thumb { width: 64px; height: 64px; grid-area: thumb; }
.is-mobile .tx-row .txr-body { grid-area: body; }
.is-mobile .tx-row .txr-meta {
  grid-area: meta; flex-direction: row; align-items: center; justify-content: space-between;
}
.is-mobile .tx-row .txr-cta { display: none; }
.is-mobile .tx-row .txr-name { font-size: 19px; }
.is-mobile .tx-row .txr-price { font-size: 22px; }
.is-mobile .tx-cat-head { grid-template-columns: 1fr; gap: 20px; margin-bottom: 28px; }
.is-mobile .tx-cat-head h2 { font-size: 32px; }
.is-mobile .mb-table-head { grid-template-columns: 1fr; }
.is-mobile .mb-table-head .mth { border-left: 0; border-bottom: 1px solid var(--rule); }
.is-mobile .mb-row { display: none; }
.is-mobile .loc-grid-inner { grid-template-columns: 1fr; }
.is-mobile .mob-bottom-bar { display: flex; }

/* Mobile bottom booking bar (in mobile only) */
.mob-menu-btn {
  display: none;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
}
.mob-bottom-bar {
  display: none;
  position: sticky;
  bottom: 0;
  background: var(--ink);
  color: var(--bg);
  padding: 14px 22px;
  align-items: center; justify-content: space-between;
  z-index: 50;
  margin-top: auto;
}
.mob-bottom-bar .mbb-l { display: flex; flex-direction: column; gap: 2px; }
.mob-bottom-bar .mbb-eb {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.6;
}
.mob-bottom-bar .mbb-br {
  font-size: 13px; font-weight: 500;
}
.mob-bottom-bar .mbb-cta {
  background: var(--gold-soft); color: var(--ink);
  padding: 10px 18px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 999px;
}

/* Hide flyout in mobile frame */
.is-mobile .flyout { display: none; }

/* Quiz steps */
.quiz {
  display: flex; flex-direction: column;
  background: var(--bg);
  width: 100%;
  max-height: 90vh;
}
.quiz-side {
  flex: 0 0 320px;
  background: var(--bg-blush);
  position: relative;
  overflow: hidden;
}
.quiz-side img { width: 100%; height: 100%; object-fit: cover; }
.quiz-body {
  flex: 1; padding: 56px 48px;
  display: flex; flex-direction: column;
  overflow-y: auto;
  position: relative;
}
.quiz-prog {
  display: flex; gap: 6px; margin-bottom: 28px;
}
.quiz-prog .qp {
  height: 2px; flex: 1; background: var(--rule);
  transition: background 200ms;
}
.quiz-prog .qp.done { background: var(--ink); }
.quiz-body h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 36px;
  margin: 0 0 12px; line-height: 1.1; letter-spacing: -0.01em;
}
.quiz-body p.q-sub { font-size: 14px; color: var(--ink-2); margin: 0 0 28px; }
.quiz-options { display: flex; flex-direction: column; gap: 8px; }
.quiz-option {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--rule);
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: border-color 140ms, background 140ms;
}
.quiz-option:hover { border-color: var(--ink); }
.quiz-option.selected { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.quiz-option .qo-radio {
  width: 18px; height: 18px; border-radius: 999px; border: 1px solid currentColor; flex-shrink: 0;
  position: relative;
}
.quiz-option.selected .qo-radio::after {
  content: ""; position: absolute; inset: 4px; border-radius: 999px; background: var(--bg);
}
.quiz-actions { display: flex; justify-content: space-between; margin-top: 28px; align-items: center; }

/* Result */
.quiz-result {
  text-align: center;
  padding: 24px 0;
}
.quiz-result .qr-img {
  aspect-ratio: 16 / 9; background: var(--bg-warm);
  overflow: hidden; margin-bottom: 24px;
}
.quiz-result .qr-img img { width: 100%; height: 100%; object-fit: cover; }
.quiz-result h3 { text-align: left; }
.quiz-result .qr-rec {
  margin-top: 16px; padding: 20px;
  background: var(--bg-warm);
  border-left: 3px solid var(--gold);
  text-align: left;
}
.quiz-result .qr-rec .rec-eb { font-size: 10px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--ink-3); }
.quiz-result .qr-rec .rec-name { font-family: var(--font-display); font-size: 24px; margin: 4px 0 8px; }

/* Book modal */
.book {
  display: flex;
  width: 100%; max-height: 90vh;
}
.book-side {
  flex: 0 0 280px;
  background: var(--bg-deep);
  color: #EFE4D6;
  padding: 40px 32px;
  display: flex; flex-direction: column;
  position: relative; overflow: hidden;
}
.book-side .bs-bg {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(212, 178, 115, 0.12) 0%, transparent 50%);
  pointer-events: none;
}
.book-side h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 32px;
  margin: 12px 0 8px; line-height: 1.05;
}
.book-side .bs-treat {
  margin-top: auto;
  border-top: 1px solid rgba(239, 228, 214, 0.16);
  padding-top: 20px;
}
.book-side .bs-treat .bst-name { font-family: var(--font-display); font-size: 20px; margin-bottom: 4px; }
.book-side .bs-treat .bst-meta {
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(239, 228, 214, 0.6);
  display: flex; gap: 14px;
}
.book-body {
  flex: 1; padding: 40px 36px;
  display: flex; flex-direction: column; overflow-y: auto;
  position: relative;
}
.book-body h4 {
  font-family: var(--font-display); font-weight: 400; font-size: 24px;
  margin: 0 0 6px;
}
.book-body p.b-sub { font-size: 13px; color: var(--ink-2); margin: 0 0 22px; }
.book-tabs {
  display: flex; gap: 6px; margin-bottom: 28px;
  background: var(--bg-warm); padding: 4px; border-radius: 999px;
}
.book-tabs button {
  flex: 1; padding: 10px;
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  color: var(--ink-2);
}
.book-tabs button.active { background: var(--ink); color: var(--bg); }
.book-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.book-grid button {
  padding: 14px 6px;
  background: var(--white); border: 1px solid var(--rule);
  font-size: 12px; font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: border-color 140ms, background 140ms, color 140ms;
}
.book-grid button:hover { border-color: var(--ink); }
.book-grid button.selected { background: var(--ink); color: var(--bg); border-color: var(--ink); }
.book-grid button.disabled {
  background: var(--bg-warm); color: var(--ink-3);
  cursor: not-allowed;
}
.book-therapists {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px;
}
.book-therapist {
  padding: 14px 16px;
  background: var(--white); border: 1px solid var(--rule);
  display: flex; align-items: center; gap: 12px;
  cursor: pointer;
  text-align: left;
  transition: border-color 140ms;
}
.book-therapist:hover { border-color: var(--ink); }
.book-therapist.selected { border-color: var(--ink); background: var(--ink); color: var(--bg); }
.book-therapist .bt-av {
  width: 36px; height: 36px; border-radius: 999px;
  background: var(--bg-warm);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 16px;
}
.book-therapist.selected .bt-av { background: var(--gold); color: var(--ink); }
.book-therapist .bt-info { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.book-therapist .bt-name { font-size: 13px; font-weight: 600; }
.book-therapist .bt-role { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; opacity: 0.7; }

.book-confirm {
  background: var(--bg-warm);
  padding: 24px;
  margin-top: 24px;
  display: flex; flex-direction: column; gap: 12px;
}
.book-confirm .bc-row { display: flex; justify-content: space-between; font-size: 13px; }
.book-confirm .bc-row .bc-l { color: var(--ink-3); letter-spacing: 0.12em; text-transform: uppercase; font-size: 11px; }
.book-confirm .bc-row .bc-r { font-weight: 500; }
.book-confirm .bc-total { padding-top: 12px; border-top: 1px solid var(--rule-2); }
.book-confirm .bc-total .bc-r {
  font-family: var(--font-display); font-size: 22px;
}
.book-success { text-align: center; padding: 24px 0; }
.book-success .bs-check {
  width: 64px; height: 64px; border-radius: 999px;
  background: var(--gold); color: white;
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
  font-size: 28px;
}
.book-success h3 {
  font-family: var(--font-display); font-weight: 400; font-size: 32px;
  margin: 0 0 8px;
}

/* Sticky book bar (desktop only) */
.sticky-book-cta {
  position: fixed;
  bottom: 28px; left: 28px; z-index: 70;
  background: var(--ink); color: var(--bg);
  padding: 14px 22px;
  display: flex; align-items: center; gap: 16px;
  box-shadow: 0 20px 48px -16px rgba(20, 17, 16, 0.5);
  opacity: 0; pointer-events: none;
  transform: translateY(20px);
  transition: opacity 240ms, transform 240ms;
}
.sticky-book-cta.show { opacity: 1; pointer-events: auto; transform: translateY(0); }
.sticky-book-cta .sb-eb {
  font-size: 9px; letter-spacing: 0.22em; text-transform: uppercase; opacity: 0.6;
}
.sticky-book-cta .sb-name { font-family: var(--font-display); font-size: 18px; }
.sticky-book-cta button {
  background: var(--gold-soft); color: var(--ink);
  padding: 10px 20px;
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  border-radius: 999px;
}

/* Lightbox */
.lightbox-scrim {
  position: fixed; inset: 0; z-index: 300;
  background: rgba(20, 17, 16, 0.92);
  display: flex; align-items: center; justify-content: center;
  padding: 56px;
}
.lightbox-img {
  max-width: 100%; max-height: 100%;
  display: block;
}
