/* ============================================================
   THE TRUTH, THE WHOLE TRUTH, NOTHING BUT THE TRUTH
   Landing Page Stylesheet
   
   Design: "Street Proclamation" — Urban Documentary Cinematic
   Fonts: Bebas Neue (headlines), Libre Baskerville (body), Barlow Condensed (CTAs/labels)
   Colors: Near-black (#0D0D0D), Gold (#D4A843), Ivory (#EDE6D6), Concrete (#3A3A3A)
   
   TABLE OF CONTENTS:
   1. CSS Variables & Reset
   2. Typography
   3. Layout & Container
   4. Buttons & Links
   5. Navigation
   6. Hero Section
   7. Why This Book Section
   8. Inside The Book (Timeline)
   9. Street Preaching Gallery
   10. Chapter Signup
   11. Merch Section
   12. Amazon CTA
   13. About Author
   14. Final CTA
   15. Footer
   16. Animations & Scroll Reveal
   17. Responsive / Mobile
   ============================================================ */


/* ============================================================
   1. CSS VARIABLES & RESET
   ============================================================ */
:root {
  /* Colors */
  --near-black: #0D0D0D;
  --dark-bg: #111111;
  --darker-bg: #0A0A0A;
  --card-bg: #1A1A1A;
  --card-bg-hover: #222222;
  --border-dark: #2A2A2A;
  --border-hover: rgba(212, 168, 67, 0.3);
  --gold: #D4A843;
  --gold-hover: #C49A3A;
  --gold-dim: rgba(212, 168, 67, 0.6);
  --ivory: #EDE6D6;
  --ivory-80: rgba(237, 230, 214, 0.8);
  --ivory-70: rgba(237, 230, 214, 0.7);
  --ivory-60: rgba(237, 230, 214, 0.6);
  --ivory-50: rgba(237, 230, 214, 0.5);
  --ivory-40: rgba(237, 230, 214, 0.4);
  --ivory-30: rgba(237, 230, 214, 0.3);
  --ivory-20: rgba(237, 230, 214, 0.2);
  --red-accent: #9B2335;

  /* Typography */
  --font-display: 'Bebas Neue', sans-serif;
  --font-body: 'Libre Baskerville', Georgia, serif;
  --font-condensed: 'Barlow Condensed', sans-serif;

  /* Spacing */
  --section-py: 6rem;
  --section-py-lg: 8rem;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background-color: var(--near-black);
  color: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}


/* ============================================================
   2. TYPOGRAPHY HELPERS
   ============================================================ */
.text-gold { color: var(--gold); }
.bold { font-weight: 700; }

.body-text {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ivory-80);
  margin-bottom: 1.25rem;
}

.italic-quote {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-style: italic;
  color: var(--ivory-60);
  line-height: 1.7;
}

.italic-quote-sm {
  font-family: var(--font-body);
  font-size: 1rem;
  font-style: italic;
  color: var(--ivory-50);
  margin-bottom: 2rem;
}


/* ============================================================
   3. LAYOUT & CONTAINER
   ============================================================ */
.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  padding-right: 1rem;
}

@media (min-width: 640px) {
  .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}

@media (min-width: 1024px) {
  .container { padding-left: 2rem; padding-right: 2rem; }
}

.text-center { text-align: center; }

.section-dark {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.section-darker {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
  background-color: #0A0A0A;
}

.section-with-bg {
  position: relative;
  padding: var(--section-py) 0;
  overflow: hidden;
}

.section-content {
  position: relative;
  z-index: 10;
}

.section-bg-wrapper {
  position: absolute;
  inset: 0;
}

.section-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3;
}

.section-bg-img.opacity-20 { opacity: 0.2; }
.section-bg-img.opacity-25 { opacity: 0.25; }

.section-bg-overlay {
  position: absolute;
  inset: 0;
  background-color: rgba(13, 13, 13, 0.85);
}

.section-bg-overlay-light {
  position: absolute;
  inset: 0;
  background-color: rgba(13, 13, 13, 0.75);
}

.section-bg-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13, 13, 13, 0.90), rgba(13, 13, 13, 0.85), rgba(13, 13, 13, 1));
}

@media (min-width: 1024px) {
  .section-dark,
  .section-darker,
  .section-with-bg {
    padding: var(--section-py-lg) 0;
  }
}


/* ============================================================
   4. BUTTONS & LINKS
   ============================================================ */
.btn-gold {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background-color: var(--gold);
  color: var(--near-black);
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background-color: var(--gold-hover);
  box-shadow: 0 0 30px rgba(212, 168, 67, 0.3);
}

.btn-gold.large {
  font-size: 1.125rem;
  padding: 1.25rem 2.5rem;
}

.btn-gold.full-width { width: 100%; text-align: center; }

.btn-gold-outline {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 2px solid var(--gold);
  color: var(--gold);
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.btn-gold-outline:hover {
  background-color: var(--gold);
  color: var(--near-black);
}

.btn-gold-outline-sm {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 0.625rem 1.25rem;
  transition: all 0.3s ease;
}

.btn-gold-outline-sm:hover {
  background-color: var(--gold);
  color: var(--near-black);
}

.btn-dim-outline {
  display: inline-block;
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border: 1px solid var(--ivory-20);
  color: var(--ivory-60);
  padding: 1rem 2rem;
  transition: all 0.3s ease;
}

.btn-dim-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
}

.btn-text-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ivory-50);
  padding: 1rem 1.5rem;
  transition: color 0.3s ease;
}

.btn-text-link:hover { color: var(--gold); }


/* ============================================================
   5. NAVIGATION
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background-color: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.1em;
  color: var(--gold);
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ivory-70);
  transition: color 0.3s ease;
}

.nav-link:hover { color: var(--gold); }

.nav-cta-btn {
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background-color: var(--gold);
  color: var(--near-black);
  padding: 0.5rem 1.25rem;
  transition: background-color 0.3s ease;
}

.nav-cta-btn:hover { background-color: var(--gold-hover); }

/* Mobile menu button */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0.5rem;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--gold);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.mobile-menu-btn.active .line1 {
  transform: rotate(45deg) translate(5px, 6px);
}

.mobile-menu-btn.active .line2 {
  opacity: 0;
}

.mobile-menu-btn.active .line3 {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile menu dropdown */
.mobile-menu {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s ease;
}

.mobile-menu.open {
  max-height: 500px;
  opacity: 1;
}

.mobile-menu-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-bottom: 1.5rem;
  background-color: rgba(13, 13, 13, 0.98);
  backdrop-filter: blur(12px);
}

.mobile-link {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ivory-70);
  padding: 0.5rem 0;
  border-bottom: 1px solid #2A2A2A;
  transition: color 0.3s ease;
}

.mobile-link:hover { color: var(--gold); }

.mobile-cta-btn {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background-color: var(--gold);
  color: var(--near-black);
  padding: 0.75rem 1.25rem;
  text-align: center;
  margin-top: 0.5rem;
  transition: background-color 0.3s ease;
}

.mobile-cta-btn:hover { background-color: var(--gold-hover); }

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


/* ============================================================
   6. HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
}

.hero-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay-right {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(13, 13, 13, 0.92), rgba(13, 13, 13, 0.80), rgba(13, 13, 13, 0.65));
}

.hero-overlay-top {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 1), transparent, rgba(13, 13, 13, 0.4));
}

.film-grain {
  position: absolute;
  inset: 0;
  opacity: 0.03;
  pointer-events: none;
  z-index: 10;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.5'/%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 20;
  padding-top: 6rem;
  padding-bottom: 4rem;
}

.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
  .hero-content { padding-top: 8rem; padding-bottom: 6rem; }
}

/* Eyebrow */
.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.eyebrow-line {
  width: 3rem;
  height: 2px;
  background-color: var(--gold);
}

.eyebrow-text {
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

/* Hero Title */
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.9;
  letter-spacing: 0.05em;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-family: var(--font-condensed);
  font-size: clamp(1.125rem, 2.5vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ivory-60);
  margin-bottom: 1rem;
}

.hero-author {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ivory-50);
  margin-bottom: 0.5rem;
}

.hero-quote {
  font-family: var(--font-body);
  font-size: clamp(1.125rem, 2vw, 1.25rem);
  font-style: italic;
  color: var(--ivory-80);
  max-width: 28rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

/* Trust Bullets */
.trust-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem 1.5rem;
  margin-bottom: 2.5rem;
}

.trust-item {
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  color: var(--ivory-50);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.diamond {
  width: 6px;
  height: 6px;
  background-color: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

/* Hero CTAs */
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* Book Cover */
.hero-book {
  display: flex;
  justify-content: center;
}

@media (min-width: 1024px) {
  .hero-book { justify-content: flex-end; }
}

.hero-book {
  position: relative;
}

.book-glow {
  position: absolute;
  inset: -2rem;
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.15), transparent 70%);
  filter: blur(40px);
}

.book-cover-img {
  position: relative;
  width: 18rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
  transition: box-shadow 0.5s ease;
}

.book-cover-img:hover {
  box-shadow: 0 20px 60px rgba(212, 168, 67, 0.15);
}

@media (min-width: 640px) { .book-cover-img { width: 20rem; } }
@media (min-width: 768px) { .book-cover-img { width: 24rem; } }

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.scroll-text {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ivory-30);
}

.scroll-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}


/* ============================================================
   7. WHY THIS BOOK SECTION
   ============================================================ */
.diagonal-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6rem;
  background-color: var(--near-black);
  clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%);
}

.section-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.label-line {
  width: 4rem;
  height: 2px;
  background-color: var(--gold);
}

.label-line.red { background-color: var(--red-accent); }

.label-text {
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
}

.label-text.red { color: var(--red-accent); }

.section-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  line-height: 0.95;
  letter-spacing: 0.05em;
  color: var(--ivory);
  margin-bottom: 1.5rem;
}

.gold-line-left {
  width: 6rem;
  height: 2px;
  background: linear-gradient(to right, var(--gold), transparent);
  margin-bottom: 1.5rem;
}

.two-col-grid {
  display: grid;
  gap: 3rem;
}

@media (min-width: 1024px) {
  .two-col-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

.callout-box {
  border-left: 2px solid var(--gold);
  padding: 1rem 1.5rem;
  margin-top: 2rem;
  background-color: rgba(26, 26, 26, 0.5);
}

.callout-text {
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-style: italic;
  color: rgba(237, 230, 214, 0.9);
  line-height: 1.7;
}


/* ============================================================
   8. INSIDE THE BOOK (TIMELINE)
   ============================================================ */
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-eyebrow {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-eyebrow-left {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-heading-center {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  letter-spacing: 0.05em;
  color: var(--ivory);
  margin-bottom: 1rem;
}

.gold-line-center {
  width: 6rem;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  margin: 0 auto 1.5rem;
}

.section-subtext {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--ivory-60);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

/* Timeline */
.timeline {
  position: relative;
  max-width: 56rem;
  margin: 0 auto;
}

.timeline-line {
  position: absolute;
  left: 1rem;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, rgba(212, 168, 67, 0.3), transparent);
}

@media (min-width: 1024px) {
  .timeline-line { left: 50%; }
}

.timeline-item {
  position: relative;
  margin-bottom: 3rem;
}

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

.timeline-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .timeline-row {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
  .timeline-row.reverse { flex-direction: row-reverse; }
}

.timeline-marker {
  position: absolute;
  left: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--near-black);
  border: 1px solid var(--gold);
  z-index: 10;
}

.timeline-marker span {
  font-family: var(--font-display);
  font-size: 0.875rem;
  color: var(--gold);
}

@media (min-width: 1024px) {
  .timeline-marker {
    left: 50%;
    transform: translateX(-50%);
  }
}

.timeline-card {
  margin-left: 3.5rem;
  background-color: rgba(26, 26, 26, 0.8);
  border: 1px solid var(--border-dark);
  padding: 1.5rem;
  transition: border-color 0.5s ease;
}

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

@media (min-width: 1024px) {
  .timeline-card {
    margin-left: 0;
    width: calc(50% - 2rem);
  }
  .timeline-card.left { margin-right: auto; padding-right: 2rem; }
  .timeline-card.right { margin-left: auto; padding-left: 2rem; }
}

.part-label {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--gold-dim);
  display: block;
  margin-bottom: 0.5rem;
}

.part-title {
  font-family: var(--font-display);
  font-size: 1.75rem;
  letter-spacing: 0.05em;
  color: var(--ivory);
  margin-bottom: 0.25rem;
  transition: color 0.3s ease;
}

.timeline-card:hover .part-title { color: var(--gold); }

.part-subtitle {
  font-family: var(--font-condensed);
  font-size: 1rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ivory-50);
  margin-bottom: 0.75rem;
}

.part-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ivory-70);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.chapter-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.tag {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  color: var(--ivory-40);
  background-color: #222222;
  padding: 0.25rem 0.75rem;
}


/* ============================================================
   9. STREET PREACHING GALLERY
   ============================================================ */
.witness-header-grid {
  display: grid;
  gap: 2rem;
  margin-bottom: 4rem;
}

@media (min-width: 1024px) {
  .witness-header-grid { grid-template-columns: 1fr 1fr; }
}

.witness-header-text {
  display: flex;
  align-items: flex-end;
}

.witness-header-text .body-text {
  max-width: 32rem;
}

.photo-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 1024px) {
  .photo-gallery { grid-template-columns: 1fr 1fr 1fr; gap: 1rem; }
}

.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.gallery-item.tall { aspect-ratio: 3 / 4; grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.gallery-item:hover img { transform: scale(1.05); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.8), transparent);
  opacity: 0.6;
  transition: opacity 0.5s ease;
}

.gallery-item:hover .gallery-overlay { opacity: 0.8; }

.gallery-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  transform: translateY(100%);
  transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-caption { transform: translateY(0); }

.gallery-caption p {
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(237, 230, 214, 0.9);
}

.gallery-corner {
  position: absolute;
  width: 1.5rem;
  height: 1.5rem;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.gallery-corner.tl {
  top: 0.75rem;
  left: 0.75rem;
  border-top: 2px solid var(--gold-dim);
  border-left: 2px solid var(--gold-dim);
}

.gallery-corner.br {
  bottom: 0.75rem;
  right: 0.75rem;
  border-bottom: 2px solid var(--gold-dim);
  border-right: 2px solid var(--gold-dim);
}

.gallery-item:hover .gallery-corner { opacity: 1; }

/* Scripture quote below gallery */
.scripture-quote {
  margin-top: 4rem;
  text-align: center;
}

.quote-text {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ivory-70);
  max-width: 40rem;
  margin: 0 auto;
  line-height: 1.7;
}

.quote-ref {
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  color: var(--gold-dim);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 0.75rem;
}


/* ============================================================
   10. CHAPTER SIGNUP
   ============================================================ */
.signup-wrapper {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}

.signup-form {
  max-width: 28rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-input {
  width: 100%;
  font-family: var(--font-condensed);
  font-size: 1rem;
  background-color: #1A1A1A;
  border: 1px solid var(--border-dark);
  color: var(--ivory);
  padding: 1rem 1.25rem;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-input::placeholder { color: var(--ivory-30); }

.form-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 2px rgba(212, 168, 67, 0.15);
}

.privacy-note {
  font-family: var(--font-body);
  font-size: 0.75rem;
  color: var(--ivory-30);
  margin-top: 0.5rem;
}

/* Success state */
.signup-success {
  max-width: 28rem;
  margin: 0 auto;
  background-color: #1A1A1A;
  border: 1px solid var(--border-hover);
  padding: 2rem;
  text-align: center;
}

.signup-success.hidden { display: none; }

.success-icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
}

.success-text {
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ivory-70);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}


/* ============================================================
   11. MERCH SECTION
   ============================================================ */
.merch-grid {
  display: grid;
  gap: 2rem;
  max-width: 56rem;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .merch-grid { grid-template-columns: 1fr 1fr; }
}

.merch-card {
  background-color: #141414;
  border: 1px solid var(--border-dark);
  overflow: hidden;
  transition: border-color 0.5s ease;
}

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

.merch-image-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.merch-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.merch-card:hover .merch-image { transform: scale(1.05); }

.merch-image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.6), transparent);
}

.merch-info { padding: 1.5rem; }

.merch-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: var(--ivory);
  margin-bottom: 0.5rem;
  transition: color 0.3s ease;
}

.merch-card:hover .merch-name { color: var(--gold); }

.merch-desc {
  font-family: var(--font-body);
  font-size: 0.875rem;
  color: var(--ivory-60);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.merch-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.merch-price {
  font-family: var(--font-condensed);
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--gold);
}

.merch-note {
  text-align: center;
  margin-top: 2rem;
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  color: var(--ivory-30);
}


/* ============================================================
   12. AMAZON CTA
   ============================================================ */
.amazon-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .amazon-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

.amazon-book {
  display: flex;
  justify-content: center;
  position: relative;
}

.book-glow-sm {
  position: absolute;
  inset: -1.5rem;
  background: radial-gradient(ellipse at center, rgba(212, 168, 67, 0.12), transparent 70%);
  filter: blur(30px);
}

.amazon-book-img {
  position: relative;
  width: 16rem;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
}

@media (min-width: 640px) { .amazon-book-img { width: 18rem; } }

.format-options {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2rem;
}

.format-card {
  background-color: #1A1A1A;
  border: 1px solid var(--border-dark);
  padding: 0.75rem 1.25rem;
  text-align: center;
  min-width: 7.5rem;
}

.format-label {
  display: block;
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--ivory-40);
}

.format-status {
  font-family: var(--font-condensed);
  font-size: 1.125rem;
  font-weight: 700;
}

.format-status.gold { color: var(--gold); }
.format-status.dim { color: var(--ivory-30); }

.small-note {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  color: var(--ivory-30);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 1rem;
}


/* ============================================================
   13. ABOUT AUTHOR
   ============================================================ */
.author-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
  max-width: 64rem;
  margin: 0 auto;
}

@media (min-width: 1024px) {
  .author-grid { grid-template-columns: 5fr 7fr; gap: 4rem; }
}

.author-photo {
  position: relative;
  max-width: 24rem;
  margin: 0 auto;
}

@media (min-width: 1024px) { .author-photo { margin: 0; } }

.author-frame {
  position: absolute;
  inset: -1rem;
  border: 1px solid rgba(212, 168, 67, 0.1);
}

.author-img-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
}

.author-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}

.author-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13, 13, 13, 0.6), transparent);
}

.author-nameplate {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(13, 13, 13, 0.9);
  backdrop-filter: blur(8px);
  padding: 0.75rem 1.5rem;
  border-top: 1px solid rgba(212, 168, 67, 0.2);
}

.author-nameplate p {
  font-family: var(--font-display);
  font-size: 1.125rem;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.ministry-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--gold);
  transition: color 0.3s ease;
}

.ministry-link:hover { color: var(--gold-hover); }


/* ============================================================
   14. FINAL CTA
   ============================================================ */
.final-cta-section {
  padding: var(--section-py) 0;
}

@media (min-width: 1024px) {
  .final-cta-section { padding: var(--section-py-lg) 0; }
}

.final-cta-wrapper {
  max-width: 48rem;
  margin: 0 auto;
}

.final-heading {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  letter-spacing: 0.05em;
  color: var(--ivory);
  line-height: 0.95;
  margin-bottom: 1.5rem;
}

.final-scripture {
  font-family: var(--font-body);
  font-size: 1.25rem;
  font-style: italic;
  color: var(--ivory-70);
  line-height: 1.7;
  max-width: 40rem;
  margin: 0 auto 1rem;
}

.final-ref {
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  color: var(--gold-dim);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 2rem;
}

.final-urgency {
  font-family: var(--font-body);
  font-size: 1.125rem;
  color: var(--ivory-60);
  line-height: 1.7;
  max-width: 32rem;
  margin: 0 auto 3rem;
}

.final-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
}


/* ============================================================
   15. FOOTER
   ============================================================ */
.site-footer {
  position: relative;
  padding: 3rem 0;
  background-color: #050505;
  border-top: 1px solid #1A1A1A;
}

.footer-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .footer-grid { grid-template-columns: 1fr auto 1fr; }
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  color: var(--ivory-40);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1.5rem;
}

.footer-links a {
  font-family: var(--font-condensed);
  font-size: 0.875rem;
  color: var(--ivory-40);
  transition: color 0.3s ease;
}

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

.footer-copyright {
  text-align: right;
}

.copyright-text {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  color: var(--ivory-30);
}

.copyright-sub {
  font-family: var(--font-condensed);
  font-size: 0.75rem;
  color: var(--ivory-20);
  margin-top: 0.25rem;
}

.footer-gold-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
  opacity: 0.2;
  margin-top: 2rem;
}

.footer-scripture {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-style: italic;
  color: var(--ivory-20);
  text-align: center;
  margin-top: 1.5rem;
}


/* ============================================================
   16. ANIMATIONS & SCROLL REVEAL
   ============================================================ */

/* Elements start hidden and animate in when visible */
.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Staggered delays applied via data-delay attribute in JS */


/* ============================================================
   17. RESPONSIVE / MOBILE
   ============================================================ */
@media (max-width: 767px) {
  .footer-grid { text-align: center; }
  .footer-copyright { text-align: center; }
  .footer-links { justify-content: center; }

  .author-grid { text-align: center; }
  .author-bio .section-label { justify-content: center; }
  .author-bio .section-heading { text-align: center; }
  .author-bio .gold-line-left { margin: 0 auto 1.5rem; }
  .ministry-link { justify-content: center; }

  .amazon-grid { text-align: center; }
  .amazon-info .section-heading { text-align: center; }
  .amazon-info .gold-line-left { margin: 0 auto 1.5rem; }
  .format-options { justify-content: center; }
  .amazon-info .btn-gold { display: block; text-align: center; }

  .merch-footer { flex-direction: column; gap: 0.75rem; align-items: flex-start; }

  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn-gold,
  .hero-ctas .btn-gold-outline { width: 100%; text-align: center; }

  .final-ctas { flex-direction: column; align-items: center; }
  .final-ctas .btn-gold,
  .final-ctas .btn-gold-outline,
  .final-ctas .btn-dim-outline { width: 100%; text-align: center; }
}

@media (max-width: 1023px) {
  .timeline-card.left,
  .timeline-card.right {
    width: auto;
    margin-left: 3.5rem;
  }
}
