/* ─── FRONT PAGE ──────────────────────────────────────────────────────────── */
/* Conditionally enqueued via functions.php only on is_front_page()           */

/* ─── TOKENS ─────────────────────────── */
:root {
  --cedars:    #173933;
  --larch-text: #8b5e1a;
  --flatwater-text: #056e71; /* darker flatwater for AA-passing text on light surfaces */
  --missions:  #254E69;
  --lake:      #1D658D;
  --subalpine: #155F51;
  --flatwater: #069699;
  --larch:     #CD9437;
  --harvest:   #E8B05C;
  --offwhite:  #F4F1EC;
  --cream:     #f5f0e8; /* matches nav.css / inner-pages.css; defined here so .event-month doesn't silently depend on stylesheet load order */
  --white:     #ffffff;
  --ink:       #0f2420;
  --text-dark: #1e2d28;
  --display:   'Raleway', sans-serif;
  --body:      'Archivo', sans-serif;
  --ease:      cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }

body.home {
  font-family: var(--body);
  background: var(--cedars);
  color: var(--white);
  overflow-x: hidden;
}

/* :where() neutralizes specificity here. Without it this rule lands at
   (0,1,2) which beats class-styled links like .proof-link or .resources-all
   (0,1,0) and forces them to inherit white from the body, rendering them
   invisible on cream sections. With :where(), this drops to (0,0,2) so
   single-class link rules win cleanly. */
body:where(.home) a { text-decoration: none; color: inherit; }

/* ─── GRAIN OVERLAY ───────────────────── */
body.home::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='200' height='200'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.042;
  pointer-events: none;
  z-index: 9000;
}

/* ─── NEUTRALIZE GENESIS WRAPPERS ─────── */
body.home .site-container,
body.home .site-inner,
body.home .content-sidebar-wrap,
body.home .content,
body.home .entry,
body.home .entry-content {
  max-width: none !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  float: none !important;
}

/* ─── SITE HEADER (FRONT PAGE) ────────── */

body.home .site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 130px;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  transition: background 0.4s var(--ease), height 0.4s var(--ease),
              backdrop-filter 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.admin-bar body.home .site-header { top: 32px; }

body.home .site-header.is-scrolled {
  height: 90px;
  background: rgba(23,57,51,0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.35);
}
body.home .site-header.is-scrolled .mw-logo-img { height: 74px; }

/* ─── RAIL NAV ────────────────────────── */
.rail-nav {
  position: fixed;
  right: 36px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
.rail-nav.on { opacity: 1; }
.rail-dot {
  position: relative;
  width: 20px; height: 20px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.rail-pip {
  width: 6px; height: 6px;
  border-radius: 50%;
  border: 1.5px solid rgba(255,255,255,0.3);
  background: transparent;
  transition: all 0.35s var(--ease);
}
.rail-dot.active .rail-pip { background: var(--larch); border-color: var(--larch); transform: scale(1.5); }
.rail-connector { width: 1px; height: 22px; background: rgba(255,255,255,0.12); }
.rail-dot::after {
  content: attr(data-label);
  position: absolute;
  right: calc(100% + 14px);
  top: 50%; transform: translateY(-50%);
  font-family: var(--body);
  font-size: 9px; font-weight: 500; letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  white-space: nowrap; opacity: 0; transition: opacity 0.2s;
  pointer-events: none;
}
.rail-dot:hover::after { opacity: 1; }

/* ─── REVEAL ──────────────────────────── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.85s var(--ease), transform 0.85s var(--ease); }
.reveal.on { opacity: 1; transform: translateY(0); }
.d1 { transition-delay: 0.08s; }
.d2 { transition-delay: 0.16s; }
.d3 { transition-delay: 0.24s; }
.d4 { transition-delay: 0.32s; }
.d5 { transition-delay: 0.40s; }
.d6 { transition-delay: 0.48s; }

/* ─── HERO ────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  background: var(--cedars);
  background-image: var(--hero-photo, none);
  background-size: cover;
  background-position: center center;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 0 10vw 12vh 20vw;
  overflow: hidden;
}
/* Overlay disabled — hero shows the solid Cedars bg + MW ghost logo
   directly. If a hero featured image is ever set again, restore the
   gradient (original values were rgba(23, 57, 51, 0.50/0.68/0.84) at
   0/55/100%) for text contrast over the photo. */
.hero::before { display: none; }
.hero-content { position: relative; z-index: 2; max-width: 860px; }
/* MW logo as a ghost watermark in the bottom-right, echoing the
   dept-hero-ghost pattern used on every dept page. Sits above the dark
   overlay but below the headline text. */
.hero-ghost {
  position: absolute;
  right: -5vw;
  bottom: -4vh;
  width: clamp(528px, 62vw, 1238px);
  height: auto;
  opacity: 0.50;
  z-index: 1;
  pointer-events: none;
  user-select: none;
}
.hero-eyebrow {
  display: block; font-family: var(--body); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--larch);
  margin-bottom: 34px; opacity: 0; transform: translateY(14px);
  animation: rise 0.7s var(--ease) 0.15s forwards;
}
.hero-hook {
  font-family: var(--display); font-size: clamp(44px, 6.2vw, 88px);
  font-weight: 900; line-height: 1.05; letter-spacing: -2px; color: var(--white);
  margin-bottom: 30px; opacity: 0; transform: translateY(24px);
  animation: rise 0.85s var(--ease) 0.35s forwards;
}
.hero-hook .accent { color: var(--harvest); font-style: italic; }
.hero-sub {
  font-family: var(--body); font-size: 17px; line-height: 1.78;
  color: rgba(255,255,255,0.48); max-width: 480px;
  opacity: 0; transform: translateY(14px);
  animation: rise 0.7s var(--ease) 0.6s forwards;
}
.hero-btn {
  display: inline-flex; align-items: center; gap: 14px; margin-top: 36px;
  border: 1.5px solid rgba(255,255,255,0.28); padding: 15px 32px; border-radius: 2px;
  font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 1px;
  color: var(--white); transition: border-color 0.2s, background 0.2s, color 0.2s;
  opacity: 0; transform: translateY(14px);
  animation: rise 0.7s var(--ease) 0.8s forwards;
}
.hero-btn:hover { border-color: var(--larch); background: rgba(205,148,55,0.08); color: var(--harvest); }
.hero-btn-arrow {
  display: inline-block; width: 22px; height: 1.5px; background: currentColor;
  position: relative; transition: width 0.3s var(--ease);
}
.hero-btn-arrow::after {
  content: ''; position: absolute; right: -1px; top: -3px;
  width: 6px; height: 6px;
  border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.hero-btn:hover .hero-btn-arrow { width: 34px; }
.hero-scroll {
  position: absolute; bottom: 48px; left: 20vw;
  display: flex; align-items: center; gap: 14px;
  opacity: 0; animation: rise 0.7s var(--ease) 1s forwards;
}
.hero-scroll-bar { width: 40px; height: 1px; background: var(--larch); opacity: 0.65; }
.hero-scroll-text {
  font-family: var(--body); font-size: 9px; font-weight: 500; letter-spacing: 2.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.3);
}
.hero-mountains {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  opacity: 0; animation: appear 2s var(--ease) 0.7s forwards;
}

/* ─── WHO WE ARE ──────────────────────── */
.who { background: var(--missions); padding: 88px 10vw; position: relative; overflow: visible; clip-path: inset(0); }
.who::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.07); }
.who-ghost {
  position: absolute; font-family: var(--display); font-weight: 900; font-size: 52vw;
  letter-spacing: -16px; color: rgba(255,255,255,0.028);
  user-select: none; pointer-events: none; right: -8vw; top: 50%; transform: translateY(-50%); line-height: 1;
}
.who-inner {
  position: relative; z-index: 2; display: grid; grid-template-columns: 5fr 7fr;
  gap: 80px; align-items: start; max-width: 1160px; margin: 0 auto;
}
.who-label {
  display: block; font-family: var(--body); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--harvest); margin-bottom: 24px;
}
.who-heading {
  font-family: var(--display); font-size: clamp(34px, 4.2vw, 58px); font-weight: 900;
  line-height: 1.08; letter-spacing: -0.8px; color: var(--white); margin-bottom: 28px;
}
.who-heading em { font-style: italic; color: var(--harvest); }
.who-mission { font-size: 16px; line-height: 1.85; color: rgba(255,255,255,0.55); max-width: 380px; }
.who-centers { display: grid; grid-template-columns: 1fr 1fr; gap: 3px; }
.who-center {
  display: block; padding: 26px 28px 28px; position: relative;
  border: 1px solid rgba(255,255,255,0.07); transition: border-color 0.2s, background 0.2s; cursor: pointer;
}
.who-center:hover { border-color: rgba(255,255,255,0.2); background: rgba(255,255,255,0.04); }
.who-center::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; transition: opacity 0.2s; }
.who-center:nth-child(1)::before { background: var(--lake); }
.who-center:nth-child(2)::before { background: var(--subalpine); }
.who-center:nth-child(3)::before { background: var(--flatwater); }
.who-center:nth-child(4)::before { background: var(--larch); }
.who-center-num {
  display: block; font-family: var(--body); font-size: 10.5px; font-weight: 600;
  letter-spacing: 2.5px; color: rgba(255,255,255,0.32); margin-bottom: 12px;
}
.who-center-name {
  display: block; font-family: var(--display); font-size: 19px; font-weight: 800;
  color: var(--white); letter-spacing: -0.3px; line-height: 1.25; margin-bottom: 12px;
}
.who-center-line { display: block; font-family: var(--body); font-size: 14.5px; line-height: 1.65; color: rgba(255,255,255,0.5); margin-bottom: 18px; }
.who-center-explore {
  font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; color: rgba(255,255,255,0.32); transition: color 0.2s;
}
.who-center:hover .who-center-explore { color: var(--harvest); }

/* ─── REGION ──────────────────────────── */
.region { background: var(--ink); padding: 100px 10vw; position: relative; }
.region::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.05); }
.region-inner { max-width: 1160px; margin: 0 auto; }
.region-header {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 56px; padding-bottom: 28px; border-bottom: 1px solid rgba(255,255,255,0.07);
}
.region-label {
  display: block; font-family: var(--body); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--larch); margin-bottom: 14px;
}
.region-heading {
  font-family: var(--display); font-size: clamp(28px, 3.2vw, 46px); font-weight: 900;
  line-height: 1.1; letter-spacing: -0.6px; color: var(--white);
}
.region-intro { font-size: 14.5px; line-height: 1.8; color: rgba(255,255,255,0.35); max-width: 340px; text-align: right; }
.region-county {
  display: grid; grid-template-columns: 44px 1fr auto; align-items: center;
  gap: 36px; padding: 30px 0; border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: padding-left 0.3s var(--ease); cursor: default;
}
.region-county:first-child { border-top: 1px solid rgba(255,255,255,0.06); }
.region-county:hover { padding-left: 10px; }
.region-county-num { font-family: var(--body); font-size: 9.5px; font-weight: 600; letter-spacing: 2.5px; color: rgba(255,255,255,0.18); }
.region-county-main { display: flex; align-items: baseline; gap: 22px; flex-wrap: wrap; }
.region-county-name {
  font-family: var(--display); font-size: clamp(26px, 3.8vw, 54px); font-weight: 900;
  letter-spacing: -1px; color: var(--white); line-height: 1; white-space: nowrap;
}
.region-county-rule { flex: 1; height: 1px; background: rgba(255,255,255,0.08); min-width: 20px; align-self: center; }
.region-county-detail { text-align: right; flex-shrink: 0; }
.region-county-towns { display: block; font-family: var(--body); font-size: 12.5px; color: rgba(255,255,255,0.36); margin-bottom: 5px; white-space: nowrap; }
.region-county-services { display: block; font-family: var(--body); font-size: 9.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.18); }
.region-footer {
  margin-top: 52px; display: flex; justify-content: space-between; align-items: center;
  gap: 28px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06);
}
.region-footer-text { font-family: var(--display); font-size: clamp(15px, 1.6vw, 20px); font-weight: 700; color: rgba(255,255,255,0.5); line-height: 1.5; }
.region-footer-link {
  font-family: var(--display); font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px;
  color: var(--larch); white-space: nowrap; padding-bottom: 2px;
  border-bottom: 1px solid rgba(205,148,55,0.38); transition: border-color 0.2s; flex-shrink: 0;
}
.region-footer-link:hover { border-color: var(--larch); }

/* ─── DEPARTMENTS ─────────────────────── */
.dept { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; }
.dept-bdc { background: var(--lake); }
.dept-fec { background: var(--subalpine); }
.dept-cdc { background: var(--flatwater); }
.dept-ced { background: var(--larch); }
.dept::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.09); }
.dept-ced::before { background: rgba(0,0,0,0.07); }
.dept-ghost {
  position: absolute; font-family: var(--display); font-weight: 900;
  font-size: clamp(220px, 28vw, 460px); line-height: 0.85; letter-spacing: -8px;
  user-select: none; pointer-events: none; bottom: -0.08em;
}
.dept-bdc .dept-ghost, .dept-cdc .dept-ghost { right: -1vw; color: rgba(255,255,255,0.055); }
.dept-fec .dept-ghost, .dept-ced .dept-ghost { left: -1vw; color: rgba(255,255,255,0.055); }
.dept-ced .dept-ghost { color: rgba(0,0,0,0.07); }
/* All four dept ghosts now use department initials/words instead of the
   2-char section number. Drop the font-size and tracking so they read
   cleanly without running off-screen. */
.dept-bdc .dept-ghost,
.dept-fec .dept-ghost,
.dept-cdc .dept-ghost,
.dept-ced .dept-ghost { font-size: clamp(110px, 13vw, 220px); letter-spacing: -3px; }
.dept-grid {
  position: relative; z-index: 2; width: 100%; max-width: 1600px; margin: 0 auto;
  padding: 88px clamp(32px, 5vw, 88px);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 3vw, 56px);
  /* `dense` so .dept-photo (grid-column: 1) can backfill row 1 when
     .dept-inner already took row 1 col 2 — otherwise the photo lands on
     a new row 2 and the layout stacks instead of sitting side-by-side. */
  grid-auto-flow: dense;
}
.dept-bdc .dept-inner, .dept-cdc .dept-inner { grid-column: 1; }
.dept-fec .dept-inner, .dept-ced .dept-inner { grid-column: 2; }
/* Photo slot opposite the text column. Empty = invisible (cell stays blank).
   Add an <img> inside to fill it. Photo bleeds to the section edge so it
   sits next to the ghost number for an editorial composition. */
.dept-photo {
  position: relative;
  align-self: stretch;
  display: flex;
  align-items: center;
  justify-content: center;
}
.dept-bdc .dept-photo, .dept-cdc .dept-photo { grid-column: 2; }
.dept-fec .dept-photo, .dept-ced .dept-photo { grid-column: 1; }
.dept-photo img {
  width: 100%;
  max-width: 480px;
  max-height: 60vh;
  object-fit: cover;
  display: block;
}
.dept-num { display: block; font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 3px; margin-bottom: 24px; }
.dept-bdc .dept-num, .dept-fec .dept-num, .dept-cdc .dept-num { color: rgba(255,255,255,0.35); }
.dept-ced .dept-num { color: rgba(0,0,0,0.3); }
.dept-name { font-family: var(--display); font-size: clamp(32px, 4.2vw, 64px); font-weight: 900; line-height: 1.07; letter-spacing: -0.5px; margin-bottom: 24px; }
.dept-bdc .dept-name, .dept-fec .dept-name, .dept-cdc .dept-name { color: var(--white); }
.dept-ced .dept-name { color: var(--cedars); }
.dept-tag { font-family: var(--display); font-size: clamp(16px, 1.9vw, 24px); font-weight: 600; line-height: 1.45; margin-bottom: 22px; }
.dept-bdc .dept-tag, .dept-fec .dept-tag, .dept-cdc .dept-tag { color: rgba(255,255,255,0.82); }
.dept-ced .dept-tag { color: rgba(0,0,0,0.7); }
.dept-body { font-size: 15.5px; line-height: 1.85; margin-bottom: 40px; }
.dept-bdc .dept-body, .dept-fec .dept-body, .dept-cdc .dept-body { color: rgba(255,255,255,0.52); }
.dept-ced .dept-body { color: rgba(0,0,0,0.5); }
.dept-link {
  display: inline-flex; align-items: center; gap: 14px; font-family: var(--display);
  font-size: 12px; font-weight: 700; letter-spacing: 0.8px;
  padding: 14px 26px; border-radius: 2px; transition: background 0.2s, border-color 0.2s;
}
.dept-bdc .dept-link, .dept-fec .dept-link, .dept-cdc .dept-link { color: var(--white); border: 1.5px solid rgba(255,255,255,0.3); }
.dept-bdc .dept-link:hover, .dept-fec .dept-link:hover, .dept-cdc .dept-link:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.55); }
.dept-ced .dept-link { color: var(--cedars); border: 1.5px solid rgba(0,0,0,0.22); }
.dept-ced .dept-link:hover { background: rgba(0,0,0,0.07); border-color: rgba(0,0,0,0.38); }
.dept-arrow { display: inline-block; width: 28px; height: 1.5px; position: relative; transition: width 0.3s var(--ease); flex-shrink: 0; }
.dept-arrow::after { content: ''; position: absolute; right: -1px; top: -3.5px; width: 7px; height: 7px; border-top: 1.5px solid; border-right: 1.5px solid; transform: rotate(45deg); }
.dept-bdc .dept-arrow, .dept-fec .dept-arrow, .dept-cdc .dept-arrow { background: rgba(255,255,255,0.5); }
.dept-bdc .dept-arrow::after, .dept-fec .dept-arrow::after, .dept-cdc .dept-arrow::after { border-color: rgba(255,255,255,0.5); }
.dept-ced .dept-arrow { background: rgba(0,0,0,0.38); }
.dept-ced .dept-arrow::after { border-color: rgba(0,0,0,0.38); }
.dept-link:hover .dept-arrow { width: 44px; }

/* ─── SUCCESS STORY ───────────────────── */
.proof { background: var(--offwhite); padding: 100px 10vw; position: relative; }
.proof-section-header {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1160px; margin: 0 auto 64px; padding-bottom: 24px; border-bottom: 1px solid rgba(0,0,0,0.1);
}
.proof-section-label { display: flex; align-items: center; gap: 14px; }
.proof-section-label-text { font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(0,0,0,0.4); }
.proof-section-label-tag { font-family: var(--body); font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--flatwater); background: rgba(6,150,153,0.1); padding: 4px 10px; border-radius: 2px; }
.proof-more { font-family: var(--display); font-size: 11.5px; font-weight: 700; letter-spacing: 0.5px; color: var(--cedars); padding-bottom: 2px; border-bottom: 1px solid var(--cedars); transition: border-color 0.2s, color 0.2s; }
.proof-more:hover { color: var(--larch-text); border-color: var(--larch-text); }
.proof-grid { display: grid; grid-template-columns: 5fr 6fr; gap: 70px; align-items: start; max-width: 1160px; margin: 0 auto; }
.proof-photo-left { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 2px; box-shadow: 0 20px 60px rgba(23,57,51,0.18); }
.proof-photo-left img { width: 100%; height: 100%; object-fit: cover; display: block; }
.proof-dept-label { display: inline-block; font-family: var(--body); font-size: 9.5px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--cedars); border-left: 2px solid var(--flatwater); padding-left: 12px; margin-bottom: 24px; }
.proof-quote { font-family: var(--display); font-size: clamp(22px, 2.4vw, 36px); font-weight: 900; line-height: 1.18; letter-spacing: -0.5px; color: var(--text-dark); margin-bottom: 28px; }
.proof-quote em { font-style: italic; color: var(--flatwater); }
.proof-attrib { display: block; font-family: var(--body); font-size: 11px; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(0,0,0,0.35); margin-bottom: 36px; }
.proof-story p { font-size: 16.5px; line-height: 1.88; color: #3a4a44; margin-bottom: 22px; }
.proof-story p:last-of-type { margin-bottom: 36px; }
.proof-link { display: inline-flex; align-items: center; gap: 12px; font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.8px; color: var(--cedars); }
.proof-arrow { display: inline-block; width: 24px; height: 1.5px; background: var(--cedars); position: relative; transition: width 0.3s var(--ease); }
.proof-arrow::after { content: ''; position: absolute; right: -1px; top: -3px; width: 6px; height: 6px; border-top: 1.5px solid var(--cedars); border-right: 1.5px solid var(--cedars); transform: rotate(45deg); }
.proof-link:hover .proof-arrow { width: 38px; }

/* ─── FEATURED ────────────────────────── */
.featured {
  position: relative; background: var(--ink); overflow: hidden;
  padding: 100px 10vw; display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 60px; min-height: 70vh;
}
.featured::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 75% 50%, rgba(205,148,55,0.13) 0%, transparent 62%); pointer-events: none; }
.featured-ghost {
  position: absolute; font-family: var(--display); font-size: 44vw; font-weight: 900;
  font-style: italic; line-height: 0.85; letter-spacing: -14px; color: rgba(205,148,55,0.038);
  pointer-events: none; user-select: none; left: -4vw; top: 50%; transform: translateY(-50%); white-space: nowrap;
}
.featured-left { position: relative; z-index: 2; }
.featured-tag { display: inline-flex; align-items: center; gap: 10px; font-family: var(--body); font-size: 9.5px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--larch); margin-bottom: 28px; }
.featured-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--larch); animation: pulse 2s ease infinite; }
.featured-event-type { display: block; font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(255,255,255,0.28); margin-bottom: 14px; }
.featured-name { display: block; font-family: var(--display); font-size: clamp(52px, 7.5vw, 108px); font-weight: 900; font-style: italic; line-height: 0.92; letter-spacing: -3px; color: var(--harvest); margin-bottom: 26px; }
.featured-subtitle { font-family: var(--display); font-size: clamp(15px, 1.7vw, 21px); font-weight: 600; color: rgba(255,255,255,0.6); line-height: 1.45; margin-bottom: 40px; }
.featured-right { position: relative; z-index: 2; }
.featured-date-block { border-left: 2px solid var(--larch); padding-left: 28px; margin-bottom: 32px; }
.featured-month { display: block; font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--larch); margin-bottom: 5px; }
.featured-day { display: block; font-family: var(--display); font-size: clamp(52px, 6vw, 84px); font-weight: 900; line-height: 1; letter-spacing: -3px; color: var(--white); margin-bottom: 3px; }
.featured-year { display: block; font-family: var(--body); font-size: 13px; color: rgba(255,255,255,0.32); letter-spacing: 1px; }
.featured-desc { font-size: 15.5px; line-height: 1.8; color: rgba(255,255,255,0.48); margin-bottom: 32px; }
.featured-btn { display: inline-block; background: var(--larch); color: var(--cedars); font-family: var(--display); font-size: 12.5px; font-weight: 800; letter-spacing: 0.8px; padding: 16px 40px; border-radius: 2px; transition: background 0.2s, transform 0.2s var(--ease); }
.featured-btn:hover { background: var(--harvest); transform: translateY(-2px); }

/* ─── ABOUT ───────────────────────────── */
.about { background: var(--cedars); padding: 96px 10vw; position: relative; }
.about::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.06); }
.about-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; max-width: 1160px; margin: 0 auto; }
.about-heading { font-family: var(--display); font-size: clamp(34px, 4.5vw, 60px); font-weight: 900; line-height: 1.07; letter-spacing: -0.8px; color: var(--white); }
.about-heading em { font-style: italic; color: var(--harvest); }
.about-right p { font-size: 16.5px; line-height: 1.88; color: rgba(255,255,255,0.52); margin-bottom: 20px; }
.about-right p strong { color: rgba(255,255,255,0.82); font-weight: 600; }

/* ─── TEAM ────────────────────────────── */
.team { background: var(--offwhite); padding: 96px 10vw; }
.team-label { display: block; font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(0,0,0,0.35); margin-bottom: 12px; }
.team-heading { font-family: var(--display); font-size: clamp(26px, 3vw, 42px); font-weight: 900; letter-spacing: -0.4px; color: var(--text-dark); margin-bottom: 52px; }
.team-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.team-photo { width: 100%; aspect-ratio: 3/4; background: #d8d3cb; margin-bottom: 16px; position: relative; display: flex; align-items: center; justify-content: center; }
.team-photo::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; }
.team-card:nth-child(1) .team-photo::before { background: var(--cedars); }
.team-card:nth-child(2) .team-photo::before { background: var(--lake); }
.team-card:nth-child(3) .team-photo::before { background: var(--subalpine); }
.team-card:nth-child(4) .team-photo::before { background: var(--flatwater); }
.team-card:nth-child(5) .team-photo::before { background: var(--larch); }
.team-photo svg { width: 40%; opacity: 0.22; }
.team-photo-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.team-card { transition: transform 0.25s var(--ease); }
.team-card:hover { transform: translateY(-3px); }
.team-center-tag { display: block; font-family: var(--body); font-size: 9px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: rgba(0,0,0,0.32); margin-bottom: 5px; }
.team-name { display: block; font-family: var(--display); font-size: 14.5px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.2px; margin-bottom: 3px; }
.team-role { font-family: var(--body); font-size: 12px; color: rgba(0,0,0,0.42); line-height: 1.5; }

/* ─── TEAM SPREAD (editorial Meet the Team) ─── */
.team-spread { background: var(--offwhite); padding: 110px 10vw; position: relative; }
.team-spread::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(0,0,0,0.06); }
.team-spread-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; }
.team-spread-text { padding-right: 20px; }
.team-spread-eyebrow { display: block; font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--larch-text); margin-bottom: 22px; }
.team-spread-heading { font-family: var(--display); font-size: clamp(32px, 4vw, 56px); font-weight: 900; line-height: 1.07; letter-spacing: -0.8px; color: var(--text-dark); margin-bottom: 24px; }
.team-spread-heading em { font-style: italic; color: var(--flatwater); }
.team-spread-body { font-family: var(--body); font-size: 16px; line-height: 1.85; color: rgba(0,0,0,0.6); margin-bottom: 36px; max-width: 460px; }
.team-spread-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--cedars); color: var(--white);
  font-family: var(--display); font-size: 12.5px; font-weight: 800; letter-spacing: 0.8px;
  padding: 16px 36px; border-radius: 2px;
  transition: background 0.2s, transform 0.2s var(--ease);
}
.team-spread-btn:hover { background: var(--text-dark); transform: translateY(-2px); }
.team-spread-btn-arrow { display: inline-block; width: 22px; height: 1.5px; background: currentColor; position: relative; transition: width 0.3s var(--ease); }
.team-spread-btn-arrow::after { content: ''; position: absolute; right: -1px; top: -3px; width: 6px; height: 6px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); }
.team-spread-btn:hover .team-spread-btn-arrow { width: 34px; }
.team-spread-photo { position: relative; aspect-ratio: 4/3; overflow: hidden; border-radius: 2px; box-shadow: 0 12px 40px rgba(0,0,0,0.12); }
.team-spread-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; }
.team-spread-photo-placeholder {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(23,57,51,0.18) 0%, rgba(37,78,105,0.18) 100%),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 2px, transparent 2px 14px),
    #d8d3cb;
  display: flex; align-items: center; justify-content: center;
}
.team-spread-photo-placeholder-text {
  font-family: var(--body); font-size: 10px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase;
  color: rgba(0,0,0,0.32);
}

/* ─── WHERE WE WORK teaser ([mw_home_map]) ──────────────────────────────── */
.home-map { background: var(--cedars); padding: 110px 10vw; position: relative; }
.home-map::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.07); }
.home-map-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: center; }
.home-map-text { padding-right: 20px; }
.home-map-eyebrow { display: block; font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--larch); margin-bottom: 22px; }
.home-map-heading { font-family: var(--display); font-size: clamp(32px, 4vw, 56px); font-weight: 900; line-height: 1.07; letter-spacing: -0.8px; color: var(--white); margin-bottom: 24px; }
.home-map-heading em { font-style: italic; color: var(--larch); }
.home-map-body { font-family: var(--body); font-size: 16px; line-height: 1.85; color: rgba(245,240,232,0.72); margin-bottom: 36px; max-width: 460px; }
.home-map-btn {
  display: inline-flex; align-items: center; gap: 14px;
  background: var(--white); color: var(--cedars);
  font-family: var(--display); font-size: 12.5px; font-weight: 800; letter-spacing: 0.8px;
  padding: 16px 36px; border-radius: 2px;
  transition: background 0.2s, transform 0.2s var(--ease), color 0.2s;
}
.home-map-btn:hover { background: var(--larch); color: var(--cedars); transform: translateY(-2px); }
.home-map-btn-arrow { display: inline-block; width: 22px; height: 1.5px; background: currentColor; position: relative; transition: width 0.3s var(--ease); }
.home-map-btn-arrow::after { content: ''; position: absolute; right: -1px; top: -3px; width: 6px; height: 6px; border-top: 1.5px solid currentColor; border-right: 1.5px solid currentColor; transform: rotate(45deg); }
.home-map-btn:hover .home-map-btn-arrow { width: 34px; }
.home-map-visual { position: relative; display: block; border-radius: 2px; overflow: hidden; box-shadow: 0 18px 50px rgba(0,0,0,0.35); border: 1px solid rgba(245,240,232,0.10); }
.home-map-visual img { display: block; width: 100%; height: auto; transition: transform 0.5s var(--ease); }
.home-map-visual:hover img { transform: scale(1.03); }
.home-map-visual-badge {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(23,57,51,0.92);
  color: var(--cream); font-family: var(--body); font-size: 11px; font-weight: 700;
  letter-spacing: 1px; text-transform: uppercase;
  padding: 8px 14px; border-radius: 2px; border: 1px solid rgba(245,240,232,0.16);
}
@media (max-width: 860px) {
  .home-map { padding: 72px 6vw; }
  .home-map-inner { grid-template-columns: 1fr; gap: 36px; }
  .home-map-text { padding-right: 0; }
}

/* ─── EVENTS ──────────────────────────── */
.events { background: var(--missions); padding: 96px 10vw; position: relative; }
.events::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.07); }
.events-inner { max-width: 860px; margin: 0 auto; }
.events-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 44px; }
.events-label { display: block; font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--harvest); margin-bottom: 10px; }
.events-heading { font-family: var(--display); font-size: clamp(24px, 2.8vw, 40px); font-weight: 900; letter-spacing: -0.4px; color: var(--white); }
.events-all { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; color: var(--larch); padding-bottom: 3px; border-bottom: 1px solid rgba(205,148,55,0.38); transition: border-color 0.2s; white-space: nowrap; }
.events-all:hover { border-color: var(--larch); }
.event-item { display: grid; grid-template-columns: 72px 1fr auto; gap: 28px; align-items: center; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,0.07); transition: padding-left 0.25s var(--ease); text-decoration: none; color: inherit; }
.event-item:hover .event-name { color: var(--harvest); }
.event-item:first-child { border-top: 1px solid rgba(255,255,255,0.07); }
.event-item:hover { padding-left: 8px; }
.events-empty { font-family: var(--body); font-size: 14.5px; line-height: 1.75; color: rgba(255,255,255,0.55); padding: 24px 0; margin: 0; border-top: 1px solid rgba(255,255,255,0.07); border-bottom: 1px solid rgba(255,255,255,0.07); }
.events-empty a { color: var(--larch); border-bottom: 1px solid rgba(205,148,55,0.38); transition: border-color 0.2s; }
.events-empty a:hover { border-color: var(--larch); }
.event-date { line-height: 1.2; }
.event-month { display: block; font-family: var(--display); font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--cream); margin-bottom: 2px; }
.event-day { font-family: var(--display); font-size: 28px; font-weight: 900; color: var(--white); letter-spacing: -1px; }
.event-name { font-family: var(--display); font-size: 16.5px; font-weight: 700; color: var(--white); margin-bottom: 4px; letter-spacing: -0.1px; }
.event-meta { display: flex; align-items: center; gap: 12px; }
.event-location { font-family: var(--body); font-size: 12.5px; color: rgba(255,255,255,0.7); }
.event-time { font-family: var(--body); font-size: 12.5px; color: rgba(255,255,255,0.7); }
.event-type { font-family: var(--body); font-size: 9.5px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.event-badge { font-family: var(--body); font-size: 9px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 10px; border-radius: 2px; white-space: nowrap; }
.badge-bdc { background: rgba(29,101,141,0.35); color: rgba(255,255,255,0.62); }
.badge-fec { background: rgba(21,95,81,0.4);   color: rgba(255,255,255,0.62); }
.badge-cdc { background: rgba(6,150,153,0.35);  color: rgba(255,255,255,0.62); }
.badge-ced { background: rgba(205,148,55,0.25); color: rgba(255,255,255,0.62); }
.badge-mw  { background: rgba(255,255,255,0.08);color: rgba(255,255,255,0.5); }

/* ─── RESOURCES ───────────────────────── */
.resources { background: var(--offwhite); padding: 100px 10vw; }
.resources-inner { max-width: 1160px; margin: 0 auto; }
.resources-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 52px; }
.resources-label { display: block; font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: rgba(0,0,0,0.35); margin-bottom: 10px; }
.resources-heading { font-family: var(--display); font-size: clamp(24px, 2.8vw, 40px); font-weight: 900; letter-spacing: -0.4px; color: var(--text-dark); }
.resources-all { font-family: var(--display); font-size: 12px; font-weight: 700; letter-spacing: 0.5px; color: var(--lake); padding-bottom: 3px; border-bottom: 1px solid rgba(29,101,141,0.35); transition: border-color 0.2s; white-space: nowrap; }
.resources-all:hover { border-color: var(--lake); }
.resources-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.resource-card { background: var(--white); padding: 36px 32px 40px; position: relative; transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease); }
.resource-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; }
.resource-card.bdc::before { background: var(--lake); }
.resource-card.fec::before { background: var(--subalpine); }
.resource-card.cdc::before { background: var(--flatwater); }
.resource-card.ced::before { background: var(--larch); }
.resource-card:hover { transform: translateY(-3px); box-shadow: 0 8px 30px rgba(0,0,0,0.08); }
.resource-center { display: block; font-family: var(--body); font-size: 9px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: rgba(0,0,0,0.3); margin-bottom: 12px; }
.resource-name { font-family: var(--display); font-size: 15.5px; font-weight: 800; color: var(--text-dark); letter-spacing: -0.2px; line-height: 1.3; margin-bottom: 10px; }
.resource-desc { font-family: var(--body); font-size: 13px; line-height: 1.7; color: rgba(0,0,0,0.48); margin-bottom: 18px; }
.resource-link { font-family: var(--display); font-size: 11px; font-weight: 700; letter-spacing: 0.5px; display: inline-flex; align-items: center; gap: 6px; }
.resource-card.bdc .resource-link { color: var(--lake); }
.resource-card.fec .resource-link { color: var(--subalpine); }
.resource-card.cdc .resource-link { color: var(--flatwater-text); }
.resource-card.ced .resource-link { color: var(--larch-text); }
.resource-link::after { content: '→'; }

/* ─── PROCESS ─────────────────────────── */
.process { background: var(--cedars); padding: 100px 10vw; position: relative; }
.process::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.06); }
.process-label { display: block; font-family: var(--body); font-size: 10px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--larch); margin-bottom: 52px; max-width: 1160px; margin-left: auto; margin-right: auto; }
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 4px; max-width: 1160px; margin: 0 auto; }
.process-step { padding: 44px 40px 50px; border: 1px solid rgba(255,255,255,0.06); position: relative; }
.process-step:first-child { border-left-color: var(--larch); }
.step-num { display: block; font-family: var(--display); font-size: 84px; font-weight: 900; line-height: 1; color: rgba(255,255,255,0.055); letter-spacing: -3px; margin-bottom: 18px; }
.step-title { font-family: var(--display); font-size: clamp(20px, 2.4vw, 30px); font-weight: 900; color: var(--white); letter-spacing: -0.3px; margin-bottom: 12px; }
.step-body { font-size: 15px; line-height: 1.8; color: rgba(255,255,255,0.46); }

/* ─── CLOSING ─────────────────────────── */
.closing {
  position: relative; background: var(--ink); padding: 100px 10vw; text-align: center;
  overflow: hidden; display: flex; align-items: center; justify-content: center; min-height: 52vh;
}
.closing::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: rgba(255,255,255,0.05); }
.closing-ghost { position: absolute; font-family: var(--display); font-weight: 900; font-size: 38vw; letter-spacing: -12px; color: rgba(255,255,255,0.022); user-select: none; pointer-events: none; top: 50%; left: 50%; transform: translate(-50%,-50%); line-height: 1; }
.closing-inner { position: relative; z-index: 2; max-width: 580px; }
.closing-eyebrow { display: block; font-family: var(--body); font-size: 9.5px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--larch); margin-bottom: 22px; }
.closing-heading { font-family: var(--display); font-size: clamp(28px, 3.8vw, 52px); font-weight: 900; line-height: 1.1; letter-spacing: -0.5px; color: var(--white); margin-bottom: 20px; }
.closing-sub { font-size: 16.5px; line-height: 1.8; color: rgba(255,255,255,0.48); margin-bottom: 44px; }
.closing-btn { display: inline-block; background: var(--larch); color: var(--cedars); font-family: var(--display); font-size: 12.5px; font-weight: 800; letter-spacing: 0.8px; padding: 18px 48px; border-radius: 2px; transition: background 0.2s, transform 0.2s var(--ease); }
.closing-btn:hover { background: var(--harvest); transform: translateY(-2px); }

/* ─── FOOTER ──────────────────────────── */
.site-footer {
  background: #0a1a16;
  width: 100%;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  float: none !important;
  text-align: left !important;
}
body.home .site-footer .wrap { max-width: none !important; padding: 0 !important; }
.site-footer * { text-align: left; }

/* ── Footer layout: brand left 35%, links right 65% ── */
.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding: 96px 8vw 80px;
  align-items: start;
}

/* Brand column */
.footer-brand-col { padding-right: 40px; border-right: 1px solid rgba(255,255,255,0.06); }
.footer-logo-wrap { display: inline-block; background: var(--white); padding: 12px 16px; border-radius: 3px; margin-bottom: 24px; transition: opacity 0.2s; }
.footer-logo-wrap:hover { opacity: 0.85; }
.footer-logo { display: block; width: 160px; height: auto; }
.footer-tagline {
  font-family: var(--display); font-size: 10px; font-weight: 800;
  letter-spacing: 3.5px; text-transform: uppercase;
  color: var(--larch); margin-bottom: 14px;
}
.footer-mission {
  font-family: var(--body); font-size: 13px; line-height: 1.85;
  color: rgba(255,255,255,0.4); margin-bottom: 28px;
}
.footer-social { display: flex; align-items: center; gap: 12px; }
.footer-social-link {
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.4); transition: all 0.2s;
}
.footer-social-link:hover { border-color: var(--larch); color: var(--larch); }

/* Link columns */
.footer-links-col { padding-top: 0; }
.footer-col-head {
  font-family: var(--display); font-size: 17px; font-weight: 700;
  color: var(--white); margin-bottom: 22px; letter-spacing: -0.3px;
}
.footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 12px; }
.footer-links li { font-family: var(--body); font-size: 13.5px; color: rgba(255,255,255,0.5); line-height: 1.5; }
.footer-links a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-links a:hover { color: var(--white); }

/* Contact column */
.footer-contact a { overflow-wrap: break-word; }
.footer-contact li { display: flex; flex-direction: column; gap: 3px; }
.footer-contact-label {
  font-family: var(--body); font-size: 9px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.25);
  margin-top: 4px;
}

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 8vw 24px;
  text-align: center;
}
.footer-bottom-line {
  font-family: var(--body);
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.3px;
  margin: 0;
  line-height: 1.7;
}
.footer-bottom-line a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-bottom-line a:hover { color: var(--larch); }
.footer-bottom-region { color: rgba(255,255,255,0.3); margin-top: 2px; }

/* ─── KEYFRAMES ───────────────────────── */
@keyframes rise   { to { opacity: 1; transform: translateY(0); } }
@keyframes appear { to { opacity: 1; } }
@keyframes pulse  { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: 0.5; transform: scale(0.7); } }

/* ─── RESPONSIVE ──────────────────────── */
@media (max-width: 900px) {
  .hero, .who, .region, .proof, .about, .team,
  .events, .resources, .process, .closing { padding-left: 6vw; padding-right: 6vw; }
  /* Center the hero content on phones — bottom-anchoring leaves a huge dead
     gap under the header on tall viewports. svh so iOS toolbars don't inflate
     the box. */
  .hero { min-height: 100svh; justify-content: center; padding-bottom: 10vh; }
  .hero-content { padding-top: 88px; }
  /* Desktop-size ghost (528px min) is wider than the phone itself and drowns
     the CTA — shrink to a corner accent and dim it. */
  .hero-ghost { width: min(85vw, 400px); right: -10vw; bottom: -3vh; opacity: 0.3; }
  .hero-scroll { display: none; }
  .who-inner { grid-template-columns: 1fr; gap: 44px; }
  .who-centers { grid-template-columns: 1fr; }
  .who-ghost { display: none; }
  .region-header { flex-direction: column; align-items: flex-start; gap: 18px; }
  .region-intro { text-align: left; }
  .region-county {
    grid-template-columns: 36px 1fr;
    grid-template-areas: "num main" ".   detail";
    column-gap: 20px;
    row-gap: 10px;
    align-items: baseline;
    padding: 24px 0;
  }
  .region-county-num    { grid-area: num; }
  .region-county-main   { grid-area: main; }
  .region-county-detail { grid-area: detail; text-align: left; }
  .region-county-rule   { display: none; }
  .region-county-name { white-space: normal; line-height: 1.05; }
  .region-county-towns,
  .region-county-services { white-space: normal; }
  .dept-grid { grid-template-columns: 1fr; padding: 80px 6vw; }
  .dept-bdc .dept-inner, .dept-fec .dept-inner, .dept-cdc .dept-inner, .dept-ced .dept-inner { grid-column: 1; }
  .dept-bdc .dept-photo, .dept-fec .dept-photo, .dept-cdc .dept-photo, .dept-ced .dept-photo { grid-column: 1; }
  .dept-photo img { max-height: 50vh; }
  .dept-ghost { font-size: 50vw; }
  .proof-section-header { flex-direction: column; align-items: flex-start; gap: 16px; }
  .proof-grid { grid-template-columns: 1fr; gap: 44px; }
  .featured { grid-template-columns: 1fr; min-height: auto; }
  .featured-ghost { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .team-spread { padding: 72px 6vw; }
  .team-spread-inner { grid-template-columns: 1fr; gap: 44px; }
  .team-spread-text { padding-right: 0; }
  .team-spread-photo { aspect-ratio: 3/2; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .events-header, .resources-header { flex-direction: column; align-items: flex-start; gap: 18px; }
  .event-item { grid-template-columns: 56px 1fr; }
  .event-badge { display: none; }
  .resources-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .closing-ghost { display: none; }
  .rail-nav { display: none; }
  /* minmax(0,1fr) so long content (the contact email) can't widen a track
     past the viewport — grid items default to min-width:auto. */
  .footer-inner { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; padding: 64px 6vw 48px; }
  .footer-newsletter-col { grid-column: 1 / -1; }
  .footer-brand-col { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.06); padding-right: 0; padding-bottom: 40px; }
  .footer-nonprofit { padding: 18px 6vw; text-align: center; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; padding: 24px 6vw; }
  .footer-region { text-align: center; }
}
@media (max-width: 560px) {
  .footer-inner { grid-template-columns: minmax(0, 1fr); gap: 36px; }
}

/* Annual Report homepage band: matches the homepage editorial sections */
.ar-band { position: relative; background: var(--cedars); overflow: hidden; padding: 88px 10vw; }
.ar-band::after { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 78% 50%, rgba(205,148,55,0.12) 0%, transparent 62%); pointer-events: none; }
.ar-band-ghost { position: absolute; font-family: var(--display); font-size: 40vw; font-weight: 900; font-style: italic; line-height: 0.85; letter-spacing: -14px; color: rgba(205,148,55,0.04); pointer-events: none; user-select: none; right: -3vw; top: 50%; transform: translateY(-50%); white-space: nowrap; }
.ar-band-inner { position: relative; z-index: 2; max-width: 1080px; margin: 0 auto; display: grid; grid-template-columns: 1.1fr 0.9fr; align-items: center; gap: 60px; }
.ar-band-text { position: relative; z-index: 2; }
.ar-band-label { display: inline-block; font-family: var(--body); font-size: 9.5px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--larch); margin-bottom: 22px; }
.ar-band-heading { font-family: var(--display); font-size: clamp(38px, 5vw, 68px); font-weight: 900; line-height: 0.98; letter-spacing: -2px; color: var(--white); margin: 0 0 24px; }
.ar-band-heading em { font-style: italic; color: var(--harvest); }
.ar-band-sub { font-family: var(--body); font-size: 16px; line-height: 1.8; color: rgba(255,255,255,0.55); max-width: 440px; margin: 0 0 38px; }
.ar-band-btn { display: inline-block; background: var(--larch); color: var(--cedars); font-family: var(--display); font-size: 12.5px; font-weight: 800; letter-spacing: 0.8px; text-transform: uppercase; padding: 16px 40px; border-radius: 2px; transition: background 0.2s, transform 0.2s var(--ease); }
.ar-band-btn:hover { background: var(--harvest); transform: translateY(-2px); }
.ar-band-cover { position: relative; z-index: 2; display: block; justify-self: center; max-width: 330px; }
.ar-band-cover img { width: 100%; height: auto; display: block; border-radius: 3px; box-shadow: 0 24px 60px rgba(0,0,0,0.45); transition: transform 0.3s var(--ease); }
.ar-band-cover:hover img { transform: translateY(-4px); }
@media (max-width: 768px) {
  .ar-band { padding: 60px 8vw; }
  .ar-band-inner { grid-template-columns: 1fr; gap: 36px; }
  .ar-band-ghost { display: none; }
  .ar-band-cover { max-width: 240px; order: -1; justify-self: start; }
}