:root {
  --ink: #20231e;
  --paper: #f4f0e8;
  --paper-2: #ebe5da;
  --moss: #30392c;
  --white: #fffdf8;
  --line: rgba(32,35,30,.17);
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-weight: 300;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.hidden { display: none; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 4vw;
  color: var(--white);
  transition: background .4s ease, padding .4s ease, color .4s ease;
}
.site-header.scrolled {
  padding-block: 14px;
  background: rgba(30,34,28,.9);
  backdrop-filter: blur(14px);
}
.brand {
  display: inline-flex;
  flex-direction: column;
  font-family: var(--serif);
  letter-spacing: .18em;
  font-size: 18px;
  line-height: .9;
}
.nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 13px;
}
.nav a { position: relative; }
.nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0; right: 100%; bottom: -7px;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}
.nav a:hover::after { right: 0; }
.nav-cta {
  border: 1px solid rgba(255,255,255,.65);
  padding: 11px 22px;
}
.menu-toggle { display:none; }

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(rgba(19,22,18,.15), rgba(19,22,18,.35)),
    url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=2400&q=90") center/cover no-repeat;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(12,15,12,.58), rgba(12,15,12,.08) 70%);
}
.hero-content {
  width: min(1180px, 90vw);
  position: relative;
  z-index: 2;
  padding-top: 70px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: .2em;
  font-size: 11px;
  margin: 0 0 22px;
}
.eyebrow.dark { color: #6c705f; }
h1,h2,h3,p { margin-top: 0; }
h1,h2,h3 { font-family: var(--serif); font-weight: 400; }
h1 { font-size: clamp(64px, 8vw, 120px); line-height: .89; letter-spacing: -.025em; max-width: 930px; }
.hero-copy { font-size: 20px; line-height: 1.55; margin: 30px 0; }
.button {
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 16px 23px;
  border: 1px solid;
  transition: .3s ease;
  font-weight: 400;
}
.button.light { color: var(--white); border-color: rgba(255,255,255,.7); }
.button.light:hover { color: var(--ink); background: var(--white); }
.button.dark { color: var(--white); background: var(--moss); border-color: var(--moss); }
.button.dark:hover { background: transparent; color: var(--moss); }
.scroll-cue {
  position: absolute;
  z-index: 2;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  letter-spacing: .12em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.scroll-cue span { width: 1px; height: 45px; background: rgba(255,255,255,.6); }

.section-pad { padding: 120px 6vw; }
.statement {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: 7vw;
  align-items: center;
  background: var(--white);
}
.statement h2 { font-size: clamp(48px, 5vw, 78px); line-height: 1; }
.statement p { font-size: 18px; line-height: 1.6; }
.statement-image {
  min-height: 520px;
  background: url("https://images.unsplash.com/photo-1473448912268-2022ce9509d8?auto=format&fit=crop&w=1800&q=88") center/cover no-repeat;
}

.experience { background: var(--paper); }
.section-heading { text-align:center; max-width: 720px; margin: 0 auto 70px; }
.section-heading h2 { font-size: clamp(50px, 6vw, 84px); line-height: 1; }
.experience-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.experience-card {
  min-height: 260px;
  padding: 40px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.experience-card:last-child { border-right: 0; }
.icon { font-size: 30px; margin-bottom: 26px; }
.experience-card h3 { font-size: 25px; margin-bottom: 12px; }
.experience-card p { font-size: 13px; line-height: 1.7; color:#66695f; }

.stillness {
  min-height: 680px;
  position: relative;
  color: var(--white);
  display:flex;
  align-items:center;
  background: url("https://images.unsplash.com/photo-1500534623283-312aade485b7?auto=format&fit=crop&w=2200&q=90") center/cover no-repeat;
}
.stillness-overlay { position:absolute; inset:0; background:linear-gradient(90deg, rgba(15,20,16,.76), rgba(15,20,16,.18)); }
.stillness-copy { position:relative; z-index:2; width:min(1180px,88vw); margin:auto; }
.stillness h2 { font-size: clamp(75px, 11vw, 160px); margin-bottom: 24px; }
.stillness-lines { display:flex; flex-direction:column; gap:10px; font-size:16px; }

.retreat { background: var(--white); }
.retreat-intro { max-width: 780px; margin-bottom: 50px; }
.retreat-intro h2 { font-size: clamp(58px, 7vw, 96px); line-height:.95; margin-bottom:22px; }
.retreat-lead { font-size:18px; color:#64685e; }
.retreat-card {
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  min-height: 520px;
  box-shadow: 0 20px 70px rgba(32,35,30,.09);
}
.retreat-photo {
  background: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=88") center/cover no-repeat;
}
.retreat-info { padding: 70px; display:flex; flex-direction:column; justify-content:center; }
.meta { display:flex; flex-wrap:wrap; gap:22px; font-size:12px; text-transform:uppercase; letter-spacing:.1em; color:#70746a; }
.retreat-info h3 { font-size:48px; line-height:1.05; margin:28px 0 18px; }
.retreat-info p { line-height:1.7; color:#5f625a; margin-bottom:32px; }

.about {
  display:grid;
  grid-template-columns:1fr 1fr;
  padding:0;
  background:var(--paper-2);
}
.about-photo {
  min-height:720px;
  background:
    linear-gradient(rgba(25,28,24,.08), rgba(25,28,24,.18)),
    url("https://images.unsplash.com/photo-1500648767791-00dcc994a43e?auto=format&fit=crop&w=1400&q=88") center/cover no-repeat;
}
.about-copy { padding:120px 8vw; align-self:center; }
.about-copy h2 { font-size: clamp(50px,5vw,74px); line-height:1; }
.about-copy p { font-size:17px; line-height:1.75; color:#5f625a; }
.signature { font-family:var(--serif); font-style:italic; font-size:30px!important; color:var(--ink)!important; margin-top:35px; }

.journal { background:var(--paper); }
.journal-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--line); }
.journal-card { padding:42px 35px; border-right:1px solid var(--line); min-height:290px; display:flex; flex-direction:column; }
.journal-card:last-child { border-right:0; }
.journal-card span { font-size:11px; letter-spacing:.16em; text-transform:uppercase; color:#74786d; }
.journal-card h3 { font-size:36px; line-height:1.05; margin:34px 0 auto; }
.journal-card a { font-size:13px; margin-top:35px; }

.faq { background:var(--white); }
.faq-list { max-width:900px; margin:auto; border-top:1px solid var(--line); }
details { border-bottom:1px solid var(--line); padding:25px 0; }
summary { cursor:pointer; list-style:none; font-family:var(--serif); font-size:28px; display:flex; justify-content:space-between; }
summary::after { content:"+"; font-family:var(--sans); font-weight:300; }
details[open] summary::after { content:"−"; }
details p { max-width:700px; color:#62665c; line-height:1.7; }

.apply {
  color:var(--white);
  background:var(--moss);
}
.apply-inner { max-width:950px; margin:auto; }
.apply h2 { font-size:clamp(62px,8vw,110px); line-height:.9; }
.apply-inner > p { max-width:650px; line-height:1.7; }
.application-form { margin-top:55px; }
.field-row { display:grid; grid-template-columns:1fr 1fr; gap:25px; }
.application-form label { display:flex; flex-direction:column; gap:9px; margin-bottom:24px; }
.application-form label span { font-size:11px; text-transform:uppercase; letter-spacing:.15em; opacity:.75; }
.application-form input,
.application-form textarea {
  width:100%;
  color:var(--white);
  background:transparent;
  border:0;
  border-bottom:1px solid rgba(255,255,255,.45);
  padding:12px 0;
  outline:none;
}
.application-form textarea { resize:vertical; }
.application-form input:focus,
.application-form textarea:focus { border-color:var(--white); }
.submit { background:transparent; cursor:pointer; }

.footer {
  color:var(--white);
  background:
    linear-gradient(rgba(25,32,25,.86), rgba(25,32,25,.91)),
    url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
  padding:90px 6vw 35px;
}
.blessing { text-align:center; margin-bottom:90px; }
.blessing h2 { font-size:58px; margin-bottom:8px; }
.blessing p { font-family:var(--serif); font-style:italic; font-size:20px; opacity:.75; }
.footer-bottom { display:grid; grid-template-columns:1fr 1fr 1fr; align-items:end; gap:25px; font-size:11px; opacity:.8; }
.footer-links { display:flex; justify-content:flex-end; gap:20px; }
.footer-brand { font-size:15px; }

.reveal { opacity:0; transform:translateY(25px); transition:opacity .9s ease, transform .9s ease; }
.reveal.visible { opacity:1; transform:none; }
.delay-1 { transition-delay:.12s; }
.delay-2 { transition-delay:.24s; }

@media (max-width: 1050px) {
  .nav { gap:18px; }
  .experience-grid { grid-template-columns:repeat(3,1fr); }
  .experience-card:nth-child(3) { border-right:0; }
  .experience-card:nth-child(-n+3) { border-bottom:1px solid var(--line); }
  .retreat-card { grid-template-columns:1fr; }
  .retreat-photo { min-height:430px; }
}

@media (max-width: 760px) {
  .site-header { padding:18px 20px; }
  .menu-toggle {
    display:flex; flex-direction:column; gap:6px; border:0; background:none; padding:8px; z-index:60;
  }
  .menu-toggle span { width:26px; height:1px; background:currentColor; transition:.3s; }
  .menu-toggle.open span:first-child { transform:translateY(3.5px) rotate(45deg); }
  .menu-toggle.open span:last-child { transform:translateY(-3.5px) rotate(-45deg); }
  .nav {
    position:fixed; inset:0;
    display:flex; flex-direction:column; justify-content:center;
    background:rgba(30,34,28,.98);
    transform:translateY(-105%);
    transition:transform .4s ease;
    font-size:18px;
  }
  .nav.open { transform:none; }
  .nav-cta { margin-top:15px; }
  .section-pad { padding:85px 22px; }
  h1 { font-size:60px; }
  .hero-content { width:calc(100% - 44px); }
  .hero-copy { font-size:17px; }
  .statement { grid-template-columns:1fr; }
  .statement-image { min-height:360px; }
  .experience-grid { grid-template-columns:1fr 1fr; }
  .experience-card { border-bottom:1px solid var(--line); }
  .experience-card:nth-child(odd) { border-right:1px solid var(--line)!important; }
  .experience-card:nth-child(even) { border-right:0!important; }
  .stillness { min-height:620px; }
  .stillness h2 { font-size:82px; }
  .retreat-info { padding:45px 28px; }
  .retreat-info h3 { font-size:40px; }
  .about { grid-template-columns:1fr; }
  .about-photo { min-height:520px; }
  .about-copy { padding:80px 22px; }
  .journal-grid { grid-template-columns:1fr; }
  .journal-card { border-right:0; border-bottom:1px solid var(--line); }
  .field-row { grid-template-columns:1fr; gap:0; }
  .footer-bottom { grid-template-columns:1fr; text-align:center; justify-items:center; }
  .footer-links { justify-content:center; }
  .blessing h2 { font-size:42px; }
}
