/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold:     #c9a84c;
  --gold-lt:  #e8c97a;
  --gold-dk:  #8a6b2a;
  --maroon:   #6b1a1a;
  --maroon-dk:#3d0d0d;
  --bg:       #0d0d0d;
  --bg2:      #111111;
  --bg3:      #181818;
  --text:     #e8e0d0;
  --text-dim: #9a8e7a;
  --white:    #ffffff;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: 'EB Garamond', Georgia, serif;
  font-size: 1.1rem;
  line-height: 1.75;
}

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

p { margin-bottom: 1rem; }

a { color: var(--gold); text-decoration: none; }
a:hover { color: var(--gold-lt); }

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── NAV ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10, 8, 6, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.15);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.7); }

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }

.btn-nav {
  background: var(--gold) !important;
  color: #0d0d0d !important;
  padding: 0.45rem 1.2rem;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: 0.1em;
  transition: background 0.2s !important;
}
.btn-nav:hover { background: var(--gold-lt) !important; color: #0d0d0d !important; }

.nav-hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--gold);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-mobile {
  display: none;
  list-style: none;
  flex-direction: column;
  background: #0d0b09;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 1rem 1.5rem 1.5rem;
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.nav-mobile a:hover { color: var(--gold); }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gold);
  color: #0d0d0d;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover { background: var(--gold-lt); color: #0d0d0d; transform: translateY(-1px); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--gold);
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.85rem 2rem;
  border-radius: 2px;
  border: 1.5px solid var(--gold);
  cursor: pointer;
  transition: background 0.2s, color 0.2s, transform 0.15s;
}
.btn-secondary:hover { background: rgba(201,168,76,0.12); transform: translateY(-1px); }

.btn-amazon {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #ff9900;
  color: #0d0d0d;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 1rem 2.5rem;
  border-radius: 2px;
  transition: background 0.2s, transform 0.15s;
}
.btn-amazon:hover { background: #ffa826; color: #0d0d0d; transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  padding: 100px 1.5rem 4rem;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

/* full-bleed dark texture behind hero */
.hero::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(ellipse 80% 60% at 60% 40%, rgba(107,26,26,0.18) 0%, transparent 70%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(201,168,76,0.07) 0%, transparent 60%),
    #0a0806;
}

.hero-overlay { display: none; }

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-eyebrow {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.hero-title {
  font-family: 'Cinzel', serif;
  font-weight: 900;
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: 1;
  letter-spacing: 0.04em;
  color: var(--white);
  text-shadow: 0 2px 30px rgba(0,0,0,0.8);
  margin-bottom: 1rem;
}

.hero-verse {
  font-family: 'EB Garamond', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: 0.25rem;
}

.hero-sub {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin-bottom: 2rem;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-book {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-img {
  width: clamp(220px, 28vw, 380px);
  border-radius: 0;
  box-shadow: none;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.7)) drop-shadow(0 0 40px rgba(107,26,26,0.25));
  transition: transform 0.3s;
}
.book-img:hover { transform: scale(1.02) rotate(-1deg); }

/* ── VIDEO SECTION ── */
.video-section { background: var(--bg); }

.video-wrap {
  width: 100%;
  max-width: 800px;
  aspect-ratio: 16 / 9;
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
  margin-top: 1rem;
}

.video-wrap iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0f0c0a 0%, #1a1008 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--text-dim);
}

.play-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold-dk);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: var(--gold);
  padding-left: 4px;
}

.video-placeholder p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-dim);
  margin: 0;
}

.video-author {
  margin-top: 1rem;
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-align: center;
}

/* ── QUOTE STRIP ── */
.quote-strip {
  background: linear-gradient(135deg, var(--maroon-dk) 0%, #2a0e0e 100%);
  border-top: 1px solid rgba(201,168,76,0.3);
  border-bottom: 1px solid rgba(201,168,76,0.3);
  padding: 2rem 1.5rem;
}

.quotes-row {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  justify-content: center;
}

.strip-quote {
  flex: 1;
  min-width: 260px;
  max-width: 420px;
  text-align: center;
}
.strip-quote p {
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.strip-quote cite {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
}

.strip-divider {
  width: 1px;
  height: 80px;
  background: rgba(201,168,76,0.3);
  flex-shrink: 0;
}

/* ── SECTIONS ── */
.section {
  padding: 4rem 0;
}

.section-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
}

.section-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.15;
  color: var(--white);
  margin-bottom: 1.5rem;
}

.two-col {
  display: flex;
  align-items: center;
  gap: 4rem;
  flex-wrap: wrap;
}
.two-col.reverse { flex-direction: row-reverse; }

.center-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

/* ── SLIDESHOW ── */
.slideshow-section {
  background: #0a0806;
  padding: 2rem 0 2.5rem;
}

.slideshow {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.slideshow-track {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid rgba(201,168,76,0.2);
  box-shadow: 0 20px 60px rgba(0,0,0,0.6);
}

.slide {
  display: none;
}
.slide.active { display: block; }

.slide img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.slide-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(10,8,6,0.7);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 2rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
.slide-btn:hover { background: rgba(201,168,76,0.15); }
.slide-btn.prev { left: 0; }
.slide-btn.next { right: 0; }

.slide-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1rem;
}
.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(201,168,76,0.25);
  cursor: pointer;
  transition: background 0.2s;
}
.dot.active { background: var(--gold); }

/* ── BOOK SECTION ── */
.book-section { background: var(--bg2); }

.book-cover-wrap {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
}

.book-cover-lg {
  width: clamp(180px, 25vw, 300px);
  border-radius: 4px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.7), 0 0 40px rgba(107,26,26,0.25);
}

.book-text {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.section-btn { margin-top: 1.5rem; }

.book-aim {
  color: var(--gold);
  border-left: 3px solid var(--gold-dk);
  padding-left: 1.25rem;
  margin: 1.25rem 0;
  font-size: 1rem;
}

/* ── ABOUT SECTION ── */
.about-section {
  background: var(--bg3);
  position: relative;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 90% 50%, rgba(201,168,76,0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-text {
  flex: 1;
  min-width: 260px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.about-img-wrap {
  flex: 0 0 300px;
  display: flex;
  justify-content: center;
}

.about-img {
  width: clamp(160px, 22vw, 260px);
  border-radius: 50%;
  border: 3px solid var(--gold-dk);
  box-shadow: 0 10px 40px rgba(0,0,0,0.6), 0 0 0 6px rgba(201,168,76,0.08);
  object-fit: cover;
  aspect-ratio: 1;
}

/* Placeholder when no image */
.about-img[src="assets/pastor-photo.png"] {
  background: linear-gradient(135deg, var(--maroon-dk), #1a0a0a);
}

/* ── STUDY GUIDE SECTION ── */
.study-section {
  background: linear-gradient(180deg, var(--bg) 0%, var(--maroon-dk) 50%, var(--bg) 100%);
  background-size: 100% 200%;
  background: var(--bg2);
  position: relative;
}
.study-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(107,26,26,0.2) 0%, transparent 70%);
  pointer-events: none;
}

.study-desc { color: var(--text-dim); max-width: 600px; margin: 0 auto 2rem; }

.study-card {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 6px;
  padding: 1.5rem 2rem;
  width: 100%;
  max-width: 560px;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: space-between;
}

.study-icon { font-size: 2.5rem; flex-shrink: 0; }

.study-info { flex: 1; min-width: 140px; text-align: left; }
.study-info h3 {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  color: var(--white);
  margin-bottom: 0.2rem;
}
.study-info p {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0;
}

.study-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

/* ── BUY SECTION ── */
.buy-section { background: var(--bg3); }

.buy-desc { color: var(--text-dim); margin-bottom: 2rem; max-width: 500px; }

.buy-note {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  color: var(--text-dim);
  margin-top: 1rem;
}

/* ── FOOTER ── */
.footer {
  background: #060504;
  border-top: 1px solid rgba(201,168,76,0.2);
  padding: 3rem 0;
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.footer-title {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  margin: 0;
}

.footer-sub {
  font-style: italic;
  color: var(--text-dim);
  font-size: 0.9rem;
  margin: 0;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.75rem 0 0.25rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-dim);
}
.footer-links a { color: var(--text-dim); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

.footer-copy {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.68rem;
  color: rgba(154,142,122,0.4);
  margin: 0;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: block; }

  .hero {
    flex-direction: column-reverse;
    text-align: center;
    padding-top: 80px;
    padding-bottom: 2.5rem;
    gap: 1.5rem;
    min-height: auto;
  }
  .hero-content { max-width: 100%; }
  .hero-eyebrow { font-size: 0.65rem; }
  .hero-title { font-size: clamp(2.4rem, 10vw, 3.5rem); }
  .hero-verse { font-size: 1rem; }
  .hero-sub { margin-bottom: 1.25rem; }
  .hero-actions { justify-content: center; }
  .hero-book { width: 100%; }
  .book-img { width: clamp(140px, 50vw, 220px); margin: 0 auto; }

  .quote-strip { padding: 1.75rem 1rem; }
  .quotes-row { flex-direction: column; gap: 1.5rem; }
  .strip-divider { width: 60px; height: 1px; }
  .strip-quote { max-width: 100%; }
  .strip-quote p { font-size: 0.95rem; }

  .section { padding: 2.5rem 0; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); margin-bottom: 1rem; }

  .two-col, .two-col.reverse { flex-direction: column; gap: 1.75rem; }

  .book-cover-wrap, .about-img-wrap { flex: 0 0 auto; width: 100%; }
  .book-cover-lg { width: clamp(140px, 50vw, 220px); margin: 0 auto; }

  .about-img { width: clamp(130px, 40vw, 180px); }

  .study-card {
    flex-direction: column;
    text-align: center;
    padding: 1.25rem;
    gap: 1rem;
  }
  .study-info { text-align: center; }
  .study-desc { font-size: 0.95rem; }

  .buy-desc { font-size: 0.95rem; }
  .btn-amazon { padding: 0.85rem 1.75rem; font-size: 0.78rem; }

  .footer { padding: 2rem 0; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 0.5rem; }

  .slide img { height: 260px; }
  .slide-btn { width: 36px; height: 36px; font-size: 1.5rem; }
}
