/* ============================================================
   Biome Foundation · Scarlet upgrade · shared stylesheet
   v2.1 · multi-page architecture
   ============================================================ */

:root {
  /* v4 lifted palette · white primary, cream as accent only */
  --cream: #FFFFFF;
  --cream-soft: #F8F4EC;
  --cream-warm: #F2EBDD;
  --green: #27513A;
  --green-deep: #162B1F;
  --green-dusk: #1A3525;
  --green-soft: #4B7A55;
  --tan: #C28E4A;
  --tan-soft: #E9C98A;
  --copper: #B86E3F;
  --amber-deep: #8A4F2B;
  --ink: #1A1A1A;
  --ink-soft: #3A3A3A;
  --ink-deep: #0A0A0A;
  --rule: rgba(26, 26, 26, 0.1);
  --rule-warm: rgba(184, 110, 63, 0.2);
  --candlelight: rgba(217, 178, 106, 0.06);

  --display: 'Bricolage Grotesque', system-ui, sans-serif;
  --serif: 'Bricolage Grotesque', system-ui, sans-serif;
  --body: 'Bricolage Grotesque', system-ui, sans-serif;

  --max: 1320px;
  --gutter: clamp(20px, 4vw, 56px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.55;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
::selection { background: var(--green); color: var(--cream); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--gutter);
  position: relative;
}

/* paper grain noise · tactile warmth site-wide */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  opacity: 0.06;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='240' height='240'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.1 0 0 0 0 0.08 0 0 0 0 0.05 0 0 0 0.55 0'/></filter><rect width='240' height='240' filter='url(%23n)'/></svg>");
  mix-blend-mode: multiply;
}

/* ============ NAV — sand-tint frosted glass ============ */
nav.top {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 18px 0;
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  background: rgba(242, 235, 221, 0.72);
  border-bottom: 1px solid rgba(184, 110, 63, 0.18);
  box-shadow: 0 6px 32px rgba(22, 43, 31, 0.1), 0 1px 0 rgba(255, 255, 255, 0.55) inset;
}
nav.top.cream-bg, nav.top.cream-default {
  background: rgba(242, 235, 221, 0.82);
  border-bottom-color: rgba(184, 110, 63, 0.22);
}
nav.top .container {
  display: flex; align-items: center; justify-content: space-between;
}
.logo {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: -0.01em;
  color: var(--green);
}
.logo span { color: var(--ink); font-weight: 500; }

.nav-links {
  display: flex; gap: 32px;
  font-size: 14px;
  font-weight: 500;
}
.nav-links a {
  color: var(--ink-soft);
  position: relative;
  transition: color 0.2s ease;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px; left: 0; right: 0;
  height: 1px;
  background: currentColor;
}
.nav-links a:hover { color: var(--green); }
.nav-cta {
  background: rgba(39, 81, 58, 0.86);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: -0.005em;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 6px 18px rgba(22, 43, 31, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.nav-cta:hover { background: rgba(22, 43, 31, 0.92); transform: translateY(-1px); box-shadow: 0 10px 24px rgba(22, 43, 31, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22); }
@media (max-width: 760px) {
  .nav-links { display: none; }
}

/* ============ HOME HERO · full-bleed image, dark editorial ============ */
.hero {
  position: relative;
  min-height: 100vh;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--green-deep);
  color: var(--cream);
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 80% 30%, rgba(194, 142, 74, 0.08) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 80%, rgba(184, 110, 63, 0.06) 0%, transparent 50%);
}
.hero .container { position: relative; z-index: 2; }

.eyebrow {
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 36px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px; height: 1px;
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 5.6vw, 84px);
  line-height: 1.0;
  letter-spacing: -0.03em;
  color: var(--cream);
  max-width: 20ch;
  margin-bottom: 36px;
}
.hero h1 em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--tan-soft);
  letter-spacing: -0.015em;
}

.hero-lede {
  font-size: clamp(18px, 1.8vw, 22px);
  line-height: 1.5;
  color: #FFFFFF;
  max-width: 60ch;
  margin-bottom: 56px;
  font-weight: 400;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

.hero-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1000px;
  padding-top: 36px;
  border-top: 1px solid rgba(242, 235, 221, 0.18);
  margin-bottom: 56px;
}
@media (max-width: 760px) { .hero-three { grid-template-columns: 1fr; gap: 24px; } }
.hero-three .crystal-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 600;
  margin-bottom: 12px;
}
.hero-three .crystal-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(19px, 1.7vw, 23px);
  line-height: 1.3;
  color: var(--cream);
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(184, 110, 63, 0.78);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  color: var(--cream);
  padding: 16px 30px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  letter-spacing: -0.005em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 24px rgba(184, 110, 63, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.hero-cta-primary:hover {
  background: rgba(138, 79, 43, 0.88);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(184, 110, 63, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}
.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cream);
  padding: 18px 32px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 15px;
  border: 1px solid rgba(242, 235, 221, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease;
}
.hero-cta-secondary:hover { background: rgba(242, 235, 221, 0.08); border-color: var(--tan-soft); }

/* alternate hero-cta for cream sections — glassmorphism */
.hero-cta-primary.on-cream {
  background: rgba(39, 81, 58, 0.82);
  color: var(--cream);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 10px 24px rgba(22, 43, 31, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.hero-cta-primary.on-cream:hover {
  background: rgba(22, 43, 31, 0.92);
  box-shadow: 0 14px 30px rgba(22, 43, 31, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.hero-cta-secondary.on-cream {
  color: var(--green);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  border: 1px solid rgba(39, 81, 58, 0.4);
  box-shadow: 0 6px 18px rgba(22, 43, 31, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.hero-cta-secondary.on-cream:hover {
  background: rgba(255, 255, 255, 0.78);
  border-color: var(--green);
}

/* scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
  color: rgba(242, 235, 221, 0.6);
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.scroll-cue::after {
  content: '';
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, var(--tan), transparent);
}

/* ============ PAGE HERO · for inner pages (smaller than home hero) ============ */
.page-hero {
  position: relative;
  padding: 180px 0 100px;
  background: var(--green-deep);
  color: var(--cream);
  overflow: hidden;
  border-bottom: 1px solid rgba(194, 142, 74, 0.18);
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 1;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02) 0%, rgba(10, 10, 10, 0.26) 100%),
    radial-gradient(ellipse at 80% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 55%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero-breadcrumb {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: #FFFFFF;
  font-weight: 600;
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.page-hero-breadcrumb::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.page-hero h1 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(40px, 5vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.028em;
  color: var(--cream);
  max-width: 20ch;
  margin-bottom: 28px;
}
.page-hero h1 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--tan-soft);
}
.page-hero-lede {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: #FFFFFF;
  max-width: 64ch;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}

/* ============ LAND PASSAGE · dropcap, decorative image ============ */
.land-passage {
  background: var(--cream-warm);
  padding: 140px 0;
  position: relative;
  overflow: hidden;
}
.land-passage::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 64px;
  background: linear-gradient(to bottom, var(--tan), transparent);
}
.land-passage .container {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 80px;
  max-width: 1200px;
  align-items: center;
}
@media (max-width: 900px) {
  .land-passage .container { grid-template-columns: 1fr; gap: 48px; }
}
.eyebrow-static {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 24px;
}
.land-passage .passage {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.42;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.land-passage .passage em {
  font-style: normal;
  color: var(--green);
}
.dropcap {
  float: left;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(64px, 7vw, 96px);
  line-height: 0.88;
  color: var(--copper);
  padding: 8px 14px 0 0;
  margin-top: 4px;
}
.land-image {
  position: relative;
  aspect-ratio: 3 / 4;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(22, 43, 31, 0.22);
}
.land-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.04);
}
.land-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(22, 43, 31, 0.35) 100%);
}
.land-image-caption {
  position: absolute;
  bottom: 20px; left: 20px; right: 20px;
  z-index: 2;
  color: var(--cream);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.land-image-caption em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--tan-soft);
  letter-spacing: 0;
  text-transform: none;
  display: block;
  font-size: 14px;
  margin-top: 4px;
}

/* ============ ACKNOWLEDGEMENT — cream, no image bg ============ */
.aok {
  position: relative;
  color: var(--ink);
  background: var(--cream);
  padding: 140px 0;
  overflow: hidden;
}
.aok-bg { display: none; }
.aok .aok-label { color: var(--copper); }
.aok .aok-label::before { background: var(--copper); }
.aok h3 { color: var(--ink); }
.aok h3 em { color: var(--green); }
.aok .aok-body { color: var(--ink-soft); }
.aok .kelly-quote { border-left-color: var(--copper); }
.aok .kelly-quote::before { color: rgba(184, 110, 63, 0.28); }
.aok .kelly-quote .quote-text { color: var(--ink); }
.aok .kelly-quote .attrib { color: var(--green); }
.aok .kelly-quote .attrib-role { color: var(--ink-soft); }
.aok-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.aok-bg {
  opacity: 1;
}
.aok-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(22, 43, 31, 0.14) 0%, rgba(10, 10, 10, 0.1) 100%),
    radial-gradient(ellipse at 70% 40%, rgba(255, 255, 255, 0.12) 0%, transparent 60%);
}
.aok .container {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 96px;
  align-items: start;
  z-index: 2;
  position: relative;
}
@media (max-width: 900px) {
  .aok .container { grid-template-columns: 1fr; gap: 56px; }
}
.aok-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 600;
  margin-bottom: 28px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
}
.aok-label::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--tan);
}
.aok h3 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(32px, 3.4vw, 44px);
  line-height: 1.12;
  letter-spacing: -0.022em;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 22ch;
}
.aok h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}
.aok .aok-body {
  font-family: var(--serif);
  font-size: clamp(17px, 1.5vw, 20px);
  font-style: italic;
  line-height: 1.55;
  color: var(--ink-soft);
  max-width: 52ch;
}
.kelly-quote {
  position: relative;
  padding: 36px 0 36px 40px;
  border-left: 2px solid var(--tan);
}
.kelly-quote::before {
  content: '"';
  position: absolute;
  top: -8px; left: 32px;
  font-family: var(--serif);
  font-size: 96px;
  line-height: 1;
  color: rgba(217, 178, 106, 0.32);
  font-style: italic;
}
.kelly-quote .quote-text {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  color: var(--cream);
  margin-bottom: 28px;
  letter-spacing: -0.01em;
  position: relative;
  z-index: 2;
}
.kelly-quote .attrib {
  font-family: var(--display);
  font-size: 15px;
  color: var(--tan-soft);
  font-weight: 600;
  letter-spacing: 0.01em;
}
.kelly-quote .attrib-role {
  display: block;
  font-style: normal;
  color: rgba(242, 235, 221, 0.55);
  font-weight: 400;
  font-size: 13px;
  margin-top: 4px;
  letter-spacing: 0.04em;
}
.draft-marker {
  display: inline-block;
  margin-top: 18px;
  padding: 5px 12px;
  background: rgba(194, 142, 74, 0.14);
  border: 1px solid rgba(194, 142, 74, 0.42);
  border-radius: 100px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 500;
}

/* ============ SECTION BASE ============ */
section {
  padding: 130px 0;
  position: relative;
}
@media (max-width: 760px) {
  section { padding: 80px 0; }
}

.section-eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--green);
  margin-bottom: 26px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--green);
}

h2.section-title {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(34px, 4.4vw, 60px);
  line-height: 1.04;
  letter-spacing: -0.028em;
  color: var(--ink);
  max-width: 24ch;
  margin-bottom: 32px;
}
h2.section-title em {
  font-style: italic;
  font-family: var(--serif);
  font-weight: 400;
  color: var(--green);
}

.section-intro {
  font-size: clamp(17px, 1.5vw, 19px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 72ch;
}

/* ============ PROBLEM ============ */
.problem {
  background: var(--cream-soft);
  border-top: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  position: relative;
}
.problem::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 90% 10%, var(--candlelight) 0%, transparent 40%);
  pointer-events: none;
}
.problem-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  margin-top: 64px;
  align-items: start;
}
@media (max-width: 900px) {
  .problem-grid { grid-template-columns: 1fr; gap: 48px; }
}
.problem-points { display: grid; gap: 0; }
.problem-point {
  padding: 28px 0;
  border-bottom: 1px solid var(--rule);
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 24px;
  align-items: start;
}
.problem-point:first-child { border-top: 1px solid var(--rule); }
.problem-point .num {
  font-family: var(--display);
  font-weight: 700;
  font-size: 18px;
  color: var(--copper);
  line-height: 1.2;
  letter-spacing: -0.01em;
  padding-top: 4px;
}
.problem-point p {
  font-size: 17px;
  line-height: 1.55;
  color: var(--ink);
}
.problem-conclusion {
  margin-top: 64px;
  padding: 32px 38px;
  background: rgba(22, 43, 31, 0.78);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  color: var(--cream);
  border-radius: 8px;
  border: 1px solid rgba(194, 142, 74, 0.34);
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.55;
  font-family: var(--body);
  font-weight: 450;
  letter-spacing: -0.005em;
  max-width: 860px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(22, 43, 31, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.14);
}
.problem-conclusion em {
  font-style: italic;
  color: var(--tan-soft);
}
.problem-conclusion::after {
  content: '';
  position: absolute;
  top: -20px; right: -20px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 70%);
}
.problem-conclusion em {
  font-style: italic;
  font-weight: 400;
  color: var(--tan-soft);
}

/* ============ ACTIVITIES ============ */
.activities { background: var(--cream); }
.activities .container { position: relative; }
.activities-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 72px;
  background: transparent;
  border: none;
}
@media (max-width: 760px) {
  .activities-grid { grid-template-columns: 1fr; gap: 16px; }
}
.activity {
  background: rgba(242, 235, 221, 0.32);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  padding: 48px 40px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  border-radius: 8px;
  transition: background 0.4s ease, box-shadow 0.4s ease, transform 0.4s ease, border-color 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 6px 22px rgba(22, 43, 31, 0.08), 0 2px 6px rgba(22, 43, 31, 0.04), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.activity:hover {
  background: rgba(242, 235, 221, 0.5);
  box-shadow: 0 18px 42px rgba(22, 43, 31, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  transform: translateY(-4px);
  border-color: rgba(184, 110, 63, 0.4);
}
.activity .number {
  font-family: var(--display);
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  color: var(--copper);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.activity h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 12px;
}
.activity p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.t-term {
  border-bottom: 1px dashed var(--green-soft);
  cursor: help;
  position: relative;
}
.t-term:hover .t-tip {
  opacity: 1;
  transform: translate(-50%, -10px);
  pointer-events: auto;
}
.t-tip {
  position: absolute;
  bottom: 100%;
  left: 50%;
  transform: translate(-50%, 0);
  background: var(--ink-deep);
  color: var(--cream);
  padding: 14px 18px;
  border-radius: 6px;
  width: 280px;
  font-family: var(--body);
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.5;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 20;
  letter-spacing: 0;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.t-tip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: var(--ink-deep);
}

/* ============ WHY NOW ============ */
.why-now {
  background: var(--green);
  color: var(--cream);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.why-now::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(135deg, rgba(39, 81, 58, 0.96), rgba(22, 43, 31, 0.98));
  z-index: 0;
}
.why-now-image-overlay {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  mix-blend-mode: overlay;
  z-index: 0;
}
.why-now .container {
  position: relative;
  z-index: 2;
  max-width: 1100px;
}
.why-now-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 64px;
  align-items: center;
}
@media (max-width: 760px) {
  .why-now-grid { grid-template-columns: 1fr; gap: 24px; }
}
.why-now-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--tan-soft);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.why-now-label::before {
  content: '';
  display: inline-block;
  width: 24px; height: 1px;
  background: var(--tan);
}
.why-now-text {
  font-family: var(--display);
  font-weight: 500;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.25;
  letter-spacing: -0.018em;
  color: var(--cream);
}
.why-now-text em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--tan-soft);
}

/* ============ CAMPFIRE ============ */
.campfire {
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.campfire::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 60%, rgba(184, 110, 63, 0.28) 0%, transparent 50%),
    radial-gradient(ellipse at 20% 30%, rgba(194, 142, 74, 0.18) 0%, transparent 45%);
  z-index: 1;
}
.campfire .container { position: relative; z-index: 2; }
.campfire .section-eyebrow { color: var(--tan); }
.campfire .section-eyebrow::before { background: var(--tan); }
.campfire h2 {
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(44px, 6.4vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.032em;
  color: var(--cream);
  max-width: 20ch;
  margin-bottom: 36px;
}
.campfire h2 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--tan-soft);
}
.campfire-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: end;
  margin-top: 56px;
}
@media (max-width: 900px) {
  .campfire-grid { grid-template-columns: 1fr; gap: 40px; }
}
.campfire-details { display: grid; gap: 24px; }
.campfire-detail {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: baseline;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(242, 235, 221, 0.18);
}
.campfire-detail .label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tan);
  font-weight: 600;
}
.campfire-detail .value {
  font-size: 18px;
  color: var(--cream);
  line-height: 1.4;
}
.campfire-lede {
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.5;
  color: rgba(242, 235, 221, 0.9);
  max-width: 58ch;
  margin-bottom: 40px;
  font-family: var(--serif);
  font-style: italic;
}
.campfire-embers {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}
.ember {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--tan-soft);
  border-radius: 50%;
  opacity: 0.7;
  box-shadow: 0 0 10px var(--tan), 0 0 20px var(--copper);
  animation: float 8s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0) translateX(0); opacity: 0.5; }
  50% { transform: translateY(-40px) translateX(10px); opacity: 0.95; }
}

/* ============ THEORY OF CHANGE ============ */
.toc {
  background: var(--cream-soft);
  position: relative;
}
.toc::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 85% 10%, rgba(194, 142, 74, 0.14) 0%, transparent 36%),
    radial-gradient(circle at 10% 100%, rgba(39, 81, 58, 0.08) 0%, transparent 42%);
  pointer-events: none;
}
.toc .container {
  position: relative;
  z-index: 2;
}
.toc-flow {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-top: 64px;
  background: transparent;
  border: none;
}
@media (max-width: 1100px) { .toc-flow { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (max-width: 760px) { .toc-flow { grid-template-columns: 1fr; gap: 14px; } }
.toc-stage {
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 320px;
  position: relative;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 8px 24px rgba(22, 43, 31, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.76);
}
.toc-stage.year-1 {
  background: rgba(184, 110, 63, 0.16);
  border-color: rgba(184, 110, 63, 0.36);
  box-shadow: 0 10px 28px rgba(184, 110, 63, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.66);
}
.toc-stage.year-1::before {
  content: 'You see this first';
  position: absolute;
  top: 0; right: 0;
  background: var(--copper);
  color: var(--cream);
  padding: 4px 10px;
  font-family: var(--display);
  font-size: 9px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 0 0 0 6px;
}
.toc-stage .stage-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toc-stage .stage-label::after {
  content: '';
  flex: 1; height: 1px;
  background: var(--rule);
}
.toc-stage h4 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
  line-height: 1.25;
}
.toc-stage p {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.toc-stage ul {
  list-style: none;
  display: grid;
  gap: 8px;
}
.toc-stage li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
}
.toc-stage li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--copper);
}
.toc-beyond {
  margin-top: 28px;
  padding: 30px 34px;
  background: rgba(184, 110, 63, 0.13);
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  border: 1px solid rgba(184, 110, 63, 0.34);
  border-radius: 8px;
  position: relative;
  box-shadow: 0 8px 24px rgba(22, 43, 31, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}
.toc-beyond .stage-label {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 14px;
}
.toc-beyond p {
  font-size: clamp(15px, 1.15vw, 17px);
  line-height: 1.65;
  color: var(--ink-soft);
  max-width: 92ch;
  margin: 0;
}
.toc-beyond p em {
  font-style: normal;
  color: var(--green);
  font-weight: 600;
}

/* ============ PULL QUOTE ============ */
.pull-quote {
  background: var(--cream);
  padding: 140px 0 140px;
  position: relative;
}
.pull-quote::before, .pull-quote::after {
  content: '';
  position: absolute;
  left: 50%; transform: translateX(-50%);
  width: 60px; height: 1px;
  background: var(--copper);
}
.pull-quote::before { top: 80px; }
.pull-quote::after { bottom: 80px; }
.pull-quote .container {
  text-align: center;
  max-width: 1000px;
}
.pull-quote blockquote {
  font-family: var(--display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(22px, 2.6vw, 32px);
  line-height: 1.32;
  color: var(--ink-soft);
  letter-spacing: -0.012em;
  max-width: 68ch;
  margin: 0 auto;
}
.pull-quote blockquote em {
  font-style: normal;
  font-weight: 600;
  color: var(--copper);
}
.pull-quote .pq-attrib {
  display: block;
  margin-top: 36px;
  font-family: var(--display);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}

/* ============ TEAM ============ */
.team {
  background: var(--cream-soft);
  border-top: 1px solid var(--rule);
  position: relative;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px;
  margin-top: 64px;
}
@media (max-width: 760px) {
  .team-grid { grid-template-columns: 1fr; gap: 48px; }
}
.team-member {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 28px;
  align-items: start;
}
.monogram {
  width: 120px; height: 120px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--green-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 700;
  font-size: 44px;
  color: var(--tan-soft);
  letter-spacing: -0.02em;
  box-shadow: 0 16px 32px rgba(22, 43, 31, 0.22), 0 4px 12px rgba(22, 43, 31, 0.12), inset 0 2px 0 rgba(255, 255, 255, 0.12);
  position: relative;
  overflow: hidden;
}
.monogram img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 50%;
}
.monogram.has-photo::after { display: none; }
.monogram::after {
  content: '';
}
.team-member h4 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 4px;
}
.team-member .role {
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 14px;
}
.team-member .human-line {
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.45;
  color: var(--green);
  margin-bottom: 14px;
  letter-spacing: -0.005em;
}
.team-member p.bio {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
}

.founder-note {
  margin-top: 104px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 56px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .founder-note { grid-template-columns: 1fr; }
}
.founder-image {
  position: relative;
  min-height: 460px;
  border-radius: 4px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: 0 30px 80px rgba(22, 43, 31, 0.22);
}
.founder-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(22, 43, 31, 0.6) 100%);
}
.founder-image-caption {
  position: absolute;
  bottom: 20px; left: 24px; right: 24px;
  color: var(--cream);
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  z-index: 2;
}
.founder-image-caption em {
  font-family: var(--serif);
  font-style: italic;
  color: var(--tan-soft);
  letter-spacing: 0;
  text-transform: none;
  display: block;
  font-size: 14px;
  margin-top: 4px;
}
.founder-note-body {
  padding: 48px 0;
  border-left: 3px solid var(--copper);
  padding-left: 48px;
}
@media (max-width: 900px) {
  .founder-note-body { padding: 16px 0 0 0; border-left: none; border-top: 3px solid var(--copper); padding-top: 24px; }
}
.founder-note-body .fn-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 18px;
}
.founder-note-body p {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 16px;
}
.founder-note-body p:last-of-type { margin-bottom: 28px; }
.founder-note-body .fn-attrib {
  font-family: var(--display);
  font-style: normal;
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

/* ============ PARTNERS ============ */
.partners {
  background: var(--cream);
}
.partner-groups {
  display: grid;
  gap: 0;
  margin-top: 64px;
}
.partner-group {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  padding: 40px 0;
  border-top: 1px solid var(--rule);
  align-items: start;
}
.partner-group:last-child { border-bottom: 1px solid var(--rule); }
.partner-group.principal {
  background: rgba(184, 110, 63, 0.12);
  backdrop-filter: blur(18px) saturate(1.3);
  -webkit-backdrop-filter: blur(18px) saturate(1.3);
  padding: 40px 32px;
  margin: 0;
  border: 1px solid rgba(184, 110, 63, 0.38);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(22, 43, 31, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.55);
}
.partner-group.principal h4 {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green-deep);
}
.partner-group.principal h4::before {
  content: '★';
  font-family: var(--serif);
  font-style: italic;
  color: var(--copper);
  font-size: 22px;
}
.principal-tag {
  display: inline-block;
  margin-top: 10px;
  padding: 5px 12px;
  background: var(--copper);
  border-radius: 100px;
  font-family: var(--display);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  font-weight: 600;
}
@media (max-width: 760px) {
  .partner-group { grid-template-columns: 1fr; gap: 16px; }
}
.partner-group h4 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.partner-group p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink-soft);
}
.partner-group .names {
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 8px;
}

/* ============ GOVERNANCE ============ */
.governance {
  background: var(--green);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.governance::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 80%, rgba(194, 142, 74, 0.15) 0%, transparent 55%);
}
.governance .container { position: relative; z-index: 2; }
.governance .section-eyebrow { color: var(--tan); }
.governance .section-eyebrow::before { background: var(--tan); }
.governance h2 { color: var(--cream); }
.governance h2 em { color: var(--tan-soft); }
.gov-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 64px;
  background: transparent;
}
@media (max-width: 760px) { .gov-grid { grid-template-columns: 1fr; gap: 16px; } }
.gov-card {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  padding: 40px 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 26px rgba(22, 43, 31, 0.22), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.gov-card h4 {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 18px;
  letter-spacing: -0.015em;
  color: var(--cream);
}
.gov-card p {
  font-size: 15px;
  line-height: 1.6;
  color: rgba(242, 235, 221, 0.85);
}
.gov-card ul {
  list-style: none;
  display: grid;
  gap: 16px;
}
.gov-card li {
  position: relative;
  padding-left: 24px;
  font-size: 15px;
  line-height: 1.5;
  color: rgba(242, 235, 221, 0.85);
}
.gov-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--tan-soft);
}

/* ============ DONOR RUNGS ============ */
.ask {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.ask::before {
  content: '';
  position: absolute;
  top: 0; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(194, 142, 74, 0.18) 0%, transparent 70%);
  pointer-events: none;
}
.donor-rungs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 72px;
}
@media (max-width: 900px) { .donor-rungs { grid-template-columns: 1fr; gap: 16px; } }
.rung {
  background: rgba(242, 235, 221, 0.42);
  backdrop-filter: blur(20px) saturate(1.3);
  -webkit-backdrop-filter: blur(20px) saturate(1.3);
  border: 1px solid rgba(255, 255, 255, 0.55);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
  position: relative;
  border-radius: 8px;
  box-shadow: 0 8px 22px rgba(22, 43, 31, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.65);
}
.rung:hover {
  transform: translateY(-6px);
  background: rgba(242, 235, 221, 0.58);
  box-shadow: 0 22px 48px rgba(22, 43, 31, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.7);
  border-color: rgba(184, 110, 63, 0.42);
}
.rung.rung-3 {
  background: rgba(184, 110, 63, 0.14);
  backdrop-filter: blur(22px) saturate(1.3);
  -webkit-backdrop-filter: blur(22px) saturate(1.3);
  border: 1px solid rgba(184, 110, 63, 0.38);
  color: var(--ink);
  box-shadow: 0 12px 32px rgba(184, 110, 63, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.62);
}
.rung.rung-3:hover {
  background: rgba(184, 110, 63, 0.2);
  box-shadow: 0 26px 54px rgba(184, 110, 63, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.68);
}
.rung.rung-3 .rung-label { color: var(--copper); }
.rung.rung-3 .rung-title { color: var(--ink); }
.rung.rung-3 .rung-title em { color: var(--green); }
.rung.rung-3 .rung-desc { color: var(--ink-soft); }
.rung.rung-3 .rung-perks li { color: var(--ink-soft); }
.rung.rung-3 .rung-perks li::before { background: var(--copper); }
.rung.rung-3 .rung-action {
  background: var(--tan);
  color: var(--ink-deep);
}
.rung.rung-3 .rung-action:hover { background: var(--tan-soft); }
.rung-step {
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--copper);
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 20px;
}
.rung.rung-3 .rung-step { color: var(--copper); }
.rung-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--green);
  font-weight: 600;
  margin-bottom: 16px;
}
.rung-title {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.18;
  margin-bottom: 14px;
  min-height: 64px;
}
.rung-title em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}
.rung-desc {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
  flex: 1;
}
.rung-perks {
  list-style: none;
  display: grid;
  gap: 8px;
  margin-bottom: 32px;
}
.rung-perks li {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  padding-left: 16px;
  position: relative;
}
.rung-perks li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 1px;
  background: var(--copper);
}
.rung-action {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: rgba(39, 81, 58, 0.82);
  backdrop-filter: blur(14px) saturate(1.3);
  -webkit-backdrop-filter: blur(14px) saturate(1.3);
  color: var(--cream);
  padding: 14px 24px;
  border-radius: 100px;
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
  margin-top: auto;
  letter-spacing: -0.005em;
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 8px 20px rgba(22, 43, 31, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.rung-action:hover {
  background: rgba(22, 43, 31, 0.92);
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(22, 43, 31, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.rung.rung-3 .rung-action {
  background: rgba(184, 110, 63, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--cream);
  box-shadow: 0 8px 22px rgba(184, 110, 63, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.22);
}
.rung.rung-3 .rung-action:hover {
  background: rgba(138, 79, 43, 0.88);
  box-shadow: 0 12px 28px rgba(184, 110, 63, 0.36), inset 0 1px 0 rgba(255, 255, 255, 0.24);
}

/* ============ TEASER CARDS (home page hand-offs) ============ */
.teasers {
  background: var(--cream);
  padding: 130px 0;
}
.teasers .container { max-width: 1320px; }
.teaser-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
@media (max-width: 900px) { .teaser-grid { grid-template-columns: 1fr; } }
.teaser {
  display: flex;
  flex-direction: column;
  background: var(--cream-soft);
  padding: 44px 36px;
  border-radius: 6px;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  border: 1px solid var(--rule);
  box-shadow: 0 4px 14px rgba(22, 43, 31, 0.06), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.teaser:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(22, 43, 31, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.6);
}
.teaser-label {
  font-family: var(--display);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--copper);
  font-weight: 600;
  margin-bottom: 18px;
}
.teaser h3 {
  font-family: var(--display);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
  line-height: 1.2;
  margin-bottom: 14px;
  min-height: 64px;
}
.teaser h3 em {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}
.teaser p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin-bottom: 28px;
  flex: 1;
}
.teaser-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--display);
  font-size: 14px;
  font-weight: 600;
  color: var(--green);
  transition: gap 0.2s ease;
}
.teaser-link:hover { gap: 16px; color: var(--green-deep); }

/* ============ FOOTER — sand-tint frosted glass ============ */
footer {
  background: rgba(242, 235, 221, 0.72);
  backdrop-filter: blur(28px) saturate(1.4);
  -webkit-backdrop-filter: blur(28px) saturate(1.4);
  color: var(--ink);
  padding: 56px 0 28px;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(184, 110, 63, 0.24);
  box-shadow: 0 -6px 32px rgba(22, 43, 31, 0.08), 0 -1px 0 rgba(255, 255, 255, 0.7) inset;
}
footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 20%, rgba(184, 110, 63, 0.06) 0%, transparent 60%);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 36px;
  position: relative;
  z-index: 2;
}
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}
footer h5 {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--copper);
  margin-bottom: 14px;
}
footer p, footer a {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ink-soft);
}
footer a { display: block; transition: color 0.2s ease; }
footer a:hover { color: var(--green); }
.footer-statement {
  font-family: var(--display);
  font-size: clamp(18px, 1.7vw, 23px);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.018em;
  color: var(--ink);
  max-width: 34ch;
}
.footer-statement em {
  font-style: italic;
  font-weight: 400;
  color: var(--green);
}
.footer-bottom {
  border-top: 1px solid rgba(26, 26, 26, 0.12);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 12px;
  color: rgba(26, 26, 26, 0.55);
  position: relative;
  z-index: 2;
}
.dotted-earth {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 80px;
  background-image: radial-gradient(circle, rgba(194, 142, 74, 0.5) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 100%;
  mask-image: linear-gradient(to top, black 0%, transparent 100%);
  -webkit-mask-image: linear-gradient(to top, black 0%, transparent 100%);
}

/* reveal animations */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1s ease, transform 1s ease;
}
.reveal.in { opacity: 1; transform: translateY(0); }

/* ============ v3.2 ADDITIONS ============ */

/* Why Now · cream variant for Home */
.why-now.cream {
  background: var(--cream);
  color: var(--ink);
  padding: 96px 0;
}
.why-now.cream::before { display: none; }
.why-now.cream .why-now-image-overlay { display: none; }
.why-now.cream .why-now-label { color: var(--copper); }
.why-now.cream .why-now-label::before { background: var(--copper); }
.why-now.cream .container { max-width: 1120px; }
.why-now.cream .why-now-grid { align-items: start; }
.why-now.cream .why-now-text {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 28px);
  line-height: 1.38;
  letter-spacing: -0.012em;
  max-width: 40ch;
}
.why-now.cream .why-now-text em { color: var(--green); }

/* Teasers · green + image variant (glassmorphism cards) */
.teasers.with-image {
  background: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.teasers-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 1;
}
.teasers-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(22, 43, 31, 0.58) 0%, rgba(10, 10, 10, 0.48) 100%),
    radial-gradient(ellipse at 80% 30%, rgba(242, 235, 221, 0.12) 0%, transparent 55%);
}
.teasers.with-image .container { position: relative; z-index: 2; }
.teasers.with-image .section-eyebrow { color: var(--tan); }
.teasers.with-image .section-eyebrow::before { background: var(--tan); }
.teasers.with-image .section-title { color: var(--cream); }
.teasers.with-image .section-title em { color: var(--tan-soft); }
.teasers.with-image .section-intro {
  color: #FFFFFF;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.42);
}
.teasers.with-image .teaser {
  background: rgba(22, 43, 31, 0.32);
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  box-shadow: 0 10px 26px rgba(22, 43, 31, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.teasers.with-image .teaser:hover {
  background: rgba(22, 43, 31, 0.4);
  border-color: rgba(233, 201, 138, 0.48);
  transform: translateY(-5px);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.24), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}
.teasers.with-image .teaser-label { color: var(--tan-soft); }
.teasers.with-image .teaser h3 { color: var(--cream); }
.teasers.with-image .teaser h3 em { color: var(--tan-soft); }
.teasers.with-image .teaser p { color: rgba(242, 235, 221, 0.85); }
.teasers.with-image .teaser-link { color: var(--tan-soft); }
.teasers.with-image .teaser-link:hover { color: var(--tan-soft); }

/* Governance · with image variant (glass cards on top) */
.governance.with-image { background-color: var(--green-deep); }
.governance-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 1;
  filter: saturate(0.84) contrast(0.92);
}
.governance-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(22, 43, 31, 0.58) 0%, rgba(10, 10, 10, 0.48) 100%),
    radial-gradient(ellipse at 20% 80%, rgba(242, 235, 221, 0.16) 0%, transparent 55%);
}
.governance.with-image .container { position: relative; z-index: 2; }
.governance.with-image .gov-grid {
  background: transparent;
  border: none;
  gap: 20px;
}
.governance.with-image .gov-card {
  background: rgba(22, 43, 31, 0.32);
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 26px rgba(22, 43, 31, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.governance.with-image .gov-card h4 {
  color: var(--tan-soft);
}
.governance.with-image .gov-card p,
.governance.with-image .gov-card li {
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.34);
}
.governance.with-image .fp-perks {
  background: transparent;
  border: none;
  gap: 18px;
}
.governance.with-image .fp-perk {
  background: rgba(22, 43, 31, 0.32);
  backdrop-filter: blur(24px) saturate(1.25);
  -webkit-backdrop-filter: blur(24px) saturate(1.25);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: 0 10px 26px rgba(22, 43, 31, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.18);
}
.partner-foundational .governance-bg {
  filter: saturate(0.9) contrast(0.98);
}
.partner-foundational .governance-bg::after {
  background:
    linear-gradient(135deg, rgba(22, 43, 31, 0.34) 0%, rgba(10, 10, 10, 0.24) 100%),
    radial-gradient(ellipse at 82% 18%, rgba(242, 235, 221, 0.18) 0%, transparent 60%);
}
.governance.with-image.partner-foundational .fp-perk {
  background: rgba(248, 244, 236, 0.68);
  backdrop-filter: blur(24px) saturate(1.22);
  -webkit-backdrop-filter: blur(24px) saturate(1.22);
  border-color: rgba(255, 255, 255, 0.56);
  box-shadow: 0 12px 30px rgba(22, 43, 31, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.partner-foundational .fp-num {
  color: var(--copper);
}
.partner-foundational .fp-travel-card {
  margin-top: 18px;
  padding: 40px 36px;
  background: rgba(248, 244, 236, 0.72);
  backdrop-filter: blur(24px) saturate(1.22);
  -webkit-backdrop-filter: blur(24px) saturate(1.22);
  color: var(--ink);
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  position: relative;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(22, 43, 31, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.7);
}
.partner-foundational .fp-travel-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 82% 18%, rgba(184, 110, 63, 0.14) 0%, transparent 62%);
  pointer-events: none;
}
.governance.with-image .section-eyebrow {
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.governance.with-image .section-eyebrow::before {
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}
.teasers.with-image .section-eyebrow {
  color: #FFFFFF;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.4);
}
.teasers.with-image .section-eyebrow::before {
  background: #FFFFFF;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Campfire details · cream variant */
.campfire-page.cream {
  background: var(--cream);
  color: var(--ink);
}
.campfire-page.cream::before { display: none; }
.campfire-page.cream .campfire-embers { display: none; }
.campfire-page.cream .section-eyebrow { color: var(--green); }
.campfire-page.cream .section-eyebrow::before { background: var(--green); }
.campfire-page.cream h2 { color: var(--ink) !important; }
.campfire-page.cream h2 em { color: var(--green) !important; }
.campfire-page.cream .campfire-detail {
  border-bottom-color: var(--rule);
}
.campfire-page.cream .campfire-detail .label { color: var(--copper); }
.campfire-page.cream .campfire-detail .value { color: var(--ink); }

/* Activities · green + image variant (for Campfire what-to-expect) */
.activities.with-image {
  background-color: var(--green-deep);
  color: var(--cream);
  position: relative;
  overflow: hidden;
}
.activities-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 0.55;
}
.activities-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(22, 43, 31, 0.65) 0%, rgba(10, 10, 10, 0.6) 100%),
    radial-gradient(ellipse at 70% 30%, rgba(194, 142, 74, 0.22) 0%, transparent 55%);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}
.activities.with-image .container { position: relative; z-index: 2; }
.activities.with-image .section-eyebrow { color: var(--tan); }
.activities.with-image .section-eyebrow::before { background: var(--tan); }
.activities.with-image .section-title { color: var(--cream); }
.activities.with-image .section-title em { color: var(--tan-soft); }
.activities.with-image .section-intro { color: rgba(242, 235, 221, 0.85); }

/* Campfire registration · clean image with glass form (no heavy overlay) */
.campfire-page.with-image {
  position: relative;
  overflow: hidden;
  background-color: transparent;
}
.campfire-page-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
  opacity: 1;
}
.campfire-page.with-image .container { position: relative; z-index: 2; }
.campfire-page.with-image .campfire-embers { display: none; }

/* Image overlays removed site-wide */
.hero-bg::after,
.page-hero-bg::after,
.land-image::after,
.aok-bg::after,
.founder-image::after,
.teasers-bg::after,
.governance-bg::after,
.partner-foundational .governance-bg::after,
.activities-bg::after {
  display: none;
  background: none;
}

/* Hide dotted-earth in v3.2 */
footer .dotted-earth { display: none; }
