:root {
  --navy: #26282b;
  --paper: #f4f3f1;
  --white: #ffffff;
  --tint: #e8e6e2;
  --accent: #9a9186;
  --accent-ink: #6d675e;
  --line: #d8d5cf;
  --muted: #65625c;
  --serif: "Lora", Georgia, serif;
  --sans: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  margin: 0;
  font-family: var(--sans);
  color: var(--navy);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
img, svg { display: block; max-width: 100%; }

.wrap { max-width: 1140px; margin: 0 auto; padding: 0 32px; }
.wrap--narrow { max-width: 660px; }

/* ---------- Logo mark ---------- */
.arch-mark { display: block; flex-shrink: 0; }
.arch-mark rect { fill: var(--navy); }
.arch-mark.on-dark path { stroke: var(--paper); }

/* ---------- Preview / mock banners ---------- */
.build-banner {
  background: var(--navy); color: #cfd8e2; text-align: center;
  font-size: 12px; padding: 8px 16px; letter-spacing: 0.02em;
}
.build-banner strong { color: #fff; }
.mock-flag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--accent); color: #fff;
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase;
  padding: 5px 11px; border-radius: 999px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(247,245,241,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav__inner {
  position: relative;
  max-width: 1140px; margin: 0 auto; padding: 18px 32px 18px 20px;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; column-gap: 30px;
}
.nav__mark { display: flex; align-items: center; gap: 14px; flex-shrink: 0; }
.nav__bar { width: 1px; height: 30px; background: var(--navy); opacity: 0.2; flex-shrink: 0; }
.nav__wordmark { display: flex; flex-direction: column; }
.nav__eyebrow {
  font-size: 9px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 2px;
}
.nav__name { font-size: 12.5px; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; }
.nav__menu { display: flex; align-items: center; justify-content: center; gap: 26px; flex-wrap: nowrap; }
.nav__link {
  font-size: 11.5px; font-weight: 600; color: var(--navy);
  letter-spacing: 0.08em; text-transform: uppercase; white-space: nowrap;
  padding-bottom: 4px; border-bottom: 1px solid transparent;
}
.nav__link:hover { color: var(--accent); }
.nav__link.is-active { color: var(--accent); border-bottom-color: var(--accent); }
.nav__link--donate {
  background: var(--navy); color: #fff !important;
  padding: 10px 20px; border-radius: 2px; font-weight: 700;
  letter-spacing: 0.08em; border-bottom: none !important;
}
.nav__link--donate:hover { background: var(--accent); }
.nav__right { display: flex; align-items: center; gap: 18px; flex-shrink: 0; }
.nav__toggle {
  display: none; background: none; border: none; padding: 4px; cursor: pointer;
  align-items: center; justify-content: center;
}
.nav__toggle svg { width: 22px; height: 22px; color: var(--navy); }

@media (max-width: 900px) {
  .nav__menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line);
    padding: 6px 32px 18px; box-shadow: 0 14px 24px rgba(16,17,19,0.06);
  }
  .nav__menu.is-open { display: flex; }
  .nav__menu .nav__link {
    width: 100%; padding: 13px 0; border-bottom: 1px solid var(--line) !important;
  }
  .nav__link--donate { margin-top: 10px; text-align: center; }
  .nav__toggle { display: flex; flex-shrink: 0; }
}

@media (max-width: 480px) {
  .nav__inner { padding: 14px 16px; column-gap: 10px; }
  .nav__mark { gap: 8px; min-width: 0; }
  .nav__mark .arch-mark { width: 28px; height: 28px; }
  .nav__bar { display: none; }
  .nav__eyebrow { display: none; }
  .nav__wordmark { min-width: 0; overflow: hidden; }
  .nav__name { font-size: 10.5px; letter-spacing: 0.04em; white-space: nowrap; }
  .nav__right { gap: 10px; }
  .lang-switch { font-size: 10.5px; gap: 4px; }
}

/* ---------- Language switch ---------- */
.lang-switch { display: flex; align-items: center; gap: 6px; font-size: 11.5px; font-weight: 700; letter-spacing: 0.04em; }
.lang-switch__btn {
  background: none; border: none; padding: 4px 2px; color: var(--muted); cursor: pointer;
  font: inherit; font-weight: 700; letter-spacing: 0.04em;
}
.lang-switch__btn.is-active { color: var(--navy); border-bottom: 1px solid var(--navy); }
.lang-switch__btn:hover { color: var(--navy); }
.lang-switch__sep { color: var(--line); font-size: 11px; }
.lang-switch--gate { margin-top: -6px; }

/* ---------- Footer ---------- */
.footer { border-top: 1px solid var(--line); padding: 30px 0 0; margin-top: 80px; }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; color: var(--muted); }
.footer__mark { display: flex; align-items: center; gap: 10px; font-size: 12px; }
.footer p { font-size: 12px; margin: 0; }
.footer__links { display: flex; gap: 18px; font-size: 12px; }
.footer__links a:hover { color: var(--accent); }
.footer__legal {
  display: flex; gap: 18px; font-size: 11.5px; color: var(--muted);
  border-top: 1px solid var(--line); margin-top: 22px; padding: 16px 32px;
}
.footer__legal a:hover { color: var(--accent); }
.footer__social { display: flex; gap: 12px; }
.footer__social a {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--muted);
}
.footer__social a:hover { color: var(--navy); border-color: var(--navy); }
.footer__social svg { width: 15px; height: 15px; }

/* ---------- Legal copy pages ---------- */
.legal-copy { max-width: 720px; }
.legal-copy h3 { font-family: var(--serif); font-size: 18px; margin: 32px 0 10px; }
.legal-copy h3:first-of-type { margin-top: 0; }
.legal-copy p { font-size: 14px; line-height: 1.65; color: var(--muted); margin: 0; }

/* ---------- Cookie banner ---------- */
.cookie-banner {
  position: fixed; left: 20px; right: 20px; bottom: 20px; z-index: 60;
  max-width: 560px; margin: 0 auto;
  background: var(--navy); color: #fff; border-radius: 6px;
  padding: 18px 22px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  box-shadow: 0 18px 40px rgba(0,0,0,0.25);
  transform: translateY(140%); transition: transform 0.4s ease;
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-banner p { font-size: 12.5px; line-height: 1.5; margin: 0; flex: 1; min-width: 200px; color: rgba(255,255,255,0.85); }
.cookie-banner a { text-decoration: underline; color: #fff; }
.cookie-banner button {
  background: #fff; color: var(--navy); border: none; padding: 9px 18px;
  font-size: 12.5px; font-weight: 700; border-radius: 3px; white-space: nowrap;
}

/* ---------- Landing gate ---------- */
.gate {
  min-height: 100vh;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; gap: 30px; padding: 32px;
}
.gate__lockup { display: flex; align-items: center; gap: 30px; }
.gate__bar { width: 1px; height: 74px; background: var(--navy); opacity: 0.2; }
.gate__wordmark { text-align: left; }
.gate__eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.32em; text-transform: uppercase;
  color: var(--muted); margin: 0 0 6px;
}
.gate__name {
  font-family: var(--sans); font-weight: 600; font-size: clamp(15px, 1.7vw, 18px);
  line-height: 1.4; margin: 0; letter-spacing: 0.18em; text-transform: uppercase; color: var(--navy);
}
.gate__rule { width: 30px; height: 1px; background: var(--line); margin-top: 6px; }
.gate__enter {
  display: inline-block; background: var(--navy); color: #fff;
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 13px 34px; border-radius: 2px;
}
.gate__enter:hover { background: var(--accent); color: var(--navy); }

/* ---------- Page hero (interior pages) ---------- */
.page-hero { padding: 76px 0 40px; text-align: center; }
.page-hero .wrap { max-width: 700px; }
.eyebrow {
  font-size: 12px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--accent-ink); margin: 0 0 14px;
}
.page-hero h1 {
  font-family: var(--serif); font-weight: 700; font-size: clamp(30px, 4.6vw, 46px);
  line-height: 1.18; margin: 0 auto 18px; letter-spacing: -0.005em; max-width: 620px;
}
.lede { font-size: 16.5px; line-height: 1.65; color: var(--muted); max-width: 520px; margin: 0 auto; }

/* ---------- Hero de impacto (portada, imagen de fondo) ---------- */
.hero-impact {
  position: relative; min-height: 64vh; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
}
.hero-impact .bg { position: absolute; inset: 0; }
.hero-impact .overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(10,10,10,0.78) 0%, rgba(10,10,10,0.4) 100%);
}
.hero-impact .content { position: relative; padding: 60px 32px; max-width: 760px; }
.hero-impact .mock-flag { margin-bottom: 18px; }
.hero-impact .eyebrow { color: #d8d2c4; }
.hero-impact h1 {
  font-family: var(--serif); font-weight: 700; color: #fff;
  font-size: clamp(32px, 5vw, 50px); line-height: 1.15; margin: 0 auto 18px; max-width: 660px;
}
.hero-impact .lede { color: rgba(255,255,255,0.82); max-width: 540px; margin: 0 auto 28px; }
.btn { display: inline-block; padding: 13px 26px; border-radius: 2px; font-size: 13.5px; font-weight: 700; }
.btn:hover { opacity: 0.9; }

/* ---------- Mock imagery ---------- */
/* Motivo del arco del logo, tiled a baja opacidad, en vez de rayas genéricas */
.mock-image {
  position: relative;
  background-color: #24262a;
  background-image:
    linear-gradient(160deg, #2d2f33 0%, #1b1c1f 100%),
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='72' height='72' viewBox='0 0 72 72'%3E%3Cpath d='M20,66 L20,36 A16,16 0 0 1 52,36 L52,66 Z' fill='%23f4f3f1' fill-opacity='0.06'/%3E%3C/svg%3E");
  background-repeat: no-repeat, repeat;
  background-size: cover, 72px 72px;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Sections ---------- */
.section { padding: 64px 0; }
.section--tint { background: var(--tint); }
.section h2 {
  font-family: var(--serif); font-weight: 700; font-size: clamp(26px, 3.4vw, 36px);
  line-height: 1.15; margin: 0 0 16px;
}

/* ---------- Stat strip ---------- */
.stat-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.stat-item { border-top: 1px solid var(--line); padding-top: 18px; }
.stat-item__num { display: block; font-family: var(--serif); font-weight: 700; font-size: 34px; color: var(--navy); }
.stat-item__label { font-size: 12.5px; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* ---------- Institutos hub cards ---------- */
.grid--3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.inst-card { background: var(--white); border: 1px solid var(--line); padding: 30px 26px; display: flex; flex-direction: column; gap: 10px; }
.inst-card__num { font-size: 11px; font-weight: 700; color: var(--accent-ink); }
.inst-card h3 { font-family: var(--serif); font-size: 21px; font-weight: 700; margin: 0; }
.inst-card p { font-size: 14.5px; color: var(--muted); margin: 0; flex: 1; }
.inst-card .link-more { font-size: 12.5px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.06em; border-bottom: 1px solid var(--navy); align-self: flex-start; padding-bottom: 2px; }
.inst-card .link-more:hover { color: var(--accent); border-color: var(--accent); }

/* ---------- Archivo Indiano nested block ---------- */
.flagship {
  background: var(--navy); color: #fff; padding: 60px 40px; margin-top: 20px;
}
.flagship .eyebrow { color: #e8b9c4; }
.flagship h2 { color: #fff; }
.flagship p.lede { color: rgba(255,255,255,0.75); }
.tags { display: flex; gap: 10px; flex-wrap: wrap; margin: 26px 0; }
.tag-chip { font-size: 12px; font-weight: 600; padding: 7px 15px; border-radius: 999px; border: 1px solid rgba(255,255,255,0.35); color: #fff; }
.phases { display: flex; align-items: center; gap: 0; flex-wrap: wrap; }
.phase { display: flex; align-items: center; gap: 9px; opacity: 0.4; }
.phase.is-active { opacity: 1; }
.phase__num { width: 24px; height: 24px; border-radius: 50%; border: 1px solid currentColor; display: flex; align-items: center; justify-content: center; font-size: 10.5px; font-weight: 600; }
.phase__label { font-size: 12.5px; font-weight: 600; }
.phase:not(:last-child)::after { content: ""; width: 26px; height: 1px; background: currentColor; opacity: 0.3; margin: 0 12px; }

/* ---------- Patronato panel ---------- */
.mock-banner {
  background: #fdf2e9; border: 1px solid #f0d9bd; color: #7a4a12;
  font-size: 13px; padding: 12px 18px; border-radius: 4px; margin-bottom: 34px;
  display: flex; align-items: center; gap: 10px;
}
.board-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.board-card { display: flex; flex-direction: column; gap: 10px; }
.board-avatar {
  width: 100%; aspect-ratio: 1; border-radius: 4px;
  background: var(--tint); border: 1px dashed #c9c4b6;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 26px; color: #a8a394;
}
.board-card h4 { font-size: 14.5px; font-weight: 700; margin: 0; }
.board-card .role { font-size: 12px; color: var(--accent-ink); font-weight: 600; margin: 0; }
.board-avatar--photo { position: relative; background: var(--navy); }
.board-avatar__flag { position: absolute; top: 8px; right: 8px; font-size: 8.5px; padding: 4px 8px; }

/* ---------- Newsletter ---------- */
.newsletter { background: var(--navy); padding: 46px 0; }
.newsletter__inner { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.newsletter h3 { font-family: var(--serif); color: #fff; font-size: 21px; margin: 0 0 4px; }
.newsletter p { color: rgba(255,255,255,0.6); font-size: 13px; margin: 0; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.25);
  color: #fff; padding: 11px 14px; font-size: 13.5px; border-radius: 3px; min-width: 240px;
}
.newsletter input::placeholder { color: rgba(255,255,255,0.45); }
.newsletter button {
  background: var(--accent); color: var(--navy); border: none; padding: 11px 22px;
  font-size: 13px; font-weight: 700; border-radius: 3px;
}
.newsletter button:hover { opacity: 0.9; }

/* ---------- Prensa ---------- */
.press-list { display: flex; flex-direction: column; }
.press-item { display: flex; flex-direction: column; gap: 6px; padding: 26px 0; border-top: 1px solid var(--line); }
.press-list .press-item:last-child { border-bottom: 1px solid var(--line); }
.press-item__source { font-size: 11px; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--accent-ink); }
.press-item__title { font-family: var(--serif); font-size: 22px; font-weight: 600; margin: 0; }
.press-item__meta { font-size: 12.5px; color: var(--muted); }
.press-item a.link-more { margin-top: 4px; }

.board-toggle {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  background: none; border: none; padding: 0; width: 100%; text-align: left; cursor: pointer;
}
.board-toggle__label { font-size: 11.5px; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--muted); }
.board-toggle__chevron { font-size: 14px; color: var(--muted); transition: transform 0.25s ease; }
.board-card.is-open .board-toggle__chevron { transform: rotate(180deg); }
.board-bio {
  max-height: 0; overflow: hidden; transition: max-height 0.3s ease;
}
.board-card.is-open .board-bio { max-height: 220px; }
.board-bio p { font-size: 12.5px; color: var(--muted); margin: 8px 0 0; line-height: 1.55; }

/* ---------- Sponsors ---------- */
.sponsor-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.sponsor-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 4px;
  height: 92px; display: flex; align-items: center; justify-content: center; position: relative;
}
.sponsor-card span.name {
  font-family: var(--serif); font-size: 15px; font-weight: 600; color: #b7b3a6; letter-spacing: 0.01em;
}
.sponsor-card .mock-flag { position: absolute; top: -9px; right: -9px; font-size: 8.5px; padding: 3px 8px; }

/* ---------- Collab strip / ecosystem band ----------
   Banda intermedia siempre clara: da protagonismo propio sin competir
   con el navy de la newsletter, y remata con un filo navy que conecta
   visualmente con ella — misma transición en toda página que la use. */
.collab-band { background: var(--tint); padding: 72px 0; border-top: 1px solid var(--line); border-bottom: 4px solid var(--navy); }
.collab-band__seal { width: 26px; height: 26px; margin: 0 auto 18px; opacity: 0.9; }
.collab-band .eyebrow { color: var(--accent-ink); font-weight: 700; }
.collab-band h2 { color: var(--navy); }
.collab-band .lede { color: var(--muted); }
.collab-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; max-width: 940px; margin: 0 auto; }
.collab-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 4px;
  height: 116px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 10px; padding: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.collab-card:hover { border-color: var(--navy); box-shadow: 0 10px 22px rgba(38,40,43,0.08); }
.collab-card__mark {
  min-width: 30px; height: 22px; border-radius: 11px; border: 1px solid var(--line);
  display: inline-flex; align-items: center; justify-content: center; padding: 0 9px;
  font-family: var(--sans); font-size: 10px; font-weight: 700; letter-spacing: 0.04em; color: var(--accent-ink);
}
.collab-card span {
  font-family: var(--serif); font-size: 14.5px; font-weight: 600; line-height: 1.3;
  color: var(--navy); text-align: center;
}
.collab-band__note { text-align: center; font-size: 11.5px; color: var(--muted); margin-top: 22px; }
@media (max-width: 700px) { .collab-strip { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Institutos: cards with icon + richer sub-pages ---------- */
.inst-card { position: relative; overflow: hidden; transition: transform 0.2s ease, box-shadow 0.2s ease; }
.inst-card:hover { transform: translateY(-3px); box-shadow: 0 14px 30px rgba(16,29,46,0.09); }
.inst-card__icon {
  width: 58px; height: 58px; border-radius: 50%; background: var(--tint);
  display: flex; align-items: center; justify-content: center; margin-bottom: 8px;
}
.inst-card__icon svg { width: 28px; height: 28px; color: var(--navy); }

.program-list { display: flex; flex-direction: column; }
.program-item { border-top: 1px solid var(--line); }
.program-list .program-item:last-child { border-bottom: 1px solid var(--line); }
.program-row {
  display: grid; grid-template-columns: 120px 1fr auto auto; align-items: center; gap: 20px;
  padding: 20px 4px; width: 100%; background: none; border: none; text-align: left; cursor: pointer;
}
.program-row__tag { font-size: 11px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: var(--accent-ink); }
.program-row__title { font-size: 15.5px; font-weight: 700; }
.program-row__meta { font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.program-row__chevron { font-size: 15px; color: var(--muted); transition: transform 0.25s ease; }
.program-item.is-open .program-row__chevron { transform: rotate(180deg); }
.program-detail { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.program-item.is-open .program-detail { max-height: 100px; }
.program-detail p { font-size: 13.5px; color: var(--muted); line-height: 1.6; margin: 0 0 20px 4px; max-width: 560px; }

/* ---------- Contact form (mock) ---------- */
.mock-form { display: flex; flex-direction: column; gap: 16px; max-width: 480px; }
.mock-form label { font-size: 12.5px; font-weight: 600; letter-spacing: 0.02em; display: block; margin-bottom: 6px; }
.mock-form input, .mock-form textarea {
  width: 100%; border: 1px solid var(--line); background: var(--white);
  padding: 11px 13px; font-size: 14px; font-family: var(--sans); border-radius: 3px; color: var(--navy);
}
.mock-form button {
  background: var(--accent); color: #fff; border: none; padding: 13px 24px;
  font-size: 14px; font-weight: 700; border-radius: 3px; align-self: flex-start;
}
.mock-form button:disabled { opacity: 0.55; cursor: not-allowed; }

/* ---------- Donate mock ---------- */
.donate-layout { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: start; }
.donate-steps { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 18px; }
.donate-steps li { display: flex; gap: 14px; font-size: 14.5px; color: var(--muted); }
.donate-steps .step-num {
  width: 24px; height: 24px; flex-shrink: 0; border-radius: 50%; background: var(--navy); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 700;
}
.pay-card {
  background: var(--white); border: 1px solid var(--line); border-radius: 6px; padding: 26px;
}
.pay-amounts { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin: 14px 0 20px; }
.pay-amounts button {
  background: var(--tint); border: 1px solid var(--line); padding: 10px 0; font-size: 13px; font-weight: 700; border-radius: 3px;
}
.pay-amounts button.is-selected { background: var(--navy); color: #fff; border-color: var(--navy); }
.pay-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 18px; }
.pay-fields input { border: 1px solid var(--line); padding: 10px 12px; font-size: 13.5px; border-radius: 3px; background: #fafaf8; color: #999; }
.pay-card button.btn-pay {
  width: 100%; background: var(--accent); color: #fff; border: none; padding: 13px; font-size: 14px; font-weight: 700; border-radius: 3px; cursor: not-allowed; opacity: 0.7;
}
.pay-note { font-size: 11.5px; color: var(--muted); text-align: center; margin-top: 10px; }

.fiscal-box { background: var(--tint); padding: 30px 32px; margin-top: 20px; }
.fiscal-box h3 { font-family: var(--serif); font-size: 19px; margin: 0 0 14px; }
.fiscal-table { width: 100%; border-collapse: collapse; font-size: 13.5px; margin-bottom: 16px; }
.fiscal-table th, .fiscal-table td { text-align: left; padding: 9px 10px; border-bottom: 1px solid var(--line); }
.fiscal-table th { font-size: 11px; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); font-weight: 700; }
.fiscal-note { font-size: 12.5px; color: var(--muted); line-height: 1.6; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.5s ease, transform 0.5s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav__menu { gap: 14px; }
  .grid--3 { grid-template-columns: 1fr; }
  .board-grid { grid-template-columns: repeat(2, 1fr); }
  .sponsor-grid { grid-template-columns: repeat(2, 1fr); }
  .donate-layout { grid-template-columns: 1fr; }
  .footer__inner { flex-direction: column; align-items: flex-start; }
  .program-row { grid-template-columns: 1fr; gap: 6px; }
  .gate__lockup { flex-direction: column; gap: 14px; }
  .gate__bar { display: none; }
  .gate__wordmark { text-align: center; }
}
