/* ============================================================
   VOSS: GENESIS — Stylesheet
   Erik Nascimento | Lisboa | 2026
   ============================================================ */

/* === CUSTOM FONTS === */
@font-face {
  font-family: 'BoromirCapsLine';
  src: url('fonts/BoromirCapsLine.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* === CSS CUSTOM PROPERTIES === */
:root {
  /* Palette */
  --bg-primary:    #0D1B0E;
  --bg-secondary:  #1B4332;
  --bg-card:       #111C12;
  --bg-deep:       #080F09;

  --text-primary:   #F0F0F0;
  --text-secondary: #A8B5A0;

  --gold:      #C9A84C;
  --gold-dark: #8B6B2A;
  --gold-glow: rgba(201, 168, 76, 0.18);
  --blue-grey: #4A6670;

  --border:       rgba(201, 168, 76, 0.18);
  --border-hover: rgba(201, 168, 76, 0.55);

  /* Typography */
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --container: 1080px;
  --section-v: 110px;
  --radius:    3px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--sans);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.75;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--transition);
}

a:hover { color: var(--text-primary); }

ul { list-style: none; }

/* === ACCESSIBILITY === */
.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;
}

.hidden { display: none !important; }

/* === LAYOUT HELPERS === */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.section {
  padding: var(--section-v) 0;
  position: relative;
}

.section-dark { background-color: var(--bg-deep); }

/* === SCROLL ANIMATIONS === */
.fade-in-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}

.fade-in-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* === SECTION HEADER === */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 4vw, 2.9rem);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.section-divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-grey));
  margin: 20px auto 0;
  border-radius: 2px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
#navbar {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 900;
  padding: 22px 0;
  transition: padding var(--transition), background var(--transition), border-color var(--transition);
}

#navbar.scrolled {
  background: rgba(8, 15, 9, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}

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

.nav-logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--gold);
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

.nav-logo:hover { color: var(--gold); opacity: 0.85; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-secondary);
}

.nav-links a:hover { color: var(--text-primary); }

.nav-links .nav-cta {
  color: var(--gold);
  border: 1px solid var(--border);
  padding: 7px 18px;
  border-radius: var(--radius);
  transition: background var(--transition), color var(--transition), border-color var(--transition);
}

.nav-links .nav-cta:hover {
  background: var(--gold);
  color: var(--bg-primary);
  border-color: var(--gold);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 910;
  position: relative;
}

.nav-hamburger span {
  display: block;
  width: 23px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: transform 0.35s ease, opacity 0.35s ease;
  transform-origin: center;
}

.nav-hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
#hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(185deg, #040A04 0%, var(--bg-primary) 55%, #091409 100%);
}

#particles-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/luz03.png');
  background-size: cover;
  background-position: center 40%;
  opacity: 0.1;
  filter: blur(3px) saturate(0.6);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 140px 24px 80px;
  max-width: 820px;
}

.hero-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.4s forwards;
}

.hero-title {
  font-family: 'BoromirCapsLine', var(--serif);
  font-size: clamp(4.5rem, 14vw, 10rem);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.025em;
  color: var(--text-primary);
  margin-bottom: 36px;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.65s forwards;
  text-shadow: 0 0 100px rgba(201, 168, 76, 0.12);
}

.hero-colon { color: var(--gold); }

.hero-tagline {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.8vw, 1.4rem);
  font-style: italic;
  color: var(--text-secondary);
  margin-bottom: 36px;
  letter-spacing: 0.02em;
  opacity: 0;
  animation: heroFadeUp 1s ease 0.9s forwards;
}

.hero-badges {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 52px;
  opacity: 0;
  animation: heroFadeUp 1s ease 1.1s forwards;
}

.badge {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 5px 14px;
  border: 1px solid var(--border);
  color: var(--text-secondary);
  border-radius: 100px;
}

.btn-cta {
  display: inline-block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-primary);
  background: linear-gradient(135deg, var(--gold) 0%, #D9BC64 100%);
  padding: 17px 44px;
  border-radius: var(--radius);
  opacity: 0;
  animation: heroFadeUp 1s ease 1.3s forwards;
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.btn-cta::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.08);
  opacity: 0;
  transition: opacity 0.25s;
}

.btn-cta:hover {
  color: var(--bg-primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(201, 168, 76, 0.38);
}

.btn-cta:hover::after { opacity: 1; }

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 44px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  opacity: 0;
  animation: heroFadeIn 1.2s ease 1.8s forwards;
}

.scroll-line {
  width: 1px;
  height: 64px;
  background: linear-gradient(180deg, var(--gold), transparent);
  margin-inline: auto;
  animation: scrollPulse 2.2s ease-in-out infinite;
}

/* ============================================================
   SINOPSE
   ============================================================ */
.sinopse-content {
  max-width: 780px;
  margin-inline: auto;
  display: grid;
  gap: 48px;
}

.sinopse-quote {
  border-left: 3px solid var(--gold);
  padding: 22px 36px;
  background: rgba(201, 168, 76, 0.04);
}

.quote-text {
  font-family: var(--serif);
  font-size: clamp(1.2rem, 2.8vw, 1.75rem);
  font-style: italic;
  color: var(--text-primary);
  line-height: 1.5;
}

.sinopse-text p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
  line-height: 1.85;
}

.sinopse-text p:last-child { margin-bottom: 0; }

.sinopse-text strong {
  color: var(--gold);
  font-weight: 600;
}

.sinopse-comparable {
  font-style: italic;
  color: var(--blue-grey) !important;
  font-size: 0.93rem !important;
  border-top: 1px solid var(--border);
  padding-top: 20px;
  margin-top: 8px;
}

.sinopse-comparable em {
  font-style: normal;
  font-weight: 600;
  color: var(--text-secondary);
}

/* ============================================================
   O MUNDO
   ============================================================ */
.mundo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
  gap: 22px;
  margin-bottom: 56px;
}

.mundo-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.mundo-card::before {
  content: '';
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-grey));
  opacity: 0;
  transition: opacity var(--transition);
}

.mundo-card:hover { transform: translateY(-5px); border-color: var(--border-hover); }
.mundo-card:hover::before { opacity: 1; }

.mundo-icon {
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.mundo-card h3 {
  font-family: var(--serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 14px;
}

.mundo-card p {
  color: var(--text-secondary);
  font-size: 0.93rem;
  line-height: 1.8;
}

.mundo-image {
  text-align: center;
}

.mundo-image img {
  max-width: 680px;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0.8;
  transition: opacity 0.4s;
}

.mundo-image img:hover { opacity: 1; }

.mundo-image figcaption {
  font-size: 0.78rem;
  color: var(--text-secondary);
  margin-top: 12px;
  font-style: italic;
  letter-spacing: 0.05em;
  opacity: 0.7;
}

/* ============================================================
   PERSONAGENS
   ============================================================ */
.personagens-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 22px;
  margin-bottom: 56px;
}

.personagem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition);
}

.personagem-card::after {
  content: '';
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--blue-grey));
  opacity: 0;
  transition: opacity var(--transition);
}

.personagem-card:hover { transform: translateY(-5px); border-color: var(--border-hover); }
.personagem-card:hover::after { opacity: 1; }

.personagem-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}

.personagem-number {
  font-family: var(--serif);
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--gold);
  opacity: 0.65;
  line-height: 1;
}

.personagem-role {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--blue-grey);
}

.personagem-name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
  line-height: 1.2;
}

.personagem-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 24px;
}

.personagem-quote {
  margin: 0;
  border-left: 2px solid var(--gold);
  padding: 12px 20px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-primary);
  background: rgba(201, 168, 76, 0.05);
  line-height: 1.6;
}

.personagens-figure {
  text-align: center;
}

.personagens-figure img {
  max-width: 580px;
  margin-inline: auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  opacity: 0.82;
  transition: opacity 0.4s;
}

.personagens-figure img:hover { opacity: 1; }

/* ============================================================
   SOBRE O AUTOR
   ============================================================ */
.autor-content {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 68px;
  align-items: start;
  max-width: 880px;
  margin-inline: auto;
}

.autor-photo-wrap {
  position: relative;
}

.autor-photo-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius);
  background: rgba(13, 27, 14, 0.45);
  mix-blend-mode: multiply;
  pointer-events: none;
}

.autor-photo-wrap img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.autor-placeholder {
  aspect-ratio: 3 / 4;
  background: var(--bg-card);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.placeholder-initials {
  font-family: var(--serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
}

.placeholder-label {
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-secondary);
  opacity: 0.5;
}

.autor-intro {
  font-family: var(--serif);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 24px;
}

.autor-bio p {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.85;
  margin-bottom: 18px;
}

.autor-bio p:last-of-type { margin-bottom: 0; }
.autor-bio strong { color: var(--text-primary); }

.autor-social {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  padding: 9px 18px;
  border-radius: var(--radius);
  transition: color var(--transition), border-color var(--transition);
}

.social-link:hover {
  color: var(--gold);
  border-color: var(--border-hover);
}

/* ============================================================
   NEWSLETTER
   ============================================================ */
#newsletter {
  background: linear-gradient(150deg, #0D1B0E 0%, #060E07 100%);
}

.newsletter-wrapper {
  max-width: 600px;
  margin-inline: auto;
  text-align: center;
  position: relative;
}

.newsletter-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 68%);
  pointer-events: none;
  z-index: 0;
}

.newsletter-wrapper > * { position: relative; z-index: 1; }

.newsletter-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-block: 14px 20px;
  line-height: 1.2;
}

.newsletter-sub {
  font-size: 1rem;
  color: var(--text-secondary);
  margin-bottom: 48px;
  line-height: 1.75;
}

.newsletter-sub strong { color: var(--gold); }

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group input {
  width: 100%;
  background: rgba(240, 240, 240, 0.04);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 15px 20px;
  color: var(--text-primary);
  font-family: var(--sans);
  font-size: 0.95rem;
  transition: border-color var(--transition), background var(--transition);
  outline: none;
}

.form-group input::placeholder {
  color: var(--text-secondary);
  opacity: 0.55;
}

.form-group input:focus {
  border-color: var(--gold);
  background: rgba(201, 168, 76, 0.04);
}

.btn-submit {
  background: linear-gradient(135deg, var(--gold) 0%, #D9BC64 100%);
  color: var(--bg-primary);
  border: none;
  border-radius: var(--radius);
  padding: 17px 32px;
  font-family: var(--sans);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  margin-top: 6px;
}

.btn-submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(201, 168, 76, 0.32);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.newsletter-disclaimer {
  font-size: 0.77rem;
  color: var(--text-secondary);
  opacity: 0.55;
  margin-top: 20px;
  line-height: 1.6;
}

.rgpd-text {
  display: block;
  margin-top: 10px;
  font-size: 0.7rem;
  color: var(--text-secondary);
  opacity: 0.75;
  line-height: 1.65;
  border-top: 1px solid var(--border);
  padding-top: 10px;
}

.rgpd-text a {
  color: var(--text-secondary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rgpd-text a:hover {
  color: var(--gold);
}

/* ============================================================
   FOOTER
   ============================================================ */
#footer {
  background: #060E07;
  border-top: 1px solid var(--border);
  padding: 64px 0 36px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 48px 64px;
  align-items: start;
  margin-bottom: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid var(--border);
}

.footer-logo {
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 900;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
  letter-spacing: 0.06em;
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-secondary);
  opacity: 0.7;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav a {
  font-size: 0.85rem;
  color: var(--text-secondary);
  transition: color var(--transition);
}

.footer-nav a:hover { color: var(--gold); }

.footer-social-icons { display: flex; gap: 10px; align-items: center; }

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: var(--text-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: color var(--transition), border-color var(--transition);
}

.footer-social-link:hover { color: var(--gold); border-color: var(--border-hover); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: var(--text-secondary);
  opacity: 0.5;
}

.footer-book-tag {
  font-family: var(--serif);
  font-style: italic;
}

/* ============================================================
   KEYFRAME ANIMATIONS
   ============================================================ */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0);    }
}

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

@keyframes scrollPulse {
  0%, 100% { opacity: 1;   transform: scaleY(1);   }
  50%       { opacity: 0.2; transform: scaleY(0.65); }
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  :root { --section-v: 80px; }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand { grid-column: 1 / -1; }

  .autor-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .autor-photo-wrap {
    max-width: 200px;
    margin-inline: auto;
  }

  .form-row {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 680px)
   ============================================================ */
@media (max-width: 680px) {
  :root { --section-v: 68px; }

  /* Nav mobile menu */
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 10, 4, 0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 36px;
    z-index: 905;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: 1.2rem;
    letter-spacing: 0.08em;
  }

  /* Hero */
  .hero-title { font-size: clamp(3.8rem, 18vw, 5rem); }
  .hero-badges { flex-direction: column; align-items: center; }

  /* Sinopse */
  .sinopse-quote { padding: 18px 24px; }

  /* Mundo */
  .mundo-grid { grid-template-columns: 1fr; }

  /* Personagens */
  .personagens-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .footer-brand { grid-column: auto; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   RESPONSIVE — SMALL MOBILE (≤ 400px)
   ============================================================ */
@media (max-width: 400px) {
  .hero-title { font-size: clamp(3rem, 20vw, 4rem); }
  .sinopse-quote { padding: 14px 18px; }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .fade-in-up {
    opacity: 1;
    transform: none;
  }

  html { scroll-behavior: auto; }
}
