/* ============================================
   B.A.D GYAL VEGAN — shared stylesheet
   Streetwear editorial · Caribbean heat
   ============================================ */

:root {
  /* Color system — matches the B.A.D Gyal Vegan logo:
     black type, green ribbons/leaves, yellow sun, on white/cream */
  --ink: #0f0f0f;              /* logo black type / primary text */
  --ink-2: #1a1a1a;            /* elevated dark surface */
  --ink-3: #262626;            /* card / border on dark */
  --cream: #fbf6ea;            /* warm off-white background */
  --cream-2: #f1e9d1;
  --bone: #6d6a63;             /* muted text on cream */
  --pepper: #2D9537;           /* logo green (from live site) — primary accent */
  --pepper-2: #24802f;         /* darker green hover */
  --gold: #FEE600;             /* logo yellow (from live site) — accent */
  --gold-2: #e6d100;
  --leaf: #1e6b28;             /* deeper leaf green for text on cream */
  --line: rgba(15, 15, 15, 0.10);
  --line-strong: rgba(15, 15, 15, 0.22);

  /* Type */
  --f-display: "Anton", "Archivo Black", "Impact", sans-serif;
  --f-headline: "Archivo Black", "Anton", "Impact", sans-serif;
  --f-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --f-mono: "JetBrains Mono", ui-monospace, "Menlo", monospace;

  /* Scale */
  --container: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --radius: 4px;
  --radius-lg: 14px;
}

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

img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* Container */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.eyebrow {
  font-family: var(--f-mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pepper);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: "";
  width: 22px; height: 1px; background: var(--pepper);
  display: inline-block;
}
.eyebrow.cream { color: var(--cream); }
.eyebrow.cream::before { background: var(--cream); }

h1, h2, h3, h4 {
  font-family: var(--f-display);
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 0.92;
  text-transform: uppercase;
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(56px, 11vw, 168px); }
h2 { font-size: clamp(40px, 7vw, 96px); }
h3 { font-size: clamp(28px, 3.5vw, 44px); }
h4 { font-size: clamp(20px, 2.2vw, 26px); font-family: var(--f-headline); letter-spacing: 0; }

.lede {
  font-size: clamp(17px, 1.6vw, 20px);
  line-height: 1.5;
  color: var(--bone);
  max-width: 58ch;
  text-wrap: pretty;
}

.pepper { color: var(--pepper); }
.gold { color: var(--gold-2); }  /* darker yellow reads on cream */
.cream { color: var(--ink); }
.italic-serif { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 400; text-transform: none; letter-spacing: -0.01em; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 14px 26px;
  font-family: var(--f-headline);
  font-size: 15px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-primary { background: var(--pepper); color: var(--cream); }
.btn-primary:hover { background: var(--pepper-2); }

.btn-gold { background: var(--gold); color: var(--ink); }
.btn-gold:hover { background: var(--gold-2); }

.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: #fff; }

.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(247,241,227,0.06); }

.btn-arrow::after {
  content: "→";
  font-family: var(--f-body);
  font-size: 18px;
  transform: translateY(-1px);
}

.btn-block { width: 100%; }

/* ============================================
   NAV
   ============================================ */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 246, 234, 0.94);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
}
.brand img {
  height: 76px;
  width: auto;
  display: block;
}
/* Legacy text-brand fallback (kept for footer) */
.brand.brand-text {
  font-family: var(--f-display);
  font-size: 20px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.brand.brand-text .dot {
  width: 10px; height: 10px; background: var(--pepper); border-radius: 999px; display: inline-block;
}
/* Footer sits on dark ink. The logo's yellow disc + green ribbons pop naturally;
   its black text becomes low-contrast on ink — wrap it in a cream chip so the
   whole mark reads at a glance. */
footer .brand {
  background: var(--cream);
  padding: 10px 16px;
  border-radius: 12px;
  display: inline-flex;
}
footer .brand img {
  height: 72px;
  width: auto;
}
.nav-links {
  display: none;
  gap: 32px;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}
.nav-links a { color: var(--ink); opacity: 0.72; transition: opacity .15s, color .15s; }
.nav-links a:hover { opacity: 1; color: var(--pepper); }
.nav-cta { display: none; }
.nav-menu-btn {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong); border-radius: 999px;
}
.nav-menu-btn span, .nav-menu-btn::before, .nav-menu-btn::after {
  content: "";
  display: block;
  width: 18px; height: 2px; background: var(--ink);
  position: relative;
}
.nav-menu-btn span { margin: 4px 0; }

@media (min-width: 900px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-menu-btn { display: none; }
}

/* Mobile dropdown */
.mnav {
  display: none;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.mnav.open { display: block; }
.mnav a {
  display: block;
  padding: 18px var(--gutter);
  font-family: var(--f-headline);
  font-size: 18px;
  border-top: 1px solid var(--line);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.mnav .btn { margin: 16px var(--gutter); display: flex; }
@media (min-width: 900px) { .mnav { display: none !important; } }

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 9vw, 120px);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: end;
}
@media (min-width: 1000px) {
  .hero-grid { grid-template-columns: 1.15fr 0.85fr; gap: 60px; align-items: end; }
}
.hero h1 {
  color: var(--ink);
}
.hero h1 .accent { color: var(--pepper); font-style: italic; font-family: Georgia, serif; font-weight: 400; text-transform: none; letter-spacing: -0.02em; }
.hero-sub { margin-top: 26px; max-width: 46ch; color: var(--bone); }
.hero-sub b.cream { color: var(--ink); }
.hero-cta { margin-top: 32px; display: flex; flex-wrap: wrap; gap: 12px; }

.hero-proof {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 24px;
}
.hero-proof .num {
  font-family: var(--f-display);
  font-size: clamp(28px, 3.4vw, 42px);
  color: var(--pepper);
  line-height: 1;
}
.hero-proof .lbl {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
  margin-top: 8px;
}

/* Marquee strip */
.marquee {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--pepper);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  padding: 18px 0;
  animation: marquee 32s linear infinite;
  font-family: var(--f-display);
  font-size: clamp(22px, 3vw, 34px);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .sep { color: var(--gold); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================
   SECTIONS
   ============================================ */
section { padding: clamp(64px, 9vw, 128px) 0; }
.sec-head { max-width: 68ch; margin-bottom: clamp(32px, 5vw, 56px); }
.sec-head h2 { margin-top: 16px; }
.sec-head .lede { margin-top: 18px; }

.bg-cream { background: #fff; color: var(--ink); }
.bg-cream .lede { color: rgba(15,15,15,0.68); }
.bg-cream .eyebrow { color: var(--pepper); }
.bg-cream .eyebrow::before { background: var(--pepper); }

.bg-pepper { background: var(--pepper); color: #fff; }
.bg-pepper .eyebrow { color: #fff; }
.bg-pepper .eyebrow::before { background: #fff; }

.bg-ink-2 { background: var(--ink); color: var(--cream); }
.bg-ink-2 .lede { color: rgba(251,246,234,0.7); }
.bg-ink-2 .eyebrow { color: var(--gold); }
.bg-ink-2 .eyebrow::before { background: var(--gold); }

/* ============================================
   PROBLEM / PAIN POINTS
   ============================================ */
.pain-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 700px) { .pain-grid { grid-template-columns: 1fr 1fr; } }
.pain {
  background: #fff;
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 220px;
}
.pain .n {
  font-family: var(--f-mono);
  font-size: 12px;
  color: var(--pepper);
  letter-spacing: 0.14em;
}
.pain h4 { color: var(--ink); text-transform: none; letter-spacing: -0.01em; font-family: var(--f-headline); font-size: 22px; }
.pain p { color: var(--bone); margin: 0; }

/* ============================================
   SOLUTION / BENEFIT CARDS
   ============================================ */
.solution {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .solution { grid-template-columns: repeat(3, 1fr); } }
.sol-card {
  background: #fff;
  border: 1px solid var(--line);
  padding: 32px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.sol-card .icon {
  width: 44px; height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--pepper); color: #fff;
  font-family: var(--f-display);
  font-size: 22px;
  border-radius: 8px;
}
.sol-card h4 { color: var(--ink); font-family: var(--f-headline); text-transform: none; font-size: 22px; letter-spacing: -0.005em; }
.sol-card p { color: var(--bone); margin: 0; }
.bg-cream .sol-card { background: #fff; border-color: rgba(15,15,15,0.08); }
.bg-cream .sol-card p { color: rgba(15,15,15,0.7); margin: 0; }

/* ============================================
   MENU / OFFERS GRID
   ============================================ */
.offers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 800px) { .offers { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.offer {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.offer:hover { transform: translateY(-4px); border-color: var(--pepper); box-shadow: 0 12px 32px -12px rgba(15,15,15,0.12); }
.offer .thumb {
  aspect-ratio: 4 / 3;
  position: relative;
  overflow: hidden;
  background: var(--cream-2);
}
.offer .body {
  padding: 26px 24px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.offer .tag {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pepper);
}
.offer h3 { font-family: var(--f-headline); text-transform: uppercase; letter-spacing: 0; font-size: 26px; color: var(--ink); }
.offer p { color: var(--bone); margin: 0; flex: 1; }
.offer .offer-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-mono);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: 0.14em;
  color: var(--pepper);
  padding-top: 8px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.offer .offer-cta::after { content: "→"; font-family: var(--f-body); font-size: 16px; }

/* ============================================
   IMAGE PLACEHOLDERS
   Subtly striped SVG-style CSS placeholders
   with monospace label — client swaps in real photos.
   ============================================ */
.imgph {
  position: relative;
  background:
    repeating-linear-gradient(
      45deg,
      rgba(15,15,15,0.03) 0 8px,
      rgba(15,15,15,0.07) 8px 16px
    ),
    linear-gradient(135deg, var(--cream-2), var(--cream));
  color: rgba(15,15,15,0.55);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 12px;
  letter-spacing: 0.06em;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.imgph.warm {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(45,149,55,0.06) 0 8px,
      rgba(45,149,55,0.12) 8px 16px
    ),
    linear-gradient(135deg, #eaf7ec, #d6efdb);
  color: rgba(15,60,25,0.7);
}
.imgph.gold {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(254,230,0,0.14) 0 8px,
      rgba(254,230,0,0.28) 8px 16px
    ),
    linear-gradient(135deg, #fff9c9, #fceb60);
  color: rgba(15,15,15,0.7);
}
.imgph.cream {
  background:
    repeating-linear-gradient(
      45deg,
      rgba(15,15,15,0.04) 0 8px,
      rgba(15,15,15,0.08) 8px 16px
    ),
    linear-gradient(135deg, #f0e8d3, #e5dabe);
  color: rgba(15,15,15,0.55);
}
.imgph::before {
  content: attr(data-label);
  display: block;
  padding: 8px 14px;
  border: 1px dashed currentColor;
  border-radius: 4px;
  background: rgba(255,255,255,0.65);
}
.imgph.cream::before { background: rgba(255,255,255,0.55); }

/* Real product photography — drop-in replacement for .imgph.
   Usage: <div class="foto" style="background-image: url(...)"></div>
   Or pair with an <img> child (object-fit: cover) for the same look. */
.foto {
  position: relative;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.foto img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   LEAD MAGNET BLOCK
   ============================================ */
.magnet-block {
  position: relative;
  background: var(--gold);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: clamp(36px, 6vw, 72px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
  overflow: hidden;
}
@media (min-width: 900px) { .magnet-block { grid-template-columns: 1.15fr 0.85fr; } }
.magnet-block h2 { color: var(--ink); }
.magnet-block .price-strike {
  display: inline-flex;
  gap: 12px;
  align-items: baseline;
  font-family: var(--f-mono);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 16px;
}
.magnet-block .price-strike s { color: rgba(10,9,8,0.6); }
.magnet-block .price-strike b { color: var(--pepper); font-weight: 700; }
.magnet-list { list-style: none; padding: 0; margin: 20px 0 0; display: grid; gap: 10px; }
.magnet-list li {
  padding-left: 28px; position: relative;
  color: rgba(10,9,8,0.82);
}
.magnet-list li::before {
  content: "✓";
  position: absolute; left: 0; top: 0;
  font-weight: 800;
  color: var(--pepper);
}

/* ============================================
   FORMS
   ============================================ */
.form { display: grid; gap: 12px; }
.form-row { display: grid; gap: 12px; }
@media (min-width: 640px) { .form-row.two { grid-template-columns: 1fr 1fr; } }
.field { display: grid; gap: 6px; }
.field label {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(10,9,8,0.65);
}
.form.on-dark .field label { color: var(--bone); }
.field input,
.field select,
.field textarea {
  font-family: var(--f-body);
  font-size: 16px;
  min-height: 52px;
  padding: 14px 18px;
  background: #fff;
  color: var(--ink);
  border: 2px solid var(--ink);
  border-radius: 10px;
  transition: border-color .15s;
  width: 100%;
}
.form.on-dark .field input,
.form.on-dark .field select,
.form.on-dark .field textarea {
  background: rgba(255,255,255,0.06);
  border-color: var(--line-strong);
  color: var(--cream);
}
.form.on-dark .field input::placeholder,
.form.on-dark .field textarea::placeholder { color: rgba(247,241,227,0.4); }
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus,
.field select:focus,
.field textarea:focus { outline: none; border-color: var(--pepper); }
.form small { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(10,9,8,0.55); }
.form.on-dark small { color: var(--bone); }

.form-success {
  padding: 20px 24px;
  border-radius: 10px;
  background: rgba(47,93,58,0.15);
  border: 1px solid var(--leaf);
  color: var(--cream);
  display: none;
}
.form-success.show { display: block; }
.bg-cream .form-success { background: rgba(47,93,58,0.08); color: var(--leaf); }

/* ============================================
   PROOF STATS
   ============================================ */
.stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
@media (min-width: 800px) { .stats { grid-template-columns: repeat(4, 1fr); } }
.stat {
  background: #fff;
  padding: 32px 24px;
  text-align: left;
}
.stat .num { font-family: var(--f-display); font-size: clamp(40px, 5vw, 60px); color: var(--pepper); line-height: 1; }
.stat .lbl { font-family: var(--f-mono); font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--bone); margin-top: 12px; }
.bg-cream .stat { background: #fff; }
.bg-cream .stat .lbl { color: rgba(15,15,15,0.55); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testis { display: grid; grid-template-columns: 1fr; gap: 20px; }
@media (min-width: 900px) { .testis { grid-template-columns: repeat(3, 1fr); gap: 24px; } }
.testi {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 28px;
  display: flex; flex-direction: column; gap: 18px;
}
.bg-cream .testi { background: #fff; border-color: rgba(15,15,15,0.08); }
.testi .stars { color: var(--gold-2); letter-spacing: 3px; font-size: 16px; }
.testi blockquote {
  margin: 0;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 19px;
  line-height: 1.45;
  color: var(--ink);
}
.bg-cream .testi blockquote { color: var(--ink); }
.testi cite {
  font-style: normal;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
}
.bg-cream .testi cite { color: rgba(15,15,15,0.55); }

/* ============================================
   ABOUT / CHEF
   ============================================ */
.about {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .about { grid-template-columns: 0.9fr 1.1fr; gap: 60px; } }
.about-photo { aspect-ratio: 4/5; border-radius: var(--radius-lg); overflow: hidden; }
.about h2 { margin-top: 16px; }
.about p { margin-top: 20px; color: rgba(10,9,8,0.72); max-width: 56ch; }
.about-sig {
  margin-top: 28px;
  font-family: Georgia, serif;
  font-style: italic;
  font-size: 22px;
  color: var(--pepper);
}
.chef-creds {
  margin-top: 24px;
  display: flex; flex-wrap: wrap; gap: 10px;
}
.chef-creds .chip {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 8px 14px;
  border: 1px solid rgba(10,9,8,0.2);
  border-radius: 999px;
  color: var(--ink);
}

/* ============================================
   FAQ
   ============================================ */
.faq { display: grid; gap: 0; border-top: 1px solid var(--line); }
.faq details {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
}
.bg-cream .faq { border-top-color: rgba(10,9,8,0.12); }
.bg-cream .faq details { border-bottom-color: rgba(10,9,8,0.12); }
.faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  font-family: var(--f-headline);
  font-size: clamp(18px, 2vw, 22px);
  text-transform: uppercase;
  letter-spacing: -0.005em;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--f-display);
  font-size: 28px;
  color: var(--pepper);
  transition: transform .2s;
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p {
  margin: 16px 0 0;
  color: var(--bone);
  max-width: 68ch;
}
.bg-cream .faq details p { color: rgba(15,15,15,0.7); }

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta {
  text-align: center;
  padding: clamp(72px, 12vw, 160px) 0;
}
.final-cta h2 {
  color: var(--ink);
  font-size: clamp(48px, 10vw, 140px);
}
.final-cta .btn { margin-top: 32px; }
.final-cta .lede { margin: 20px auto 0; color: rgba(10,9,8,0.72); }

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: var(--ink);
  color: var(--cream);
  border-top: 1px solid var(--line);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 800px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; } }
footer h5 {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
  margin: 0 0 18px;
}
footer ul { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
footer a { color: var(--cream); transition: color .15s; }
footer a:hover { color: var(--pepper); }
.footer-brand p { color: var(--bone); margin: 12px 0 0; max-width: 32ch; }
.footer-form { display: flex; gap: 8px; margin-top: 12px; }
.footer-form input {
  flex: 1;
  min-height: 46px;
  padding: 10px 16px;
  background: rgba(247,241,227,0.06);
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  color: var(--cream);
  font-family: var(--f-body);
}
.footer-form input::placeholder { color: var(--bone); }
.footer-form button {
  padding: 0 20px;
  min-height: 46px;
  background: var(--pepper);
  color: var(--cream);
  border-radius: 999px;
  font-family: var(--f-headline);
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bone);
}
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  transition: background .15s, border-color .15s;
}
.socials a:hover { background: var(--pepper); border-color: var(--pepper); }
.socials svg { width: 16px; height: 16px; }

/* ============================================
   FUNNEL PAGE HELPERS
   ============================================ */
.f-hero {
  padding: clamp(64px, 8vw, 120px) 0 clamp(48px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}
.f-hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .f-hero-grid { grid-template-columns: 1.1fr 0.9fr; gap: 60px; } }
.f-hero h1 { font-size: clamp(48px, 8vw, 108px); }
.f-hero .price {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  margin-top: 24px;
  font-family: var(--f-mono);
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.f-hero .price b {
  font-family: var(--f-display);
  font-size: clamp(30px, 4vw, 42px);
  color: var(--cream);
  font-weight: 400;
  letter-spacing: 0;
}

.steps { display: grid; grid-template-columns: 1fr; gap: 20px; counter-reset: step; }
@media (min-width: 800px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1100px) { .steps { grid-template-columns: repeat(5, 1fr); } }
.step {
  padding: 28px 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  counter-increment: step;
  position: relative;
}
.step::before {
  content: counter(step, decimal-leading-zero);
  font-family: var(--f-display);
  font-size: 36px;
  color: var(--pepper);
  display: block;
  margin-bottom: 12px;
}
.step h4 { color: var(--ink); font-family: var(--f-headline); text-transform: none; letter-spacing: 0; font-size: 19px; margin-bottom: 8px; }
.step p { color: var(--bone); margin: 0; font-size: 15px; }

.who-for { display: grid; grid-template-columns: 1fr; gap: 40px; }
@media (min-width: 900px) { .who-for { grid-template-columns: 1fr 1fr; gap: 60px; } }
.who-list { list-style: none; padding: 0; margin: 24px 0 0; display: grid; gap: 14px; }
.who-list li {
  padding: 14px 18px;
  border-left: 3px solid var(--pepper);
  background: #fff;
  border-radius: 0 8px 8px 0;
  color: var(--ink);
  font-size: 16px;
}
.bg-ink-2 .who-list li { background: var(--ink-2); color: var(--cream); }
.who-list.no li { border-left-color: var(--bone); color: var(--bone); opacity: 0.7; }
.bg-ink-2 .who-list.no li { background: var(--ink-2); }

/* ============================================
   LINK IN BIO
   ============================================ */
body.bio { background: var(--ink); color: var(--cream); }
body.bio .bio-name { color: var(--cream); }
body.bio .bio-tag { color: var(--cream-2); }
.bio-wrap {
  max-width: 480px;
  margin: 0 auto;
  padding: 48px 20px 40px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bio-header { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 14px; }
.bio-avatar {
  width: 128px; height: 128px;
  border-radius: 999px;
  overflow: hidden;
  border: 3px solid var(--pepper);
  padding: 6px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bio-avatar img { width: 100%; height: 100%; object-fit: contain; display: block; }
.bio-avatar .imgph { border-radius: 999px; padding: 12px; font-size: 10px; }
.bio-name {
  font-family: var(--f-display);
  font-size: 28px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  color: var(--cream);
  line-height: 1;
}
.bio-handle { font-family: var(--f-mono); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--pepper); }
.bio-tag { color: var(--bone); font-size: 15px; max-width: 34ch; margin: 0 auto; }
.bio-links { display: grid; gap: 12px; margin-top: 8px; }
.bio-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 22px;
  background: var(--cream);
  color: var(--ink);
  border-radius: 12px;
  font-family: var(--f-headline);
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: transform .15s;
  min-height: 60px;
}
.bio-link:hover { transform: translateY(-2px); }
.bio-link.primary { background: var(--pepper); color: var(--cream); }
.bio-link.gold { background: var(--gold); color: var(--ink); }
.bio-link .arrow { font-family: var(--f-body); font-size: 18px; opacity: 0.7; }
.bio-link .sub {
  display: block;
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: rgba(10,9,8,0.5);
  margin-top: 3px;
  font-weight: 400;
}
.bio-link.primary .sub { color: rgba(247,241,227,0.7); }
.bio-footer {
  margin-top: auto;
  padding-top: 24px;
  text-align: center;
  color: var(--bone);
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ============================================
   MAGNET LANDING (standalone)
   ============================================ */
body.magnet-body { background: var(--ink); color: var(--cream); }
body.magnet-body .magnet-hero h1 { color: var(--cream); }
body.magnet-body .lede { color: rgba(251,246,234,0.75); }
body.magnet-body .lede b.cream { color: var(--cream); }
.magnet-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 48px 0;
}
.magnet-hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .magnet-hero { grid-template-columns: 1.1fr 0.9fr; gap: 60px; } }
.magnet-hero h1 { font-size: clamp(48px, 7vw, 92px); color: var(--cream); }
.magnet-hero h1 .accent { color: var(--gold); font-style: italic; font-family: Georgia, serif; text-transform: none; font-weight: 400; letter-spacing: -0.02em; }
.magnet-form-card {
  background: var(--cream);
  color: var(--ink);
  padding: 36px 32px;
  border-radius: var(--radius-lg);
}
.magnet-form-card h3 {
  font-family: var(--f-headline);
  text-transform: uppercase;
  font-size: 24px;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin-bottom: 8px;
}
.magnet-back {
  position: absolute;
  top: 24px; left: 24px;
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--bone);
}
.magnet-back:hover { color: var(--cream); }

/* Utility */
.mono { font-family: var(--f-mono); }
.divider { height: 1px; background: var(--line); margin: 40px 0; }
.hidden { display: none !important; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
