:root {
  --ink: #151914;
  --forest: #10130f;
  --forest-2: #192019;
  --moss: #6f8065;
  --sage: #9caf8f;
  --mist: #dfe5da;
  --paper: #f2f0e9;
  --paper-2: #e9ebe3;
  --line: rgba(21, 25, 20, .16);
  --serif: "Iowan Old Style", "Baskerville", "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --max: 1240px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
body.dialog-open { overflow: hidden; }
button, input, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: inherit; }
::selection { color: var(--forest); background: #cdddbd; }

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: 1rem;
  transform: translateY(-180%);
  background: white;
  color: black;
  padding: .75rem 1rem;
}
.skip-link:focus { transform: none; }

.grain {
  position: fixed;
  inset: 0;
  z-index: 90;
  opacity: .035;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.95' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.9'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 78px;
  padding: 0 clamp(1.25rem, 4vw, 4.5rem);
  color: var(--mist);
  border-bottom: 1px solid rgba(255,255,255,.12);
  transition: background .35s ease, color .35s ease, height .35s ease;
}
.site-header.scrolled { height: 66px; background: rgba(16,19,15,.92); backdrop-filter: blur(16px); }
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  text-decoration: none;
  font-weight: 650;
  letter-spacing: -.02em;
}
.signal-dot {
  width: 10px;
  height: 10px;
  border: 1px solid currentColor;
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(223,229,218,.1);
}
.site-nav { display: flex; align-items: center; gap: clamp(1.15rem, 2.5vw, 2.4rem); }
.site-nav > a { color: inherit; font-size: .84rem; text-decoration: none; }
.site-nav > a:hover { opacity: .7; }
.menu-toggle { display: none; color: inherit; background: none; border: 0; }

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.1rem;
  min-height: 52px;
  padding: 0 1.25rem;
  border: 1px solid currentColor;
  border-radius: 2px;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: transform .22s ease, background .22s ease, color .22s ease;
}
.button:hover { transform: translateY(-2px); }
.button-small { min-height: 40px; padding-inline: 1rem; color: var(--forest); background: var(--mist); border-color: var(--mist); }
.button-primary { color: var(--paper); background: var(--forest); border-color: var(--forest); }
.button-primary:hover { color: var(--forest); background: var(--sage); border-color: var(--sage); }
.button-light { color: var(--forest); background: var(--paper); border-color: var(--paper); }
.button-full { width: 100%; }
.text-link { font-size: .86rem; font-weight: 650; text-underline-offset: .3em; }

.eyebrow {
  margin: 0 0 1.2rem;
  color: var(--moss);
  font-size: .68rem;
  font-weight: 750;
  letter-spacing: .18em;
  line-height: 1.4;
  text-transform: uppercase;
}
.section { padding: clamp(6rem, 10vw, 10rem) clamp(1.25rem, 5vw, 5.5rem); }
.section-heading { max-width: 850px; margin: 0 auto clamp(3.5rem, 7vw, 6.5rem); text-align: center; }
.section-heading.compact { margin-bottom: 3rem; }
.section-heading h2, .reserve h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5.4vw, 5rem);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .98;
}
.section-heading > p:last-child { max-width: 640px; margin: 1.8rem auto 0; color: #4d574c; }

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  color: var(--mist);
  background: var(--forest);
  place-items: center;
  padding: 9rem clamp(1.25rem, 6vw, 6.5rem) 7rem;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 49.95%, rgba(223,229,218,.06) 50%, transparent 50.05%),
    linear-gradient(transparent 49.95%, rgba(223,229,218,.06) 50%, transparent 50.05%);
  background-size: 12vw 12vw;
  mask-image: linear-gradient(to bottom, black, transparent 88%);
}
.hero-field {
  position: absolute;
  right: max(-11vw, -150px);
  top: 50%;
  width: min(63vw, 790px);
  transform: translateY(-48%);
  color: #9db08d;
  opacity: .84;
}
.hero-field svg { display: block; width: 100%; filter: drop-shadow(0 30px 70px rgba(0,0,0,.28)); }
.contours { opacity: .54; stroke-width: .7; vector-effect: non-scaling-stroke; }
.contours path { animation: breathe 8s ease-in-out infinite alternate; transform-origin: center; }
.contours path:nth-child(2) { animation-delay: -2s; }
.contours path:nth-child(3) { animation-delay: -4s; }
.contours path:nth-child(4) { animation-delay: -6s; }
.pulse-core { animation: pulse 3s ease-in-out infinite; }
@keyframes breathe { to { transform: scale(1.018) rotate(.5deg); opacity: .65; } }
@keyframes pulse { 50% { opacity: .28; transform: scale(2.4); transform-origin: center; } }

.hero-content { position: relative; z-index: 2; width: min(100%, var(--max)); margin-inline: auto; }
.hero-content .eyebrow { color: #abbc9d; }
.hero h1 {
  max-width: 940px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(3.4rem, 8.4vw, 8.3rem);
  font-weight: 400;
  letter-spacing: -.065em;
  line-height: .83;
}
.hero h1 em { color: #bfd1af; font-weight: 400; }
.hero-intro { max-width: 620px; margin: 2.6rem 0 0; color: #bac4b5; font-size: clamp(1rem, 1.45vw, 1.2rem); }
.hero-actions { display: flex; align-items: center; gap: 2rem; margin-top: 2.4rem; }
.hero .button-primary { color: var(--forest); background: var(--mist); border-color: var(--mist); }
.hero .button-primary:hover { background: var(--sage); border-color: var(--sage); }
.hero-facts { display: flex; width: min(100%, 670px); margin-top: 4.5rem; border-top: 1px solid rgba(223,229,218,.2); }
.hero-facts div { display: grid; min-width: 0; padding: 1.1rem 2.5rem 0 0; }
.hero-facts div + div { padding-left: 2.5rem; border-left: 1px solid rgba(223,229,218,.2); }
.hero-facts strong { font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.hero-facts span { color: #8f9b8c; font-size: .75rem; }
.scroll-cue { position: absolute; bottom: 2.6rem; right: clamp(1.25rem, 6vw, 6.5rem); display: flex; align-items: center; gap: .8rem; color: #899587; font-size: .64rem; letter-spacing: .14em; text-transform: uppercase; }
.scroll-cue span { display: block; width: 36px; height: 1px; background: currentColor; }

.experience { background: var(--paper); }
.arc-shell { max-width: var(--max); margin: 0 auto; border-block: 1px solid var(--line); }
.arc-tabs { display: grid; grid-template-columns: repeat(5, 1fr); border-bottom: 1px solid var(--line); }
.arc-tabs button {
  padding: 1.5rem 1rem;
  border: 0;
  color: #657062;
  background: transparent;
  font-weight: 650;
  cursor: pointer;
  transition: color .2s ease, background .2s ease;
}
.arc-tabs button + button { border-left: 1px solid var(--line); }
.arc-tabs button span { display: block; margin-bottom: .4rem; font-size: .58rem; letter-spacing: .14em; }
.arc-tabs button[aria-selected="true"] { color: var(--paper); background: var(--forest); }
.arc-panel { display: grid; grid-template-columns: .45fr 1.55fr; min-height: 340px; padding: clamp(2rem, 6vw, 5rem); align-items: center; }
.arc-number { color: rgba(21,25,20,.08); font-family: var(--serif); font-size: clamp(7rem, 14vw, 13rem); line-height: .7; }
.arc-panel > div:last-child { max-width: 660px; }
.arc-panel h3 { margin: 0 0 .8rem; font-family: var(--serif); font-size: clamp(2.7rem, 5vw, 4.6rem); font-weight: 400; line-height: 1; }
.arc-sense { color: var(--moss); font-size: .68rem; font-weight: 750; letter-spacing: .14em; text-transform: uppercase; }
.arc-prompt { margin-top: 1.6rem; padding-left: 1.2rem; color: #4d574c; border-left: 1px solid var(--moss); font-family: var(--serif); font-size: 1.16rem; font-style: italic; }
.arc-panel.is-changing > * { animation: panelIn .38s ease both; }
@keyframes panelIn { from { opacity: 0; transform: translateY(8px); } }

.field-notes { display: grid; grid-template-columns: repeat(3, 1fr); max-width: var(--max); margin: clamp(5rem, 10vw, 9rem) auto; border: 1px solid var(--line); }
.field-notes article { position: relative; min-height: 390px; padding: clamp(2rem, 3vw, 3.2rem); }
.field-notes article + article { border-left: 1px solid var(--line); }
.field-notes h3 { margin: 0 0 1.4rem; font-family: var(--serif); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 400; line-height: 1.05; }
.field-notes p:not(.eyebrow) { color: #536050; }
.field-notes small { position: absolute; right: 2rem; bottom: 2rem; left: 2rem; color: #7b8478; font-size: .69rem; }
.note-index { display: grid; width: 38px; height: 38px; margin-bottom: 4rem; border: 1px solid var(--line); border-radius: 50%; place-items: center; font-family: var(--serif); }

.distinction { display: grid; grid-template-columns: 1fr 1fr; max-width: var(--max); margin: 0 auto clamp(7rem, 13vw, 12rem); }
.distinction > div { padding: clamp(2.5rem, 5vw, 5rem); }
.distinction > div:first-child { color: var(--mist); background: var(--forest); }
.distinction > div:last-child { background: var(--paper-2); }
.distinction h3 { max-width: 500px; margin: 0 0 1.2rem; font-family: var(--serif); font-size: clamp(2rem, 4vw, 3.6rem); font-weight: 400; line-height: 1.04; }
.distinction p:last-child { max-width: 520px; opacity: .76; }
.distinction > div:first-child .eyebrow { color: var(--sage); }

.schedule-block { scroll-margin-top: 80px; }
.schedule-shell { max-width: 1000px; margin: 0 auto; }
.day-tabs { display: grid; grid-template-columns: repeat(3, 1fr); border-block: 1px solid var(--line); }
.day-tabs button { padding: 1.25rem; color: #61705d; background: transparent; border: 0; cursor: pointer; }
.day-tabs button + button { border-left: 1px solid var(--line); }
.day-tabs span, .day-tabs small { display: block; }
.day-tabs span { font-family: var(--serif); font-size: 1.4rem; }
.day-tabs small { font-size: .66rem; letter-spacing: .1em; text-transform: uppercase; }
.day-tabs button[aria-selected="true"] { color: var(--paper); background: var(--forest); }
.timeline { padding: 1.8rem 0; }
.timeline-item { display: grid; grid-template-columns: 110px 1fr; gap: 1.5rem; padding: 1.35rem 1rem; border-bottom: 1px solid var(--line); animation: panelIn .35s both; }
.timeline-item time { color: var(--moss); font-size: .68rem; font-weight: 750; letter-spacing: .1em; text-transform: uppercase; }
.timeline-item h3 { margin: -.25rem 0 .3rem; font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }
.timeline-item p { margin: 0; color: #697266; font-size: .84rem; }

.reserve { color: var(--mist); background: var(--forest); }
.reserve-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(3rem, 7vw, 8rem); max-width: var(--max); margin: 0 auto; align-items: start; }
.reserve-copy > p:not(.eyebrow) { max-width: 660px; margin-top: 2rem; color: #adb8a9; font-size: 1.05rem; }
.reserve .eyebrow { color: var(--sage); }
.facilitator { display: grid; grid-template-columns: 76px 1fr; gap: 1.5rem; max-width: 660px; margin-top: 4rem; padding-top: 2rem; border-top: 1px solid rgba(223,229,218,.18); }
.facilitator-mark { display: grid; width: 66px; height: 66px; color: var(--sage); border: 1px solid rgba(223,229,218,.32); border-radius: 50%; place-items: center; font-family: var(--serif); }
.facilitator .eyebrow { margin-bottom: .45rem; }
.facilitator h3 { margin: 0 0 .5rem; font-family: var(--serif); font-size: 1.7rem; font-weight: 400; }
.facilitator p:last-child { margin: 0; color: #aeb7ab; font-size: .86rem; }
.scope-note { max-width: 660px; margin-top: 2rem; padding: 1.4rem; color: #9aa496; background: rgba(255,255,255,.035); border-left: 2px solid var(--moss); font-size: .77rem; }
.scope-note p { margin: .35rem 0 0; }

.price-card { position: sticky; top: 100px; padding: clamp(2rem, 4vw, 3.4rem); color: var(--ink); background: var(--paper); }
.price-card .eyebrow { color: var(--moss); }
.price { display: flex; align-items: flex-start; margin: .5rem 0; font-family: var(--serif); font-size: clamp(4.8rem, 8vw, 7.2rem); letter-spacing: -.07em; line-height: .8; }
.price span { margin: .25rem .25rem 0 0; font-family: var(--sans); font-size: 1rem; font-weight: 700; letter-spacing: 0; }
.price-note { margin: 1.3rem 0 2rem; color: #657062; font-size: .75rem; }
.microcopy { margin: .85rem 0 0; color: #747e71; font-size: .64rem; line-height: 1.5; }
.included, .separate { margin-top: 2rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.included h3, .separate h3 { margin: 0 0 .8rem; font-size: .68rem; letter-spacing: .12em; text-transform: uppercase; }
.included ul { display: grid; gap: .55rem; margin: 0; padding: 0; list-style: none; }
.included li { position: relative; padding-left: 1.35rem; color: #475144; font-size: .78rem; }
.included li::before { content: "✓"; position: absolute; left: 0; color: var(--moss); }
.separate p { color: #5f695d; font-size: .76rem; }
.separate a { font-size: .72rem; font-weight: 700; text-underline-offset: .3em; }

.faq { max-width: 1000px; margin: clamp(7rem, 12vw, 11rem) auto 0; }
.faq > h2 { margin-bottom: 2.5rem; }
.faq-list { border-top: 1px solid rgba(223,229,218,.2); }
.faq details { border-bottom: 1px solid rgba(223,229,218,.2); }
.faq summary { display: flex; justify-content: space-between; gap: 1rem; padding: 1.5rem 0; cursor: pointer; list-style: none; font-family: var(--serif); font-size: 1.22rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary span { color: var(--sage); transition: transform .2s ease; }
.faq details[open] summary span { transform: rotate(45deg); }
.faq details p { max-width: 720px; margin: -.3rem 0 1.7rem; color: #9eaa9b; font-size: .86rem; }

.final-cta { position: relative; max-width: var(--max); margin: clamp(7rem, 13vw, 12rem) auto 0; padding: clamp(4rem, 8vw, 8rem) 1.5rem; overflow: hidden; color: var(--forest); background: var(--sage); text-align: center; }
.final-cta .eyebrow { color: #455440; }
.final-cta h2 { position: relative; }
.final-cta .button { position: relative; margin-top: 2.5rem; }
.final-cta > p:last-child { position: relative; margin: 2rem 0 0; font-size: .7rem; }
.signal-orbit { position: absolute; inset: 50% auto auto 50%; width: 620px; height: 620px; transform: translate(-50%,-50%); border: 1px solid rgba(16,19,15,.13); border-radius: 50%; }
.signal-orbit span { position: absolute; inset: 12%; border: 1px solid rgba(16,19,15,.1); border-radius: 47% 53% 52% 48%; }
.signal-orbit span:nth-child(2) { inset: 24%; transform: rotate(24deg); }
.signal-orbit span:nth-child(3) { inset: 37%; transform: rotate(-18deg); }

footer { display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 2rem clamp(1.25rem, 5vw, 5.5rem); color: #879183; background: #0a0c09; font-size: .7rem; }
footer p { margin: 0; }

.reserve-dialog {
  width: min(92vw, 590px);
  max-height: 92svh;
  overflow: auto;
  padding: clamp(2rem, 5vw, 3.5rem);
  color: var(--ink);
  background: var(--paper);
  border: 0;
  box-shadow: 0 28px 100px rgba(0,0,0,.5);
}
.reserve-dialog::backdrop { background: rgba(5,7,5,.82); backdrop-filter: blur(7px); }
.reserve-dialog h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 3.8rem); font-weight: 400; letter-spacing: -.05em; line-height: 1; }
.reserve-dialog > p:not(.eyebrow) { color: #5d675a; font-size: .88rem; }
.dialog-close { position: absolute; top: 1rem; right: 1rem; width: 42px; height: 42px; color: var(--ink); background: transparent; border: 1px solid var(--line); border-radius: 50%; cursor: pointer; }
.reserve-dialog form { display: grid; gap: 1rem; margin-top: 1.8rem; }
.reserve-dialog label { display: grid; gap: .35rem; font-size: .72rem; font-weight: 700; }
.reserve-dialog input, .reserve-dialog textarea { width: 100%; padding: .8rem; color: var(--ink); background: #faf9f4; border: 1px solid rgba(21,25,20,.22); border-radius: 0; outline: none; }
.reserve-dialog input:focus, .reserve-dialog textarea:focus { border-color: var(--moss); box-shadow: 0 0 0 3px rgba(111,128,101,.12); }
.reserve-dialog .check { display: grid; grid-template-columns: 18px 1fr; gap: .65rem; font-weight: 500; line-height: 1.4; }
.reserve-dialog .check input { width: 17px; height: 17px; margin-top: .1rem; }
.form-status { min-height: 1.2em; margin: 0; color: var(--moss); font-size: .72rem; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .8s ease, transform .8s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  .site-header { height: 66px; }
  .menu-toggle { display: block; padding: .6rem 0; cursor: pointer; }
  .site-nav {
    position: absolute;
    top: 66px;
    right: 0;
    left: 0;
    display: none;
    padding: 1.5rem;
    color: var(--mist);
    background: rgba(16,19,15,.98);
    border-top: 1px solid rgba(255,255,255,.1);
  }
  .site-nav.open { display: grid; }
  .site-nav a { min-height: 44px; padding: .65rem 0; }
  .hero-field { right: -30vw; width: 100vw; opacity: .52; }
  .hero h1 { max-width: 820px; }
  .field-notes { grid-template-columns: 1fr; }
  .field-notes article { min-height: 330px; }
  .field-notes article + article { border-top: 1px solid var(--line); border-left: 0; }
  .reserve-grid { grid-template-columns: 1fr; }
  .price-card { position: static; }
}

@media (max-width: 650px) {
  .section { padding-inline: 1.15rem; }
  .hero { min-height: 880px; padding: 8rem 1.15rem 6rem; place-items: start center; }
  .hero h1 { font-size: clamp(3.65rem, 16.2vw, 5.8rem); line-height: .88; }
  .hero-intro { max-width: 92%; font-size: .98rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 1.2rem; }
  .hero-actions .button { width: 100%; }
  .text-link { text-align: center; }
  .hero-facts { margin-top: 3.5rem; }
  .hero-facts div { flex: 1; padding-right: .6rem; }
  .hero-facts div + div { padding-left: .8rem; }
  .hero-facts strong { font-size: 1.35rem; }
  .hero-facts span { font-size: .6rem; }
  .scroll-cue { display: none; }
  .arc-tabs { overflow-x: auto; grid-template-columns: repeat(5, minmax(105px, 1fr)); }
  .arc-panel { grid-template-columns: 1fr; min-height: 430px; padding: 2.3rem 1rem; }
  .arc-number { margin-bottom: 1.8rem; font-size: 6rem; }
  .field-notes article { padding: 2rem 1.5rem 4.5rem; }
  .distinction { grid-template-columns: 1fr; }
  .distinction > div { padding: 2.8rem 1.5rem; }
  .day-tabs button { padding: .85rem .4rem; }
  .day-tabs span { font-size: 1.05rem; }
  .day-tabs small { font-size: .52rem; }
  .timeline-item { grid-template-columns: 78px 1fr; gap: .7rem; padding-inline: .2rem; }
  .timeline-item h3 { font-size: 1.2rem; }
  .facilitator { grid-template-columns: 1fr; }
  .price-card { margin-inline: -.1rem; padding: 2rem 1.5rem; }
  .final-cta { padding-inline: 1rem; }
  footer { align-items: flex-start; flex-direction: column; }
  footer p:nth-child(2) { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
