:root {
  --ground: #2a2520;
  --ground-2: #221e19;
  --ground-3: #2f2a24;
  --cream: #faf3e8;
  --cream-2: #f0e6d4;
  --cream-line: rgba(42, 37, 32, 0.14);
  --ink: #2a2520;
  --ink-soft: #6b6055;
  --gold: #9e7818;
  --gold-hover: #b18a25;
  --gold-lt: #c9a55a;
  --line: rgba(250, 243, 232, 0.14);
  --line-2: rgba(250, 243, 232, 0.26);
  --dim: rgba(250, 243, 232, 0.66);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", system-ui, -apple-system, sans-serif;
  --maxw: 1080px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { background: var(--ground); }
body {
  margin: 0; color: var(--cream); font-family: var(--sans);
  line-height: 1.65; -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

.o-eyebrow {
  font-size: 11px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold-lt); font-weight: 500;
}
.o-wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }

/* ---- top bar ---- */
.o-nav {
  position: sticky; top: 0; z-index: 20;
  background: rgba(34, 30, 25, 0.82); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.o-nav-in {
  max-width: var(--maxw); margin: 0 auto; padding: 12px 22px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.o-logo { display: flex; align-items: center; }
.o-logo img { height: 34px; width: auto; }
.o-nav-right { display: flex; align-items: center; gap: 18px; }
.o-nav-link {
  font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; font-weight: 500;
}
.o-nav-link:hover { color: var(--gold-lt); }
.o-nav-cta {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  color: var(--ink); background: var(--gold); text-decoration: none;
  padding: 9px 16px; border-radius: 4px; transition: background 160ms ease;
}
.o-nav-cta:hover { background: var(--gold-hover); }
.o-nav-link.hide-sm { display: none; }

/* ---- hero ---- */
.o-hero {
  text-align: center; padding: 62px 0 56px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(120% 90% at 50% 0%, rgba(158, 120, 24, 0.10), transparent 60%),
    var(--ground);
}
.o-hero h1 {
  font-family: var(--serif); font-weight: 500;
  font-size: 44px; line-height: 1.08; margin: 20px auto 0; max-width: 12ch;
}
.o-hero h1 em { font-style: italic; color: var(--gold-lt); }
.o-hero-sub {
  font-size: 17px; color: var(--dim); max-width: 30ch;
  margin: 20px auto 0; line-height: 1.6;
}
.o-cta-row { margin-top: 30px; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.o-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 500;
  padding: 15px 30px; border-radius: 4px; text-decoration: none; cursor: pointer;
  transition: background 160ms ease, transform 120ms ease, border-color 160ms ease;
}
.o-btn-primary { color: var(--ink); background: var(--gold); border: 1px solid var(--gold); }
.o-btn-primary:hover { background: var(--gold-hover); border-color: var(--gold-hover); }
.o-btn-primary:active { transform: scale(0.99); }
.o-btn-ghost { color: var(--cream); background: transparent; border: 1px solid var(--line-2); }
.o-btn-ghost:hover { border-color: var(--gold-lt); color: var(--gold-lt); }
.o-hero-note { font-size: 13px; color: var(--dim); }

/* ---- contrast strip ---- */
.o-compare {
  background: var(--cream-2); color: var(--ink); text-align: center;
  padding: 46px 22px;
}
.o-compare p {
  font-family: var(--serif); font-style: italic; font-size: 26px; line-height: 1.35;
  margin: 0 auto; max-width: 22ch;
}
.o-compare span { color: var(--gold); font-style: normal; }

/* ---- pricing ---- */
.o-pricing { padding: 66px 0 72px; text-align: center; }
.o-section-head { max-width: 34ch; margin: 0 auto 8px; }
.o-pricing h2, .o-how h2 {
  font-family: var(--serif); font-weight: 500; font-size: 34px; line-height: 1.15;
  margin: 12px 0 0;
}
.o-pricing .o-lead { color: var(--dim); font-size: 16px; margin: 14px auto 34px; max-width: 32ch; }

.o-plans { display: grid; grid-template-columns: 1fr; gap: 18px; text-align: left; }
.o-plan {
  position: relative; background: var(--ground-2); border: 1px solid var(--line);
  border-radius: 14px; padding: 28px 26px; display: flex; flex-direction: column;
}
.o-plan.feature { border-color: var(--gold); }
.o-badge {
  position: absolute; top: -12px; left: 26px;
  font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 500;
  color: var(--ink); background: var(--gold); padding: 5px 12px; border-radius: 999px;
}
.o-plan-name { font-size: 13px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-lt); font-weight: 500; }
.o-price { font-family: var(--serif); font-size: 46px; line-height: 1; margin: 14px 0 2px; }
.o-price .o-per { font-family: var(--sans); font-size: 15px; color: var(--dim); letter-spacing: 0; }
.o-plan-desc { color: var(--dim); font-size: 15px; margin: 12px 0 18px; min-height: 44px; }
.o-feat { list-style: none; margin: 0 0 24px; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.o-feat li { display: flex; gap: 10px; font-size: 14px; color: var(--cream); align-items: flex-start; }
.o-feat li::before {
  content: ""; flex-shrink: 0; width: 15px; height: 15px; margin-top: 3px;
  border-radius: 50%; border: 1px solid var(--gold-lt);
  background: radial-gradient(circle at center, var(--gold-lt) 0 3px, transparent 4px);
}
.o-plan .o-btn { margin-top: auto; width: 100%; }
.o-plan-foot { text-align: center; font-size: 12px; color: var(--dim); margin-top: 12px; }
.o-plan-foot a { color: var(--gold-lt); }

/* ---- live demo band (cream) ---- */
.o-demo {
  background: var(--cream-2); color: var(--ink); text-align: center;
  padding: 60px 22px 64px;
}
.o-demo .o-eyebrow { color: var(--gold); }
.o-demo h2 {
  font-family: var(--serif); font-weight: 500; font-size: 32px; line-height: 1.15;
  margin: 12px auto 0; max-width: 20ch;
}
.o-demo p { color: var(--ink-soft); font-size: 16px; max-width: 40ch; margin: 16px auto 28px; }
.o-demo .o-btn-primary { color: var(--cream); }
.o-demo-soon {
  display: inline-block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold); border: 1px solid rgba(158, 120, 24, 0.42); border-radius: 999px;
  padding: 11px 22px;
}
.o-demo-stage { max-width: 340px; margin: 6px auto 16px; }
.o-demo-frame {
  width: 100%; aspect-ratio: 9 / 16; display: block; border-radius: 18px;
  border: 1px solid rgba(42, 37, 32, 0.22); background: #000;
  box-shadow: 0 18px 40px rgba(42, 37, 32, 0.18);
}
.o-demo-open { display: inline-block; font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); text-decoration: none; }
.o-demo-open:hover { color: var(--ink); }

/* ---- faq (dark) ---- */
.o-faq { background: var(--ground-2); border-top: 1px solid var(--line); padding: 64px 0 74px; }
.o-faq-head { text-align: center; margin-bottom: 34px; }
.o-faq h2 { font-family: var(--serif); font-weight: 500; font-size: 34px; margin: 12px 0 0; }
.o-faq-list { max-width: 720px; margin: 0 auto; }
.o-qa { padding: 22px 0; border-bottom: 1px solid var(--line); }
.o-qa:first-child { border-top: 1px solid var(--line); }
.o-qa h3 { font-family: var(--serif); font-weight: 500; font-size: 21px; margin: 0 0 8px; color: var(--cream); }
.o-qa p { margin: 0; color: var(--dim); font-size: 15px; }

/* ---- family shared gallery ---- */
.o-fam { padding: 48px 0 72px; }
.o-fam-grid { display: grid; grid-template-columns: 1fr; gap: 16px; }
.o-fam-card {
  display: flex; flex-direction: column; overflow: hidden;
  background: var(--ground-2); border: 1px solid var(--line); border-radius: 14px;
  text-decoration: none; color: var(--cream);
  transition: border-color 160ms ease, transform 120ms ease;
}
.o-fam-card:hover { border-color: var(--gold); transform: translateY(-3px); }
.o-fam-poster {
  position: relative; width: 100%; aspect-ratio: 4 / 5; background: var(--ground-3);
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.o-fam-vid { width: 100%; height: 100%; object-fit: cover; display: block; }
.o-fam-mono {
  width: 72px; height: 72px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 34px; color: var(--gold-lt);
  border: 1px solid var(--line-2); background: rgba(201, 165, 90, 0.08);
}
.o-fam-name { font-family: var(--serif); font-size: 22px; line-height: 1.15; text-align: center; margin: 14px 12px 0; }
.o-fam-cta { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-lt); text-align: center; margin: 6px 0 18px; }
.o-fam-empty { text-align: center; color: var(--dim); font-family: var(--serif); font-size: 22px; font-style: italic; padding: 40px 0; }
@media (min-width: 620px) { .o-fam-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (min-width: 900px) { .o-fam-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---- how it works ---- */
.o-how {
  background: var(--ground-2); border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line); padding: 64px 0 70px; text-align: center;
}
.o-steps { display: grid; grid-template-columns: 1fr; gap: 26px; margin-top: 38px; text-align: left; }
.o-step { display: flex; gap: 18px; align-items: flex-start; }
.o-step-n {
  flex-shrink: 0; font-family: var(--serif); font-size: 28px; color: var(--gold-lt);
  width: 52px; height: 52px; border: 1px solid var(--line-2); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.o-step-n svg { width: 24px; height: 24px; }
.o-step h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin: 4px 0 6px; }
.o-step p { color: var(--dim); font-size: 15px; margin: 0; }

/* ---- footer ---- */
.o-foot { padding: 52px 0 46px; text-align: center; }
.o-trust { display: flex; flex-wrap: wrap; justify-content: center; gap: 22px; margin-bottom: 30px; }
.o-trust span { font-size: 13px; color: var(--dim); letter-spacing: 0.04em; }
.o-foot-brand { font-family: var(--serif); font-size: 22px; color: var(--cream); }
.o-foot-brand em { font-style: italic; color: var(--gold-lt); }
.o-foot-links { margin-top: 16px; display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; }
.o-foot-links a { font-size: 13px; color: var(--dim); text-decoration: none; }
.o-foot-links a:hover { color: var(--gold-lt); }
.o-foot-fine { margin-top: 22px; font-size: 12px; color: rgba(250, 243, 232, 0.4); }

/* ---- responsive ---- */
@media (min-width: 560px) {
  .o-nav-link.hide-sm { display: inline; }
  .o-cta-row { flex-direction: row; justify-content: center; }
}
@media (min-width: 860px) {
  .o-hero { padding: 92px 0 82px; }
  .o-hero h1 { font-size: 64px; }
  .o-hero-sub { font-size: 19px; }
  .o-plans { grid-template-columns: repeat(3, 1fr); align-items: stretch; gap: 22px; }
  .o-plans-2 { grid-template-columns: repeat(2, 1fr); max-width: 720px; margin-left: auto; margin-right: auto; }
  .o-plan.feature { transform: translateY(-10px); }
  .o-steps { grid-template-columns: repeat(3, 1fr); gap: 34px; }
  .o-step { flex-direction: column; }
  .o-compare p { font-size: 32px; }
  .o-pricing h2, .o-how h2 { font-size: 40px; }
}
