/* ─── Lahmee — Design tokens & base styles ─────────────────────────────── */

:root {
  /* palette — "cream / burgundy / blush" editorial */
  --bg:        #F4EDE4;
  --bg-2:      #EFE6D9;
  --paper:     #FBF7F1;
  --ink:       #1B1614;
  --ink-2:     #3D2E2A;
  --muted:     #6E5C56;
  --line:      #D9C9B7;
  --line-2:    #C9B59E;

  --primary:   #6B1F2A;       /* deep burgundy */
  --primary-2: #4F151E;
  --blush:     #D9A48B;
  --blush-2:   #E9C2AD;
  --gold:      #B07A3B;
  --gold-2:    #C99A4B;

  --shadow-sm: 0 1px 2px rgba(27,22,20,.06), 0 2px 6px rgba(27,22,20,.04);
  --shadow-md: 0 4px 16px rgba(27,22,20,.08), 0 12px 32px rgba(27,22,20,.06);
  --shadow-lg: 0 12px 40px rgba(27,22,20,.12), 0 30px 80px rgba(27,22,20,.10);

  --radius-sm: 6px;
  --radius:    12px;
  --radius-lg: 20px;

  --font-serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --font-sans:  "DM Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:  ui-monospace, "SF Mono", "JetBrains Mono", Menlo, monospace;

  --container: 1240px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  text-wrap: pretty;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ─── Typography ────────────────────────────────────────────────────────── */

.serif    { font-family: var(--font-serif); font-weight: 500; }
.serif-i  { font-family: var(--font-serif); font-weight: 500; font-style: italic; }
.eyebrow {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}
.eyebrow .dot {
  display: inline-block; width: 5px; height: 5px; border-radius: 50%;
  background: var(--primary); vertical-align: middle;
  margin-right: 10px; margin-bottom: 2px;
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; margin: 0; line-height: 1.05; letter-spacing: -.01em; }
h1 { font-size: clamp(48px, 6.5vw, 96px); }
h2 { font-size: clamp(36px, 4.4vw, 64px); line-height: 1.04; }
h3 { font-size: clamp(24px, 2.4vw, 32px); line-height: 1.15; }
p  { margin: 0; }

.lead { font-size: 19px; line-height: 1.55; color: var(--ink-2); max-width: 56ch; }
.small { font-size: 13px; color: var(--muted); }

/* ─── Layout ────────────────────────────────────────────────────────────── */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.section { padding: 120px 0; position: relative; }
.section--tight { padding: 80px 0; }
.section--alt { background: var(--bg-2); }
.section--ink { background: var(--ink); color: #F6EFE3; }
.section--paper { background: var(--paper); }
.section--primary { background: var(--primary); color: #F6EFE3; }
.hairline { height: 1px; background: var(--line); }

/* ─── Buttons ───────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  height: 48px; padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-sans); font-weight: 500; font-size: 14.5px;
  letter-spacing: -.005em;
  transition: transform .25s cubic-bezier(.2,.7,.2,1), background .2s, color .2s, border-color .2s, box-shadow .25s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--primary); color: #F6EFE3; }
.btn--primary:hover { background: var(--primary-2); box-shadow: 0 8px 24px rgba(107,31,42,.28); }
.btn--ghost   { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn--ghost:hover { background: var(--paper); border-color: var(--ink-2); }
.btn--ink     { background: var(--ink); color: var(--paper); }
.btn--ink:hover { background: #000; }
.btn--lg { height: 56px; padding: 0 28px; font-size: 15.5px; }
.btn .arr { width: 14px; height: 14px; display: inline-block; }
.btn:hover .arr { transform: translateX(2px); }
.arr { transition: transform .25s cubic-bezier(.2,.7,.2,1); }

/* App store badge */
.store-badge {
  display: inline-block;
  transition: transform .2s ease, opacity .2s ease;
}
.store-badge:hover { transform: translateY(-1px); opacity: .92; }
.store-badge img { display: block; }

/* App store pill */
.app-pill {
  display: inline-flex; align-items: center; gap: 10px;
  height: 52px; padding: 0 18px 0 16px;
  background: var(--ink); color: var(--paper);
  border-radius: 12px; border: 1px solid #000;
  font-family: var(--font-sans);
  transition: transform .2s, background .2s;
}
.app-pill:hover { transform: translateY(-1px); background: #2a211e; }
.app-pill .glyph { font-size: 22px; line-height: 1; }
.app-pill .stack { display: flex; flex-direction: column; line-height: 1.1; text-align: left; }
.app-pill .stack .top { font-size: 10px; opacity: .8; letter-spacing: .04em; }
.app-pill .stack .bot { font-size: 14px; font-weight: 500; }

/* ─── Nav ───────────────────────────────────────────────────────────────── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background .35s, box-shadow .35s, backdrop-filter .35s, border-color .35s;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(244, 237, 228, .82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom-color: var(--line);
}
.nav__row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 0;
}
.brand {
  font-family: var(--font-serif); font-size: 26px; font-weight: 500;
  letter-spacing: -.01em; display: flex; align-items: center; gap: 8px;
}
.brand .glyph { color: var(--primary); }
.nav__links { display: flex; gap: 34px; align-items: center; }
.nav__links a {
  font-size: 14px; color: var(--ink-2); position: relative;
  transition: color .2s;
}
.nav__links a:hover { color: var(--primary); }
.nav__cta { display: flex; gap: 10px; align-items: center; }

/* ─── Hero ──────────────────────────────────────────────────────────────── */
.hero { padding: 168px 0 80px; position: relative; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center;
}
.hero h1 .ital { font-style: italic; color: var(--primary); }
.hero h1 .ital::after {
  content: ""; display: inline-block; width: 14px; height: 14px;
  vertical-align: middle; margin-left: 6px; border-radius: 50%;
  background: var(--gold-2);
}
.hero__lead { margin-top: 28px; max-width: 46ch; }
.hero__ctas { display: flex; gap: 14px; margin-top: 36px; flex-wrap: wrap; }
.hero__trust {
  display: flex; gap: 28px; margin-top: 44px; align-items: center;
  font-size: 13px; color: var(--muted);
}
.hero__trust b { color: var(--ink); font-weight: 600; }
.avatars { display: flex; }
.avatars span {
  width: 32px; height: 32px; border-radius: 50%;
  border: 2px solid var(--bg); margin-left: -8px;
  background-size: cover; background-position: center;
}
.avatars span:first-child { margin-left: 0; }

/* Card stack */
.stack {
  position: relative; width: 100%; aspect-ratio: 4/5; max-width: 480px; margin-left: auto;
  perspective: 1200px;
}
.stack__card {
  position: absolute; inset: 0;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(27,22,20,.06);
  transform-origin: 50% 90%;
  will-change: transform, opacity;
  overflow: hidden;
  cursor: grab;
  transition: transform .55s cubic-bezier(.2,.7,.2,1), opacity .35s;
}
.stack__card:active { cursor: grabbing; }
.stack__card.is-dragging { transition: none; }
.stack__photo {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.stack__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,22,20,0) 38%, rgba(27,22,20,.78) 100%);
}
.stack__meta {
  position: absolute; left: 22px; right: 22px; bottom: 22px;
  color: #F6EFE3;
}
.stack__meta .name {
  font-family: var(--font-serif); font-size: 30px; line-height: 1.05;
}
.stack__meta .row { display: flex; gap: 14px; margin-top: 8px; font-size: 13.5px; opacity: .9; flex-wrap: wrap; }
.stack__meta .row span { display: inline-flex; align-items: center; gap: 6px; }
.stack__meta .row .sep { opacity: .5; }
.stack__badge {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(251,247,241,.86); color: var(--ink);
  font-size: 11.5px; font-weight: 500; letter-spacing: .02em;
  backdrop-filter: blur(8px);
}
.stack__badge .check { color: var(--primary); }
.stack__priv {
  position: absolute; top: 16px; right: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 10px; border-radius: 999px;
  background: rgba(27,22,20,.55); color: #F6EFE3;
  font-size: 11.5px; backdrop-filter: blur(8px);
}
.stack__actions {
  position: absolute; left: 50%; transform: translateX(-50%);
  bottom: -28px; display: flex; gap: 14px;
}
.stack__act {
  width: 56px; height: 56px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--paper); border: 1px solid var(--line);
  box-shadow: var(--shadow-md); color: var(--ink);
  transition: transform .2s, background .2s, color .2s;
}
.stack__act:hover { transform: translateY(-2px); }
.stack__act.is-pass:hover { color: var(--muted); }
.stack__act.is-like { background: var(--primary); color: #F6EFE3; border-color: var(--primary); }
.stack__act.is-like:hover { background: var(--primary-2); }

/* Ornament */
.ornament-ring {
  position: absolute; pointer-events: none; opacity: .55;
}

/* ─── Logo / press bar ─────────────────────────────────────────────────── */
.lockup {
  display: flex; align-items: center; justify-content: space-between; gap: 32px;
  padding: 40px 0; flex-wrap: wrap;
}
.lockup .label { font-size: 12px; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }
.lockup .stats { display: flex; gap: 56px; flex-wrap: wrap; }
.lockup .stats .v { font-family: var(--font-serif); font-size: 32px; line-height: 1; }
.lockup .stats .k { font-size: 12px; color: var(--muted); margin-top: 6px; letter-spacing: .04em; }

/* ─── Privacy demo ─────────────────────────────────────────────────────── */
.priv {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.priv__photo-wrap {
  position: relative; aspect-ratio: 4/5; border-radius: 24px; overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.priv__photo {
  position: absolute; inset: 0; background-size: cover; background-position: center;
  transition: filter .45s ease, transform 8s ease;
}
.priv__photo.is-blurred { filter: blur(22px) saturate(85%); }
.priv__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,22,20,0) 50%, rgba(27,22,20,.7) 100%);
}
.priv__chip {
  position: absolute; top: 18px; left: 18px;
  background: rgba(251,247,241,.86); color: var(--ink);
  padding: 6px 10px; border-radius: 999px; font-size: 12px; font-weight: 500;
  backdrop-filter: blur(8px);
}
.priv__alias {
  position: absolute; left: 22px; bottom: 22px; color: #F6EFE3;
}
.priv__alias .alias { font-family: var(--font-serif); font-size: 30px; }
.priv__alias .real { font-family: var(--font-serif); font-size: 30px; }
.priv__alias .meta { font-size: 13px; opacity: .85; margin-top: 4px; }

.priv__controls {
  display: flex; flex-direction: column; gap: 16px; margin-top: 28px;
}
.toggle-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 20px; border: 1px solid var(--line); border-radius: 14px;
  background: var(--paper);
  transition: border-color .2s, background .2s;
}
.toggle-row:hover { border-color: var(--line-2); }
.toggle-row .lbl { font-weight: 500; font-size: 15px; }
.toggle-row .desc { font-size: 13px; color: var(--muted); margin-top: 2px; }
.switch {
  position: relative; width: 44px; height: 26px;
  border-radius: 999px; background: #C8B9A6;
  transition: background .25s;
  border: 0; padding: 0;
  flex-shrink: 0;
}
.switch::after {
  content: ""; position: absolute; top: 3px; left: 3px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #FBF7F1; box-shadow: 0 1px 3px rgba(0,0,0,.18);
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.switch.is-on { background: var(--primary); }
.switch.is-on::after { transform: translateX(18px); }

/* ─── Features grid ────────────────────────────────────────────────────── */
.fgrid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.fcard {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px; position: relative;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s, border-color .25s;
  overflow: hidden;
}
.fcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-2); }
.fcard .ico {
  width: 44px; height: 44px; border-radius: 12px;
  background: var(--bg); display: inline-flex; align-items: center; justify-content: center;
  color: var(--primary); margin-bottom: 24px;
}
.fcard h3 { font-size: 26px; margin-bottom: 8px; }
.fcard p { color: var(--muted); font-size: 14.5px; }
.fcard .tag { font-family: var(--font-mono); font-size: 11px; color: var(--gold); letter-spacing: .04em; }

/* ─── How it works ─────────────────────────────────────────────────────── */
.hiw { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.hiw__step {
  position: relative; padding: 28px 4px 0;
  border-top: 1px solid var(--line);
}
.hiw__step .n {
  font-family: var(--font-serif); font-size: 64px; line-height: 1;
  color: var(--primary); margin-bottom: 16px;
}
.hiw__step h3 { font-size: 22px; margin-bottom: 8px; }
.hiw__step p { color: var(--muted); font-size: 14.5px; }

/* ─── Concierge / facilitator ─────────────────────────────────────────── */
.concierge {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.concierge__art {
  aspect-ratio: 4/5; border-radius: 24px; overflow: hidden; position: relative;
  background-size: cover; background-position: center;
  box-shadow: var(--shadow-lg);
}
.concierge__art::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(107,31,42,0) 50%, rgba(107,31,42,.4) 100%);
}
.concierge__quote {
  position: absolute; left: 24px; right: 24px; bottom: 24px;
  color: #F6EFE3; font-family: var(--font-serif); font-size: 22px; font-style: italic;
  z-index: 2;
}

/* ─── App showcase ─────────────────────────────────────────────────────── */
.app-show {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.phone {
  width: 320px; aspect-ratio: 9/19; margin: 0 auto;
  background: #0d0a09; border-radius: 44px; padding: 12px;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.phone__screen {
  width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background: var(--bg); position: relative;
}
.phone__notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 26px; background: #0d0a09; border-radius: 16px; z-index: 5;
}

/* ─── Testimonials ─────────────────────────────────────────────────────── */
.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.tcard {
  background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform .3s, box-shadow .3s;
}
.tcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.tcard__photo { aspect-ratio: 4/3; background-size: cover; background-position: center; }
.tcard__body { padding: 24px 24px 28px; }
.tcard__q {
  font-family: var(--font-serif); font-size: 22px; line-height: 1.3; margin-bottom: 16px;
  color: var(--ink);
}
.tcard__a {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--muted);
}
.tcard__a .names { font-weight: 500; color: var(--ink); }

/* ─── Pricing ──────────────────────────────────────────────────────────── */
/* ─── Pricing ──────────────────────────────────────────────────────────── */
.billing-toggle {
  display: inline-flex; gap: 4px;
  padding: 5px; background: var(--paper);
  border: 1px solid var(--line); border-radius: 999px;
}
.bt__opt {
  appearance: none; border: 0; background: transparent;
  height: 38px; padding: 0 20px;
  font-family: var(--font-sans); font-size: 14px; font-weight: 500;
  color: var(--ink-2); border-radius: 999px;
  display: inline-flex; align-items: center; gap: 8px;
  transition: background .2s, color .2s;
}
.bt__opt.is-active { background: var(--ink); color: var(--paper); }
.bt__save {
  font-size: 10.5px; letter-spacing: .04em;
  padding: 2px 8px; border-radius: 999px;
  background: var(--gold-2); color: var(--ink);
  font-weight: 600;
}
.bt__opt.is-active .bt__save { background: var(--blush); }

.pricing { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 56px; }
.plan {
  background: var(--paper);
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 36px; display: flex; flex-direction: column; gap: 18px;
  position: relative;
}
.plan--vip { background: var(--ink); color: #F6EFE3; border-color: var(--ink); }
.plan__name { font-family: var(--font-serif); font-size: 30px; }
.plan__price { display: flex; align-items: baseline; gap: 6px; }
.plan__price .v { font-family: var(--font-serif); font-size: 56px; line-height: 1; }
.plan__price .u { font-size: 14px; color: var(--muted); }
.plan--vip .plan__price .u { color: #C9B8A8; }
.plan ul { margin: 0; padding: 0; list-style: none; display: flex; flex-direction: column; gap: 12px; }
.plan li { font-size: 14.5px; display: flex; gap: 12px; align-items: flex-start; }
.plan li svg { flex-shrink: 0; margin-top: 3px; }
.plan--vip li svg { color: var(--gold-2); }
.plan__cta { margin-top: auto; }
.plan__tag {
  position: absolute; top: 24px; right: 24px;
  padding: 4px 10px; border-radius: 999px; background: var(--gold-2); color: var(--ink);
  font-size: 11px; font-weight: 600; letter-spacing: .04em;
}

/* ─── Blog ──────────────────────────────────────────────────────────────── */
.blog { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.bcard { background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-lg); overflow: hidden; transition: transform .3s, box-shadow .3s; }
.bcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.bcard__img { aspect-ratio: 16/10; background-size: cover; background-position: center; }
.bcard__body { padding: 24px; }
.bcard__cat { font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--primary); margin-bottom: 10px; }
.bcard h3 { font-size: 22px; line-height: 1.2; margin-bottom: 10px; }
.bcard p { color: var(--muted); font-size: 14px; }

/* ─── FAQ ───────────────────────────────────────────────────────────────── */
.faq { display: grid; grid-template-columns: 1fr 2fr; gap: 80px; margin-top: 24px; align-items: start; }
.faq__list { display: flex; flex-direction: column; }
.faq__item { border-top: 1px solid var(--line); }
.faq__item:last-child { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%; background: transparent; border: 0; padding: 24px 0;
  text-align: left; display: flex; justify-content: space-between; gap: 24px; align-items: center;
  font-family: var(--font-serif); font-size: 24px; color: var(--ink); cursor: pointer;
}
.faq__q .sign {
  font-family: var(--font-sans); font-size: 14px; color: var(--primary); border: 1px solid var(--line);
  width: 32px; height: 32px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), background .25s, color .25s;
  flex-shrink: 0;
}
.faq__item.is-open .sign { transform: rotate(45deg); background: var(--primary); color: #F6EFE3; border-color: var(--primary); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .45s cubic-bezier(.2,.7,.2,1), padding .35s, opacity .3s;
  font-size: 15px; color: var(--ink-2); opacity: 0;
}
.faq__item.is-open .faq__a { max-height: 320px; padding: 0 0 24px; opacity: 1; }

/* ─── Video carousel ──────────────────────────────────────────────────── */
.vc-stage {
  position: relative;
  margin-top: 56px;
  display: flex; align-items: center; gap: 16px;
}
.vc-nav {
  flex-shrink: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--paper); border: 1px solid var(--line);
  color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: transform .2s, background .2s, color .2s, border-color .2s;
}
.vc-nav:hover { transform: scale(1.06); background: var(--ink); color: var(--paper); border-color: var(--ink); }

.vc-feature {
  position: relative;
  flex: 1;
  aspect-ratio: 16/9;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  padding: 0; appearance: none;
  transition: transform .35s cubic-bezier(.2,.7,.2,1);
}
.vc-feature:hover { transform: translateY(-2px); }
.vc-feature__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s ease;
}
.vc-feature:hover .vc-feature__img { transform: scale(1.03); }
.vc-feature__veil {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 70%, rgba(27,22,20,.55), rgba(27,22,20,0) 60%),
    linear-gradient(180deg, rgba(27,22,20,.25) 0%, rgba(27,22,20,0) 50%, rgba(27,22,20,.85) 100%);
}
.vc-feature__play {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  pointer-events: none;
}
.vc-play-ring {
  width: 92px; height: 92px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  background: rgba(251,247,241,.92); color: var(--primary);
  box-shadow: 0 12px 36px rgba(0,0,0,.35), 0 0 0 8px rgba(251,247,241,.18);
  transition: transform .3s cubic-bezier(.2,.7,.2,1), background .25s;
  padding-left: 4px;
}
.vc-feature:hover .vc-play-ring { transform: scale(1.08); background: var(--paper); }
.vc-feature__meta {
  position: absolute; left: clamp(20px, 3vw, 36px); right: clamp(20px, 3vw, 36px); bottom: clamp(20px, 3vw, 32px);
  color: #F6EFE3; text-align: left;
}
.vc-feature__label {
  font-family: var(--font-mono); font-size: 11.5px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blush-2); margin-bottom: 8px;
}
.vc-feature__title {
  font-family: var(--font-serif); font-size: clamp(22px, 3vw, 36px); line-height: 1.1;
  color: #F6EFE3; margin: 0; max-width: 22ch;
}
.vc-feature__row {
  display: flex; gap: 10px; align-items: center; margin-top: 14px;
  font-size: 13px; color: rgba(246,239,227,.78);
}
.vc-feature__row .dot { opacity: .5; }

.vc-strip {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
  margin-top: 20px;
}
.vc-thumb {
  position: relative; aspect-ratio: 16/9;
  border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line);
  background: var(--ink);
  cursor: pointer; appearance: none; padding: 0;
  transition: transform .25s, box-shadow .25s, border-color .2s;
  text-align: left;
}
.vc-thumb:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.vc-thumb img { width: 100%; height: 100%; object-fit: cover; opacity: .8; transition: opacity .25s; }
.vc-thumb:hover img { opacity: 1; }
.vc-thumb__veil {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,22,20,0) 40%, rgba(27,22,20,.85) 100%);
}
.vc-thumb__meta { position: absolute; left: 14px; right: 14px; bottom: 12px; color: #F6EFE3; }
.vc-thumb__label {
  font-family: var(--font-mono); font-size: 10px; letter-spacing: .12em; text-transform: uppercase;
  color: var(--blush-2); margin-bottom: 4px;
}
.vc-thumb__title {
  font-family: var(--font-serif); font-size: 15px; line-height: 1.2;
}
.vc-thumb__play {
  position: absolute; top: 10px; right: 10px;
  width: 30px; height: 30px; border-radius: 50%;
  background: rgba(251,247,241,.92); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  padding-left: 2px;
}
.vc-thumb.is-active {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(107,31,42,.18), var(--shadow-md);
}
.vc-thumb.is-active img { opacity: 1; }

/* Lightbox */
.vc-lightbox {
  position: fixed; inset: 0; z-index: 1000;
  background: rgba(15, 12, 11, .88);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  animation: fadeIn .25s ease;
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.vc-lightbox__frame {
  width: 100%; max-width: 1100px; aspect-ratio: 16/9;
  border-radius: 16px; overflow: hidden;
  background: #000; box-shadow: 0 30px 80px rgba(0,0,0,.6);
}
.vc-lightbox__frame iframe { width: 100%; height: 100%; border: 0; display: block; }
.vc-close {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(251,247,241,.12); color: #F6EFE3; border: 1px solid rgba(251,247,241,.2);
  display: inline-flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.vc-close:hover { background: rgba(251,247,241,.22); }

@media (max-width: 920px) {
  .vc-nav { width: 44px; height: 44px; }
  .vc-strip { grid-template-columns: 1fr; }
  .vc-play-ring { width: 64px; height: 64px; }
}

/* ─── Newsletter / Footer ──────────────────────────────────────────────── */
.newsletter {
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 64px; align-items: center;
  padding: 60px; border-radius: 24px; background: var(--ink); color: #F6EFE3;
  position: relative; overflow: hidden;
}
.newsletter h2 { font-size: 44px; }
.newsletter p { color: #C9B8A8; margin-top: 14px; max-width: 40ch; }
.nl-form {
  display: flex; gap: 8px; padding: 6px; background: rgba(255,255,255,.08); border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
}
.nl-form input {
  flex: 1; background: transparent; border: 0; outline: 0;
  color: #F6EFE3; font-size: 15px; padding: 0 18px;
}
.nl-form input::placeholder { color: rgba(246,239,227,.55); }
.nl-form button {
  height: 44px; padding: 0 20px; border-radius: 999px; border: 0;
  background: var(--paper); color: var(--ink); font-weight: 500; font-size: 14px;
  transition: background .2s;
}
.nl-form button:hover { background: #fff; }

.footer { padding: 80px 0 32px; background: var(--bg-2); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr 1fr; gap: 48px; }
.footer__brand { max-width: 32ch; }
.footer__brand p { font-size: 14px; color: var(--muted); margin-top: 18px; }
.footer__col h4 { font-family: var(--font-sans); font-size: 12px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 18px; }
.footer__col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer__col a { color: var(--ink-2); font-size: 14.5px; }
.footer__col a:hover { color: var(--primary); }
.footer__bot {
  margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--muted);
}

/* ─── Animations ───────────────────────────────────────────────────────── */
/* Note: keyframes don't include opacity, so elements stay visible even if the
   document timeline never ticks (preview iframes can pause animations). */
@keyframes fadeUp { from { transform: translateY(20px); } to { transform: translateY(0); } }
.reveal { }
.reveal.is-in { animation: fadeUp .7s cubic-bezier(.2,.7,.2,1) forwards; }
@media (prefers-reduced-motion: reduce) {
  .reveal.is-in { animation: none; }
}

/* ─── Section header ───────────────────────────────────────────────────── */
.sec-head { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: end; margin-bottom: 8px; }
.sec-head h2 { max-width: 16ch; }
.sec-head .lead { margin-top: 0; }

/* ─── Tweak modes ──────────────────────────────────────────────────────── */
body.no-ornament .ornament-ring { display: none !important; }
body.density-compact .section { padding: 80px 0; }
body.density-compact .hero { padding: 130px 0 60px; }
body.density-compact h1 { font-size: clamp(40px, 5.2vw, 76px); }
body.density-compact h2 { font-size: clamp(30px, 3.6vw, 52px); }

/* ─── Legal pages (Terms / Privacy) ────────────────────────────────────── */
.legal-page { background: var(--bg); color: var(--ink); min-height: 100vh; padding-top: 120px; }
.legal-hero { padding-top: 24px; padding-bottom: 56px; border-bottom: 1px solid var(--line); }
.legal-hero h1 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: clamp(40px, 5.5vw, 76px);
  line-height: 1.04; letter-spacing: -.01em; margin: 18px 0 0;
  max-width: 18ch;
}
.legal-hero .meta {
  margin-top: 28px; display: flex; gap: 24px; flex-wrap: wrap;
  font-size: 13px; color: var(--muted);
}
.legal-hero .meta b { color: var(--ink); font-weight: 500; }

.legal-grid {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 80px;
  padding: 64px 0 120px;
  align-items: start;
}
.legal-toc {
  position: sticky; top: 110px;
  font-size: 13.5px; line-height: 1.6;
}
.legal-toc h4 {
  font-family: var(--font-sans); font-size: 11px; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase; color: var(--muted);
  margin: 0 0 14px;
}
.legal-toc ol { list-style: none; padding: 0; margin: 0; counter-reset: toc; }
.legal-toc li { counter-increment: toc; padding: 4px 0; }
.legal-toc a {
  color: var(--ink-2); text-decoration: none; display: flex; gap: 10px;
  transition: color .15s;
}
.legal-toc a::before {
  content: counter(toc, decimal-leading-zero);
  font-family: var(--font-mono); font-size: 11px; color: var(--gold);
  letter-spacing: .04em; line-height: 1.6; flex-shrink: 0; min-width: 22px;
}
.legal-toc a:hover { color: var(--primary); }
.legal-toc a.is-active { color: var(--primary); }
.legal-toc a.is-active::before { color: var(--primary); }

.legal-body {
  max-width: 720px;
  font-size: 16px; line-height: 1.7;
  color: var(--ink-2);
}
.legal-body .lead-block {
  font-family: var(--font-serif); font-size: 22px; line-height: 1.5;
  color: var(--ink); margin-bottom: 40px;
  padding-bottom: 32px; border-bottom: 1px solid var(--line);
  font-style: italic;
}
.legal-body section { padding: 40px 0; border-top: 1px solid var(--line); scroll-margin-top: 100px; }
.legal-body section:first-of-type { border-top: 0; padding-top: 0; }
.legal-body h2 {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 32px; line-height: 1.15; letter-spacing: -.01em;
  color: var(--ink); margin: 0 0 16px;
  display: flex; align-items: baseline; gap: 14px;
}
.legal-body h2 .num {
  font-family: var(--font-mono); font-size: 13px; color: var(--gold);
  letter-spacing: .04em; font-weight: 400;
}
.legal-body p { margin: 0 0 14px; }
.legal-body p:last-child { margin-bottom: 0; }
.legal-body ul, .legal-body ol { padding-left: 20px; margin: 0 0 14px; }
.legal-body li { margin-bottom: 8px; }
.legal-body strong { color: var(--ink); font-weight: 600; }
.legal-body a { color: var(--primary); text-decoration: underline; text-underline-offset: 2px; }
.legal-body a:hover { color: var(--primary-2); }

.legal-callout {
  margin: 24px 0; padding: 18px 22px;
  background: var(--paper); border: 1px solid var(--line); border-left: 3px solid var(--gold);
  border-radius: 12px;
  font-size: 14.5px; color: var(--ink-2);
}
.legal-callout strong { color: var(--ink); }

.legal-nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(244, 237, 228, .82);
  backdrop-filter: saturate(160%) blur(16px);
  -webkit-backdrop-filter: saturate(160%) blur(16px);
  border-bottom: 1px solid var(--line);
}
.legal-nav__row { display: flex; align-items: center; justify-content: space-between; padding-top: 18px; padding-bottom: 18px; }
.legal-nav .brand img { display: block; width: 130px; height: auto; }
.legal-nav .links { display: flex; gap: 28px; font-size: 14px; }
.legal-nav .links a { color: var(--ink-2); }
.legal-nav .links a:hover { color: var(--primary); }
.legal-nav .links a.is-current { color: var(--primary); }

.legal-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-2); padding: 40px 0;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-size: 13px; color: var(--muted);
}
.legal-footer a { color: var(--ink-2); }
.legal-footer a:hover { color: var(--primary); }

@media (max-width: 920px) {
  .legal-page { padding-top: 100px; }
  .legal-grid { grid-template-columns: 1fr; gap: 32px; padding: 32px 0 80px; }
  .legal-toc { position: relative; top: 0; }
  .legal-nav .links { display: none; }
}

/* ─── Mobile ───────────────────────────────────────────────────────────── */
@media (max-width: 920px) {
  .section { padding: 80px 0; }
  .hero { padding: 130px 0 40px; }
  .hero__grid, .priv, .concierge, .app-show, .newsletter, .sec-head, .faq {
    grid-template-columns: 1fr; gap: 40px;
  }
  .fgrid, .testimonials, .blog { grid-template-columns: 1fr; }
  .pricing { grid-template-columns: 1fr; }
  .hiw { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .nav__links { display: none; }
  .newsletter { padding: 36px; }
  .container { padding: 0 20px; }
  .stack { max-width: 360px; }
}
