/* ==========================================================================
   ALIZA KNOWLEDGE FOUNDATION — Core Stylesheet
   Lightweight, hand-authored design system (no framework runtime needed)
   Palette: brand navy base + warm gold accents + red highlight (matches logo)
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Brand navy (from the shield) */
  --navy-900: #0A1B43;
  --navy-800: #12245C;
  --navy-700: #1B2F74;
  --navy-600: #29408F;
  --navy-100: #E7EBF6;

  /* Brand gold (from the stars / schoolhouse) — primary accent */
  --gold-600: #B07A12;
  --gold-500: #E2A22C;
  --gold-400: #F0B63E;
  --gold-300: #F8CE73;
  --gold-50:  #FBF3E0;

  /* Brand red (from the ribbon) — used for the donate / support call to action */
  --red-600: #B0141F;
  --red-500: #DB1F2C;
  --red-400: #EF3A46;

  /* Soft sky (from the centre disc) */
  --sky-100: #DCEAF1;

  --ink:    #15203A;
  --slate:  #4B566F;
  --muted:  #76829B;
  --line:   #E3E7F0;

  --paper:  #FFFFFF;
  --mist:   #F4F6FB;
  --mist-2: #ECEFF7;

  --shadow-sm: 0 1px 2px rgba(10,27,67,.06), 0 2px 8px rgba(10,27,67,.05);
  --shadow-md: 0 8px 24px rgba(10,27,67,.10), 0 2px 6px rgba(10,27,67,.06);
  --shadow-lg: 0 24px 60px rgba(10,27,67,.16), 0 8px 24px rgba(10,27,67,.10);
  --shadow-gold: 0 10px 28px rgba(226,162,44,.40);
  --shadow-red: 0 10px 26px rgba(219,31,44,.34);

  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;

  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Hanken Grotesk", -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;

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

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  overflow-x: hidden;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img, svg, video { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; padding: 0; }
:focus-visible { outline: 3px solid var(--gold-400); outline-offset: 2px; border-radius: 4px; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.12; color: var(--navy-800); letter-spacing: -0.01em; }

.container { width: 100%; max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* ---------- Utility ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-body); font-weight: 700; font-size: .78rem;
  letter-spacing: .16em; text-transform: uppercase; color: var(--gold-600);
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: var(--gold-500); border-radius: 2px; }
.eyebrow.center::before { display: none; }

.section { padding-block: clamp(64px, 9vw, 120px); }
.section-head { max-width: 720px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-title { font-size: clamp(1.9rem, 4.4vw, 3rem); margin-top: 18px; }
.section-lead { color: var(--slate); font-size: 1.08rem; margin-top: 18px; }

.lead { font-size: 1.15rem; color: var(--slate); }
.text-accent { color: var(--gold-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-weight: 700; font-size: .98rem; letter-spacing: .01em; white-space: nowrap;
  padding: 14px 26px; border-radius: 999px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s var(--ease), color .25s var(--ease);
  will-change: transform;
}
.btn svg { width: 18px; height: 18px; }
.btn-primary { background: var(--gold-500); color: var(--navy-900); box-shadow: var(--shadow-gold); }
.btn-primary:hover { background: var(--gold-600); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(176,122,18,.42); }
.btn-navy { background: var(--navy-800); color: #fff; }
.btn-donate { background: var(--red-500); color: #fff; box-shadow: var(--shadow-red); }
.btn-donate:hover { background: var(--red-600); transform: translateY(-2px); box-shadow: 0 16px 34px rgba(176,20,31,.42); }
.btn-donate svg { fill: currentColor; }
.btn-navy:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost { background: transparent; color: var(--navy-800); border: 1.5px solid var(--line); }
.btn-ghost:hover { border-color: var(--navy-800); transform: translateY(-2px); }
.btn-light { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.30); backdrop-filter: blur(4px); }
.btn-light:hover { background: rgba(255,255,255,.22); transform: translateY(-2px); }
.btn-lg { padding: 17px 34px; font-size: 1.05rem; }
.btn-block { width: 100%; }

/* ==========================================================================
   TOP BAR + HEADER
   ========================================================================== */
.topbar {
  background: var(--navy-900); color: #C7D6E6; font-size: .85rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.topbar .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 42px; flex-wrap: wrap; }
.topbar a { color: #C7D6E6; transition: color .2s; display: inline-flex; align-items: center; gap: 7px; }
.topbar a:hover { color: #fff; }
.topbar svg { width: 15px; height: 15px; color: var(--gold-400); }
.topbar .tb-group { display: flex; align-items: center; gap: 22px; flex-wrap: wrap; }
.topbar .tb-tag { color: var(--gold-300); font-weight: 600; letter-spacing: .04em; }

.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255,255,255,.86);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.site-header.scrolled { box-shadow: var(--shadow-md); background: rgba(255,255,255,.95); }
.nav { display: flex; align-items: center; justify-content: space-between; gap: 18px; min-height: 78px; transition: min-height .3s var(--ease); }
.site-header.scrolled .nav { min-height: 64px; }
.brand { display: inline-flex; align-items: center; gap: 13px; flex: none; }
.brand img { height: 54px; width: auto; transition: height .3s var(--ease); }
.site-header.scrolled .brand img { height: 46px; }
.brand-name { display: flex; flex-direction: column; line-height: 1.04; white-space: nowrap; }
.brand-name .bn-1 { font-family: var(--font-display); font-weight: 600; font-size: 1.14rem; color: var(--navy-800); letter-spacing: -0.01em; white-space: nowrap; }
.brand-name .bn-2 { font-family: var(--font-body); font-weight: 700; font-size: .74rem; letter-spacing: .22em; text-transform: uppercase; color: var(--gold-600); }
@media (max-width: 420px) { .brand-name { display: none; } }

.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a {
  position: relative; font-weight: 600; font-size: .98rem; color: var(--navy-800);
  padding: 9px 12px; border-radius: 8px; transition: color .2s, background .2s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: 4px; height: 2px;
  background: var(--gold-500); border-radius: 2px; transform: scaleX(0); transform-origin: left;
  transition: transform .28s var(--ease);
}
.nav-links a:hover { color: var(--gold-600); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-links a.active { color: var(--navy-800); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-actions .btn { flex: none; padding: 11px 20px; font-size: .92rem; gap: 8px; }
.nav-actions .btn svg { width: 17px; height: 17px; }

.nav-check { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 12px; border: 1.5px solid var(--line); position: relative; cursor: pointer; background: #fff; }
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; position: absolute; left: 50%; width: 20px; height: 2px; background: var(--navy-800);
  border-radius: 2px; transform: translateX(-50%); transition: .3s var(--ease);
}
.nav-toggle span { top: 50%; transform: translate(-50%,-50%); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
body.menu-open .nav-toggle span, body:has(.nav-check:checked) .nav-toggle span { background: transparent; }
body.menu-open .nav-toggle span::before, body:has(.nav-check:checked) .nav-toggle span::before { top: 0; transform: translateX(-50%) rotate(45deg); }
body.menu-open .nav-toggle span::after, body:has(.nav-check:checked) .nav-toggle span::after { top: 0; transform: translateX(-50%) rotate(-45deg); }
/* When the menu is open, lift the toggle (now an X) above the panel so it stays tappable */
body.menu-open .nav-toggle, body:has(.nav-check:checked) .nav-toggle { position: fixed; top: 16px; right: 16px; z-index: 80; background: #fff; box-shadow: var(--shadow-md); }

/* ==========================================================================
   HERO CAROUSEL
   ========================================================================== */
.hero { position: relative; }
.carousel { position: relative; overflow: hidden; height: clamp(520px, 78vh, 760px); }
.slides { display: flex; height: 100%; transition: transform .8s var(--ease); }
.slide {
  position: relative; min-width: 100%; height: 100%; display: flex; align-items: center;
  background-size: cover; background-position: center;
}
/* Designed brand-navy backdrops with a warm gold glow — drop in real photos via .slide-photo (see notes) */
.slide-1 { background:
  radial-gradient(115% 115% at 86% 12%, rgba(240,182,62,.30), transparent 52%),
  radial-gradient(90% 90% at 0% 100%, rgba(43,47,116,.55), transparent 60%),
  linear-gradient(135deg, #0A1B43 0%, #12245C 48%, #1B2F74 100%); }
.slide-2 { background:
  radial-gradient(115% 115% at 12% 18%, rgba(226,162,44,.26), transparent 52%),
  radial-gradient(90% 90% at 100% 100%, rgba(27,47,116,.55), transparent 60%),
  linear-gradient(135deg, #12245C 0%, #0A1B43 60%, #1B2F74 100%); }
.slide-3 { background:
  radial-gradient(125% 120% at 78% 86%, rgba(240,182,62,.30), transparent 52%),
  radial-gradient(90% 90% at 0% 0%, rgba(41,64,143,.5), transparent 60%),
  linear-gradient(160deg, #0A1B43 0%, #1B2F74 62%, #12245C 100%); }
.slide-4 { background:
  radial-gradient(120% 125% at 26% 82%, rgba(226,162,44,.26), transparent 52%),
  radial-gradient(90% 90% at 100% 0%, rgba(41,64,143,.5), transparent 60%),
  linear-gradient(135deg, #12245C 0%, #0A1B43 55%, #29408F 100%); }
.slide::before { /* dotted texture overlay for depth */
  content: ""; position: absolute; inset: 0; opacity: .5;
  background-image: radial-gradient(rgba(255,255,255,.07) 1px, transparent 1.6px);
  background-size: 26px 26px; pointer-events: none;
}
.slide-photo { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.slide-photo + .slide-scrim { content: ""; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(90deg, rgba(10,27,67,.90) 0%, rgba(10,27,67,.62) 55%, rgba(10,27,67,.30) 100%); }

.slide-inner {
  position: relative; z-index: 2; width: 100%; color: #fff; padding-block: 48px;
  display: grid; grid-template-columns: 1.08fr .92fr; gap: clamp(24px, 5vw, 64px); align-items: center;
}
.slide-copy { max-width: 620px; }
.slide-badge {
  display: inline-flex; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700;
  letter-spacing: .15em; text-transform: uppercase; color: var(--gold-300);
  background: rgba(226,162,44,.14); border: 1px solid rgba(240,182,62,.45);
  padding: 7px 14px; border-radius: 999px;
}
.slide h2 { color: #fff; font-size: clamp(2.1rem, 5vw, 3.7rem); margin-top: 20px; }
.slide h2 .hl { color: var(--gold-300); font-style: italic; }
.slide p { color: #DCE4F3; font-size: clamp(1rem, 2vw, 1.18rem); margin-top: 18px; max-width: 540px; }
.slide-cta { display: flex; gap: 14px; margin-top: 32px; flex-wrap: wrap; }

/* Hero emblem panel (fills the space elegantly without a photo) */
.slide-emblem { position: relative; display: grid; place-items: center; min-height: 1px; }
.emblem-ring {
  position: relative; width: clamp(260px, 30vw, 380px); aspect-ratio: 1; border-radius: 50%;
  display: grid; place-items: center;
  background: radial-gradient(circle at 50% 42%, rgba(220,234,241,.95), rgba(220,234,241,.78) 58%, rgba(220,234,241,0) 72%);
  box-shadow: 0 30px 80px rgba(0,0,0,.35);
}
.emblem-ring::before {
  content: ""; position: absolute; inset: -14px; border-radius: 50%;
  border: 2px dashed rgba(248,206,115,.55);
  animation: spin 60s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .emblem-ring::before { animation: none; } }
@keyframes spin { to { transform: rotate(360deg); } }
.emblem-ring img { width: 78%; height: auto; filter: drop-shadow(0 10px 18px rgba(10,27,67,.30)); }
.emblem-tag {
  position: absolute; bottom: -6px; left: 50%; transform: translateX(-50%);
  font-family: var(--font-display); font-style: italic; font-size: 1.15rem;
  color: var(--navy-900); background: var(--gold-400); padding: 6px 22px; border-radius: 999px;
  box-shadow: var(--shadow-md); white-space: nowrap;
}

/* Hero info strip below the carousel */
.hero-strip { background: var(--navy-900); border-top: 3px solid var(--gold-500); }
.hero-strip .container { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 14px 40px; padding-block: 18px; }
.hero-strip .hs-item { display: inline-flex; align-items: center; gap: 10px; color: #D7DEF2; font-weight: 600; font-size: .96rem; }
.hero-strip .hs-item svg { width: 18px; height: 18px; color: var(--gold-400); flex: none; }
.hero-strip .hs-item strong { color: #fff; }
.hero-strip .hs-tag { color: var(--gold-300); font-family: var(--font-display); font-style: italic; font-size: 1.05rem; }

/* arrows + dots */
.car-btn {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 5;
  width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center;
  background: rgba(255,255,255,.12); border: 1.5px solid rgba(255,255,255,.35);
  color: #fff; backdrop-filter: blur(6px); transition: background .25s, transform .25s;
}
.car-btn:hover { background: rgba(255,255,255,.25); }
.car-prev { left: clamp(12px, 3vw, 32px); }
.car-next { right: clamp(12px, 3vw, 32px); }
.car-btn svg { width: 22px; height: 22px; }
.car-dots { position: absolute; left: 50%; bottom: 26px; transform: translateX(-50%); z-index: 5; display: flex; gap: 10px; }
.car-dot { width: 11px; height: 11px; border-radius: 999px; background: rgba(255,255,255,.4); transition: .3s var(--ease); }
.car-dot.active { width: 34px; background: var(--gold-400); }

/* ==========================================================================
   WELCOME / VISION
   ========================================================================== */
.welcome { background: var(--paper); position: relative; }
.welcome-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(36px, 6vw, 80px); align-items: center; }
.welcome-visual { position: relative; }
.welcome-card {
  background: linear-gradient(150deg, var(--navy-800), var(--navy-700));
  border-radius: var(--r-xl); padding: 40px; color: #fff; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.welcome-card::after {
  content: ""; position: absolute; right: -40px; bottom: -40px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(226,162,44,.45), transparent 70%);
}
.welcome-card .wc-stat { display: flex; align-items: baseline; gap: 10px; }
.welcome-card .wc-num { font-family: var(--font-display); font-size: 3rem; color: var(--gold-300); font-weight: 600; }
.welcome-card .wc-label { color: #C7D6E6; }
.welcome-card hr { border: none; border-top: 1px solid rgba(255,255,255,.14); margin: 24px 0; }
.welcome-card .wc-list li { display: flex; gap: 12px; padding: 9px 0; color: #E2EBF4; }
.welcome-card .wc-list svg { width: 20px; height: 20px; color: var(--gold-300); flex: none; margin-top: 3px; }

/* ==========================================================================
   PILLARS GRID (cards)
   ========================================================================== */
.bg-mist { background: var(--mist); }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 56px; }
.pillar {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 28px; box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
  position: relative; overflow: hidden;
}
.pillar::before {
  content: ""; position: absolute; left: 0; top: 0; height: 4px; width: 100%;
  background: linear-gradient(90deg, var(--gold-500), var(--gold-300));
  transform: scaleX(0); transform-origin: left; transition: transform .4s var(--ease);
}
.pillar:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.pillar:hover::before { transform: scaleX(1); }
.pillar-icon {
  width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center;
  background: var(--gold-50); color: var(--gold-600); margin-bottom: 22px;
  transition: background .35s var(--ease), color .35s var(--ease);
}
.pillar:hover .pillar-icon { background: var(--gold-500); color: var(--navy-900); }
.pillar-icon svg { width: 30px; height: 30px; }
.pillar h3 { font-size: 1.28rem; }
.pillar p { color: var(--slate); margin-top: 12px; font-size: .98rem; }
.pillar .more { display: inline-flex; align-items: center; gap: 6px; margin-top: 18px; color: var(--gold-600); font-weight: 700; font-size: .92rem; }
.pillar .more svg { width: 16px; height: 16px; transition: transform .25s; }
.pillar:hover .more svg { transform: translateX(4px); }

/* ==========================================================================
   OUR SCHOOL feature
   ========================================================================== */
.school-feature { background: linear-gradient(150deg, var(--navy-900), var(--navy-800) 60%, var(--navy-700)); color: #fff; position: relative; overflow: hidden; }
.school-feature::before {
  content: ""; position: absolute; inset: 0; opacity: .45;
  background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.6px); background-size: 28px 28px;
}
.school-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.school-feature h2 { color: #fff; font-size: clamp(1.9rem, 4.4vw, 2.9rem); }
.school-feature .eyebrow { color: var(--gold-300); }
.school-feature .eyebrow::before { background: var(--gold-300); }
.school-feature p { color: #CFDBE8; margin-top: 18px; font-size: 1.06rem; }
.school-portal-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--r-xl); padding: 40px; backdrop-filter: blur(6px);
}
.school-portal-card .sp-icon { width: 64px; height: 64px; border-radius: 18px; background: var(--gold-500); display: grid; place-items: center; box-shadow: var(--shadow-gold); }
.school-portal-card .sp-icon svg { width: 32px; height: 32px; color: var(--navy-900); }
.school-portal-card h3 { color: #fff; font-size: 1.5rem; margin-top: 22px; }
.school-portal-card p { color: #CFDBE8; margin-top: 10px; }
.sp-row { display: flex; gap: 14px; margin-top: 26px; flex-wrap: wrap; }

/* ==========================================================================
   IMPACT STRIP
   ========================================================================== */
.impact { background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); color: #fff; }
.impact .container { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding-block: 54px; }
.impact-item { text-align: center; }
.impact-num { font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.2rem); font-weight: 600; line-height: 1; }
.impact-label { margin-top: 8px; color: rgba(255,255,255,.9); font-weight: 600; letter-spacing: .02em; }
.impact-divider { }

/* ==========================================================================
   CTA BAND
   ========================================================================== */
.cta-band { background: var(--mist); }
.cta-inner {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700));
  border-radius: var(--r-xl); padding: clamp(40px, 6vw, 72px); text-align: center; color: #fff;
  position: relative; overflow: hidden; box-shadow: var(--shadow-lg);
}
.cta-inner::before { content: ""; position: absolute; left: -60px; top: -60px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(226,162,44,.4), transparent 70%); }
.cta-inner::after { content: ""; position: absolute; right: -60px; bottom: -60px; width: 260px; height: 260px; background: radial-gradient(circle, rgba(240,182,62,.3), transparent 70%); }
.cta-inner > * { position: relative; z-index: 2; }
.cta-inner h2 { color: #fff; font-size: clamp(1.9rem, 4.6vw, 2.9rem); }
.cta-inner p { color: #CFDBE8; max-width: 560px; margin: 16px auto 0; font-size: 1.08rem; }
.cta-actions { display: flex; gap: 16px; justify-content: center; margin-top: 32px; flex-wrap: wrap; }

/* ==========================================================================
   PAGE HERO (interior pages)
   ========================================================================== */
.page-hero { background: linear-gradient(150deg, var(--navy-900), var(--navy-800) 70%); color: #fff; position: relative; overflow: hidden; }
.page-hero::before { content: ""; position: absolute; inset: 0; opacity: .4; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.6px); background-size: 26px 26px; }
.page-hero::after { content: ""; position: absolute; right: -80px; top: -60px; width: 320px; height: 320px; background: radial-gradient(circle, rgba(226,162,44,.32), transparent 70%); }
.page-hero .container { position: relative; z-index: 2; padding-block: clamp(54px, 9vw, 96px); }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 5.4vw, 3.6rem); max-width: 760px; }
.page-hero .eyebrow { color: var(--gold-300); }
.page-hero .eyebrow::before { background: var(--gold-300); }
.page-hero p { color: #CFDBE8; max-width: 620px; margin-top: 18px; font-size: 1.12rem; }
.crumbs { font-size: .9rem; color: #9DB3C7; margin-bottom: 18px; }
.crumbs a:hover { color: var(--gold-300); }
.crumbs span { color: var(--gold-300); }

/* ==========================================================================
   GENERIC CONTENT BLOCKS
   ========================================================================== */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; }
.prose p { color: var(--slate); margin-top: 16px; }
.prose p:first-child { margin-top: 0; }

.media-frame {
  border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-lg);
  background: linear-gradient(150deg, var(--navy-800), var(--navy-700));
  aspect-ratio: 4 / 3; display: grid; place-items: center; position: relative; color: #9FB6CC;
}
.media-frame.tall { aspect-ratio: 3 / 4; }
.media-frame::before { content: ""; position: absolute; inset: 0; opacity: .5; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.6px); background-size: 24px 24px; }
.media-frame .ph { position: relative; z-index: 2; text-align: center; padding: 24px; }
.media-frame .ph svg { width: 56px; height: 56px; margin: 0 auto 14px; color: var(--gold-300); }
.media-frame .ph small { display: block; margin-top: 6px; color: #7E93AB; font-size: .8rem; }
.media-frame img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 3; }
.media-frame.poster { aspect-ratio: 3 / 2; background: #fff; }

/* value cards */
.values { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.value-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.value-card .v-icon { width: 54px; height: 54px; border-radius: 14px; background: var(--gold-50); color: var(--gold-600); display: grid; place-items: center; margin-bottom: 18px; }
.value-card .v-icon svg { width: 27px; height: 27px; }
.value-card h3 { font-size: 1.2rem; }
.value-card p { color: var(--slate); margin-top: 10px; font-size: .96rem; }

/* mission / vision two-up */
.mv { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 48px; }
.mv-card { border-radius: var(--r-lg); padding: 38px; position: relative; overflow: hidden; }
.mv-card.mission { background: linear-gradient(150deg, var(--navy-800), var(--navy-700)); color: #fff; }
.mv-card.vision { background: var(--gold-50); border: 1px solid var(--gold-300); }
.mv-card .mv-ic { width: 56px; height: 56px; border-radius: 15px; display: grid; place-items: center; margin-bottom: 20px; }
.mv-card.mission .mv-ic { background: rgba(226,162,44,.18); color: var(--gold-300); }
.mv-card.vision .mv-ic { background: var(--gold-500); color: var(--navy-900); }
.mv-card .mv-ic svg { width: 28px; height: 28px; }
.mv-card.mission h3 { color: #fff; }
.mv-card h3 { font-size: 1.5rem; }
.mv-card.mission p { color: #CFDBE8; }
.mv-card p { color: var(--slate); margin-top: 14px; font-size: 1.04rem; }

/* founder message */
.founder { display: grid; grid-template-columns: 320px 1fr; gap: clamp(32px, 5vw, 60px); align-items: center; }
.founder-portrait {
  border-radius: var(--r-xl); aspect-ratio: 1; background: linear-gradient(150deg, var(--navy-800), var(--navy-700));
  display: grid; place-items: center; box-shadow: var(--shadow-lg); position: relative; overflow: hidden;
}
.founder-portrait::before { content: ""; position: absolute; inset: 0; opacity: .5; background-image: radial-gradient(rgba(255,255,255,.06) 1px, transparent 1.6px); background-size: 22px 22px; }
.founder-portrait .fp { position: relative; z-index: 2; text-align: center; color: #9FB6CC; }
.founder-portrait .fp .initials { font-family: var(--font-display); font-size: 3.4rem; color: var(--gold-300); }
.founder-portrait img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; z-index: 2; }
.founder blockquote { font-family: var(--font-display); font-size: clamp(1.3rem, 3vw, 1.9rem); line-height: 1.4; color: var(--navy-800); position: relative; }
.founder blockquote::before { content: "\201C"; font-family: var(--font-display); font-size: 5rem; color: var(--gold-300); line-height: 0; position: absolute; top: 24px; left: -6px; opacity: .5; }
.founder .sig { margin-top: 26px; }
.founder .sig strong { display: block; color: var(--navy-800); font-size: 1.1rem; }
.founder .sig span { color: var(--muted); }
.founder + .founder { margin-top: clamp(40px, 6vw, 72px); }
.founder.flip { grid-template-columns: 1fr 320px; }
.founder.flip .founder-portrait { background: linear-gradient(135deg, var(--gold-600), var(--gold-500)); }
.founder.flip .founder-portrait .fp { color: #6B4B12; }
.founder.flip .founder-portrait .fp .initials { color: #fff; }

/* ==========================================================================
   PROGRAMS — detailed alternating rows
   ========================================================================== */
.prog-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 6vw, 72px); align-items: center; padding-block: clamp(40px, 6vw, 72px); border-bottom: 1px solid var(--line); }
.prog-row:last-child { border-bottom: none; }
.prog-row.flip .prog-text { order: 2; }
.prog-tag { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--gold-600); background: var(--gold-50); padding: 7px 14px; border-radius: 999px; }
.prog-row h2 { font-size: clamp(1.6rem, 3.6vw, 2.3rem); margin-top: 18px; }
.prog-row p { color: var(--slate); margin-top: 16px; }
.prog-list { margin-top: 22px; display: grid; gap: 12px; }
.prog-list li { display: flex; gap: 12px; color: var(--ink); }
.prog-list svg { width: 22px; height: 22px; color: var(--gold-500); flex: none; margin-top: 3px; }

/* ==========================================================================
   SCHOOL CORNER
   ========================================================================== */
.facilities { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.facility { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 30px; box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.facility:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.facility .f-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--gold-50); color: var(--gold-600); display: grid; place-items: center; margin-bottom: 18px; }
.facility .f-icon svg { width: 26px; height: 26px; }
.facility h3 { font-size: 1.16rem; }
.facility p { color: var(--slate); margin-top: 10px; font-size: .95rem; }

.portal-banner {
  background: linear-gradient(135deg, var(--navy-800), var(--navy-700)); color: #fff;
  border-radius: var(--r-xl); padding: clamp(36px, 5vw, 56px); display: grid;
  grid-template-columns: 1fr auto; gap: 32px; align-items: center; box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.portal-banner::after { content: ""; position: absolute; right: -50px; top: -50px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(226,162,44,.42), transparent 70%); }
.portal-banner > * { position: relative; z-index: 2; }
.portal-banner h2 { color: #fff; font-size: clamp(1.6rem, 4vw, 2.4rem); }
.portal-banner p { color: #CFDBE8; margin-top: 12px; max-width: 520px; }
.portal-roles { display: flex; gap: 10px; margin-top: 20px; flex-wrap: wrap; }
.portal-roles span { display: inline-flex; align-items: center; gap: 8px; font-size: .9rem; font-weight: 600; color: #D6E2EE; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16); padding: 8px 14px; border-radius: 999px; }
.portal-roles svg { width: 16px; height: 16px; color: var(--gold-300); }

/* ==========================================================================
   CONTACT
   ========================================================================== */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-info-card { display: flex; gap: 18px; padding: 22px; border: 1px solid var(--line); border-radius: var(--r-md); background: var(--paper); box-shadow: var(--shadow-sm); transition: transform .3s var(--ease), box-shadow .3s var(--ease); margin-bottom: 18px; }
.contact-info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-info-card .ci-ic { width: 50px; height: 50px; border-radius: 13px; background: var(--gold-50); color: var(--gold-600); display: grid; place-items: center; flex: none; }
.contact-info-card .ci-ic svg { width: 24px; height: 24px; }
.contact-info-card h3 { font-size: 1.05rem; font-family: var(--font-body); font-weight: 700; color: var(--navy-800); }
.contact-info-card p, .contact-info-card a { color: var(--slate); font-size: .98rem; margin-top: 4px; display: block; }
.contact-info-card a:hover { color: var(--gold-600); }

.form-card { background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-xl); padding: clamp(28px, 4vw, 44px); box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-top: 18px; }
.field:first-child { margin-top: 0; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--navy-800); margin-bottom: 8px; }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  font: inherit; font-size: .98rem; color: var(--ink); background: var(--mist); transition: border-color .2s, background .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus, .field select:focus { outline: none; border-color: var(--gold-500); background: #fff; box-shadow: 0 0 0 4px rgba(226,162,44,.12); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: 16px; }
.form-success { display: none; margin-top: 16px; padding: 14px 18px; background: var(--gold-50); border: 1px solid var(--gold-300); border-radius: var(--r-sm); color: var(--gold-600); font-weight: 600; }
.form-success.show { display: block; }
.form-error { display: none; margin-top: 16px; padding: 14px 18px; background: #FDECEC; border: 1px solid var(--red-400); border-radius: var(--r-sm); color: var(--red-600); font-weight: 600; }
.form-error.show { display: block; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

.map-frame { border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--shadow-md); border: 1px solid var(--line); }
.map-frame iframe { display: block; width: 100%; height: 420px; border: 0; }

/* ==========================================================================
   SCHOOL EVENTS GALLERY (slideshow)
   ========================================================================== */
.gallery { max-width: 1000px; margin: 48px auto 0; }
.gallery-stage {
  position: relative; aspect-ratio: 16 / 10; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--shadow-lg); background: linear-gradient(150deg, var(--navy-800), var(--navy-700));
}
.g-slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity .8s var(--ease), visibility .8s var(--ease); }
.g-slide.active { opacity: 1; visibility: visible; }
.g-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.g-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 3; padding: 46px 26px 20px; color: #fff;
  background: linear-gradient(to top, rgba(8,21,52,.88), rgba(8,21,52,.45) 55%, transparent);
}
.g-caption .g-tag { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-300); margin-bottom: 5px; }
.g-caption .g-title { font-family: var(--font-display); font-size: clamp(1.15rem, 2.6vw, 1.55rem); }
.g-arrow {
  position: absolute; top: 50%; transform: translateY(-50%); z-index: 4; width: 48px; height: 48px;
  border: none; border-radius: 50%; background: rgba(255,255,255,.88); display: grid; place-items: center;
  cursor: pointer; box-shadow: var(--shadow-md); transition: background .2s var(--ease), transform .2s var(--ease);
}
.g-arrow:hover { background: #fff; transform: translateY(-50%) scale(1.08); }
.g-arrow svg { width: 22px; height: 22px; color: var(--navy-800); }
.g-prev { left: 14px; } .g-next { right: 14px; }
.g-dots { display: flex; justify-content: center; flex-wrap: wrap; gap: 9px; margin-top: 20px; }
.g-dot { width: 10px; height: 10px; padding: 0; border: none; border-radius: 50%; background: var(--line); cursor: pointer; transition: background .25s var(--ease), transform .25s var(--ease); }
.g-dot:hover { background: var(--gold-300); }
.g-dot.active { background: var(--gold-500); transform: scale(1.3); }
@media (max-width: 560px) {
  .gallery-stage { aspect-ratio: 4 / 3; }
  .g-arrow { width: 40px; height: 40px; }
  .g-arrow svg { width: 18px; height: 18px; }
  .g-caption { padding: 38px 18px 16px; }
}
@media (prefers-reduced-motion: reduce) { .g-slide { transition: none; } }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer { background: var(--navy-900); color: #AFC1D4; padding-top: clamp(56px, 8vw, 88px); position: relative; overflow: hidden; }
.site-footer::before { content: ""; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, var(--gold-500), var(--gold-300), var(--navy-700)); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-brand img { height: 50px; margin-bottom: 18px; }
.footer-brand p { color: #8FA4BA; font-size: .95rem; max-width: 320px; }
.footer-social { display: flex; gap: 10px; margin-top: 22px; }
.footer-social a { width: 40px; height: 40px; border-radius: 11px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.10); display: grid; place-items: center; color: #AFC1D4; transition: background .25s, color .25s, transform .25s; }
.footer-social a:hover { background: var(--gold-500); color: var(--navy-900); transform: translateY(-3px); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-weight: 700; font-size: .95rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul li { margin-bottom: 11px; }
.footer-col ul a { color: #8FA4BA; font-size: .96rem; transition: color .2s, padding .2s; }
.footer-col ul a:hover { color: var(--gold-300); padding-left: 5px; }
.footer-contact li { display: flex; gap: 12px; margin-bottom: 14px; color: #8FA4BA; font-size: .95rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold-400); flex: none; margin-top: 3px; }
.footer-contact a { color: #8FA4BA; }
.footer-contact a:hover { color: var(--gold-300); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); margin-top: clamp(40px, 6vw, 64px); padding-block: 26px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: .88rem; color: #7E93AB; }
.footer-bottom a:hover { color: var(--gold-300); }

/* white chip so the colour logo reads on the dark footer */
.footer-logo-chip { display: inline-block; background: #fff; padding: 12px 16px; border-radius: 16px; box-shadow: var(--shadow-sm); margin-bottom: 18px; }
.footer-logo-chip img { height: 64px; width: auto; margin: 0; display: block; }

/* ==========================================================================
   DONATE / WAYS TO GIVE
   ========================================================================== */
.give-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.give-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 34px 30px; box-shadow: var(--shadow-sm); position: relative; overflow: hidden;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.give-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.give-card .g-icon { width: 58px; height: 58px; border-radius: 15px; background: var(--gold-50); color: var(--gold-600); display: grid; place-items: center; margin-bottom: 20px; }
.give-card .g-icon svg { width: 28px; height: 28px; }
.give-card h3 { font-size: 1.25rem; }
.give-card p { color: var(--slate); margin-top: 10px; font-size: .98rem; }
.give-detail { margin-top: 18px; padding: 16px 18px; background: var(--mist); border: 1px dashed var(--line); border-radius: var(--r-sm); font-size: .94rem; }
.give-detail .row { display: flex; justify-content: space-between; gap: 12px; padding: 5px 0; }
.give-detail .row span:first-child { color: var(--muted); }
.give-detail .row span:last-child { color: var(--ink); font-weight: 600; text-align: right; }
.give-note { display: inline-flex; align-items: center; gap: 8px; margin-top: 14px; font-size: .82rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; color: var(--gold-600); }

.donate-cta { background: linear-gradient(135deg, var(--red-600), var(--red-500)); color: #fff; border-radius: var(--r-xl); padding: clamp(34px, 6vw, 60px); text-align: center; position: relative; overflow: hidden; }
.donate-cta::after { content: ""; position: absolute; right: -50px; bottom: -50px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(255,255,255,.18), transparent 70%); }
.donate-cta > * { position: relative; z-index: 2; }
.donate-cta h2 { color: #fff; font-size: clamp(1.8rem, 4vw, 2.6rem); }
.donate-cta p { color: #FFE2E4; max-width: 560px; margin: 14px auto 0; }
.donate-cta .btn-light { border-color: rgba(255,255,255,.6); }

.impact-give { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 50px; }
.impact-give .ig { text-align: center; padding: 28px 22px; border-radius: var(--r-lg); background: var(--gold-50); border: 1px solid var(--gold-300); }
.impact-give .ig .ig-num { font-family: var(--font-display); font-size: 2.4rem; color: var(--gold-600); }
.impact-give .ig p { color: var(--slate); margin-top: 8px; font-size: .96rem; }

/* ==========================================================================
   LEADERSHIP
   ========================================================================== */
.leaders { display: flex; flex-wrap: wrap; justify-content: center; gap: 28px; margin-top: 44px; }
.leader-card { flex: 1 1 240px; max-width: 300px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--r-lg); padding: 34px 30px; box-shadow: var(--shadow-sm); text-align: center; transition: transform .35s var(--ease), box-shadow .35s var(--ease); }
.leader-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.leader-avatar { width: 136px; height: 136px; margin: 0 auto 20px; border-radius: 50%; display: grid; place-items: center; overflow: hidden; position: relative;
  background: var(--navy-100); border: 2px dashed var(--navy-600); color: var(--navy-600); box-shadow: var(--shadow-sm); }
.leader-avatar.alt { background: var(--gold-50); border-color: var(--gold-400); color: var(--gold-600); }
.leader-avatar svg { width: 60px; height: 60px; }
.leader-avatar img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.leader-avatar:has(img) { border: 4px solid #fff; box-shadow: var(--shadow-md); background: var(--mist); }
.leader-card h3 { font-size: 1.3rem; }
.leader-role { display: inline-block; margin-top: 6px; font-size: .78rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-600); }
.leader-card p { color: var(--slate); margin-top: 14px; font-size: .97rem; }

/* ==========================================================================
   SCROLL REVEAL
   ========================================================================== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: .08s; }
.reveal.d2 { transition-delay: .16s; }
.reveal.d3 { transition-delay: .24s; }
.reveal.d4 { transition-delay: .32s; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .slides { transition: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
  .values { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1.4fr 1fr; row-gap: 40px; }
  .give-grid, .impact-give { grid-template-columns: 1fr; }
  .leaders { grid-template-columns: repeat(2, 1fr); }
  .emblem-ring { width: clamp(220px, 34vw, 300px); }
}

@media (max-width: 1024px) {
  .nav-links, .nav-actions .btn { display: none; }
  .nav-toggle { display: grid; place-items: center; }
  .nav-actions { gap: 0; }

  /* mobile menu panel */
  .nav-links {
    position: fixed; inset: 0 0 0 auto; width: min(360px, 86vw); height: 100dvh;
    background: #fff; flex-direction: column; align-items: stretch; justify-content: flex-start;
    padding: 90px 24px 40px; gap: 6px; box-shadow: var(--shadow-lg); overflow-y: auto;
    transform: translateX(105%); transition: transform .4s var(--ease); z-index: 70; display: flex;
  }
  body.menu-open .nav-links, body:has(.nav-check:checked) .nav-links { transform: translateX(0); }
  .nav-links a { font-size: 1.15rem; padding: 14px 16px; border-radius: 12px; }
  .nav-links a::after { display: none; }
  .nav-links a:not(.btn):hover, .nav-links a:not(.btn).active { background: var(--mist); }
  .nav-links .btn { color: #fff; }
  .nav-links .btn-light { color: var(--navy-900); }
  .nav-links .mobile-cta { display: flex !important; margin-top: 16px; }
  .menu-backdrop { position: fixed; inset: 0; background: rgba(7,24,43,.5); opacity: 0; visibility: hidden; transition: .3s; z-index: 50; }
  body.menu-open .menu-backdrop, body:has(.nav-check:checked) .menu-backdrop { opacity: 1; visibility: visible; }
}

@media (max-width: 860px) {
  .welcome-grid, .school-grid, .split, .prog-row, .prog-row.flip .prog-text, .founder, .founder.flip, .contact-grid, .portal-banner { grid-template-columns: 1fr; }
  .slide-inner { grid-template-columns: 1fr; }
  .slide-emblem { display: none; }
  .hero-strip .container { gap: 10px 26px; }
  .prog-row.flip .prog-text { order: 0; }
  .founder { text-align: center; }
  .founder-portrait { max-width: 240px; margin-inline: auto; }
  .mv, .form-row { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr 1fr; }
  .facilities { grid-template-columns: 1fr 1fr; }
  .impact .container { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .portal-banner { text-align: left; }
}

@media (max-width: 560px) {
  body { font-size: 16px; }
  .pillars, .values, .facilities, .impact .container, .footer-grid { grid-template-columns: 1fr; }
  .leaders { grid-template-columns: 1fr; }
  .topbar .tb-group:first-child { display: none; }
  .car-btn { display: none; }
  .slide-cta { flex-direction: column; align-items: stretch; }
  .slide-cta .btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
}

/* hide desktop-only / mobile-only helpers */
.mobile-cta { display: none; }
@media (max-width: 1024px) { .nav-actions .nav-toggle { display: grid; } }
