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

:root {
  --forest: #2C3E2D;
  --forest-light: #3d5440;
  --gold: #C9A84C;
  --gold-light: #dfc07a;
  --sage: #8FAF8B;
  --sage-light: #b8cfb5;
  --cream: #F7F3EE;
  --warm-white: #fdfaf7;
  --charcoal: #2A2A2A;
  --text-mid: #5a5a5a;
  --text-light: #8a8a8a;
  --border: rgba(44,62,45,0.12);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  font-size: 16px;
  line-height: 1.7;
  min-height: 100vh;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(247,243,238,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
  letter-spacing: 0.02em;
  text-decoration: none;
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
  align-items: center;
}

.nav-links a {
  font-size: 0.875rem;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--forest);
}

.nav-cta {
  background: var(--forest);
  color: var(--cream) !important;
  padding: 0.5rem 1.25rem;
  border-radius: 2px;
  font-size: 0.8rem !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase;
  transition: background 0.2s !important;
}

.nav-cta:hover {
  background: var(--forest-light) !important;
  color: var(--cream) !important;
}

/* ── SHARED UTILITIES ── */
.gold-rule {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 2rem;
}

.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-light);
  text-align: center;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 400;
  text-align: center;
  color: var(--forest);
  margin-bottom: 1rem;
}

.section-intro {
  text-align: center;
  color: var(--text-mid);
  max-width: 520px;
  margin: 0 auto 4rem;
  font-weight: 300;
}

.btn-primary {
  background: var(--forest);
  color: var(--cream);
  padding: 0.875rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-primary:hover { background: var(--gold); color: var(--charcoal);; }

.btn-outline {
  background: transparent;
  color: var(--forest);
  padding: 0.875rem 2rem;
  border: 1px solid var(--forest);
  border-radius: 2px;
  font-family: 'Inter', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-outline:hover {
  background: var(--forest);
  color: var(--cream);
}

/* ── BOOKING PAGES (shared) ── */
.booking-page {
  max-width: 760px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.booking-hero {
  text-align: center;
  padding: 3rem 0 4rem;
}

.booking-tag {
  display: inline-block;
  background: rgba(44,62,45,0.08);
  color: var(--forest);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 0.375rem 1rem;
  border-radius: 2px;
  margin-bottom: 1.5rem;
}

.booking-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--forest);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.booking-sub {
  font-size: 1rem;
  color: var(--text-mid);
  max-width: 480px;
  margin: 0 auto;
  font-weight: 300;
  line-height: 1.8;
}

.session-details {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 2px;
  overflow: hidden;
  margin-bottom: 2.5rem;
}

.detail-cell {
  background: var(--warm-white);
  padding: 1.5rem;
  text-align: center;
}

.detail-label {
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 0.375rem;
}

.detail-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--forest);
}

.what-to-expect {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 2.5rem;
  margin-bottom: 2rem;
}

.expect-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--forest);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}

.expect-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.expect-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.7;
}

.expect-list li::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.6rem;
}

.calendly-placeholder {
  background: var(--warm-white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 3rem 2rem;
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2.5rem;
}

.calendly-placeholder p {
  color: var(--text-light);
  font-size: 0.9rem;
}

.calendly-placeholder strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--text-mid);
  font-weight: 400;
  margin-bottom: 0.5rem;
}

.cal-icon {
  width: 56px;
  height: 56px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.5rem;
  color: var(--sage);
  font-size: 1.5rem;
}

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 2rem;
  text-align: center;
}

footer p {
  font-size: 0.75rem;
  color: #666;
  letter-spacing: 0.06em;
}

/* ── RESPONSIVE ── */
@media (max-width: 640px) {
  nav { padding: 0 1rem; }
  .nav-links { gap: 1rem; }
  .nav-links li:not(:last-child):not(:nth-last-child(2)) { display: none; }
  .booking-page { padding: 2rem 1.25rem 4rem; }
}
