/* ============================================================
   ACTS 5:42 — CEASE NOT | Global Stylesheet
   Direction C: Modern Pulpit | Navy / Gold / White
   Fonts: Cormorant Garamond (headings) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Inter:wght@400;500;600&display=swap');

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

:root {
  --navy:       #1B3A5C;
  --navy-dark:  #122840;
  --gold:       #C8A84B;
  --gold-light: #E8C97A;
  --white:      #FFFFFF;
  --cream:      #F9F6F0;
  --charcoal:   #1A1A2E;
  --muted:      #6B7280;
  --border:     rgba(27,58,92,0.12);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;
  --max-width:  1200px;
  --section-pad: 5rem 1.5rem;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  line-height: 1.15;
  color: var(--navy);
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.serif { font-family: var(--font-serif); }
.gold-text { color: var(--gold); }
.muted { color: var(--muted); font-size: 0.9rem; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.2s ease;
  border: 2px solid transparent;
  text-align: center;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-primary:hover {
  background: var(--navy-dark);
  border-color: var(--navy-dark);
}
.btn-gold {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-white:hover {
  background: var(--white);
  color: var(--navy);
}

/* ── Gold Rule ── */
.gold-rule {
  width: 60px;
  height: 2px;
  background: var(--gold);
  margin: 1rem 0 1.5rem;
}
.gold-rule.centered { margin: 1rem auto 1.5rem; }

/* ── Section Labels ── */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 1.5rem;
}
.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-top {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.04em;
}
.nav-logo-sub {
  font-family: var(--font-serif);
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-top: 2px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--charcoal);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--navy); }
.nav-cta {
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--navy);
  padding: 0.5rem 1.1rem;
  border-radius: 4px;
  transition: all 0.2s !important;
}
.nav-cta:hover {
  background: var(--navy) !important;
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1.5rem;
  gap: 1rem;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 1rem;
  font-weight: 500;
  color: var(--charcoal);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}

/* Page offset for fixed nav */
.page-content { padding-top: 72px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  background: var(--navy-dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-men-at-cross.jpg');
  background-size: cover;
  background-position: center top;
  opacity: 0.35;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(18,40,64,0.95) 40%, rgba(18,40,64,0.5) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
  padding: 5rem 1.5rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 900px) {
  .hero-content {
    margin-left: calc((100vw - var(--max-width)) / 2 + 1.5rem);
    margin-right: 0;
  }
}
.hero-scripture {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.9;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}
.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.85);
  margin-bottom: 2rem;
  max-width: 560px;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.hero-actions .below-btn {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
  width: 100%;
  margin-top: -0.25rem;
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--cream);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem;
}
.trust-bar-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem 3rem;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--navy);
}
.trust-item::before {
  content: '✦';
  color: var(--gold);
  font-size: 0.7rem;
}

/* ============================================================
   WHO THIS IS FOR
   ============================================================ */
.who-section {
  padding: var(--section-pad);
  background: var(--white);
}
.who-section .container {
  max-width: 780px;
  text-align: center;
}
.who-section p {
  font-size: 1.1rem;
  color: var(--charcoal);
  line-height: 1.8;
}
.who-section p + p { margin-top: 1rem; }

/* ============================================================
   FEATURED BOOKS
   ============================================================ */
.books-section {
  padding: var(--section-pad);
  background: var(--cream);
}
.books-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.books-section .section-header p {
  color: var(--muted);
  margin-top: 0.5rem;
}
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2.5rem;
}
.book-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.book-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(27,58,92,0.12);
}
.book-card-cover {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.book-card-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.book-card-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  text-align: center;
  background: var(--navy);
}
.book-card-placeholder h4 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.3;
  margin-bottom: 0.5rem;
}
.book-card-placeholder span {
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.book-card-body {
  padding: 1.25rem;
}
.book-card-body h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  margin-bottom: 0.4rem;
  color: var(--navy);
  line-height: 1.3;
}
.book-card-body p {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 1rem;
  line-height: 1.5;
}
.book-card-body .btn { width: 100%; font-size: 0.85rem; padding: 0.65rem 1rem; }
.books-section-cta { text-align: center; }

/* ============================================================
   OPT-IN / LEAD MAGNET
   ============================================================ */
.optin-section {
  background: var(--navy);
  padding: var(--section-pad);
}
.optin-inner {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}
.optin-section h2 { color: var(--white); }
.optin-section .gold-rule { background: var(--gold); }
.optin-sub {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.optin-body {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 2rem;
}
.optin-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.optin-form input {
  width: 100%;
  padding: 0.9rem 1.25rem;
  font-size: 1rem;
  font-family: var(--font-sans);
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 4px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.optin-form input::placeholder { color: rgba(255,255,255,0.4); }
.optin-form input:focus { border-color: var(--gold); }
.optin-form .btn { width: 100%; font-size: 1rem; padding: 1rem; }
.optin-privacy {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  margin-top: 0.5rem;
}

/* ============================================================
   ABOUT SNIPPET
   ============================================================ */
.about-snippet {
  padding: var(--section-pad);
  background: var(--white);
}
.about-snippet-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-snippet-inner { grid-template-columns: 1fr 1fr; }
}
.about-image-block {
  background: var(--cream);
  border-radius: 6px;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.about-image-block svg { opacity: 0.85; }
.about-text h2 { margin-bottom: 0.5rem; }
.about-text p { color: var(--charcoal); line-height: 1.8; margin-bottom: 1rem; }
.about-text blockquote {
  border-left: 3px solid var(--gold);
  padding-left: 1.25rem;
  margin: 1.5rem 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--navy);
  line-height: 1.6;
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: var(--navy);
  padding: 5rem 1.5rem 4rem;
  text-align: center;
}
.page-hero h1 { color: var(--white); }
.page-hero p {
  color: rgba(255,255,255,0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0.75rem auto 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 1.5rem 2rem;
}
.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}
.footer-scripture {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.footer-ceasenoт {
  text-align: center;
  font-family: var(--font-serif);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-bottom: 2rem;
}
.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--gold); }
.footer-copy {
  text-align: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 1.5rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-body { padding: var(--section-pad); }
.about-body .container { max-width: 780px; }
.about-section { margin-bottom: 3.5rem; }
.about-section h3 { margin-bottom: 0.5rem; }
.about-section .gold-rule { margin-bottom: 1.25rem; }
.about-section p { color: var(--charcoal); line-height: 1.85; }
.about-section ul { margin: 0.75rem 0; }
.about-section ul li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--charcoal);
  line-height: 1.7;
}
.about-section ul li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 0.65rem;
  top: 0.7rem;
}
.about-cta-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 2rem 2rem;
  margin-top: 3rem;
  text-align: center;
}
.about-cta-box h3 { margin-bottom: 0.5rem; }
.about-cta-box p { color: var(--muted); margin-bottom: 1.25rem; }

/* ============================================================
   BOOKS PAGE
   ============================================================ */
.books-page-section { padding: var(--section-pad); }
.books-page-section + .books-page-section { padding-top: 0; }
.books-category-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.75rem;
  margin-bottom: 2.5rem;
}
.book-full-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: box-shadow 0.2s;
}
@media (min-width: 600px) {
  .book-full-card { grid-template-columns: 200px 1fr; }
}
.book-full-card:hover { box-shadow: 0 8px 24px rgba(27,58,92,0.1); }
.book-full-cover {
  background: var(--navy);
  min-height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.book-full-cover img { width: 100%; height: 100%; object-fit: cover; }
.book-full-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
  text-align: center;
  min-height: 200px;
  background: var(--navy);
}
.book-full-placeholder h4 {
  color: var(--white);
  font-family: var(--font-serif);
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 0.5rem;
}
.book-full-placeholder span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
}
.book-full-body {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.book-full-body h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.book-full-hook {
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.75rem;
}
.book-full-body p { color: var(--charcoal); font-size: 0.95rem; line-height: 1.7; margin-bottom: 0.75rem; }
.book-full-audience {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1.25rem;
}
.books-page-footer-cta {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 1rem;
}

/* ============================================================
   DIGITAL PRODUCTS PAGE
   ============================================================ */
.products-page { padding: var(--section-pad); }
.product-featured {
  background: var(--navy);
  border-radius: 6px;
  padding: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
}
.product-featured h3 { color: var(--white); margin-bottom: 0.5rem; }
.product-featured p { color: rgba(255,255,255,0.75); margin-bottom: 1.5rem; }
.price-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--navy);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.25rem;
}
.coming-soon-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}
.coming-soon-card {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
}
.coming-soon-card h4 { color: var(--navy); font-size: 0.95rem; margin-bottom: 0.3rem; }
.coming-soon-card .cs-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
}

/* ============================================================
   DEVOTIONAL / BLOG PAGE
   ============================================================ */
.devotional-page { padding: var(--section-pad); }
.post-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.post-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.75rem;
  transition: box-shadow 0.2s;
}
.post-card:hover { box-shadow: 0 8px 24px rgba(27,58,92,0.1); }
.post-card-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.post-card h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  line-height: 1.35;
  color: var(--navy);
}
.post-card p { font-size: 0.9rem; color: var(--muted); margin-bottom: 1.25rem; }
.post-card .read-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 1px;
}
.devotional-cta {
  background: var(--cream);
  border-radius: 6px;
  padding: 2.5rem;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid var(--border);
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-page { padding: var(--section-pad); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1.6fr; }
}
.contact-info h3 { margin-bottom: 0.5rem; }
.contact-info p { color: var(--charcoal); font-size: 0.95rem; line-height: 1.8; margin-bottom: 1.5rem; }
.contact-callout {
  background: var(--cream);
  border-left: 4px solid var(--gold);
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
  font-size: 0.9rem;
  color: var(--charcoal);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--navy);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.8rem 1rem;
  font-size: 0.95rem;
  font-family: var(--font-sans);
  border: 1.5px solid var(--border);
  border-radius: 4px;
  background: var(--white);
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--navy); }
.form-group textarea { min-height: 140px; resize: vertical; }
.contact-form .btn { align-self: flex-start; padding: 0.85rem 2.5rem; }

/* ============================================================
   PRIVACY POLICY
   ============================================================ */
.privacy-page { padding: var(--section-pad); }
.privacy-page .container { max-width: 780px; }
.privacy-page h3 { margin: 2rem 0 0.5rem; font-size: 1.1rem; }
.privacy-page p, .privacy-page ul li {
  font-size: 0.95rem;
  color: var(--charcoal);
  line-height: 1.8;
}
.privacy-page ul { margin: 0.5rem 0 1rem 1.5rem; list-style: disc; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {
  :root { --section-pad: 3.5rem 1.25rem; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .hero { min-height: 85vh; }
  .hero-content { padding: 4rem 1.25rem; }
  .books-grid { grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 1rem; }
  .about-snippet-inner { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-form .btn { width: 100%; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .trust-bar-inner { gap: 1rem 2rem; }
}
