/* ================================================================
   FXphoenix — Site stylesheet
   Design system: crimson editorial, dark canvas, Cormorant + Inter
   ================================================================ */

:root {
  /* Palette */
  --crimson-deep: #8B0000;
  --crimson-ember: #C41E3A;
  --gold: #D4A574;
  --gold-bright: #E8C291;
  --cream: #F5E6D3;
  --charcoal: #1A1A1A;
  --charcoal-soft: #232323;
  --charcoal-warm: #2A1F1F;
  --ink: #0E0E0E;
  --ash: #6B6263;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Garamond', 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, system-ui, sans-serif;

  /* Spacing rhythm */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 2rem;
  --space-lg: 4rem;
  --space-xl: 8rem;

  /* Motion */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Layout */
  --max-width: 1200px;
  --reading-width: 720px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  background: var(--charcoal);
  color: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  min-height: 100vh;
}

img, svg {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

/* ================================================================
   AMBIENT BACKGROUND — twinkling stars + drifting embers
   ================================================================ */

.ambient {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
}

.star {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--cream);
  border-radius: 50%;
  opacity: 0;
  animation: twinkle 6s infinite ease-in-out;
}

.star.s2 { width: 1px; height: 1px; opacity: 0.4; }
.star.s3 { width: 3px; height: 3px; }

@keyframes twinkle {
  0%, 100% { opacity: 0; }
  50% { opacity: 0.8; }
}

.ember {
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--crimson-ember) 0%, var(--gold) 50%, transparent 70%);
  opacity: 0;
  animation: drift 18s infinite linear;
  filter: blur(0.5px);
}

@keyframes drift {
  0% { transform: translateY(100vh) translateX(0) scale(0.5); opacity: 0; }
  10% { opacity: 0.9; }
  90% { opacity: 0.9; }
  100% { transform: translateY(-10vh) translateX(50px) scale(1.2); opacity: 0; }
}

/* ================================================================
   NAV
   ================================================================ */

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 1.25rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(180deg, rgba(10,10,10,0.95) 0%, rgba(10,10,10,0.7) 70%, rgba(10,10,10,0) 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: padding 0.3s var(--ease-out);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--cream);
}

.brand-mark {
  width: 36px;
  height: 36px;
  display: block;
  flex-shrink: 0;
}

.brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1;
}

.brand-name .fx {
  color: var(--crimson-ember);
  font-weight: 600;
  font-style: italic;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  position: relative;
  padding: 0.25rem 0;
  transition: color 0.3s var(--ease-out);
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--crimson-ember);
  transition: width 0.3s var(--ease-out);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-bright);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: all 0.3s var(--ease-out);
}

@media (max-width: 820px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: min(80%, 320px);
    background: var(--ink);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    transform: translateX(100%);
    transition: transform 0.4s var(--ease-out);
    border-left: 1px solid rgba(196, 30, 58, 0.3);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1rem; }
}

/* ================================================================
   PAGE CONTAINER
   ================================================================ */

.page {
  position: relative;
  z-index: 1;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.container--narrow {
  max-width: var(--reading-width);
}

/* ================================================================
   HERO (home page)
   ================================================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  background:
    radial-gradient(ellipse 80% 50% at 50% 0%, rgba(139, 0, 0, 0.25) 0%, transparent 60%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(212, 165, 116, 0.08) 0%, transparent 60%),
    var(--charcoal);
  overflow: hidden;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  position: relative;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 1.2s var(--ease-out) 0.3s forwards;
}

.hero-phoenix {
  width: clamp(200px, 35vw, 360px);
  height: auto;
  margin: 0 auto 2.5rem;
  filter: drop-shadow(0 0 40px rgba(196, 30, 58, 0.4));
  opacity: 0;
  animation: fadeUp 1.4s var(--ease-out) 0.5s forwards, hover 6s ease-in-out infinite 1.7s;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.hero h1 .rise {
  font-style: italic;
  color: var(--gold-bright);
  font-weight: 300;
}

.hero h1 .with {
  display: block;
  font-size: 0.5em;
  font-style: italic;
  color: var(--ash);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin: 1rem 0;
  font-weight: 300;
}

.hero h1 .fx {
  color: var(--crimson-ember);
  font-weight: 500;
}

.hero h1 .phoenix {
  color: var(--cream);
  font-weight: 400;
}

.hero-tagline {
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.5vw, 1.6rem);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.hero-tagline .sep {
  color: var(--crimson-ember);
  margin: 0 0.5rem;
  font-style: normal;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.1rem 2.5rem;
  background: transparent;
  border: 1px solid var(--crimson-ember);
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--crimson-deep) 0%, var(--crimson-ember) 100%);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  z-index: -1;
}

.hero-cta:hover::before { transform: translateY(0); }
.hero-cta:hover { border-color: var(--gold); color: var(--cream); }

.hero-cta-arrow {
  transition: transform 0.3s var(--ease-out);
}
.hero-cta:hover .hero-cta-arrow { transform: translateX(4px); }

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ash);
  opacity: 0;
  animation: fadeIn 1s var(--ease-out) 2s forwards;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 30px;
  background: linear-gradient(180deg, var(--ash), transparent);
  margin: 0.75rem auto 0;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

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

/* ================================================================
   SECTION GENERIC
   ================================================================ */

section {
  padding: var(--space-xl) 2rem;
  position: relative;
}

.section-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--crimson-ember);
  margin-bottom: 1.25rem;
  font-weight: 500;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: var(--cream);
}

.section-title .accent {
  color: var(--gold);
  font-style: italic;
}

.section-lede {
  font-size: 1.15rem;
  line-height: 1.7;
  color: var(--cream);
  opacity: 0.85;
  max-width: 60ch;
}

/* ================================================================
   STORY (The Rise — narrative section)
   ================================================================ */

.story {
  background: linear-gradient(180deg, var(--charcoal) 0%, var(--charcoal-warm) 100%);
  border-top: 1px solid rgba(212, 165, 116, 0.1);
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
}

.story-inner {
  max-width: var(--reading-width);
  margin: 0 auto;
}

.story-prose {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--cream);
}

.story-prose p {
  margin-bottom: 1.5rem;
}

.story-prose p:first-of-type::first-letter {
  font-family: var(--font-display);
  font-size: 4rem;
  float: left;
  line-height: 0.85;
  margin: 0.4rem 0.75rem 0 0;
  color: var(--crimson-ember);
  font-weight: 500;
}

.story-prose em {
  color: var(--gold);
  font-style: italic;
}

.pullquote {
  margin: 3rem 0;
  padding: 2rem 0 2rem 2rem;
  border-left: 3px solid var(--crimson-ember);
  font-family: var(--font-display);
  font-size: 1.6rem;
  line-height: 1.4;
  color: var(--gold-bright);
  font-style: italic;
}

.pullquote .attribution {
  display: block;
  margin-top: 1rem;
  font-size: 0.85rem;
  font-style: normal;
  color: var(--ash);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-family: var(--font-body);
}

/* ================================================================
   PILLARS GRID
   ================================================================ */

.pillars {
  background: var(--charcoal);
}

.pillar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1px;
  background: rgba(212, 165, 116, 0.15);
  margin-top: 3rem;
  border: 1px solid rgba(212, 165, 116, 0.15);
}

.pillar {
  background: var(--charcoal);
  padding: 2.5rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background 0.4s var(--ease-out);
  cursor: default;
}

.pillar::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--crimson-ember);
  transition: width 0.5s var(--ease-out);
}

.pillar:hover::before { width: 100%; }
.pillar:hover { background: var(--charcoal-warm); }

.pillar-number {
  font-family: var(--font-display);
  font-size: 1rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.1em;
}

.pillar-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--cream);
  margin-bottom: 0.75rem;
  line-height: 1.2;
}

.pillar-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--cream);
  opacity: 0.7;
}

/* ================================================================
   NEWSLETTER (Join the Nest)
   ================================================================ */

.newsletter {
  background: linear-gradient(180deg, var(--charcoal-warm) 0%, var(--charcoal) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.newsletter-inner {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-mark {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
}

.newsletter-form {
  display: flex;
  gap: 0.75rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-input {
  flex: 1 1 280px;
  padding: 1rem 1.25rem;
  background: rgba(245, 230, 211, 0.05);
  border: 1px solid rgba(212, 165, 116, 0.3);
  color: var(--cream);
  font-size: 0.95rem;
  font-family: var(--font-body);
  transition: all 0.3s var(--ease-out);
}

.newsletter-input:focus {
  outline: none;
  border-color: var(--crimson-ember);
  background: rgba(245, 230, 211, 0.08);
}

.newsletter-input::placeholder {
  color: var(--ash);
  font-style: italic;
}

.newsletter-button {
  padding: 1rem 2rem;
  background: var(--crimson-ember);
  color: var(--cream);
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all 0.3s var(--ease-out);
}

.newsletter-button:hover { background: var(--crimson-deep); }
.newsletter-fineprint {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--ash);
  font-style: italic;
}

/* ================================================================
   FOOTER
   ================================================================ */

.site-footer {
  padding: 4rem 2rem 2rem;
  background: var(--ink);
  border-top: 1px solid rgba(212, 165, 116, 0.15);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .brand {
  margin-bottom: 1rem;
}

.footer-tagline {
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 1.5rem;
}

.footer-blurb {
  color: var(--cream);
  opacity: 0.6;
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 38ch;
}

.footer-col h4 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  font-size: 0.9rem;
  color: var(--cream);
  opacity: 0.7;
  transition: opacity 0.2s var(--ease-out), color 0.2s var(--ease-out);
}

.footer-col a:hover { opacity: 1; color: var(--gold-bright); }

.footer-base {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-top: 2rem;
  border-top: 1px solid rgba(245, 230, 211, 0.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--ash);
}

@media (max-width: 720px) {
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
}

/* ================================================================
   SUB-PAGE HERO (smaller than home hero)
   ================================================================ */

.page-hero {
  padding: 9rem 2rem 5rem;
  text-align: center;
  background:
    radial-gradient(ellipse 70% 60% at 50% 0%, rgba(139, 0, 0, 0.3) 0%, transparent 60%),
    var(--charcoal);
  border-bottom: 1px solid rgba(212, 165, 116, 0.1);
  position: relative;
  overflow: hidden;
}

.page-hero-eyebrow {
  font-size: 0.8rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--crimson-ember);
  margin-bottom: 1.25rem;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.page-hero h1 .accent {
  font-style: italic;
  color: var(--gold);
}

.page-hero-lede {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-style: italic;
  color: var(--cream);
  opacity: 0.85;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

/* ================================================================
   CARD GRID (used on Videos, Eggstras, Fledglings, Nest)
   ================================================================ */

.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.card {
  background: var(--charcoal-soft);
  border: 1px solid rgba(212, 165, 116, 0.1);
  padding: 2rem;
  position: relative;
  transition: all 0.3s var(--ease-out);
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 3px;
  height: 0;
  background: linear-gradient(180deg, var(--crimson-ember), var(--gold));
  transition: height 0.4s var(--ease-out);
}

.card:hover::before { height: 100%; }
.card:hover { border-color: rgba(196, 30, 58, 0.3); transform: translateY(-2px); }

.card-tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.card-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  color: var(--cream);
  line-height: 1.2;
  margin-bottom: 0.75rem;
  font-weight: 500;
}

.card-desc {
  font-size: 0.95rem;
  color: var(--cream);
  opacity: 0.75;
  line-height: 1.6;
}

.card-meta {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(212, 165, 116, 0.1);
  font-size: 0.8rem;
  color: var(--ash);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

/* ================================================================
   COMING SOON BADGE
   ================================================================ */

.soon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(196, 30, 58, 0.1);
  border: 1px solid rgba(196, 30, 58, 0.4);
  color: var(--crimson-ember);
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
}

.soon::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--crimson-ember);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.3; }
}

/* ================================================================
   PILLAR SECTION ON VIDEOS PAGE
   ================================================================ */

.pillar-section {
  padding: 4rem 2rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.08);
}

.pillar-section:last-child { border-bottom: none; }

.pillar-section-header {
  display: flex;
  align-items: baseline;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}

.pillar-section-number {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--crimson-ember);
}

.pillar-section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--cream);
  font-weight: 500;
  flex-grow: 1;
}

.pillar-section-tagline {
  font-style: italic;
  color: var(--gold);
  font-size: 0.95rem;
  font-family: var(--font-display);
}

/* ================================================================
   FLEDGLINGS — kids section special styling
   ================================================================ */

.fledgling-band {
  padding: 3rem 2rem;
  border-bottom: 1px solid rgba(212, 165, 116, 0.08);
}

.fledgling-band-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.fledgling-age {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.fledgling-band-name {
  font-size: 0.85rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--crimson-ember);
}

/* ================================================================
   PROSE PAGE (About / The Rise long-form)
   ================================================================ */

.prose {
  padding: 5rem 2rem;
}

.prose-inner {
  max-width: var(--reading-width);
  margin: 0 auto;
}

.prose p {
  font-size: 1.15rem;
  line-height: 1.85;
  color: var(--cream);
  margin-bottom: 1.5rem;
}

.prose p.lead {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.5;
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.prose h2 {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  color: var(--cream);
  margin: 4rem 0 1.5rem;
  line-height: 1.15;
}

.prose h2 .accent {
  font-style: italic;
  color: var(--gold);
}

.prose em {
  color: var(--gold);
  font-style: italic;
}

.prose strong {
  color: var(--crimson-ember);
  font-weight: 500;
}

.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 4rem 0;
  color: var(--gold);
  opacity: 0.5;
  font-size: 1.5rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  max-width: 100px;
}

/* ================================================================
   UTILITY
   ================================================================ */

.text-center { text-align: center; }
.mt-md { margin-top: 2rem; }
.mt-lg { margin-top: 4rem; }

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .ember, .star { display: none; }
}
