/* ============================================================
   Excellence & Impact Foundation — redesign design system
   Direction: warm & human / storytelling
   No build step. Self-contained. Theme-aware.
   ============================================================ */

/* ---------- tokens ---------- */
:root {
  --paper:      #FBF6EE;
  --paper-2:    #F4EADB;
  --surface:    #FFFFFF;
  --ink:        #241E1A;
  --ink-soft:   #5E534A;
  --ink-faint:  #8A7D70;
  --line:       #EADFCE;
  --line-strong:#DDCDB4;

  --gold:       #E0A43B;
  --gold-deep:  #A96E17;
  --green:      #1E7A4C;
  --green-deep: #14603B;
  --clay:       #C7492E;
  --clay-deep:  #9E3722;

  --accent:      var(--gold);
  --accent-ink:  var(--gold-deep);

  --shadow-sm: 0 1px 2px rgba(46,32,17,.06), 0 2px 8px rgba(46,32,17,.05);
  --shadow-md: 0 4px 12px rgba(46,32,17,.08), 0 16px 40px rgba(46,32,17,.10);
  --shadow-lg: 0 10px 30px rgba(46,32,17,.12), 0 30px 80px rgba(46,32,17,.16);

  --radius:   14px;
  --radius-lg:22px;
  --radius-pill: 999px;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-sans: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;

  --wrap: 1180px;
  --gut: clamp(20px, 5vw, 56px);
  --section-y: clamp(64px, 9vw, 128px);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    --paper:      #171310;
    --paper-2:    #1F1914;
    --surface:    #201A15;
    --ink:        #F3EADC;
    --ink-soft:   #C4B6A4;
    --ink-faint:  #948673;
    --line:       #322A22;
    --line-strong:#43392E;

    --gold:       #EDB556;
    --gold-deep:  #F0C67E;
    --green:      #3FA972;
    --green-deep: #63c08f;
    --clay:       #E0674A;
    --clay-deep:  #EE9077;

    --accent:     var(--gold);
    --accent-ink: var(--gold-deep);

    --shadow-sm: 0 1px 2px rgba(0,0,0,.4);
    --shadow-md: 0 6px 20px rgba(0,0,0,.45);
    --shadow-lg: 0 20px 60px rgba(0,0,0,.55);
  }
}
:root[data-theme="dark"] {
  --paper:#171310; --paper-2:#1F1914; --surface:#201A15;
  --ink:#F3EADC; --ink-soft:#C4B6A4; --ink-faint:#948673;
  --line:#322A22; --line-strong:#43392E;
  --gold:#EDB556; --gold-deep:#F0C67E; --green:#3FA972; --green-deep:#63c08f;
  --clay:#E0674A; --clay-deep:#EE9077;
  --accent:var(--gold); --accent-ink:var(--gold-deep);
  --shadow-sm:0 1px 2px rgba(0,0,0,.4);
  --shadow-md:0 6px 20px rgba(0,0,0,.45);
  --shadow-lg:0 20px 60px rgba(0,0,0,.55);
}

/* ---------- base ---------- */
* { box-sizing: border-box; min-width: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.65;
  font-feature-settings: "kern" 1, "liga" 1;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, video { max-width: 100%; height: auto; display: block; }

a { color: var(--accent-ink); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 460;
  line-height: 1.08;
  letter-spacing: -0.015em;
  margin: 0 0 .5em;
  font-optical-sizing: auto;
  overflow-wrap: break-word;
}
h1 { font-size: clamp(2.15rem, 6.2vw, 4.6rem); }
h2 { font-size: clamp(1.7rem, 4.2vw, 3.1rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.7rem); font-weight: 500; }

p { margin: 0 0 1.1em; overflow-wrap: break-word; }
strong { font-weight: 600; }

::selection { background: var(--gold); color: #241E1A; }

:focus-visible {
  outline: 2.5px solid var(--green);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- layout helpers ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gut); }
.section { padding-block: var(--section-y); }
.section--tint { background: var(--paper-2); }
.section--ink { background: #201A15; color: #F3EADC; }
.section--ink h2, .section--ink h3 { color: #FBF6EE; }

.eyebrow {
  font-family: var(--font-sans);
  font-size: .78rem;
  font-weight: 650;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--accent-ink);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .6em;
  margin: 0 0 1.1rem;
  max-width: 100%;
}
.eyebrow::before {
  content: "";
  width: 26px; height: 2px;
  background: var(--accent);
  display: inline-block;
}
.section--ink .eyebrow { color: var(--gold); }

.lede { font-size: clamp(1.12rem, 1.7vw, 1.4rem); color: var(--ink-soft); max-width: 46ch; }
.measure { max-width: 62ch; }

/* ---------- buttons ---------- */
.btn {
  --_bg: var(--ink);
  --_fg: var(--paper);
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .95em 1.6em;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: .98rem;
  line-height: 1;
  border-radius: var(--radius-pill);
  background: var(--_bg);
  color: var(--_fg);
  border: 1.5px solid var(--_bg);
  cursor: pointer;
  transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); color: var(--_fg); }
.btn:active { transform: translateY(0); }
.btn--gold  { --_bg: var(--gold); --_fg: #241E1A; }
.btn--green { --_bg: var(--green); --_fg: #fff; }
.btn--ghost {
  --_bg: transparent; --_fg: var(--ink);
  border-color: var(--line-strong);
}
.btn--ghost:hover { background: var(--surface); border-color: var(--ink); }
.section--ink .btn--ghost { --_fg: #F3EADC; border-color: rgba(255,255,255,.28); }
.section--ink .btn--ghost:hover { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.6); }

.textlink {
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: border-color .2s var(--ease), gap .2s;
  display: inline-flex; align-items: center; gap: .4em;
}
.textlink:hover { border-color: var(--ink); }
.textlink svg { transition: transform .2s var(--ease); }
.textlink:hover svg { transform: translateX(4px); }

/* ---------- header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  -webkit-backdrop-filter: blur(12px) saturate(1.4);
  backdrop-filter: blur(12px) saturate(1.4);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.is-stuck {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(46,32,17,.06);
}
.site-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 76px;
}
.brand {
  display: inline-flex;
  align-items: center;
  flex: none;
  text-decoration: none;
}
.brand__logo {
  height: 38px;
  width: auto;
  display: block;
}
@media (max-width: 560px) { .brand__logo { height: 33px; } }

/* light/dark logo swap — mirrors the token theme states */
.brand__logo--dark { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .brand__logo--light { display: none; }
  :root:not([data-theme="light"]) .brand__logo--dark { display: block; }
}
:root[data-theme="dark"] .brand__logo--light { display: none; }
:root[data-theme="dark"] .brand__logo--dark { display: block; }
:root[data-theme="light"] .brand__logo--light { display: block; }
:root[data-theme="light"] .brand__logo--dark { display: none; }

.nav { display: flex; align-items: center; gap: clamp(.5rem, 1.6vw, 1.6rem); }
.nav__item { position: relative; }
.nav__item > a {
  font-size: .95rem;
  font-weight: 550;
  color: var(--ink-soft);
  text-decoration: none;
  padding: .4em 0;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .28em;
}
.nav__item > a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--gold); transition: right .25s var(--ease);
}
.nav__item > a:hover { color: var(--ink); }
.nav__item:hover > a::after,
.nav__item:focus-within > a::after { right: 0; }
.nav__caret { opacity: .6; transition: transform .2s var(--ease); }
.nav__item:hover .nav__caret,
.nav__item:focus-within .nav__caret { transform: rotate(180deg); }

.nav__panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, 8px);
  min-width: 220px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  padding: .45rem;
  display: grid;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 20;
}
.nav__panel::before {           /* hover bridge so the gap doesn't drop the menu */
  content: ""; position: absolute; left: 0; right: 0; top: -10px; height: 10px;
}
.nav__item--has-panel:hover .nav__panel,
.nav__item--has-panel:focus-within .nav__panel {
  opacity: 1; visibility: visible; pointer-events: auto;
  transform: translate(-50%, 8px);
}
.nav__panel a {
  display: block;
  padding: .58rem .8rem;
  border-radius: 9px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
}
.nav__panel a:hover { background: var(--paper-2); color: var(--ink); }

.header-cta { display: flex; align-items: center; gap: .75rem; }

.site-nav-wrap { display: none; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1.5px solid var(--line-strong);
  border-radius: 12px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  align-items: center; justify-content: center;
}
.nav-toggle svg { width: 20px; height: 20px; }

@media (max-width: 900px) {
  .nav, .header-cta .btn { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav-wrap {
    position: fixed; inset: 76px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--gut) 1.8rem;
    display: none;
    box-shadow: var(--shadow-lg);
  }
  .site-nav-wrap.is-open { display: block; max-height: calc(100vh - 76px); overflow-y: auto; }
  .site-nav-wrap .nav { flex-direction: column; align-items: stretch; gap: 0; }
  .site-nav-wrap .nav a { padding: .9rem 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; color: var(--ink); font-weight: 550; }
  .site-nav-wrap .nav a::after { display: none; }
  .site-nav-wrap .btn { display: inline-flex; margin-top: 1.1rem; width: 100%; justify-content: center; }
}

/* ---------- hero ---------- */
.hero { position: relative; overflow: clip; }
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: 72% 28%; }
.hero__media::after {
  content: "";
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20,14,9,.34) 0%, rgba(20,14,9,.06) 26%, rgba(20,14,9,.20) 52%, rgba(20,14,9,.80) 100%),
    linear-gradient(84deg, rgba(20,14,9,.82) 0%, rgba(20,14,9,.55) 30%, rgba(20,14,9,.14) 58%, rgba(20,14,9,0) 78%);
}
@media (max-width: 860px) {
  .hero__media img { object-position: 66% 24%; }
  .hero__media::after {
    background: linear-gradient(180deg, rgba(20,14,9,.42) 0%, rgba(20,14,9,.22) 34%, rgba(20,14,9,.86) 100%);
  }
}
.hero__inner {
  position: relative; z-index: 1;
  padding-block: clamp(120px, 22vh, 240px) clamp(56px, 10vh, 110px);
  color: #FCF6EC;
}
.hero__kicker {
  display: inline-flex; align-items: center; gap: .55em; flex-wrap: wrap;
  max-width: 100%;
  font-size: clamp(.68rem, 2.6vw, .8rem); font-weight: 650; letter-spacing: .14em; text-transform: uppercase;
  color: #F6E4C0;
  background: rgba(20,14,9,.38);
  border: 1px solid rgba(246,228,192,.28);
  padding: .5em 1em;
  border-radius: var(--radius-pill);
  -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  margin-bottom: 1.4rem;
}
.hero__kicker b { color: #fff; font-weight: 700; }
.hero h1 { color: #fff; max-width: 16ch; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero h1 em { font-style: italic; color: var(--gold); }
.hero__sub {
  font-size: clamp(1.08rem, 1.7vw, 1.35rem);
  max-width: 44ch;
  color: #F1E7D6;
  margin-bottom: 2rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }
.hero__actions .btn--ghost { --_fg: #FCF6EC; border-color: rgba(252,246,236,.55); background: rgba(20,14,9,.18); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.hero__actions .btn--ghost:hover { background: rgba(252,246,236,.14); border-color: #FCF6EC; --_fg: #fff; }
.hero__scroll {
  margin-top: clamp(2.5rem, 6vh, 4.5rem);
  display: inline-flex; align-items: center; gap: .6em;
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; color: #E7D9C3;
}
.hero__scroll span {
  width: 34px; height: 34px; border: 1px solid rgba(231,217,195,.4); border-radius: 50%;
  display: inline-grid; place-items: center;
  animation: bob 2.4s var(--ease) infinite;
}
@keyframes bob { 0%,100% { transform: translateY(0);} 50% { transform: translateY(5px);} }
@media (prefers-reduced-motion: reduce) { .hero__scroll span { animation: none; } }

/* ---------- stats ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2.4vw, 2rem);
}
.stat {
  border-top: 3px solid var(--gold);
  padding-top: 1.1rem;
}
.stat:nth-child(2) { border-color: var(--green); }
.stat:nth-child(3) { border-color: var(--clay); }
.stat:nth-child(4) { border-color: var(--ink); }
.stat__num {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.6vw, 3.4rem);
  font-weight: 460;
  line-height: 1;
  letter-spacing: -.02em;
  display: block;
}
.stat__label { font-size: .95rem; color: var(--ink-soft); margin-top: .5rem; }
@media (max-width: 720px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------- split / story ---------- */
.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.split--flip { grid-template-columns: .95fr 1.05fr; }
.split--flip .split__media { order: -1; }
.split__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  rotate: -1.4deg;
}
.split--flip .split__media { rotate: 1.4deg; }
.split__media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.split__media figcaption {
  position: absolute; left: 0; right: 0; bottom: 0;
  padding: 2.2rem 1.2rem .95rem;
  font-size: .85rem; color: #F5ECDD;
  background: linear-gradient(180deg, transparent, rgba(20,14,9,.75));
}
@media (max-width: 860px) {
  .split, .split--flip { grid-template-columns: 1fr; }
  .split--flip .split__media, .split__media { order: 0; rotate: 0deg; }
  .split__media img { aspect-ratio: 16/11; }
}

.pullquote {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 2.8vw, 2.2rem);
  line-height: 1.28;
  font-weight: 420;
  letter-spacing: -.015em;
  margin: 1.6rem 0;
  padding-left: 1.3rem;
  border-left: 3px solid var(--gold);
}
.pullquote cite { display: block; font-family: var(--font-sans); font-size: .9rem; font-style: normal; color: var(--ink-faint); margin-top: .8rem; letter-spacing: .02em; }

/* ---------- HEEL focus cards ---------- */
.focus-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.4rem);
}
.focus {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.4rem 1.7rem;
  box-shadow: var(--shadow-sm);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s;
}
.focus:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.focus__ic {
  width: 46px; height: 46px; border-radius: 12px;
  display: grid; place-items: center;
  background: color-mix(in srgb, var(--gold) 18%, var(--surface));
  color: var(--gold-deep);
  margin-bottom: 1rem;
}
.focus:nth-child(2) .focus__ic { background: color-mix(in srgb, var(--green) 16%, var(--surface)); color: var(--green-deep); }
.focus:nth-child(3) .focus__ic { background: color-mix(in srgb, var(--clay) 16%, var(--surface)); color: var(--clay-deep); }
.focus:nth-child(4) .focus__ic { background: color-mix(in srgb, var(--ink) 10%, var(--surface)); color: var(--ink); }
.focus h3 { margin-bottom: .35rem; }
.focus p { font-size: .95rem; color: var(--ink-soft); margin: 0; }
@media (max-width: 900px) { .focus-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .focus-grid { grid-template-columns: 1fr; } }

/* ---------- award night feature ---------- */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(1.4rem, 4vw, 3.2rem);
  align-items: center;
}
.feature__stack { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
.feature__stack img { border-radius: var(--radius); box-shadow: var(--shadow-md); aspect-ratio: 3/4; object-fit: cover; width: 100%; }
.feature__stack img:first-child { margin-top: 2.2rem; }
@media (max-width: 820px) {
  .feature { grid-template-columns: 1fr; }
  .feature__stack img:first-child { margin-top: 0; }
}

/* ---------- partners ---------- */
.partners { display: flex; flex-wrap: wrap; gap: 1rem; }
.partner {
  flex: 1 1 240px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.4rem;
}
.partner h3 { font-size: 1.05rem; margin-bottom: .2rem; }
.partner p { font-size: .88rem; color: var(--ink-soft); margin: 0; }

/* ---------- gallery strip ---------- */
.gallery-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(260px, 1fr);
  gap: 1rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 1rem;
  scrollbar-width: thin;
}
.gallery-strip figure { margin: 0; scroll-snap-align: start; }
.gallery-strip img {
  width: 100%; aspect-ratio: 4/5; object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, var(--gold) 0%, #E8B75C 55%, var(--green) 220%);
  color: #241E1A;
  border-radius: var(--radius-lg);
  padding: clamp(2rem, 5vw, 3.4rem);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 1.6rem;
  align-items: center;
}
.cta-band h2 { color: #201A15; margin-bottom: .3rem; }
.cta-band p { color: #3A2E1C; margin: 0; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: flex-end; }
.cta-band .btn--ink { --_bg: #241E1A; --_fg: #FBF6EE; }
.cta-band .btn--ghost { border-color: rgba(36,30,26,.35); --_fg:#241E1A; }
.cta-band .btn--ghost:hover { background: rgba(255,255,255,.35); border-color:#241E1A; }
@media (max-width: 760px) {
  .cta-band { grid-template-columns: 1fr; }
  .cta-band__actions { justify-content: flex-start; }
}

/* ---------- footer ---------- */
.site-footer { background: #191411; color: #D9CDBB; padding-block: clamp(3rem, 6vw, 5rem) 2rem; }
.site-footer a { color: #E7DBC7; text-decoration: none; }
.site-footer a:hover { color: #fff; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand__logo { height: 42px; }
.footer-brand p { margin-top: 1rem; font-size: .9rem; color: #B3A691; max-width: 34ch; }
.footer-col h4 { font-family: var(--font-sans); font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: #9A8C77; margin-bottom: .9rem; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem; }
.footer-col a { font-size: .95rem; }
.footer-legal {
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 1rem;
  padding-top: 1.6rem;
  font-size: .82rem; color: #8E8069;
}
.footer-legal a { color: #A99C86; }
@media (max-width: 820px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .footer-grid { grid-template-columns: 1fr; } }

/* ---------- reveal on scroll (only when JS is running) ---------- */
.js .reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.js .reveal.is-in { opacity: 1; transform: none; }
.js .reveal[data-delay="1"] { transition-delay: .08s; }
.js .reveal[data-delay="2"] { transition-delay: .16s; }
.js .reveal[data-delay="3"] { transition-delay: .24s; }
@media (prefers-reduced-motion: reduce) {
  .js .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- misc ---------- */
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: var(--paper);
  padding: .7em 1.1em; border-radius: 10px; z-index: 200;
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 12px; }

.section-head { max-width: 60ch; margin-bottom: clamp(2rem, 4vw, 3.2rem); }

/* ---------- small screens ---------- */
@media (max-width: 560px) {
  body { font-size: 16px; }
  .hero h1 { font-size: 2.15rem; max-width: none; }
  .hero__sub { font-size: 1.02rem; }
  h2 { font-size: 1.62rem; }
  .lede { font-size: 1.05rem; }
  .stat__num { font-size: 2.3rem; }
  .pullquote { font-size: 1.3rem; padding-left: 1rem; }
  .hero__inner { padding-block: clamp(96px, 20vh, 150px) 48px; }
  .cta-band__actions .btn { flex: 1 1 auto; justify-content: center; }
}
.hero__sub, .lede, .measure, .stat__label, figcaption, .partner p, .focus p { overflow-wrap: break-word; }

/* ============================================================
   INTERIOR PAGES
   ============================================================ */

/* ---------- page hero (compact) ---------- */
.page-hero { position: relative; padding-block: clamp(112px, 16vh, 168px) clamp(40px, 7vw, 72px); background: var(--paper-2); overflow: clip; }
.page-hero::after {
  content: ""; position: absolute; right: -8%; top: -40%; width: 46vw; height: 130%;
  background: radial-gradient(closest-side, color-mix(in srgb, var(--gold) 22%, transparent), transparent 70%);
  pointer-events: none;
}
.page-hero__inner { position: relative; z-index: 1; }
.crumbs { font-size: .82rem; color: var(--ink-faint); margin-bottom: 1rem; display: flex; gap: .5em; flex-wrap: wrap; }
.crumbs a { color: var(--ink-soft); text-decoration: none; }
.crumbs a:hover { color: var(--ink); }
.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.7rem); max-width: 18ch; }
.page-hero p { font-size: clamp(1.05rem, 1.7vw, 1.3rem); color: var(--ink-soft); max-width: 56ch; margin-top: .4rem; }
.page-hero--photo { background: #201A15; }
.page-hero--photo .page-hero__bg { position: absolute; inset: 0; z-index: 0; }
.page-hero--photo .page-hero__bg img { width: 100%; height: 100%; object-fit: cover; opacity: .38; }
.page-hero--photo::after { display: none; }
.page-hero--photo h1 { color: #fff; }
.page-hero--photo p { color: #E7D9C3; }
.page-hero--photo .crumbs, .page-hero--photo .crumbs a { color: #C9BAA3; }

/* ---------- prose / article ---------- */
.prose { max-width: 68ch; font-size: 1.08rem; }
.prose > * + * { margin-top: 1.1em; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.1rem); margin-top: 2.2em; }
.prose h3 { font-size: 1.25rem; margin-top: 1.8em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-top: .5em; }
.prose li::marker { color: var(--gold-deep); }
.prose strong { color: var(--ink); }
.prose blockquote {
  margin: 1.6em 0; padding: .2em 0 .2em 1.3rem;
  border-left: 3px solid var(--gold);
  font-family: var(--font-display); font-size: 1.35rem; line-height: 1.4; color: var(--ink);
}
.prose a { color: var(--ink); text-decoration: underline; text-decoration-color: var(--gold); text-underline-offset: 3px; }
.prose a:hover { text-decoration-color: var(--ink); }
.article-meta { display: flex; flex-wrap: wrap; gap: .5em 1em; font-size: .9rem; color: var(--ink-faint); margin-bottom: 2rem; }
.article-meta strong { color: var(--ink-soft); font-weight: 600; }

/* ---------- generic grids ---------- */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.4rem, 4vw, 3rem); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); }
@media (max-width: 900px) { .grid-3 { grid-template-columns: 1fr 1fr; } }
@media (max-width: 680px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } }

/* ---------- info card ---------- */
.card {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.6rem 1.5rem; box-shadow: var(--shadow-sm);
}
.card h3 { font-size: 1.2rem; margin-bottom: .4rem; }
.card p { font-size: .96rem; color: var(--ink-soft); margin: 0; }
.card__tag { font-size: .74rem; font-weight: 650; letter-spacing: .12em; text-transform: uppercase; color: var(--accent-ink); display: block; margin-bottom: .7rem; }

/* ---------- people grid ---------- */
.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(1rem, 2.4vw, 1.8rem); }
@media (max-width: 860px) { .people { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .people { grid-template-columns: 1fr; } }
.person {
  display: block; text-decoration: none; color: inherit;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.person:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.person__photo { aspect-ratio: 1 / 1; background: var(--paper-2); position: relative; overflow: hidden; }
.person__photo img { width: 100%; height: 100%; object-fit: cover; }
.person__mono {
  position: absolute; inset: 0; display: grid; place-items: center;
  font-family: var(--font-display); font-size: 3rem; color: var(--gold-deep);
  background: linear-gradient(150deg, color-mix(in srgb, var(--gold) 26%, var(--surface)), var(--surface));
}
.person__body { padding: 1.1rem 1.2rem 1.3rem; }
.person__name { font-family: var(--font-display); font-size: 1.2rem; }
.person__role { font-size: .88rem; color: var(--ink-soft); margin-top: .25rem; }

/* ---------- bio detail ---------- */
.bio { display: grid; grid-template-columns: 300px 1fr; gap: clamp(1.6rem, 5vw, 4rem); align-items: start; }
.bio__aside { position: sticky; top: 100px; }
.bio__photo { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4/5; background: var(--paper-2); }
.bio__photo img { width: 100%; height: 100%; object-fit: cover; }
.bio__photo .person__mono { font-size: 4rem; }
.bio__meta { margin-top: 1.2rem; display: grid; gap: .6rem; font-size: .92rem; }
.bio__meta div { display: flex; flex-direction: column; }
.bio__meta dt { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: var(--ink-faint); }
.bio__meta dd { margin: 0; color: var(--ink); font-weight: 550; }
@media (max-width: 760px) {
  .bio { grid-template-columns: 1fr; }
  .bio__aside { position: static; max-width: 320px; }
}

/* ---------- honoree rows ---------- */
.honoree-row {
  display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 1rem;
  padding: 1.5rem 0; border-top: 1px solid var(--line); align-items: baseline;
}
.honoree-row:last-child { border-bottom: 1px solid var(--line); }
.honoree-row__award { font-size: .78rem; font-weight: 650; letter-spacing: .1em; text-transform: uppercase; color: var(--accent-ink); }
.honoree-row__name { font-family: var(--font-display); font-size: clamp(1.3rem, 2.4vw, 1.7rem); margin: .2rem 0 .35rem; }
.honoree-row__desc { color: var(--ink-soft); font-size: .96rem; max-width: 68ch; }
.honoree-row a.textlink { white-space: nowrap; }
@media (max-width: 620px) { .honoree-row { grid-template-columns: 1fr; } }

/* ---------- contact ---------- */
.contact-cards { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.2rem; }
@media (max-width: 760px) { .contact-cards { grid-template-columns: 1fr; } }
.contact-card { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem; box-shadow: var(--shadow-sm); }
.contact-card h3 { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-faint); font-family: var(--font-sans); font-weight: 650; margin-bottom: .5rem; }
.contact-card a, .contact-card p { font-size: 1.05rem; color: var(--ink); margin: 0; text-decoration: none; display: block; }
.contact-card a:hover { color: var(--gold-deep); }
.map-embed { border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); margin-top: 2rem; aspect-ratio: 16/7; }
.map-embed iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ---------- give tiers ---------- */
.tiers { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
@media (max-width: 900px) { .tiers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .tiers { grid-template-columns: 1fr; } }
.tier { background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius); padding: 1.5rem 1.4rem; box-shadow: var(--shadow-sm); border-top: 3px solid var(--gold); }
.tier:nth-child(2) { border-top-color: var(--green); }
.tier:nth-child(3) { border-top-color: var(--clay); }
.tier:nth-child(4) { border-top-color: var(--ink); }
.tier__amt { font-family: var(--font-display); font-size: 2rem; line-height: 1; }
.tier p { font-size: .92rem; color: var(--ink-soft); margin: .6rem 0 0; }

/* ---------- simple list ---------- */
.list { display: grid; gap: 0; }
.list__item {
  display: grid; grid-template-columns: 160px minmax(0,1fr) auto; gap: 1.2rem;
  padding: 1.5rem 0; border-top: 1px solid var(--line); align-items: baseline;
}
.list__item:last-child { border-bottom: 1px solid var(--line); }
.list__when { font-size: .85rem; color: var(--ink-faint); font-weight: 600; }
.list__title { font-family: var(--font-display); font-size: 1.2rem; }
.list__title a { text-decoration: none; color: inherit; }
.list__title a:hover { color: var(--gold-deep); }
.list__meta { font-size: .9rem; color: var(--ink-soft); margin-top: .25rem; }
@media (max-width: 680px) {
  .list__item { grid-template-columns: 1fr; gap: .3rem; }
  .list__item .textlink { justify-self: start; margin-top: .4rem; }
}

/* ---------- post cards ---------- */
.posts { display: grid; grid-template-columns: repeat(3,1fr); gap: clamp(1rem,2.4vw,1.8rem); }
@media (max-width: 940px) { .posts { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .posts { grid-template-columns: 1fr; } }
.post-card {
  display: flex; flex-direction: column;
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.5rem 1.5rem 1.6rem; box-shadow: var(--shadow-sm); text-decoration: none; color: inherit;
  transition: transform .22s var(--ease), box-shadow .22s var(--ease);
}
.post-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.post-card__date { font-size: .78rem; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-faint); }
.post-card__title { font-family: var(--font-display); font-size: 1.25rem; line-height: 1.2; margin: .6rem 0 .5rem; }
.post-card__excerpt { font-size: .93rem; color: var(--ink-soft); margin: 0 0 1rem; }
.post-card__more { margin-top: auto; font-weight: 600; font-size: .9rem; color: var(--gold-deep); }

/* ---------- gallery masonry ---------- */
.masonry { columns: 3 240px; column-gap: 1rem; }
.masonry img { width: 100%; margin-bottom: 1rem; border-radius: var(--radius); box-shadow: var(--shadow-sm); display: block; break-inside: avoid; }

/* ---------- callout ---------- */
.callout {
  background: var(--surface); border: 1px solid var(--line); border-left: 4px solid var(--gold);
  border-radius: var(--radius); padding: 1.4rem 1.6rem; margin: 1.6rem 0;
}
.callout p { margin: 0; color: var(--ink-soft); }
.callout strong { color: var(--ink); }

/* ---------- pillars ---------- */
.pillars { display: grid; grid-template-columns: repeat(4,1fr); gap: 1rem; }
@media (max-width: 900px) { .pillars { grid-template-columns: 1fr 1fr; } }
@media (max-width: 520px) { .pillars { grid-template-columns: 1fr; } }
.pillar { padding: 1.3rem 0 0; border-top: 3px solid var(--gold); }
.pillar:nth-child(2) { border-color: var(--green); }
.pillar:nth-child(3) { border-color: var(--clay); }
.pillar:nth-child(4) { border-color: var(--ink); }
.pillar h3 { font-size: 1.05rem; margin-bottom: .3rem; }
.pillar p { font-size: .9rem; color: var(--ink-soft); margin: 0; }
