/* ==========================================================================
   Alpine International School — Design System
   Dark navy / indigo theme. Custom CSS3, no frameworks.
   ========================================================================== */

/* ---------- Design tokens ---------- */
:root {
  /* Core palette */
  --navy-950: #070c1a;
  --navy-900: #0b1224;
  --navy-850: #0e162c;
  --navy-800: #121c38;
  --navy-700: #182548;
  --navy-600: #1f3060;

  --indigo-500: #4b63d8;
  --indigo-400: #6a80ea;
  --indigo-300: #93a5f4;

  --accent-gold: #f0b429;
  --accent-teal: #2dd4bf;

  /* Text */
  --text-primary: #f4f7ff;
  --text-secondary: #c3cbe4;
  --text-muted: #8e99b8;

  /* Surfaces & lines */
  --surface: rgba(255, 255, 255, 0.035);
  --surface-hover: rgba(255, 255, 255, 0.06);
  --border: rgba(255, 255, 255, 0.09);
  --border-strong: rgba(255, 255, 255, 0.16);

  /* Effects */
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.35);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.45);
  --glow: 0 0 0 1px rgba(107, 128, 234, 0.35), 0 12px 40px rgba(75, 99, 216, 0.22);

  /* Type scale */
  --font-sans: "Segoe UI", system-ui, -apple-system, "Helvetica Neue", Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;

  /* Layout */
  --container: 1200px;
  --radius-sm: 8px;
  --radius: 14px;
  --radius-lg: 22px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-secondary);
  background: var(--navy-950);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Ambient background wash */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(900px 600px at 12% -5%, rgba(75, 99, 216, 0.16), transparent 60%),
    radial-gradient(800px 500px at 92% 8%, rgba(45, 212, 191, 0.07), transparent 60%),
    linear-gradient(180deg, var(--navy-950), var(--navy-900) 45%, var(--navy-950));
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--indigo-300); text-decoration: none; transition: color .2s ease; }
a:hover { color: var(--indigo-400); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  color: var(--text-primary);
  line-height: 1.2;
  margin: 0 0 .6em;
  font-weight: 700;
  letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 5.2vw, 3.6rem); }
h2 { font-size: clamp(1.65rem, 3.6vw, 2.5rem); }
h3 { font-size: clamp(1.15rem, 2.2vw, 1.4rem); }
h4 { font-size: 1.05rem; }
p  { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.lede { font-size: clamp(1.05rem, 1.9vw, 1.22rem); color: var(--text-secondary); }
.text-accent { color: var(--indigo-300); }

/* ---------- Layout ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 22px;
}
.section { padding: clamp(56px, 8vw, 104px) 0; }
.section--tight { padding: clamp(40px, 5vw, 64px) 0; }
.section--alt { background: linear-gradient(180deg, transparent, rgba(18, 28, 56, .55), transparent); }

.section-head { max-width: 760px; margin-bottom: clamp(30px, 4vw, 52px); }
.section-head--center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--indigo-300);
  margin-bottom: .9rem;
  padding: .3rem .8rem;
  border: 1px solid var(--border-strong);
  border-radius: 999px;
  background: var(--surface);
}

/* Grids */
.grid { display: grid; gap: 22px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 12, 26, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.site-header.is-scrolled { background: rgba(7, 12, 26, 0.95); box-shadow: var(--shadow-md); }

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: var(--header-h);
}

.brand { display: flex; align-items: center; gap: 12px; flex-shrink: 0; }
.brand__mark {
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 11px;
  background: linear-gradient(140deg, var(--indigo-500), var(--navy-600));
  color: #fff;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: .02em;
  box-shadow: var(--glow);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { color: var(--text-primary); font-weight: 700; font-size: 1.02rem; letter-spacing: -.01em; }
.brand__tag { color: var(--text-muted); font-size: .7rem; letter-spacing: .1em; text-transform: uppercase; }

.nav-list {
  display: flex;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-list a {
  display: block;
  padding: .55rem .78rem;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-size: .93rem;
  font-weight: 500;
  transition: background .2s ease, color .2s ease;
}
.nav-list a:hover { background: var(--surface-hover); color: var(--text-primary); }
.nav-list a[aria-current="page"] { color: var(--text-primary); background: var(--surface); }

.nav-cta { flex-shrink: 0; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  border: 1px solid var(--border-strong);
  border-radius: 10px;
  background: var(--surface);
  cursor: pointer;
  padding: 0;
  place-items: center;
}
.nav-toggle span {
  display: block;
  width: 19px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  position: relative;
  transition: background .2s ease;
}
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute; left: 0;
  width: 19px; height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform .25s ease, top .25s ease;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after  { top: 0; transform: rotate(-45deg); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .78rem 1.5rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: .95rem;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}
.btn--primary {
  background: linear-gradient(135deg, var(--indigo-500), #3a4fbf);
  color: #fff;
  box-shadow: 0 8px 26px rgba(75, 99, 216, .34);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 14px 36px rgba(75, 99, 216, .46); color: #fff; }
.btn--ghost {
  background: var(--surface);
  border-color: var(--border-strong);
  color: var(--text-primary);
}
.btn--ghost:hover { background: var(--surface-hover); border-color: var(--indigo-400); color: var(--text-primary); transform: translateY(-2px); }
.btn--sm { padding: .55rem 1.1rem; font-size: .88rem; }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- Cards ---------- */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  transition: transform .25s ease, border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
.card:hover {
  transform: translateY(-4px);
  border-color: var(--border-strong);
  background: var(--surface-hover);
  box-shadow: var(--shadow-md);
}
.card h3 { margin-bottom: .5rem; }
.card p  { color: var(--text-secondary); font-size: .96rem; margin: 0; }

.card__icon {
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 12px;
  background: linear-gradient(140deg, rgba(75,99,216,.28), rgba(75,99,216,.08));
  border: 1px solid var(--border-strong);
  margin-bottom: 16px;
  font-size: 1.3rem;
}

/* Media card (image + body) */
.media-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.media-card:hover { transform: translateY(-4px); border-color: var(--border-strong); box-shadow: var(--shadow-md); }
.media-card__img { aspect-ratio: 16 / 10; overflow: hidden; background: var(--navy-800); }
.media-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.media-card:hover .media-card__img img { transform: scale(1.05); }
.media-card__body { padding: 22px; }
.media-card__body h3 { margin-bottom: .4rem; }
.media-card__body p { font-size: .94rem; margin: 0; }

/* ---------- Stats ---------- */
.stat {
  text-align: center;
  padding: 24px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}
.stat__num {
  display: block;
  font-size: clamp(1.9rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-primary);
  line-height: 1.1;
  letter-spacing: -.03em;
}
.stat__label { font-size: .84rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: .1em; }

/* ---------- Hero ---------- */
.hero { position: relative; padding: clamp(70px, 11vw, 140px) 0 clamp(56px, 8vw, 100px); overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 60px); align-items: center; }
.hero h1 { margin-bottom: .5em; }
.hero h1 .accent {
  background: linear-gradient(120deg, var(--indigo-300), var(--accent-teal));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__media { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); border: 1px solid var(--border-strong); }
.hero__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.hero__badge {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(7, 12, 26, .86);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius);
  padding: 12px 18px;
}
.hero__badge strong { display: block; color: var(--text-primary); font-size: 1.15rem; }
.hero__badge span { font-size: .8rem; color: var(--text-muted); }

/* ---------- Page banner (interior pages) ---------- */
.page-banner {
  position: relative;
  padding: clamp(52px, 8vw, 92px) 0 clamp(40px, 6vw, 64px);
  border-bottom: 1px solid var(--border);
  background:
    linear-gradient(180deg, rgba(11,18,36,.55), rgba(7,12,26,.92)),
    radial-gradient(700px 300px at 20% 0%, rgba(75,99,216,.22), transparent 65%);
}
.page-banner h1 { margin-bottom: .35em; }
.page-banner p { max-width: 640px; margin: 0; }

.breadcrumb { font-size: .85rem; color: var(--text-muted); margin-bottom: 1rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--indigo-300); }
.breadcrumb span { margin: 0 .4rem; opacity: .6; }

/* ---------- Split feature ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 5vw, 56px); align-items: center; }
.split__media { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--border); box-shadow: var(--shadow-md); }
.split__media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }

/* ---------- Lists ---------- */
.tick-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 12px; }
.tick-list li { position: relative; padding-left: 30px; color: var(--text-secondary); }
.tick-list li::before {
  content: "";
  position: absolute; left: 0; top: .55em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--indigo-400);
  box-shadow: 0 0 0 4px rgba(75, 99, 216, .18);
}

.num-list { list-style: none; counter-reset: n; padding: 0; margin: 0; display: grid; gap: 16px; }
.num-list li { counter-increment: n; position: relative; padding-left: 48px; }
.num-list li::before {
  content: counter(n);
  position: absolute; left: 0; top: -2px;
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 9px;
  background: var(--surface);
  border: 1px solid var(--border-strong);
  color: var(--indigo-300);
  font-weight: 700;
  font-size: .9rem;
}

/* ---------- Tables ---------- */
.table-wrap { overflow-x: auto; border: 1px solid var(--border); border-radius: var(--radius); background: var(--surface); }
table { width: 100%; border-collapse: collapse; min-width: 480px; }
caption { text-align: left; padding: 16px 18px 0; color: var(--text-muted); font-size: .88rem; }
th, td { padding: 13px 18px; text-align: left; border-bottom: 1px solid var(--border); font-size: .94rem; }
th { color: var(--text-primary); font-weight: 600; background: rgba(255,255,255,.04); font-size: .86rem; letter-spacing: .04em; text-transform: uppercase; }
tbody tr:last-child td { border-bottom: 0; }
tbody tr:hover td { background: rgba(255,255,255,.025); }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 4 / 3;
  background: var(--navy-800);
  cursor: pointer;
  padding: 0;
  width: 100%;
  display: block;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item figcaption {
  position: absolute; inset: auto 0 0 0;
  padding: 26px 14px 12px;
  background: linear-gradient(transparent, rgba(7,12,26,.92));
  color: var(--text-primary);
  font-size: .86rem;
  text-align: left;
}

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(4, 7, 16, .93);
  backdrop-filter: blur(6px);
  display: none;
  place-items: center;
  padding: 24px;
}
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1100px, 94vw); max-height: 86vh; border-radius: var(--radius); box-shadow: var(--shadow-lg); }
.lightbox__close {
  position: absolute; top: 20px; right: 20px;
  width: 46px; height: 46px;
  border-radius: 50%;
  border: 1px solid var(--border-strong);
  background: var(--surface);
  color: var(--text-primary);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox__close:hover { background: var(--surface-hover); }
.lightbox__cap { color: var(--text-secondary); text-align: center; margin-top: 14px; font-size: .9rem; }

/* ---------- Forms ---------- */
.form-grid { display: grid; gap: 18px; }
.field label { display: block; margin-bottom: .4rem; font-size: .9rem; font-weight: 600; color: var(--text-primary); }
.field .req { color: var(--accent-gold); }
.field input, .field select, .field textarea {
  width: 100%;
  padding: .8rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-strong);
  background: rgba(7, 12, 26, .6);
  color: var(--text-primary);
  font: inherit;
  font-size: .95rem;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.field textarea { resize: vertical; min-height: 130px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--indigo-400);
  box-shadow: 0 0 0 3px rgba(75, 99, 216, .22);
}
.field input[aria-invalid="true"], .field textarea[aria-invalid="true"] { border-color: #f87171; }
.field__error { display: none; color: #fca5a5; font-size: .84rem; margin-top: .35rem; }
.field__error.is-shown { display: block; }
.form-note { font-size: .86rem; color: var(--text-muted); }

.form-status { padding: 14px 18px; border-radius: var(--radius-sm); margin-top: 16px; display: none; font-size: .94rem; }
.form-status.is-shown { display: block; }
.form-status--ok { background: rgba(45, 212, 191, .12); border: 1px solid rgba(45, 212, 191, .4); color: #99f6e4; }
.form-status--err { background: rgba(248, 113, 113, .1); border: 1px solid rgba(248, 113, 113, .35); color: #fecaca; }

/* ---------- Info panel ---------- */
.info-panel {
  background: linear-gradient(150deg, rgba(31, 48, 96, .5), rgba(14, 22, 44, .5));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 4vw, 40px);
}
.info-row { display: flex; gap: 14px; align-items: flex-start; padding: 14px 0; border-bottom: 1px solid var(--border); }
.info-row:last-child { border-bottom: 0; padding-bottom: 0; }
.info-row:first-child { padding-top: 0; }
.info-row__icon { flex-shrink: 0; font-size: 1.2rem; width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; background: var(--surface); border: 1px solid var(--border); }
.info-row__label { font-size: .78rem; text-transform: uppercase; letter-spacing: .1em; color: var(--text-muted); }
.info-row__value { color: var(--text-primary); font-weight: 500; }
.info-row__value a { color: var(--text-primary); }
.info-row__value a:hover { color: var(--indigo-300); }

/* ---------- CTA band ---------- */
.cta-band {
  background: linear-gradient(135deg, rgba(75, 99, 216, .22), rgba(31, 48, 96, .3));
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  padding: clamp(32px, 5vw, 56px);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.cta-band h2 { margin-bottom: .4em; }
.cta-band p { max-width: 560px; margin: 0 auto 1.6em; }
.cta-band .btn-row { justify-content: center; }

/* ---------- Footer ---------- */
.site-footer {
  background: linear-gradient(180deg, transparent, rgba(7, 12, 26, .9));
  border-top: 1px solid var(--border);
  padding: clamp(48px, 6vw, 72px) 0 0;
  margin-top: clamp(40px, 6vw, 80px);
}
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.3fr; gap: 34px; }
.footer-col h4 { color: var(--text-primary); font-size: .92rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 1.1rem; }
.footer-col ul { list-style: none; padding: 0; margin: 0; display: grid; gap: .6rem; }
.footer-col a { color: var(--text-muted); font-size: .93rem; }
.footer-col a:hover { color: var(--indigo-300); }
.footer-col p { color: var(--text-muted); font-size: .93rem; }
.footer-bottom {
  margin-top: 40px;
  padding: 22px 0;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  font-size: .87rem;
  color: var(--text-muted);
}

/* ---------- Utilities ---------- */
.center { text-align: center; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.mt-3 { margin-top: 1.6rem; }
.mt-4 { margin-top: 2.2rem; }
.muted { color: var(--text-muted); }
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--indigo-500); color: #fff;
  padding: .7rem 1.2rem; border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  z-index: 300;
  transition: top .2s ease;
}
.skip-link:focus { top: 0; color: #fff; }

/* Focus visibility */
:focus-visible {
  outline: 3px solid var(--indigo-400);
  outline-offset: 3px;
  border-radius: 4px;
}

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

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .hero__inner { grid-template-columns: 1fr; }
  .hero__media { order: -1; }
}

/* Grid children must be allowed to shrink below their content width,
   otherwise long words and images force horizontal overflow. */
.hero__inner > *,
.split > *,
.grid > * { min-width: 0; }

h1, h2, h3, h4, p, li, td, th { overflow-wrap: break-word; }

@media (max-width: 860px) {
  .nav-toggle { display: grid; }
  .nav-cta { display: none; }
  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    background: rgba(7, 12, 26, .98);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    max-height: 0;
    overflow: hidden;
    transition: max-height .32s ease;
  }
  .site-nav.is-open { max-height: 80vh; overflow-y: auto; }
  .nav-list { flex-direction: column; align-items: stretch; gap: 0; padding: 12px 22px 26px; }
  .nav-list a { padding: .85rem .5rem; border-radius: var(--radius-sm); border-bottom: 1px solid var(--border); }
  .nav-list li:last-child a { border-bottom: 0; }
  .nav-list .nav-list__cta { margin-top: 14px; }
  .nav-list .nav-list__cta a {
    background: linear-gradient(135deg, var(--indigo-500), #3a4fbf);
    color: #fff; text-align: center; border-bottom: 0;
  }
  .grid-3, .split { grid-template-columns: 1fr; }
}

@media (max-width: 620px) {
  :root { --header-h: 66px; }
  .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand__tag { display: none; }
  .btn { width: 100%; }
  .btn-row { flex-direction: column; }
  .btn-row .btn { width: 100%; }
  .card { padding: 22px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(150px, 1fr)); }
}

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

/* ---------- Print ---------- */
@media print {
  body { background: #fff; color: #000; }
  .site-header, .site-footer, .nav-toggle, .cta-band { display: none; }
}
