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

:root {
  --gold: #B8860B;
  --gold-light: #D4A843;
  --ink: #1C1612;
  --parchment: #F5EDD8;
  --parchment-mid: #EDE0C4;
  --forest: #2D4A35;
  --rust: #8B3A2A;
  --muted: #6B5D4A;
  --white: #FFFDF5;
}

html { scroll-behavior: smooth; }

body {
  background: var(--parchment);
  font-family: 'Lora', Georgia, serif;
  color: var(--ink);
  min-height: 100vh;
}

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

/* ─── NAVBAR ─── */
.navbar {
  background: var(--ink);
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 60px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(184,134,11,0.25);
}

.nav-brand {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold-light);
  white-space: nowrap;
  text-decoration: none;
}

.nav-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  flex-shrink: 0;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
  border-radius: 2px;
  transition: all 0.25s ease;
  transform-origin: center;
}

.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-menu {
  display: none;
  position: fixed;
  top: 60px;
  right: 0;
  width: 250px;
  background: var(--ink);
  border-left: 1px solid rgba(184,134,11,0.25);
  border-bottom: 1px solid rgba(184,134,11,0.25);
  border-radius: 0 0 0 8px;
  box-shadow: -4px 8px 24px rgba(0,0,0,0.5);
  z-index: 999;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
}

.nav-menu.open { display: block; }

.nav-menu a {
  display: block;
  font-family: 'Crimson Pro', serif;
  font-size: 14px;
  letter-spacing: 0.06em;
  color: rgba(245,237,216,0.85);
  padding: 0.7rem 1.4rem;
  text-decoration: none;
  border-bottom: 0.5px solid rgba(184,134,11,0.1);
  transition: background 0.15s, color 0.15s;
}

.nav-menu a:hover { background: rgba(184,134,11,0.12); color: var(--gold-light); }
.nav-menu a:last-child { border-bottom: none; }

.menu-divider {
  font-family: 'Crimson Pro', serif;
  font-size: 9px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.7rem 1.4rem 0.3rem;
  background: rgba(184,134,11,0.06);
  border-top: 0.5px solid rgba(184,134,11,0.15);
  border-bottom: 0.5px solid rgba(184,134,11,0.1);
}

.nav-links { display: none !important; }

/* ─── HERO ─── */
.hero {
  background: linear-gradient(160deg, #1C1612 0%, #2D2018 40%, #2D4A35 100%);
  padding: 4rem 2rem 4.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 30% 60%, rgba(184,134,11,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 20%, rgba(45,74,53,0.25) 0%, transparent 55%);
  pointer-events: none;
}

.hero-inner { position: relative; max-width: 680px; margin: 0 auto; }

.hero-ornament {
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--gold-light);
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Crimson Pro', serif;
  opacity: 0.85;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  font-weight: 700;
  color: #F5EDD8;
  line-height: 1.12;
  margin-bottom: 0.4rem;
}

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

.hero-divider {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 1.4rem auto;
  position: relative;
}

.hero-divider::before, .hero-divider::after {
  content: '◆';
  position: absolute;
  top: -6px;
  font-size: 8px;
  color: var(--gold);
}
.hero-divider::before { left: -14px; }
.hero-divider::after { right: -14px; }

.hero-tagline {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 20px;
  color: rgba(245,237,216,0.82);
  max-width: 500px;
  margin: 0 auto 1.2rem;
  line-height: 1.6;
}

.hero-sub {
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(212,168,67,0.7);
  margin-bottom: 1.8rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.75rem 2.2rem;
  border: 1px solid var(--gold);
  color: var(--gold-light);
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  transition: background 0.2s;
}

.hero-cta:hover { background: rgba(184,134,11,0.15); }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(160deg, #1C1612 0%, #2D2018 55%, #2D4A35 100%);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: 38px;
  font-weight: 700;
  color: #F5EDD8;
  line-height: 1.15;
  position: relative;
}

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

.page-hero p {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 18px;
  color: rgba(245,237,216,0.75);
  margin-top: 0.8rem;
  position: relative;
}

.page-hero-label {
  font-family: 'Crimson Pro', serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: rgba(212,168,67,0.7);
  margin-bottom: 0.6rem;
  position: relative;
}

/* ─── DISCOVERY BAND ─── */
.discovery-band {
  background: var(--forest);
  padding: 1rem 2rem;
  text-align: center;
}

.discovery-band p {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 16px;
  color: rgba(245,237,216,0.88);
  letter-spacing: 0.04em;
}

.discovery-band strong { color: var(--gold-light); font-style: normal; }

/* ─── SECTIONS ─── */
.section {
  max-width: 780px;
  margin: 0 auto;
  padding: 2.8rem 2rem;
}

.section-label {
  font-family: 'Crimson Pro', serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 1.1rem;
}

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

.section p {
  font-size: 16px;
  line-height: 1.85;
  color: #3D3028;
  margin-bottom: 1rem;
}

.section p:last-of-type { margin-bottom: 0; }

hr.section-rule {
  border: none;
  border-top: 1px solid var(--parchment-mid);
  margin: 0 auto;
  max-width: 780px;
}

/* ─── CLUE CARD ─── */
.clue-card {
  background: var(--white);
  border-left: 3px solid var(--gold);
  padding: 1.2rem 1.5rem;
  margin: 1.6rem 0;
  border-radius: 0 6px 6px 0;
}

.clue-label {
  font-family: 'Crimson Pro', serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.clue-card p {
  font-style: italic;
  font-size: 15.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.7;
}

/* ─── TRAIL GRID ─── */
.trail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 10px;
  margin: 1.6rem 0;
}

.trail-stop {
  background: var(--white);
  border: 0.5px solid var(--parchment-mid);
  border-radius: 8px;
  padding: 1rem;
  text-align: center;
}

.stop-icon { font-size: 24px; margin-bottom: 0.4rem; }

.stop-name {
  font-family: 'Playfair Display', serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.2rem;
}

.stop-clue {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 12.5px;
  color: var(--muted);
}

/* ─── SECRET BOX ─── */
.secret-box {
  background: var(--ink);
  border-radius: 8px;
  padding: 2rem 1.8rem;
  margin: 1.6rem 0;
  position: relative;
  overflow: hidden;
}

.secret-box::after {
  content: 'ST';
  position: absolute;
  right: 1.5rem;
  bottom: -0.5rem;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  font-weight: 700;
  color: rgba(184,134,11,0.08);
  pointer-events: none;
}

.secret-label {
  font-family: 'Crimson Pro', serif;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.7rem;
}

.secret-box p {
  font-family: 'Lora', serif;
  font-size: 15.5px;
  line-height: 1.8;
  color: rgba(245,237,216,0.88);
  margin: 0;
}

.secret-box strong { color: var(--gold-light); }

/* ─── SERIES STRIP ─── */
.series-strip {
  background: var(--forest);
  padding: 2.5rem 2rem;
}

.series-strip .inner {
  max-width: 780px;
  margin: 0 auto;
}

.strip-label {
  font-family: 'Crimson Pro', serif;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(212,168,67,0.75);
  margin-bottom: 0.6rem;
}

.series-strip h2 {
  font-family: 'Playfair Display', serif;
  font-size: 28px;
  color: #F5EDD8;
  margin-bottom: 0.9rem;
}

.series-strip p {
  font-family: 'Lora', serif;
  font-size: 15.5px;
  line-height: 1.85;
  color: rgba(245,237,216,0.78);
  max-width: 620px;
}

/* ─── PROMISE GRID ─── */
.promise-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 12px;
  margin: 1.6rem 0;
}

.promise-card {
  background: var(--white);
  border: 0.5px solid var(--parchment-mid);
  border-radius: 10px;
  padding: 1.2rem 1.3rem;
}

.pc-title {
  font-family: 'Playfair Display', serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.5rem;
}

.promise-card p {
  font-size: 14px;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}

/* ─── BUTTONS ─── */
.btn-primary {
  display: inline-block;
  margin-top: 1.4rem;
  padding: 0.75rem 2rem;
  background: var(--gold);
  color: var(--parchment);
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-primary:hover { background: #9A7009; }

.btn-outline {
  display: inline-block;
  margin-top: 1.4rem;
  margin-left: 10px;
  padding: 0.72rem 1.8rem;
  border: 1px solid var(--forest);
  color: var(--forest);
  font-family: 'Crimson Pro', serif;
  font-size: 15px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: background 0.2s;
}

.btn-outline:hover { background: rgba(45,74,53,0.08); }

/* ─── BOOK CARDS ─── */
.books-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 1.8rem 0;
}

.book-card {
  background: var(--white);
  border: 0.5px solid var(--parchment-mid);
  border-radius: 10px;
  overflow: hidden;
  transition: transform 0.2s;
}

.book-card:hover { transform: translateY(-3px); }

.book-cover {
  background: linear-gradient(135deg, var(--ink) 0%, var(--forest) 100%);
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.book-cover::after {
  content: attr(data-initials);
  position: absolute;
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  color: rgba(184,134,11,0.15);
}

.book-cover-title {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 18px;
  color: var(--gold-light);
  text-align: center;
  padding: 1rem;
  position: relative;
  z-index: 1;
  line-height: 1.3;
}

.book-info { padding: 1.1rem 1.2rem; }

.book-series {
  font-family: 'Crimson Pro', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.3rem;
}

.book-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.5rem;
}

.book-desc {
  font-size: 13.5px;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.book-price {
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
}

/* ─── BUY BUTTON ─── */
.buy-btn {
  display: inline-block;
  width: 100%;
  padding: 0.65rem 1rem;
  background: var(--gold);
  color: var(--parchment);
  font-family: 'Crimson Pro', serif;
  font-size: 14px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 3px;
  cursor: pointer;
  text-align: center;
  margin-top: 0.8rem;
  transition: background 0.2s;
}

.buy-btn:hover { background: #9A7009; }

/* ─── TIMELINE ─── */
.timeline { margin: 2rem 0; position: relative; }

.timeline::before {
  content: '';
  position: absolute;
  left: 18px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--parchment-mid);
}

.timeline-item {
  display: flex;
  gap: 1.4rem;
  margin-bottom: 2rem;
  position: relative;
}

.timeline-dot {
  width: 36px;
  height: 36px;
  min-width: 36px;
  border-radius: 50%;
  background: var(--ink);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  position: relative;
  z-index: 1;
}

.timeline-content { padding-top: 0.2rem; }

.timeline-year {
  font-family: 'Crimson Pro', serif;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}

.timeline-title {
  font-family: 'Playfair Display', serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.3rem;
}

.timeline-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: var(--muted);
}

/* ─── CONTACT FORM ─── */
.contact-form { max-width: 560px; margin: 1.5rem 0; }

.form-group { margin-bottom: 1.2rem; }

.form-group label {
  display: block;
  font-family: 'Crimson Pro', serif;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.4rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--parchment-mid);
  border-radius: 4px;
  font-family: 'Lora', serif;
  font-size: 15px;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s;
}

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

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

.form-success {
  background: #EAF3DE;
  border-left: 3px solid #3B6D11;
  padding: 1rem 1.4rem;
  border-radius: 0 6px 6px 0;
  color: #27500A;
  font-family: 'Crimson Pro', serif;
  font-size: 16px;
  display: none;
  margin-top: 1rem;
}

/* ─── PRICE TAG ─── */
.price-tag {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--forest);
  margin-bottom: 0.2rem;
}

.price-sub {
  font-family: 'Crimson Pro', serif;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 0.8rem;
}

.coming-soon-badge {
  display: inline-block;
  background: var(--parchment-mid);
  color: var(--muted);
  font-family: 'Crimson Pro', serif;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 3px;
  margin-bottom: 0.6rem;
}

/* ─── PROLOGUE ─── */
.prologue-text {
  background: var(--white);
  border-radius: 10px;
  padding: 2.2rem 2rem;
  border: 0.5px solid var(--parchment-mid);
  margin-bottom: 1.6rem;
  position: relative;
}

.prologue-text::before {
  content: '"';
  position: absolute;
  top: -0.5rem;
  left: 1.2rem;
  font-family: 'Playfair Display', serif;
  font-size: 80px;
  color: rgba(184,134,11,0.1);
  line-height: 1;
  pointer-events: none;
}

.prologue-text p {
  font-family: 'Lora', serif;
  font-size: 16.5px;
  line-height: 1.95;
  color: #2E2418;
  margin-bottom: 1.2rem;
}

.prologue-text p:last-child { margin-bottom: 0; }
.prologue-text em { font-style: italic; color: var(--muted); }

.prologue-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 17px;
  color: var(--forest);
  letter-spacing: 0.04em;
}

.prologue-divider {
  text-align: center;
  margin: 1.8rem 0;
  color: var(--gold);
  font-size: 14px;
  letter-spacing: 0.3em;
}

/* ─── FOOTER ─── */
.site-footer {
  background: var(--ink);
  padding: 2.5rem 2rem 1.8rem;
  text-align: center;
  border-top: 1px solid rgba(184,134,11,0.2);
}

.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-style: italic;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.footer-tagline {
  font-family: 'Crimson Pro', serif;
  font-style: italic;
  font-size: 14px;
  color: rgba(245,237,216,0.5);
  margin-bottom: 1.4rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 1.4rem;
}

.footer-links a {
  font-family: 'Crimson Pro', serif;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(245,237,216,0.55);
  transition: color 0.2s;
}

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

.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.1rem;
  margin-bottom: 1.4rem;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid rgba(184,134,11,0.3);
  color: rgba(245,237,216,0.55);
  transition: all 0.2s;
}

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

.footer-copy {
  font-family: 'Crimson Pro', serif;
  font-size: 12px;
  color: rgba(245,237,216,0.3);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 600px) {
  .hero h1 { font-size: 32px; }
  .page-hero h1 { font-size: 28px; }
  .section h2 { font-size: 24px; }
  .section { padding: 2rem 1.2rem; }
  .btn-outline { margin-left: 0; margin-top: 0.6rem; }
  .series-strip h2 { font-size: 22px; }
}
