/* ---------- Tokens ---------- */
:root {
  --ink: #15120E;
  --ink-soft: #241F19;
  --ivory: #F5F0E4;
  --ivory-dim: #E7DFCC;
  --brass: #C9A227;
  --brass-bright: #E4C24E;
  --wine: #6E2430;
  --stone: #948C79;

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Work Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1120px;
  --radius: 14px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--ink);
  color: var(--ivory);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; }

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 28px;
}

/* subtle film-grain / warmth overlay so the black doesn't feel like a generic dark-mode default */
.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 999;
  opacity: 0.05;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ---------- Type ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-bright);
  margin: 0 0 14px;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.15;
  margin: 0 0 20px;
  color: var(--ivory);
}

h1, h2, h3 { margin: 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 999px;
  transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible {
  outline: 2px solid var(--brass-bright);
  outline-offset: 3px;
}

.btn-primary {
  background: var(--brass);
  color: var(--ink);
}
.btn-primary:hover { background: var(--brass-bright); }

.btn-ghost {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(245, 240, 228, 0.28);
  padding: 12px 21px;
}
.btn-ghost:hover { border-color: var(--brass-bright); color: var(--brass-bright); }

.btn-small {
  padding: 9px 18px;
  font-size: 0.85rem;
}

.btn-large {
  padding: 16px 30px;
  font-size: 1.02rem;
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(21, 18, 14, 0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(245, 240, 228, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-word {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--ivory);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 0.92rem;
  font-weight: 500;
}
.site-nav a:not(.btn) {
  text-decoration: none;
  color: var(--ivory-dim);
  transition: color 0.15s ease;
}
.site-nav a:not(.btn):hover { color: var(--brass-bright); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 96px 0 0;
  overflow: hidden;
}

.hero-inner {
  max-width: 760px;
  padding-bottom: 90px;
}

.hero-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.01em;
  color: var(--ivory);
}

.hook-word {
  position: relative;
  font-style: italic;
  font-weight: 500;
  color: var(--brass-bright);
  display: inline-flex;
  align-items: flex-start;
}

.hook-mark {
  display: inline-block;
  color: var(--wine);
  transform: translate(-6px, -18px) rotate(8deg);
  filter: drop-shadow(0 0 10px rgba(110, 36, 48, 0.4));
}

.hero-sub {
  font-size: 1.12rem;
  color: var(--ivory-dim);
  max-width: 560px;
  margin: 26px 0 38px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.keys-strip {
  width: 100%;
  height: 130px;
  line-height: 0;
}

/* ---------- How it works ---------- */
.how {
  background: var(--ivory);
  color: var(--ink);
  padding: 92px 0;
}

.how .eyebrow { color: var(--wine); }
.how .section-title { color: var(--ink); max-width: 640px; }

.steps {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.step {
  border-top: 2px solid var(--ink);
  padding-top: 20px;
}

.step-num {
  display: block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.3rem;
  color: var(--wine);
  margin-bottom: 14px;
}

.step h3 {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.step p {
  color: var(--ink-soft);
  font-size: 0.98rem;
  margin: 0;
}

/* ---------- Watch ---------- */
.watch {
  padding: 96px 0;
  background: var(--ink);
}

.watch-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.watch-copy p:not(.eyebrow) {
  color: var(--ivory-dim);
  font-size: 1.03rem;
  margin: 0 0 30px;
  max-width: 420px;
}

.watch-frame {
  background: var(--ink-soft);
  border: 1px solid rgba(245, 240, 228, 0.1);
  border-radius: var(--radius);
  padding: 14px;
}

.video-embed {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
  background: #000;
}
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ---------- CTA ---------- */
.cta {
  background: var(--wine);
  padding: 84px 0;
  text-align: center;
}
.cta-title { color: var(--ivory); }
.cta p {
  color: rgba(245, 240, 228, 0.82);
  font-size: 1.06rem;
  margin: 0 0 32px;
}
.cta-inner { display: flex; flex-direction: column; align-items: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  border-top: 1px solid rgba(245, 240, 228, 0.08);
  padding: 30px 0;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  color: var(--stone);
}
.footer-inner a { text-decoration: none; }
.footer-inner a:hover { color: var(--brass-bright); }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .watch-inner { grid-template-columns: 1fr; }
  .site-nav a:not(.btn):not(.btn-small) { display: none; }
}

@media (max-width: 560px) {
  .hero { padding-top: 64px; }
  .hero-inner { padding-bottom: 60px; }
  .how, .watch, .cta { padding: 64px 0; }
  .keys-strip { height: 90px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .btn { transition: none; }
}
