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

:root {
  --forest: #1e3a2b;
  --forest-deep: #0f1f17;
  --sage: #6b8f71;
  --sage-light: #8aab8f;
  --gold: #c9a96e;
  --gold-light: #dfc89a;
  --gold-dim: #a08450;
  --cream: #f5f0e8;
  --cream-dark: #e8e0d2;
  --warm-white: #faf8f4;
  --charcoal: #2a2a2a;
  --text: #4a4a4a;
  --text-light: #7a7a7a;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Outfit', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  color: var(--charcoal);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ===== GRAIN OVERLAY ===== */
body::after {
  content: '';
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideLeft {
  from { opacity: 0; transform: translateX(60px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes growWidth {
  from { width: 0; }
  to { width: 80px; }
}
@keyframes breathe {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.15); opacity: 0.5; }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1), transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) translateX(0) scale(1);
}
.reveal-left {
  transform: translateX(-60px) translateY(0);
}
.reveal-right {
  transform: translateX(60px) translateY(0);
}
.reveal-scale {
  transform: scale(0.92) translateY(0);
}
.reveal-delay-1 { transition-delay: 0.15s; }
.reveal-delay-2 { transition-delay: 0.3s; }
.reveal-delay-3 { transition-delay: 0.45s; }
.reveal-delay-4 { transition-delay: 0.6s; }

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; width: 100%;
  z-index: 100;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.5s ease;
}
nav.scrolled {
  background: rgba(15, 31, 23, 0.92);
  backdrop-filter: blur(20px);
  padding: 14px 40px;
  box-shadow: 0 2px 40px rgba(0,0,0,0.15);
}
.nav-logo {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  letter-spacing: 0.08em;
  text-decoration: none;
}
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: rgba(245, 240, 232, 0.7);
  text-decoration: none;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  color: var(--gold) !important;
  padding: 8px 20px !important;
  border-radius: 2px;
  transition: all 0.3s !important;
  cursor: pointer;
}
.nav-cta:hover {
  background: var(--gold) !important;
  color: var(--forest-deep) !important;
}
.nav-share {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(245, 240, 232, 0.35);
  border-radius: 6px;
  color: rgba(245, 240, 232, 0.8);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.nav-share:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.nav-share svg { width: 16px; height: 16px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 101;
}
.nav-toggle span {
  width: 24px; height: 1.5px;
  background: var(--cream);
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--forest-deep);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-bg.png');
  background-size: cover;
  background-position: center 40%;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(107, 143, 113, 0.2) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(15, 31, 23, 0.5) 0%, transparent 60%),
    linear-gradient(175deg, rgba(10, 22, 16, 0.88) 0%, rgba(15, 31, 23, 0.82) 35%, rgba(10, 22, 16, 0.9) 100%);
  animation: overlaySettle 2s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes overlaySettle {
  0% { opacity: 0.15; }
  100% { opacity: 1; }
}
.hero-circle {
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.08);
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  animation: breathe 8s ease-in-out infinite, fadeIn 1.5s 1s both;
}
.hero-circle:nth-child(2) {
  width: 700px; height: 700px;
  animation: breathe 8s -2s ease-in-out infinite, fadeIn 1.5s 1.2s both;
  border-color: rgba(107, 143, 113, 0.06);
}
.hero-circle:nth-child(3) {
  width: 900px; height: 900px;
  animation: breathe 8s -4s ease-in-out infinite, fadeIn 1.5s 1.4s both;
  border-color: rgba(201, 169, 110, 0.04);
}
.hero-content {
  position: relative;
  text-align: center;
  max-width: 800px;
  padding: 0 24px;
  z-index: 2;
}
.hero-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  animation: fadeIn 1s 1.4s both;
}
.hero h1 {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 20px;
  animation: fadeUp 1s 1.6s both;
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-sub {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.65;
  max-width: 540px;
  margin: 0 auto 32px;
  animation: fadeUp 1s 1.8s both;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp 1s 2s both;
}
.btn {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 14px 36px;
  border: 1px solid transparent;
  transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--forest-deep);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(201, 169, 110, 0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245, 240, 232, 0.3);
}
.btn-ghost:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
}
/* ===== HERO PARTICLES ===== */
.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  overflow: hidden;
  animation: fadeIn 2s 1.2s both;
}
.hero-particles span {
  position: absolute;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.3);
  animation: float linear infinite;
}
.hero-particles span:nth-child(1) { left: 12%; top: 20%; animation-duration: 18s; animation-delay: 0s; width: 2px; height: 2px; }
.hero-particles span:nth-child(2) { left: 75%; top: 65%; animation-duration: 22s; animation-delay: -4s; background: rgba(107, 143, 113, 0.25); }
.hero-particles span:nth-child(3) { left: 40%; top: 80%; animation-duration: 16s; animation-delay: -8s; width: 4px; height: 4px; background: rgba(201, 169, 110, 0.15); }
.hero-particles span:nth-child(4) { left: 88%; top: 30%; animation-duration: 20s; animation-delay: -2s; width: 2px; height: 2px; background: rgba(107, 143, 113, 0.2); }
.hero-particles span:nth-child(5) { left: 55%; top: 15%; animation-duration: 24s; animation-delay: -6s; }
.hero-particles span:nth-child(6) { left: 25%; top: 55%; animation-duration: 19s; animation-delay: -10s; width: 2px; height: 2px; background: rgba(201, 169, 110, 0.2); }

@keyframes float {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 1; }
  90% { opacity: 1; }
  100% { transform: translateY(-100vh) translateX(40px); opacity: 0; }
}

/* ===== HERO PARALLAX ===== */
.hero-content,
.hero-circle {
  will-change: transform, opacity;
}

/* ===== HERO SCROLL PROMPT ===== */
.hero-scroll-prompt {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(245, 240, 232, 0.5);
  text-decoration: none;
  z-index: 2;
  transition: color 0.3s ease;
  animation: fadeIn 1s 2.4s both;
}
.hero-scroll-prompt:hover {
  color: var(--gold);
}
.hero-scroll-prompt-text {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.hero-scroll-prompt-icon {
  display: flex;
  width: 24px;
  height: 24px;
}
.hero-scroll-prompt-icon svg {
  width: 100%;
  height: 100%;
  animation: scrollPromptBounce 2s ease-in-out infinite;
}
@keyframes scrollPromptBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(6px); }
}

/* ===== CREDENTIALS BAR ===== */
.credentials {
  background: var(--forest);
  padding: 48px 24px;
  overflow: hidden;
}
.credentials-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}
.credential {
  text-align: center;
  min-width: 140px;
}
.credential-num {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.credential:hover .credential-num {
  transform: scale(1.1);
}
.credential-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
}

/* ===== SECTION SHARED ===== */
section { padding: 80px 24px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.2;
  margin-bottom: 20px;
}
.section-title em { font-style: italic; color: var(--forest); }
.section-desc {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
  max-width: 620px;
}
.gold-line {
  width: 0; height: 1px;
  background: var(--gold);
  margin: 24px 0;
  transition: width 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.gold-line.visible {
  width: 80px;
}

/* ===== ABOUT ===== */
.about { background: var(--warm-white); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 48px;
}
.about-image {
  position: relative;
  aspect-ratio: 4/5;
  background:
    linear-gradient(135deg, var(--forest) 0%, var(--sage) 100%);
  border-radius: 2px;
  overflow: hidden;
}
.about-image-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.about-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 31, 23, 0.6) 0%, transparent 50%);
  z-index: 1;
}
.about-image::after {
  content: '';
  position: absolute;
  inset: 20px;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: 2px;
  z-index: 2;
}
.about-image-text {
  position: absolute;
  bottom: 40px; left: 40px;
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(245, 240, 232, 0.9);
  max-width: 200px;
  line-height: 1.5;
  z-index: 3;
}
.about-text h3 {
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.about-text p {
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
  margin-bottom: 12px;
}

/* ===== SHARE CTA ===== */
.share-cta {
  background: var(--forest);
  padding: 80px 24px;
}
.share-cta-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}
.share-cta-image-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 110, 0.35);
}
.share-cta-image {
  width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}
.share-cta-content .section-label {
  color: var(--gold);
  margin-bottom: 8px;
}
.share-cta-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.4rem);
  font-weight: 400;
  color: var(--cream);
  margin: 0 0 16px;
}
.share-cta .gold-line {
  margin-bottom: 20px;
}
.share-cta-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.85);
  line-height: 1.75;
  margin-bottom: 14px;
}
.share-cta-text strong {
  color: var(--cream);
  font-weight: 500;
}
.share-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 8px;
  cursor: pointer;
  border: none;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  background: var(--gold);
  color: var(--forest-deep);
  border-radius: 2px;
  transition: background 0.3s, color 0.3s, transform 0.2s;
}
.share-cta-btn:hover {
  background: var(--gold-light);
  color: var(--forest-deep);
}
.share-cta-btn-icon {
  display: flex;
  width: 20px;
  height: 20px;
}
.share-cta-btn-icon svg {
  width: 100%;
  height: 100%;
}

/* ===== PILLARS ===== */
.pillars {
  background: var(--cream);
}
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 48px;
}
.pillar {
  padding: 48px 36px;
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  overflow: hidden;
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar:hover::before { transform: scaleX(1); }
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.06);
  border-color: transparent;
}
.pillar-icon {
  font-size: 1.6rem;
  margin-bottom: 20px;
  display: block;
  color: var(--gold);
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}
.pillar:hover .pillar-icon {
  transform: scale(1.2);
}
.pillar h3 {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 14px;
}
.pillar p {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
}

/* ===== OFFERINGS ===== */
.offerings { background: var(--warm-white); }

.offerings-simple {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 50px;
}
.offering-card {
  background: var(--warm-white);
  border: 1px solid var(--cream-dark);
  border-radius: 2px;
  padding: 40px 32px;
  transition: all 0.5s cubic-bezier(0.22, 1, 0.36, 1);
  position: relative;
  display: flex;
  flex-direction: column;
}
.offering-card:hover {
  border-color: var(--sage-light);
  box-shadow: 0 16px 48px rgba(0,0,0,0.07);
  transform: translateY(-6px);
}
.offering-card.featured {
  background: var(--forest-deep);
  border-color: transparent;
  box-shadow: 0 8px 40px rgba(0,0,0,0.2);
}
.offering-card.featured:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  transform: translateY(-8px);
}
.offering-card.featured * { color: var(--cream) !important; }
.offering-card.featured .offering-price { color: var(--gold) !important; }
.offering-card.featured .offering-tag { background: rgba(201,169,110,0.15); color: var(--gold) !important; }

.offering-tag {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--sage);
  background: rgba(107, 143, 113, 0.1);
  padding: 4px 12px;
  border-radius: 1px;
  margin-bottom: 20px;
  align-self: flex-start;
}
.offering-card h3 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.offering-duration {
  font-family: var(--sans);
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 16px;
}
.offering-desc {
  font-family: var(--sans);
  font-size: 0.88rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 24px;
  flex-grow: 1;
}
.offering-price {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--forest);
}

.offering-savings {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--gold-dim);
  background: rgba(201,169,110,0.1);
  padding: 3px 10px;
  border-radius: 1px;
  margin-left: 12px;
}

/* ===== PROCESS ===== */
.process { background: var(--forest-deep); color: var(--cream); }
.process .section-label { color: var(--gold); }
.process .section-title { color: var(--cream); }
.process .section-title em { color: var(--gold-light); }
.process .section-desc { color: rgba(245, 240, 232, 0.6); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step {
  position: relative;
  padding-top: 48px;
}
.step::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 32px;
  height: 1px;
  background: linear-gradient(to right, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}
.step.visible::before {
  transform: scaleX(1);
}
.step-num {
  font-family: var(--serif);
  font-size: 2.8rem;
  font-weight: 300;
  color: rgba(201, 169, 110, 0.25);
  line-height: 1;
  margin-bottom: 16px;
  transition: color 0.6s ease;
}
.step:hover .step-num {
  color: rgba(201, 169, 110, 0.5);
}
.step h3 {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 12px;
}
.step p {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.55);
  line-height: 1.7;
}

/* ===== TESTIMONIAL ===== */
.testimonial {
  background: var(--cream);
  text-align: center;
  padding: 100px 24px;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.6;
  max-width: 760px;
  margin: 0 auto 24px;
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-family: var(--serif);
  font-size: 5rem;
  color: var(--gold);
  position: absolute;
  top: -30px; left: -20px;
  line-height: 1;
  opacity: 0;
  transform: scale(0.5) translateY(20px);
  transition: opacity 0.8s ease 0.3s, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1) 0.3s;
}
.testimonial-quote.visible::before {
  opacity: 0.4;
  transform: scale(1) translateY(0);
}
.testimonial-attr {
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.06em;
}

/* ===== FAQ ===== */
.faq { background: var(--warm-white); }
.faq-list {
  max-width: 720px;
  margin-top: 50px;
}
.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}
.faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 24px 40px 24px 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--charcoal);
  position: relative;
  transition: color 0.3s;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%);
  font-family: var(--sans);
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform 0.3s;
}
.faq-item.open .faq-q::after {
  transform: translateY(-50%) rotate(45deg);
}
.faq-q:hover { color: var(--forest); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-bottom: 24px;
}
.faq-a p {
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.75;
}

/* ===== CTA ===== */
.cta-section {
  background:
    radial-gradient(ellipse at 30% 50%, rgba(107, 143, 113, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.08) 0%, transparent 50%),
    var(--forest-deep);
  text-align: center;
  padding: 96px 24px;
}
.cta-section .section-title { color: var(--cream); }
.cta-section .section-title em { color: var(--gold-light); }
.cta-desc {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.75;
  max-width: 520px;
  margin: 0 auto 40px;
}

/* ===================================================
   STORY PAGE
   =================================================== */

/* ===== STORY INTRO ===== */
.story-intro {
  background: var(--forest-deep);
  padding: 140px 24px 100px;
  position: relative;
}
.story-intro-border {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}
.story-headline {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  max-width: 720px;
  margin-bottom: 28px;
}
.story-headline em {
  font-style: italic;
  color: var(--gold-light);
}
.story-lead {
  font-family: var(--sans);
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.6);
  line-height: 1.8;
  max-width: 640px;
  margin-bottom: 56px;
}

/* ===== VIDEO EMBEDS ===== */
.video-wrap {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 12px 48px rgba(0,0,0,0.25);
}
.video-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: none;
}
.video-caption {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.35);
  margin-top: 16px;
  text-align: center;
  font-style: italic;
}

/* ===== STORY PAGE — IN MY OWN WORDS VIDEO ===== */
.story-video-section {
  background: var(--cream);
  padding: 100px 24px;
  text-align: center;
}
.story-video-section .section-label {
  margin-bottom: 8px;
}
.story-video-section-title {
  font-family: var(--serif);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: var(--forest);
  margin: 0;
}
.story-video-section-intro {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.6;
  max-width: 480px;
  margin: 0 auto 32px;
}
.story-video-section-embed {
  max-width: 800px;
  margin: 0 auto;
}
.story-video-section .video-caption {
  color: var(--text-light);
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== THE JOURNEY ===== */
.journey {
  background: var(--warm-white);
  padding: 100px 24px;
}
.journey-container {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.journey-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: -40px;
  width: 1px;
  height: 100%;
  background: linear-gradient(to bottom, var(--gold), var(--cream-dark), transparent);
}
.journey-chapter {
  position: relative;
  margin-bottom: 64px;
  padding-left: 0;
}
.journey-chapter:last-child {
  margin-bottom: 0;
}
.journey-marker {
  position: absolute;
  left: -46px;
  top: 8px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  background: var(--warm-white);
  transition: background 0.3s, transform 0.3s;
}
.journey-chapter:hover .journey-marker {
  background: var(--gold);
  transform: scale(1.3);
}
.journey-chapter h2 {
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--charcoal);
  margin-bottom: 20px;
  line-height: 1.3;
}
.journey-chapter p {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
}
.journey-chapter p:last-of-type {
  margin-bottom: 0;
}

/* Pull quotes */
.pull-quote {
  margin: 36px 0;
  padding: 24px 0 24px 28px;
  border-left: 2px solid var(--gold);
}
.pull-quote p {
  font-family: var(--serif);
  font-size: 1.25rem;
  font-weight: 400;
  font-style: italic;
  color: var(--forest);
  line-height: 1.6;
  margin-bottom: 0;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  text-align: center;
  padding: 140px 24px;
  background: var(--cream);
}
.philosophy-mantra {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal);
  line-height: 1.3;
  max-width: 700px;
  margin: 0 auto 36px;
}
.philosophy-mantra-closing {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  color: var(--forest);
  letter-spacing: 0.02em;
  margin-bottom: 48px;
  padding: 0 20px;
}
.philosophy-text {
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.8;
  max-width: 540px;
  margin: 0 auto;
}

/* ===== GUEST VOICES ===== */
.guest-voices {
  background: var(--forest-deep);
  padding: 100px 24px;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.video-grid-item .video-wrap {
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

/* ===== EXPANDED CREDENTIALS ===== */
.story-credentials {
  padding-bottom: 32px;
}
.credentials-quals {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--gold-dim);
  text-align: center;
  max-width: 700px;
  margin: 28px auto 0;
  line-height: 1.8;
}

/* ===== STORY PAGE RESPONSIVE ===== */
@media (max-width: 900px) {
  .journey-container::before { left: -24px; }
  .journey-marker { left: -30px; }
  .video-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .story-intro { padding: 120px 20px 72px; }
  .story-video-section { padding: 72px 20px; }
  .journey { padding: 72px 20px; }
  .philosophy { padding: 72px 20px; }
  .guest-voices { padding: 72px 20px; }
  .journey-container::before { display: none; }
  .journey-marker { display: none; }
  .journey-chapter { margin-bottom: 48px; }
}

/* ===== FOOTER ===== */
footer {
  background: var(--forest-deep);
  border-top: 1px solid rgba(107, 143, 113, 0.15);
  padding: 48px 24px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-brand {
  font-family: var(--serif);
  font-size: 1rem;
  color: rgba(245, 240, 232, 0.4);
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: rgba(245, 240, 232, 0.35);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.3s;
}
.footer-links a:hover { color: var(--gold); }
.footer-note {
  font-family: var(--sans);
  font-size: 0.72rem;
  color: rgba(245, 240, 232, 0.2);
  text-align: center;
  margin-top: 32px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
}
.build-info {
  font-family: var(--sans);
  font-size: 0.65rem;
  color: rgba(245, 240, 232, 0.12);
  text-align: center;
  margin-top: 16px;
  letter-spacing: 0.04em;
}

/* ===== BLOG ===== */
.blog-hero {
  padding: 140px 24px 64px;
  text-align: center;
  background: var(--forest-deep);
}
.blog-hero-title {
  font-family: var(--serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 300;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 16px;
}
.blog-hero-title em { font-style: italic; color: var(--gold-light); }
.blog-hero-sub {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: rgba(245, 240, 232, 0.55);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Blog feed */
.blog-feed {
  padding: 48px 24px 100px;
  background: var(--warm-white);
}
.blog-feed .container { max-width: 960px; margin: 0 auto; }

.blog-filters {
  display: flex;
  gap: 8px;
  margin-bottom: 40px;
}
.blog-filter {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid rgba(40, 48, 42, 0.15);
  border-radius: 3px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}
.blog-filter:hover { border-color: var(--gold); color: var(--gold); }
.blog-filter.active {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: var(--cream);
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}
.blog-empty {
  text-align: center;
  font-family: var(--sans);
  font-size: 0.95rem;
  color: var(--text-light);
  padding: 48px 0;
  grid-column: 1 / -1;
}
.blog-loading {
  display: flex;
  justify-content: center;
  padding: 60px 0;
  grid-column: 1 / -1;
}
.blog-loading .spinner {
  width: 28px; height: 28px;
  border: 2px solid rgba(40, 48, 42, 0.12);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Blog card */
.blog-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 1px 6px rgba(0,0,0,0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.1);
}
.blog-card-image {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--forest-deep);
}
.blog-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.blog-card:hover .blog-card-image img {
  transform: scale(1.04);
}
.blog-card-badge {
  position: absolute;
  top: 12px; left: 12px;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--forest);
  color: var(--cream);
}
.blog-card-badge.podcast { background: var(--gold); color: var(--forest-deep); }
.blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 20px 20px 16px;
}
.blog-card-date {
  font-family: var(--sans);
  font-size: 0.72rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.blog-card-duration {
  margin-left: 10px;
  padding-left: 10px;
  border-left: 1px solid rgba(40, 48, 42, 0.15);
}
.blog-card-title {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--charcoal);
  line-height: 1.35;
  margin-bottom: 8px;
}
.blog-card-excerpt {
  font-family: var(--sans);
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 12px;
}
.blog-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.blog-card-read {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--gold);
  letter-spacing: 0.04em;
}
.blog-card-share {
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid rgba(40, 48, 42, 0.12);
  border-radius: 5px;
  color: var(--text-light);
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
  padding: 0;
}
.blog-card-share svg { width: 14px; height: 14px; }
.blog-card-share:hover { border-color: var(--gold); color: var(--gold); }
.blog-card-audio {
  margin-top: 12px;
}
.blog-card-audio audio { width: 100%; height: 36px; }

/* Post page */
.post-page {
  padding: 120px 24px 80px;
  background: var(--warm-white);
  min-height: 80vh;
}
.post-page .container { max-width: 720px; margin: 0 auto; }
.post-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.2s;
}
.post-back svg { width: 16px; height: 16px; }
.post-back:hover { color: var(--gold); }
.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.post-badge {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 3px;
  background: var(--forest);
  color: var(--cream);
}
.post-badge.podcast { background: var(--gold); color: var(--forest-deep); }
.post-meta time {
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-light);
}
.post-duration {
  display: none;
  font-family: var(--sans);
  font-size: 0.82rem;
  color: var(--text-light);
  padding-left: 12px;
  border-left: 1px solid rgba(40, 48, 42, 0.15);
}
.post-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 300;
  color: var(--charcoal);
  line-height: 1.25;
  margin-bottom: 32px;
}
.post-hero {
  margin-bottom: 40px;
  border-radius: 6px;
  overflow: hidden;
}
.post-hero img {
  width: 100%;
  display: block;
  border-radius: 6px;
}
.post-audio {
  margin-bottom: 32px;
}
.post-audio audio { width: 100%; }
.post-body {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 300;
  color: var(--text);
  line-height: 1.9;
}
.post-body p {
  margin-bottom: 24px;
}
.post-body p:last-child { margin-bottom: 0; }
.post-body h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--charcoal);
  margin: 48px 0 16px;
}
.post-body blockquote {
  margin: 32px 0;
  padding: 20px 0 20px 24px;
  border-left: 2px solid var(--gold);
  font-family: var(--serif);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--forest);
  line-height: 1.7;
}
.post-footer {
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid rgba(40, 48, 42, 0.1);
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.post-share-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--sans);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 24px;
  border: 1px solid rgba(40, 48, 42, 0.18);
  border-radius: 3px;
  background: transparent;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}
.post-share-btn svg { width: 16px; height: 16px; }
.post-share-btn:hover { border-color: var(--gold); color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image { max-height: 350px; }
  .share-cta-grid { grid-template-columns: 1fr; gap: 40px; }
  .share-cta-image-wrap { max-width: 320px; margin: 0 auto; }
  .pillars-grid { grid-template-columns: 1fr; }
  .offerings-simple { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; }
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  /* Nav must sit above body::after grain (z-index: 9999) when menu is open */
  nav:has(.nav-links.open) { z-index: 10000; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0f1f11 !important; /* solid forest-deep so menu never transparent */
    justify-content: center;
    align-items: center;
    gap: 28px;
    z-index: 1000;
    isolation: isolate; /* own stacking context so nothing composites through */
  }
  .nav-links.open a { font-size: 1.1rem; color: var(--cream); }
  .nav-links.open .nav-share { font-size: 1rem; margin: 4px 0; }
  .nav-links.open .nav-cta {
    background: transparent !important;
    border-color: var(--gold) !important;
    color: var(--gold) !important;
  }
  .nav-links.open .nav-cta:hover {
    background: var(--gold) !important;
    color: var(--forest-deep) !important;
  }
  .blog-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  section { padding: 60px 20px; }
  .process-steps { grid-template-columns: 1fr; }
  .credentials-inner { gap: 32px; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; text-align: center; }
  .blog-grid { grid-template-columns: 1fr; }
  .blog-hero { padding: 120px 20px 48px; }
  .blog-feed { padding: 32px 20px 72px; }
  .post-page { padding: 100px 20px 60px; }
}