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

:root {
  --cream: #F7F4EF;
  --stone: #E8E3DA;
  --warm-mid: #C9BFB0;
  --bark: #8C7B6B;
  --earth: #5C4E40;
  --moss: #7A8C72;
  --sage: #A8B89E;
  --body: #6B5E52;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--body);
  font-family: var(--sans);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.8;
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.2rem 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(247,244,239,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s;
}
nav.scrolled { border-bottom-color: var(--stone); }

.nav-logo {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--earth);
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.2rem;
  list-style: none;
  align-items: center;
}
.nav-links a {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--bark);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--earth); }

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  padding: 9rem 6rem 5rem;
  background: var(--stone);
  border-bottom: 1px solid var(--warm-mid);
}
.page-hero .eyebrow {
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1.2rem;
  display: block;
}
.page-hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--earth);
  margin-bottom: 1.4rem;
}
.page-hero h1 em { font-style: italic; color: var(--bark); }
.page-hero p {
  font-size: 1rem;
  max-width: 580px;
  color: var(--body);
  line-height: 1.9;
}

/* ── SECTION BASE ── */
.section {
  padding: 5rem 6rem;
}
.section--stone { background: var(--stone); }
.section--cream { background: var(--cream); }
.section--earth { background: var(--earth); color: var(--cream); }

.section-label {
  font-size: 0.65rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--moss);
  margin-bottom: 1rem;
  display: block;
}
.section--earth .section-label { color: var(--sage); }

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--earth);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--bark); }
.section--earth .section-title { color: var(--cream); }
.section--earth .section-title em { color: var(--sage); }

.section-intro {
  font-size: 0.97rem;
  max-width: 620px;
  color: var(--body);
  margin-bottom: 3rem;
  line-height: 1.9;
}
.section--earth .section-intro { color: rgba(247,244,239,0.75); }

.rule {
  width: 40px;
  height: 1px;
  background: var(--warm-mid);
  margin: 1.5rem 0;
}

/* ── OFFERING CARD ── */
/* ============================================================
   OFFERING CARD  — duplicate this block to add a new offering
   ============================================================ */
.offering-card {
  background: var(--cream);
  border: 1px solid var(--stone);
  padding: 3rem;
  margin-bottom: 2px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 3rem;
  align-items: start;
}
.section--stone .offering-card { background: var(--cream); }

.offering-meta { border-right: 1px solid var(--warm-mid); padding-right: 2rem; }
.offering-meta .label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--moss);
  font-weight: 400;
  margin-bottom: 0.6rem;
  display: block;
}
.offering-meta h3 {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 300;
  color: var(--earth);
  line-height: 1.2;
  margin-bottom: 0.8rem;
}
.offering-meta .duration {
  font-size: 0.8rem;
  color: var(--warm-mid);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.offering-meta .price {
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--bark);
  margin-top: 0.6rem;
}

.offering-body p {
  font-size: 0.95rem;
  color: var(--body);
  line-height: 1.9;
  margin-bottom: 1.2rem;
}
.offering-body p:last-child { margin-bottom: 0; }

.offering-body ul {
  list-style: none;
  margin: 1rem 0 1.4rem;
}
.offering-body ul li {
  font-size: 0.9rem;
  color: var(--body);
  padding-left: 1.2rem;
  position: relative;
  line-height: 1.7;
  margin-bottom: 0.3rem;
}
.offering-body ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--sage);
}

/* ── BOOK BUTTON ── */
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 0.9rem 2.2rem;
  border: 1px solid var(--earth);
  color: var(--earth);
  background: transparent;
  transition: background 0.25s, color 0.25s;
  cursor: pointer;
  margin-top: 1.4rem;
  display: inline-block;
}
.btn:hover { background: var(--earth); color: var(--cream); }
.btn-light {
  border-color: rgba(247,244,239,0.5);
  color: var(--cream);
}
.btn-light:hover { background: var(--cream); color: var(--earth); }
.btn-sage { border-color: var(--moss); color: var(--moss); }
.btn-sage:hover { background: var(--moss); color: var(--cream); }

/* ── CALENDLY EMBED ── */
.calendly-wrap {
  margin-top: 1.6rem;
  border-top: 1px solid var(--stone);
  padding-top: 1.6rem;
}
.calendly-wrap .calendly-inline-widget {
  min-width: 100%;
  height: 650px;
}

/* ── CONTACT / BOOK SECTION ── */
.book-section {
  background: var(--earth);
  padding: 5rem 6rem;
  text-align: center;
}
.book-section .section-label { color: var(--sage); }
.book-section h2 {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  font-weight: 300;
  color: var(--cream);
  margin-bottom: 1rem;
}
.book-section h2 em { font-style: italic; color: var(--sage); }
.book-section p {
  color: rgba(247,244,239,0.72);
  max-width: 500px;
  margin: 0 auto 2.5rem;
  font-size: 0.95rem;
  line-height: 1.9;
}
.book-options {
  display: flex;
  justify-content: center;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}
.book-note {
  font-size: 0.78rem;
  color: rgba(247,244,239,0.4);
  letter-spacing: 0.05em;
}

/* ── FOOTER ── */
footer {
  background: var(--cream);
  border-top: 1px solid var(--stone);
  padding: 2.2rem 6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--earth);
  letter-spacing: 0.1em;
  font-weight: 300;
}
.footer-nav { display: flex; gap: 2rem; list-style: none; }
.footer-nav a {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-mid);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--earth); }
.footer-note {
  font-size: 0.72rem;
  color: var(--warm-mid);
}

/* ── FADE IN ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 900px) {
  nav { padding: 1.1rem 1.5rem; }
  .nav-links { gap: 1.2rem; }
  .page-hero { padding: 7rem 2rem 3.5rem; }
  .section { padding: 4rem 2rem; }
  .offering-card { grid-template-columns: 1fr; gap: 1.5rem; }
  .offering-meta { border-right: none; border-bottom: 1px solid var(--warm-mid); padding-right: 0; padding-bottom: 1.5rem; }
  .book-section { padding: 4rem 2rem; }
  footer { flex-direction: column; gap: 1.2rem; text-align: center; padding: 2rem; }
  .footer-nav { justify-content: center; }
}
