/* ===========================
   VARIABLES & RESET
   =========================== */
:root {
  --gold: #C9A84C;
  --gold-dark: #A07E2E;
  --gold-light: #E8D48B;
  --black: #1A1A1A;
  --off-white: #FAFAF7;
  --gray-light: #F5F3EE;
  --white: #FFFFFF;
  --text: #2C2C2C;
  --text-light: #666666;
  --gray: #999999;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--off-white);
  line-height: 1.6;
  padding-bottom: 64px;
}

a {
  text-decoration: none;
  color: inherit;
}

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

/* ===========================
   TYPOGRAPHY
   =========================== */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', serif;
  line-height: 1.2;
}

h1 { font-size: 2.8rem; font-weight: 800; }
h2 { font-size: 2.2rem; font-weight: 700; }
h3 { font-size: 1.3rem; font-weight: 600; }

p { line-height: 1.8; }

/* ===========================
   GOOGLE FONTS IMPORT
   =========================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,800;1,400;1,700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ===========================
   LAYOUT HELPERS
   =========================== */
.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 12px auto 0;
  font-size: 1.05rem;
}

.eyebrow {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 12px;
  font-family: 'Inter', sans-serif;
}

/* ===========================
   SOCIAL BAR
   =========================== */
.social-bar {
  background: var(--black);
  color: #ccc;
  font-size: 0.8rem;
  padding: 9px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.social-bar span {
  flex: 1;
}

.social-bar .social-icons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

.social-bar .social-icons a {
  color: var(--gold);
  font-size: 1rem;
  transition: color 0.2s;
}

.social-bar .social-icons a:hover {
  color: var(--gold-light);
}

/* ===========================
   HEADER
   =========================== */
header {
  position: sticky;
  top: 0;
  background: var(--white);
  z-index: 1000;
  border-bottom: 1px solid #eeebe4;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo img {
  height: 48px;
}

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

header nav a {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  transition: color 0.2s;
}

header nav a:hover {
  color: var(--gold);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 6px;
  font-weight: 700 !important;
  transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
  background: var(--gold-dark) !important;
  transform: translateY(-1px);
  color: var(--white) !important;
}

.mobile-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--text);
  cursor: pointer;
  padding: 6px;
}

/* ===========================
   BUTTONS
   =========================== */
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
  text-align: center;
}

.btn-gold:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
  color: var(--white);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--black);
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  border: 2px solid var(--black);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  text-align: center;
}

.btn-outline:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-gold {
  display: inline-block;
  background: transparent;
  color: var(--gold);
  padding: 13px 30px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  font-family: 'Inter', sans-serif;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition: background 0.25s, color 0.25s, transform 0.2s;
  text-align: center;
}

.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   BUY BUTTONS
   =========================== */
.buy-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.buy-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 26px;
  background: var(--gold);
  color: var(--white);
  border-radius: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
}

.buy-btn:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201,168,76,0.35);
  color: var(--white);
}

.buy-btn i {
  font-size: 1.1rem;
}

.buy-formats {
  font-size: 0.85rem;
  color: var(--gray);
  text-align: center;
}

/* Buy links (outline style used on book/thank-you) */
.buy-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.buy-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 2px solid var(--black);
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--black);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.buy-link:hover {
  background: var(--black);
  color: var(--white);
  transform: translateY(-2px);
}

/* ===========================
   GOLD DECORATIVE ELEMENTS
   =========================== */
.gold-divider {
  width: 48px;
  height: 3px;
  background: var(--gold);
  margin: 0 auto 28px;
  border-radius: 2px;
}

.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 0 auto 32px;
}

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

.feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid #eeebe4;
  transition: transform 0.25s, box-shadow 0.25s;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
}

.feature-card .icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 16px;
  line-height: 1;
}

.feature-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ===========================
   QUOTE SECTION
   =========================== */
.quote-section {
  background: var(--black);
  padding: 80px 24px;
  text-align: center;
}

.quote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.55rem;
  color: var(--white);
  max-width: 720px;
  margin: 0 auto 20px;
  line-height: 1.6;
}

.quote-section cite {
  color: var(--gold);
  font-style: normal;
  font-size: 1rem;
  font-weight: 600;
}

/* ===========================
   CONNECT SECTION
   =========================== */
.connect-section {
  background: var(--off-white);
  padding: 80px 24px;
}

.social-links-big {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 36px 40px;
  background: var(--white);
  border: 1px solid #eeebe4;
  border-radius: 12px;
  min-width: 180px;
  flex: 1;
  max-width: 220px;
  transition: transform 0.25s, box-shadow 0.25s;
  color: var(--text);
}

.social-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.1);
  color: var(--text);
}

.social-card .social-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 14px;
}

.social-card h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 4px;
}

.social-card p {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===========================
   FORMS
   =========================== */
.opt-in-form {
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 12px;
  padding: 36px 32px;
}

.opt-in-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  margin-bottom: 6px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 20px;
}

.opt-in-form input[type="text"],
.opt-in-form input[type="email"],
.opt-in-form input[type="tel"],
.prayer-form input[type="text"],
.prayer-form input[type="email"],
.prayer-form input[type="tel"],
.prayer-form textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid #ddd;
  border-radius: 6px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: var(--off-white);
  margin-bottom: 12px;
  transition: border-color 0.2s;
  display: block;
}

.opt-in-form input:focus,
.prayer-form input:focus,
.prayer-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}

.prayer-form textarea {
  min-height: 130px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.checkbox-group input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--gold);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

.checkbox-group label {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.5;
  cursor: pointer;
}

.opt-in-form .btn-gold,
.prayer-form .btn-gold {
  width: 100%;
  margin-top: 8px;
}

/* Prayer form specific */
.prayer-form {
  max-width: 600px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 48px 40px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.1);
}

/* ===========================
   BOOK DISPLAY (book.html)
   =========================== */
.book-display {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.book-display img {
  width: 280px;
  flex-shrink: 0;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.18);
}

.book-info h2 {
  font-size: 2.4rem;
  margin-bottom: 6px;
}

.book-info .author {
  font-size: 1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
}

.book-info p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.book-info ul {
  list-style: none;
  margin-bottom: 28px;
}

.book-info ul li {
  padding: 7px 0;
  font-size: 0.95rem;
  color: var(--text);
  padding-left: 24px;
  position: relative;
}

.book-info ul li::before {
  content: '✦';
  color: var(--gold);
  position: absolute;
  left: 0;
  font-size: 0.75rem;
  top: 9px;
}

/* ===========================
   ABOUT PAGE
   =========================== */
.about-hero {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  gap: 64px;
  align-items: center;
}

.about-photo {
  flex-shrink: 0;
  width: 340px;
  height: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.about-text h1 {
  margin-bottom: 8px;
}

.about-text .subtitle {
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 20px;
  font-family: 'Inter', sans-serif;
}

.about-text p {
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 16px;
  font-size: 1.05rem;
}

/* ===========================
   THANK YOU PAGE
   =========================== */
.thankyou-hero {
  padding: 80px 24px;
  text-align: center;
  background: var(--off-white);
}

.thankyou-hero h1 {
  margin-bottom: 16px;
}

.thankyou-hero h1 span {
  color: var(--gold);
}

.thankyou-hero > p {
  max-width: 520px;
  margin: 0 auto 40px;
  color: var(--text-light);
  font-size: 1.05rem;
}

.upsell-box {
  max-width: 620px;
  margin: 0 auto;
  background: var(--white);
  border: 2px solid var(--gold);
  border-radius: 16px;
  padding: 56px 48px;
  text-align: center;
}

.upsell-box h2 {
  margin-bottom: 16px;
}

.upsell-box .price {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 800;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.upsell-box .price-detail {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 24px;
  font-weight: 500;
}

.upsell-box p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   SECTION BACKGROUNDS
   =========================== */
.section-gold-bg {
  background: var(--gray-light);
  padding: 80px 24px;
}

.section-white {
  background: var(--white);
  padding: 80px 24px;
}

.section-off-white {
  background: var(--off-white);
  padding: 80px 24px;
}

.section-black {
  background: var(--black);
  padding: 80px 24px;
}

/* ===========================
   STICKY BOOK BANNER
   =========================== */
.book-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--black);
  color: var(--white);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  z-index: 999;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.book-banner p {
  font-size: 0.9rem;
  line-height: 1.4;
}

.book-banner p span {
  color: var(--gold);
  font-weight: 700;
}

.book-banner a {
  background: var(--gold);
  color: var(--white);
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
  transition: background 0.2s;
  flex-shrink: 0;
}

.book-banner a:hover {
  background: var(--gold-dark);
}

/* ===========================
   FOOTER
   =========================== */
footer {
  background: var(--black);
  color: #aaa;
  padding: 48px 24px;
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.footer-social a {
  color: var(--gold);
  font-size: 1.3rem;
  transition: color 0.2s, transform 0.2s;
}

.footer-social a:hover {
  color: var(--gold-light);
  transform: translateY(-2px);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-links a {
  font-size: 0.9rem;
  color: #aaa;
  transition: color 0.2s;
}

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

.copyright {
  font-size: 0.8rem;
  color: #666;
}

/* ===========================
   BENEFIT LIST
   =========================== */
.benefit-list {
  list-style: none;
  text-align: left;
  display: inline-block;
  margin-bottom: 36px;
}

.benefit-list li {
  padding: 8px 0;
  font-size: 1.05rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 12px;
}

.benefit-list li i {
  color: var(--gold);
  flex-shrink: 0;
}

/* ===========================
   RESPONSIVE
   =========================== */
@media (max-width: 900px) {
  .book-display {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .book-display img {
    width: 220px;
  }

  .book-info .buy-links {
    justify-content: center;
  }

  .about-hero {
    flex-direction: column;
    text-align: center;
  }

  .about-photo {
    width: 280px;
    height: 320px;
    margin: 0 auto;
  }

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

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

@media (max-width: 768px) {
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }

  .social-bar {
    flex-direction: column;
    gap: 8px;
    font-size: 0.75rem;
  }

  .mobile-toggle {
    display: block;
  }

  header nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    border-top: 1px solid #eeebe4;
    gap: 16px;
    align-items: flex-start;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  }

  header nav.active {
    display: flex;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

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

  .buy-buttons {
    flex-direction: column;
    align-items: center;
  }

  .buy-btn {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .quote-section blockquote {
    font-size: 1.25rem;
  }

  .social-links-big {
    flex-direction: column;
    align-items: center;
  }

  .social-card {
    max-width: 100%;
    width: 100%;
  }

  .prayer-form {
    padding: 32px 24px;
  }

  .upsell-box {
    padding: 40px 24px;
  }

  .book-banner {
    flex-direction: column;
    gap: 10px;
    padding: 14px 20px;
    text-align: center;
  }

  body {
    padding-bottom: 110px;
  }
}

@media (max-width: 600px) {
  .funnel-layout {
    flex-direction: column-reverse !important;
  }
  .funnel-right {
    flex: none !important;
    width: 100% !important;
    text-align: center;
  }
  .funnel-right img {
    max-width: 220px !important;
    margin: 0 auto !important;
  }
  .funnel-left {
    text-align: center;
  }
  .funnel-left .btn-row {
    justify-content: center;
  }
}
