/* =========================================================
   Ali Banat Legacy — main.css
   Design system derived from MATW brand palette.
   Swap token values below once official brand guidelines
   are supplied (see README → “Brand alignment”).
   ========================================================= */

:root {
  /* Colour — MATW palette */
  --ink:        #10213F;  /* deep navy text */
  --navy:       #14264A;  /* section navy */
  --navy-deep:  #0A1630;  /* darkest — hero / epilogue */
  --blue:       #00A3DA;  /* MATW blue */
  --blue-soft:  #E4F5FC;
  --pink:       #F60362;  /* MATW donate pink */
  --pink-dark:  #CC0251;
  --paper:      #FBFBF9;
  --white:      #FFFFFF;
  --line:       rgba(16, 33, 63, 0.14);
  --line-light: rgba(255, 255, 255, 0.18);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body:    "Figtree", -apple-system, "Segoe UI", sans-serif;

  /* Scale */
  --step-0: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
  --step-1: clamp(1.2rem, 1.1rem + 0.5vw, 1.45rem);
  --step-2: clamp(1.6rem, 1.35rem + 1.2vw, 2.3rem);
  --step-3: clamp(2.1rem, 1.6rem + 2.4vw, 3.4rem);
  --step-4: clamp(2.6rem, 1.8rem + 4vw, 4.6rem);

  --wrap: 760px;
  --wrap-wide: 1120px;
  --radius: 14px;
  --shadow: 0 18px 50px -18px rgba(10, 22, 48, 0.28);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: var(--step-0);
  line-height: 1.7;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--pink); }
h1, h2, h3 { font-family: var(--font-display); font-weight: 400; line-height: 1.12; margin: 0 0 0.6em; letter-spacing: -0.01em; }
h2 { font-size: var(--step-3); max-width: 18ch; }
h3 { font-size: var(--step-1); }
:focus-visible { outline: 3px solid var(--blue); outline-offset: 3px; border-radius: 4px; }

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--pink); color: #fff; padding: 0.6rem 1rem; border-radius: 0 0 8px 0;
}
.skip-link:focus { left: 0; }

.wrap { max-width: var(--wrap); margin-inline: auto; padding-inline: 24px; }
.wrap--wide { max-width: var(--wrap-wide); }
.centered { text-align: center; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5em;
  font-family: var(--font-body); font-weight: 600; font-size: 0.98rem;
  padding: 0.85em 1.7em; border-radius: 999px; text-decoration: none;
  border: 2px solid transparent; cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, color 0.25s;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--pink { background: var(--pink); color: #fff; box-shadow: 0 10px 26px -10px rgba(246, 3, 98, 0.55); }
.btn--pink:hover { background: var(--pink-dark); color: #fff; }
.btn--white { background: #fff; color: var(--navy-deep); }
.btn--white:hover { color: var(--pink); }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost-light { background: transparent; color: #fff; border-color: var(--line-light); }
.btn--ghost-light:hover { color: #fff; border-color: #fff; }
.btn--outline { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline:hover { color: var(--pink); border-color: var(--pink); }
.btn--lg { padding: 1.05em 2.2em; font-size: 1.05rem; }
.btn--sm { padding: 0.5em 1.1em; font-size: 0.85rem; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.2rem; }

/* ---------- Loading veil ---------- */
.veil {
  position: fixed; inset: 0; z-index: 100; display: grid; place-items: center;
  background: var(--navy-deep); transition: opacity 0.7s var(--ease), visibility 0.7s;
}
.veil__line {
  font-family: var(--font-display); font-style: italic; color: #fff;
  font-size: var(--step-2); opacity: 0; animation: veilIn 1s var(--ease) 0.15s forwards;
}
.veil.is-done { opacity: 0; visibility: hidden; }
@keyframes veilIn { to { opacity: 1; } }

/* ---------- Navigation ---------- */
.nav {
  position: fixed; inset-inline: 0; top: 0; z-index: 90;
  transition: background 0.35s, box-shadow 0.35s, color 0.35s;
  color: #fff;
}
.nav.is-solid { background: rgba(251, 251, 249, 0.92); backdrop-filter: blur(10px); color: var(--ink); box-shadow: 0 1px 0 var(--line); }
.nav__inner {
  max-width: var(--wrap-wide); margin-inline: auto; padding: 14px 24px;
  display: flex; align-items: center; gap: 28px;
}
.nav__brand { display: flex; align-items: center; gap: 10px; color: inherit; text-decoration: none; }
.nav__name { font-family: var(--font-display); font-size: 1.08rem; letter-spacing: 0.01em; }
.nav__name em { font-style: italic; color: var(--blue); }
.nav__links { display: flex; gap: 26px; margin-left: auto; }
.nav__links a { color: inherit; text-decoration: none; font-weight: 500; font-size: 0.94rem; opacity: 0.85; }
.nav__links a:hover { opacity: 1; color: var(--pink); }
.nav__cta { margin-left: 4px; }
.nav__burger { display: none; background: none; border: 0; padding: 8px; margin-left: auto; cursor: pointer; }
.nav__burger span { display: block; width: 24px; height: 2px; background: currentColor; margin: 6px 0; transition: transform 0.3s; }
.nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4px) rotate(45deg); }
.nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4px) rotate(-45deg); }
.nav__mobile { display: none; }

/* ---------- Chapter rail (signature) ---------- */
.rail {
  position: fixed; left: 26px; top: 50%; transform: translateY(-50%);
  z-index: 80; display: flex; align-items: center; gap: 10px;
}
.rail__line { width: 2px; height: 220px; background: var(--line); border-radius: 2px; overflow: hidden; }
.rail__progress { display: block; width: 100%; height: 0%; background: linear-gradient(var(--blue), var(--pink)); transition: height 0.2s linear; }
.rail__dots { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.rail__dots li { width: 7px; height: 7px; border-radius: 50%; background: var(--line); transition: background 0.3s, transform 0.3s; }
.rail__dots li.is-active { background: var(--pink); transform: scale(1.5); }

/* ---------- Chapters ---------- */
.chapter { padding: clamp(5rem, 10vw, 9rem) 0; position: relative; }
.chapter--tight { padding: clamp(3.5rem, 7vw, 6rem) 0; }
.chapter--paper { background: var(--paper); }
.chapter--dark  { background: var(--navy-deep); color: rgba(255,255,255,0.92); }
.chapter--navy  { background: var(--navy); color: rgba(255,255,255,0.92); }
.chapter--blue  { background: linear-gradient(160deg, #0284B8 0%, var(--blue) 60%, #33B8E4 100%); color: #fff; }
.chapter--dark h2, .chapter--navy h2, .chapter--blue h2 { color: #fff; }
.chapter--dark a, .chapter--navy a { color: #7FD4F2; }
.chapter--blue a { color: #fff; }
.chapter--dark a:hover, .chapter--navy a:hover, .chapter--blue a:hover { color: #fff; }

.eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--pink); margin: 0 0 1.4rem;
}
.eyebrow--light { color: #7FD4F2; }

.prose { max-width: 62ch; }
.prose p { margin: 0 0 1.2em; }
.prose--light { color: rgba(255,255,255,0.88); }
.footnote { font-size: 0.8rem; opacity: 0.6; max-width: 60ch; margin-top: 1.4rem; }

/* Bio layout: un-cropped portrait beside the opening prose */
.bio { display: grid; grid-template-columns: minmax(240px, 340px) 1fr; gap: 36px; align-items: start; margin-bottom: 1rem; }
.portrait { margin: 0; }
.portrait img {
  width: 100%; height: auto; display: block;
  border-radius: var(--radius); box-shadow: var(--shadow);
}
.portrait figcaption { margin-top: 0.7rem; font-size: 0.82rem; opacity: 0.65; line-height: 1.45; }
@media (max-width: 700px) {
  .bio { grid-template-columns: 1fr; }
  .portrait { max-width: 340px; }
}

/* Pull quotes */
.pull { margin: 3rem 0; padding-left: 1.6rem; border-left: 3px solid var(--pink); }
.pull blockquote {
  margin: 0; font-family: var(--font-display); font-style: italic;
  font-size: var(--step-2); line-height: 1.3; color: var(--navy);
}
.pull--light blockquote { color: #fff; }

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh; display: grid; align-content: center;
  background: radial-gradient(120% 90% at 70% 10%, #16305E 0%, var(--navy-deep) 55%);
  color: #fff; overflow: hidden; position: relative;
}
.hero__media { position: absolute; inset: 0; z-index: 0; }
.hero__media img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  opacity: 0.5; transform: scale(1.06);
  animation: heroDrift 14s var(--ease) forwards;
}
@keyframes heroDrift { to { transform: scale(1); } }
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(to bottom, rgba(10,22,48,0.55) 0%, rgba(10,22,48,0.35) 40%, rgba(10,22,48,0.92) 100%),
    linear-gradient(100deg, rgba(10,22,48,0.85) 0%, rgba(10,22,48,0.35) 55%, rgba(10,22,48,0.15) 100%);
}
.hero__glow, .hero__inner, .hero__scrollcue { position: relative; z-index: 1; }
.hero__glow {
  position: absolute; inset: 0; pointer-events: none;
  background:
    radial-gradient(40% 30% at 20% 85%, rgba(0,163,218,0.22), transparent 70%),
    radial-gradient(30% 25% at 85% 70%, rgba(246,3,98,0.14), transparent 70%);
}
.hero__inner { max-width: var(--wrap-wide); margin-inline: auto; padding: 8rem 24px 4rem; position: relative; }
.hero__eyebrow { color: #7FD4F2; }
.hero__title {
  font-size: var(--step-4); margin: 0 0 1.6rem; max-width: 14ch;
}
.hero__line { display: block; overflow: hidden; }
.hero__line span { display: block; transform: translateY(110%); animation: riseIn 1s var(--ease) forwards; }
.hero__line:nth-child(2) span { animation-delay: 0.18s; }
.hero__line:nth-child(3) span { animation-delay: 0.36s; }
.hero__line--accent span { font-style: italic; color: var(--blue); }
@keyframes riseIn { to { transform: translateY(0); } }
.hero__lede { max-width: 54ch; color: rgba(255,255,255,0.85); font-size: var(--step-1); line-height: 1.6; }
.hero__lede a { color: #7FD4F2; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2.4rem; }
.hero__scrollcue { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); width: 1px; height: 56px; background: var(--line-light); overflow: hidden; }
.hero__scrollcue span { display: block; width: 100%; height: 40%; background: #fff; animation: cue 2s var(--ease) infinite; }
@keyframes cue { 0% { transform: translateY(-100%);} 100% { transform: translateY(260%);} }

/* ---------- Videos (lite embed) ---------- */
.video { margin: 3rem 0 1rem; }
.video__poster {
  position: relative; display: block; width: 100%; padding: 0; border: 0;
  border-radius: var(--radius); overflow: hidden; cursor: pointer;
  aspect-ratio: 16 / 9; background: #000; box-shadow: var(--shadow);
}
.video__poster img { width: 100%; height: 100%; object-fit: cover; opacity: 0.82; transition: opacity 0.4s, transform 0.6s var(--ease); }
.video__poster img.video__ali { object-position: center 16%; }
.video__poster::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,22,48,0.6), rgba(10,22,48,0) 45%); pointer-events: none; }
.video__play, .video__label { z-index: 1; }
.video__poster:hover img { opacity: 1; transform: scale(1.025); }
.video__play {
  position: absolute; inset: 0; margin: auto; width: 82px; height: 82px; border-radius: 50%;
  background: rgba(246,3,98,0.92); transition: transform 0.3s var(--ease), background 0.3s;
}
.video__play::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  width: 0; height: 0; border-left: 22px solid #fff;
  border-top: 13px solid transparent; border-bottom: 13px solid transparent; translate: 4px 0;
}
.video__poster:hover .video__play { transform: scale(1.08); }
.video__label {
  position: absolute; left: 20px; bottom: 16px; color: #fff; font-weight: 600;
  font-size: 0.92rem; text-shadow: 0 1px 8px rgba(0,0,0,0.6);
}
.video iframe { width: 100%; aspect-ratio: 16/9; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }

/* ---------- Triptych (Togo mission) ---------- */
.triptych { list-style: none; margin: 3rem 0; padding: 0; display: grid; gap: 20px; grid-template-columns: repeat(3, 1fr); }
.triptych li { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 1.6rem 1.4rem; }
.triptych__num { font-family: var(--font-display); font-size: 2rem; color: var(--blue); display: block; margin-bottom: 0.4rem; }
.triptych h3 { margin-bottom: 0.3em; }
.triptych p { margin: 0; font-size: 0.95rem; opacity: 0.85; }

/* ---------- Creed list (final message) ---------- */
.creed { list-style: none; margin: 2.6rem 0 0; padding: 0; max-width: 46ch; }
.creed li {
  font-family: var(--font-display); font-size: var(--step-1); padding: 0.9rem 0;
  border-bottom: 1px solid var(--line-light);
}
.creed li:last-child { border-bottom: 0; color: #7FD4F2; font-style: italic; }

/* ---------- Timeline ---------- */
.timeline { list-style: none; margin: 3.4rem 0; padding: 0; position: relative; }
.timeline::before {
  content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px;
  background: linear-gradient(var(--blue), var(--pink));
}
.timeline__item { position: relative; padding: 0 0 2.2rem 42px; opacity: 0.35; transform: translateX(10px); transition: opacity 0.6s var(--ease), transform 0.6s var(--ease); }
.timeline__item.is-in { opacity: 1; transform: none; }
.timeline__item::before {
  content: ""; position: absolute; left: 0; top: 8px; width: 16px; height: 16px;
  border-radius: 50%; background: var(--navy); border: 3px solid var(--blue);
}
.timeline__year { font-weight: 700; letter-spacing: 0.14em; font-size: 0.8rem; color: #7FD4F2; text-transform: uppercase; }
.timeline__item h3 { margin: 0.25em 0 0.3em; color: #fff; }
.timeline__item p { margin: 0; max-width: 56ch; color: rgba(255,255,255,0.8); }

/* ---------- Stats ---------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 3rem; }
.stat { border: 1px solid var(--line-light); border-radius: var(--radius); padding: 1.6rem 1.3rem; text-align: center; }
.stat__num { display: block; font-family: var(--font-display); font-size: var(--step-3); color: #fff; line-height: 1; }
.stat__label { display: block; margin-top: 0.6rem; font-size: 0.85rem; letter-spacing: 0.04em; color: rgba(255,255,255,0.75); }

/* ---------- Donation cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin: 3rem 0 2.4rem; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 1.9rem 1.7rem; display: flex; flex-direction: column; gap: 0.8rem;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow); border-color: rgba(0,163,218,0.4); }
.card__tag {
  align-self: flex-start; margin: 0; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--blue);
  background: var(--blue-soft); padding: 0.3em 0.9em; border-radius: 999px;
}
.card:first-child .card__tag { color: var(--pink); background: #FDE4EE; }
.card h3 { margin: 0.1em 0 0; }
.card p { margin: 0; font-size: 0.96rem; opacity: 0.88; }
.card__hadith {
  margin: 0.2rem 0 0; padding: 0.8rem 1rem; border-left: 3px solid var(--blue);
  background: var(--blue-soft); border-radius: 0 8px 8px 0;
  font-family: var(--font-display); font-style: italic; font-size: 0.94rem; line-height: 1.5;
}
.card__hadith cite { display: block; font-family: var(--font-body); font-style: normal; font-size: 0.76rem; opacity: 0.7; margin-top: 0.35rem; }
.card__btn { margin-top: auto; align-self: flex-start; }
.card__sub { font-size: 0.88rem; font-weight: 600; }

/* ---------- Trust ---------- */
.trust { list-style: none; margin: 2.4rem 0 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px 26px; max-width: 100%; }
.trust li { padding-left: 1.7rem; position: relative; font-weight: 500; font-size: 0.96rem; }
.trust li::before {
  content: ""; position: absolute; left: 0; top: 0.42em; width: 14px; height: 14px;
  border-radius: 50%; background: var(--blue-soft); border: 4px solid var(--blue);
}

/* ---------- FAQ ---------- */
.faq { margin-top: 2.4rem; border-top: 1px solid var(--line); }
.faq details { border-bottom: 1px solid var(--line); }
.faq summary {
  cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.15rem 0.2rem; font-family: var(--font-display); font-size: var(--step-1); line-height: 1.3;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+"; font-family: var(--font-body); font-weight: 400; font-size: 1.5rem;
  color: var(--pink); flex-shrink: 0; transition: transform 0.3s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details > div { padding: 0 0.2rem 1.4rem; max-width: 64ch; }
.faq details > div p { margin: 0; }

/* ---------- Dua / epilogue ---------- */
.chapter--final { text-align: left; }
.dua { margin: 4rem 0 0; padding-top: 3rem; border-top: 1px solid var(--line-light); }
.dua blockquote { margin: 0; font-family: var(--font-display); font-style: italic; font-size: var(--step-1); line-height: 1.55; color: rgba(255,255,255,0.9); max-width: 60ch; }
.dua blockquote p { margin: 0 0 1em; }
.dua em { color: #7FD4F2; }

/* ---------- Footer ---------- */
.footer { background: #071022; color: rgba(255,255,255,0.78); padding: 4rem 0 2rem; font-size: 0.92rem; }
.footer a { color: rgba(255,255,255,0.78); text-decoration: none; display: block; padding: 0.28rem 0; }
.footer a:hover { color: #fff; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer__name { font-family: var(--font-display); font-size: 1.3rem; color: #fff; margin: 0 0 0.6rem; }
.footer__name em { color: var(--blue); }
.footer__brand a { display: inline; color: #7FD4F2; text-decoration: underline; }
.footer h3 { font-family: var(--font-body); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: #7FD4F2; margin-bottom: 0.9rem; }
.footer__legal { margin-top: 3rem; padding-top: 1.4rem; border-top: 1px solid rgba(255,255,255,0.12); font-size: 0.8rem; opacity: 0.65; }

/* ---------- Sticky CTA ---------- */
.sticky-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 85;
  opacity: 0; transform: translateY(14px); transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
}
.sticky-cta.is-visible { opacity: 1; transform: none; }

/* ---------- Cookie notice ---------- */
.cookie {
  position: fixed; left: 22px; bottom: 22px; z-index: 86; max-width: 380px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow); padding: 1.1rem 1.2rem; font-size: 0.88rem;
}
.cookie p { margin: 0 0 0.8rem; }
.cookie__actions { display: flex; gap: 10px; justify-content: flex-end; }

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-in { opacity: 1; transform: none; }

/* ---------- 404 / legal pages ---------- */
.page-simple { min-height: 70svh; display: grid; align-content: center; padding: 9rem 0 5rem; }
.page-simple h1 { font-size: var(--step-3); }
.err-code { font-family: var(--font-display); font-size: clamp(5rem, 15vw, 9rem); line-height: 1; color: var(--blue); margin: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1180px) { .rail { display: none; } }
@media (max-width: 900px) {
  .cards, .triptych { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .trust { grid-template-columns: 1fr 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .nav__links, .nav__cta { display: none; }
  .nav__burger { display: block; }
  .nav__mobile.is-open {
    display: flex; flex-direction: column; gap: 4px;
    background: var(--paper); color: var(--ink);
    padding: 1rem 24px 1.6rem; box-shadow: 0 20px 30px -20px rgba(0,0,0,0.3);
  }
  .nav__mobile a { color: var(--ink); text-decoration: none; font-weight: 600; padding: 0.65rem 0; }
  .nav__mobile .btn { color: #fff; margin-top: 0.6rem; justify-content: center; }
  .nav.is-open { background: var(--paper); color: var(--ink); }
  .cards, .triptych, .stats, .trust, .footer__grid { grid-template-columns: 1fr; }
  .sticky-cta { right: 0; left: 0; bottom: 0; padding: 10px 14px; background: rgba(251,251,249,0.94); backdrop-filter: blur(8px); border-top: 1px solid var(--line); }
  .sticky-cta .btn { width: 100%; justify-content: center; }
  .cookie { left: 12px; right: 12px; bottom: 74px; max-width: none; }
  .video__play { width: 62px; height: 62px; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal, .timeline__item { opacity: 1 !important; transform: none !important; transition: none !important; }
  .hero__line span { animation: none; transform: none; }
  .hero__media img { animation: none; transform: none; }
  .hero__scrollcue, .veil { display: none; }
  * { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* ---------- Print ---------- */
@media print {
  .nav, .rail, .sticky-cta, .cookie, .hero__scrollcue, .veil { display: none !important; }
  .chapter--dark, .chapter--navy, .chapter--blue { background: #fff !important; color: #000 !important; }
}
