:root {
  --ivory: #f4efe4;
  --ivory-warm: #ebe3d2;
  --ivory-deep: #e0d6be;
  --indigo: #1a2438;
  --indigo-deep: #0d1424;
  --indigo-soft: #2d3a55;
  --indigo-mist: #4a5670;
  --gold: #c8934b;
  --gold-warm: #d9a668;
  --gold-pale: #e8c48a;
  --gold-ink: #8a5f26;
  --rule: #b8ad93;
  --rule-dark: rgba(232, 196, 138, 0.2);
  --muted: #6b6455;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Instrument Sans', sans-serif;
  background: var(--ivory-warm);
  color: var(--indigo);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}
.container { max-width: 1360px; margin: 0 auto; padding: 0 56px; }
@media (max-width: 768px) { .container { padding: 0 24px; } }

/* ═════════ Nav ═════════ */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13, 20, 36, 0.85);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(232, 196, 138, 0.15);
}
.nav-inner {
  display: flex; justify-content: space-between; align-items: center;
  padding: 22px 0;
}
.logo {
  display: flex; align-items: center; gap: 14px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px; font-weight: 500;
  color: var(--ivory);
  text-decoration: none;
}
.logo-mark { width: 32px; height: 32px; color: var(--gold-pale); }
.nav-links { display: flex; gap: 40px; align-items: center; }
.nav-links a {
  color: var(--ivory-warm); text-decoration: none;
  font-size: 12px; letter-spacing: 0.14em;
  text-transform: uppercase; font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold-warm); }
.nav-links a.active { color: var(--gold-warm); }
.nav-cta {
  background: var(--gold); color: var(--indigo) !important;
  padding: 12px 24px;
}
.nav-cta:hover { background: var(--gold-warm) !important; }
@media (max-width: 768px) { .nav-links a:not(.nav-cta) { display: none; } }

/* ═════════ Hero (home) ═════════ */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 40% at 70% 20%, rgba(216, 154, 82, 0.35), transparent),
    radial-gradient(ellipse 80% 60% at 30% 80%, rgba(45, 58, 85, 0.6), transparent),
    linear-gradient(180deg, #0a1120 0%, #1a2438 40%, #2d3a55 70%, #4a5670 100%);
  color: var(--ivory);
}
.hero-mountains {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 3;
  animation: fadeUp 1.4s cubic-bezier(0.22, 0.61, 0.36, 1);
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(40px); }
  to { opacity: 1; transform: translateY(0); }
}
/* Starfield */
.stars {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60%;
  pointer-events: none;
  z-index: 1;
  opacity: 0.7;
}
.stars::before, .stars::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(1px 1px at 12% 24%, rgba(232, 196, 138, 0.9), transparent),
    radial-gradient(1px 1px at 28% 12%, rgba(244, 239, 228, 0.7), transparent),
    radial-gradient(1.5px 1.5px at 42% 34%, rgba(232, 196, 138, 0.6), transparent),
    radial-gradient(1px 1px at 61% 18%, rgba(244, 239, 228, 0.5), transparent),
    radial-gradient(1px 1px at 74% 42%, rgba(232, 196, 138, 0.8), transparent),
    radial-gradient(1px 1px at 88% 26%, rgba(244, 239, 228, 0.6), transparent),
    radial-gradient(1.5px 1.5px at 8% 46%, rgba(232, 196, 138, 0.4), transparent),
    radial-gradient(1px 1px at 55% 8%, rgba(244, 239, 228, 0.7), transparent);
  background-size: 100% 100%;
}
.hero-meta {
  font-size: 12px; letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 40px;
  display: flex; align-items: center; gap: 20px;
  font-weight: 500;
}
.hero-meta::before {
  content: ""; width: 48px; height: 1px;
  background: var(--gold);
}
.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(64px, 9.5vw, 168px);
  font-weight: 400;
  line-height: 0.92;
  letter-spacing: -0.035em;
  color: var(--ivory);
  max-width: 1280px;
  margin-bottom: 56px;
}
.hero h1 em { font-style: italic; color: var(--gold-warm); }
.hero-sub {
  font-size: 22px; line-height: 1.55;
  color: rgba(244, 239, 228, 0.82);
  max-width: 640px;
  margin-bottom: 56px;
}
.cta-row { display: flex; gap: 32px; align-items: center; flex-wrap: wrap; }

/* Buttons */
.btn-primary {
  background: var(--gold); color: var(--indigo-deep);
  padding: 20px 40px; text-decoration: none;
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
  transition: background 0.25s, transform 0.25s;
  display: inline-block;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-primary:hover { background: var(--gold-warm); transform: translateY(-2px); }
.btn-text {
  color: var(--ivory); text-decoration: none;
  font-size: 14px; font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 1.5px solid var(--gold);
}
.btn-text:hover { color: var(--gold-warm); border-color: var(--gold-warm); }
.btn-text.on-light {
  color: var(--indigo);
  border-bottom-color: var(--gold);
}
.btn-text.on-light:hover { color: var(--gold-warm); border-color: var(--gold-warm); }

/* ═════════ Standing quote ═════════ */
.standing-quote {
  padding: 160px 0 120px;
  background:
    radial-gradient(ellipse at 25% 30%, rgba(200, 147, 75, 0.05), transparent 55%),
    radial-gradient(ellipse at 75% 70%, rgba(139, 122, 92, 0.06), transparent 55%),
    var(--ivory-warm);
  text-align: center;
}
.standing-quote-inner { max-width: 1100px; margin: 0 auto; }
.standing-quote blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(38px, 5.5vw, 68px);
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--indigo);
}
.standing-quote blockquote em {
  font-style: normal;
  color: var(--gold-warm);
}

/* ═════════ Sections (generic) ═════════ */
section { padding: 140px 0; }

/* Retreat and Fit sections — clean warm cream, matches Engagement section on retreat page */
#retreat,
#fit {
  background: var(--ivory-warm);
}

.section-label {
  font-size: 11px; letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-warm);
  margin-bottom: 40px;
  font-weight: 600;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 6vw, 80px);
  font-weight: 400;
  line-height: 1.02;
  letter-spacing: -0.025em;
  margin-bottom: 96px;
  max-width: 1100px;
}
.section-title em { font-style: italic; color: var(--gold-warm); }


/* ═════════ Problem section ═════════ */
.problem {
  background: var(--indigo);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.problem::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 20% 40%, rgba(216, 154, 82, 0.12), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(74, 86, 112, 0.4), transparent 50%);
  pointer-events: none;
}
.problem > .container { position: relative; z-index: 2; }
.problem .section-label { color: var(--gold-warm); }
.problem .section-title { color: var(--ivory); }
.problem .section-title em { color: var(--gold-warm); }
.problem-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: start;
}
.problem-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(28px, 3.2vw, 40px);
  line-height: 1.35;
  color: var(--ivory);
  font-style: italic;
  letter-spacing: -0.01em;
  max-width: 1100px;
}
.problem-lead em { font-style: normal; color: var(--gold-warm); }

/* Retreat / offering section */
.offering-header {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 96px;
  align-items: end;
  margin-bottom: 72px;
}
@media (max-width: 900px) { .offering-header { grid-template-columns: 1fr; gap: 32px; margin-bottom: 48px; } }
.offering-eyebrow {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 20px;
  color: var(--gold-warm);
  margin-bottom: 16px;
}
.offering-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(52px, 6.5vw, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  color: var(--indigo);
}
.offering-intro {
  font-size: 20px; line-height: 1.65;
  color: var(--indigo-soft);
}
.offering-intro p { margin-bottom: 22px; }
.offering-intro p:last-child { margin-bottom: 0; }
.learn-more {
  margin-top: 72px;
  padding-top: 40px;
  border-top: 1px solid var(--rule);
  text-align: center;
}
.learn-more .btn-text { color: var(--indigo); border-bottom-color: var(--gold); }
.learn-more .btn-text:hover { color: var(--gold-warm); }

/* ═════════ Option B — Bordered Cards ═════════
   Applied to both the "Why this work exists" list on the
   problem section, and the 6-phase arc under "The Retreat". */
.problem-cards,
.arc-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 1000px) {
  .problem-cards,
  .arc-cards { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .problem-cards,
  .arc-cards { grid-template-columns: 1fr; }
}

/* Card in dark (problem) context */
.problem-card {
  padding: 36px 32px;
  border: 1px solid rgba(232, 196, 138, 0.22);
  background: rgba(244, 239, 228, 0.03);
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
}
.problem-card:hover {
  border-color: rgba(232, 196, 138, 0.45);
  background: rgba(244, 239, 228, 0.05);
  transform: translateY(-2px);
}
.problem-card .card-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-warm);
  margin-bottom: 20px;
  display: block;
}
.problem-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  color: var(--ivory);
}
.problem-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(244, 239, 228, 0.82);
}

/* Card in light (arc) context */
.arc-card {
  padding: 36px 32px;
  border: 1px solid var(--rule);
  background: var(--ivory);
  box-shadow: 0 1px 3px rgba(26, 36, 56, 0.05);
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.arc-card:hover {
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(26, 36, 56, 0.08);
}
.arc-card .card-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 22px;
  color: var(--gold-warm);
  margin-bottom: 20px;
  display: block;
}
.arc-card h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 14px;
  letter-spacing: -0.005em;
  color: var(--indigo);
}
.arc-card p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--indigo-soft);
}


/* ═════════ Place ═════════ */
.place {
  background: var(--indigo-deep);
  color: var(--ivory);
  position: relative;
  overflow: hidden;
}
.place-atmosphere {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(216, 154, 82, 0.22), transparent 55%),
    radial-gradient(ellipse at 80% 80%, rgba(45, 58, 85, 0.5), transparent 55%);
  pointer-events: none;
}
.place > .container { position: relative; z-index: 2; }
.place .section-label { color: var(--gold-warm); }
.place .section-title { color: var(--ivory); }
.place .section-title em { color: var(--gold-warm); }
.place-grid {
  display: grid; grid-template-columns: 1.2fr 1fr;
  gap: 96px; align-items: center;
}
@media (max-width: 900px) { .place-grid { grid-template-columns: 1fr; gap: 48px; } }
.place-text {
  max-width: 900px;
}
.place-text p {
  font-size: 19px;
  line-height: 1.75;
  color: rgba(244, 239, 228, 0.88);
  margin-bottom: 24px;
}
.place-text p:first-child {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 40px);
  line-height: 1.4;
  color: var(--ivory);
  margin-bottom: 40px;
  letter-spacing: -0.005em;
  max-width: 1000px;
}
.place-image {
  aspect-ratio: 4/5;
  background:
    linear-gradient(180deg, rgba(13, 20, 36, 0.35), rgba(13, 20, 36, 0.65)),
    linear-gradient(135deg, #2d3a55, #4a5670, #6b7a95);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(232, 196, 138, 0.12);
}
.place-image::after {
  content: "LODGE INTERIOR — natural light, restrained interior, alpine textures, empty";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-size: 11px;
  letter-spacing: 0.24em;
  color: rgba(244, 239, 228, 0.8);
  font-weight: 500;
  text-align: center;
  max-width: 75%;
}

/* ═════════ Fit ═════════ */
.fit-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: start;
}
@media (max-width: 900px) { .fit-grid { grid-template-columns: 1fr; gap: 56px; } }
.fit-col h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 32px;
  color: var(--gold-warm);
  margin-bottom: 36px;
  letter-spacing: -0.005em;
}
.fit-col.no h3 { color: var(--muted); }
.fit-list { list-style: none; }
.fit-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--rule);
  font-size: 17px;
  line-height: 1.55;
  color: var(--indigo-soft);
}
.fit-list li:last-child { border-bottom: none; }

/* ═════════ Investment ═════════ */
.investment {
  background:
    radial-gradient(ellipse at 30% 30%, rgba(200, 147, 75, 0.05), transparent 55%),
    radial-gradient(ellipse at 80% 70%, rgba(139, 122, 92, 0.06), transparent 55%),
    var(--ivory-warm);
  position: relative;
}
.investment-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 96px; align-items: start;
}
@media (max-width: 900px) { .investment-grid { grid-template-columns: 1fr; gap: 56px; } }
.price-block {
  border-top: 2px solid var(--indigo);
  padding-top: 32px;
}
.price-label {
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 600;
}
.price-value {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(72px, 8vw, 108px);
  font-weight: 400;
  line-height: 0.95;
  color: var(--indigo);
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.price-value em { font-style: italic; color: var(--gold-warm); font-size: 0.55em; display: block; margin-bottom: 8px; }
.price-note {
  font-size: 16px;
  color: var(--indigo-soft);
  line-height: 1.65;
  max-width: 400px;
}
.includes-header {
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
  font-weight: 600;
}
.includes-list { list-style: none; }
.includes-list li {
  padding: 14px 0;
  font-size: 16px;
  color: var(--indigo-soft);
  line-height: 1.55;
  display: flex; gap: 18px; align-items: baseline;
}
.includes-list li::before {
  content: "✦";
  color: var(--gold-warm);
  font-size: 13px;
  flex-shrink: 0;
}
.separate-note {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  font-style: italic;
}

/* ═════════ CTA ═════════ */
.contact-cta {
  background:
    radial-gradient(ellipse at 50% 100%, rgba(216, 154, 82, 0.25), transparent 60%),
    var(--indigo-deep);
  color: var(--ivory);
  text-align: center;
  padding: 160px 0;
  position: relative;
  overflow: hidden;
}
.contact-cta > .container { position: relative; z-index: 2; }
.contact-cta .section-label { color: var(--gold-warm); }
.contact-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(48px, 7vw, 96px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
  margin-bottom: 48px;
  max-width: 1000px;
  margin-left: auto; margin-right: auto;
  color: var(--ivory);
}
.contact-cta h2 em { font-style: italic; color: var(--gold-warm); }
.contact-cta p {
  font-size: 19px;
  line-height: 1.65;
  color: rgba(244, 239, 228, 0.8);
  max-width: 640px;
  margin: 0 auto 56px;
}
.btn-primary-inverse {
  background: var(--gold); color: var(--indigo-deep);
  padding: 20px 40px; text-decoration: none;
  font-size: 12px; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 600;
  transition: background 0.25s, transform 0.25s;
  display: inline-block;
}
.btn-primary-inverse:hover { background: var(--gold-warm); transform: translateY(-2px); }

/* ═════════ Footer ═════════ */
footer {
  padding: 60px 0; text-align: center;
  background: var(--ivory-warm);
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 18px;
}
.footer-mark { width: 26px; height: 26px; color: var(--muted); }
footer p {
  font-size: 11px;
  color: var(--muted);
  letter-spacing: 0.12em;
}

/* ═════════ Interior page header (smaller than home hero) ═════════ */
.page-header {
  padding: 80px 0 60px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 60% 40% at 70% 20%, rgba(216, 154, 82, 0.28), transparent),
    radial-gradient(ellipse 80% 60% at 30% 80%, rgba(45, 58, 85, 0.55), transparent),
    linear-gradient(180deg, #0a1120 0%, #1a2438 45%, #2d3a55 100%);
  color: var(--ivory);
}
.page-header .stars {
  position: absolute; top: 0; left: 0; right: 0;
  height: 100%;
  pointer-events: none; z-index: 1;
  opacity: 0.55;
}
.page-header-content {
  position: relative; z-index: 2;
  animation: fadeUp 1.2s cubic-bezier(0.22, 0.61, 0.36, 1);
}
.breadcrumb {
  font-size: 12px; letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-pale);
  margin-bottom: 40px;
  display: flex; align-items: center; gap: 14px;
}
.breadcrumb a {
  color: var(--gold-pale); text-decoration: none;
  transition: color 0.2s;
}
.breadcrumb a:hover { color: var(--gold-warm); }
.breadcrumb .divider { opacity: 0.5; }
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(68px, 10.5vw, 148px);
  font-weight: 400;
  line-height: 0.93;
  letter-spacing: -0.032em;
  color: var(--ivory);
  margin-bottom: 40px;
}
.page-title em { font-style: italic; color: var(--gold-warm); }
.page-subtitle {
  font-size: 22px;
  line-height: 1.55;
  color: rgba(244, 239, 228, 0.82);
  max-width: 720px;
}

/* ═════════ Reveal ═════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.9s ease-out, transform 0.9s ease-out;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .reveal, .hero-content, .page-header-content { opacity: 1 !important; transform: none !important; animation: none !important; }
}
