/* ==========================================================================
   Hands and Minds Scholarship Fund
   Design system + site styles. No build step, no dependencies.
   ========================================================================== */

/* --- Tokens --------------------------------------------------------------- */
:root {
  /* Brand — sampled directly from the logo artwork.
     Navy  #00193A  (the ring, lettering, mortarboard, the "h")
     Gold  #AE7F40  (the "m", tassel dot, book pages)

     A note on the gold, because it's a trap. The brand gold is a deep bronze.
     It passes contrast as a BUTTON FILL with navy text on top (4.92:1), but it
     FAILS as small text on cream (3.35:1, needs 4.5:1). So:
        --gold-500  the true brand color. Fills, marks, buttons. Never small text.
        --gold-600  a darkened sibling for small text on light backgrounds (5.28:1).
        --gold-400  a lightened sibling for text on navy (7.24:1).
     Same hue family throughout, so it still reads as one color to the eye. */
  --navy-900: #00193A;
  --navy-800: #0A2A4D;
  --navy-700: #163E68;
  --navy-600: #2A5C8A;
  --navy-100: #D6E1EC;

  --gold-600: #8A5F2C;   /* small text on light — AA */
  --gold-500: #AE7F40;   /* THE brand gold — fills only */
  --gold-400: #C9A063;   /* text/accents on navy — AA */
  --gold-100: #F2E7D5;   /* tint */

  --clay-500: #C05E3C;   /* sparingly, for warmth in accents */

  /* Neutrals — warm, never grey */
  --cream: #FBF8F3;
  --sand-100: #F4EEE4;
  --sand-200: #E8DFD1;
  --sand-300: #D6C9B5;

  --ink: #16232E;
  --ink-muted: #52636F;
  --ink-faint: #7C8B96;
  --white: #FFFFFF;

  --success: #2F6B4F;
  --danger: #B3402C;

  /* Type */
  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Fluid type scale */
  --fs-xs:   0.8125rem;
  --fs-sm:   0.9375rem;
  --fs-base: 1.0625rem;
  --fs-lg:   1.1875rem;
  --fs-xl:   clamp(1.25rem, 0.5vw + 1.1rem, 1.4375rem);
  --fs-2xl:  clamp(1.5rem, 1vw + 1.25rem, 1.875rem);
  --fs-3xl:  clamp(1.875rem, 2vw + 1.4rem, 2.5rem);
  --fs-4xl:  clamp(2.25rem, 3.2vw + 1.5rem, 3.5rem);
  --fs-5xl:  clamp(2.75rem, 4.5vw + 1.6rem, 4.5rem);

  /* Spacing */
  --sp-1: 0.25rem;
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  --radius-sm: 6px;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 999px;

  --shadow-sm: 0 1px 2px rgba(0, 25, 58, 0.06), 0 1px 3px rgba(0, 25, 58, 0.05);
  --shadow: 0 4px 6px -1px rgba(0, 25, 58, 0.07), 0 2px 4px -2px rgba(0, 25, 58, 0.05);
  --shadow-lg: 0 12px 24px -8px rgba(0, 25, 58, 0.12), 0 4px 8px -4px rgba(0, 25, 58, 0.06);
  --shadow-xl: 0 24px 48px -12px rgba(0, 25, 58, 0.18);

  --container: 1160px;
  --container-narrow: 760px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Reset ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }

/* The HTML `hidden` attribute must always win. A class that sets `display`
   (e.g. a flex row) silently overrides the browser default of [hidden]{display:none},
   because author styles beat the user-agent stylesheet. That bug hid nothing when
   we set hidden=true on a styled element. hidden means hidden — no exceptions. */
[hidden] { display: none !important; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.015em;
  text-wrap: balance;
  color: var(--navy-900);
}

p { text-wrap: pretty; }

a { color: var(--navy-700); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--navy-900); }

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

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* --- Layout primitives ---------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--sp-5);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--sp-9); }
.section--tight { padding-block: var(--sp-8); }

.section--cream { background: var(--cream); }
.section--sand  { background: var(--sand-100); }
.section--white { background: var(--white); }
.section--navy  { background: var(--navy-900); color: var(--navy-100); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }

.skip-link {
  position: absolute;
  left: -9999px;
  top: var(--sp-3);
  z-index: 999;
  background: var(--navy-900);
  color: var(--white);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
}
.skip-link:focus { left: var(--sp-4); color: var(--white); }

/* --- Typographic helpers -------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--sp-4);
}
.eyebrow::before {
  content: "";
  width: 24px;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
}
.section--navy .eyebrow { color: var(--gold-400); }

.lede {
  font-size: var(--fs-xl);
  line-height: 1.55;
  color: var(--ink-muted);
  max-width: 60ch;
}
.section--navy .lede { color: var(--navy-100); }

.section-head { max-width: 62ch; margin-bottom: var(--sp-7); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lede { margin-inline: auto; }
.section-head h2 { font-size: var(--fs-3xl); margin-bottom: var(--sp-4); }

.muted { color: var(--ink-muted); }
.fine-print { font-size: var(--fs-sm); color: var(--ink-faint); line-height: 1.6; }

/* --- Buttons -------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.8125rem 1.5rem;
  border: 1.5px solid transparent;
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  white-space: nowrap;
  transition: transform 0.15s var(--ease), box-shadow 0.2s var(--ease),
              background-color 0.2s var(--ease), border-color 0.2s var(--ease), color 0.2s var(--ease);
}
.btn:active { transform: translateY(1px); }

.btn--primary {
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow);
}
.btn--primary:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn--navy {
  background: var(--navy-800);
  color: var(--white);
  box-shadow: var(--shadow);
}
.btn--navy:hover {
  background: var(--navy-700);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  transform: translateY(-1px);
}

.btn--outline {
  background: transparent;
  border-color: var(--navy-600);
  color: var(--navy-800);
}
.btn--outline:hover { background: var(--navy-800); border-color: var(--navy-800); color: var(--white); }

.btn--ghost-light {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn--ghost-light:hover { background: rgba(255,255,255,0.16); border-color: var(--white); color: var(--white); }

.btn--lg { padding: 1rem 1.875rem; font-size: var(--fs-base); }
.btn--block { width: 100%; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

.btn-row { display: flex; flex-wrap: wrap; gap: var(--sp-3); }
.btn-row--center { justify-content: center; }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 600;
  font-size: var(--fs-sm);
  text-decoration: none;
  color: var(--navy-700);
}
.arrow-link::after {
  content: "→";
  transition: transform 0.2s var(--ease);
}
.arrow-link:hover::after { transform: translateX(4px); }

/* --- Header --------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.85);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--sand-200);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-5);
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  color: var(--navy-900);
  flex-shrink: 0;
}
.brand:hover { color: var(--navy-900); }

/* The logo is a detailed circular badge. Its ring lettering is unreadable below
   ~120px, so the wordmark beside it isn't redundant — it's doing the work the
   badge can't at this size. */
.brand-mark {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
}
.site-header .brand-mark { width: 44px; height: 44px; }
.site-footer .brand-mark { width: 52px; height: 52px; }

.brand-text { display: flex; flex-direction: column; line-height: 1.15; }
.brand-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.0625rem;
  letter-spacing: -0.01em;
}
.brand-sub {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--gold-600);
}

.nav { display: flex; align-items: center; gap: var(--sp-5); }
.nav-links { display: flex; align-items: center; gap: var(--sp-5); list-style: none; padding: 0; margin: 0; }
.nav-link {
  position: relative;
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  color: var(--ink-muted);
  padding-block: var(--sp-2);
  transition: color 0.18s var(--ease);
}
.nav-link:hover { color: var(--navy-900); }
.nav-link::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 2px;
  background: var(--gold-500);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.2s var(--ease);
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-link[aria-current="page"] { color: var(--navy-900); font-weight: 600; }
.nav-link[aria-current="page"]::after { transform: scaleX(1); }

.nav-cta { display: flex; align-items: center; gap: var(--sp-3); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1.5px solid var(--sand-300);
  border-radius: var(--radius);
  width: 44px; height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
}

@media (max-width: 900px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: fixed;
    inset: 74px 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sand-200);
    padding: var(--sp-4) var(--sp-5) var(--sp-6);
    box-shadow: var(--shadow-lg);
    transform: translateY(-8px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
  }
  .nav[data-open="true"] { transform: translateY(0); opacity: 1; visibility: visible; }
  .nav-links { flex-direction: column; align-items: stretch; gap: 0; }
  .nav-link { padding: var(--sp-4) 0; border-bottom: 1px solid var(--sand-200); font-size: var(--fs-lg); }
  .nav-link::after { display: none; }
  .nav-cta { flex-direction: column; align-items: stretch; margin-top: var(--sp-5); }
  .nav-cta .btn { width: 100%; }
}

/* --- Hero ----------------------------------------------------------------- */
.hero {
  position: relative;
  background: linear-gradient(160deg, var(--navy-900) 0%, var(--navy-800) 55%, var(--navy-700) 100%);
  color: var(--navy-100);
  overflow: hidden;
  padding-block: clamp(4rem, 9vw, 7.5rem);
}
.hero::before {
  content: "";
  position: absolute;
  top: -20%; right: -10%;
  width: 60%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(174, 127, 64, 0.22) 0%, rgba(174, 127, 64, 0) 65%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -30%; left: -15%;
  width: 55%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(42, 92, 138, 0.5) 0%, rgba(42, 92, 138, 0) 65%);
  pointer-events: none;
}
.hero .container { position: relative; z-index: 1; }

.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: var(--sp-8);
  align-items: center;
}
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: var(--sp-7); }
}

.hero h1 {
  font-size: var(--fs-5xl);
  color: var(--white);
  margin-bottom: var(--sp-5);
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-400);
}
.hero .lede { color: rgba(220, 230, 240, 0.9); font-size: var(--fs-xl); margin-bottom: var(--sp-6); }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-4);
  background: rgba(174, 127, 64, 0.14);
  border: 1px solid rgba(201, 160, 99, 0.35);
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--gold-400);
  margin-bottom: var(--sp-5);
}
.hero-badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold-400);
}

/* Dual-path cards in hero */
.path-cards { display: grid; gap: var(--sp-4); }
.path-card {
  display: block;
  padding: var(--sp-5);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  text-decoration: none;
  color: var(--white);
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease), transform 0.2s var(--ease);
}
.path-card:hover {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(201, 160, 99, 0.5);
  transform: translateY(-2px);
  color: var(--white);
}
.path-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-3);
  margin-bottom: var(--sp-2);
}
.path-card h2 {
  font-size: var(--fs-xl);
  color: var(--white);
  margin: 0;
}
.path-card p { font-size: var(--fs-sm); color: rgba(220, 230, 240, 0.82); margin: 0; }
.path-card .chev {
  color: var(--gold-400);
  font-size: 1.25rem;
  transition: transform 0.2s var(--ease);
}
.path-card:hover .chev { transform: translateX(4px); }

/* --- Stats ---------------------------------------------------------------- */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 820px) { .stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-6) var(--sp-4); } }

.stat { text-align: center; }
.stat-value {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 600;
  line-height: 1;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-2);
}
.section--navy .stat-value { color: var(--gold-400); }
.stat-label {
  font-size: var(--fs-sm);
  color: var(--ink-muted);
  line-height: 1.4;
}
.section--navy .stat-label { color: var(--navy-100); }

/* --- Cards ---------------------------------------------------------------- */
.grid { display: grid; gap: var(--sp-5); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
@media (max-width: 1000px) { .grid--4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 900px) { .grid--3 { grid-template-columns: 1fr; } .grid--2 { grid-template-columns: 1fr; } }
@media (max-width: 560px) { .grid--4 { grid-template-columns: 1fr; } }

.card {
  display: flex;
  flex-direction: column;
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease), transform 0.25s var(--ease), border-color 0.25s var(--ease);
}
.card--link:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
  border-color: var(--sand-300);
}
.card h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-3); }
.card p { color: var(--ink-muted); font-size: var(--fs-sm); }
.card > :last-child { margin-top: auto; }
.card .arrow-link { padding-top: var(--sp-4); }

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: var(--radius);
  background: var(--gold-100);
  color: var(--gold-600);
  margin-bottom: var(--sp-4);
}
.card-icon--navy { background: var(--navy-100); color: var(--navy-700); }

/* Numbered steps */
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--gold-400);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-4);
}

/* --- Scholarship listing -------------------------------------------------- */
.award {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: var(--sp-5);
  align-items: start;
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  margin-bottom: var(--sp-4);
}
@media (max-width: 760px) { .award { grid-template-columns: 1fr; } }

.award h3 { font-size: var(--fs-2xl); margin-bottom: var(--sp-2); }
.award-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-2) var(--sp-4);
  margin-bottom: var(--sp-4);
  font-size: var(--fs-sm);
  color: var(--ink-muted);
}
.award-amount {
  font-family: var(--font-display);
  font-size: var(--fs-3xl);
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1;
  white-space: nowrap;
}
.award-amount small {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: var(--sp-2);
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.02em;
}
.pill--open { background: #E4F0E9; color: var(--success); }
.pill--soon { background: var(--sand-200); color: var(--ink-muted); }
.pill--closed { background: #F6E2DE; color: var(--danger); }

.checklist { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }

/* The checkmark is positioned, NOT a grid/flex child.
   This used to be `display: grid` with a 22px column. That breaks the moment a
   bullet contains an inline element: in grid layout a <strong> becomes its own
   grid item and the text after it becomes a *separate* anonymous item, which
   wraps onto a new row under the checkmark. Positioning the marker instead lets
   the content stay one normal inline flow, so <strong>, <em>, and links all wrap
   correctly inside a bullet. */
.checklist li {
  position: relative;
  padding-left: calc(22px + var(--sp-3));
  min-height: 22px;
  font-size: var(--fs-sm);
  line-height: 1.6;
  color: var(--ink-muted);
}
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-600);
  font-size: 0.75rem;
  font-weight: 700;
}
.checklist li strong { color: var(--ink); font-weight: 600; }

/* --- Quote / testimonial -------------------------------------------------- */
.quote {
  position: relative;
  padding: var(--sp-7);
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--sand-200);
}
/* Opening and closing marks, top-left and bottom-right. Decorative only —
   aria-hidden isn't needed because generated content isn't announced, but they
   must never sit on top of the text, hence the z-index layering below. */
.quote::before,
.quote::after {
  position: absolute;
  font-family: var(--font-display);
  font-size: 6rem;
  line-height: 1;
  color: var(--gold-100);
  z-index: 0;
  pointer-events: none;
}
.quote::before {
  content: "\201C";
  top: -0.25rem;
  left: var(--sp-6);
}
.quote::after {
  content: "\201D";
  right: var(--sp-6);
  bottom: var(--sp-3);
}
.quote blockquote {
  position: relative;
  z-index: 1;
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: 1.45;
  color: var(--navy-900);
  margin-bottom: var(--sp-5);
}
/* Lifted above the closing mark, so the attribution is never obscured by it. */
.quote-author {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
/* Works for both an <img> (the logo, or a recipient's photo later) and a plain
   div with initials, so swapping in a real student's portrait needs no CSS change. */
.quote-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--navy-100);
  object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  font-weight: 600;
  color: var(--navy-700);
  flex-shrink: 0;
}
.quote-name { font-weight: 600; font-size: var(--fs-sm); }
.quote-role { font-size: var(--fs-xs); color: var(--ink-faint); }
.quote-role a { color: var(--navy-700); }

/* --- Prose (About, Resources) --------------------------------------------- */
.prose { max-width: 68ch; }
.prose h2 { font-size: var(--fs-2xl); margin-top: var(--sp-7); margin-bottom: var(--sp-4); }
.prose h3 { font-size: var(--fs-xl); margin-top: var(--sp-6); margin-bottom: var(--sp-3); }
.prose > :first-child { margin-top: 0; }
.prose p { margin-bottom: var(--sp-4); color: var(--ink-muted); }
.prose p.first { font-size: var(--fs-lg); color: var(--ink); }
.prose ul { margin: 0 0 var(--sp-4); padding-left: var(--sp-5); color: var(--ink-muted); }
.prose li { margin-bottom: var(--sp-2); }
.prose strong { color: var(--ink); font-weight: 600; }

/* --- Founder's letter ------------------------------------------------------
   Set apart from the site's editorial voice on purpose. This is one person
   speaking, not the organization, and it should read that way. */
.letter {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  padding: clamp(var(--sp-6), 5vw, var(--sp-9));
  position: relative;
}
.letter::before {
  content: "";
  position: absolute;
  top: 0; left: clamp(var(--sp-6), 5vw, var(--sp-9)); right: clamp(var(--sp-6), 5vw, var(--sp-9));
  height: 3px;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-400));
  border-radius: 0 0 3px 3px;
}

.letter p {
  font-size: var(--fs-lg);
  line-height: 1.75;
  color: var(--ink);
  margin-bottom: var(--sp-5);
}
.letter p.letter-open {
  font-family: var(--font-display);
  font-size: var(--fs-2xl);
  line-height: 1.4;
  color: var(--navy-900);
  margin-bottom: var(--sp-6);
}
.letter p:last-of-type { margin-bottom: 0; }

.letter-sign {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  margin-top: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid var(--sand-200);
}
.letter-sign-mark {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
}
.letter-sign-name {
  font-family: var(--font-display);
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--navy-900);
  line-height: 1.2;
}
.letter-sign-role {
  font-size: var(--fs-sm);
  color: var(--ink-faint);
  margin-top: 2px;
}

/* --- Page hero (interior pages) ------------------------------------------- */
.page-hero {
  background: linear-gradient(170deg, var(--navy-900) 0%, var(--navy-800) 100%);
  color: var(--navy-100);
  padding-block: var(--sp-8) var(--sp-8);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  top: -40%; right: -5%;
  width: 45%; aspect-ratio: 1;
  background: radial-gradient(circle, rgba(174, 127, 64, 0.18) 0%, rgba(174, 127, 64, 0) 65%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { font-size: var(--fs-4xl); color: var(--white); margin-bottom: var(--sp-4); }
.page-hero .lede { color: rgba(220, 230, 240, 0.88); }

/* --- Forms ---------------------------------------------------------------- */
.form-shell {
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

/* --- Eligibility gate -----------------------------------------------------
   Asked before anything else. A student who isn't eligible should find out in
   five seconds, not after writing two essays. */
.gate { padding: var(--sp-8) var(--sp-7); text-align: center; }
@media (max-width: 600px) { .gate { padding: var(--sp-6) var(--sp-5); } }

.gate-mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--gold-100);
  color: var(--gold-600);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5);
}
.gate h2 { font-size: var(--fs-2xl); margin-bottom: var(--sp-3); }
.gate p { color: var(--ink-muted); max-width: 46ch; margin: 0 auto var(--sp-6); }
.gate .btn-row { justify-content: center; }

.gate-decline { display: none; padding: var(--sp-8) var(--sp-7); text-align: center; }
.gate-decline[data-show="true"] { display: block; animation: fadeUp 0.3s var(--ease); }
.gate-decline .gate-mark { background: var(--navy-100); color: var(--navy-700); }
.gate-decline h2 { font-size: var(--fs-2xl); margin-bottom: var(--sp-4); }
.gate-decline p { color: var(--ink-muted); max-width: 52ch; margin: 0 auto var(--sp-5); }

.form-progress {
  display: flex;
  border-bottom: 1px solid var(--sand-200);
  background: var(--sand-100);
}
.form-progress-step {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-4) var(--sp-3);
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--ink-faint);
  border-bottom: 3px solid transparent;
  transition: color 0.2s var(--ease), border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.form-progress-step .num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--sand-300);
  color: var(--white);
  font-size: 0.6875rem;
  flex-shrink: 0;
}
.form-progress-step[data-state="active"] {
  color: var(--navy-900);
  border-bottom-color: var(--gold-500);
  background: var(--white);
}
.form-progress-step[data-state="active"] .num { background: var(--gold-500); color: var(--navy-900); }
.form-progress-step[data-state="done"] { color: var(--navy-700); }
.form-progress-step[data-state="done"] .num { background: var(--success); color: var(--white); }
.form-progress-step[data-state="done"] .num::after { content: "✓"; }
.form-progress-step[data-state="done"] .num .n { display: none; }
@media (max-width: 700px) {
  .form-progress-step .label { display: none; }
}

.form-body { padding: var(--sp-7); }
@media (max-width: 600px) { .form-body { padding: var(--sp-5); } }

.form-step { display: none; }
.form-step[data-active="true"] { display: block; animation: fadeUp 0.28s var(--ease); }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(6px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-step-head { margin-bottom: var(--sp-6); padding-bottom: var(--sp-5); border-bottom: 1px solid var(--sand-100); }
.form-step-head h2 { font-size: var(--fs-2xl); margin-bottom: var(--sp-2); }
.form-step-head p { color: var(--ink-muted); font-size: var(--fs-sm); }

.field-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
@media (max-width: 640px) { .field-grid { grid-template-columns: 1fr; } }
.field--full { grid-column: 1 / -1; }

.field { display: flex; flex-direction: column; gap: var(--sp-2); }
.field label {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--navy-900);
}
.field .req { color: var(--danger); margin-left: 2px; }
.field .hint { font-size: var(--fs-xs); color: var(--ink-faint); line-height: 1.5; }

.field input[type="text"],
.field input[type="email"],
.field input[type="tel"],
.field input[type="date"],
.field input[type="number"],
.field select,
.field textarea {
  width: 100%;
  padding: 0.6875rem 0.875rem;
  background: var(--white);
  border: 1.5px solid var(--sand-300);
  border-radius: var(--radius);
  font-size: var(--fs-base);
  color: var(--ink);
  transition: border-color 0.18s var(--ease), box-shadow 0.18s var(--ease);
}
.field textarea { resize: vertical; min-height: 140px; line-height: 1.6; }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2352636F' d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 0.875rem center; padding-right: 2.25rem; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--navy-600);
  box-shadow: 0 0 0 3px rgba(42, 92, 138, 0.13);
}
.field input[aria-invalid="true"],
.field select[aria-invalid="true"],
.field textarea[aria-invalid="true"] {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(179, 64, 44, 0.1);
}
.field .error {
  display: none;
  font-size: var(--fs-xs);
  font-weight: 500;
  color: var(--danger);
}
.field .error[data-show="true"] { display: block; }

.char-count { font-size: var(--fs-xs); color: var(--ink-faint); text-align: right; font-variant-numeric: tabular-nums; }
.char-count[data-over="true"] { color: var(--danger); font-weight: 600; }

/* Radio / checkbox cards */
.choice-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-3); }
@media (max-width: 640px) { .choice-grid { grid-template-columns: 1fr; } }

.choice {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  padding: var(--sp-4);
  border: 1.5px solid var(--sand-300);
  border-radius: var(--radius);
  cursor: pointer;
  transition: border-color 0.18s var(--ease), background 0.18s var(--ease);
}
.choice:hover { border-color: var(--navy-600); background: var(--sand-100); }
.choice input { margin-top: 3px; accent-color: var(--navy-700); width: 18px; height: 18px; flex-shrink: 0; }
.choice-text { display: flex; flex-direction: column; gap: 2px; }
.choice-title { font-size: var(--fs-sm); font-weight: 600; color: var(--navy-900); }
.choice-desc { font-size: var(--fs-xs); color: var(--ink-faint); line-height: 1.45; }
.choice:has(input:checked) { border-color: var(--gold-500); background: #FDF8EF; }
.choice:has(input:focus-visible) { outline: 3px solid var(--gold-500); outline-offset: 2px; }

/* File upload */
.dropzone {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: var(--sp-7) var(--sp-5);
  border: 2px dashed var(--sand-300);
  border-radius: var(--radius-lg);
  background: var(--sand-100);
  text-align: center;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease);
}
.dropzone:hover, .dropzone[data-drag="true"] {
  border-color: var(--gold-500);
  background: #FDF8EF;
}
.dropzone svg { color: var(--ink-faint); margin-bottom: var(--sp-1); }
.dropzone[data-drag="true"] svg { color: var(--gold-600); }
.dropzone-title { font-size: var(--fs-sm); font-weight: 600; color: var(--navy-900); }
.dropzone-title u { color: var(--navy-700); }
.dropzone-hint { font-size: var(--fs-xs); color: var(--ink-faint); }
.dropzone input[type="file"] { position: absolute; width: 1px; height: 1px; opacity: 0; }

.file-list { list-style: none; padding: 0; margin: var(--sp-4) 0 0; display: grid; gap: var(--sp-2); }
.file-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3) var(--sp-4);
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
}
.file-item .fname { flex: 1; min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-weight: 500; }
.file-item .fsize { color: var(--ink-faint); font-size: var(--fs-xs); font-variant-numeric: tabular-nums; flex-shrink: 0; }
.file-item .fremove {
  background: transparent;
  border: none;
  color: var(--ink-faint);
  padding: var(--sp-1);
  border-radius: var(--radius-sm);
  line-height: 1;
  flex-shrink: 0;
}
.file-item .fremove:hover { color: var(--danger); background: #F6E2DE; }
.file-item .ficon { color: var(--navy-600); flex-shrink: 0; }
.file-item[data-error="true"] { border-color: var(--danger); background: #FDF3F1; }
.file-item[data-error="true"] .ficon { color: var(--danger); }

/* Review step */
.review-group { margin-bottom: var(--sp-6); }
.review-group h3 {
  font-size: var(--fs-sm);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-2);
  border-bottom: 1px solid var(--sand-200);
}
.review-list { display: grid; gap: var(--sp-3); margin: 0; }
.review-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: var(--sp-4);
  font-size: var(--fs-sm);
  padding-bottom: var(--sp-3);
  border-bottom: 1px dashed var(--sand-200);
}
@media (max-width: 640px) { .review-row { grid-template-columns: 1fr; gap: var(--sp-1); } }
.review-row dt { color: var(--ink-faint); font-weight: 500; }
.review-row dd { margin: 0; color: var(--ink); font-weight: 500; word-break: break-word; }
.review-row dd:empty::after { content: "—"; color: var(--sand-300); }
.review-row dd.essay-preview {
  white-space: pre-wrap;
  font-size: var(--fs-sm);
  color: var(--ink-muted);
  max-height: 9rem;
  overflow-y: auto;
  padding: var(--sp-3);
  background: var(--sand-100);
  border-radius: var(--radius-sm);
  font-weight: 400;
}

.turnstile-slot {
  display: flex;
  justify-content: center;
  margin-top: var(--sp-6);
}

.consent {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-5);
  background: var(--sand-100);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius);
  margin-top: var(--sp-5);
}
.consent input { margin-top: 3px; accent-color: var(--navy-700); width: 18px; height: 18px; flex-shrink: 0; }
.consent label { font-size: var(--fs-sm); color: var(--ink-muted); line-height: 1.6; }

.form-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding: var(--sp-5) var(--sp-7);
  background: var(--sand-100);
  border-top: 1px solid var(--sand-200);
}
@media (max-width: 600px) { .form-nav { padding: var(--sp-4) var(--sp-5); } }
.form-nav .spacer { flex: 1; }

.form-alert {
  display: none;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-4);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-5);
}
.form-alert[data-show="true"] { display: flex; }
.form-alert--error { background: #FDF3F1; border: 1px solid #F0CFC8; color: var(--danger); }

/* Success panel */
.form-success { display: none; padding: var(--sp-9) var(--sp-7); text-align: center; }
.form-success[data-show="true"] { display: block; animation: fadeUp 0.4s var(--ease); }
.success-mark {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: #E4F0E9;
  color: var(--success);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--sp-5);
}
.form-success h2 { font-size: var(--fs-3xl); margin-bottom: var(--sp-4); }
.form-success p { color: var(--ink-muted); max-width: 48ch; margin: 0 auto var(--sp-5); }
.ref-code {
  display: inline-block;
  padding: var(--sp-3) var(--sp-5);
  background: var(--sand-100);
  border: 1px dashed var(--sand-300);
  border-radius: var(--radius);
  font-family: ui-monospace, 'SF Mono', Menlo, monospace;
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.06em;
  margin-bottom: var(--sp-6);
}

/* --- Donate --------------------------------------------------------------- */
.donate-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: var(--sp-8);
  align-items: start;
}
@media (max-width: 980px) { .donate-grid { grid-template-columns: 1fr; } }

.donate-box {
  position: sticky;
  top: 100px;
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  padding: var(--sp-6);
}
@media (max-width: 980px) { .donate-box { position: static; } }

.donate-box h2 { font-size: var(--fs-2xl); margin-bottom: var(--sp-2); }
.donate-box > p { font-size: var(--fs-sm); color: var(--ink-muted); margin-bottom: var(--sp-5); }

.amount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-3); margin-bottom: var(--sp-4); }
.amount-opt {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-4) var(--sp-2);
  border: 1.5px solid var(--sand-300);
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  transition: all 0.18s var(--ease);
}
.amount-opt:hover { border-color: var(--navy-600); }
.amount-opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.amount-opt:has(input:checked) {
  border-color: var(--gold-500);
  background: var(--gold-500);
  color: var(--navy-900);
  box-shadow: var(--shadow);
}
.amount-opt:has(input:focus-visible) { outline: 3px solid var(--gold-500); outline-offset: 2px; }

.impact-note {
  display: flex;
  gap: var(--sp-3);
  padding: var(--sp-4);
  background: var(--gold-100);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  color: var(--gold-600);
  font-weight: 500;
  margin-bottom: var(--sp-5);
  min-height: 62px;
  align-items: center;
}

.freq-toggle {
  display: flex;
  padding: 4px;
  background: var(--sand-100);
  border-radius: var(--radius-full);
  margin-bottom: var(--sp-5);
}
.freq-opt {
  position: relative;
  flex: 1;
  text-align: center;
  padding: var(--sp-2) var(--sp-3);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--ink-muted);
  cursor: pointer;
  transition: all 0.18s var(--ease);
}
.freq-opt input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.freq-opt:has(input:checked) { background: var(--white); color: var(--navy-900); box-shadow: var(--shadow-sm); }

/* Donation pledge — a promise we can be held to, in place of a statistic we
   haven't earned the right to publish yet. */
.pledge {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--sp-6);
  align-items: start;
  padding: var(--sp-6);
  background: var(--white);
  border: 1px solid var(--sand-200);
  border-left: 4px solid var(--gold-500);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}
@media (max-width: 640px) {
  .pledge { grid-template-columns: 1fr; gap: var(--sp-4); }
}

.pledge-figure {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-4) var(--sp-5);
  background: var(--gold-100);
  border-radius: var(--radius);
  min-width: 130px;
}
.pledge-num {
  font-family: var(--font-display);
  font-size: var(--fs-4xl);
  font-weight: 600;
  line-height: 1;
  color: var(--navy-900);
  letter-spacing: -0.02em;
}
.pledge-unit {
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-top: var(--sp-2);
}
.pledge-body h3 { font-size: var(--fs-xl); margin-bottom: var(--sp-3); }
.pledge-body p { color: var(--ink-muted); font-size: var(--fs-sm); margin-bottom: var(--sp-3); }

.allocation { display: grid; gap: var(--sp-4); }
.alloc-row { display: grid; gap: var(--sp-2); }
.alloc-top { display: flex; justify-content: space-between; align-items: baseline; font-size: var(--fs-sm); }
.alloc-label { font-weight: 600; color: var(--navy-900); }
.alloc-pct { font-family: var(--font-display); font-weight: 600; color: var(--gold-600); font-variant-numeric: tabular-nums; }
.alloc-bar { height: 8px; background: var(--sand-200); border-radius: var(--radius-full); overflow: hidden; }
.alloc-fill { height: 100%; background: linear-gradient(90deg, var(--gold-500), var(--gold-400)); border-radius: var(--radius-full); }
.alloc-desc { font-size: var(--fs-xs); color: var(--ink-faint); }

/* --- Footer --------------------------------------------------------------- */
.site-footer {
  background: var(--navy-900);
  color: var(--navy-100);
  padding-block: var(--sp-8) var(--sp-6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--sp-7) var(--sp-5); } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .brand { color: var(--white); margin-bottom: var(--sp-4); }
.footer-brand .brand:hover { color: var(--white); }
.footer-brand .brand-name { color: var(--white); }
.footer-brand p { font-size: var(--fs-sm); color: rgba(220, 230, 240, 0.72); max-width: 36ch; margin-bottom: var(--sp-4); }

.footer-col h3 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-400);
  margin-bottom: var(--sp-4);
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: var(--sp-3); }
.footer-col a {
  font-size: var(--fs-sm);
  color: rgba(220, 230, 240, 0.78);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}
.footer-col a:hover { color: var(--gold-400); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  font-size: var(--fs-xs);
  color: rgba(220, 230, 240, 0.55);
}
.footer-bottom a { color: rgba(220, 230, 240, 0.55); }
.footer-bottom a:hover { color: var(--gold-400); }
.footer-legal { display: flex; flex-wrap: wrap; gap: var(--sp-2) var(--sp-4); }

.ein-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  padding: var(--sp-2) var(--sp-3);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-sm);
  font-size: var(--fs-xs);
  color: rgba(220, 230, 240, 0.8);
}

/* "Follow us" — a prominent gold pill in the footer, on every page. */
.footer-social {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  margin-top: var(--sp-4);
  padding: 0.5rem 0.9rem;
  background: var(--gold-500);
  color: var(--navy-900);
  border-radius: var(--radius-full);
  font-size: var(--fs-sm);
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.15s var(--ease);
}
.footer-social:hover {
  background: var(--gold-400);
  color: var(--navy-900);
  transform: translateY(-1px);
}
.footer-social svg { flex-shrink: 0; }

/* --- CTA band ------------------------------------------------------------- */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  text-align: center;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 80% 20%, rgba(174, 127, 64, 0.2), transparent 55%);
}
.cta-band > * { position: relative; z-index: 1; }
.cta-band h2 { color: var(--white); font-size: var(--fs-3xl); margin-bottom: var(--sp-4); }
.cta-band p { color: rgba(220, 230, 240, 0.85); max-width: 52ch; margin: 0 auto var(--sp-6); }

/* --- Utilities ------------------------------------------------------------ */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}
.center { text-align: center; }
.mt-5 { margin-top: var(--sp-5); }
.mt-6 { margin-top: var(--sp-6); }
.mb-0 { margin-bottom: 0; }

/* Placeholder marker — remove once real content lands */
[data-placeholder] {
  position: relative;
}
