/* ============================================================
   Ink and Purpose Studios — styles-v3.css
   Modern bilingual redesign · 2026-07
   ============================================================ */

:root {
  --navy-900: #0b1526;
  --navy-800: #101f38;
  --navy-700: #16294a;
  --navy-600: #22345a;
  --navy: #16233d;
  --parchment: #f7f0e0;
  --parchment-2: #efe4cb;
  --cream: #fbf6ea;
  --gold: #c9952b;
  --gold-2: #e6bd63;
  --gold-soft: #d9ab4d;
  --burgundy: #7a2e2e;
  --ink: #17202f;
  --muted: #6f6353;
  --line: rgba(201, 149, 43, 0.35);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-serif: 'EB Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;

  --maxw: 1200px;
  --radius: 6px;
  --shadow-soft: 0 18px 50px -20px rgba(11, 21, 38, 0.45);
  --shadow-cover: 0 30px 60px -25px rgba(11, 21, 38, 0.7);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-serif);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

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

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); }

/* ---------- Typography helpers ---------- */
.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}
.eyebrow.light { color: var(--gold-2); }

.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: var(--navy);
  letter-spacing: -0.01em;
}
.section-title.light { color: var(--cream); }

.section-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  max-width: 60ch;
  margin: 1rem auto 0;
}
.section-sub.light { color: rgba(247, 240, 224, 0.78); }

.section-head { text-align: center; margin-bottom: clamp(2.5rem, 6vw, 4rem); }
.section-head .eyebrow { display: block; margin-bottom: 1rem; }

section { padding: clamp(4rem, 9vw, 7.5rem) 0; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.95rem 1.9rem;
  border-radius: 3px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), background 0.3s, color 0.3s, box-shadow 0.3s;
  will-change: transform;
}
.btn:hover { transform: translateY(-3px); }
.btn-gold { background: linear-gradient(135deg, var(--gold), var(--gold-2)); color: var(--navy-900); box-shadow: 0 12px 30px -12px rgba(201,149,43,0.7); }
.btn-gold:hover { box-shadow: 0 18px 40px -12px rgba(201,149,43,0.85); }
.btn-navy { background: var(--navy); color: var(--cream); }
.btn-navy:hover { background: var(--navy-800); }
.btn-outline { background: transparent; border-color: rgba(247,240,224,0.55); color: var(--cream); }
.btn-outline:hover { background: rgba(247,240,224,0.12); }
.btn-outline-navy { background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline-navy:hover { background: var(--navy); color: var(--cream); }
.btn-ghost { background: transparent; border-color: var(--line); color: var(--navy); padding: 0.7rem 1.3rem; }
.btn-ghost:hover { background: var(--navy); color: var(--cream); border-color: var(--navy); }
.btn-sm { padding: 0.7rem 1.3rem; font-size: 0.74rem; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 100;
  padding: 1.1rem 0;
  transition: background 0.4s, padding 0.4s, box-shadow 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(11, 21, 38, 0.86);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(201,149,43,0.25);
  box-shadow: 0 10px 30px -18px rgba(0,0,0,0.6);
}
.nav-container { max-width: var(--maxw); margin: 0 auto; padding: 0 clamp(1.2rem, 4vw, 2.5rem); display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.nav-logo { display: flex; flex-direction: column; line-height: 1.05; }
.nav-logo-main { font-family: var(--font-display); font-weight: 700; font-size: 1.28rem; color: var(--cream); letter-spacing: 0.01em; }
.nav-logo-sub { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.28em; text-transform: uppercase; color: var(--gold-2); margin-top: 3px; }

.nav-right { display: flex; align-items: center; gap: 1.6rem; }
.nav-links { list-style: none; display: flex; align-items: center; gap: 1.7rem; }
.nav-links a {
  font-family: var(--font-sans); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.04em;
  color: rgba(247,240,224,0.85); position: relative; padding: 0.3rem 0; transition: color 0.25s;
}
.nav-links a::after { content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1.5px; background: var(--gold); transition: width 0.3s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { padding: 0.6rem 1.2rem; border: 1.5px solid var(--gold); border-radius: 3px; color: var(--gold-2) !important; }
.nav-cta::after { display: none; }
.nav-cta:hover { background: var(--gold); color: var(--navy-900) !important; }

/* Language toggle */
.lang-toggle { display: inline-flex; border: 1.5px solid rgba(201,149,43,0.5); border-radius: 40px; overflow: hidden; }
.lang-btn {
  font-family: var(--font-sans); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em;
  padding: 0.4rem 0.85rem; background: transparent; color: rgba(247,240,224,0.7); border: none; cursor: pointer; transition: background 0.25s, color 0.25s;
}
.lang-btn.active { background: var(--gold); color: var(--navy-900); }

.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.nav-toggle span { width: 26px; height: 2px; background: var(--cream); transition: 0.3s; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.hero-bg { position: absolute; inset: -6%; background-size: cover; background-position: center 30%; will-change: transform; animation: kenburns 22s ease-in-out infinite alternate; }
@keyframes kenburns { from { transform: scale(1.06); } to { transform: scale(1.16); } }
.hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(to right, rgba(11,21,38,0.92) 0%, rgba(11,21,38,0.7) 42%, rgba(11,21,38,0.35) 100%),
    linear-gradient(to top, rgba(11,21,38,0.9) 0%, rgba(11,21,38,0) 45%);
}
.hero-content { position: relative; z-index: 3; max-width: 760px; padding-top: 4rem; }
.hero-eyebrow { display: inline-block; font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold-2); border: 1px solid rgba(201,149,43,0.4); padding: 0.5rem 1rem; border-radius: 40px; margin-bottom: 1.8rem; }
.hero-title { font-family: var(--font-display); font-weight: 900; color: var(--cream); font-size: clamp(2.8rem, 8vw, 5.6rem); line-height: 1.0; letter-spacing: -0.02em; }
.hero-title .accent { color: var(--gold-2); font-style: italic; font-weight: 700; }
.hero-tagline { font-family: var(--font-display); font-style: italic; font-size: clamp(1.3rem, 3vw, 1.9rem); color: var(--gold-2); margin-top: 1rem; }
.hero-desc { color: rgba(247,240,224,0.85); font-size: clamp(1.05rem, 2vw, 1.25rem); max-width: 56ch; margin-top: 1.5rem; }
.hero-buttons { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.4rem; }
.hero-scroll { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; text-align: center; color: rgba(247,240,224,0.55); font-family: var(--font-sans); font-size: 0.66rem; letter-spacing: 0.25em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 42px; margin: 0.7rem auto 0; background: linear-gradient(to bottom, var(--gold-2), transparent); animation: scrollpulse 2s ease-in-out infinite; }
@keyframes scrollpulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* ---------- Statement band ---------- */
.statement { background: var(--navy-900); text-align: center; padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.statement-text { font-family: var(--font-display); font-style: italic; font-size: clamp(1.4rem, 3.4vw, 2.3rem); line-height: 1.45; color: var(--cream); max-width: 24ch; margin: 0 auto; }
.statement-mark { color: var(--gold-2); }
.statement-rule { width: 60px; height: 2px; background: var(--gold); margin: 1.6rem auto; }

/* ============================================================
   BOOK COLLECTION — carousel
   ============================================================ */
.collection { background: linear-gradient(180deg, var(--cream), var(--parchment)); position: relative; }
.carousel-wrap { position: relative; }
.carousel {
  display: flex; gap: clamp(1.2rem, 3vw, 2rem); overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 1rem 0.4rem 2.5rem; scrollbar-width: none; -ms-overflow-style: none;
}
.carousel::-webkit-scrollbar { display: none; }
.book-card {
  scroll-snap-align: center; flex: 0 0 auto; width: min(340px, 82vw);
  background: #fff; border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-soft);
  display: flex; flex-direction: column; border: 1px solid rgba(23,32,47,0.06);
  transition: transform 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.book-card:hover { transform: translateY(-8px); box-shadow: 0 40px 70px -30px rgba(11,21,38,0.55); }
.book-cover-wrap { position: relative; overflow: hidden; background: var(--navy-900); cursor: zoom-in; }
.book-cover-wrap img { width: 100%; height: 420px; object-fit: cover; object-position: top center; transition: transform 0.7s var(--ease); }
.book-card:hover .book-cover-wrap img { transform: scale(1.05); }
.book-badge { position: absolute; top: 14px; left: 14px; z-index: 2; font-family: var(--font-sans); font-size: 0.62rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 0.4rem 0.8rem; border-radius: 40px; background: var(--gold); color: var(--navy-900); }
.book-badge.navy { background: var(--navy); color: var(--gold-2); }
.book-badge.burgundy { background: var(--burgundy); color: var(--cream); }
.book-info { padding: 1.5rem 1.5rem 1.7rem; display: flex; flex-direction: column; flex: 1; }
.book-volume { font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); font-weight: 600; }
.book-title { font-family: var(--font-display); font-weight: 700; font-size: 1.5rem; color: var(--navy); margin: 0.35rem 0 0.2rem; line-height: 1.12; }
.book-sub { font-family: var(--font-display); font-style: italic; color: var(--burgundy); font-size: 1rem; }
.book-desc { color: var(--muted); font-size: 0.98rem; margin-top: 0.8rem; flex: 1; }
.book-meta { display: flex; flex-wrap: wrap; gap: 0.4rem 1rem; margin-top: 1rem; font-family: var(--font-sans); font-size: 0.7rem; letter-spacing: 0.06em; color: var(--navy); text-transform: uppercase; }
.book-meta span { position: relative; }
.book-langs { display: flex; gap: 0.5rem; margin-top: 1.1rem; flex-wrap: wrap; }
.book-actions { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 1.2rem; }

.carousel-nav { display: flex; justify-content: center; gap: 1rem; margin-top: 0.5rem; }
.carousel-btn { width: 52px; height: 52px; border-radius: 50%; border: 1.5px solid var(--line); background: #fff; color: var(--navy); font-size: 1.2rem; cursor: pointer; display: grid; place-items: center; transition: 0.3s var(--ease); }
.carousel-btn:hover { background: var(--navy); color: var(--gold-2); transform: translateY(-3px); }
.carousel-hint { text-align: center; font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); margin-top: 1.2rem; }

/* ---------- Complete book catalog ---------- */
.quick-shop {
  padding: clamp(3rem, 6vw, 5rem) 0;
  background: var(--navy);
  color: var(--white);
}
.quick-shop-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, .65fr);
  align-items: end;
  gap: 2rem;
  margin-bottom: 2rem;
}
.quick-shop-head .eyebrow { color: var(--gold-2); }
.quick-shop-head h2 {
  margin: .45rem 0 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}
.quick-shop-head p { margin: 0; color: rgba(255,255,255,.74); font-size: 1.05rem; }
.quick-shop-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .85rem;
}
.quick-shop-item {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  padding: 1.15rem;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 12px;
  background: rgba(255,255,255,.055);
  color: var(--white);
  text-decoration: none;
  transition: transform .2s ease, border-color .2s ease, background .2s ease;
}
.quick-shop-item:hover, .quick-shop-item:focus-visible {
  transform: translateY(-3px);
  border-color: var(--gold-2);
  background: rgba(255,255,255,.1);
}
.quick-shop-item strong { font-family: var(--font-display); font-size: 1.12rem; line-height: 1.2; }
.quick-shop-item span { margin-top: .45rem; color: rgba(255,255,255,.68); font-size: .88rem; }
.quick-shop-item em { margin-top: auto; padding-top: .8rem; color: var(--gold-2); font-style: normal; font-weight: 700; font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; }
.quick-shop-contact { border-style: dashed; }
.book-catalog { background: linear-gradient(180deg, var(--cream), var(--parchment)); }
.book-catalog-list { display: flex; flex-direction: column; gap: clamp(2.5rem, 6vw, 4.5rem); }
.book-row-card {
  background: #fff;
  border: 1px solid rgba(23,32,47,0.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.book-row { display: grid; grid-template-columns: minmax(280px, 340px) minmax(0, 1fr); }
.book-row-card-featured .book-row { grid-template-columns: minmax(390px, 0.95fr) minmax(0, 1.05fr); }
.book-row-media {
  background: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(1.4rem, 3vw, 2rem);
}
.book-row-cover {
  width: 100%;
  max-width: 280px;
  height: auto;
  border-radius: 6px;
  box-shadow: var(--shadow-cover);
  cursor: zoom-in;
}
.book-row-content { padding: clamp(1.8rem, 4vw, 3rem); align-self: center; }
.bible-editions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.75rem, 2vw, 1.35rem);
  align-items: center;
}
.bible-edition {
  position: relative;
  display: block;
  border-radius: 7px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.bible-edition:hover { transform: translateY(-7px); box-shadow: 0 30px 50px -22px rgba(0,0,0,0.9); }
.bible-edition:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
.bible-edition img {
  width: 100%;
  height: auto;
  aspect-ratio: 8.5 / 11;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: var(--shadow-cover);
}
.edition-language {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  padding: 0.28rem 0.55rem;
  border-radius: 30px;
  background: var(--gold);
  color: var(--navy-900);
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}
.edition-label {
  position: absolute;
  left: 50%;
  bottom: 0.7rem;
  transform: translateX(-50%);
  width: max-content;
  max-width: calc(100% - 1rem);
  padding: 0.38rem 0.7rem;
  border: 1px solid rgba(230,189,99,0.55);
  border-radius: 40px;
  background: rgba(11,21,38,0.9);
  color: var(--cream);
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.bible-buy-groups {
  display: grid;
  gap: 1rem;
  margin-top: 1.5rem;
}
.bible-buy-group {
  padding: 1rem;
  border: 1px solid rgba(11,21,38,0.12);
  border-radius: 8px;
  background: rgba(255,255,255,0.58);
}
.bible-buy-group-spanish { border-color: rgba(180,132,38,0.38); background: rgba(230,189,99,0.1); }
.bible-buy-group h3 {
  margin: 0 0 0.7rem;
  color: var(--navy);
  font-family: var(--font-sans);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

/* ============================================================
   SPOTLIGHT (Solomon / Bible)
   ============================================================ */
.spotlight { position: relative; overflow: hidden; color: var(--cream); }
.spotlight-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.4) saturate(1.1); transform: scale(1.05); }
.spotlight::before { content: ''; position: absolute; inset: 0; background: linear-gradient(120deg, rgba(11,21,38,0.94), rgba(11,21,38,0.72)); z-index: 1; }
.spotlight .container { position: relative; z-index: 2; }
.spotlight-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(2rem, 6vw, 5rem); align-items: center; }
.spotlight.reverse .spotlight-grid { grid-template-columns: 1.15fr 0.85fr; }
.spotlight.reverse .spotlight-media { order: 2; }
.spotlight-media { perspective: 1200px; }
.spotlight-media img { border-radius: 8px; box-shadow: var(--shadow-cover); transform: rotateY(-8deg) rotateX(2deg); transition: transform 0.6s var(--ease); border: 1px solid rgba(201,149,43,0.25); }
.spotlight.reverse .spotlight-media img { transform: rotateY(8deg) rotateX(2deg); }
.spotlight-media img:hover { transform: rotateY(0) rotateX(0); }
.spotlight-title { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.2rem, 5.5vw, 3.8rem); line-height: 1.05; color: var(--cream); }
.spotlight-kicker { color: var(--gold-2); font-style: italic; font-family: var(--font-display); font-size: clamp(1.1rem, 2.4vw, 1.5rem); margin-top: 0.4rem; }
.spotlight-text { color: rgba(247,240,224,0.85); font-size: 1.1rem; margin-top: 1.3rem; max-width: 54ch; }
.spotlight-stats { display: flex; gap: 2.2rem; margin: 1.8rem 0; flex-wrap: wrap; }
.spotlight-stat .n { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--gold-2); }
.spotlight-stat .l { font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,240,224,0.6); }
.spotlight-actions { display: flex; gap: 0.8rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* ============================================================
   ILLUSTRATION SLIDESHOW (marquee)
   ============================================================ */
.showcase { background: var(--navy-900); overflow: hidden; padding-bottom: clamp(4rem, 8vw, 6rem); }
.marquee { display: flex; gap: 1.5rem; width: max-content; animation: marquee 60s linear infinite; }
.marquee:hover { animation-play-state: paused; }
@keyframes marquee { to { transform: translateX(-50%); } }
.slide-item { position: relative; flex: 0 0 auto; width: clamp(260px, 30vw, 380px); border-radius: 8px; overflow: hidden; box-shadow: var(--shadow-cover); }
.slide-item img { width: 100%; height: clamp(320px, 40vw, 460px); object-fit: cover; }
.slide-quote { position: absolute; inset: auto 0 0 0; padding: 2.5rem 1.4rem 1.3rem; background: linear-gradient(to top, rgba(11,21,38,0.95), transparent); color: var(--cream); font-family: var(--font-display); font-size: 1.02rem; line-height: 1.4; }
.slide-title { display: block; font-style: italic; font-weight: 700; font-size: 1.12rem; }
.slide-ref { display: block; font-family: var(--font-sans); font-style: normal; font-size: 0.64rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-2); margin-top: 0.5rem; }

/* ---------- Collage wall ---------- */
.collage-wall { position: relative; overflow: hidden; padding: clamp(5rem, 11vw, 8.5rem) 0; color: var(--cream); text-align: center; }
.collage-wall-bg { position: absolute; inset: 0; background-size: cover; background-position: center; transform: scale(1.04); }
.collage-wall::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at center, rgba(11,21,38,0.55) 0%, rgba(11,21,38,0.8) 70%, rgba(11,21,38,0.92) 100%); z-index: 1; }
.collage-wall .container { position: relative; z-index: 2; }
.collage-wall .section-title, .collage-wall .section-sub, .collage-wall .eyebrow { text-shadow: 0 2px 18px rgba(0,0,0,0.6); }
.collage-wall .btn { margin-top: 1.8rem; }

/* ============================================================
   FEATURES
   ============================================================ */
.features { background: var(--parchment); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.4rem; }
.feature-item { background: #fff; padding: 2.2rem 1.9rem; border-radius: 8px; border: 1px solid rgba(23,32,47,0.06); box-shadow: var(--shadow-soft); transition: transform 0.4s var(--ease); }
.feature-item:hover { transform: translateY(-6px); }
.feature-icon { width: 52px; height: 52px; border-radius: 50%; background: linear-gradient(135deg, var(--navy), var(--navy-700)); color: var(--gold-2); display: grid; place-items: center; font-size: 1.4rem; margin-bottom: 1.1rem; }
.feature-item h3 { font-family: var(--font-display); font-size: 1.35rem; color: var(--navy); margin-bottom: 0.5rem; }
.feature-item p { color: var(--muted); font-size: 0.98rem; }

/* ============================================================
   AUTHOR / MINISTRY
   ============================================================ */
.author, .ministry { position: relative; color: var(--cream); overflow: hidden; }
.author-bg, .ministry-bg { position: absolute; inset: 0; background-size: cover; background-position: center; }
.author::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(11,21,38,0.95) 0%, rgba(11,21,38,0.7) 60%, rgba(11,21,38,0.4) 100%); }
.ministry::before { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, rgba(11,21,38,0.94), rgba(11,21,38,0.8)); }
.author .container, .ministry .container { position: relative; z-index: 2; }
.author-content { max-width: 620px; }
.author-title { font-family: var(--font-sans); font-size: 0.78rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); margin: 0.6rem 0 1.4rem; }
.author-bio { color: rgba(247,240,224,0.85); font-size: 1.1rem; margin-bottom: 1rem; max-width: 56ch; }
.ministry { text-align: center; }
.ministry-content { max-width: 720px; margin: 0 auto; }
.ministry-text { color: rgba(247,240,224,0.85); font-size: 1.12rem; margin: 1.2rem auto 0; max-width: 60ch; }
.stats-row { display: flex; justify-content: center; gap: clamp(2rem, 8vw, 5rem); margin: 2.6rem 0; flex-wrap: wrap; }
.stat .stat-num { font-family: var(--font-display); font-size: clamp(2.4rem, 6vw, 3.6rem); font-weight: 700; color: var(--gold-2); display: block; line-height: 1; }
.stat .stat-label { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(247,240,224,0.65); margin-top: 0.5rem; display: block; }

/* ============================================================
   CTA
   ============================================================ */
.cta { background: linear-gradient(135deg, var(--gold), var(--gold-2)); text-align: center; }
.cta-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(2rem, 5vw, 3.2rem); color: var(--navy-900); }
.cta-text { color: rgba(11,21,38,0.8); font-size: 1.15rem; max-width: 55ch; margin: 1rem auto 2rem; }
.cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta .btn-navy { box-shadow: 0 14px 30px -14px rgba(11,21,38,0.6); }

/* ============================================================
   PAGE HEADER (interior pages)
   ============================================================ */
.page-hero { position: relative; padding: clamp(9rem, 16vw, 12rem) 0 clamp(3.5rem, 8vw, 6rem); color: var(--cream); overflow: hidden; text-align: center; }
.page-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.42); }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(0deg, var(--cream), transparent 30%), rgba(11,21,38,0.55); }
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-family: var(--font-display); font-weight: 900; font-size: clamp(2.4rem, 6vw, 4rem); color: var(--cream); }
.page-hero p { color: rgba(247,240,224,0.85); font-size: 1.15rem; max-width: 55ch; margin: 1rem auto 0; }

.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--font-display); font-size: clamp(1.6rem, 4vw, 2.3rem); color: var(--navy); margin: 2.4rem 0 1rem; }
.prose h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--burgundy); margin: 1.8rem 0 0.6rem; }
.prose p { color: #3a3428; font-size: 1.12rem; margin-bottom: 1.1rem; }
.prose .lead { font-size: 1.3rem; color: var(--navy); font-style: italic; font-family: var(--font-display); }
.pullquote { border-left: 3px solid var(--gold); padding: 0.4rem 0 0.4rem 1.5rem; font-family: var(--font-display); font-style: italic; font-size: 1.35rem; color: var(--navy); margin: 2rem 0; }

/* Resource cards */
.res-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.res-card { background: #fff; border-radius: 8px; padding: 2rem; box-shadow: var(--shadow-soft); border: 1px solid rgba(23,32,47,0.06); transition: transform 0.4s var(--ease); }
.res-card:hover { transform: translateY(-6px); }
.res-card .res-icon { font-size: 1.8rem; color: var(--gold); margin-bottom: 0.8rem; }
.res-card h3 { font-family: var(--font-display); font-size: 1.4rem; color: var(--navy); margin-bottom: 0.5rem; }
.res-card p { color: var(--muted); }

/* Contact form */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 6vw, 4rem); align-items: start; }
.form-field { margin-bottom: 1.2rem; }
.form-field label { display: block; font-family: var(--font-sans); font-size: 0.74rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--navy); margin-bottom: 0.5rem; font-weight: 600; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; padding: 0.9rem 1rem; border: 1.5px solid rgba(23,32,47,0.15); border-radius: 4px; font-family: var(--font-serif); font-size: 1.05rem; background: #fff; color: var(--ink); transition: border-color 0.25s;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus { outline: none; border-color: var(--gold); }
.contact-info-card { background: var(--navy-900); color: var(--cream); border-radius: 10px; padding: 2.4rem; }
.contact-info-card h3 { font-family: var(--font-display); color: var(--cream); font-size: 1.6rem; margin-bottom: 1.2rem; }
.contact-info-card .ci-row { margin-bottom: 1.1rem; }
.contact-info-card .ci-label { font-family: var(--font-sans); font-size: 0.68rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold-2); }
.contact-info-card .ci-val { color: rgba(247,240,224,0.9); font-size: 1.08rem; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: var(--navy-900); color: rgba(247,240,224,0.7); padding: clamp(3.5rem, 7vw, 5rem) 0 2rem; }
.footer-rule { height: 3px; background: linear-gradient(90deg, transparent, var(--gold), transparent); margin-bottom: 3rem; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 2rem; }
.footer-logo { font-family: var(--font-display); font-weight: 700; font-size: 1.4rem; color: var(--cream); }
.footer-tagline { font-style: italic; margin: 0.6rem 0 1.2rem; color: rgba(247,240,224,0.6); }
.footer-contact { font-size: 0.95rem; margin-bottom: 0.3rem; }
.footer h4 { font-family: var(--font-sans); font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-2); margin-bottom: 1.1rem; }
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 0.6rem; }
.footer ul a { font-size: 0.95rem; transition: color 0.25s; }
.footer ul a:hover { color: var(--gold-2); }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.5rem; margin-top: 3rem; padding-top: 1.6rem; border-top: 1px solid rgba(247,240,224,0.12); font-size: 0.82rem; color: rgba(247,240,224,0.5); }

/* ============================================================
   LIGHTBOX
   ============================================================ */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(6,12,22,0.92); display: none; align-items: center; justify-content: center; padding: 4vh 4vw; opacity: 0; transition: opacity 0.3s; cursor: zoom-out; }
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-height: 92vh; max-width: 92vw; width: auto; border-radius: 6px; box-shadow: 0 40px 80px -20px rgba(0,0,0,0.8); }
.lightbox-close { position: absolute; top: 1.4rem; right: 1.8rem; color: var(--cream); font-size: 2rem; background: none; border: none; cursor: pointer; line-height: 1; }

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .quick-shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .quick-shop-head { grid-template-columns: 1fr; gap: 1rem; }
  .book-row, .book-row-card-featured .book-row { grid-template-columns: 1fr; }
  .book-row-media { min-height: 420px; }
  .bible-editions { min-height: 0; }
  .bible-edition { max-width: 280px; justify-self: center; }
  .spotlight-grid, .spotlight.reverse .spotlight-grid { grid-template-columns: 1fr; text-align: center; }
  .spotlight.reverse .spotlight-media { order: 0; }
  .spotlight-media img, .spotlight.reverse .spotlight-media img { transform: none; max-width: 320px; margin: 0 auto; }
  .spotlight-stats, .spotlight-actions { justify-content: center; }
  .spotlight-text { margin-left: auto; margin-right: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .quick-shop-grid { grid-template-columns: 1fr; }
  .quick-shop-item { min-height: 125px; }
}
@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed; top: 0; right: 0; height: 100vh; width: min(320px, 82vw);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 1.8rem;
    background: rgba(11,21,38,0.98); backdrop-filter: blur(10px); padding: 2rem 2.4rem;
    transform: translateX(100%); transition: transform 0.4s var(--ease); box-shadow: -20px 0 50px -20px rgba(0,0,0,0.7);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; }
  .hero-content { padding-top: 5rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
  .book-row-media { min-height: 0; }
  .book-row-cover { max-width: 260px; }
  .book-actions .btn { width: 100%; justify-content: center; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
  .hero-bg { animation: none; }
  .marquee { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .bible-edition { transition: none; }
  .bible-edition:hover { transform: none; }
  * { scroll-behavior: auto !important; }
}
