/* =========================================================================
   AMERICA 250 — Stylesheet
   Theme: Bold patriotic (red / white / navy / gold accent)
   ========================================================================= */

:root {
  --red: #B22234;
  --red-dark: #8A1A28;
  --navy: #002868;
  --navy-dark: #001A4A;
  --white: #FFFFFF;
  --gold: #FFD600;
  --gray-light: #F5F5F5;
  --gray: #DDDDDD;
  --gray-dark: #555555;
  --text: #1A1A1A;

  --font-head: Georgia, "Times New Roman", Times, serif;
  --font-body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --shadow-sm: 0 2px 6px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.12);
  --shadow-lg: 0 14px 36px rgba(0, 0, 0, 0.18);

  --nav-height: 72px;
  --container: 1200px;
  --container-narrow: 820px;
  --radius: 6px;

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

/* -------------------------------------------------------------------------
   Reset & base
   ------------------------------------------------------------------------- */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--nav-height);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }

a {
  color: var(--red);
  text-decoration: none;
  transition: color 0.18s var(--ease);
}
a:hover, a:focus-visible { color: var(--navy); text-decoration: underline; }

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
  border-radius: var(--radius);
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.15;
  margin: 0 0 0.6em;
  color: var(--navy);
}

p { margin: 0 0 1em; }

/* -------------------------------------------------------------------------
   Layout helpers
   ------------------------------------------------------------------------- */

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding: 96px 0; }

.section__title {
  font-size: 44px;
  text-align: center;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.section__title--light { color: var(--white); }
.section__lede {
  text-align: center;
  font-size: 18px;
  color: var(--gray-dark);
  max-width: 720px;
  margin: 0 auto 56px;
}
.section__lede--light { color: rgba(255, 255, 255, 0.85); }

.section--light { background: var(--gray-light); }
.section--navy {
  background:
    radial-gradient(circle at 18% 22%, rgba(255, 255, 255, 0.04) 1px, transparent 1.5px) 0 0/60px 60px,
    radial-gradient(circle at 72% 68%, rgba(255, 255, 255, 0.035) 1px, transparent 1.5px) 30px 30px/60px 60px,
    var(--navy);
  color: var(--white);
}

.star-flank::before,
.star-flank::after {
  content: "\2605"; /* ★ */
  color: var(--red);
  font-size: 0.7em;
  margin: 0 0.5em;
  vertical-align: 0.18em;
}
.section--navy .star-flank::before,
.section--navy .star-flank::after { color: var(--gold); }

/* -------------------------------------------------------------------------
   Navigation
   ------------------------------------------------------------------------- */

header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--navy);
  border-bottom: 3px solid var(--red);
  transition: box-shadow 0.2s var(--ease), background 0.2s var(--ease);
}
header.scrolled { box-shadow: var(--shadow-md); background: var(--navy-dark); }

nav {
  height: var(--nav-height);
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--white);
  text-decoration: none;
  white-space: nowrap;
}
.nav-logo:hover, .nav-logo:focus-visible { color: var(--gold); text-decoration: none; }

.nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px;
  align-items: center;
}
.nav-links a {
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 6px 0;
  position: relative;
  text-decoration: none;
}
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.2s var(--ease);
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--gold); text-decoration: none; }
.nav-links a:hover::after, .nav-links a:focus-visible::after { transform: scaleX(1); }


.nav-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.2);
  list-style: none;
  align-self: center;
  flex-shrink: 0;
}
.nav-link--gold { color: var(--gold) !important; font-weight: 700; }
.nav-link--gold:hover, .nav-link--gold:focus-visible { color: #fff !important; }
.nav-link--red  { color: #ff6b6b !important; font-weight: 700; }
.nav-link--red:hover,  .nav-link--red:focus-visible  { color: #fff !important; }
.nav-burger {
  display: none;
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 8px;
  width: 44px;
  height: 44px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: transform 0.2s var(--ease), opacity 0.2s var(--ease);
}
.nav-burger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-burger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------------------------------------------------------------
   Hero
   ------------------------------------------------------------------------- */

.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-height));
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  color: var(--white);
  isolation: isolate;
}
.hero--bg {
  background-image: url("../images/flag_large.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* parallax */
  background-color: var(--navy); /* fallback while image loads or if missing */
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 40, 104, 0.75);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  max-width: 980px;
  padding: 80px 24px 120px;
}
.eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.32em;
  color: var(--red);
  background: rgba(255, 255, 255, 0.96);
  padding: 8px 18px;
  border-radius: 999px;
  margin: 0 0 32px;
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  font-size: clamp(48px, 8vw, 96px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 24px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}
.hero__subhead {
  font-size: clamp(18px, 2.4vw, 24px);
  color: rgba(255, 255, 255, 0.92);
  margin: 0 0 40px;
  font-weight: 400;
}
.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px 32px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: transform 0.18s var(--ease), background 0.18s var(--ease), color 0.18s var(--ease), box-shadow 0.18s var(--ease);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn--red {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(178, 34, 52, 0.35);
}
.btn--red:hover, .btn--red:focus-visible {
  background: var(--red-dark);
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(178, 34, 52, 0.45);
}
.btn--outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn--outline:hover, .btn--outline:focus-visible {
  background: var(--white);
  color: var(--navy);
  transform: translateY(-2px);
  text-decoration: none;
}

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--white);
  width: 44px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  animation: bounce 2.2s var(--ease) infinite;
}
.scroll-indicator:hover, .scroll-indicator:focus-visible {
  border-color: var(--white);
  color: var(--gold);
  text-decoration: none;
}
.scroll-arrow { font-size: 22px; line-height: 1; }

@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50%      { transform: translate(-50%, 8px); }
}

/* -------------------------------------------------------------------------
   Stripe divider — animated red/white/blue gradient
   ------------------------------------------------------------------------- */

.stripe-divider {
  height: 10px;
  background: linear-gradient(
    90deg,
    var(--red) 0%, var(--red) 33%,
    var(--white) 33%, var(--white) 66%,
    var(--navy) 66%, var(--navy) 100%
  );
  background-size: 600% 100%;
  animation: stripeSlide 18s linear infinite;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
@keyframes stripeSlide {
  0%   { background-position: 0% 0%; }
  100% { background-position: 600% 0%; }
}

/* -------------------------------------------------------------------------
   Grids
   ------------------------------------------------------------------------- */

.grid { display: grid; gap: 28px; }
.grid--3      { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--cards  { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }
.grid--cliffs { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px; }
.grid--stats  { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }

/* -------------------------------------------------------------------------
   Why This Matters — features
   ------------------------------------------------------------------------- */

.feature {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.feature:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.feature__icon {
  font-size: 44px;
  line-height: 1;
  margin-bottom: 18px;
  color: var(--red);
}
.feature__title {
  font-family: var(--font-head);
  font-size: 22px;
  color: var(--navy);
  margin: 0 0 12px;
}
.feature__body { color: var(--gray-dark); margin: 0; font-size: 16px; }

/* -------------------------------------------------------------------------
   Document cards
   ------------------------------------------------------------------------- */

.card {
  position: relative;
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 36px 28px 28px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.card::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 6px;
}
.card--stripe-red::before  { background: var(--red); }
.card--stripe-navy::before { background: var(--navy); }

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 18px;
  letter-spacing: 0.04em;
}
.card--stripe-red .card__badge { background: var(--red); }

.card__title {
  font-family: var(--font-head);
  font-size: 20px;
  color: var(--navy);
  margin: 0 0 10px;
  line-height: 1.25;
}
.card__body {
  color: var(--gray-dark);
  font-size: 15.5px;
  margin: 0 0 22px;
  flex-grow: 1;
}
.card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  align-items: center;
  border-top: 1px solid var(--gray);
  padding-top: 16px;
}
.card__action {
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--navy);
  text-decoration: none;
}
.card__action:hover, .card__action:focus-visible {
  color: var(--red);
  text-decoration: underline;
}
.card__action--strong { color: var(--red); }
.card__action--strong:hover, .card__action--strong:focus-visible { color: var(--navy); }

.card__toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

/* Stretched link — makes the whole card clickable via the primary link */
.card__primary-link { color: var(--red); }
.card__primary-link::after {
  content: '';
  position: absolute;
  inset: 0;
  cursor: pointer;
}
.card__actions a:not(.card__primary-link) {
  position: relative;
  z-index: 1;
}
.card__toggle[aria-expanded="true"] { color: var(--red); }
.card__toggle[aria-expanded="true"]::after { content: " \25B2"; font-size: 10px; }
.card__toggle[aria-expanded="false"]::after { content: " \25BC"; font-size: 10px; }

.card__summary {
  font-size: 14px;
  line-height: 1.65;
  color: var(--gray-dark);
  background: var(--gray-light);
  border-left: 4px solid var(--navy);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 14px 16px;
  margin-top: 12px;
  margin-bottom: 4px;
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s var(--ease), opacity 0.25s ease, padding 0.25s ease, margin 0.25s ease;
}
.card__summary.is-open {
  max-height: 300px;
  opacity: 1;
}
.card__summary[hidden] { display: block; }

/* -------------------------------------------------------------------------
   CliffsNotes — yellow cards
   ------------------------------------------------------------------------- */

.cliff-card {
  background: var(--gold);
  color: #111;
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  border: 2px solid transparent;
}
a.cliff-card { text-decoration: none; color: inherit; cursor: pointer; }
.cliff-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: #111;
}
.cliff-card__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #111;
  margin: 0 0 6px;
  opacity: 0.75;
}
.cliff-card__title {
  font-family: var(--font-head);
  font-size: 22px;
  color: #111;
  margin: 0 0 18px;
  line-height: 1.2;
  flex-grow: 1;
}
.cliff-card__action {
  display: inline-block;
  align-self: flex-start;
  background: #111;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.18s var(--ease), color 0.18s var(--ease);
}
.cliff-card__action:hover, .cliff-card__action:focus-visible {
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
}

/* -------------------------------------------------------------------------
   Stats bar
   ------------------------------------------------------------------------- */

.stats {
  background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
  color: var(--white);
  padding: 72px 0;
  position: relative;
}
.stats::before,
.stats::after {
  content: "";
  position: absolute;
  left: 0; right: 0;
  height: 4px;
  background: repeating-linear-gradient(
    90deg,
    var(--white) 0 30px,
    transparent 30px 60px
  );
  opacity: 0.45;
}
.stats::before { top: 0; }
.stats::after  { bottom: 0; }

.stat { text-align: center; padding: 8px; }
.stat__num {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.05;
  margin: 0 0 8px;
  letter-spacing: 0.02em;
}
.stat__label {
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.92;
  margin: 0;
}

/* -------------------------------------------------------------------------
   Communism section page — extras
   ------------------------------------------------------------------------- */

.subhero {
  background: var(--navy);
  color: var(--white);
  padding: 96px 0 64px;
  text-align: center;
  position: relative;
  border-bottom: 6px solid var(--red);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.05) 1px, transparent 1.5px),
    radial-gradient(circle at 70% 60%, rgba(255, 255, 255, 0.04) 1px, transparent 1.5px);
  background-size: 80px 80px, 80px 80px;
}
.subhero__eyebrow {
  font-size: 14px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 18px;
  font-weight: 700;
}
.subhero__title {
  font-family: var(--font-head);
  font-size: clamp(38px, 6vw, 64px);
  color: var(--white);
  text-transform: uppercase;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
  line-height: 1.05;
}
.subhero__subtitle {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.86);
  margin: 0;
}

.prose p { font-size: 17.5px; line-height: 1.75; }
.prose p + p { margin-top: 1.2em; }

.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.feature-split__media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.feature-split__title {
  font-family: var(--font-head);
  font-size: 36px;
  color: var(--navy);
  margin: 0 0 20px;
  line-height: 1.15;
}

.figures {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.figure {
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.figure:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.figure__img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--gray-light);
  border: 3px solid var(--navy);
}
.figure__name {
  font-family: var(--font-head);
  font-size: 18px;
  color: var(--navy);
  margin: 0 0 4px;
}
.figure__role {
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  margin: 0 0 10px;
  font-weight: 700;
}
.figure__bio { font-size: 14px; color: var(--gray-dark); margin: 0; }

/* -------------------------------------------------------------------------
   Footer
   ------------------------------------------------------------------------- */

footer {
  background: var(--navy);
  color: var(--white);
  margin-top: 0;
}
.footer__main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  padding-top: 36px;
  padding-bottom: 36px;
}
.nav-logo--footer { justify-self: start; }
.footer__nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 24px;
  justify-content: center;
}
.footer__nav a {
  color: var(--white);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-decoration: none;
}
.footer__nav a:hover, .footer__nav a:focus-visible { color: var(--gold); text-decoration: none; }
.footer__copy {
  margin: 0;
  text-align: right;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.78);
  justify-self: end;
}
.footer__strip { height: 6px; background: var(--red); }

/* -------------------------------------------------------------------------
   Responsive
   ------------------------------------------------------------------------- */

@media (max-width: 1024px) {
  .grid--3      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--cards  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--cliffs { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .grid--stats  { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .figures      { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feature-split { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 72px 0; }
  .section__title { font-size: 34px; }
  .hero { background-attachment: scroll; }
  .hero__title { font-size: clamp(40px, 12vw, 64px); }

  .nav-burger { display: inline-flex; }
  .nav-links {
    position: absolute;
    top: var(--nav-height);
    left: 0; right: 0;
    background: var(--navy-dark);
    flex-direction: column;
    gap: 0;
    padding: 8px 0 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s var(--ease);
    border-bottom: 3px solid var(--red);
  }
  .nav-links.open { max-height: 440px; }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 14px 24px;
    width: 100%;
  }
  .nav-links a::after { display: none; }

  .footer__main {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 16px;
  }
  .nav-logo--footer,
  .footer__copy { justify-self: center; text-align: center; }
  .footer__nav { flex-wrap: wrap; }
}

@media (max-width: 480px) {
  body { font-size: 16px; }
  .container { padding: 0 18px; }
  .section { padding: 56px 0; }
  .section__title { font-size: 28px; }
  .grid--3, .grid--cards, .grid--cliffs, .grid--stats, .figures {
    grid-template-columns: 1fr;
  }
  .btn { padding: 14px 22px; font-size: 14px; }
  .hero__content { padding: 64px 18px 96px; }
  .stat__num { font-size: 28px; }
  .feature, .card, .cliff-card { padding: 24px 20px; }
}

/* -------------------------------------------------------------------------
   Print
   ------------------------------------------------------------------------- */

@media print {
  header, footer, .stripe-divider, .scroll-indicator, .hero__ctas, .nav-burger {
    display: none !important;
  }
  body { color: #000; background: #fff; font-size: 12pt; }
  a { color: #000; text-decoration: underline; }
  .hero { min-height: auto; background: none; color: #000; }
  .hero__overlay { display: none; }
  .hero__title, .section__title, .feature__title, .card__title { color: #000; }
  .section { padding: 24px 0; page-break-inside: avoid; }
  .section--navy, .stats { background: none !important; color: #000; }
  .card, .feature, .cliff-card { box-shadow: none; border: 1px solid #ccc; }
}

/* -------------------------------------------------------------------------
   Reduced motion
   ------------------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .hero--bg { background-attachment: scroll; }
}
