/*
  DESIGN QUICK EDITS
  ------------------
  These variables control most colors, typography, radii, shadows, and width.
  Matching colors can also be overridden in assets/config.js.
*/
:root {
  --green-950: #0a2216;
  --green-900: #102f20;
  --green-800: #163d2a;
  --green-700: #20563b;
  --green-100: #dce8df;
  --cream: #f1f1e7;
  --paper: #fbfaf4;
  --white: #ffffff;
  --ink: #111713;
  --muted: #5d675f;
  --gold: #caa646;
  --gold-soft: #eadba9;
  --terracotta: #cc7253;
  --line: rgba(17, 23, 19, 0.14);
  --shadow-sm: 0 8px 24px rgba(10, 34, 22, 0.08);
  --shadow-lg: 0 26px 70px rgba(10, 34, 22, 0.16);
  --radius-sm: 0.8rem;
  --radius-md: 1.3rem;
  --radius-lg: 2rem;
  --max-width: 1180px;
  --font-sans: "Avenir Next", Avenir, "Segoe UI", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: "Avenir Next", Avenir, "Segoe UI", Inter, ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
::selection { color: var(--white); background: var(--green-700); }

.skip-link {
  position: fixed;
  top: 0.75rem;
  left: 0.75rem;
  z-index: 1000;
  padding: 0.65rem 0.9rem;
  color: var(--white);
  background: var(--green-950);
  border-radius: 0.5rem;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container {
  width: min(calc(100% - 2rem), var(--max-width));
  margin-inline: auto;
}
.narrow { width: min(calc(100% - 2rem), 760px); margin-inline: auto; }
.section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; }
.section-sm { padding: clamp(3rem, 5vw, 5rem) 0; }
.section-dark { color: var(--white); background: var(--green-950); }
.section-green { color: var(--white); background: var(--green-800); }
.section-cream { background: var(--cream); }
.section-gold { background: var(--gold-soft); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  color: var(--green-700);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-transform: uppercase;
}
.section-dark .eyebrow,
.section-green .eyebrow { color: var(--gold-soft); }
.eyebrow::before {
  width: 1.6rem;
  height: 2px;
  content: "";
  background: currentColor;
}

h1, h2, h3, h4 {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.05;
}
h1 { font-size: clamp(2.8rem, 7.2vw, 6.7rem); }
h2 { font-size: clamp(2.2rem, 4.8vw, 4.4rem); }
h3 { font-size: clamp(1.35rem, 2.2vw, 1.75rem); letter-spacing: -0.02em; }
p { margin: 0 0 1rem; }
.lede { max-width: 62ch; color: var(--muted); font-size: clamp(1.05rem, 1.7vw, 1.3rem); }
.section-dark .lede,
.section-green .lede { color: rgba(255,255,255,0.78); }
.small { font-size: 0.88rem; }
.muted { color: var(--muted); }
.text-gold { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  background: rgba(10, 34, 22, 0.94);
  backdrop-filter: blur(18px);
}
.nav-wrap {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  min-width: 14rem;
  align-items: center;
  gap: 0.9rem;
  color: var(--white);
  text-decoration: none;
}
.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  background: var(--green-800);
  overflow: hidden;
}
.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.brand-copy {
  position: relative;
  display: grid;
  min-width: 12rem;
  line-height: 1.05;
}
.brand-full, .brand-short {
  grid-area: 1 / 1;
  transition: opacity 240ms ease, transform 240ms ease;
}
.brand-full { font-weight: 760; letter-spacing: -0.025em; }
.brand-short { opacity: 0; transform: translateY(5px); color: var(--gold-soft); font-weight: 850; letter-spacing: 0.08em; }
.brand:hover .brand-full,
.brand:focus-visible .brand-full { opacity: 0; transform: translateY(-5px); }
.brand:hover .brand-short,
.brand:focus-visible .brand-short { opacity: 1; transform: translateY(0); }
.nav-links { display: flex; align-items: center; gap: 1.65rem; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}
.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="page"] { color: var(--white); }
.nav-links .nav-cta {
  padding: 0.7rem 1rem;
  color: var(--green-950);
  background: var(--gold);
  border-radius: 999px;
}
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  background: transparent;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 18px;
  height: 2px;
  content: "";
  background: currentColor;
  transition: transform 180ms ease;
}
.nav-toggle span { position: relative; }
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.8rem; }
.btn {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.8rem 1.15rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { color: var(--green-950); background: var(--gold); }
.btn-primary:hover { background: #d8b759; }
.btn-secondary { color: var(--green-900); border-color: var(--green-800); background: transparent; }
.btn-secondary:hover { color: var(--white); background: var(--green-800); }
.btn-light { color: var(--green-950); background: var(--white); }
.btn-ghost-light { color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.1); }
.btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; transform: none; }

.hero {
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 14%, rgba(202,166,70,0.2), transparent 28rem),
    var(--green-950);
  overflow: hidden;
}
.hero::after {
  position: absolute;
  right: -7rem;
  bottom: -13rem;
  width: 35rem;
  height: 35rem;
  content: "";
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: calc(100svh - 76px);
  padding: clamp(4rem, 8vw, 7rem) 0;
  align-items: center;
  grid-template-columns: minmax(0, 1.03fr) minmax(340px, 0.97fr);
  gap: clamp(2.5rem, 6vw, 6rem);
}
.hero h1 { max-width: 780px; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero-copy .lede { max-width: 60ch; color: rgba(255,255,255,0.78); }
.hero-promise {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  margin-top: 1.35rem;
  color: rgba(255,255,255,0.76);
  font-size: 0.92rem;
  font-weight: 650;
}
.hero-promise span::before { margin-right: 0.5rem; color: var(--gold); content: "●"; font-size: 0.55rem; vertical-align: 0.15em; }
.hero-visual { position: relative; min-height: 600px; }
.photo-card {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.photo-card img { width: 100%; height: 100%; object-fit: cover; }
.photo-main { inset: 0 2.5rem 3rem 0; }
.photo-main img { object-position: 54% 50%; }
.photo-small {
  right: -1.2rem;
  bottom: 0;
  width: 48%;
  height: 43%;
  border: 6px solid var(--green-950);
}
.photo-small img { object-position: center; }
.hero-sticker {
  position: absolute;
  top: 2rem;
  right: -0.5rem;
  width: 9rem;
  height: 9rem;
  display: grid;
  place-items: center;
  padding: 1rem;
  color: var(--green-950);
  background: var(--gold);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  font-size: 0.83rem;
  font-weight: 900;
  line-height: 1.15;
  text-align: center;
  transform: rotate(7deg);
}

.metrics-strip { border-bottom: 1px solid var(--line); background: var(--cream); }
.metrics-grid {
  display: grid;
  padding: 1.6rem 0;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 1rem;
  align-items: center;
}
.metrics-intro { font-weight: 800; }
.metric { padding-left: 1.2rem; border-left: 1px solid var(--line); }
.metric strong { display: block; color: var(--green-800); font-size: clamp(1.5rem, 3vw, 2.25rem); line-height: 1; }
.metric span { display: block; margin-top: 0.35rem; color: var(--muted); font-size: 0.88rem; }

.split {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(2.5rem, 7vw, 7rem);
}
.section-heading { max-width: 760px; margin-bottom: 2.5rem; }
.section-heading.center { margin-inline: auto; text-align: center; }

.process-grid, .card-grid, .topic-grid, .sponsor-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.process-card, .info-card, .topic-card, .sponsor-card {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.74);
  box-shadow: var(--shadow-sm);
}
.process-number {
  display: inline-grid;
  width: 2.3rem;
  height: 2.3rem;
  margin-bottom: 2rem;
  place-items: center;
  color: var(--green-950);
  background: var(--gold);
  border-radius: 50%;
  font-weight: 900;
}
.process-card p, .info-card p, .topic-card p, .sponsor-card p { color: var(--muted); }
.topic-card { overflow: hidden; }
.topic-card::after {
  position: absolute;
  right: -2.2rem;
  bottom: -2.2rem;
  width: 6rem;
  height: 6rem;
  content: "";
  border-radius: 50%;
  background: var(--gold-soft);
}
.topic-label { display: inline-block; margin-bottom: 1.25rem; color: var(--green-700); font-size: 0.78rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }

.image-frame {
  position: relative;
  min-height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; }
.image-frame::after {
  position: absolute;
  inset: 0;
  content: "";
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.25);
  pointer-events: none;
}
.image-caption { margin-top: 0.8rem; color: var(--muted); font-size: 0.84rem; }

.callout {
  padding: clamp(1.5rem, 4vw, 2.8rem);
  border-left: 5px solid var(--gold);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  background: var(--cream);
}
.callout strong { color: var(--green-800); }

.meeting-card {
  display: grid;
  padding: clamp(1.6rem, 4vw, 3rem);
  color: var(--white);
  background: var(--green-800);
  border-radius: var(--radius-lg);
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
  box-shadow: var(--shadow-lg);
}
.meeting-card .status {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.35rem 0.7rem;
  color: var(--green-950);
  background: var(--gold-soft);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.meeting-details { display: grid; gap: 0.7rem; }
.meeting-detail { display: flex; gap: 0.7rem; color: rgba(255,255,255,0.78); }
.meeting-detail strong { color: var(--white); }
.calendar-frame { display: none; min-height: 520px; margin-top: 2rem; border: 0; border-radius: var(--radius-md); background: var(--white); }

.band {
  position: relative;
  padding: clamp(3rem, 7vw, 5.5rem);
  color: var(--white);
  border-radius: var(--radius-lg);
  background: var(--green-950);
  overflow: hidden;
}
.band::after {
  position: absolute;
  right: -8rem;
  top: -10rem;
  width: 24rem;
  height: 24rem;
  content: "";
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
}
.band > * { position: relative; z-index: 1; }

.page-hero {
  padding: clamp(5rem, 10vw, 8rem) 0;
  color: var(--white);
  background:
    radial-gradient(circle at 82% 20%, rgba(202,166,70,0.19), transparent 28rem),
    var(--green-950);
}
.page-hero h1 { max-width: 980px; font-size: clamp(3.2rem, 8vw, 7rem); }
.page-hero .lede { max-width: 700px; }

.origin-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 1.2rem;
}
.origin-card {
  min-height: 360px;
  padding: clamp(1.7rem, 4vw, 3rem);
  border-radius: var(--radius-lg);
  background: var(--cream);
}
.origin-photo { min-height: 360px; border-radius: var(--radius-lg); overflow: hidden; }
.origin-photo img { width: 100%; height: 100%; object-fit: cover; }
.values-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.value-card { padding: 1.6rem; border-top: 3px solid var(--gold); background: var(--white); box-shadow: var(--shadow-sm); }

.gallery {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 250px 250px;
  gap: 0.8rem;
}
.gallery figure { margin: 0; border-radius: var(--radius-md); overflow: hidden; }
.gallery figure:first-child { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; }


.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.testimonial-card {
  position: relative;
  min-height: 230px;
  margin: 0;
  padding: clamp(1.6rem, 3vw, 2.4rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.testimonial-card::before {
  display: block;
  margin-bottom: 0.7rem;
  color: var(--gold);
  content: "“";
  font-family: Georgia, serif;
  font-size: 4.8rem;
  line-height: 0.75;
}
.testimonial-card blockquote {
  margin: 0 0 1.4rem;
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
  font-weight: 650;
  line-height: 1.45;
}
.testimonial-card figcaption {
  color: var(--green-700);
  font-size: 0.86rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.officer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}
.officer-card,
.advisor-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 1.2rem;
  align-items: start;
  padding: 1.5rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.advisor-card {
  max-width: 760px;
  margin-top: 1rem;
  border-color: rgba(202,166,70,0.6);
}
.officer-initials {
  display: grid;
  width: 3.5rem;
  height: 3.5rem;
  place-items: center;
  color: var(--white);
  background: var(--green-800);
  border-radius: 50%;
  font-weight: 900;
  letter-spacing: 0.04em;
}
.advisor-initials { color: var(--green-950); background: var(--gold); }
.officer-role {
  margin-bottom: 0.3rem;
  color: var(--green-700);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.officer-card h3,
.advisor-card h3 { margin-bottom: 0.45rem; }
.officer-details { margin-bottom: 0.6rem; font-weight: 720; line-height: 1.4; }
.text-link { color: var(--green-700); font-weight: 800; text-decoration-thickness: 1px; text-underline-offset: 0.2em; }

.resource-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.resource-card {
  display: flex;
  min-height: 260px;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(1.4rem, 3vw, 2rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.resource-card .tag { align-self: flex-start; padding: 0.3rem 0.6rem; color: var(--green-800); background: var(--green-100); border-radius: 999px; font-size: 0.74rem; font-weight: 850; text-transform: uppercase; }
.resource-card .tag.soon { color: #67430b; background: #f5e7be; }
.resource-card a { color: var(--green-700); font-weight: 850; text-decoration-thickness: 2px; text-underline-offset: 4px; }

.checklist {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.progress-track { height: 10px; margin: 1.5rem 0 2rem; border-radius: 999px; background: var(--green-100); overflow: hidden; }
.progress-bar { width: 0; height: 100%; background: var(--gold); transition: width 220ms ease; }
.checklist-group { padding: 1.25rem 0; border-top: 1px solid var(--line); }
.checklist-group:first-of-type { border-top: 0; }
.check-row { display: flex; align-items: flex-start; gap: 0.8rem; padding: 0.45rem 0; }
.check-row input { width: 1.2rem; height: 1.2rem; margin-top: 0.2rem; accent-color: var(--green-700); }
.check-row label { cursor: pointer; }
.checklist-actions { display: flex; flex-wrap: wrap; gap: 0.8rem; margin-top: 1.4rem; }

.sponsor-card.featured { color: var(--white); background: var(--green-800); }
.sponsor-card.featured p { color: rgba(255,255,255,0.76); }
.sponsor-card .tier { color: var(--green-700); font-size: 0.76rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.sponsor-card.featured .tier { color: var(--gold-soft); }
.policy-list { display: grid; gap: 0.8rem; padding: 0; list-style: none; }
.policy-list li { position: relative; padding-left: 1.6rem; }
.policy-list li::before { position: absolute; left: 0; color: var(--gold); content: "✓"; font-weight: 900; }

.form-card {
  padding: clamp(1.6rem, 4vw, 3rem);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.field { display: grid; gap: 0.45rem; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 780; }
.field input, .field select, .field textarea {
  width: 100%;
  padding: 0.82rem 0.9rem;
  color: var(--ink);
  border: 1px solid #b7c0b9;
  border-radius: 0.65rem;
  background: var(--white);
}
.field textarea { min-height: 145px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 3px solid rgba(202,166,70,0.38); border-color: var(--green-700); }
.form-status { min-height: 1.5rem; margin-top: 1rem; font-weight: 700; }
.form-status.success { color: #176a3b; }
.form-status.error { color: #9f2f1c; }
.honeypot { position: absolute !important; left: -9999px !important; opacity: 0 !important; }

.faq-list { display: grid; gap: 0.8rem; }
details {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
}
summary { padding: 1.15rem 1.25rem; cursor: pointer; font-weight: 800; }
details p { padding: 0 1.25rem 1.25rem; color: var(--muted); }

.site-footer { color: rgba(255,255,255,0.75); background: var(--green-950); }
.footer-grid {
  display: grid;
  padding: 4rem 0 2.5rem;
  grid-template-columns: 1.4fr 0.8fr 0.8fr;
  gap: 2rem;
}
.footer-brand { display: flex; gap: 1rem; align-items: center; color: var(--white); font-weight: 800; }
.footer-brand img { width: 64px; height: 64px; border-radius: 50%; }
.footer-links { display: grid; align-content: start; gap: 0.55rem; }
.footer-links h3 { color: var(--white); font-size: 1rem; letter-spacing: 0; }
.footer-links a { text-decoration: none; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; padding: 1.4rem 0 2rem; justify-content: space-between; gap: 1rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.82rem; }

.toast {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 200;
  max-width: 360px;
  padding: 0.9rem 1rem;
  color: var(--white);
  background: var(--green-950);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 0.8rem;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  transform: translateY(1rem);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.toast.show { opacity: 1; transform: translateY(0); }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 550ms ease, transform 550ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

@media (max-width: 920px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    padding: 1.2rem 1rem 1.6rem;
    background: var(--green-950);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    transform: translateY(-130%);
    transition: transform 220ms ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { padding: 0.75rem 1rem; }
  .hero-grid { min-height: auto; grid-template-columns: 1fr; }
  .hero-visual { min-height: 560px; }
  .split, .meeting-card, .origin-grid { grid-template-columns: 1fr; }
  .process-grid, .card-grid, .topic-grid, .sponsor-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .metrics-grid { grid-template-columns: repeat(3, 1fr); }
  .metrics-intro { grid-column: 1 / -1; }
  .metric:first-of-type { padding-left: 0; border-left: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 640px) {
  .testimonial-grid, .officer-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-height: 0; }
  .container, .narrow { width: min(calc(100% - 1.25rem), var(--max-width)); }
  .brand { min-width: auto; }
  .brand-copy { min-width: 9.3rem; font-size: 0.88rem; }
  .hero-grid { padding-top: 3.5rem; }
  .hero-visual { min-height: 450px; }
  .photo-main { inset: 0 1rem 2.4rem 0; }
  .photo-small { right: 0; width: 50%; height: 40%; }
  .hero-sticker { top: 1rem; right: 0; width: 7rem; height: 7rem; font-size: 0.7rem; }
  .metrics-grid { grid-template-columns: 1fr; }
  .metric, .metric:first-of-type { padding: 1rem 0 0; border-top: 1px solid var(--line); border-left: 0; }
  .process-grid, .card-grid, .topic-grid, .sponsor-grid, .resource-grid, .values-grid, .form-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: 300px 220px 220px; }
  .gallery figure:first-child { grid-column: 1 / -1; grid-row: auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
}

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

/* Three-meeting promise: high-contrast commitment without feeling corporate. */
.promise-section { background: var(--paper); }
.promise-card {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
  padding: clamp(2rem, 5vw, 4.5rem);
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.promise-card h2 { max-width: 12ch; }
.promise-card .eyebrow { color: var(--gold); }
.promise-copy { max-width: 58ch; font-size: clamp(1rem, 1.5vw, 1.2rem); }
.promise-copy .muted { color: rgba(255,255,255,0.62); }
@media (max-width: 760px) {
  .promise-card { grid-template-columns: 1fr; }
  .promise-card h2 { max-width: none; }
}


/* V10: preserve the original visual system while letting portrait photography keep its real proportions. */
.hero-grid {
  grid-template-columns: minmax(0, 1.02fr) minmax(390px, 0.98fr);
  gap: clamp(3rem, 6vw, 6.5rem);
}
.hero-visual {
  min-height: 0;
  padding: 1rem 0 5.5rem;
}
.photo-card { position: relative; }
.photo-card img { width: 100%; height: auto; object-fit: contain; }
.photo-main {
  inset: auto;
  width: 88%;
  margin-left: auto;
}
.photo-main img { object-position: center; }
.photo-small {
  position: absolute;
  right: -1rem;
  bottom: 0;
  width: 46%;
  height: auto;
  border: 6px solid var(--green-950);
}
.photo-small img { height: auto; object-fit: contain; }
.hero-sticker { top: 2.2rem; right: -0.35rem; }
.image-frame { min-height: 0; }
.image-frame img { width: 100%; height: auto; object-fit: contain; }
.metrics-intro { color: var(--green-950); }
.metric strong { font-size: clamp(1.9rem, 3vw, 2.65rem); }
.metric span { font-size: 0.94rem; }

@media (max-width: 920px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { width: min(100%, 660px); margin-inline: auto; padding-bottom: 5rem; }
}
@media (max-width: 640px) {
  .hero-visual { min-height: 0; padding-bottom: 4rem; }
  .photo-main { inset: auto; width: 92%; margin-right: auto; }
  .photo-small { right: 0; bottom: 0; width: 48%; height: auto; }
}


/* V11 targeted refinements: preserve V10 layout, enlarge hero photo, move supporting photo, and improve linked topic cards. */
.hero-visual { padding: 0; }
.photo-main { width: 100%; margin-left: 0; }
.hero-sticker, .photo-small { display: none !important; }

.student-life-visual {
  position: relative;
  width: min(100%, 620px);
  padding: 0 4.5rem 4rem 0;
}
.student-life-visual .image-frame { width: 100%; }
.student-life-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 42%;
  overflow: hidden;
  border: 5px solid var(--cream);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.student-life-small img { display: block; width: 100%; height: auto; }

.topic-card-link {
  color: inherit;
  text-decoration: none;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.topic-card-link:hover {
  transform: translateY(-3px);
  border-color: rgba(22,61,42,0.28);
  box-shadow: var(--shadow-lg);
}
.topic-card-link:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }
.topic-action {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-top: 1rem;
  color: var(--green-700);
  font-size: 0.82rem;
  font-weight: 850;
}

.values-grid-large { gap: 1.25rem; }
.values-grid-large .value-card {
  min-height: 210px;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.values-grid-large .value-card h3 {
  margin-bottom: 1.5rem;
  color: var(--green-800);
  font-size: clamp(2rem, 4vw, 3.1rem);
}
.values-grid-large .value-card p { max-width: 34ch; font-size: 1.05rem; }

@media (max-width: 920px) {
  .hero-visual { width: min(100%, 680px); }
  .student-life-visual { margin-inline: auto; }
}
@media (max-width: 640px) {
  .photo-main { width: 100%; }
  .student-life-visual { padding: 0 2.25rem 2.75rem 0; }
  .student-life-small { width: 44%; border-width: 4px; }
}


/* V12 targeted polish */
.student-life-visual { width: min(100%, 500px); padding: 0; }
.student-life-visual .image-frame { width: 100%; overflow: hidden; border-radius: var(--radius-md); }
.student-life-visual .image-frame img { display:block; width:100%; height:auto !important; aspect-ratio:auto !important; object-fit:contain !important; }
.student-life-small { display:none !important; }
.topic-card-link, .topic-card-link * { text-decoration:none !important; }
.topic-card-link h3, .topic-card-link .topic-action { transition: color 160ms ease, text-decoration-color 160ms ease; }
.topic-card-link:hover h3, .topic-card-link:focus-visible h3 { color:transparent; background-image:linear-gradient(90deg,var(--green-700),var(--gold)); -webkit-background-clip:text; background-clip:text; text-decoration-line:underline; text-decoration-thickness:2px; text-underline-offset:.18em; text-decoration-color:var(--gold); }
.topic-card-link:hover .topic-action, .topic-card-link:focus-visible .topic-action { text-decoration:underline !important; text-underline-offset:.18em; }
.origin-card-story p { font-size:clamp(1.08rem,1.35vw,1.24rem); line-height:1.72; }
.origin-card-story h2 { max-width:11ch; }
@media (max-width:920px){ .student-life-visual{ width:min(100%,520px); margin-inline:auto; } }


/* V13 targeted polish: clean topic links + stronger About hierarchy */
.topic-card-link,
.topic-card-link:link,
.topic-card-link:visited,
.topic-card-link:hover,
.topic-card-link:active {
  text-decoration: none !important;
}
.topic-card-link h3,
.topic-card-link p,
.topic-card-link span {
  text-decoration: none !important;
}
.topic-card-link h3 {
  display: inline;
  background-image: none;
  color: inherit;
  transition: color 160ms ease, text-decoration-color 160ms ease;
}
.topic-card-link:hover h3,
.topic-card-link:focus-visible h3 {
  color: transparent;
  background-image: linear-gradient(90deg, var(--green-700), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  text-decoration-line: underline !important;
  text-decoration-thickness: 2px !important;
  text-underline-offset: .18em;
  text-decoration-color: var(--gold) !important;
}
.topic-card-link:hover .topic-action,
.topic-card-link:focus-visible .topic-action {
  text-decoration: none !important;
}
.origin-card-story p {
  font-size: clamp(1.18rem, 1.55vw, 1.36rem);
  line-height: 1.78;
}
.origin-card-story p + p { margin-top: 1.3rem; }
@media (min-width: 921px) {
  .origin-card-story { padding: clamp(2.5rem, 4vw, 3.5rem); }
}
