:root {
  --bg: #100d0a;
  --panel: #17120e;
  --cream: #f2e3c7;
  --muted: #c7b79d;
  --gold: #b57723;
  --blue: #173d7a;
  --line: rgba(242, 227, 199, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--cream);
  font-family: "Source Sans 3", sans-serif;
  line-height: 1.6;
}
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 5vw;
  background: rgba(16, 13, 10, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.brand {
  font-family: "Rye", serif;
  letter-spacing: .02em;
  font-size: 1.05rem;
}
.nav { display: flex; gap: 24px; font-weight: 600; }
.nav a:hover { color: var(--gold); }
.menu-toggle { display: none; background: none; border: 0; color: var(--cream); font-size: 1.5rem; }

.hero {
  min-height: 88vh;
  position: relative;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,6,5,.9) 0%, rgba(8,6,5,.65) 45%, rgba(8,6,5,.15) 100%), linear-gradient(0deg, rgba(16,13,10,.8), transparent 50%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 750px;
  padding: 10vh 7vw 12vh;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 700;
  color: var(--gold);
  font-size: .8rem;
}
h1, h2, h3 { margin: 0 0 14px; }
h1, h2 { font-family: "Rye", serif; font-weight: 400; line-height: 1.08; }
h1 { font-size: clamp(3rem, 7vw, 6.7rem); }
h2 { font-size: clamp(2.1rem, 4vw, 4rem); }
.tagline { font-size: clamp(1.4rem, 2.6vw, 2.1rem); font-weight: 700; color: #fff4de; }
.hero-copy { max-width: 680px; font-size: 1.08rem; color: var(--muted); }
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid var(--gold);
  border-radius: 2px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
  transition: transform .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.primary { background: var(--gold); color: #140d05; }
.secondary { background: transparent; color: var(--cream); }

.section { padding: 90px 7vw; }
.intro { max-width: 1000px; }
.intro p:last-child { max-width: 780px; font-size: 1.15rem; color: var(--muted); }
.dark-section { background: #0b0907; border-block: 1px solid var(--line); }
.section-heading { max-width: 800px; margin-bottom: 35px; }

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.price-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(255,255,255,.025), rgba(255,255,255,0));
  padding: 28px;
  min-height: 250px;
}
.price-card.featured { border-color: rgba(181,119,35,.7); box-shadow: inset 0 0 0 1px rgba(181,119,35,.16); }
.price-card h3 { font-family: "Rye", serif; color: var(--gold); font-size: 2.6rem; }
.card-label { text-transform: uppercase; font-weight: 800; letter-spacing: .08em; }
.duration { color: #fff; font-weight: 700; }
.price-card p:last-child { color: var(--muted); }
.styles-row { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 30px; }
.styles-row span { border: 1px solid var(--line); padding: 9px 13px; color: var(--cream); }

.split-section {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 60px;
  align-items: center;
}
.split-image { min-height: 650px; object-fit: cover; }
.split-copy p { color: var(--muted); }
.values-box { margin-top: 24px; padding: 18px 20px; border-left: 4px solid var(--gold); background: rgba(181,119,35,.08); color: var(--cream); font-weight: 700; }

.credibility {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 44px;
  background: var(--panel);
}
.credibility img { max-height: 520px; object-fit: cover; }
.credibility p { color: var(--muted); }

.devotional-section {
  display: grid;
  grid-template-columns: minmax(220px, 360px) 1fr;
  gap: 55px;
  align-items: center;
}
.devotional-section img { box-shadow: 0 16px 45px rgba(0,0,0,.35); }
.book-subtitle { font-weight: 700; color: #fff4de; font-size: 1.25rem; }
.devotional-section p { max-width: 700px; color: var(--muted); }

.booking-section { text-align: center; background: linear-gradient(180deg, #15100b, #0e0b08); }
.booking-section p { max-width: 700px; margin-inline: auto; color: var(--muted); }
.booking-message { min-height: 24px; margin-top: 12px !important; color: var(--cream) !important; }

footer {
  padding: 28px 7vw;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--muted);
  font-size: .92rem;
}

@media (max-width: 900px) {
  .price-grid { grid-template-columns: 1fr 1fr; }
  .split-section, .credibility, .devotional-section { grid-template-columns: 1fr; }
  .split-image { min-height: 480px; }
  .devotional-section img { max-width: 360px; }
}

@media (max-width: 650px) {
  .site-header { padding: 14px 20px; }
  .menu-toggle { display: block; }
  .nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    flex-direction: column;
    background: #100d0a;
    padding: 20px;
    border-bottom: 1px solid var(--line);
  }
  .nav.open { display: flex; }
  .hero { min-height: 82vh; }
  .hero-overlay { background: linear-gradient(0deg, rgba(8,6,5,.92) 0%, rgba(8,6,5,.45) 75%, rgba(8,6,5,.15) 100%); }
  .hero-content { padding: 8vh 22px 8vh; }
  .section { padding: 65px 22px; }
  .price-grid { grid-template-columns: 1fr; }
  footer { flex-direction: column; padding: 24px 22px; }
}
