/* ==================================================================
   ViceLeaks — Stylesheet (v2, professional redesign)
   Neon Vice City aesthetic. Mobile-first, vanilla CSS, no framework.
   Photography is royalty-free (Unsplash). No trademarked game assets.
   ================================================================== */

/* ---- Design tokens ---------------------------------------------- */
:root {
  --bg:        #07040f;      /* near-black indigo */
  --bg-2:      #110a20;      /* raised surfaces */
  --bg-3:      #170d2b;      /* cards */
  --glass:     rgba(23, 13, 43, .6);
  --ink:       #f6f1ff;      /* primary text */
  --ink-soft:  #c3b4de;      /* secondary text */
  --ink-mute:  #8a7bb0;      /* muted text */

  --pink:      #ff3ea5;
  --magenta:   #ff2d95;
  --purple:    #9b4dff;
  --cyan:      #22e0ff;
  --amber:     #ffcf4d;

  --grad-hot:  linear-gradient(100deg, #ff2d95 0%, #9b4dff 52%, #22e0ff 100%);
  --grad-soft: linear-gradient(135deg, rgba(255,45,149,.16), rgba(34,224,255,.12));

  --ring:      rgba(255, 62, 165, .5);
  --line:      rgba(255, 255, 255, .09);

  --radius:    18px;
  --radius-lg: 26px;
  --radius-sm: 12px;
  --max:       1180px;

  --shadow:      0 18px 50px rgba(0, 0, 0, .55);
  --shadow-neon: 0 0 0 1px rgba(255,45,149,.22), 0 20px 46px rgba(155,77,255,.28);

  --font-head: "Poppins", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(1200px 700px at 82% -12%, rgba(155,77,255,.20), transparent 60%),
    radial-gradient(1000px 600px at -12% 8%, rgba(255,45,149,.15), transparent 55%),
    radial-gradient(800px 600px at 50% 128%, rgba(34,224,255,.12), transparent 60%);
  background-attachment: fixed;
  overflow-x: hidden;
}

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

a { color: var(--cyan); text-decoration: none; }
a:hover { color: #7af0ff; }

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.1;
  letter-spacing: -0.02em;
  font-weight: 700;
  margin: 0 0 .5em;
}

h1 { font-size: clamp(2.3rem, 6.4vw, 4.2rem); font-weight: 800; }
h2 { font-size: clamp(1.7rem, 4vw, 2.5rem); }
h3 { font-size: 1.3rem; }

p { margin: 0 0 1.1em; }

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

/* Accessibility helpers */
.visually-hidden {
  position: absolute !important;
  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: -999px; top: 0;
  background: var(--pink); color: #fff;
  padding: 10px 16px; border-radius: 0 0 8px 0;
  z-index: 200;
}
.skip-link:focus { left: 0; }

:focus-visible {
  outline: 3px solid var(--cyan);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---- Buttons ---------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-weight: 600;
  font-family: var(--font-head);
  font-size: .98rem;
  padding: 14px 26px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  color: #fff;
  background: var(--grad-hot);
  background-size: 160% 160%;
  box-shadow: var(--shadow-neon);
  transition: transform .18s ease, filter .18s ease, background-position .5s ease;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.07); background-position: 100% 50%; color: #fff; }
.btn--ghost {
  background: rgba(255,255,255,.04);
  border: 1px solid var(--ring);
  color: var(--ink);
  box-shadow: none;
  backdrop-filter: blur(6px);
}
.btn--ghost:hover { background: rgba(255,255,255,.09); color: #fff; }

/* ---- Neon gradient text ----------------------------------------- */
.neon {
  background: var(--grad-hot);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.kicker {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: .72rem;
  color: var(--cyan);
}

/* ==================================================================
   HEADER / NAV
   ================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 4, 15, .72);
  backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 15px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.4rem;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.brand:hover { color: var(--ink); }
.brand__mark { width: 38px; height: 38px; flex: 0 0 auto; filter: drop-shadow(0 4px 14px rgba(255,45,149,.5)); }
.brand__name { line-height: 1; }
.brand__name small {
  display: block;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 4px;
  font-family: var(--font-body);
}

.nav__toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px; height: 46px;
  background: rgba(255,255,255,.03);
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
}
.nav__toggle span {
  display: block;
  height: 2px; width: 20px;
  margin-inline: auto;
  background: var(--ink);
  border-radius: 2px;
}

#primary-nav {
  display: none;
  position: absolute;
  left: 0; right: 0;
  top: 100%;
  background: var(--bg-2);
  border-bottom: 1px solid var(--line);
  padding: 10px 22px 20px;
}
#primary-nav.is-open { display: block; }
#primary-nav ul {
  list-style: none;
  margin: 0; padding: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
#primary-nav a {
  display: block;
  color: var(--ink-soft);
  font-weight: 500;
  font-family: var(--font-head);
  padding: 12px 10px;
  border-radius: 10px;
}
#primary-nav a:hover { color: var(--ink); background: rgba(255,255,255,.05); }

@media (min-width: 860px) {
  .nav__toggle { display: none; }
  #primary-nav {
    display: block;
    position: static;
    background: transparent;
    border: 0;
    padding: 0;
  }
  #primary-nav ul { flex-direction: row; gap: 4px; align-items: center; }
  #primary-nav a { padding: 9px 16px; font-size: .96rem; }
  #primary-nav a.is-cta {
    background: var(--grad-hot);
    color: #fff;
    box-shadow: var(--shadow-neon);
  }
}

/* ==================================================================
   HERO — full-bleed photographic
   ================================================================== */
.hero {
  position: relative;
  min-height: min(88vh, 780px);
  display: flex;
  align-items: center;
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute; inset: 0;
  background-image: url("/assets/img/photos/hero-miami.jpg");
  background-size: cover;
  background-position: center 30%;
  z-index: -3;
  transform: scale(1.05);
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift { to { transform: scale(1.14) translateY(-14px); } }
.hero::before {
  /* colour grade + darken so text is readable */
  content: "";
  position: absolute; inset: 0; z-index: -2;
  background:
    linear-gradient(180deg, rgba(7,4,15,.55) 0%, rgba(7,4,15,.35) 40%, rgba(7,4,15,.92) 100%),
    linear-gradient(115deg, rgba(255,45,149,.34), rgba(34,224,255,.22));
  mix-blend-mode: normal;
}
.hero::after {
  /* neon horizon glow */
  content: "";
  position: absolute; left: 50%; bottom: -30%;
  width: 900px; height: 520px; transform: translateX(-50%);
  background: radial-gradient(circle, rgba(255,45,149,.4), transparent 62%);
  filter: blur(20px); z-index: -1;
}
.hero__inner { padding-block: 96px; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-size: .72rem;
  color: #fff;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,.28);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  margin-bottom: 24px;
  backdrop-filter: blur(6px);
}
.hero__eyebrow .dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 12px var(--cyan);
  animation: pulse 1.6s ease-in-out infinite;
}
@keyframes pulse { 50% { opacity: .35; transform: scale(.7); } }
.hero h1 { margin-bottom: .3em; text-shadow: 0 6px 40px rgba(0,0,0,.5); }
.hero__lede {
  max-width: 640px;
  margin: 0 auto;
  color: #e7ddfb;
  font-size: 1.18rem;
}

/* Countdown */
.countdown {
  margin: 38px auto 8px;
  display: flex;
  justify-content: center;
  gap: clamp(8px, 2.4vw, 18px);
  flex-wrap: wrap;
}
.countdown__unit {
  position: relative;
  min-width: clamp(70px, 20vw, 116px);
  padding: 20px 12px 14px;
  background: rgba(12, 7, 24, .55);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 34px rgba(0,0,0,.4);
}
.countdown__unit::before {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit; padding: 1px;
  background: var(--grad-hot);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
  opacity: .55;
}
.countdown__num {
  display: block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2rem, 7vw, 3.2rem);
  line-height: 1;
  color: #fff;
  text-shadow: 0 0 22px rgba(255,45,149,.6), 0 0 46px rgba(34,224,255,.3);
  font-variant-numeric: tabular-nums;
}
.countdown__label {
  display: block;
  margin-top: 10px;
  font-size: .66rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.countdown__caption { color: #d9cdf3; font-size: .92rem; margin-top: 16px; }
.hero__cta { margin-top: 30px; display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ==================================================================
   SECTIONS
   ================================================================== */
.section { padding-block: clamp(52px, 8vw, 92px); }
.section__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 34px;
  flex-wrap: wrap;
}
.section__head h2 { margin: 8px 0 0; }
.section__head .lead { margin: 0; color: var(--ink-soft); max-width: 40ch; }
.section__head h2::after {
  content: ""; display: block; width: 66px; height: 4px; margin-top: 16px;
  background: var(--grad-hot); border-radius: 3px;
}

/* ==================================================================
   FEATURED STORY (horizontal hero card)
   ================================================================== */
.featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.featured:hover { transform: translateY(-4px); border-color: var(--ring); box-shadow: var(--shadow-neon); }
.featured__media { position: relative; overflow: hidden; aspect-ratio: 16 / 10; }
.featured__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.featured:hover .featured__media img { transform: scale(1.06); }
.featured__media::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(23,13,43,.65));
}
.featured__body { padding: clamp(24px, 3.4vw, 44px); display: flex; flex-direction: column; justify-content: center; }
.featured__body h3 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin: 14px 0 12px; }
.featured__body p { color: var(--ink-soft); font-size: 1.05rem; }
.featured .meta { color: var(--ink-mute); font-size: .84rem; }

@media (min-width: 900px) {
  .featured { grid-template-columns: 1.15fr 1fr; }
  .featured__media { aspect-ratio: auto; height: 100%; min-height: 420px; }
}

/* ==================================================================
   ARTICLE GRID / CARDS
   ================================================================== */
.grid {
  display: grid;
  gap: 26px;
  grid-template-columns: 1fr;
}
@media (min-width: 600px)  { .grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 940px)  { .grid { grid-template-columns: repeat(3, 1fr); } }

.card {
  display: flex;
  flex-direction: column;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.card:hover {
  transform: translateY(-6px);
  border-color: var(--ring);
  box-shadow: var(--shadow-neon);
}
.card__link { color: inherit; display: flex; flex-direction: column; height: 100%; }
.card__link:hover { color: inherit; }
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-2); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .55s ease; }
.card:hover .card__media img { transform: scale(1.07); }
.card__tag {
  position: absolute;
  left: 14px; top: 14px;
  font-family: var(--font-head);
  font-size: .66rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #fff;
  padding: 6px 13px;
  border-radius: 999px;
  background: rgba(7,4,15,.55);
  border: 1px solid var(--ring);
  backdrop-filter: blur(6px);
}
.card__body { padding: 20px 20px 24px; display: flex; flex-direction: column; flex: 1; }
.card__date { font-size: .78rem; color: var(--ink-mute); letter-spacing: .03em; }
.card__title { margin: 9px 0 9px; font-size: 1.24rem; line-height: 1.25; }
.card__excerpt { color: var(--ink-soft); font-size: .96rem; margin-bottom: 16px; }
.card__more {
  margin-top: auto;
  font-family: var(--font-head);
  font-weight: 600;
  color: var(--pink);
  font-size: .92rem;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap .2s ease;
}
.card:hover .card__more { gap: 12px; }

/* ==================================================================
   CINEMATIC "VIBE" BAND (parallax photo)
   ================================================================== */
.band {
  position: relative;
  padding-block: clamp(70px, 12vw, 140px);
  text-align: center;
  overflow: hidden;
  isolation: isolate;
}
.band__bg {
  position: absolute; inset: 0; z-index: -2;
  background-image: url("/assets/img/photos/beach-sunset.jpg");
  background-size: cover; background-position: center;
  background-attachment: fixed;
}
.band::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, rgba(7,4,15,.82), rgba(7,4,15,.72)),
              linear-gradient(115deg, rgba(255,45,149,.28), rgba(34,224,255,.2));
}
.band h2 { font-size: clamp(1.8rem, 4.6vw, 3rem); }
.band p { max-width: 620px; margin: 0 auto; color: #e7ddfb; font-size: 1.12rem; }
.band .btn { margin-top: 26px; }

/* stat row */
.stats {
  display: grid; gap: 18px; margin: 36px auto 0; max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
}
.stat { padding: 18px 10px; }
.stat b {
  display: block; font-family: var(--font-head); font-weight: 800;
  font-size: clamp(1.6rem, 5vw, 2.6rem); color: #fff;
  text-shadow: 0 0 20px rgba(255,45,149,.5);
}
.stat span { font-size: .74rem; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-soft); }

/* ==================================================================
   TOPIC TILES (image-driven internal links)
   ================================================================== */
.tiles { display: grid; gap: 22px; grid-template-columns: 1fr; }
@media (min-width: 760px) { .tiles { grid-template-columns: repeat(3, 1fr); } }
.tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 220px;
  display: flex; align-items: flex-end;
  border: 1px solid var(--line);
  color: #fff;
}
.tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform .5s ease; }
.tile::after { content: ""; position: absolute; inset: 0; z-index: -1;
  background: linear-gradient(180deg, transparent 30%, rgba(7,4,15,.9)); }
.tile:hover img { transform: scale(1.08); }
.tile:hover { color: #fff; border-color: var(--ring); }
.tile__label { padding: 20px 22px; }
.tile__label span { display: block; font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); margin-bottom: 4px; }
.tile__label strong { font-family: var(--font-head); font-size: 1.35rem; }

/* ==================================================================
   ARTICLE PAGE
   ================================================================== */
.article-hero {
  position: relative;
  padding-block: clamp(48px, 8vw, 96px) clamp(30px, 5vw, 56px);
  overflow: hidden; isolation: isolate;
}
.article-hero__bg { position: absolute; inset: 0; z-index: -2; background-size: cover; background-position: center; transform: scale(1.05); }
.article-hero::before { content:""; position:absolute; inset:0; z-index:-1;
  background: linear-gradient(180deg, rgba(7,4,15,.62), rgba(7,4,15,.94)); }
.article-hero .container { max-width: 820px; }
.article-hero h1 { margin: 14px 0 0; text-shadow: 0 6px 30px rgba(0,0,0,.5); }

.article {
  max-width: 760px;
  margin-inline: auto;
  padding-block: clamp(30px, 5vw, 52px);
}
.article__meta {
  display: flex; gap: 12px; flex-wrap: wrap; align-items: center;
  color: var(--ink-soft); font-size: .88rem;
}
.article__meta .pill {
  color: #fff; background: rgba(255,45,149,.18);
  border: 1px solid var(--ring);
  padding: 4px 13px; border-radius: 999px;
  font-family: var(--font-head);
  font-weight: 600; font-size: .74rem; letter-spacing: .06em; text-transform: uppercase;
}
.article__body { font-size: 1.09rem; }
.article__body h2 { margin-top: 1.8em; }
.article__body h3 { margin-top: 1.4em; color: var(--cyan); }
.article__body ul, .article__body ol { padding-left: 1.25em; margin: 0 0 1.2em; }
.article__body li { margin-bottom: .5em; }
.article__body a { text-decoration: underline; text-underline-offset: 3px; }
.article__body blockquote {
  margin: 1.6em 0; padding: 16px 24px;
  border-left: 3px solid var(--pink);
  background: rgba(255,45,149,.06);
  border-radius: 0 12px 12px 0;
  color: var(--ink); font-style: italic; font-size: 1.14rem;
}
.article__body strong { color: #fff; }
.article__body table {
  width: 100%; border-collapse: collapse; margin: 1.6em 0; font-size: .98rem;
  background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--radius-sm); overflow: hidden;
}
.article__body thead th {
  background: rgba(255,45,149,.12); color: #fff; text-align: left;
  font-family: var(--font-head); font-weight: 600; font-size: .82rem;
  letter-spacing: .04em; text-transform: uppercase; padding: 12px 14px;
}
.article__body td { padding: 12px 14px; border-top: 1px solid var(--line); vertical-align: top; color: var(--ink-soft); }
.article__body tbody tr:nth-child(even) { background: rgba(255,255,255,.02); }
.article__body td:first-child { color: #fff; font-weight: 600; white-space: nowrap; }
@media (max-width: 560px) { .article__body td:first-child { white-space: normal; } }
.article__body figure { margin: 1.8em 0; }
.article__body figure img { border-radius: var(--radius); border: 1px solid var(--line); width: 100%; }
.article__body figcaption { margin-top: 10px; font-size: .84rem; color: var(--ink-mute); text-align: center; }
.breadcrumbs { font-size: .85rem; color: var(--ink-mute); }
.breadcrumbs a { color: var(--ink-soft); }

.article__footer-cta { margin-top: 44px; padding-top: 28px; border-top: 1px solid var(--line); }

/* related posts */
.related { margin-top: 30px; }
.related h2 { font-size: 1.4rem; margin-bottom: 20px; }

/* ==================================================================
   GENERIC "PAGE" (about, privacy, contact)
   ================================================================== */
.page { max-width: 780px; margin-inline: auto; padding-block: clamp(40px, 6vw, 72px); }
.page h1 { margin-bottom: .4em; }
.page h2 { margin-top: 1.6em; }
.page ul { padding-left: 1.25em; }
.page li { margin-bottom: .5em; }
.page a { text-decoration: underline; text-underline-offset: 3px; }
.contact-form { display: grid; gap: 16px; margin-top: 24px; }
.contact-form label { font-weight: 600; font-size: .92rem; font-family: var(--font-head); }
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 13px 15px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-2); color: var(--ink);
  font: inherit; margin-top: 6px;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--ring); outline: none; }
.contact-form textarea { min-height: 160px; resize: vertical; }
.form-note { margin-top: 10px; color: var(--cyan); font-size: .9rem; display: none; }
.form-note.is-visible { display: block; }

/* ==================================================================
   FOOTER
   ================================================================== */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(0,0,0,.32);
  padding-block: 52px 32px;
}
.footer-grid { display: grid; gap: 30px; grid-template-columns: 1fr; }
@media (min-width: 720px) { .footer-grid { grid-template-columns: 1.6fr 1fr 1fr; } }
.site-footer h4 {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mute); margin-bottom: 15px;
}
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 10px; }
.site-footer a { color: var(--ink-soft); }
.site-footer a:hover { color: var(--ink); }
.footer-brand p { color: var(--ink-mute); font-size: .92rem; max-width: 340px; margin-top: 14px; }
.disclaimer {
  margin-top: 34px; padding-top: 22px;
  border-top: 1px solid var(--line);
  color: var(--ink-mute); font-size: .8rem; line-height: 1.65;
}
.disclaimer strong { color: var(--ink-soft); }
.copyright { margin-top: 10px; color: var(--ink-mute); font-size: .8rem; }

/* ---- Scroll-reveal (progressive, safe without JS) --------------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
  .hero__bg { transform: none; }
  .band__bg { background-attachment: scroll; }
  .reveal { opacity: 1; transform: none; }
}
