/* ============================================================
   Tuzos Scholarship — site stylesheet  (tuzosscholarship.com)
   Applicant-first redesign.
   Feel: Fashion Scholarship Fund (editorial, high-contrast, modular)
   Flow: Dell Scholars (value → benefits → who → how → dates → FAQ)
   Brand: Space Break Fund co-brand — navy #0A2A5E led, sky-blue bridge,
          signature gold #E2A93B accent, Poppins. See ../Space Break Fund Brand Guide.md
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&display=swap');

:root {
  /* Brand */
  --navy-900: #0A2A5E;
  --navy-800: #0E326E;
  --navy-700: #143C7E;
  --blue-500: #5A9BC5;
  --blue-300: #7BAFD4;
  --gold-500: #E2A93B;
  --gold-600: #C68F26;

  /* Neutrals */
  --white: #FFFFFF;
  --sand-50: #FAF8F5;
  --sand-100: #F5F0EB;
  --cool-50: #F7F9FC;
  --cool-100: #F1F5F9;
  --cool-200: #E2E8F0;
  --slate-600: #475467;
  --slate-500: #374151;
  --slate-400: #9CA3AF;
  --slate-900: #16181B;

  /* Semantic */
  --success: #348547;
  --danger: #E53E3E;

  /* Radii */
  --r-sm: 6px;
  --r-md: 12px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 999px;

  /* Shadow (cool slate, never black) */
  --shadow-sm: 0 4px 14px rgba(22, 24, 27, 0.06);
  --shadow: 0 10px 30px rgba(22, 24, 27, 0.09);
  --shadow-lg: 0 22px 60px rgba(10, 42, 94, 0.16);

  /* Layout */
  --maxw: 1180px;
  --maxw-narrow: 780px;
  --gutter: clamp(20px, 5vw, 68px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

/* Visible keyboard focus on every interactive element (a11y) */
a:focus-visible, button:focus-visible, .btn:focus-visible,
summary:focus-visible, [tabindex]:focus-visible,
input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 3px solid var(--blue-300);
  outline-offset: 2px;
  border-radius: var(--r-sm);
}
.hero a:focus-visible, .section--navy a:focus-visible,
.hero .btn:focus-visible, .cta-band .btn:focus-visible,
.form-hero a:focus-visible { outline-color: var(--gold-500); }

/* Skip-to-content link — visible only when focused */
.skip-link {
  position: absolute; left: 16px; top: -60px; z-index: 200;
  background: var(--navy-900); color: #fff; font-weight: 700;
  padding: 12px 20px; border-radius: var(--r-md);
  transition: top .18s ease;
}
.skip-link:focus { top: 12px; color: #fff; }

body {
  font-family: 'Poppins', system-ui, -apple-system, sans-serif;
  color: var(--slate-900);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: var(--blue-500); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--navy-700); }
::selection { background: var(--gold-500); color: var(--slate-900); }

/* ---------- Layout helpers ---------- */
.wrap { max-width: var(--maxw); margin: 0 auto; padding-inline: var(--gutter); }
.narrow { max-width: var(--maxw-narrow); margin-inline: auto; }
.section { padding-block: clamp(64px, 9vw, 124px); }
.section--tight { padding-block: clamp(48px, 6vw, 80px); }
.section--sand { background: var(--sand-50); }
.section--cool { background: var(--cool-50); }
.section--navy { background: var(--navy-900); color: var(--white); }
.center { text-align: center; }

/* ---------- Type ---------- */
.eyebrow {
  display: inline-block;
  font-size: 0.76rem; font-weight: 700; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--blue-500);
  margin-bottom: 18px;
}
.section--navy .eyebrow { color: var(--gold-500); }
.eyebrow.gold { color: var(--gold-600); }

h1, h2, h3, h4 { line-height: 1.08; font-weight: 700; letter-spacing: -0.02em; color: var(--slate-900); }
h1 { font-size: clamp(2.6rem, 6.4vw, 4.6rem); font-weight: 800; }
h2 { font-size: clamp(2rem, 4.4vw, 3.3rem); }
h3 { font-size: clamp(1.25rem, 2.2vw, 1.6rem); font-weight: 700; letter-spacing: -0.01em; }
.section--navy h1, .section--navy h2, .section--navy h3 { color: var(--white); }

.display-serif { } /* reserved */

.lead {
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  color: var(--slate-600); font-weight: 400; line-height: 1.6;
}
.section--navy .lead { color: rgba(255,255,255,0.82); }
.muted { color: var(--slate-400); }
.big-num { font-variant-numeric: tabular-nums; }

/* Gold achievement underline — the Fund's signature flourish */
.u-gold { position: relative; display: inline-block; }
.u-gold::after {
  content: ""; position: absolute; left: 0; bottom: -0.42em;
  width: 72px; height: 5px; border-radius: var(--r-pill);
  background: var(--gold-500);
}
.center .u-gold::after { left: 50%; transform: translateX(-50%); }

.block-head { max-width: 760px; margin-bottom: clamp(40px, 5vw, 64px); }
.center .block-head { margin-inline: auto; }
.block-head .lead { margin-top: 22px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: inherit; font-weight: 700; font-size: 1rem; line-height: 1;
  padding: 17px 32px; border-radius: var(--r-pill);
  border: 2px solid transparent; cursor: pointer;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn svg { width: 18px; height: 18px; }

.btn--primary { background: var(--gold-500); color: var(--slate-900); }
.btn--primary:hover { background: var(--gold-600); transform: translateY(-2px); box-shadow: 0 12px 28px rgba(226,169,59,0.4); color: var(--slate-900); }

.btn--secondary { background: var(--navy-900); color: var(--white); }
.btn--secondary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow); color: var(--white); }

.btn--ghost { background: transparent; border-color: var(--cool-200); color: var(--navy-900); }
.btn--ghost:hover { border-color: var(--navy-900); background: var(--navy-900); color: var(--white); }
.section--navy .btn--ghost, .hero .btn--ghost { border-color: rgba(255,255,255,0.35); color: var(--white); }
.section--navy .btn--ghost:hover, .hero .btn--ghost:hover { background: var(--white); color: var(--navy-900); border-color: var(--white); }

.btn--lg { padding: 19px 40px; font-size: 1.06rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,0.88); backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid var(--cool-200);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; height: 74px; gap: 20px; }
.brand-lockup { display: flex; align-items: center; gap: 12px; }
.brand-lockup img.crest { width: 34px; height: auto; flex: none; }
.brand-name { display: flex; flex-direction: column; line-height: 1.02; }
.brand-name .b1 { font-weight: 800; font-size: 1.12rem; color: var(--navy-900); letter-spacing: -0.02em; }
.brand-name .b2 { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--slate-500); margin-top: 2px; }
.nav { display: flex; align-items: center; gap: 32px; }
.nav a:not(.btn) { color: var(--slate-500); font-weight: 600; font-size: 0.95rem; }
.nav a:not(.btn):hover { color: var(--navy-900); }
.nav .btn { padding: 12px 24px; font-size: 0.92rem; }
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 6px; }

/* ---------- Hero ---------- */
.hero {
  position: relative; overflow: hidden; color: var(--white);
  background-color: var(--navy-900);
  background-image:
    linear-gradient(100deg, rgba(10,42,94,0.96) 0%, rgba(10,42,94,0.85) 42%, rgba(10,42,94,0.52) 100%),
    linear-gradient(180deg, rgba(7,31,69,0) 55%, rgba(7,31,69,0.6) 100%),
    url('assets/hero.jpg');
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-repeat: no-repeat;
  isolation: isolate;
}
/* crest watermark hidden on hero now that a photo carries the texture */
.hero .crest-watermark { display: none; }
.hero .wrap { padding-block: clamp(84px, 13vw, 156px); }
.hero-inner { max-width: 820px; }
.hero .kicker {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase;
  font-size: 0.78rem; color: var(--gold-500); margin-bottom: 22px;
}
.hero .kicker::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.hero h1 { color: var(--white); letter-spacing: -0.03em; }
.hero h1 .hl { color: var(--gold-500); }
.hero .lead { color: rgba(255,255,255,0.86); margin-top: 26px; max-width: 620px; }
.hero .btn-row { margin-top: 40px; }
.hero .pathway {
  margin-top: 40px; display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
  font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; font-size: 0.8rem;
  color: rgba(255,255,255,0.66);
}
.hero .pathway .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-500); }

/* ---------- Trust / logos strip ---------- */
.trustbar { background: var(--white); border-bottom: 1px solid var(--cool-200); }
.trustbar .wrap { display: flex; align-items: center; justify-content: center; gap: clamp(24px, 6vw, 72px); flex-wrap: wrap; padding-block: 26px; }
.trustbar .t-item { display: flex; align-items: center; gap: 10px; color: var(--slate-500); font-weight: 600; font-size: 0.92rem; }
.trustbar .t-item svg { width: 20px; height: 20px; color: var(--gold-600); flex: none; }

/* ---------- Stat strip ---------- */
.stats .grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(24px, 4vw, 48px); }
.stat { text-align: center; }
.stat .num { font-size: clamp(2.4rem, 5vw, 3.6rem); font-weight: 800; color: var(--navy-900); font-variant-numeric: tabular-nums; letter-spacing: -0.03em; line-height: 1; }
.stat .num .u { color: var(--gold-500); }
.stat .label { font-size: 0.9rem; font-weight: 600; color: var(--slate-500); margin-top: 12px; line-height: 1.4; }
.section--navy .stat .num { color: var(--white); }
.section--navy .stat .label { color: rgba(255,255,255,0.7); }

/* ---------- Editorial alternating module (FSF pattern) ---------- */
.module { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.module + .module { margin-top: clamp(56px, 8vw, 104px); }
.module.reverse .m-media { order: 2; }
.module .m-copy .eyebrow { margin-bottom: 16px; }
.module .m-copy h2 { margin-bottom: 20px; }
.module .m-copy p { color: var(--slate-600); font-size: 1.06rem; }
.module .m-copy p + p { margin-top: 16px; }
.module .m-copy .btn, .module .m-copy .link-more { margin-top: 26px; }
.link-more { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; color: var(--navy-900); }
.link-more svg { width: 16px; height: 16px; transition: transform .18s ease; }
.link-more:hover { color: var(--gold-600); }
.link-more:hover svg { transform: translateX(4px); }

.m-media { position: relative; }
.m-media img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--r-xl); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; }
.m-media.portrait img { aspect-ratio: 4/5; }
.m-media .badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--white); border-radius: var(--r-lg); box-shadow: var(--shadow);
  padding: 18px 24px; display: flex; align-items: center; gap: 14px; max-width: 78%;
}
.m-media .badge .bn { font-size: 1.9rem; font-weight: 800; color: var(--navy-900); line-height: 1; }
.m-media .badge .bl { font-size: 0.82rem; color: var(--slate-500); font-weight: 600; line-height: 1.3; }
.m-media .badge .crest { width: 40px; height: auto; }

/* ---------- Benefit cards (Dell four-pillar) ---------- */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 24px; }
.card {
  background: var(--white); border: 1px solid var(--cool-200);
  border-radius: var(--r-lg); padding: 34px 30px; box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.card .ic {
  width: 54px; height: 54px; border-radius: var(--r-md);
  background: var(--navy-900); color: var(--gold-500);
  display: flex; align-items: center; justify-content: center; margin-bottom: 22px;
}
.card .ic svg { width: 26px; height: 26px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--slate-600); font-size: 0.98rem; }
.card .tag { display: inline-block; margin-top: 14px; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--gold-600); }

/* ---------- Big offer callout ---------- */
.offer {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
  border-radius: var(--r-xl); color: var(--white); text-align: center;
  padding: clamp(48px, 7vw, 88px) clamp(28px, 5vw, 64px);
  position: relative; overflow: hidden;
}
.offer .amount { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 800; letter-spacing: -0.03em; line-height: 1.05; color: var(--white); }
.offer .amount .g { color: var(--gold-500); }
.offer .sub { color: rgba(255,255,255,0.8); font-size: clamp(1.05rem, 1.6vw, 1.25rem); margin-top: 18px; max-width: 560px; margin-inline: auto; }
.offer .fine { margin-top: 22px; font-size: 0.86rem; color: rgba(255,255,255,0.55); }

/* ---------- Who should apply (soft qualities) ---------- */
.qualities { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 20px; }
.quality { display: flex; gap: 16px; align-items: flex-start; }
.quality .qc {
  flex: none; width: 40px; height: 40px; border-radius: var(--r-pill);
  background: rgba(226,169,59,0.16); color: var(--gold-600);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.quality .qc svg { width: 20px; height: 20px; }
.quality h4 { font-size: 1.05rem; margin-bottom: 4px; }
.quality p { color: var(--slate-600); font-size: 0.95rem; }
.note-band {
  margin-top: 40px; background: var(--sand-100); border: 1px dashed var(--gold-500);
  border-radius: var(--r-md); padding: 20px 26px; color: var(--slate-600); font-size: 0.96rem;
}
.note-band strong { color: var(--navy-900); }

/* ---------- How to apply — steps ---------- */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; counter-reset: step; }
.step { position: relative; padding-top: 26px; border-top: 3px solid var(--cool-200); }
.step::before {
  counter-increment: step; content: counter(step, decimal-leading-zero);
  position: absolute; top: -0.2em; right: 0; font-size: 3.2rem; font-weight: 800;
  color: var(--cool-100); line-height: 1; letter-spacing: -0.04em; z-index: 0;
}
.step .n { position: relative; z-index: 1; font-weight: 700; color: var(--gold-600); letter-spacing: 0.1em; font-size: 0.78rem; text-transform: uppercase; }
.step h3 { position: relative; z-index: 1; margin: 8px 0 10px; }
.step p { position: relative; z-index: 1; color: var(--slate-600); font-size: 0.98rem; }

/* ---------- Timeline / rolling ---------- */
.rolling {
  display: flex; align-items: center; gap: 18px; flex-wrap: wrap;
  background: var(--white); border: 1px solid var(--cool-200); border-radius: var(--r-lg);
  padding: 24px 30px; box-shadow: var(--shadow-sm);
}
.rolling .pulse { flex: none; width: 12px; height: 12px; border-radius: 50%; background: var(--success); box-shadow: 0 0 0 0 rgba(52,133,71,0.5); animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(52,133,71,0.5); } 70% { box-shadow: 0 0 0 12px rgba(52,133,71,0); } 100% { box-shadow: 0 0 0 0 rgba(52,133,71,0); } }
.rolling .r-text strong { color: var(--navy-900); font-weight: 700; }
.rolling .r-text { color: var(--slate-600); }

/* ---------- Scholar story / quote ---------- */
.quote-card {
  background: var(--white); border-radius: var(--r-xl); padding: clamp(32px, 5vw, 60px);
  box-shadow: var(--shadow-lg); border: 1px solid var(--cool-200); position: relative;
}
.quote-card .mark { font-size: 4rem; line-height: 0.6; color: var(--gold-500); font-weight: 800; }
.quote-card blockquote { font-size: clamp(1.25rem, 2.4vw, 1.75rem); font-weight: 600; color: var(--slate-900); line-height: 1.42; letter-spacing: -0.01em; margin-top: 12px; }
.quote-card .by { margin-top: 26px; font-weight: 700; color: var(--navy-900); }
.quote-card .by span { display: block; color: var(--slate-600); font-weight: 400; font-size: 0.94rem; margin-top: 2px; }

/* ---------- FAQ accordion ---------- */
.faq { max-width: 820px; margin-inline: auto; }
.faq details {
  border-bottom: 1px solid var(--cool-200); padding: 6px 0;
}
.faq summary {
  list-style: none; cursor: pointer; padding: 22px 44px 22px 4px; position: relative;
  font-weight: 700; font-size: 1.1rem; color: var(--navy-900);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; position: absolute; right: 6px; top: 50%; transform: translateY(-50%);
  font-size: 1.6rem; font-weight: 400; color: var(--gold-600); transition: transform .2s ease;
}
.faq details[open] summary::after { content: "–"; }
.faq .a { padding: 0 44px 24px 4px; color: var(--slate-600); font-size: 1rem; }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-900));
  color: var(--white); border-radius: var(--r-xl); padding: clamp(48px, 7vw, 84px) clamp(28px, 5vw, 64px);
  text-align: center; position: relative; overflow: hidden; isolation: isolate;
}
.cta-band .crest-watermark { position: absolute; right: -4%; bottom: -20%; width: 360px; opacity: 0.07; z-index: -1; filter: brightness(0) invert(1); }
.cta-band h2 { color: var(--white); }
.cta-band .lead { color: rgba(255,255,255,0.85); margin: 18px auto 34px; max-width: 580px; }

/* ---------- Application form ---------- */
.form-hero { background: var(--navy-900); color: var(--white); }
.form-hero .wrap { padding-block: clamp(56px, 8vw, 88px); }
.form-hero h1 { color: var(--white); max-width: 720px; }
.form-hero .lead { color: rgba(255,255,255,0.82); max-width: 620px; margin-top: 18px; }
.form-hero .meta-row { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 28px; }
.form-hero .meta-row .mi { display: flex; align-items: center; gap: 8px; font-size: 0.9rem; color: rgba(255,255,255,0.8); font-weight: 600; }
.form-hero .meta-row .mi svg { width: 18px; height: 18px; color: var(--gold-500); }

.form-wrap { max-width: 820px; margin-inline: auto; }
.form-card {
  background: var(--white); border: 1px solid var(--cool-200);
  border-radius: var(--r-xl); box-shadow: var(--shadow);
  padding: clamp(28px, 5vw, 56px);
}
.progress { display: flex; gap: 8px; margin-bottom: 40px; }
.progress .pstep { flex: 1; height: 5px; border-radius: var(--r-pill); background: var(--cool-200); }
.progress .pstep.on { background: var(--gold-500); }

.fieldset { border: 0; padding: 0; margin: 0 0 44px; }
.fieldset:last-of-type { margin-bottom: 0; }
.fieldset legend { display: flex; align-items: center; gap: 12px; font-weight: 800; font-size: 1.3rem; color: var(--navy-900); padding: 0; margin-bottom: 6px; letter-spacing: -0.02em; }
.fieldset legend .step-dot {
  display: inline-flex; align-items: center; justify-content: center;
  width: 32px; height: 32px; border-radius: var(--r-pill);
  background: var(--gold-500); color: var(--slate-900); font-size: 0.95rem; flex: none;
}
.fieldset .legend-note { color: var(--slate-600); font-size: 0.94rem; margin: 0 0 24px 44px; }
.field-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 22px; }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label { font-weight: 600; font-size: 0.92rem; color: var(--slate-900); }
.field label .req { color: var(--danger); }
.field input, .field select, .field textarea {
  font-family: inherit; font-size: 1rem; color: var(--slate-900);
  padding: 13px 15px; border: 1.5px solid var(--cool-200);
  border-radius: var(--r-md); background: var(--white); width: 100%;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field textarea { resize: vertical; min-height: 130px; line-height: 1.55; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--blue-300); box-shadow: 0 0 0 4px rgba(123,175,212,0.28);
}
.field .hint { font-size: 0.82rem; color: var(--slate-600); }
.field .count { font-size: 0.78rem; color: var(--slate-600); align-self: flex-end; }
.form-divider { height: 1px; background: var(--cool-200); border: 0; margin: 40px 0; }
.form-actions { margin-top: 40px; display: flex; flex-direction: column; gap: 16px; align-items: flex-start; }
.form-actions .note { font-size: 0.86rem; color: var(--slate-600); }
.consent { display: flex; gap: 12px; align-items: flex-start; font-size: 0.9rem; color: var(--slate-600); }
.consent input { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--gold-600); }

/* Success state */
.form-success {
  display: none; text-align: center; padding: clamp(44px, 7vw, 80px);
  background: var(--white); border: 1px solid var(--cool-200);
  border-radius: var(--r-xl); box-shadow: var(--shadow);
}
.form-success.show { display: block; }
.form-success .check {
  width: 72px; height: 72px; border-radius: var(--r-pill);
  background: var(--success); color: var(--white);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 24px;
}
.form-success .check svg { width: 36px; height: 36px; }
.form-success h2 { margin-bottom: 14px; }
.form-success p { color: var(--slate-600); max-width: 480px; margin-inline: auto; }
.field.error input, .field.error select, .field.error textarea { border-color: var(--danger); }
.field .err-msg { display: none; color: var(--danger); font-size: 0.82rem; }
.field.error .err-msg { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: var(--slate-900); color: rgba(255,255,255,0.68); padding: 64px 0 34px; }
.site-footer .cols { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; }
.site-footer .brand-lockup img.crest { width: 40px; }
.site-footer .brand-name .b1 { color: var(--white); }
.site-footer p { font-size: 0.92rem; margin-top: 16px; max-width: 300px; line-height: 1.6; }
.site-footer h4 { color: var(--white); font-size: 0.78rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer a { color: rgba(255,255,255,0.68); display: block; margin-bottom: 10px; font-size: 0.92rem; }
.site-footer a:hover { color: var(--gold-500); }
.site-footer .legal { margin-top: 48px; padding-top: 26px; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.82rem; color: rgba(255,255,255,0.48); display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; }

/* ---------- Reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .pulse { animation: none; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .nav { position: fixed; inset: 74px 0 auto 0; background: var(--white); flex-direction: column; gap: 0; padding: 10px 0 18px; border-bottom: 1px solid var(--cool-200); box-shadow: var(--shadow); display: none; }
  .nav.open { display: flex; }
  .nav a:not(.btn) { width: 100%; text-align: center; padding: 14px 0; }
  .nav .btn { margin-top: 10px; }
  .nav-toggle { display: block; }
  .module, .module.reverse { grid-template-columns: 1fr; }
  .module.reverse .m-media { order: 0; }
  .m-media .badge { left: 16px; bottom: -18px; }
  .steps { grid-template-columns: 1fr; }
  .stats .grid { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .site-footer .cols { grid-template-columns: 1fr 1fr; gap: 32px; }
  .field-grid { grid-template-columns: 1fr; }
}
@media (max-width: 520px) {
  .stats .grid { grid-template-columns: 1fr 1fr; }
  .site-footer .cols { grid-template-columns: 1fr; }
  .btn { width: 100%; }
  .hero .btn-row .btn, .cta-band .btn { width: auto; }
}
