/* ============================================
   THE GOSPEL WRECKING CREW
   Shared stylesheet for all pages
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@600;700&family=Montserrat:wght@400;500;700;800&display=swap');

:root {
  --color-red: #E40A0C;
  --color-red-deep: #5D1211;
  --color-black: #000000;
  --color-off-white: #F9F9F9;
  --color-gray-warm: #E9D2CF;
  --bg-primary: #000000;
  --bg-elevated: #0A0A0A;
  --bg-card: #060606;
  --text-primary: #F9F9F9;
  --text-muted: #8A8A8A;
  --text-accent: #E40A0C;
  --border-subtle: #1F1F1F;
  --border-medium: #2A2A2A;

  --font-display: 'Bebas Neue', sans-serif;
  --font-headline: 'Oswald', sans-serif;
  --font-emphasis: 'Montserrat', sans-serif;
  --font-body: 'Montserrat', sans-serif;
}

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

body {
  background: var(--bg-primary);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  font-size: 17px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='3' seed='2'/%3E%3CfeColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 1 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 200px 200px;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 32px;
}

.container-narrow {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 32px;
}

/* ============ HEADER ============ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  transition: background 0.4s ease, border-color 0.4s ease;
  background: transparent;
  border-bottom: 1px solid transparent;
}

.header.scrolled,
.header.solid {
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--border-subtle);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 32px;
  max-width: 1320px;
  margin: 0 auto;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--text-primary);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  width: 28px;
  height: 28px;
  background: var(--color-red);
  display: inline-block;
  transform: rotate(45deg);
  position: relative;
}

.logo-mark::after {
  content: '';
  position: absolute;
  inset: 5px;
  background: var(--color-black);
}

.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-emphasis);
  font-weight: 500;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color 0.2s ease;
  position: relative;
}

.nav a:hover { color: var(--color-red); }

.nav a.active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: var(--color-red);
}

.nav-cta {
  background: var(--color-red);
  color: var(--text-primary) !important;
  padding: 12px 22px;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  transition: background 0.2s ease;
}

.nav-cta:hover {
  background: var(--color-red-deep);
  color: var(--text-primary) !important;
}

.nav-cta.active::after { display: none; }

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--bg-primary);
  z-index: 99;
  padding: 100px 32px 32px;
  display: none;
  flex-direction: column;
  gap: 24px;
}

.mobile-menu.open { display: flex; }

.mobile-menu a {
  color: var(--text-primary);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 2.5rem;
  letter-spacing: 0.02em;
}

.mobile-menu a:hover { color: var(--color-red); }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-emphasis);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
}

.btn-primary {
  background: var(--color-red);
  color: var(--text-primary);
  border-color: var(--color-red);
}

.btn-primary:hover {
  background: var(--color-red-deep);
  border-color: var(--color-red-deep);
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  border-color: var(--text-primary);
}

.btn-secondary:hover {
  background: var(--text-primary);
  color: var(--bg-primary);
}

.btn-arrow {
  display: inline-block;
  transition: transform 0.2s ease;
}

.btn:hover .btn-arrow { transform: translateX(4px); }

.button-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ SECTION BASE ============ */
.section {
  padding: 140px 0;
  position: relative;
}

.section-tight { padding: 100px 0; }

.section-eyebrow {
  font-family: var(--font-emphasis);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.section-eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--color-red);
}

.section-headline {
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 0.95;
  letter-spacing: 0.005em;
  margin-bottom: 32px;
  max-width: 900px;
}

.section-headline .red { color: var(--color-red); }

.section-lead {
  font-size: 1.25rem;
  line-height: 1.6;
  max-width: 720px;
  color: var(--text-primary);
  margin-bottom: 60px;
}

.section-lead.muted-second p + p {
  margin-top: 24px;
  color: var(--text-muted);
  font-size: 1.1rem;
}

.bg-elevated {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

/* ============ HERO (HOMEPAGE) ============ */
.hero {
  min-height: 100vh;
  padding: 160px 0 100px;
  position: relative;
  display: flex;
  align-items: center;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(circle at 70% 50%, rgba(228, 10, 12, 0.08) 0%, transparent 60%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: var(--font-emphasis);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--color-red);
}

.hero-title {
  font-family: var(--font-display);
  line-height: 0.88;
  letter-spacing: 0.005em;
  margin-bottom: 36px;
}

.hero-title .word-the {
  display: block;
  font-size: 2.5rem;
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--text-primary);
  margin-bottom: 8px;
  text-transform: uppercase;
}

.hero-title .word-gospel {
  display: block;
  font-size: 7.5rem;
  color: var(--text-primary);
  margin-bottom: 4px;
}

.hero-title .word-wrecking {
  display: block;
  font-size: 9rem;
  color: var(--color-red);
  line-height: 0.86;
}

.hero-tagline {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 28px;
  color: var(--text-primary);
  border-left: 3px solid var(--color-red);
  padding-left: 20px;
}

.hero-lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--text-primary);
  max-width: 520px;
  margin-bottom: 44px;
}

.hero-book {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-book img {
  width: 100%;
  max-width: 400px;
  transform: rotate(-3deg);
  box-shadow:
    0 30px 80px rgba(228, 10, 12, 0.25),
    0 60px 120px rgba(0, 0, 0, 0.5),
    0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.6s ease;
}

.hero-book:hover img {
  transform: rotate(-2deg) scale(1.02);
}

.scroll-cue {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
}

.scroll-cue span {
  font-family: var(--font-emphasis);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: '';
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--color-red), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleY(1); opacity: 1; }
  50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* ============ PAGE HEROES (Non-homepage) ============ */
.page-hero {
  padding: 200px 0 100px;
  position: relative;
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.page-hero-title {
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 0.92;
  letter-spacing: 0.005em;
  margin-bottom: 32px;
}

.page-hero-title .red { color: var(--color-red); }

.page-hero-sub {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.page-hero-tagline {
  font-size: 1.15rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 40px;
  border-left: 3px solid var(--color-red);
  padding-left: 20px;
}

/* Full bleed hero (About Joe) */
.fullbleed-hero {
  position: relative;
  height: 90vh;
  min-height: 700px;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}

.fullbleed-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(60%) contrast(1.1);
  z-index: 1;
}

.fullbleed-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 40%, rgba(0,0,0,0.95) 100%);
  z-index: 2;
}

.fullbleed-hero .container {
  position: relative;
  z-index: 3;
  width: 100%;
}

.fullbleed-hero h1 {
  font-family: var(--font-display);
  font-size: 6.5rem;
  line-height: 0.92;
  letter-spacing: 0.005em;
  max-width: 1000px;
  color: var(--text-primary);
}

.fullbleed-hero h1 .red { color: var(--color-red); }

.fullbleed-hero .eyebrow {
  font-family: var(--font-emphasis);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.fullbleed-hero .eyebrow::before {
  content: '';
  width: 40px;
  height: 2px;
  background: var(--color-red);
}

/* ============ CARDS GRID ============ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.cards-grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.for-you-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  padding: 40px 32px 36px;
  position: relative;
  transition: all 0.3s ease;
  min-height: 240px;
}

.for-you-card::before {
  content: '';
  position: absolute;
  top: 24px;
  left: 24px;
  width: 8px;
  height: 8px;
  background: var(--color-red);
  border-radius: 50%;
}

.for-you-card:hover {
  border-color: var(--color-red);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(228, 10, 12, 0.08);
}

.for-you-card h3 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 24px 0 16px;
  color: var(--text-primary);
}

.for-you-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============ PRINCIPLES LIST ============ */
.principles {
  border-top: 1px solid var(--border-medium);
}

.principle {
  display: grid;
  grid-template-columns: 80px 280px 1fr;
  gap: 40px;
  align-items: start;
  padding: 40px 0;
  border-bottom: 1px solid var(--border-medium);
  transition: padding 0.3s ease;
}

.principle:hover { padding-left: 16px; }

.principle-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-red);
  line-height: 1;
}

.principle-label {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-primary);
  line-height: 1.3;
}

.principle-body {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--text-muted);
}

/* ============ TIMELINE ============ */
.timeline {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 14px;
  top: 14px;
  bottom: 14px;
  width: 2px;
  background: var(--border-medium);
}

.timeline-item {
  position: relative;
  padding-left: 56px;
  padding-bottom: 32px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-item::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 6px;
  width: 14px;
  height: 14px;
  background: var(--color-red);
  border: 3px solid var(--bg-elevated);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--color-red);
}

.timeline-item h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.timeline-item p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ============ EXCERPTS ============ */
.excerpt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.excerpt-card {
  border: 1px solid var(--border-medium);
  padding: 40px;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  background: var(--bg-card);
}

.excerpt-card:hover {
  border-color: var(--color-red);
  transform: translateY(-4px);
}

.excerpt-card .tag {
  display: inline-block;
  font-family: var(--font-emphasis);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  padding: 6px 12px;
  border: 1px solid var(--color-red);
  margin-bottom: 24px;
}

.excerpt-card h3 {
  font-family: var(--font-display);
  font-size: 2.25rem;
  line-height: 1;
  margin-bottom: 20px;
  color: var(--text-primary);
}

.excerpt-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.excerpt-link {
  font-family: var(--font-emphasis);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.excerpt-link:hover {
  gap: 14px;
  color: var(--color-red);
}

/* ============ DISCOVERY LIST ============ */
.discovery-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid var(--border-medium);
}

.discovery-list li {
  padding: 32px 0 32px 36px;
  border-bottom: 1px solid var(--border-medium);
  font-size: 1.1rem;
  line-height: 1.5;
  color: var(--text-primary);
  position: relative;
  font-family: var(--font-headline);
  font-weight: 600;
}

.discovery-list li:nth-child(odd) {
  border-right: 1px solid var(--border-medium);
  padding-right: 40px;
}

.discovery-list li:nth-child(even) {
  padding-left: 60px;
}

.discovery-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 42px;
  width: 20px;
  height: 2px;
  background: var(--color-red);
}

.discovery-list li:nth-child(even)::before { left: 24px; }

/* ============ ACCORDION (QUESTIONS) ============ */
.accordion {
  border-top: 1px solid var(--border-medium);
}

.accordion-item {
  border-bottom: 1px solid var(--border-medium);
}

.accordion-trigger {
  width: 100%;
  background: none;
  border: none;
  color: var(--text-primary);
  padding: 32px 0;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.4rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  transition: color 0.2s ease;
}

.accordion-trigger:hover { color: var(--color-red); }

.accordion-trigger .num {
  color: var(--color-red);
  font-family: var(--font-display);
  font-size: 1.6rem;
  min-width: 60px;
}

.accordion-trigger .text {
  flex: 1;
  line-height: 1.3;
}

.accordion-trigger .icon {
  width: 24px;
  height: 24px;
  position: relative;
  flex-shrink: 0;
}

.accordion-trigger .icon::before,
.accordion-trigger .icon::after {
  content: '';
  position: absolute;
  background: var(--color-red);
  transition: transform 0.3s ease;
}

.accordion-trigger .icon::before {
  width: 24px;
  height: 2px;
  top: 11px;
  left: 0;
}

.accordion-trigger .icon::after {
  width: 2px;
  height: 24px;
  left: 11px;
  top: 0;
}

.accordion-item.open .accordion-trigger .icon::after {
  transform: scaleY(0);
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.accordion-item.open .accordion-content {
  max-height: 500px;
}

.accordion-content-inner {
  padding: 0 0 32px 60px;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 720px;
}

.accordion-content-inner .chapter-ref {
  display: inline-block;
  margin-top: 16px;
  font-family: var(--font-emphasis);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
}

/* ============ CHAPTER LIST ============ */
.chapters {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.chapter-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  padding: 32px;
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 24px;
  align-items: start;
  transition: all 0.3s ease;
}

.chapter-card:hover {
  border-color: var(--color-red);
  transform: translateY(-2px);
}

.chapter-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--color-red);
  line-height: 0.9;
}

.chapter-content h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
  color: var(--text-primary);
}

.chapter-content p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.chapter-note {
  margin-top: 32px;
  font-size: 0.85rem;
  color: var(--text-muted);
  font-style: italic;
  text-align: center;
}

/* ============ FORMAT CARDS ============ */
.formats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.format-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  padding: 48px 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.format-card:hover {
  border-color: var(--color-red);
  transform: translateY(-4px);
}

.format-name {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.format-desc {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.format-price {
  font-family: var(--font-emphasis);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-red);
  margin-bottom: 32px;
}

.format-card .btn {
  width: 100%;
  justify-content: center;
}

.audiobook-notice {
  margin-top: 40px;
  text-align: center;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.audiobook-notice a {
  color: var(--color-red);
  text-decoration: none;
  font-weight: 700;
}

.audiobook-notice a:hover { text-decoration: underline; }

/* ============ ARTICLE PROSE ============ */
.prose {
  max-width: 720px;
  margin: 0 auto;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 3rem;
  line-height: 0.95;
  margin: 80px 0 32px;
  color: var(--text-primary);
}

.prose h2:first-child { margin-top: 0; }

.prose h2 .red { color: var(--color-red); }

.prose p {
  font-size: 1.15rem;
  line-height: 1.75;
  margin-bottom: 24px;
  color: var(--text-primary);
}

.prose p.lead {
  font-size: 1.35rem;
  line-height: 1.6;
  color: var(--text-primary);
  font-weight: 500;
}

.prose .pullquote {
  font-family: var(--font-display);
  font-size: 2.75rem;
  line-height: 1.05;
  color: var(--color-red);
  margin: 56px 0;
  padding: 0 0 0 24px;
  border-left: 4px solid var(--color-red);
}

.prose-eyebrow {
  font-family: var(--font-emphasis);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 16px;
  display: block;
}

/* ============ START HERE CARDS ============ */
.start-cards {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.start-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  padding: 40px 24px;
  text-align: left;
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  min-height: 280px;
}

.start-card:hover {
  background: var(--color-red);
  border-color: var(--color-red);
  transform: translateY(-6px);
}

.start-card-num {
  font-family: var(--font-display);
  font-size: 2.5rem;
  color: var(--color-red);
  line-height: 0.9;
  transition: color 0.3s ease;
}

.start-card:hover .start-card-num {
  color: var(--color-black);
}

.start-card h3 {
  font-family: var(--font-display);
  font-size: 2.2rem;
  line-height: 0.95;
  transition: color 0.3s ease;
}

.start-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.55;
  transition: color 0.3s ease;
  margin-top: auto;
}

.start-card:hover p,
.start-card:hover h3 {
  color: var(--color-black);
}

.start-card .arrow {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 1.5rem;
  color: var(--color-red);
  transition: all 0.3s ease;
}

.start-card:hover .arrow {
  color: var(--color-black);
  transform: translateX(4px);
}

/* Start Here entry sections */
.entry-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.entry-section:last-of-type { border-bottom: none; }

.entry-section-header {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 40px;
  margin-bottom: 56px;
  align-items: start;
}

.entry-section-num {
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--color-red);
  line-height: 0.85;
}

.entry-section-title {
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 0.95;
  color: var(--text-primary);
}

.entry-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-left: 240px;
}

.entry-content p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.entry-recommendations {
  border-left: 2px solid var(--color-red);
  padding-left: 32px;
}

.entry-recommendations h4 {
  font-family: var(--font-emphasis);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 20px;
}

.entry-recommendations ul {
  list-style: none;
  margin-bottom: 32px;
}

.entry-recommendations li {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.entry-recommendations li::before {
  content: '→';
  color: var(--color-red);
  margin-right: 12px;
}

.entry-question {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--border-medium);
}

.entry-question-label {
  font-family: var(--font-emphasis);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 12px;
  display: block;
}

.entry-question p {
  font-family: var(--font-display);
  font-size: 1.5rem;
  line-height: 1.2;
  color: var(--text-primary);
  margin: 0;
}

/* ============ MEDIA PAGE ============ */
.media-section {
  padding: 100px 0;
  border-bottom: 1px solid var(--border-subtle);
}

.media-section:last-of-type { border-bottom: none; }

.media-section-header {
  margin-bottom: 56px;
}

.media-section-title {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 0.95;
  color: var(--text-primary);
}

.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.media-card {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  padding: 32px;
  transition: all 0.3s ease;
}

.media-card:hover {
  border-color: var(--color-red);
}

.media-card .meta {
  font-family: var(--font-emphasis);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 16px;
}

.media-card h4 {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.2rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
  color: var(--text-primary);
  line-height: 1.2;
}

.media-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.55;
  margin-bottom: 24px;
}

.media-card .placeholder-link {
  font-family: var(--font-emphasis);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
}

.empty-state {
  background: var(--bg-card);
  border: 1px dashed var(--border-medium);
  padding: 64px 32px;
  text-align: center;
}

.empty-state h4 {
  font-family: var(--font-display);
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.empty-state p {
  color: var(--text-muted);
  max-width: 480px;
  margin: 0 auto 24px;
}

.press-kit-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.press-asset {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 32px;
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  text-decoration: none;
  color: var(--text-primary);
  transition: all 0.2s ease;
}

.press-asset:hover {
  border-color: var(--color-red);
  background: var(--bg-elevated);
}

.press-asset .name {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.press-asset .type {
  font-family: var(--font-emphasis);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-red);
}

.speaking-block {
  background: var(--bg-card);
  border: 1px solid var(--border-medium);
  padding: 64px;
  margin-top: 32px;
}

.speaking-block h4 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.speaking-block p {
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 640px;
}

/* ============ WHY JOE WROTE THIS (homepage) ============ */
.why-joe-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.why-joe-headline {
  font-family: var(--font-display);
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 60px;
  max-width: 540px;
}

.why-joe-portrait {
  position: relative;
}

.why-joe-portrait img {
  width: 100%;
  height: auto;
  filter: contrast(1.05) saturate(0.9);
}

.why-joe-portrait::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 50%, rgba(0, 0, 0, 0.6));
  pointer-events: none;
}

.portrait-caption {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  z-index: 2;
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.5rem;
  line-height: 1.2;
  text-transform: uppercase;
  color: var(--text-primary);
}

.portrait-caption .red { color: var(--color-red); }

/* ============ FINAL CTA ============ */
.final-cta {
  background: var(--color-red);
  color: var(--color-black);
  padding: 160px 0;
  position: relative;
  text-align: center;
}

.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0, transparent 20px, rgba(0,0,0,0.03) 20px, rgba(0,0,0,0.03) 21px);
  pointer-events: none;
}

.final-cta-headline {
  font-family: var(--font-display);
  font-size: 7rem;
  line-height: 0.9;
  color: var(--color-black);
  margin-bottom: 32px;
  letter-spacing: 0.005em;
}

.final-cta-sub {
  font-family: var(--font-headline);
  font-weight: 700;
  font-size: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--color-black);
  margin-bottom: 56px;
}

.final-cta .button-row {
  justify-content: center;
}

.final-cta .btn-primary {
  background: var(--color-black);
  color: var(--text-primary);
  border-color: var(--color-black);
}

.final-cta .btn-primary:hover {
  background: var(--text-primary);
  color: var(--color-black);
  border-color: var(--text-primary);
}

.final-cta .btn-secondary {
  color: var(--color-black);
  border-color: var(--color-black);
}

.final-cta .btn-secondary:hover {
  background: var(--color-black);
  color: var(--text-primary);
}

.final-cta-note {
  margin-top: 48px;
  font-family: var(--font-emphasis);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-black);
  opacity: 0.7;
}

/* ============ FOOTER ============ */
.footer {
  background: var(--bg-primary);
  border-top: 1px solid var(--border-subtle);
  padding: 100px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--border-subtle);
}

.footer-statement {
  font-family: var(--font-display);
  font-size: 2.5rem;
  line-height: 1.05;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer-statement .red { color: var(--color-red); }

.footer-tagline {
  font-size: 0.95rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-nav-title {
  font-family: var(--font-emphasis);
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-red);
  margin-bottom: 20px;
}

.footer-nav a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
}

.footer-nav a:hover { color: var(--color-red); }

.footer-newsletter input {
  width: 100%;
  padding: 16px 18px;
  background: var(--bg-elevated);
  border: 1px solid var(--border-medium);
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.footer-newsletter input:focus {
  outline: none;
  border-color: var(--color-red);
}

.footer-newsletter button {
  width: 100%;
  padding: 16px;
  background: var(--color-red);
  color: var(--text-primary);
  border: none;
  font-family: var(--font-emphasis);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s ease;
}

.footer-newsletter button:hover { background: var(--color-red-deep); }

.footer-newsletter p {
  margin-top: 12px;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 32px;
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.footer-bottom-links {
  display: flex;
  gap: 32px;
}

.footer-bottom-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-bottom-links a:hover { color: var(--color-red); }

/* ============ SCROLL REVEAL ============ */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero entrance animations */
.hero-eyebrow, .hero-title, .hero-tagline, .hero-lead, .hero-ctas {
  animation: fadeInUp 0.9s ease-out backwards;
}

.hero-eyebrow { animation-delay: 0.1s; }
.hero-title { animation-delay: 0.2s; }
.hero-tagline { animation-delay: 0.4s; }
.hero-lead { animation-delay: 0.55s; }
.hero-ctas { animation-delay: 0.7s; }
.hero-book { animation: fadeInBook 1.1s ease-out 0.4s backwards; }

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInBook {
  from { opacity: 0; transform: rotate(0deg) translateY(20px); }
  to { opacity: 1; transform: rotate(-3deg) translateY(0); }
}

.page-hero h1,
.page-hero .page-hero-sub,
.page-hero .page-hero-tagline,
.page-hero .button-row,
.page-hero .hero-book {
  animation: fadeInUp 0.9s ease-out backwards;
}

.page-hero .eyebrow { animation-delay: 0.1s; }
.page-hero h1 { animation-delay: 0.2s; }
.page-hero .page-hero-sub { animation-delay: 0.35s; }
.page-hero .page-hero-tagline { animation-delay: 0.45s; }
.page-hero .button-row { animation-delay: 0.55s; }

.fullbleed-hero h1,
.fullbleed-hero .eyebrow {
  animation: fadeInUp 0.9s ease-out backwards;
}

.fullbleed-hero .eyebrow { animation-delay: 0.2s; }
.fullbleed-hero h1 { animation-delay: 0.3s; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero-title .word-gospel { font-size: 5.5rem; }
  .hero-title .word-wrecking { font-size: 6.5rem; }
  .section-headline { font-size: 3.5rem; }
  .page-hero-title { font-size: 4.5rem; }
  .fullbleed-hero h1 { font-size: 4.5rem; }
  .final-cta-headline { font-size: 5rem; }
  .cards-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-grid { gap: 40px; }
  .start-cards { grid-template-columns: repeat(3, 1fr); }
  .chapters { grid-template-columns: 1fr; }
  .formats { grid-template-columns: 1fr; gap: 16px; }
  .media-grid { grid-template-columns: repeat(2, 1fr); }
  .why-joe-grid { gap: 48px; }
  .entry-content { margin-left: 0; }
  .entry-section-num { font-size: 4rem; }
  .entry-section-title { font-size: 2.8rem; }
  .entry-section-header { grid-template-columns: 120px 1fr; gap: 24px; }
}

@media (max-width: 768px) {
  .container { padding: 0 24px; }
  .nav { display: none; }
  .mobile-toggle { display: flex; }

  .hero { padding: 120px 0 80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 60px; }
  .hero-title .word-the { font-size: 1.6rem; }
  .hero-title .word-gospel { font-size: 3.8rem; }
  .hero-title .word-wrecking { font-size: 4.4rem; }
  .hero-tagline { font-size: 1.1rem; }
  .hero-book img { max-width: 280px; }

  .section { padding: 80px 0; }
  .section-headline { font-size: 2.5rem; }
  .page-hero { padding: 140px 0 60px; }
  .page-hero-title { font-size: 3rem; }
  .page-hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .fullbleed-hero { min-height: 540px; padding-bottom: 48px; }
  .fullbleed-hero h1 { font-size: 2.8rem; }

  .cards-grid { grid-template-columns: 1fr; }
  .cards-grid-2 { grid-template-columns: 1fr; }
  .excerpt-grid { grid-template-columns: 1fr; }
  .excerpt-card h3 { font-size: 1.8rem; }

  .principle { grid-template-columns: 60px 1fr; }
  .principle-body { grid-column: 1 / -1; padding-left: 60px; }

  .why-joe-grid { grid-template-columns: 1fr; gap: 60px; }
  .why-joe-headline { font-size: 2.5rem; }

  .discovery-list { grid-template-columns: 1fr; }
  .discovery-list li,
  .discovery-list li:nth-child(odd) {
    border-right: none;
    padding-left: 36px;
    padding-right: 0;
  }
  .discovery-list li:nth-child(even) { padding-left: 36px; }
  .discovery-list li:nth-child(even)::before { left: 0; }

  .start-cards { grid-template-columns: 1fr; }

  .accordion-trigger { font-size: 1.1rem; }
  .accordion-trigger .num { min-width: 40px; font-size: 1.2rem; }
  .accordion-content-inner { padding-left: 40px; }

  .formats { grid-template-columns: 1fr; }

  .entry-section-header { grid-template-columns: 1fr; gap: 8px; }
  .entry-section-num { font-size: 3rem; }
  .entry-section-title { font-size: 2.2rem; }
  .entry-content { grid-template-columns: 1fr; gap: 32px; }
  .entry-recommendations { border-left: none; border-top: 2px solid var(--color-red); padding-left: 0; padding-top: 24px; }

  .media-grid { grid-template-columns: 1fr; }
  .press-kit-grid { grid-template-columns: 1fr; }
  .speaking-block { padding: 40px 24px; }
  .speaking-block h4 { font-size: 1.8rem; }

  .final-cta { padding: 100px 0; }
  .final-cta-headline { font-size: 3.5rem; }
  .final-cta-sub { font-size: 1.1rem; }

  .footer-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-bottom { flex-direction: column; gap: 16px; }
  .footer-statement { font-size: 1.8rem; }

  .button-row { flex-direction: column; align-items: stretch; }
  .btn { justify-content: center; }

  .prose h2 { font-size: 2.2rem; }
  .prose p { font-size: 1.05rem; }
  .prose .pullquote { font-size: 1.8rem; padding-left: 16px; }
}
