/* ============ RESET ============ */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { line-height: 1.55; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
img, svg { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
input { font: inherit; color: inherit; }

/* ============ TOKENS — bright, warm, expressive ============ */
:root {
  /* Surfaces */
  --cream: #FBF7EE;          /* primary warm background */
  --cream-2: #F4ECDB;        /* secondary warm */
  --ink: #1A1A2E;            /* near-black with violet warmth */
  --ink-soft: #2D2D44;
  --mute: #6B6B7E;

  /* Brand pop */
  --coral: #FF6B4A;          /* hero accent */
  --coral-deep: #E84B2A;
  --gold: #FFC83D;           /* warmth, joy */
  --gold-soft: #FFE599;
  --indigo: #4F3DFF;         /* follower / depth */
  --sage: #8FBF7F;           /* growth */
  --sky: #A7D8FF;
  --rose: #FFB5C5;

  /* Effects */
  --grad-sun: linear-gradient(135deg, #FFC83D 0%, #FF6B4A 100%);
  --grad-sky: linear-gradient(135deg, #4F3DFF 0%, #A7D8FF 100%);
  --grad-soft: linear-gradient(180deg, #FBF7EE 0%, #F4ECDB 100%);

  --shadow-sm: 0 2px 6px rgba(26,26,46,0.06);
  --shadow: 0 12px 36px -12px rgba(26,26,46,0.18);
  --shadow-lg: 0 30px 60px -20px rgba(26,26,46,0.25);
  --shadow-pop: 6px 6px 0 var(--ink);

  --radius: 22px;
  --radius-sm: 14px;
  --radius-pill: 999px;
  --maxw: 1240px;

  --font-serif: 'Fraunces', Georgia, 'Times New Roman', serif;
  --font-sans: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
}

/* ============ BASE ============ */
body {
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  font-size: 17px;
}

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: var(--cream); padding: .75rem 1rem;
  z-index: 100; border-radius: 0 0 12px 0; font-weight: 600;
}
.skip:focus { left: 0; }

.container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.container.narrow { max-width: 760px; }

/* ============ HEADER ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251,247,238,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: background .3s, border-color .3s, box-shadow .3s;
}
.site-header.scrolled {
  background: rgba(251,247,238,0.95);
  border-bottom-color: rgba(26,26,46,0.08);
  box-shadow: var(--shadow-sm);
}
.nav {
  max-width: var(--maxw); margin: 0 auto;
  padding: 1.1rem clamp(1.25rem, 4vw, 2.5rem);
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}
.brand {
  display: flex; align-items: center; gap: .65rem;
  font-family: var(--font-serif); font-size: 1.3rem;
  letter-spacing: -0.01em;
}
.brand-mark {
  display: grid; place-items: center;
  width: 38px; height: 38px;
  background: var(--grad-sun);
  color: var(--ink);
  border-radius: 11px;
  box-shadow: 3px 3px 0 var(--ink);
  transform: rotate(-3deg);
  transition: transform .2s;
}
.brand:hover .brand-mark { transform: rotate(3deg) scale(1.05); }
.brand-text strong { font-weight: 900; }
.brand-text { font-weight: 500; letter-spacing: .04em; }

.brand-heart {
  display: inline-block;
  font-size: .85em;
  margin-left: .45em;
  line-height: 1;
  filter: drop-shadow(0 0 6px rgba(255, 107, 74, 0.35));
  animation: heartbeat 2.4s ease-in-out infinite;
  transform-origin: center;
}
@keyframes heartbeat {
  0%, 40%, 100% { transform: scale(1); }
  10% { transform: scale(1.18); }
  20% { transform: scale(0.96); }
  30% { transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) {
  .brand-heart { animation: none; }
}

.nav-menu {
  display: flex; align-items: center; gap: 1.75rem;
  font-size: .95rem; font-weight: 500;
}
.nav-menu a {
  color: var(--ink-soft);
  transition: color .2s;
  position: relative;
}
.nav-menu a:hover { color: var(--coral); }
.nav-menu .cta {
  background: var(--ink);
  color: var(--cream);
  padding: .65rem 1.3rem;
  border-radius: var(--radius-pill);
  font-weight: 600;
  transition: transform .2s, box-shadow .2s;
}
.nav-menu .cta:hover {
  color: var(--cream);
  background: var(--coral);
  transform: translateY(-2px);
}

.nav-toggle { display: none; }

@media (max-width: 900px) {
  .nav-toggle {
    display: flex; flex-direction: column; gap: 5px;
    width: 40px; height: 40px; align-items: center; justify-content: center;
    background: var(--cream-2); border-radius: 12px;
  }
  .nav-toggle span {
    display: block; width: 20px; height: 2px; background: var(--ink);
    transition: transform .3s, opacity .3s;
    border-radius: 2px;
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .nav-menu {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--cream);
    border-top: 1px solid rgba(26,26,46,0.08);
    padding: 1rem;
    transform: translateY(-10px); opacity: 0;
    pointer-events: none;
    transition: transform .25s, opacity .25s;
    box-shadow: var(--shadow);
  }
  .nav-menu.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-menu li { width: 100%; }
  .nav-menu a { display: block; padding: 1rem 1.25rem; border-radius: 12px; font-size: 1.05rem; }
  .nav-menu a:hover { background: var(--cream-2); }
  .nav-menu .cta { text-align: center; margin-top: .5rem; }
}

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 92vh; min-height: 92svh;
  display: grid; place-items: center;
  padding: 5rem 1.5rem 6rem;
  overflow: hidden;
  text-align: center;
  background:
    radial-gradient(ellipse 60% 50% at 50% 0%, rgba(255,200,61,0.25), transparent 70%),
    radial-gradient(ellipse 40% 40% at 20% 100%, rgba(255,107,74,0.15), transparent 70%),
    radial-gradient(ellipse 40% 40% at 80% 100%, rgba(79,61,255,0.12), transparent 70%),
    var(--cream);
}
.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.orb { display: none; }

/* Floating sticker decorations */
.sticker {
  position: absolute; font-family: var(--font-serif); font-weight: 700;
  background: var(--gold); color: var(--ink);
  padding: .5rem 1rem; border-radius: var(--radius-pill);
  box-shadow: 3px 3px 0 var(--ink);
  font-size: .9rem; letter-spacing: .02em;
  border: 2px solid var(--ink);
  animation: float-sticker 6s ease-in-out infinite;
}
.sticker-1 { top: 18%; left: 8%; transform: rotate(-8deg); background: var(--gold); }
.sticker-2 { top: 24%; right: 10%; transform: rotate(6deg); background: var(--coral); color: var(--cream); animation-delay: -2s; }
.sticker-3 { bottom: 20%; left: 12%; transform: rotate(4deg); background: var(--sage); animation-delay: -4s; }
.sticker-4 { bottom: 16%; right: 8%; transform: rotate(-6deg); background: var(--sky); animation-delay: -3s; }
@keyframes float-sticker {
  0%, 100% { transform: translateY(0) rotate(var(--r, -6deg)); }
  50% { transform: translateY(-12px) rotate(var(--r, -6deg)); }
}
@media (max-width: 760px) { .sticker { display: none; } }

.hero-inner { position: relative; max-width: 1000px; z-index: 2; }

.eyebrow {
  display: inline-block;
  font-size: .78rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink);
  padding: .55rem 1.1rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--cream);
  margin-bottom: 2rem;
  font-weight: 700;
  box-shadow: 3px 3px 0 var(--ink);
}
.eyebrow .dot {
  display: inline-block; width: 8px; height: 8px;
  background: var(--coral); border-radius: 50%;
  margin-right: .5rem; vertical-align: middle;
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(0.85); }
}

.hero-title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.75rem, 8vw, 6.5rem);
  line-height: 1.0;
  letter-spacing: -0.035em;
  margin-bottom: 2rem;
  color: var(--ink);
}
.strike {
  position: relative; color: var(--mute);
  font-style: italic; font-weight: 400;
}
.strike::after {
  content: ''; position: absolute; left: -4%; right: -4%;
  top: 52%; height: 6px;
  background: var(--coral);
  transform: rotate(-3deg);
  border-radius: 4px;
}
.grad {
  background: var(--grad-sun);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 800;
}
.grad-2 {
  background: var(--grad-sky);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 800;
}
.hero-sub {
  font-size: clamp(1.1rem, 2.2vw, 1.45rem);
  color: var(--ink-soft);
  margin-bottom: 2.5rem;
  line-height: 1.6;
  max-width: 680px;
  margin-left: auto; margin-right: auto;
}
.hero-sub strong { color: var(--ink); font-weight: 700; }

.hero-cta {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
  margin-bottom: 3.5rem;
}

.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: 1rem 1.75rem;
  border-radius: var(--radius-pill);
  font-weight: 600; font-size: 1rem;
  transition: transform .2s, box-shadow .2s, background .2s, color .2s;
  white-space: nowrap;
  border: 2px solid var(--ink);
}
.btn-primary {
  background: var(--coral);
  color: var(--cream);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-primary:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--coral-deep);
  color: var(--cream);
}
.btn-primary:active { transform: translate(2px, 2px); box-shadow: 0 0 0 var(--ink); }
.btn-ghost {
  background: var(--cream);
  color: var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
}
.btn-ghost:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--ink);
  background: var(--gold);
}
.btn-lg { padding: 1.15rem 2.2rem; font-size: 1.1rem; }

.hero-pills {
  display: flex; gap: .6rem; justify-content: center; flex-wrap: wrap;
  font-size: .88rem;
  color: var(--ink-soft);
  font-weight: 500;
}
.hero-pills li {
  padding: .5rem 1.1rem;
  background: var(--cream);
  border: 1.5px solid var(--ink);
  border-radius: var(--radius-pill);
  transition: background .2s, transform .2s;
}
.hero-pills li:hover { background: var(--gold-soft); transform: translateY(-2px); }

.scroll-cue {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid var(--ink);
  border-radius: 14px;
  display: grid; place-items: start center;
  padding-top: 8px;
  opacity: .7; transition: opacity .2s;
  background: var(--cream);
}
.scroll-cue:hover { opacity: 1; }
.scroll-cue span {
  width: 3px; height: 8px; background: var(--ink); border-radius: 2px;
  animation: scroll-dot 1.8s infinite;
}
@keyframes scroll-dot {
  0% { transform: translateY(0); opacity: 1; }
  60% { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ============ SECTION SHELL ============ */
section { padding: clamp(5rem, 12vw, 9rem) 0; position: relative; }

.section-head { margin-bottom: 4rem; max-width: 820px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.kicker {
  display: inline-block;
  font-size: .78rem; letter-spacing: .25em; text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1.25rem; font-weight: 700;
  background: rgba(255,107,74,0.1);
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
}
.section-head h2 {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.2rem, 5.5vw, 4rem);
  line-height: 1.05; letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--ink);
}
.section-head .muted { color: var(--mute); font-style: italic; font-weight: 400; }
.section-head .lead { color: var(--ink-soft); font-size: 1.15rem; max-width: 660px; line-height: 1.65; }
.section-head.center .lead { margin: 0 auto; }

/* ============ MISSION + GLOBE BAND ============ */
.mission {
  background: linear-gradient(180deg, var(--cream) 0%, #FFF5DC 50%, var(--cream) 100%);
  overflow: hidden;
}
.globe-band {
  display: flex; gap: 1.25rem;
  white-space: nowrap;
  margin-top: 1rem;
  padding: 1.5rem 0;
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 3vw, 2.2rem);
  font-weight: 600;
  font-style: italic;
  color: var(--ink);
  animation: slide-band 40s linear infinite;
  width: max-content;
}
.globe-band span {
  display: inline-flex; align-items: center;
  padding: .5rem 1.5rem;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  box-shadow: 4px 4px 0 var(--ink);
}
.globe-band span:nth-child(3n+1) { background: var(--gold-soft); }
.globe-band span:nth-child(3n+2) { background: #FFEAE3; }
.globe-band span:nth-child(3n+3) { background: #E8F1E5; }
.globe-band span:nth-child(5n) { background: #E8E5FF; }
@keyframes slide-band {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Screen-reader-only — keep H2 for SEO/a11y while image carries the visual */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============ CONTRASTS — interactive True/False cards ============ */
.contrasts { background: var(--cream); }
.lie-headline {
  max-width: 920px;
  margin: 1.5rem auto 2rem;
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 10px 10px 0 var(--ink);
  transform: rotate(-1deg);
  transition: transform .4s ease, box-shadow .3s ease;
  background: var(--cream);
}
.lie-headline:hover {
  transform: rotate(0deg) translate(-3px,-3px);
  box-shadow: 14px 14px 0 var(--coral);
}
.lie-headline img {
  width: 100%; height: auto; display: block;
}
.contrast-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.75rem; margin-bottom: 3rem;
}
.contrast {
  padding: 2.25rem 1.75rem 1.75rem;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 5px 5px 0 var(--ink);
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s, background .35s;
  display: flex; flex-direction: column;
  min-height: 340px;
}
.contrast:nth-child(2) { background: #FDEDD6; }
.contrast:nth-child(3) { background: #E8F1E5; }
.contrast:nth-child(4) { background: #E8E5FF; }
.contrast:nth-child(5) { background: #FDE5EC; }
.contrast:nth-child(6) { background: #E0F0FF; }
.contrast:hover {
  transform: translate(-3px,-3px);
  box-shadow: 8px 8px 0 var(--ink);
}

.quote-mark {
  font-family: var(--font-serif);
  font-size: 4.5rem; line-height: 0.55;
  color: var(--coral);
  font-weight: 700;
  font-style: italic;
  margin-bottom: -.25rem;
  opacity: .55;
}
.lie-text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  line-height: 1.3;
  color: var(--ink);
  font-weight: 500;
  margin-bottom: 1.5rem;
  position: relative;
  transition: color .4s ease, opacity .4s ease;
}
.lie-text::after {
  content: '';
  position: absolute;
  left: -4%; right: -4%; top: 52%;
  height: 4px;
  background: var(--coral);
  border-radius: 4px;
  transform-origin: left center;
  transform: rotate(-3deg) scaleX(0);
  transition: transform .55s cubic-bezier(.65,0,.35,1);
  pointer-events: none;
}
.contrast.revealed .lie-text {
  color: var(--mute);
  opacity: .55;
}
.contrast.revealed .lie-text::after {
  transform: rotate(-3deg) scaleX(1);
}

.tf-wrap {
  margin-top: auto;
  transition: opacity .3s, max-height .4s, margin .3s;
  max-height: 200px;
  overflow: hidden;
}
.tf-q {
  font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 700;
  color: var(--ink); opacity: .55;
  margin-bottom: .75rem;
}
.tf-buttons {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .65rem;
}
.tf-btn {
  font-family: var(--font-sans);
  padding: .9rem .5rem;
  border: 2px solid var(--ink);
  border-radius: var(--radius-pill);
  background: var(--cream);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: .92rem;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .15s, box-shadow .15s, background .15s, color .15s;
}
.tf-btn:hover {
  transform: translate(-2px,-2px);
  box-shadow: 5px 5px 0 var(--ink);
}
.tf-btn:active { transform: translate(1px,1px); box-shadow: 1px 1px 0 var(--ink); }
.tf-true:hover { background: var(--coral); color: var(--cream); }
.tf-false:hover { background: var(--sage); }
.contrast.revealed .tf-wrap {
  opacity: 0; max-height: 0; margin: 0; pointer-events: none;
}

.reveal-pane {
  display: grid; gap: .5rem;
  margin-top: -1rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .5s ease, opacity .35s ease .15s, margin .4s;
}
.contrast.revealed .reveal-pane {
  max-height: 320px;
  opacity: 1;
  margin-top: 0;
}
.reveal-label {
  font-size: .72rem; letter-spacing: .22em;
  text-transform: uppercase; font-weight: 700;
  color: var(--coral);
}
.reveal-truth {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  line-height: 1.25;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.015em;
}
.reveal-ref {
  display: inline-block;
  background: var(--ink); color: var(--gold);
  padding: .35rem .85rem;
  border-radius: var(--radius-pill);
  font-style: normal;
  font-size: .7rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 700;
  margin-top: .5rem;
  justify-self: start;
  width: max-content;
}

@keyframes shake-wrong {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}
.contrast.wrong { animation: shake-wrong .45s ease; }
.contrast.wrong .tf-true {
  background: var(--coral); color: var(--cream);
}

.score-line {
  text-align: center;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--mute);
  margin-bottom: 2.5rem;
  min-height: 1.6em;
  transition: color .3s;
}
.score-line.done {
  color: var(--coral);
  font-weight: 600;
}

.truth-banner {
  max-width: 900px; margin: 0 auto 4rem;
  padding: 2.5rem 2rem;
  background: var(--ink);
  color: var(--cream);
  border-radius: var(--radius);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--gold);
  text-align: center;
}
.banner-kicker {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: rgba(251,247,238,0.6);
  margin-bottom: .75rem;
}
.banner-kicker em {
  color: var(--coral); font-style: italic;
  text-decoration: line-through; text-decoration-thickness: 2px;
}
.banner-line {
  font-family: var(--font-serif);
  font-size: clamp(1.25rem, 2.6vw, 1.75rem);
  line-height: 1.35;
  color: var(--cream);
  font-weight: 500;
}
.banner-line strong {
  color: var(--gold);
  font-weight: 700;
}

/* ============ READ & WATCH ============ */
.read {
  background: linear-gradient(180deg, #FFEAE3 0%, #FFF5DC 100%);
}
.read-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}
.read-card {
  display: block;
  padding: 2.5rem;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 8px 8px 0 var(--ink);
  transition: transform .25s, box-shadow .25s;
  position: relative;
  overflow: hidden;
}
.read-card:hover {
  transform: translate(-4px,-4px) rotate(-.5deg);
  box-shadow: 12px 12px 0 var(--ink);
}
.read-card.matthew { background: var(--gold); }
.read-card.matthew:hover { box-shadow: 12px 12px 0 var(--coral); }
.read-card.tiny { background: var(--cream); }
.read-card.tiny:hover { box-shadow: 12px 12px 0 var(--indigo); }

.read-tag {
  display: inline-block;
  font-size: .72rem; letter-spacing: .22em; text-transform: uppercase;
  font-weight: 700;
  padding: .4rem .9rem;
  background: var(--ink); color: var(--cream);
  border-radius: var(--radius-pill);
  margin-bottom: 1.25rem;
}
.read-card.matthew .read-tag { background: var(--coral-deep); }
.read-card h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.read-card > p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.read-card.matthew > p { color: var(--ink); }
.read-modes {
  display: grid; gap: .5rem;
  margin-bottom: 1.5rem;
  padding: 1rem 1.25rem;
  background: rgba(26,26,46,0.06);
  border-radius: var(--radius-sm);
  border: 1.5px solid rgba(26,26,46,0.12);
}
.read-card.matthew .read-modes { background: rgba(26,26,46,0.08); }
.read-modes li {
  font-weight: 600;
  font-size: .98rem;
  color: var(--ink);
}
.read-cta {
  display: inline-flex;
  align-items: center;
  background: var(--ink);
  color: var(--cream);
  padding: .85rem 1.4rem;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: .98rem;
  letter-spacing: .02em;
  transition: background .2s, transform .2s;
}
.read-card:hover .read-cta {
  background: var(--coral);
}

.big-quote {
  text-align: center; max-width: 900px; margin: 5rem auto 0;
  padding: 3rem 1.5rem;
  font-family: var(--font-serif);
}
.big-quote p {
  font-size: clamp(1.75rem, 4.5vw, 3rem);
  line-height: 1.15; letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  color: var(--ink);
  font-weight: 500;
}
.big-quote p::before,
.big-quote p::after {
  content: '"';
  color: var(--coral);
  font-weight: 700;
  margin: 0 .15em;
}
.big-quote cite {
  font-style: normal; color: var(--mute);
  letter-spacing: .2em; text-transform: uppercase; font-size: .8rem;
  font-family: var(--font-sans);
  font-weight: 700;
}

/* ============ BOOK CALLOUT ============ */
.book {
  background: linear-gradient(135deg, #FFEAE3 0%, #FFF5DC 100%);
}
.book-card {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 3rem;
  padding: 3rem;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 10px 10px 0 var(--ink);
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
}
@media (max-width: 760px) {
  .book-card { grid-template-columns: 1fr; padding: 2rem; gap: 2rem; }
}
.book-body .kicker {
  background: var(--ink); color: var(--gold);
}
.book-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 1rem;
  color: var(--ink);
}
.book-sub {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--coral);
  margin-bottom: 1.25rem;
  line-height: 1.4;
  font-weight: 500;
}
.book-desc {
  color: var(--ink-soft);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.6;
}
.book-cover {
  display: grid; place-items: center;
  perspective: 800px;
}
.book-spine {
  width: 220px; height: 300px;
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-deep) 100%);
  border: 3px solid var(--ink);
  border-radius: 8px 14px 14px 8px;
  box-shadow:
    inset 14px 0 0 rgba(0,0,0,0.15),
    inset 18px 0 0 rgba(0,0,0,0.05),
    12px 12px 0 var(--ink);
  position: relative;
  padding: 2rem 1.5rem 2rem 3rem;
  display: flex; flex-direction: column; justify-content: space-between;
  transform: rotate(-4deg);
  transition: transform .4s ease;
  color: var(--cream);
}
.book-card:hover .book-spine { transform: rotate(0deg) scale(1.03); }
.book-title-stack {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  text-align: left;
  font-style: italic;
}
.book-mark {
  font-size: 2rem;
  align-self: flex-end;
  color: var(--gold);
}

/* ============ VALUES — sage section ============ */
.values { background: linear-gradient(180deg, var(--cream) 0%, #F0F5EC 100%); }
.values-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}
.value-card {
  padding: 2.5rem 1.75rem;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  text-align: center;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 5px 5px 0 var(--ink);
}
.value-card:nth-child(1) { background: #FFF8E5; }
.value-card:nth-child(2) { background: #FFEAE3; }
.value-card:nth-child(3) { background: #E8F1E5; }
.value-card:nth-child(4) { background: #E8E5FF; }
.value-card:hover {
  transform: translate(-3px, -3px) rotate(-1deg);
  box-shadow: 8px 8px 0 var(--ink);
}
.value-icon {
  font-family: var(--font-serif); font-size: 2.5rem;
  width: 72px; height: 72px;
  margin: 0 auto 1.5rem;
  display: grid; place-items: center;
  background: var(--ink);
  color: var(--cream);
  border-radius: 18px;
  font-weight: 700;
  transform: rotate(-3deg);
}
.value-card:hover .value-icon { transform: rotate(3deg); transition: transform .3s; }
.value-card h3 {
  font-family: var(--font-serif); font-size: 1.5rem;
  margin-bottom: .9rem; font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.value-card p { color: var(--ink-soft); font-size: .98rem; line-height: 1.55; }

/* ============ FANS — bold indigo block ============ */
.fans {
  background: var(--indigo);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.fans::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 30% at 80% 20%, rgba(255,200,61,0.15), transparent),
    radial-gradient(ellipse 40% 40% at 10% 80%, rgba(255,107,74,0.15), transparent);
  pointer-events: none;
}
.fans .container { position: relative; }
.fans .section-head h2 { color: var(--cream); }
.fans .section-head .lead { color: rgba(251,247,238,0.85); }
.fans .kicker { background: rgba(255,200,61,0.2); color: var(--gold); }
.fans .grad { background: var(--grad-sun); -webkit-background-clip: text; background-clip: text; color: transparent; }
.fans .grad-2 { background: linear-gradient(135deg, #A7D8FF, #FFFFFF); -webkit-background-clip: text; background-clip: text; color: transparent; }

.vs {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2rem; align-items: stretch;
  margin-top: 2rem;
}
.vs-col {
  padding: 2.5rem;
  border-radius: var(--radius);
  background: rgba(251,247,238,0.06);
  border: 2px solid rgba(251,247,238,0.2);
  backdrop-filter: blur(10px);
}
.vs-col.vs-follower {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--ink);
  box-shadow: 6px 6px 0 var(--gold);
  transform: rotate(1deg);
}
.vs-col h3 {
  font-family: var(--font-serif); font-size: 2.25rem;
  margin-bottom: 1.5rem; font-weight: 700;
  letter-spacing: -0.02em;
}
.vs-fan h3 { color: rgba(251,247,238,0.6); text-decoration: line-through; text-decoration-thickness: 3px; }
.vs-follower h3 { color: var(--coral); }
.vs-col ul { display: grid; gap: 1rem; }
.vs-col li {
  padding-left: 1.75rem; position: relative;
  font-size: 1.05rem;
  line-height: 1.5;
}
.vs-fan li { color: rgba(251,247,238,0.65); }
.vs-fan li::before {
  content: '×'; position: absolute; left: 0; color: var(--rose); font-weight: 900;
  font-size: 1.4rem; line-height: 1;
}
.vs-follower li { color: var(--ink); font-weight: 500; }
.vs-follower li::before {
  content: '✓'; position: absolute; left: 0; color: var(--sage); font-weight: 900;
  font-size: 1.2rem; line-height: 1.3;
}
.vs-divider {
  align-self: center;
  font-family: var(--font-serif);
  font-size: 1.4rem; font-weight: 900; font-style: italic;
  color: var(--ink);
  background: var(--gold);
  border: 2px solid var(--cream);
  width: 72px; height: 72px;
  border-radius: 50%;
  display: grid; place-items: center;
  box-shadow: 0 0 0 3px var(--ink);
}
@media (max-width: 760px) {
  .vs { grid-template-columns: 1fr; }
  .vs-divider { justify-self: center; margin: -.5rem 0; }
  .vs-col.vs-follower { transform: none; }
}

/* ============ DO — warm cream w/ colored cards ============ */
.do { background: var(--cream); }
.do-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
}
.do-card {
  padding: 2.25rem;
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  position: relative; overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  box-shadow: 5px 5px 0 var(--ink);
}
.do-card:nth-child(6n+1) { background: #FFF8E5; }
.do-card:nth-child(6n+2) { background: #FFEAE3; }
.do-card:nth-child(6n+3) { background: #E8F1E5; }
.do-card:nth-child(6n+4) { background: #E8E5FF; }
.do-card:nth-child(6n+5) { background: #FDE5EC; }
.do-card:nth-child(6n+6) { background: #E0F0FF; }
.do-card:hover {
  transform: translate(-3px, -3px);
  box-shadow: 8px 8px 0 var(--ink);
}
.do-num {
  font-family: var(--font-serif); font-style: italic;
  font-size: 3.5rem; font-weight: 600;
  color: var(--ink);
  opacity: .15;
  position: absolute; top: 1.2rem; right: 1.75rem;
  line-height: 1;
}
.do-card h3 {
  font-family: var(--font-serif); font-size: 1.65rem;
  margin-bottom: .85rem; font-weight: 700;
  position: relative;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.do-card p { color: var(--ink-soft); margin-bottom: 1.25rem; line-height: 1.55; }
.do-card cite {
  font-style: normal;
  display: inline-block;
  background: var(--ink); color: var(--cream);
  padding: .35rem .8rem;
  border-radius: var(--radius-pill);
  font-size: .72rem; letter-spacing: .15em; text-transform: uppercase;
  font-weight: 700;
}

/* ============ TEAM — gold/sun section ============ */
.team {
  background: linear-gradient(180deg, var(--cream) 0%, #FFF5DC 100%);
}
.team-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.75rem;
}
.team-card {
  padding: 2.5rem 1.75rem;
  background: var(--cream);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  text-align: center;
  transition: transform .3s, box-shadow .3s;
  box-shadow: 5px 5px 0 var(--ink);
  position: relative;
}
.team-card:hover {
  transform: translate(-3px, -3px) rotate(-1deg);
  box-shadow: 8px 8px 0 var(--ink);
}
.team-card.featured {
  background: var(--gold);
  box-shadow: 6px 6px 0 var(--coral);
  transform: rotate(2deg);
}
.team-card.featured:hover { transform: translate(-3px, -3px) rotate(2deg); }
.team-card.you {
  background: var(--cream);
  border-style: dashed;
  border-width: 3px;
}
.team-photo {
  width: 140px; height: 140px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--cream-2);
  padding: 0;
  position: relative;
  border: 3px solid var(--ink);
  box-shadow: 4px 4px 0 var(--ink);
  transition: transform .3s;
}
.team-card:hover .team-photo { transform: rotate(-6deg) scale(1.05); }
.team-photo img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  background: var(--cream);
  transition: transform .4s ease;
}
.team-card.featured .team-photo {
  width: 160px; height: 160px;
  box-shadow: 5px 5px 0 var(--coral);
}
.team-role {
  display: inline-block;
  font-size: .7rem; letter-spacing: .2em; text-transform: uppercase;
  color: var(--cream); margin-bottom: 1rem; font-weight: 700;
  background: var(--ink);
  padding: .35rem .85rem;
  border-radius: var(--radius-pill);
}
.team-card h3 {
  font-family: var(--font-serif); font-size: 1.85rem;
  font-weight: 700; margin-bottom: .85rem;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.team-card p { color: var(--ink-soft); font-size: .98rem; line-height: 1.55; }
.team-cta {
  display: inline-block; margin-top: 1.25rem;
  color: var(--coral); font-weight: 700; font-size: .98rem;
  border-bottom: 2px solid var(--coral);
  padding-bottom: 2px;
  transition: color .2s, border-color .2s;
}
.team-cta:hover { color: var(--coral-deep); border-color: var(--coral-deep); }

/* ============ HISTORY — ink section, reversed colors ============ */
.history {
  background: var(--ink);
  color: var(--cream);
}
.history .section-head h2 { color: var(--cream); }
.history .section-head .lead { color: rgba(251,247,238,0.75); }
.history .kicker { background: rgba(255,200,61,0.15); color: var(--gold); }

.timeline {
  display: grid; gap: 1.75rem;
  position: relative;
}
.t-item {
  display: grid; grid-template-columns: auto 1fr; gap: 2rem;
  padding: 2.25rem;
  background: rgba(251,247,238,0.05);
  border: 2px solid rgba(251,247,238,0.15);
  border-radius: var(--radius);
  align-items: start;
  transition: background .25s, transform .25s, border-color .25s;
}
.t-item:hover {
  background: rgba(251,247,238,0.08);
  border-color: var(--gold);
  transform: translateX(8px);
}
.t-marker {
  font-family: var(--font-serif); font-style: italic;
  font-size: 2.25rem; font-weight: 700;
  width: 68px; height: 68px;
  display: grid; place-items: center;
  background: var(--gold);
  color: var(--ink);
  border-radius: 18px;
  border: 2px solid var(--cream);
  box-shadow: 4px 4px 0 var(--coral);
}
.t-body h3 {
  font-family: var(--font-serif); font-size: 1.6rem;
  font-weight: 700; margin-bottom: 1.25rem;
  display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap;
  color: var(--cream);
  letter-spacing: -0.01em;
}
.ref {
  font-family: var(--font-sans); font-size: .72rem;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--ink); font-weight: 700;
  padding: .35rem .85rem;
  background: var(--gold);
  border-radius: var(--radius-pill);
}
.t-body p {
  color: rgba(251,247,238,0.85);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.65;
}
@media (max-width: 600px) {
  .t-item { grid-template-columns: 1fr; gap: 1.25rem; }
}

/* ============ FAQ ============ */
.faq {
  background: var(--cream);
}
.faq-list {
  display: grid; gap: 1rem;
  max-width: 880px; margin: 0 auto;
}
.faq-item {
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--radius);
  box-shadow: 4px 4px 0 var(--ink);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.faq-item:hover { transform: translate(-2px, -2px); box-shadow: 6px 6px 0 var(--ink); }
.faq-item[open] { background: var(--cream); box-shadow: 6px 6px 0 var(--coral); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.4rem 1.75rem;
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--ink);
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem;
  letter-spacing: -0.01em;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-plus {
  font-size: 1.8rem; font-weight: 400;
  width: 36px; height: 36px;
  display: grid; place-items: center;
  background: var(--ink); color: var(--cream);
  border-radius: 50%;
  transition: transform .3s;
  flex-shrink: 0;
}
.faq-item[open] .faq-plus { transform: rotate(45deg); background: var(--coral); }
.faq-body {
  padding: 0 1.75rem 1.6rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
  line-height: 1.65;
}
.faq-body a {
  color: var(--coral); font-weight: 600;
  border-bottom: 2px solid var(--coral);
}
.faq-body a:hover { color: var(--coral-deep); border-color: var(--coral-deep); }

/* ============ JOIN — bright coral CTA ============ */
.join {
  background:
    radial-gradient(ellipse 60% 50% at 50% 50%, rgba(255,200,61,0.3), transparent 70%),
    var(--cream);
  position: relative;
  overflow: hidden;
}
.join::before, .join::after {
  content: ''; position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  opacity: .4;
  filter: blur(40px);
}
.join::before { background: var(--coral); top: 10%; left: 5%; }
.join::after { background: var(--indigo); bottom: 10%; right: 5%; }

.join .container { position: relative; z-index: 2; }
.join-form {
  display: grid; gap: 1.25rem;
  padding: 2.75rem;
  background: var(--cream);
  border: 3px solid var(--ink);
  border-radius: var(--radius);
  margin-bottom: 2.5rem;
  box-shadow: 8px 8px 0 var(--ink);
}
.field { display: grid; gap: .5rem; }
.field label {
  font-size: .8rem; letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink); font-weight: 700;
}
.field input {
  background: var(--cream-2);
  border: 2px solid var(--ink);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  color: var(--ink);
  transition: background .2s, box-shadow .2s;
  outline: none;
  font-size: 1.05rem;
}
.field input:focus {
  background: var(--cream);
  box-shadow: 4px 4px 0 var(--coral);
}
.join-form .btn { justify-self: stretch; justify-content: center; margin-top: .5rem; }
.form-note {
  font-size: .95rem;
  color: var(--sage);
  min-height: 1.4em;
  font-weight: 600;
}
.form-note.error { color: var(--coral-deep); }

.join-alt { text-align: center; color: var(--ink-soft); }
.join-alt p { margin-bottom: 1rem; font-size: .98rem; font-weight: 500; }
.alt-contacts {
  display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap;
}
.alt-contacts a {
  padding: .75rem 1.3rem;
  border-radius: var(--radius-pill);
  background: var(--cream);
  border: 2px solid var(--ink);
  font-weight: 600;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 3px 3px 0 var(--ink);
}
.alt-contacts a:hover {
  transform: translate(-2px, -2px);
  box-shadow: 5px 5px 0 var(--ink);
  background: var(--gold);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--ink);
  color: var(--cream);
  padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
}
.brand-footer { margin-bottom: 1.25rem; color: var(--cream); }
.brand-footer .brand-mark { box-shadow: 3px 3px 0 var(--cream); }
.foot-tag { color: rgba(251,247,238,0.7); font-size: .98rem; max-width: 340px; line-height: 1.55; }
.site-footer h4 {
  font-family: var(--font-serif); font-size: 1.15rem;
  margin-bottom: 1.25rem; font-weight: 700;
  color: var(--gold);
  letter-spacing: -0.01em;
}
.site-footer ul { display: grid; gap: .7rem; }
.site-footer a { color: rgba(251,247,238,0.75); transition: color .2s; font-size: .95rem; }
.site-footer a:hover { color: var(--gold); }
.verse {
  font-family: var(--font-serif); font-style: italic;
  color: rgba(251,247,238,0.85); margin-bottom: .5rem; font-size: 1.05rem;
}
.verse-ref { font-size: .78rem; color: var(--gold); letter-spacing: .2em; text-transform: uppercase; font-weight: 700; }
.footer-bottom {
  display: flex; justify-content: space-between; gap: 1rem;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(251,247,238,0.15);
  font-size: .88rem; color: rgba(251,247,238,0.6);
  flex-wrap: wrap;
}

/* ============ REVEAL ANIMATIONS ============ */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.in { opacity: 1; transform: none; }

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

/* ============ SELECTION ============ */
::selection { background: var(--coral); color: var(--cream); }
