/* ============================================================
   Baela — design system (rebuild 2026-06-15)
   Light editorial base + champagne gold accent + berry/plum signature.
   ============================================================ */
:root {
  --blush: #F4EAE0;
  --blush-deep: #EFE2D6;
  --paper: #FBF6F0;
  --gold: #BE9E5E;
  --gold-deep: #A8884A;
  --rose: #B07A6A;
  --berry: #A03A55;
  --berry-deep: #8A2F47;
  --plum: #4A1228;
  --ink: #3A2A28;
  --ink-soft: #5C4844;
  --cream: #F7F0E9;

  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --script: 'Pinyon Script', cursive;
  --wordmark: 'Italiana', var(--serif);

  --maxw: 1180px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  margin: 0;
  background: var(--blush);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 2rem; }
.wrap--narrow { max-width: 760px; }
.center { text-align: center; }

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 0 0 1.2rem;
}
.section-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.08;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0 0 1.2rem;
}
.section-title em { font-style: italic; font-weight: 500; color: var(--berry); }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 540px; margin: 0; }
.center .lead { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.9rem 1.6rem; border-radius: 999px;
  font-family: var(--sans); font-weight: 600; font-size: 0.95rem; line-height: 1;
  cursor: pointer; border: 1.5px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.btn-berry { background: var(--berry); color: var(--cream); box-shadow: 0 14px 28px -14px rgba(160, 58, 85, 0.65); }
.btn-berry:hover { background: var(--berry-deep); transform: translateY(-2px); box-shadow: 0 20px 34px -16px rgba(160, 58, 85, 0.7); }
.btn-ghost-gold { background: transparent; border-color: var(--gold); color: var(--ink); }
.btn-ghost-gold:hover { background: rgba(190, 158, 94, 0.12); transform: translateY(-2px); }
.btn-lg { padding: 1.05rem 2rem; font-size: 1rem; }

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(244, 234, 224, 0.82);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid rgba(190, 158, 94, 0.28);
}
.nav-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 1.25rem 2rem 1rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
}
.brand { display: inline-flex; align-items: flex-end; padding: 0; overflow: visible; }
.logo {
  font-family: var(--wordmark); font-size: 1.8rem; font-weight: 400;
  letter-spacing: 0.05em; color: var(--ink); line-height: 1.35;
  display: inline-flex; align-items: baseline; overflow: visible;
}
.logo-rest { font-family: var(--wordmark); }
.logo-b {
  font-family: var(--script); font-size: 1.55em; line-height: 1.2;
  margin-right: 0.05em; color: var(--berry);
  /* solid fill — gradient text-clip was cutting the B's top flourish */
}
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-link {
  font-family: var(--sans); font-size: 0.98rem; font-weight: 500; color: var(--ink);
  background: none; border: none; cursor: pointer; padding: 0;
  display: inline-flex; align-items: center; gap: 0.35rem;
}
.nav-link:hover { color: var(--berry); }
.caret { color: var(--gold-deep); font-size: 0.7rem; }
.has-menu { position: relative; }
.menu {
  position: absolute; top: calc(100% + 0.9rem); left: 50%;
  transform: translateX(-50%) translateY(6px);
  background: var(--paper); border: 1px solid rgba(190, 158, 94, 0.3);
  border-radius: 16px; padding: 0.6rem; min-width: 200px; display: grid; gap: 0.1rem;
  box-shadow: 0 26px 50px -24px rgba(58, 26, 20, 0.4);
  opacity: 0; visibility: hidden;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
}
.has-menu:hover .menu, .has-menu:focus-within .menu, .menu.open {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.menu a { font-size: 0.95rem; padding: 0.55rem 0.8rem; border-radius: 10px; color: var(--ink-soft); }
.menu a:hover { background: rgba(190, 158, 94, 0.14); color: var(--ink); }
.nav-cta { padding: 0.6rem 1.2rem; font-size: 0.9rem; }

/* ---------- Hero ---------- */
.hero { padding: 4.5rem 0 5.5rem; overflow: hidden; }
.hero-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: 3.5rem; align-items: center;
}
.hero-copy { max-width: 620px; min-width: 0; }
.hero-media { min-width: 0; display: flex; justify-content: center; }
.hero-title {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(2.4rem, 5.6vw, 4.7rem); line-height: 1.04;
  letter-spacing: -0.015em; color: var(--ink); margin: 0; overflow-wrap: break-word;
}
.hero-title em { font-style: italic; font-weight: 500; color: var(--berry); }
.hero-sub em { font-style: italic; font-weight: 500; color: var(--berry); }
.hero-sub { max-width: 460px; margin: 1.6rem 0 2.2rem; font-size: 1.12rem; color: var(--ink-soft); }
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-photo { position: relative; margin: 0; width: 100%; max-width: 380px; overflow: hidden; border-radius: 999px 999px 22px 22px; }
.hero-photo img {
  width: 100%; aspect-ratio: 3 / 4; object-fit: cover;
  border-radius: 999px 999px 22px 22px; box-shadow: 0 40px 70px -30px rgba(74, 34, 48, 0.55);
}
.photo-pill {
  position: absolute; left: 1.2rem; bottom: 1.2rem; z-index: 2;
  background: var(--paper); color: var(--plum); font-family: var(--sans);
  font-weight: 600; font-size: 0.85rem; padding: 0.5rem 0.9rem; border-radius: 999px;
  box-shadow: 0 10px 22px -12px rgba(74, 34, 48, 0.5);
}
.ph-tag {
  position: absolute; top: 0.8rem; right: 0.8rem; z-index: 2;
  font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.04em; text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85); background: rgba(74, 18, 40, 0.42);
  padding: 0.28rem 0.55rem; border-radius: 999px; backdrop-filter: blur(3px);
}

/* ---------- Sections ---------- */
.section { padding: 6rem 0; }
.section--blush { background: var(--blush); }
.section--deep { background: var(--blush-deep); }
.section--paper { background: var(--paper); }
.section--berry { background: linear-gradient(160deg, #5A1B33, var(--plum)); color: var(--cream); }
.section--berry .eyebrow { color: #E7C0AE; }
.section--berry .section-title { color: var(--cream); }
.section--berry .section-title em { color: #E7B6A0; }
.section--berry .lead { color: rgba(247, 240, 233, 0.82); }
.section--berry .btn-ghost-gold { color: var(--cream); border-color: var(--gold); }
.section--berry .btn-ghost-gold:hover { background: rgba(247, 240, 233, 0.12); }
.section-head { margin-bottom: 3rem; }

/* Services dot-list (collective, not per-service) */
.service-list {
  font-family: var(--serif); font-size: clamp(1.5rem, 3.4vw, 2.6rem);
  line-height: 1.5; color: var(--ink); text-align: center; margin: 0; max-width: 900px;
  margin-inline: auto;
}
.service-list a { color: var(--ink); transition: color 0.2s var(--ease); white-space: nowrap; }
.service-list a:hover { color: var(--berry); font-style: italic; }
.service-list .dot { color: var(--gold); margin: 0 0.25rem; }

/* Problem list */
.problem-list { display: grid; gap: 1rem; margin: 2rem 0; font-size: 1.3rem; }
.problem-list p { margin: 0; color: rgba(247, 240, 233, 0.9); }
.problem-list strong { color: #E7B6A0; }
.quip { font-family: var(--serif); font-style: italic; font-size: clamp(2rem, 5vw, 3.4rem); margin: 1.5rem 0 0.5rem; color: var(--cream); }
.quip em { color: #E7B6A0; font-style: italic; }
.flip { font-size: 1.15rem; color: rgba(247, 240, 233, 0.75); margin: 0; }

/* Thesis statement band */
.statement { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.16; letter-spacing: -0.012em; max-width: 880px; margin: 0 auto; text-align: center; }
.section--berry .statement { color: var(--cream); }
.section--berry .statement em { font-style: italic; color: #E7B6A0; }

/* Editorial value list (replaces boxed cards) */
.values { max-width: 940px; margin: 0 auto; }
.value {
  display: grid; grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.3fr);
  gap: 2.5rem; align-items: baseline; padding: 2.6rem 0;
  border-top: 1px solid rgba(190, 158, 94, 0.32);
}
.value:last-child { border-bottom: 1px solid rgba(190, 158, 94, 0.32); }
.value-head { display: flex; align-items: baseline; gap: 1.1rem; }
.value-n { font-family: var(--serif); font-size: 1.05rem; color: var(--gold-deep); letter-spacing: 0.08em; }
.value h3 {
  font-family: var(--serif); font-weight: 600;
  font-size: clamp(1.55rem, 2.6vw, 2.15rem); line-height: 1.12; color: var(--ink); margin: 0;
}
.value h3 em { font-style: italic; color: var(--berry); }
.value p { margin: 0; color: var(--ink-soft); font-size: 1.08rem; }
.value:hover h3 { color: var(--berry); transition: color 0.3s var(--ease); }

/* Booking demo (agenda fills) */
.demo-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 0.85fr); gap: 4rem; align-items: center; }
.demo-copy { max-width: 460px; }
.demo-device { display: flex; justify-content: center; }
.agenda {
  width: 100%; max-width: 360px; background: var(--paper); border-radius: 26px;
  border: 1px solid rgba(190, 158, 94, 0.3); box-shadow: 0 44px 84px -38px rgba(74, 34, 48, 0.55);
  padding: 1.5rem 1.4rem;
}
.agenda-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.2rem; }
.agenda-top .day { font-family: var(--serif); font-size: 1.35rem; color: var(--ink); }
.agenda-pay { font-family: var(--sans); font-size: 0.8rem; font-weight: 600; color: var(--ink-soft); display: inline-flex; align-items: center; gap: 0.4rem; }
.pay-amt { font-size: 1.1rem; color: var(--berry); font-variant-numeric: tabular-nums; letter-spacing: -0.01em; }
.agenda-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 0.6rem; }
.slot {
  display: flex; align-items: center; gap: 0.8rem; padding: 0.7rem 0.8rem; border-radius: 14px;
  background: #fff; box-shadow: 0 8px 20px -14px rgba(58, 26, 20, 0.4);
  opacity: 0; transform: translateY(14px) scale(0.97);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}
.slot.in { opacity: 1; transform: none; }
.slot-time { font-family: var(--sans); font-size: 0.76rem; font-weight: 600; color: var(--gold-deep); width: 46px; flex-shrink: 0; }
.slot-body { flex: 1; display: flex; flex-direction: column; gap: 1px; }
.slot-body b { font-size: 0.92rem; color: var(--ink); font-weight: 600; }
.slot-body i { font-size: 0.76rem; color: var(--ink-soft); font-style: normal; }
.slot-amt { font-family: var(--sans); font-weight: 700; color: var(--berry); font-size: 0.92rem; }
@media (max-width: 860px) {
  .demo-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .demo-copy { max-width: none; text-align: center; margin: 0 auto; }
}

/* Demo trio — Bookings / Content / Earnings, three real app screens side by side, no scroll on desktop */
.demo-trio {
  display: flex; gap: 1.1rem; justify-content: flex-start; align-items: flex-start; flex-wrap: nowrap;
  overflow-x: auto; padding: 0.5rem 0 1.4rem; -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
}
@media (min-width: 900px) { .demo-trio { overflow-x: visible; justify-content: center; scroll-snap-type: none; } }

.story-card.story-card--live {
  cursor: default; flex: 0 0 auto; flex-basis: 228px; width: 228px; aspect-ratio: 9 / 17; background: var(--plum);
  box-shadow: 0 0 0 2px rgba(160, 58, 85, 0.35), 0 24px 42px -24px rgba(74, 34, 48, 0.5);
  display: flex; flex-direction: column; scroll-snap-align: start;
}
.story-card--live::after { content: none; }
.story-card--live .live-sched-item img { position: static; width: 38px; height: 38px; }
.live-dot { width: 6px; height: 6px; border-radius: 50%; background: #fff; animation: liveDotPulse 1.6s ease-in-out infinite; }
@keyframes liveDotPulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.4; transform: scale(0.7); } }

.live-chrome {
  position: relative; z-index: 3; display: flex; align-items: center; gap: 12px; padding: 12px 12px 10px;
  background: rgba(40, 12, 22, 0.55); backdrop-filter: blur(6px); border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.story-src--live {
  margin-left: auto; display: inline-flex; align-items: center; gap: 0.3rem; background: var(--berry); color: #fff;
  font-family: var(--sans); font-size: 0.58rem; font-weight: 600; padding: 0.2rem 0.45rem; border-radius: 999px;
}
.live-chrome-tab { font-family: var(--sans); font-size: 0.62rem; font-weight: 600; color: rgba(255, 255, 255, 0.45); }
.live-chrome-tab.is-active { color: #fff; position: relative; }
.live-chrome-tab.is-active::after { content: ""; position: absolute; left: 0; right: 0; bottom: -10px; height: 2px; background: var(--gold); }

.live-body { position: relative; flex: 1; min-height: 0; }
.live-panel {
  position: absolute; inset: 0; z-index: 1; opacity: 0; pointer-events: none;
  transition: opacity 0.5s var(--ease);
}
.story-card--live[data-stage="schedule"] .live-panel--schedule,
.story-card--live[data-stage="reel"] .live-panel--reel,
.story-card--live[data-stage="posted"] .live-panel--confirm,
.story-card--live[data-stage="run"] .live-panel--agenda,
.story-card--live[data-stage="balance"] .live-panel--balance,
.story-card--live[data-stage="sent"] .live-panel--confirm { opacity: 1; pointer-events: auto; }

.live-caption--head { margin: 0 0 2px; text-transform: uppercase; letter-spacing: 0.08em; font-size: 0.6rem; font-weight: 600; color: rgba(255, 255, 255, 0.6); }
.live-caption { margin: 0; font-family: var(--sans); font-size: 0.76rem; font-weight: 600; color: rgba(255, 255, 255, 0.75); }

/* Bookings tab — agenda fills, paid-today counts up (single continuous loop, no tap needed) */
.live-panel--agenda { display: flex; flex-direction: column; justify-content: center; gap: 10px; padding: 16px 14px; }
.live-mini-agenda { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 7px; }
.live-mini-agenda li {
  display: flex; align-items: center; gap: 8px; background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 10px; padding: 7px 9px;
  opacity: 0; transform: translateY(8px); transition: opacity 0.45s var(--ease), transform 0.45s var(--ease);
}
.live-mini-agenda li.in { opacity: 1; transform: none; }
.live-mini-agenda b { font-family: var(--sans); font-size: 0.66rem; font-weight: 700; color: var(--gold); flex-shrink: 0; }
.live-mini-agenda span { flex: 1; min-width: 0; font-family: var(--sans); font-size: 0.74rem; font-weight: 600; color: #fff; }
.live-mini-agenda i { font-family: var(--sans); font-style: normal; font-size: 0.74rem; font-weight: 700; color: #fff; }
.live-paid-row {
  display: flex; align-items: baseline; justify-content: space-between; margin-top: 4px; padding-top: 10px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}
.live-paid-row span { font-family: var(--sans); font-size: 0.68rem; font-weight: 600; color: rgba(255, 255, 255, 0.65); }
.live-paid-row strong { font-family: var(--serif); font-size: 1.6rem; font-weight: 700; color: #fff; font-variant-numeric: tabular-nums; }

/* Schedule stage (Content tab) */
.live-panel--schedule { display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 16px 14px; }
.live-sched { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.live-sched-item {
  display: flex; align-items: center; gap: 10px; background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14); border-radius: 12px; padding: 7px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.live-sched-item.is-active { background: rgba(255, 255, 255, 0.16); border-color: rgba(224, 168, 108, 0.55); }
.live-sched-item img { width: 38px; height: 38px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.live-sched-info { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: 1px; }
.live-sched-info b { font-family: var(--sans); font-size: 0.76rem; font-weight: 600; color: #fff; }
.live-sched-info i { font-family: var(--sans); font-size: 0.64rem; font-style: normal; color: rgba(255, 255, 255, 0.6); }
.live-sched-tag { flex-shrink: 0; font-family: var(--sans); font-size: 0.58rem; font-weight: 700; padding: 3px 7px; border-radius: 999px; }
.tag-ready { background: var(--gold); color: var(--plum); }
.tag-draft { background: rgba(255, 255, 255, 0.16); color: rgba(255, 255, 255, 0.75); }

/* Reel stage — a real playing video */
.live-panel--reel { display: flex; flex-direction: column; justify-content: flex-end; padding: 14px; }
.live-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.live-panel--reel::after { content: ""; position: absolute; inset: 0; z-index: 0; background: linear-gradient(180deg, transparent 45%, rgba(20, 6, 12, 0.82)); }
.live-reel-cap { position: relative; z-index: 1; margin: 0 0 10px; font-family: var(--sans); font-size: 0.78rem; font-weight: 600; color: #fff; }
.live-reel-cap i { display: block; margin-top: 2px; font-style: normal; font-weight: 600; color: #E7C0AE; font-size: 0.7rem; }

/* Earnings tab — balance builds, tap to cash out */
.live-panel--balance { display: flex; flex-direction: column; justify-content: center; gap: 8px; padding: 16px 14px; }
.live-earn-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 6px; }
.live-earn-list li { display: flex; align-items: center; justify-content: space-between; padding: 2px 0; }
.live-earn-list span { font-family: var(--sans); font-size: 0.72rem; font-weight: 500; color: rgba(255, 255, 255, 0.75); }
.live-earn-list i { font-family: var(--sans); font-style: normal; font-size: 0.72rem; font-weight: 700; color: var(--gold); }

/* Shared tap button (Post it / Cash out) */
.live-tap-btn {
  position: relative; z-index: 1; align-self: flex-start; margin-top: 6px; background: var(--berry); color: #fff; border: none; border-radius: 999px;
  padding: 8px 16px; font-family: var(--sans); font-size: 0.78rem; font-weight: 700;
  box-shadow: 0 10px 20px -10px rgba(160, 58, 85, 0.8); transition: transform 0.15s var(--ease);
}
.live-tap-btn--gold { background: var(--gold); color: var(--plum); box-shadow: 0 10px 20px -10px rgba(190, 158, 94, 0.7); }
.live-tap-btn.is-tapped { transform: scale(0.9); }
.live-tap-btn .tap-ring {
  position: absolute; inset: -6px; border-radius: 999px; border: 2px solid rgba(255, 255, 255, 0.8);
  opacity: 0; pointer-events: none;
}
.live-tap-btn.is-tapped .tap-ring { animation: tapRing 0.55s var(--ease); }
@keyframes tapRing { 0% { opacity: 0.9; transform: scale(0.85); } 100% { opacity: 0; transform: scale(1.6); } }

/* Confirm stage — shared by Content (Posted) and Earnings (Sent) */
.live-panel--confirm { display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; gap: 6px; padding: 14px; background: linear-gradient(160deg, #5A1B33, var(--plum)); }
.live-panel--confirm-gold { background: linear-gradient(160deg, #7A5F2E, var(--plum)); }
.live-posted-check {
  width: 40px; height: 40px; border-radius: 50%; background: var(--gold); color: var(--plum); font-size: 1.1rem; font-weight: 700;
  display: grid; place-items: center; margin-bottom: 6px;
}
.live-stat-main { display: flex; flex-direction: column; align-items: center; }
.live-stat-main strong {
  font-family: var(--serif); font-weight: 700; font-size: 2.2rem; line-height: 1; color: #fff;
  text-shadow: 0 2px 18px rgba(224, 168, 108, 0.55); font-variant-numeric: tabular-nums;
}
.live-stat-main span { margin-top: 4px; font-family: var(--sans); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.03em; text-transform: uppercase; color: #E7C0AE; }

@media (prefers-reduced-motion: reduce) {
  .live-panel, .live-sched-item, .live-tap-btn, .live-mini-agenda li { transition: none; }
  .live-dot, .live-tap-btn .tap-ring { animation: none; }
}

/* Steps */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 2rem; max-width: 680px; }
.steps li { display: flex; gap: 1.4rem; align-items: flex-start; }
.step-n {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 50%;
  border: 1.5px solid var(--gold); color: var(--gold-deep);
  font-family: var(--serif); font-size: 1.3rem; display: grid; place-items: center;
}
.steps h3 { font-family: var(--serif); font-size: 1.3rem; margin: 0.3rem 0 0.4rem; color: var(--ink); }
.steps p { margin: 0; color: var(--ink-soft); }

/* Stories (vertical card row) */
.stories-row {
  display: flex; gap: 1.2rem; overflow-x: auto; padding: 0.5rem 0 1.4rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.stories-row::-webkit-scrollbar { height: 6px; }
.stories-row::-webkit-scrollbar-thumb { background: rgba(190, 158, 94, 0.4); border-radius: 3px; }
.story-card {
  position: relative; flex: 0 0 auto; width: 200px; aspect-ratio: 9 / 16;
  border-radius: 18px; overflow: hidden; scroll-snap-align: start; cursor: pointer;
  border: 1px solid rgba(190, 158, 94, 0.25);
  box-shadow: 0 24px 42px -24px rgba(74, 34, 48, 0.5);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.story-card:hover { transform: translateY(-6px); box-shadow: 0 32px 54px -24px rgba(74, 34, 48, 0.6); }
.story-card { background: var(--plum); }
.story-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.story-card::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, transparent 50%, rgba(40, 12, 22, 0.86)); }
.story-src {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-family: var(--sans); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.03em;
  color: #fff; background: rgba(0, 0, 0, 0.32); backdrop-filter: blur(4px);
  padding: 0.2rem 0.5rem; border-radius: 999px;
}
.story-play {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); z-index: 2;
  width: 46px; height: 46px; border-radius: 50%;
  background: rgba(255, 255, 255, 0.18); border: 1px solid rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(6px); display: grid; place-items: center;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.story-card:hover .story-play { transform: translate(-50%, -50%) scale(1.12); background: rgba(255, 255, 255, 0.3); }
.story-play::after { content: ""; width: 0; height: 0; border-left: 13px solid #fff; border-top: 8px solid transparent; border-bottom: 8px solid transparent; margin-left: 3px; }
.story-cap { position: absolute; left: 12px; bottom: 12px; right: 12px; z-index: 2; font-family: var(--sans); font-size: 0.85rem; font-weight: 600; color: #fff; }
.stories-fine { text-align: center; margin-top: 0.6rem; font-size: 0.82rem; color: var(--ink-soft); opacity: 0.7; }

/* Verified / trust */
.verify { max-width: 760px; margin: 2.4rem auto 0; display: flex; flex-wrap: wrap; justify-content: center; gap: 1rem 2.2rem; }
.verify-item { display: inline-flex; align-items: center; gap: 0.55rem; font-weight: 600; font-size: 1.02rem; color: var(--ink); }
.verify-item .ck { display: inline-grid; place-items: center; width: 22px; height: 22px; border-radius: 50%; background: rgba(190, 158, 94, 0.18); color: var(--gold-deep); font-size: 0.8rem; }
.verify-note { text-align: center; max-width: 600px; margin: 2rem auto 0; color: var(--ink-soft); font-size: 1rem; }
.verify-note em { color: var(--berry); font-style: normal; font-weight: 600; }
.badge {
  display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.4rem 0.9rem; border-radius: 999px;
  background: rgba(190, 158, 94, 0.16); border: 1px solid rgba(190, 158, 94, 0.4);
  font-family: var(--sans); font-weight: 600; font-size: 0.82rem; color: var(--gold-deep); letter-spacing: 0.02em;
}
.badge .ck { color: var(--gold-deep); }

/* FAQ */
.faq { display: grid; gap: 0.8rem; }
.faq details {
  background: var(--paper); border: 1px solid rgba(190, 158, 94, 0.28);
  border-radius: 14px; padding: 0.4rem 1.3rem;
}
.faq summary { cursor: pointer; list-style: none; padding: 1rem 0; font-family: var(--serif); font-size: 1.15rem; color: var(--ink); display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; color: var(--gold-deep); font-size: 1.4rem; transition: transform 0.25s var(--ease); }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 1.1rem; color: var(--ink-soft); }

/* Waitlist form */
.waitlist-form { max-width: 560px; margin: 2.5rem auto 0; display: grid; gap: 0.9rem; text-align: left; }
.seg { display: inline-flex; background: rgba(190, 158, 94, 0.14); border-radius: 999px; padding: 0.25rem; margin: 0 auto 0.5rem; }
.seg-opt { position: relative; }
.seg-opt input { position: absolute; opacity: 0; }
.seg-opt span { display: block; padding: 0.5rem 1.2rem; border-radius: 999px; font-size: 0.9rem; font-weight: 600; color: var(--ink-soft); cursor: pointer; transition: background 0.2s var(--ease), color 0.2s var(--ease); }
.seg-opt input:checked + span { background: var(--berry); color: var(--cream); }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.9rem; }
.waitlist-form input[type="text"], .waitlist-form input[type="email"], .waitlist-form select {
  width: 100%; padding: 0.9rem 1.1rem; border-radius: 12px;
  border: 1px solid rgba(160, 58, 85, 0.25); background: var(--paper);
  color: var(--ink); font-family: var(--sans); font-size: 1rem;
}
.waitlist-form input:focus, .waitlist-form select:focus { outline: none; border-color: var(--berry); }
.waitlist-form input::placeholder { color: rgba(92, 72, 68, 0.55); }
.consent { display: flex; gap: 0.55rem; align-items: center; font-size: 0.9rem; color: var(--ink-soft); }
.consent input[type="checkbox"] { flex: 0 0 auto; width: 18px; height: 18px; margin: 0; accent-color: var(--berry); }
.is-hidden { display: none !important; }
.form-status { font-size: 0.9rem; margin: 0.2rem 0 0; min-height: 1.2em; }
.form-status.is-ok { color: var(--berry); }
.form-status.is-err { color: #C0392B; }

/* Full-bleed photographic band */
.band { position: relative; overflow: hidden; }
.band > img, .band > video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.band::after { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(180deg, rgba(40, 12, 22, 0.5), rgba(40, 12, 22, 0.66)); }
.band-inner { position: relative; z-index: 2; text-align: center; max-width: 800px; margin: 0 auto; padding: 7.5rem 2rem; }
.band .eyebrow { color: #E7C0AE; }
.band h2 { font-family: var(--serif); font-weight: 600; font-size: clamp(2.2rem, 5vw, 4rem); line-height: 1.08; letter-spacing: -0.015em; color: var(--cream); margin: 0; }
.band h2 em { color: #E7B6A0; font-style: italic; }
@media (max-width: 620px) { .band-inner { padding: 5rem 1.4rem; } }

/* ---------- Footer ---------- */
.footer { padding: 3rem 0 2.4rem; background: var(--blush-deep); border-top: 1px solid rgba(190, 158, 94, 0.28); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 1.2rem; flex-wrap: wrap; }
.footer .logo { font-size: 1.45rem; }
.footer-links { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-links a { font-size: 0.92rem; color: var(--ink-soft); }
.footer-links a:hover { color: var(--berry); }
.footer-social { display: flex; gap: 0.7rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; display: grid; place-items: center;
  border: 1px solid rgba(190, 158, 94, 0.45); color: var(--ink);
  transition: background 0.2s var(--ease), color 0.2s var(--ease), border-color 0.2s var(--ease);
}
.footer-social a:hover { background: var(--berry); border-color: var(--berry); color: var(--cream); }
.footer-social svg { width: 18px; height: 18px; }
.footer-social a.is-soon { opacity: 0.4; cursor: default; }
.footer-social a.is-soon:hover { background: none; border-color: rgba(190, 158, 94, 0.45); color: var(--ink); }
.soon-inline { display: inline-block; font-size: 0.78rem; color: var(--ink-soft); opacity: 0.75; margin-left: 0.15em; }
.footer-fine { font-size: 0.84rem; color: var(--ink-soft); margin: 1.2rem 0 0; opacity: 0.8; }

/* ---------- Animations ---------- */
.reveal { opacity: 0; transform: translateY(40px); filter: blur(7px); transition: opacity 1s var(--ease), transform 1.1s var(--ease), filter 1s var(--ease); }
.reveal.is-visible { opacity: 1; transform: none; filter: none; }
.reveal-l { opacity: 0; transform: translateX(-44px); filter: blur(6px); transition: opacity 1s var(--ease), transform 1.1s var(--ease), filter 1s var(--ease); }
.reveal-l.is-visible { opacity: 1; transform: none; filter: none; }
.reveal-r { opacity: 0; transform: translateX(44px); filter: blur(6px); transition: opacity 1s var(--ease), transform 1.1s var(--ease), filter 1s var(--ease); }
.reveal-r.is-visible { opacity: 1; transform: none; filter: none; }
.reveal-scale { opacity: 0; transform: scale(0.92); filter: blur(7px); transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), filter 1s var(--ease); }
.reveal-scale.is-visible { opacity: 1; transform: none; filter: none; }
[data-parallax] { will-change: transform; }
@media (prefers-reduced-motion: reduce) {
  .reveal, .reveal-l, .reveal-r, .reveal-scale { opacity: 1 !important; transform: none !important; transition: none; }
  [data-parallax] { transform: none !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .value { grid-template-columns: 1fr; gap: 0.7rem; padding: 2rem 0; }
}
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); gap: 2.5rem; text-align: center; }
  .hero-copy { max-width: none; margin: 0 auto; }
  .hero-sub { margin-left: auto; margin-right: auto; }
  .hero-cta { justify-content: center; }
  .hero-photo { max-width: 320px; }
  .section { padding: 4.5rem 0; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .nav-links { display: flex; gap: 1.2rem; }
  .has-menu { display: none; }
  .nav-cta { display: none; } /* waitlist CTA redundant on mobile (hero + section have it) */
  .nav-inner { padding: 0.8rem 1.2rem; }
  .wrap, .hero-grid { padding-left: 1.2rem; padding-right: 1.2rem; }
  .hero { padding: 2.5rem 0 3.5rem; }
  .hero-title { font-size: 2.3rem; }
  .eyebrow { letter-spacing: 0.14em; }
  .hero-photo { max-width: min(320px, 78vw); }
  .field-row { grid-template-columns: 1fr; }
}

/* ============================================================
   LEGAL PAGES — Terms of Service / Privacy Policy
   ============================================================ */
.legal-page { background: var(--paper); padding: 3rem 0 4.5rem; }
.legal-wrap { max-width: 760px; margin: 0 auto; padding: 0 2rem; }
.legal-eyebrow { font-family: var(--sans); text-transform: uppercase; letter-spacing: 0.18em;
  font-size: 0.72rem; font-weight: 600; color: var(--gold-deep); margin: 0 0 0.6rem; }

.legal-body { font-family: var(--sans); color: var(--ink); font-size: 1rem; line-height: 1.72; }
.legal-body h1 { font-family: var(--serif); font-weight: 600; font-size: clamp(2rem, 5vw, 2.7rem);
  line-height: 1.08; letter-spacing: -0.015em; color: var(--plum); margin: 0 0 0.9rem; }
.legal-body h2 { font-family: var(--serif); font-weight: 600; font-size: 1.32rem; color: var(--plum);
  margin: 2.4rem 0 0.7rem; }
.legal-body h3 { font-family: var(--sans); font-weight: 600; font-size: 1.02rem; color: var(--berry-deep);
  margin: 1.5rem 0 0.45rem; }
.legal-body p { margin: 0 0 1rem; }
.legal-body ul { margin: 0 0 1.1rem; padding-left: 1.25rem; }
.legal-body li { margin: 0 0 0.5rem; }
.legal-body strong { color: var(--plum); font-weight: 600; }
.legal-body a { color: var(--berry); text-decoration: underline; text-underline-offset: 2px; }
.legal-body section { border-top: 1px solid var(--blush-deep); padding-top: 1.5rem; margin-top: 1.7rem; }
.legal-body section:first-of-type { border-top: none; padding-top: 0; margin-top: 1.7rem; }

.legal-meta { font-family: var(--sans); font-size: 0.84rem; color: var(--rose); margin: 0 0 1.7rem; }

.legal-draft-notice { background: #FBEEF1; border: 1px solid var(--berry);
  border-radius: 14px; padding: 1.05rem 1.2rem; margin: 0 0 1.9rem; font-size: 0.9rem; line-height: 1.6; }
.legal-draft-notice p { margin: 0 0 0.55rem; }
.legal-draft-notice p:last-child { margin: 0; }
.legal-draft-notice strong { color: var(--berry-deep); }

.legal-body table { width: 100%; border-collapse: collapse; margin: 0 0 1.4rem; font-size: 0.86rem; }
.legal-body th, .legal-body td { border: 1px solid var(--blush-deep); padding: 0.55rem 0.7rem;
  text-align: left; vertical-align: top; line-height: 1.5; }
.legal-body th { background: var(--blush); font-family: var(--sans); font-weight: 600; color: var(--plum); }

.legal-back { display: inline-block; margin-top: 2.6rem; font-family: var(--sans);
  font-size: 0.92rem; color: var(--berry); text-decoration: none; }
.legal-back:hover { text-decoration: underline; }

@media (max-width: 560px) {
  .legal-wrap { padding: 0 1.2rem; }
  .legal-body table { display: block; overflow-x: auto; }
}

/* Collab lockup on the provider thesis statement */
.statement-x { display: block; margin-top: 0.45rem; font-size: 0.5em; line-height: 1; color: #E7B6A0; }
.statement-collab { display: block; margin-top: 0.3rem; font-size: 0.4em; font-weight: 600; letter-spacing: 0.26em; color: #E7B6A0; }

/* Tap-to-play reels (story cards -> lightbox) */
.story-card.is-playable { cursor: pointer; }
.reel-lightbox { position: fixed; inset: 0; z-index: 200; display: none; align-items: center; justify-content: center; background: rgba(40, 12, 22, 0.9); padding: 2rem; }
.reel-lightbox.is-open { display: flex; }
.reel-video { height: 86vh; max-width: 92vw; aspect-ratio: 9 / 16; width: auto; border-radius: 18px; background: #000; object-fit: cover; box-shadow: 0 40px 90px -30px rgba(0, 0, 0, 0.7); }
.reel-close { position: absolute; top: 1.1rem; right: 1.3rem; width: 44px; height: 44px; border-radius: 50%; border: none; background: rgba(255, 255, 255, 0.16); color: #fff; font-size: 1.7rem; line-height: 1; cursor: pointer; }
.reel-close:hover { background: rgba(255, 255, 255, 0.28); }

/* Only genuinely playable (video) cards show the play button */
.story-card:not(.is-playable) .story-play { display: none; }


/* ---------- Hero riffle (Marvel-style flip through services) ---------- */
.riffle { position: relative; width: 100%; aspect-ratio: 3 / 4; }
.riffle .rf { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0; }
.riffle .rf.is-on { opacity: 1; animation: rfPop 0.5s var(--ease); }
@keyframes rfPop { from { transform: scale(1.06); } to { transform: scale(1); } }
@media (prefers-reduced-motion: reduce) { .riffle .rf.is-on { animation: none; } }
.riffle::after { content: ""; position: absolute; inset: 0; z-index: 2; pointer-events: none;
  background: linear-gradient(155deg, rgba(190, 158, 94, 0.10), rgba(160, 58, 85, 0.16)); mix-blend-mode: multiply; }

/* ---------- Mobile hamburger nav ---------- */
.nav-toggle { display: none; }
.mobile-menu { display: none; }
@media (max-width: 620px) {
  .nav-links { display: none; }
  .nav-toggle { display: inline-flex; flex-direction: column; justify-content: center; gap: 5px;
    width: 42px; height: 42px; padding: 9px; background: none; border: none; cursor: pointer; }
  .nav-toggle span { display: block; width: 24px; height: 2px; background: var(--ink); border-radius: 2px;
    transition: transform 0.22s var(--ease), opacity 0.18s; }
  .nav-toggle.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle.is-open span:nth-child(2) { opacity: 0; }
  .nav-toggle.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .mobile-menu.is-open { display: block; padding: 0.4rem 1.4rem 1.6rem; background: var(--paper);
    border-top: 1px solid rgba(190, 158, 94, 0.28); }
  .mobile-menu a { display: block; padding: 0.72rem 0; font-size: 1.08rem; color: var(--ink);
    border-bottom: 1px solid rgba(190, 158, 94, 0.14); }
  .mm-label { font-family: var(--sans); font-weight: 600; text-transform: uppercase; letter-spacing: 0.18em;
    font-size: 0.68rem; color: var(--gold-deep); margin: 0.9rem 0 0.1rem; }
  .mm-sep { border: none; border-top: 1px solid rgba(190, 158, 94, 0.3); margin: 0.5rem 0; }
  .mobile-menu a.mm-cta { display: inline-flex; border: none; color: var(--cream); margin-top: 1.1rem; padding: 0.9rem 1.6rem; font-size: 0.95rem; }
}
