:root {
  --forest: #173d31;
  --forest-deep: #0d2b22;
  --moss: #55705d;
  --sage: #b8c6b6;
  --mist: #e9eee7;
  --paper: #f5f1e7;
  --paper-2: #ebe4d5;
  --ink: #20312a;
  --warm: #bd8252;
  --line: rgba(23, 61, 49, 0.19);
  --serif: "Iowan Old Style", "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
  --max: 1180px;
  --pad: clamp(1.25rem, 4vw, 4rem);
  --radius: 2px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
}

body.menu-open { overflow: hidden; }

::selection { background: var(--sage); color: var(--forest-deep); }

a { color: inherit; }
img { display: block; max-width: 100%; }
button, input, textarea { font: inherit; }

.skip-link {
  position: fixed;
  top: .5rem;
  left: .5rem;
  z-index: 200;
  transform: translateY(-150%);
  padding: .65rem .9rem;
  color: var(--paper);
  background: var(--forest-deep);
}

.skip-link:focus { transform: none; }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 50;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,.2);
  transition: background .3s ease, color .3s ease, border-color .3s ease;
}

.site-header.inner-header {
  position: relative;
  color: var(--forest-deep);
  background: rgba(245,241,231,.96);
  border-color: var(--line);
}

.nav-wrap {
  width: min(100% - 2 * var(--pad), var(--max));
  min-height: 88px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: .02em;
  white-space: nowrap;
}

.brand-logo {
  width: 56px;
  height: auto;
  flex: 0 0 auto;
  object-fit: contain;
}

.brand-logo--light {
  filter: brightness(0) invert(1);
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(.9rem, 2.1vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  text-decoration: none;
  padding: .55rem 0;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: .25rem;
  height: 1px;
  background: currentColor;
  transition: right .25s ease;
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="page"]::after { right: 0; }

.nav-cta {
  border: 1px solid currentColor;
  padding: .65rem 1rem !important;
}

.nav-cta::after { display: none; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform .25s ease, opacity .25s ease;
}

.menu-open .menu-toggle span { opacity: 0; }
.menu-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
.menu-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  min-height: clamp(640px, 82svh, 820px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}

.hero-media {
  position: absolute;
  inset: -5%;
  background: url("images/forest-hero.jpg") center / cover no-repeat;
  transform: scale(1.03);
  will-change: transform;
}

.hero::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(6,25,19,.82) 0%, rgba(9,31,24,.55) 39%, rgba(9,31,24,.08) 72%), linear-gradient(0deg, rgba(8,29,22,.65), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100% - 2 * var(--pad), var(--max));
  margin: 0 auto;
  padding: 9rem 0 clamp(3rem, 9vh, 6.5rem);
}

.hero-copy { max-width: 720px; }

.eyebrow {
  display: block;
  margin-bottom: 1.2rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .19em;
  text-transform: uppercase;
}

h1, h2, h3, blockquote {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.03;
  text-wrap: balance;
}

h1 { margin: 0; font-size: clamp(2.5rem, 4.8vw, 4.6rem); letter-spacing: -.04em; }
h2 { margin: 0 0 1.3rem; font-size: clamp(1.75rem, 3vw, 3rem); letter-spacing: -.035em; }
h3 { margin: 0 0 .7rem; font-size: clamp(1.4rem, 2vw, 1.95rem); letter-spacing: -.02em; }

.hero h1 { max-width: 680px; }

.hero-lead {
  max-width: 620px;
  margin: 1.5rem 0 0;
  color: rgba(255,255,255,.88);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.actions { display: flex; flex-wrap: wrap; gap: .7rem; margin-top: 2rem; }

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .75rem;
  padding: .7rem 1.25rem;
  border: 1px solid var(--forest);
  color: var(--paper);
  background: var(--forest);
  text-decoration: none;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
  transition: color .25s ease, background .25s ease, transform .25s ease;
}

.button::after { content: "→"; transition: transform .25s ease; }
.button:hover::after { transform: translateX(4px); }
.button:hover { background: var(--forest-deep); transform: translateY(-2px); }
.button.light { color: var(--forest-deep); background: var(--paper); border-color: var(--paper); }
.button.light:hover { color: #fff; background: transparent; }
.button.ghost { color: inherit; background: transparent; border-color: currentColor; }
.button.ghost:hover { color: var(--paper); background: var(--forest); }
.hero .button.ghost:hover { color: var(--forest-deep); background: var(--paper); }

.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem 1.25rem;
  margin-top: 1.8rem;
  color: rgba(255,255,255,.72);
  font-size: .76rem;
  letter-spacing: .045em;
}

.trust-line span:not(:last-child)::after { content: "·"; margin-left: 1.25rem; }

.scroll-cue {
  position: absolute;
  right: var(--pad);
  bottom: 3rem;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .8rem;
  color: rgba(255,255,255,.7);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue::after { content: ""; width: 1px; height: 48px; background: rgba(255,255,255,.6); animation: breathe 2s ease-in-out infinite; }

.section { padding: clamp(5rem, 10vw, 9rem) var(--pad); }
.section-sm { padding: clamp(3.5rem, 7vw, 6rem) var(--pad); }
.container { width: min(100%, var(--max)); margin: 0 auto; }
.narrow { width: min(100%, 780px); margin: 0 auto; }
.measure { max-width: 690px; }
.kicker { margin: 0 0 1.1rem; color: var(--moss); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.lead { font-family: var(--serif); font-size: clamp(1.35rem, 2.5vw, 2rem); line-height: 1.4; }
.muted { color: #5e6d66; }
.forest-bg { color: var(--paper); background: var(--forest); }
.deep-bg { color: var(--paper); background: var(--forest-deep); }
.mist-bg { background: var(--mist); }
.paper-2-bg { background: var(--paper-2); }

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: center;
}

.split.reverse > :first-child { order: 2; }

.portrait-image {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.profile-portrait {
  aspect-ratio: 1 / 1;
  object-position: center;
}

.about-profile-section { padding-block: clamp(3.5rem, 6vw, 5.5rem); }
.about-profile {
  width: min(100%, 920px);
  grid-template-columns: minmax(0, 1fr) minmax(320px, 360px);
  gap: clamp(2.5rem, 5vw, 4.5rem);
}
.about-profile .image-wrap {
  width: min(82vw, 360px);
  height: min(82vw, 360px);
  aspect-ratio: 1 / 1;
  align-self: center;
}
.about-profile .profile-portrait {
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}
.about-profile-copy p { margin: 0 0 1.25rem; }
.about-profile-copy p:last-child { margin-bottom: 0; }

.home-image {
  display: block;
  width: 100%;
}

.home-image--shallow {
  height: auto;
  aspect-ratio: 8 / 5;
  object-fit: cover;
}

.home-image--full {
  height: auto;
  object-fit: contain;
}

.landscape-image {
  display: block;
  width: min(100%, 560px);
  margin: 0 auto;
  aspect-ratio: 3 / 2;
  object-fit: cover;
}

.image-wrap {
  position: relative;
  width: min(82vw, 420px);
  justify-self: center;
}
.image-wrap::after {
  content: "";
  position: absolute;
  inset: 1.25rem -1.25rem -1.25rem 1.25rem;
  z-index: -1;
  border: 1px solid var(--moss);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  margin-top: 1rem;
  padding-bottom: .22rem;
  border-bottom: 1px solid currentColor;
  text-decoration: none;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.text-link::after { content: "→"; transition: transform .25s; }
.text-link:hover::after { transform: translateX(4px); }

.steps { margin-top: 4rem; border-top: 1px solid rgba(245,241,231,.26); }
.step {
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(240px, .8fr);
  gap: 2rem;
  padding: 2rem 0;
  border-bottom: 1px solid rgba(245,241,231,.2);
  align-items: baseline;
}

.step-no { color: var(--sage); font-family: var(--serif); font-size: 1.6rem; }
.step h3 { margin: 0; }
.step p { margin: 0; color: rgba(245,241,231,.75); }

.quote-band { padding: clamp(4rem, 8vw, 7rem) var(--pad); color: var(--forest-deep); background: var(--sage); }
.quote-band blockquote { width: min(100%, 940px); margin: 0 auto; text-align: center; }
.quote-band blockquote p {
  margin: 0;
  font-size: clamp(1.35rem, 2.4vw, 2.3rem);
  line-height: 1.42;
}
.quote-band blockquote cite {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--sans);
  font-size: .9rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.quote-band blockquote cite::before { content: "— "; }

.benefit-list, .check-list, .plain-list { list-style: none; margin: 2rem 0 0; padding: 0; }
.benefit-list { columns: 2; column-gap: 4rem; }
.benefit-list li, .check-list li, .plain-list li {
  position: relative;
  break-inside: avoid;
  padding: .9rem 0 .9rem 1.6rem;
  border-bottom: 1px solid var(--line);
}
.benefit-list li::before, .check-list li::before, .plain-list li::before { content: "—"; position: absolute; left: 0; color: var(--warm); }

.program-list { margin-top: 3.5rem; border-top: 1px solid var(--line); }
.program-row {
  position: relative;
  display: grid;
  grid-template-columns: 80px minmax(0, 1fr) minmax(250px, .8fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none;
  transition: padding .3s ease, color .3s ease;
}
.program-row:hover { padding-left: 1rem; color: var(--forest); }
.program-row .index { color: var(--moss); font-family: var(--serif); font-size: 1.45rem; }
.program-row h3 { margin: 0; }
.program-row p { margin: 0; color: #5e6d66; }
.program-row .arrow { font-size: 1.6rem; }

.profile-note {
  max-width: 530px;
  margin-top: 2rem;
  padding: 1.5rem 0 0;
  border-top: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.location {
  position: relative;
  min-height: clamp(560px, 68svh, 720px);
  display: flex;
  align-items: center;
  padding-block: clamp(5rem, 8vw, 7rem);
  box-sizing: border-box;
  overflow: hidden;
  color: #fff;
  background: var(--forest-deep);
}
.location::before { content: ""; position: absolute; inset: 0; background: url("images/forest-hero.jpg") center 62% / cover no-repeat; opacity: .48; }
.location::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(8,32,24,.92), rgba(8,32,24,.27)); }
.location-content { position: relative; z-index: 1; width: min(100% - 2 * var(--pad), var(--max)); margin: 0 auto; }
.location-content > * { max-width: 620px; }

.faq-preview { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(3rem, 8vw, 8rem); }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  position: relative;
  padding: 1.35rem 3rem 1.35rem 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.3;
}
summary::-webkit-details-marker { display: none; }
summary::after { content: "+"; position: absolute; right: .2rem; top: 1.1rem; color: var(--moss); font-family: var(--sans); font-size: 1.6rem; font-weight: 300; transition: transform .25s; }
details[open] summary::after { transform: rotate(45deg); }
details p { max-width: 760px; margin: 0; padding: 0 3rem 1.5rem 0; color: #52625a; }

.cta-band { padding: clamp(5rem, 10vw, 9rem) var(--pad); color: var(--paper); background: var(--forest-deep); text-align: center; }
.cta-band h2 { width: min(100%, 900px); margin: 0 auto 1.5rem; }
.cta-band p { max-width: 650px; margin: 0 auto; color: rgba(245,241,231,.76); }
.cta-band .actions { justify-content: center; }

.inner-hero { padding: clamp(5rem, 11vw, 10rem) var(--pad) clamp(4rem, 8vw, 7rem); color: var(--paper); background: var(--forest-deep); }
.inner-hero .container { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .55fr); gap: 4rem; align-items: end; }
.inner-hero h1 { font-size: clamp(2.5rem, 4.5vw, 4.35rem); }
.inner-hero p { margin: 0 0 .65rem; color: rgba(245,241,231,.74); }
.inner-hero .eyebrow { color: var(--sage); }
.library-hero h1 { max-width: 850px; font-size: clamp(2.45rem, 3.8vw, 3.8rem); }
.library-hero .hero-copy { max-width: 520px; }
.library-hero .hero-copy p + p { margin-top: 1.1rem; }

.content-grid { display: grid; grid-template-columns: minmax(230px, .38fr) minmax(0, 1fr); gap: clamp(3rem, 8vw, 8rem); }
.content-grid > * { min-width: 0; }
.section-label { position: sticky; top: 2rem; align-self: start; color: var(--moss); font-size: .72rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; }
.prose { min-width: 0; max-width: 800px; }
.prose h2 { margin-top: 4rem; font-size: clamp(1.7rem, 2.6vw, 2.55rem); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { margin-top: 2.5rem; line-height: 1.2; }
.prose p { margin: 0 0 1.25rem; }
.prose ul, .prose ol { padding-left: 1.3rem; }
.prose li { margin-bottom: .65rem; }

.comparison { width: 100%; margin: 2rem 0; border-collapse: collapse; font-size: .94rem; }
.comparison th, .comparison td { padding: 1rem; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.comparison th { color: var(--forest); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }

.numbered-flow { counter-reset: flow; list-style: none; margin: 2rem 0; padding: 0 !important; }
.numbered-flow li { counter-increment: flow; display: grid; grid-template-columns: 48px 1fr; gap: 1rem; padding: 1rem 0; border-bottom: 1px solid var(--line); }
.numbered-flow li::before { content: counter(flow, decimal-leading-zero); color: var(--moss); font-family: var(--serif); font-size: 1.35rem; }

.program-detail { display: grid; grid-template-columns: minmax(0, 1fr) minmax(230px, .36fr); gap: clamp(2rem, 6vw, 6rem); padding: clamp(3rem, 6vw, 5rem) 0; border-bottom: 1px solid var(--line); }
.program-detail:first-child { padding-top: 0; }
.program-detail h2 { font-size: clamp(1.7rem, 2.7vw, 2.7rem); }
.facts { align-self: start; margin: .5rem 0 0; padding: 1.5rem 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.facts div { display: flex; justify-content: space-between; gap: 1rem; padding: .45rem 0; }
.facts dt { color: var(--moss); }
.facts dd { margin: 0; text-align: right; font-weight: 600; }

.value-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 0 4rem; margin-top: 3rem; border-top: 1px solid var(--line); }
.value-item { padding: 2rem 0; border-bottom: 1px solid var(--line); }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(3rem, 8vw, 8rem); align-items: start; }
.contact-email { display: inline-block; margin: 1rem 0 2rem; font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.7rem); text-decoration-thickness: 1px; text-underline-offset: .25em; }
.contact-options { border-top: 1px solid var(--line); }
.contact-option { padding: 1.5rem 0; border-bottom: 1px solid var(--line); }
.contact-option span { display: block; color: var(--moss); font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; }
.contact-option strong { display: block; margin-top: .35rem; font-family: var(--serif); font-size: 1.4rem; font-weight: 400; }

.empty-page { min-height: calc(100svh - 89px); background: var(--paper); }

.schedule-hero {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.schedule-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background: url("images/forest-hero.jpg") center 58% / cover no-repeat;
}

.schedule-hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  background: linear-gradient(90deg, rgba(7, 29, 22, .96) 0%, rgba(7, 29, 22, .82) 48%, rgba(7, 29, 22, .48) 100%);
}

.schedule-hero h1 { max-width: 760px; }
.schedule-hero-copy { max-width: 460px; }
.schedule-hero-copy .actions { margin-top: 1.5rem; }
.schedule-intro { border-bottom: 1px solid var(--line); }

.event-list {
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  border-top: 1px solid var(--line);
}

.event-item {
  display: grid;
  grid-template-columns: minmax(140px, .28fr) minmax(280px, 1fr) minmax(230px, .52fr);
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
  padding: clamp(2.5rem, 5vw, 4.5rem) 0;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 2rem;
}

.event-date {
  display: flex;
  flex-direction: column;
  color: var(--forest);
  font-family: var(--serif);
  line-height: 1;
}

.event-date > span {
  color: var(--moss);
  font-family: var(--sans);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.event-date strong {
  margin: .35rem 0 .55rem;
  font-size: clamp(4.2rem, 7vw, 6.2rem);
  font-weight: 400;
  letter-spacing: -.06em;
}

.event-date small {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: .3rem;
  font-family: var(--sans);
  font-size: .82rem;
  font-weight: 600;
  line-height: 1.4;
}

.event-weekday {
  color: var(--moss);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.event-start {
  color: var(--forest);
  font-size: clamp(1.6rem, 2.2vw, 2rem);
  font-weight: 700;
  letter-spacing: -.02em;
  line-height: 1;
}

.event-copy h3 { font-size: clamp(1.7rem, 2.7vw, 2.55rem); }
.event-copy > p:not(.kicker) { max-width: 540px; color: #52625a; }
.event-copy .button { margin-top: 1rem; }

.event-facts {
  margin: 0;
  padding: 1.2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.event-facts div {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .42rem 0;
}

.event-facts dt { color: var(--moss); }
.event-facts dd { margin: 0; text-align: right; font-weight: 600; }

.event-registration-note {
  max-width: 830px;
  margin: clamp(2.5rem, 5vw, 4rem) 0 0;
  padding-left: 1.5rem;
  border-left: 2px solid var(--moss);
}

.event-steps { list-style: none; padding: 0; }

.event-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0 clamp(2.5rem, 6vw, 5rem);
  margin-top: 2.5rem;
  border-top: 1px solid var(--line);
}

.event-info-grid section {
  padding: 2rem 0 1rem;
  border-bottom: 1px solid var(--line);
}

.event-info-grid h3 { margin-top: 0; }
.event-more-info { margin-top: 2.5rem !important; }

.library-section .article-index { margin-top: 0; }

.article-index {
  list-style: none;
  margin: clamp(3rem, 7vw, 6rem) 0 0;
  padding: 0;
  border-top: 1px solid var(--line);
}

.article-index-item {
  display: grid;
  grid-template-columns: 58px minmax(280px, .72fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  align-items: center;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--line);
}

.article-number {
  align-self: start;
  color: var(--moss);
  font-family: var(--serif);
  font-size: 1.4rem;
}

.article-index-image { display: block; overflow: hidden; }
.article-index-image img {
  width: 100%;
  height: auto;
  transition: transform .5s cubic-bezier(.2,.65,.25,1);
}
.article-index-image:hover img { transform: scale(1.025); }
.article-index-item article { max-width: 600px; }
.article-index-item h2 { margin-bottom: 1rem; font-size: clamp(1.55rem, 2.4vw, 2.35rem); }
.article-index-item h2 a { text-decoration: none; }
.article-index-item h2 a:hover { text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: .15em; }
.article-index-item article > p:not(.kicker) { color: #52625a; }
.article-index-item time { color: var(--moss); font-size: .78rem; letter-spacing: .05em; }

.article-hero {
  padding: clamp(4.5rem, 9vw, 8rem) var(--pad) clamp(4rem, 8vw, 7rem);
  color: var(--paper);
  background: var(--forest-deep);
}

.article-hero .container { width: min(100%, 1040px); }
.article-hero .eyebrow { margin-top: 2.5rem; color: var(--sage); }
.article-hero h1 { max-width: 1000px; font-size: clamp(2.45rem, 4.4vw, 4.1rem); }
.article-hero--long-title h1 { font-size: clamp(2.35rem, 4vw, 3.75rem); }
.article-deck {
  max-width: 760px;
  margin: 2rem 0 0;
  color: rgba(245,241,231,.78);
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.45;
}

.breadcrumb { display: flex; flex-wrap: wrap; gap: .55rem; color: rgba(245,241,231,.62); font-size: .76rem; }
.breadcrumb a { text-decoration: none; }
.breadcrumb a:hover { color: #fff; text-decoration: underline; text-underline-offset: .2em; }

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem 1.4rem;
  margin-top: 2rem;
  color: rgba(245,241,231,.62);
  font-size: .76rem;
  letter-spacing: .05em;
}
.article-meta > *:not(:last-child)::after { content: "·"; margin-left: 1.4rem; }

.article-cover {
  margin: 0;
  padding: 0 var(--pad) clamp(3.5rem, 7vw, 6rem);
  background: linear-gradient(var(--forest-deep) 0 21%, var(--paper) 21% 100%);
}
.article-cover .container { width: min(100%, 960px); }
.article-cover img { width: 100%; height: auto; }

.article-section { padding-top: clamp(2rem, 4vw, 3.5rem); }
.article-layout {
  width: min(100%, 1040px);
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 760px);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.article-toc {
  position: sticky;
  top: 2rem;
  padding: 1.3rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.article-toc .footer-title { color: var(--moss); }
.article-toc ol { list-style: none; margin: 0; padding: 0; }
.article-toc li + li { margin-top: .55rem; }
.article-toc a { color: #52625a; font-size: .83rem; text-decoration: none; }
.article-toc a:hover { color: var(--forest); text-decoration: underline; text-underline-offset: .18em; }

.article-body { min-width: 0; }
.article-body > .lead { margin-top: 0; }
.article-body p { margin: 0 0 1.35rem; }
.article-body h2 { margin: clamp(3.5rem, 7vw, 5.5rem) 0 1.4rem; font-size: clamp(1.7rem, 2.7vw, 2.7rem); }
.article-body h3 { margin-top: 2.2rem; line-height: 1.2; }
.article-body a { text-underline-offset: .18em; }

.article-inline-figure {
  margin: clamp(2.75rem, 6vw, 4.5rem) 0;
}
.article-inline-figure img {
  width: 100%;
  height: auto;
}
.article-inline-figure figcaption {
  max-width: 640px;
  margin-top: .8rem;
  color: #63726b;
  font-size: .78rem;
  line-height: 1.55;
}

.evidence-list { margin: 2.5rem 0; border-top: 1px solid var(--line); }
.evidence-point {
  display: grid;
  grid-template-columns: minmax(190px, .42fr) minmax(0, 1fr);
  gap: 2rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}
.evidence-point h3 { margin: 0; font-size: 1.35rem; }
.evidence-point p { margin: 0; color: #52625a; }

.article-callout {
  margin: 3rem 0 !important;
  padding: 1.5rem 0 1.5rem 2rem;
  border-left: 2px solid var(--warm);
  font-family: var(--serif);
  font-size: 1.23rem;
  line-height: 1.55;
}

.article-sources { margin-top: clamp(4rem, 8vw, 7rem); padding-top: 1px; border-top: 1px solid var(--line); }
.article-sources h2 { margin-top: 3rem; }
.article-sources ol { padding-left: 1.25rem; }
.article-sources li { margin-bottom: .85rem; color: #52625a; font-size: .88rem; }

.back-to-top {
  position: fixed;
  right: clamp(1rem, 2.5vw, 2.5rem);
  bottom: clamp(1rem, 2.5vw, 2.5rem);
  z-index: 80;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(245,241,231,.36);
  border-radius: 50%;
  color: var(--paper);
  background: rgba(13,43,34,.94);
  box-shadow: 0 8px 24px rgba(9,35,27,.18);
  cursor: pointer;
  font-family: var(--sans);
  font-size: 1.25rem;
  line-height: 1;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease, background .25s ease;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: none; }
.back-to-top:hover { background: var(--forest); transform: translateY(-2px); }
.back-to-top:focus-visible { outline: 2px solid var(--warm); outline-offset: 3px; }

.site-footer { padding: 4rem var(--pad) 2rem; color: var(--paper); background: #09231b; }
.footer-grid { width: min(100%, var(--max)); margin: 0 auto; display: grid; grid-template-columns: 1.3fr .7fr .7fr; gap: 3rem; }
.footer-brand p { max-width: 450px; color: rgba(245,241,231,.66); }
.footer-title { margin: 0 0 1rem; color: var(--sage); font-size: .7rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; }
.footer-links { list-style: none; margin: 0; padding: 0; }
.footer-links a { color: rgba(245,241,231,.75); text-decoration: none; }
.footer-links a:hover { color: #fff; text-decoration: underline; text-underline-offset: .25rem; }
.footer-bottom { width: min(100%, var(--max)); margin: 3rem auto 0; padding-top: 1.5rem; display: flex; justify-content: space-between; gap: 2rem; border-top: 1px solid rgba(245,241,231,.15); color: rgba(245,241,231,.5); font-size: .72rem; }
.legal-note { max-width: 760px; }
.footer-credit { color: inherit; text-decoration: none; white-space: nowrap; }
.footer-credit:hover { color: var(--paper); text-decoration: underline; text-underline-offset: .25rem; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s cubic-bezier(.2,.65,.25,1); }
.reveal.visible { opacity: 1; transform: none; }

@keyframes breathe { 0%,100% { transform: scaleY(.45); transform-origin: top; opacity: .5; } 50% { transform: scaleY(1); opacity: 1; } }

@media (max-width: 1060px) {
  .nav-links { position: fixed; inset: 0; z-index: -1; padding: 8rem var(--pad) 3rem; display: flex; flex-direction: column; justify-content: flex-start; align-items: flex-start; gap: .7rem; color: var(--paper); background: var(--forest-deep); font-family: var(--serif); font-size: clamp(1.7rem, 5vw, 2.4rem); font-weight: 400; letter-spacing: 0; text-transform: none; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: opacity .25s, visibility .25s, transform .25s; }
  .menu-open .nav-links { opacity: 1; visibility: visible; transform: none; }
  .menu-open .site-header { position: fixed; color: var(--paper); }
  .nav-cta { border: 0; padding: .55rem 0 !important; }
  .menu-toggle { display: block; }
  .program-row { grid-template-columns: 55px 1fr auto; }
  .program-row p { grid-column: 2 / 3; }
}

@media (max-width: 760px) {
  :root { --pad: 1.25rem; }
  .nav-wrap { min-height: 72px; }
  .brand-logo { width: 50px; }
  .hero { min-height: clamp(660px, 84svh, 740px); }
  .hero-media { inset: 0; background-position: 56% center; }
  .hero::before { background: linear-gradient(0deg, rgba(6,25,19,.93) 0%, rgba(9,31,24,.6) 60%, rgba(9,31,24,.25) 100%); }
  .hero-content { padding-top: 7rem; padding-bottom: 2.4rem; }
  .hero h1 { font-size: clamp(2.4rem, 10vw, 3.15rem); }
  .hero-lead { font-size: .97rem; line-height: 1.55; }
  .trust-line { gap: .3rem; flex-direction: column; }
  .trust-line span:not(:last-child)::after { display: none; }
  .scroll-cue { display: none; }
  .split, .inner-hero .container, .content-grid, .contact-grid, .faq-preview { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .image-wrap { width: min(82vw, 340px); }
  .landscape-image { width: min(88vw, 440px); }
  .step { grid-template-columns: 42px 1fr; gap: 1rem; }
  .step p { grid-column: 2; }
  .benefit-list { columns: 1; }
  .program-row { grid-template-columns: 40px minmax(0, 1fr) auto; gap: 1rem; }
  .program-row p { display: none; }
  .faq-preview { gap: 2rem; }
  .inner-hero { padding-top: 5rem; }
  .inner-hero .container { gap: 1.5rem; }
  .content-grid { gap: 1.5rem; }
  .section-label { position: static; }
  .comparison { display: block; overflow-x: auto; }
  .program-detail { grid-template-columns: 1fr; gap: 1rem; }
  .value-grid { grid-template-columns: 1fr; }
  .event-item { grid-template-columns: 1fr; gap: 1.75rem; }
  .event-date { width: min-content; }
  .event-date strong { font-size: 4.4rem; }
  .event-copy .button { width: 100%; }
  .event-info-grid { grid-template-columns: 1fr; }
  .location { min-height: auto; padding-block: 5rem; }
  .article-index-item { grid-template-columns: 38px minmax(0, 1fr); }
  .article-index-image, .article-index-item article { grid-column: 2; }
  .article-number { grid-row: 1 / span 2; }
  .article-hero { padding-top: 3.5rem; }
  .article-hero .eyebrow { margin-top: 1.5rem; }
  .article-hero h1 { font-size: clamp(2.3rem, 9.5vw, 3.15rem); }
  .article-hero--long-title h1 { font-size: clamp(2.15rem, 8.8vw, 2.9rem); }
  .article-meta { gap: .35rem .7rem; }
  .article-meta > *:not(:last-child)::after { margin-left: .7rem; }
  .article-cover { padding-left: 0; padding-right: 0; }
  .article-layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .article-toc { position: static; }
  .evidence-point { grid-template-columns: 1fr; gap: .6rem; }
  .back-to-top { width: 44px; height: 44px; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; }
}

@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; }
}
