:root {
  --green-deep: #14361a;
  --green: #2c5e2e;
  --gold: #c9a04e;
  --gold-light: #e0c178;
  --cream: #FBF8F1;
  --ink: #1f2a1f;
  --grey: #5c6359;
  --grey-light: #8c9388;
  --white: #ffffff;
}

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

body {
  font-family: 'Source Sans Pro', Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
}

h1, h2, h3 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--green-deep);
  font-weight: 700;
}

a { color: var(--green); }

/* Header */
header {
  background: var(--white);
  border-bottom: 1px solid #e4ded0;
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  font-size: 21px;
  color: var(--green-deep);
  text-decoration: none;
}
.brand span { color: var(--gold); }
nav ul { list-style: none; display: flex; gap: 28px; }
nav a {
  text-decoration: none;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--green-deep);
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}
nav a:hover, nav a.active { border-bottom-color: var(--gold); }

/* Hero */
.hero {
  background: linear-gradient(170deg, var(--green-deep) 0%, #0b220e 100%);
  color: var(--white);
  padding: 70px 24px 60px;
  text-align: center;
}
.hero h1 {
  color: var(--white);
  font-size: 34px;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.3;
}
.gold-rule {
  width: 64px;
  height: 3px;
  background: var(--gold);
  margin: 22px auto 0;
}

/* Layout */
main { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.section { padding: 56px 0; border-bottom: 1px solid #e8e2d2; }
.section:last-of-type { border-bottom: none; }
.section h2 {
  font-size: 27px;
  margin-bottom: 18px;
  position: relative;
  padding-bottom: 12px;
}
.section h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 48px; height: 3px;
  background: var(--gold);
}
.section p { font-size: 17px; margin-bottom: 16px; color: #2c3424; }

/* Book intro layout */
.book-intro {
  display: flex;
  gap: 44px;
  align-items: flex-start;
  flex-wrap: wrap;
  padding-top: 56px;
}
.book-intro img {
  width: 280px;
  max-width: 100%;
  border-radius: 4px;
  box-shadow: 0 14px 34px rgba(20,54,26,0.25);
  flex-shrink: 0;
}
.book-intro .text { flex: 1; min-width: 280px; }
.book-intro .quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 19px;
  color: var(--green-deep);
  border-left: 3px solid var(--gold);
  padding-left: 18px;
  margin: 18px 0;
}

/* Highlights */
.highlights { list-style: none; margin: 20px 0; }
.highlights li {
  padding: 11px 0 11px 30px;
  position: relative;
  font-size: 17px;
  border-bottom: 1px solid #e8e2d2;
}
.highlights li:last-child { border-bottom: none; }
.highlights li::before {
  content: "✦";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-size: 14px;
  top: 13px;
}

/* Mission box */
.mission-box {
  background: var(--green-deep);
  color: #e8ecdf;
  border-radius: 6px;
  padding: 32px 36px;
  margin-top: 10px;
}
.mission-box p { color: #e8ecdf; }
.mission-box strong { color: var(--gold-light); }

/* Author bio */
.bio { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }
.bio img {
  width: 150px; height: 150px;
  border-radius: 50%;
  object-fit: cover;
  border: 4px solid var(--gold);
  flex-shrink: 0;
}
.bio .text { flex: 1; min-width: 240px; }

/* Retailer buttons */
.retailers {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}
.btn {
  display: inline-block;
  background: var(--green-deep);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.03em;
  padding: 14px 28px;
  border-radius: 3px;
  border: 2px solid var(--green-deep);
  transition: all 0.2s ease;
  cursor: pointer;
}
.btn:hover { background: #0e2911; }
.btn-gold { background: var(--gold); border-color: var(--gold); color: var(--green-deep); }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--green-deep); }
.btn-outline:hover { background: var(--green-deep); color: var(--white); }

/* Lead magnet callout */
.lead-magnet {
  background: var(--white);
  border: 1px solid #e4ded0;
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  padding: 30px 32px;
}
.lead-magnet h3 { font-size: 21px; margin-bottom: 14px; }
.lead-magnet ul { list-style: none; margin-bottom: 18px; }
.lead-magnet li {
  padding: 8px 0 8px 26px;
  position: relative;
  font-size: 16px;
}
.lead-magnet li::before {
  content: "+";
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 700;
  font-size: 18px;
}

/* Reviews */
.review {
  background: var(--white);
  border: 1px solid #e8e2d2;
  border-radius: 6px;
  padding: 24px 28px;
  margin-bottom: 16px;
}
.review p { font-style: italic; font-size: 16px; margin-bottom: 10px; color: #333; }
.review .attribution { font-weight: 700; color: var(--green-deep); font-size: 14.5px; font-style: normal; }

/* Forms */
.contact-box {
  background: var(--white);
  border: 1px solid #e4ded0;
  border-radius: 6px;
  padding: 36px;
}
.contact-box h3 { font-size: 22px; margin-bottom: 6px; }
.contact-box .sub { color: var(--grey); font-size: 15px; margin-bottom: 22px; }
form .field { margin-bottom: 16px; }
form label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--green-deep);
}
form input, form textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid #d4cfc0;
  border-radius: 4px;
  font-family: inherit;
  font-size: 15px;
  background: var(--cream);
}
form input:focus, form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.checkbox-field { display: flex; align-items: flex-start; gap: 10px; }
.checkbox-field input { width: auto; margin-top: 3px; }
.checkbox-field label { font-weight: 400; font-size: 15px; margin-bottom: 0; }
.legal-note { font-size: 12.5px; color: var(--grey-light); margin-top: 14px; }

/* Devotional page */
.day-card {
  background: var(--white);
  border: 1px solid #e8e2d2;
  border-radius: 6px;
  padding: 28px 32px;
  margin-bottom: 20px;
}
.day-card .day-label {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.day-card h3 { font-size: 21px; margin-bottom: 12px; }
.day-card .prayer {
  font-style: italic;
  color: #2c3424;
  margin-bottom: 14px;
  font-size: 16.5px;
}
.day-card .scripture {
  font-size: 14.5px;
  color: var(--grey);
  border-top: 1px solid #e8e2d2;
  padding-top: 12px;
}
.day-card .scripture strong { color: var(--green-deep); }

/* Footer */
footer {
  background: var(--green-deep);
  color: #c3cbb9;
  text-align: center;
  padding: 40px 24px;
  font-size: 14px;
}
footer .copyright { margin-top: 6px; color: #8a957e; font-size: 13px; }
footer a { color: #d8dfc9; }

/* Mobile */
@media (max-width: 640px) {
  .header-inner { flex-direction: column; gap: 12px; padding: 16px; }
  nav ul { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .hero { padding: 50px 20px 44px; }
  .hero h1 { font-size: 26px; }
  .section { padding: 40px 0; }
  .book-intro { flex-direction: column; }
  .book-intro img { width: 220px; margin: 0 auto; }
  .bio { flex-direction: column; text-align: center; }
}
