:root {
  --forest: #2C4A3E;
  --forest-dark: #1a2e27;
  --forest-light: #3d6355;
  --cream: #F7F3EE;
  --warm-white: #FDFAF6;
  --gold: #B8935A;
  --gold-light: #D4A96A;
  --charcoal: #2A2A2A;
  --mid-gray: #6B6B6B;
  --light-gray: #E8E4DF;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--warm-white);
  color: var(--charcoal);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26, 46, 39, 0.97);
  backdrop-filter: blur(8px);
  padding: 0 48px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(184,147,90,0.25);
}

.nav-logo {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 36px;
  list-style: none;
}

.nav-links a {
  color: rgba(247,243,238,0.75);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 700;
  transition: color 0.2s;
}

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

/* ─── HERO ─── */
.hero {
  min-height: 100vh;
  background: var(--forest-dark);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 40%, rgba(184,147,90,0.1) 0%, transparent 55%),
    radial-gradient(ellipse at 10% 90%, rgba(44,74,62,0.6) 0%, transparent 45%);
  pointer-events: none;
}

.hero-text {
  padding: 120px 72px 80px 80px;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 16px;
}

h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  color: rgba(247,243,238,0.72);
  font-style: italic;
  margin-bottom: 24px;
  line-height: 1.6;
  max-width: 480px;
}

.hero-tagline {
  font-size: 0.82rem;
  color: rgba(247,243,238,0.45);
  letter-spacing: 0.06em;
  margin-bottom: 48px;
  font-weight: 300;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--gold);
  color: var(--forest-dark);
  padding: 16px 36px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
  margin-right: 16px;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(247,243,238,0.25);
  color: var(--cream);
  padding: 16px 36px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-light);
}

.hero-image {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.hero-photo-frame {
  position: relative;
  width: 360px;
  height: 450px;
  animation: fadeUp 1.1s 0.5s ease forwards;
  opacity: 0;
}

.hero-photo-frame::before {
  content: '';
  position: absolute;
  top: -14px; right: -14px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold);
  opacity: 0.35;
  z-index: 0;
}

.book-cover-hero {
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #2C4A3E 0%, #1a2e27 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.bcv-inner { text-align: center; padding: 40px; }

.bcv-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.bcv-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 16px;
}

.bcv-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 20px;
}

.bcv-title em {
  color: var(--gold-light);
  font-style: italic;
}

.bcv-sub {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.45);
}

.hero-badge {
  position: absolute;
  bottom: -20px;
  left: -28px;
  background: var(--gold);
  color: var(--forest-dark);
  padding: 14px 22px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  z-index: 3;
  line-height: 1.5;
}

/* ─── BOOK SECTION ─── */
.book-section {
  background: var(--cream);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 80px;
  align-items: center;
}

.book-cover-display { position: relative; }

.book-cover-wrapper {
  position: relative;
  box-shadow:
    -8px 8px 0 var(--forest),
    -16px 16px 0 rgba(44,74,62,0.25),
    0 30px 80px rgba(0,0,0,0.15);
  transform: rotate(-2deg);
  transition: transform 0.4s;
}

.book-cover-wrapper:hover { transform: rotate(0deg) scale(1.03); }

.book-cover-card {
  width: 100%;
  aspect-ratio: 6/9;
  background: linear-gradient(150deg, var(--forest) 0%, var(--forest-dark) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 48px 36px;
}

.bcc-eyebrow {
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.45);
  margin-bottom: 10px;
}

.bcc-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 16px;
}

.bcc-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin-bottom: 20px;
}

.bcc-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 900;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 24px;
}

.bcc-title em {
  color: var(--gold-light);
  font-style: italic;
  display: block;
}

.bcc-chapters {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.45);
  margin-bottom: 16px;
}

.bcc-award {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
}

.section-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.section-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 3rem);
  font-weight: 700;
  color: var(--forest-dark);
  line-height: 1.15;
  margin-bottom: 24px;
}

h2 em { font-style: italic; color: var(--forest-light); }

.lead-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--mid-gray);
  font-style: italic;
  line-height: 1.75;
  margin-bottom: 20px;
}

p { font-size: 1rem; line-height: 1.85; color: var(--mid-gray); margin-bottom: 16px; }

/* ─── CHAPTERS ─── */
.chapters-section {
  background: var(--forest-dark);
  padding: 100px 80px;
}

.chapters-header { text-align: center; margin-bottom: 56px; }
.chapters-header h2 { color: var(--cream); }

.chapters-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px;
  background: rgba(184,147,90,0.15);
}

.chapter-card {
  background: rgba(26,46,39,0.97);
  padding: 44px 36px;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  display: block;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(184,147,90,0.08);
}

.chapter-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s;
}

.chapter-card:hover { background: rgba(44,74,62,0.9); }
.chapter-card:hover::after { transform: scaleX(1); }

.chapter-number {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 900;
  color: rgba(184,147,90,0.12);
  line-height: 1;
  margin-bottom: 6px;
  transition: color 0.3s;
}

.chapter-card:hover .chapter-number { color: rgba(184,147,90,0.3); }

.chapter-label {
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 8px;
}

.chapter-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
  line-height: 1.25;
  margin-bottom: 14px;
}

.chapter-excerpt {
  font-size: 0.88rem;
  color: rgba(247,243,238,0.5);
  line-height: 1.75;
  margin-bottom: 22px;
}

.chapter-link {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s;
}

.chapter-link::after { content: '→'; }
.chapter-card:hover .chapter-link { gap: 12px; }

/* ─── PULL QUOTE ─── */
.pullquote-section {
  background: var(--gold);
  padding: 80px;
  text-align: center;
}

.pullquote-section blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.5rem, 2.8vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--forest-dark);
  line-height: 1.45;
  max-width: 860px;
  margin: 0 auto 20px;
}

.pullquote-section cite {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--forest);
  font-weight: 700;
  font-style: normal;
}

/* ─── ABOUT ─── */
.about-section {
  background: var(--warm-white);
  padding: 100px 80px;
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 80px;
  align-items: center;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 24px;
  margin: 40px 0;
}

.stat-item {
  text-align: center;
  padding: 20px;
  border-top: 2px solid var(--gold);
}

.stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 900;
  color: var(--forest);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mid-gray);
  font-weight: 700;
}

.about-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, var(--forest) 0%, var(--forest-dark) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.about-img-placeholder span {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: rgba(247,243,238,0.35);
  font-style: italic;
  line-height: 1.8;
}

.about-img-placeholder small {
  display: block;
  font-size: 0.75rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-style: normal;
}

/* ─── CONTACT ─── */
.contact-section {
  background: var(--forest);
  padding: 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: rgba(247,243,238,0.8);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s;
}

.contact-item:hover { color: var(--gold-light); }

.contact-icon {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(184,147,90,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.contact-form {
  background: rgba(255,255,255,0.04);
  padding: 44px;
  border: 1px solid rgba(184,147,90,0.18);
}

.contact-form h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 28px;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.5);
  font-weight: 700;
  margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(184,147,90,0.22);
  color: var(--cream);
  padding: 12px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { height: 96px; resize: vertical; }
.form-group select option { background: var(--forest-dark); }

.btn-submit {
  width: 100%;
  background: var(--gold);
  color: var(--forest-dark);
  border: none;
  padding: 17px;
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 4px;
}

.btn-submit:hover { background: var(--gold-light); }

/* ─── FOOTER ─── */
footer {
  background: var(--forest-dark);
  padding: 44px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(184,147,90,0.18);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--cream);
}

.footer-brand span {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-style: normal;
  margin-top: 4px;
}

.footer-copy { font-size: 0.75rem; color: rgba(247,243,238,0.3); }

.footer-licenses {
  font-size: 0.72rem;
  color: rgba(247,243,238,0.35);
  text-align: right;
  line-height: 1.7;
}

/* ─── CHAPTER PAGE ─── */
.chapter-hero {
  background: var(--forest-dark);
  padding: 140px 80px 80px;
  position: relative;
  overflow: hidden;
}

.chapter-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 40%, rgba(184,147,90,0.08) 0%, transparent 55%);
  pointer-events: none;
}

.chapter-hero-number {
  font-family: 'Playfair Display', serif;
  font-size: 10rem;
  font-weight: 900;
  color: rgba(184,147,90,0.08);
  position: absolute;
  right: 60px;
  top: 40px;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.chapter-hero-label {
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.chapter-hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gold);
}

.chapter-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 4.5vw, 5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.1;
  max-width: 700px;
  position: relative;
  z-index: 2;
}

.chapter-nav-strip {
  background: var(--forest);
  padding: 16px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(184,147,90,0.15);
}

.chapter-nav-strip a {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.6);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chapter-nav-strip a:hover { color: var(--gold-light); }

.chapter-body {
  max-width: 780px;
  margin: 0 auto;
  padding: 80px 40px;
}

.chapter-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin: 48px 0 20px;
  padding-top: 16px;
  border-top: 1px solid var(--light-gray);
}

.chapter-body h2:first-child { border-top: none; margin-top: 0; padding-top: 0; }

.chapter-body p {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
  margin-bottom: 20px;
  font-family: 'Lato', sans-serif;
}

.chapter-body .opening-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--forest);
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 24px;
  margin: 32px 0;
  line-height: 1.7;
}

.chapter-cta-strip {
  background: var(--cream);
  border-top: 1px solid var(--light-gray);
  padding: 60px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

.chapter-cta-strip .cta-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--forest-dark);
  margin-bottom: 8px;
}

.chapter-cta-strip .cta-text p { margin: 0; font-size: 0.95rem; }

/* ─── BOOK PAGE ─── */
.book-hero {
  background: var(--forest-dark);
  padding: 140px 80px 80px;
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 72px;
  align-items: start;
}

.book-toc {
  background: var(--cream);
  padding: 80px;
}

.book-toc h2 {
  text-align: center;
  margin-bottom: 48px;
}

.toc-item {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--light-gray);
  text-decoration: none;
  color: inherit;
  transition: padding-left 0.3s;
}

.toc-item:hover { padding-left: 12px; }

.toc-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  min-width: 48px;
}

.toc-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--forest-dark);
  margin-bottom: 4px;
}

.toc-info p { font-size: 0.88rem; margin: 0; }

/* ─── CHAPTERS INDEX ─── */
.chapters-index-hero {
  background: var(--forest-dark);
  padding: 140px 80px 80px;
  text-align: center;
}

.chapters-index-hero h1 { color: var(--cream); max-width: 700px; margin: 0 auto; }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-text > * {
  animation: fadeUp 0.8s ease forwards;
  opacity: 0;
}

.hero-eyebrow { animation-delay: 0.1s; }
h1 { animation-delay: 0.25s; }
.hero-subtitle { animation-delay: 0.4s; }
.hero-tagline { animation-delay: 0.5s; }
.hero-cta { animation-delay: 0.65s; }

/* ─── RESPONSIVE ─── */
@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero-text { padding: 100px 40px 60px; }
  .book-section { grid-template-columns: 1fr; padding: 60px 40px; }
  .chapters-section { padding: 60px 24px; }
  .about-section { grid-template-columns: 1fr; padding: 60px 40px; }
  .contact-section { grid-template-columns: 1fr; padding: 60px 40px; }
  footer { flex-direction: column; gap: 20px; text-align: center; padding: 40px; }
  .footer-licenses { text-align: center; }
  nav { padding: 0 24px; }
  .nav-links { gap: 20px; }
  .chapter-hero { padding: 120px 40px 60px; }
  .chapter-body { padding: 60px 24px; }
  .chapter-cta-strip { flex-direction: column; padding: 40px 24px; text-align: center; }
  .book-hero { grid-template-columns: 1fr; padding: 120px 40px 60px; }
  .book-toc { padding: 60px 24px; }
  .chapter-nav-strip { padding: 16px 24px; }
}
