/* ============================================================
   kassidywarren.com — Kassidy Warren
   Design: cream / olive / gold on dark. Playfair Display + Inter.
   Mobile-first. No framework. No build step.
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --cream: #FAF7F2;
  --cream-deep: #F1EAD9;
  --cream-deeper: #E9E0CC;
  --ink: #1C2118;
  --ink-2: #232A1E;
  --ink-3: #2B3324;
  --olive: #5C6B4F;
  --olive-deep: #3E4A34;
  --gold: #C4A44E;
  --gold-light: #D9BE77;
  --gold-soft: #E5D3A1;
  --text-on-cream: #3A3A33;
  --muted: #6E6A5C;
  --muted-light: #A9A78F;
  --line-on-cream: #E4DCCB;
  --line-on-dark: rgba(250, 247, 242, 0.14);

  --font-display: "Playfair Display", Georgia, "Times New Roman", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --radius: 14px;
  --radius-sm: 8px;
  --shadow-card: 0 1px 2px rgba(28, 33, 24, 0.05), 0 8px 24px rgba(28, 33, 24, 0.06);
  --shadow-lift: 0 2px 4px rgba(28, 33, 24, 0.06), 0 18px 40px rgba(28, 33, 24, 0.12);

  --maxw: 1160px;
  --gutter: clamp(1.25rem, 5vw, 2.5rem);
  --section-pad: clamp(4.5rem, 10vw, 7.5rem);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-on-cream);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: inherit; }
ul, ol { padding-left: 0; list-style: none; }
button { font: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute; left: 1rem; top: -100px; z-index: 200;
  background: var(--ink); color: var(--cream);
  padding: 0.75rem 1.25rem; border-radius: var(--radius-sm);
  font-weight: 600; transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.container-narrow { max-width: 820px; }

.section { padding-block: var(--section-pad); }

/* ---------- Eyebrows & section titles ---------- */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.1rem;
}
.eyebrow-light { color: var(--gold-light); }

.section-title {
  font-size: clamp(1.9rem, 4.6vw, 3rem);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.section-title em { font-style: italic; }

.section-sub {
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  color: var(--muted);
  max-width: 46rem;
  margin-bottom: 3rem;
}
.section-sub em { font-style: italic; color: var(--text-on-cream); }

.section-title-light { color: var(--cream); }
.section-sub-light { color: var(--muted-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }

.btn-gold {
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 8px 24px rgba(196, 164, 78, 0.35);
  transform: translateY(-1px);
}

.btn-ghost {
  background: transparent;
  color: var(--text-on-cream);
  border-color: var(--line-on-cream);
}
.btn-ghost:hover {
  border-color: var(--olive);
  color: var(--olive-deep);
  transform: translateY(-1px);
}

.btn-ghost-light {
  background: transparent;
  color: var(--cream);
  border-color: var(--line-on-dark);
}
.btn-ghost-light:hover {
  border-color: var(--gold);
  color: var(--gold-light);
  transform: translateY(-1px);
}

.btn-sm { min-height: 42px; padding: 0.6rem 1.25rem; font-size: 0.88rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(28, 33, 24, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-on-dark);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 4.5rem;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--cream);
}
.brand-mark {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.site-nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--cream);
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.15s ease, color 0.15s ease;
}
.site-nav a:hover { opacity: 1; color: var(--gold-light); }
.site-nav .nav-cta {
  opacity: 1;
  padding: 0.55rem 1.15rem;
  border: 1px solid var(--gold);
  border-radius: 999px;
  color: var(--gold-light);
  font-weight: 600;
}
.site-nav .nav-cta:hover {
  background: var(--gold);
  color: var(--ink);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  padding: 12px;
  background: transparent;
  border: 0;
}
.nav-toggle-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: flex; }
  .site-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    border-bottom: 1px solid var(--line-on-dark);
    padding: 0.75rem var(--gutter) 1.5rem;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
    display: none;
  }
  .site-nav.open { display: flex; }
  .site-nav a {
    padding: 0.9rem 0.25rem;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(250, 247, 242, 0.08);
  }
  .site-nav .nav-cta {
    margin-top: 1rem;
    text-align: center;
    border: 1px solid var(--gold);
  }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--ink);
  color: var(--cream);
  overflow: hidden;
  padding-block: clamp(4rem, 9vw, 7rem) clamp(3.5rem, 7vw, 5.5rem);
}
/* subtle warm glow, not a gradient blob — a restrained radial wash */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 420px at 85% 0%, rgba(196, 164, 78, 0.14), transparent 65%),
    radial-gradient(520px 380px at 0% 100%, rgba(92, 107, 79, 0.22), transparent 60%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.5rem;
  align-items: center;
}

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.3em;
  color: var(--gold-light);
  border-left: 2px solid var(--gold);
  padding-left: 0.9rem;
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.5rem;
  text-wrap: balance;
}

/* Centered hero (Dan Martell style: one line, big type, one path) */
.hero--centered .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.hero--centered .hero-photo {
  margin-bottom: 2rem;
}
.hero--centered .hero-photo img {
  width: min(320px, 70vw);
  height: min(320px, 70vw);
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid rgba(196, 164, 78, 0.5);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}
.hero--centered .hero-eyebrow {
  border-left: 0;
  padding-left: 0;
}
.hero--centered .hero-title {
  max-width: 15em;
}
.hero--centered .hero-sub {
  margin-inline: auto;
}
.hero--centered .hero-actions {
  justify-content: center;
}
.hero--centered .hero-sub em { font-style: italic; color: var(--gold-soft); }
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  position: relative;
  white-space: nowrap;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--muted-light);
  max-width: 34rem;
  margin-bottom: 2.25rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 2rem;
}

.hero-note {
  font-size: 0.85rem;
  color: var(--muted-light);
  letter-spacing: 0.02em;
}
.hero-note em { font-style: italic; color: var(--gold-soft); }

/* Scoreboard card */
.scoreboard {
  background: var(--ink-2);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  padding: 2rem 2.1rem;
  box-shadow: var(--shadow-lift);
  position: relative;
}
.scoreboard::before {
  content: "";
  position: absolute;
  top: 0; left: 2.1rem; right: 2.1rem;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent 70%);
}

.scoreboard-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted-light);
  margin-bottom: 1.4rem;
}

.score-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.95rem;
  border-bottom: 1px solid var(--line-on-dark);
}
.score-row:last-of-type { border-bottom: 0; }
.score-row dt {
  font-size: 0.88rem;
  color: var(--muted-light);
}
.score-num {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
  white-space: nowrap;
}
.score-num span { font-size: 0.6em; }

.scoreboard-foot {
  margin-top: 1.1rem;
  font-size: 0.85rem;
  font-style: italic;
  color: var(--muted-light);
}

@media (min-width: 900px) {
  .hero-grid { grid-template-columns: 1.25fr 0.9fr; gap: 4rem; }
}

/* ---------- Proof strip ---------- */
.proof-strip {
  background: var(--gold);
  color: var(--ink);
  padding-block: 1.15rem;
}
.proof-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.6rem 2rem;
}
.proof-item {
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(28, 33, 24, 0.75);
  display: flex;
  align-items: baseline;
  gap: 0.45rem;
  white-space: nowrap;
}
.proof-item span {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ink);
}
@media (min-width: 720px) {
  .proof-grid {
    grid-template-columns: repeat(4, 1fr);
    align-items: center;
  }
  .proof-item {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 0.1rem;
    text-align: center;
    border-right: 1px solid rgba(28, 33, 24, 0.18);
  }
  .proof-item:last-child { border-right: 0; }
}

/* ---------- Story ---------- */
.story { background: var(--cream); }

.story-body {
  display: grid;
  gap: 2.6rem;
  max-width: 46rem;
  margin-bottom: 4rem;
}

.story-lede p {
  font-size: clamp(1.15rem, 2.2vw, 1.4rem);
  line-height: 1.65;
  color: var(--text-on-cream);
  font-family: var(--font-display);
}
.story-lede strong { font-weight: 700; color: var(--olive-deep); }

.story-chapter-title {
  font-size: 1.3rem;
  margin-bottom: 0.6rem;
  color: var(--olive-deep);
}
.story-chapter p {
  color: var(--muted);
  font-size: 1rem;
}
.story-chapter p strong { color: var(--text-on-cream); }
.story-chapter em { font-style: italic; color: var(--olive-deep); }

/* Pillars */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 4rem;
}
.pillar {
  background: var(--cream-deep);
  border: 1px solid var(--line-on-cream);
  border-radius: var(--radius);
  padding: 1.8rem 1.9rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.pillar:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}
.pillar-num {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 0.6rem;
}
.pillar-title {
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 0.5rem;
}
.pillar-text {
  font-size: 0.95rem;
  color: var(--muted);
}

@media (min-width: 820px) {
  .pillars { grid-template-columns: repeat(3, 1fr); }
}

/* Quote */
.story-quote {
  border-top: 1px solid var(--line-on-cream);
  border-bottom: 1px solid var(--line-on-cream);
  padding-block: 2.25rem;
  max-width: 46rem;
}
.story-quote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.7rem);
  font-style: italic;
  line-height: 1.5;
  color: var(--ink);
  margin-bottom: 0.9rem;
}
.story-quote cite {
  font-family: var(--font-body);
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Stack (dark) ---------- */
.stack {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.stack::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(800px 500px at 15% 0%, rgba(92, 107, 79, 0.18), transparent 60%);
  pointer-events: none;
}
.stack .container { position: relative; }

.stack-path {
  position: relative;
  display: grid;
  gap: 1.1rem;
  max-width: 52rem;
  margin-top: 1rem;
}
/* the connecting spine */
.stack-path::before {
  content: "";
  position: absolute;
  top: 2.6rem;
  bottom: 2.6rem;
  left: 1.55rem;
  width: 2px;
  background: linear-gradient(180deg, var(--gold), rgba(196, 164, 78, 0.25));
}
@media (min-width: 720px) {
  .stack-path::before { left: 1.8rem; }
}

.stack-step {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  background: var(--ink-2);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  padding: 1.5rem 1.6rem 1.5rem 4.6rem;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
@media (min-width: 640px) {
  .stack-step {
    grid-template-columns: 1fr auto;
    align-items: center;
  }
}
.stack-step:hover { border-color: rgba(196, 164, 78, 0.55); transform: translateX(3px); }

.stack-step-num {
  position: absolute;
  left: 0.85rem;
  top: 1.4rem;
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  z-index: 1;
}

.stack-step-head { display: flex; gap: 1rem; align-items: flex-start; }

.stack-step-name {
  font-size: 1.28rem;
  color: var(--cream);
  margin-bottom: 0.4rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}
.stack-step-desc {
  font-size: 0.93rem;
  color: var(--muted-light);
  max-width: 40rem;
}

.stack-step-tag {
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
}
.tag-free {
  background: rgba(92, 107, 79, 0.4);
  color: var(--gold-soft);
  border: 1px solid rgba(92, 107, 79, 0.8);
}
.tag-price {
  background: rgba(196, 164, 78, 0.14);
  color: var(--gold-light);
  border: 1px solid rgba(196, 164, 78, 0.45);
}

.stack-step-featured {
  border-color: rgba(196, 164, 78, 0.6);
  background: linear-gradient(180deg, var(--ink-3), var(--ink-2));
  box-shadow: 0 0 0 1px rgba(196, 164, 78, 0.15), var(--shadow-lift);
}
.stack-step-featured::after {
  content: "THE MAIN EVENT";
  position: absolute;
  top: -0.7rem;
  right: 1.2rem;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 0.28rem 0.7rem;
  border-radius: 999px;
}

/* ---------- Podcast ---------- */
.podcast { background: var(--cream); }

.episodes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.episode {
  background: var(--cream-deep);
  border: 1px solid var(--line-on-cream);
  border-radius: var(--radius);
  padding: 1.8rem 1.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.episode:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}
.episode-num {
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  color: var(--gold);
}
.episode-title {
  font-size: 1.3rem;
  color: var(--ink);
}
.episode-desc {
  font-size: 0.93rem;
  color: var(--muted);
}
.episode-meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: 0.3rem;
}

@media (min-width: 820px) {
  .episodes { grid-template-columns: repeat(3, 1fr); }
}

.podcast-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

/* ---------- Community (olive dark) ---------- */
.community {
  background: var(--olive-deep);
  color: var(--cream);
  position: relative;
}
.community::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 460px at 90% 10%, rgba(196, 164, 78, 0.12), transparent 60%);
  pointer-events: none;
}
.community .container { position: relative; }

.community-head {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.community-intro {
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.82);
  max-width: 30rem;
}
@media (min-width: 900px) {
  .community-head { grid-template-columns: 1.3fr 0.9fr; align-items: end; }
}

.community-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 3rem;
}
.community-what,
.community-who {
  background: rgba(28, 33, 24, 0.35);
  border: 1px solid rgba(250, 247, 242, 0.14);
  border-radius: var(--radius);
  padding: 2rem;
}
.community-subtitle {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.1rem;
}
.community-list {
  display: grid;
  gap: 0.75rem;
}
.community-list li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-size: 0.97rem;
  color: rgba(250, 247, 242, 0.9);
}
.community-what .community-list li::before {
  content: "—";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.community-list-check li::before {
  content: "✓";
  color: var(--gold-light);
  font-weight: 700;
  flex-shrink: 0;
}
.community-list-x li {
  color: rgba(250, 247, 242, 0.66);
}
.community-list-x li::before {
  content: "✕";
  color: rgba(250, 247, 242, 0.45);
  font-weight: 700;
  flex-shrink: 0;
}
.community-who .community-subtitle { margin-top: 1.6rem; }
.community-who .community-subtitle:first-child { margin-top: 0; }

@media (min-width: 860px) {
  .community-grid { grid-template-columns: 1.1fr 0.9fr; align-items: start; }
}

.community-cta {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  align-items: flex-start;
  border-top: 1px solid rgba(250, 247, 242, 0.16);
  padding-top: 2.25rem;
}
.community-cta-text {
  font-size: 1.05rem;
  color: rgba(250, 247, 242, 0.85);
  max-width: 34rem;
}
.community-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}
@media (min-width: 860px) {
  .community-cta {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

/* ---------- FAQ ---------- */
.faq { background: var(--cream); }

.faq-list {
  display: grid;
  gap: 0.8rem;
}

.faq-item {
  background: var(--cream-deep);
  border: 1px solid var(--line-on-cream);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.faq-item[open] {
  border-color: rgba(196, 164, 78, 0.65);
  box-shadow: var(--shadow-card);
}

.faq-item summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  cursor: pointer;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--ink);
  list-style: none;
  min-height: 48px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 1.9rem;
  height: 1.9rem;
  border-radius: 50%;
  border: 1px solid var(--line-on-cream);
  background: var(--cream);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--ink);
  border-color: var(--gold);
}
.faq-item summary:hover { color: var(--olive-deep); }

.faq-answer {
  padding: 0 1.4rem 1.35rem;
}
.faq-answer p {
  font-size: 0.95rem;
  color: var(--muted);
  max-width: 44rem;
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: var(--cream-deep);
  border-top: 1px solid var(--line-on-cream);
  text-align: center;
}
.newsletter .section-title { max-width: 30rem; margin-inline: auto; }
.newsletter .section-sub { margin-inline: auto; }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  max-width: 30rem;
  margin: 0 auto;
}
.newsletter-form input[type="email"] {
  min-height: 52px;
  padding: 0.85rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--line-on-cream);
  background: var(--cream);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text-on-cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.newsletter-form input[type="email"]::placeholder { color: var(--muted); }
.newsletter-form input[type="email"]:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(196, 164, 78, 0.25);
}

.form-status {
  font-size: 0.9rem;
  font-weight: 500;
  min-height: 1.4em;
  color: var(--olive-deep);
}
.form-status.error { color: #9B3B2E; }

@media (min-width: 620px) {
  .newsletter-form { flex-direction: row; }
  .newsletter-form input[type="email"] { flex: 1; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding-block: 4rem 2.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}
@media (min-width: 820px) {
  .footer-grid { grid-template-columns: 1.4fr 0.7fr 1fr; }
}

.brand-footer { margin-bottom: 1rem; }

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--gold-light);
  margin-bottom: 0.7rem;
}
.footer-bio {
  font-size: 0.9rem;
  color: var(--muted-light);
  max-width: 22rem;
  line-height: 1.7;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}
.footer-heading {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.footer-col a {
  font-size: 0.92rem;
  color: rgba(250, 247, 242, 0.8);
  text-decoration: none;
  padding-block: 0.15rem;
  transition: color 0.15s ease;
  width: fit-content;
}
.footer-col a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid var(--line-on-dark);
  padding-top: 1.75rem;
  display: grid;
  gap: 0.6rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--muted-light);
}
.footer-disclaimer { max-width: 52rem; line-height: 1.6; }

/* ---------- Scroll reveal (progressive enhancement) ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.js .reveal.in-view {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .js .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  *, *::before, *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* ============================================================
   Rebuild 2026-08: Who it's for (audience cards, dark)
   ============================================================ */
.who {
  background: var(--ink);
  color: var(--cream);
  position: relative;
}
.who::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(700px 460px at 10% 0%, rgba(92, 107, 79, 0.2), transparent 60%);
  pointer-events: none;
}
.who .container { position: relative; }

.audience-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}
.audience-card {
  background: var(--ink-2);
  border: 1px solid var(--line-on-dark);
  border-radius: var(--radius);
  padding: 2.1rem 2.1rem 2.3rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.audience-card:hover {
  transform: translateY(-3px);
  border-color: rgba(196, 164, 78, 0.55);
  box-shadow: var(--shadow-lift);
}
.audience-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-light);
}
.audience-title {
  font-size: clamp(1.35rem, 2.4vw, 1.7rem);
  color: var(--cream);
  text-wrap: balance;
}
.audience-text {
  font-size: 0.97rem;
  color: var(--muted-light);
}
.audience-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 0.8rem;
}
.audience-list li {
  display: flex;
  gap: 0.7rem;
  align-items: baseline;
  font-size: 0.94rem;
  color: rgba(250, 247, 242, 0.88);
}
.audience-list li::before {
  content: "✓";
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
@media (min-width: 860px) {
  .audience-grid { grid-template-columns: 1fr 1fr; align-items: stretch; }
}

.who-not {
  font-size: 0.92rem;
  font-style: italic;
  color: var(--muted-light);
  max-width: 40rem;
  border-top: 1px solid var(--line-on-dark);
  padding-top: 1.6rem;
}

/* ============================================================
   Rebuild 2026-08: YouTube (real videos, cream)
   ============================================================ */
.youtube { background: var(--cream); }

.video-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin-bottom: 2.5rem;
}
.video-card {
  background: var(--cream-deep);
  border: 1px solid var(--line-on-cream);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.video-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: var(--gold);
}
.video-thumb {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--ink);
}
.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease, opacity 0.2s ease;
}
.video-card:hover .video-thumb img { transform: scale(1.05); }
.video-play {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 1rem;
  transition: background-color 0.2s ease;
  background: linear-gradient(180deg, rgba(28, 33, 24, 0.05), rgba(28, 33, 24, 0.45));
}
.video-play::before {
  content: "";
  display: grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
  transition: transform 0.2s ease, background-color 0.2s ease;
}
.video-play::after {
  content: "";
  grid-area: 1 / 1;
  justify-self: center;
  align-self: center;
  width: 0;
  height: 0;
  border-left: 0.85rem solid var(--ink);
  border-top: 0.5rem solid transparent;
  border-bottom: 0.5rem solid transparent;
  margin-left: 0.3rem;
}
.video-card:hover .video-play::before { transform: scale(1.12); background: var(--gold-light); }

.video-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  flex: 1;
}
.video-title {
  font-size: 1.08rem;
  color: var(--ink);
  line-height: 1.35;
}
.video-meta {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--olive);
  margin-top: auto;
}
.video-meta span {
  color: var(--gold);
  font-weight: 700;
}
@media (min-width: 640px) {
  .video-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1100px) {
  .video-grid { grid-template-columns: repeat(4, 1fr); }
}

.video-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.9rem;
  text-align: center;
}
.video-cta-note {
  font-size: 0.88rem;
  color: var(--muted);
}
