/* =========================================================
   Corvo do Sertão — Landing page do pendrive
   Direção: Gothic Americana / Dark Country
   ========================================================= */

:root {
  --ink: #0b0908;
  --coal: #14100e;
  --smoke: #1d1714;
  --line: #3a2e28;
  --bone: #f1e6d0;
  --bone-dim: #cfc1a6;
  --paper: #e6d6b4;
  --paper-ink: #1a120e;
  --rust: #c2461f;
  --rust-hot: #d9542a;
  --rust-deep: #6d200d;
  --ember: #e08a3a;
  --blood: #7d1d12;

  --f-display: 'IM Fell English', 'Times New Roman', serif;
  --f-body: 'Source Serif 4', Georgia, serif;
  --f-ui: 'Barlow Condensed', 'Arial Narrow', sans-serif;

  --gutter: clamp(20px, 5vw, 48px);
  --radius: 6px;
}

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

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

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: var(--f-body);
  font-size: clamp(18px, 1.1vw + 14px, 20px);
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

/* grão de filme sobre a página inteira */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
  opacity: .16;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='2' stitchTiles='stitch'/%3E%3CfeColorMatrix values='0 0 0 0 1  0 0 0 0 1  0 0 0 0 1  0 0 0 .9 0'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

img, svg { max-width: 100%; }
h1, h2, h3, p, ul, ol { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: inherit; }

:focus-visible {
  outline: 3px solid var(--ember);
  outline-offset: 3px;
}

.wrap {
  width: 100%;
  max-width: 1160px;
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.wrap--narrow { max-width: 820px; }
.center { text-align: center; }

/* ---------- Tipografia ---------- */
h1, h2, h3 {
  font-family: var(--f-display);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: .005em;
  text-wrap: balance;
}
h1 { font-size: clamp(2.5rem, 8.4vw, 5.3rem); }
h2 { font-size: clamp(2.05rem, 5.6vw, 3.6rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.85rem); line-height: 1.15; }

h1 em, h2 em {
  font-style: italic;
  color: var(--ember);
}

.eyebrow {
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: clamp(.95rem, 1.6vw, 1.1rem);
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--ember);
  margin-bottom: 14px;
}

.lead { font-size: clamp(1.15rem, 2.2vw, 1.35rem); color: var(--bone); }
.lead strong { color: #fff; }

/* ---------- Botões ---------- */
.btn {
  --lift: 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7em;
  min-height: 56px;
  padding: 14px 30px;
  font-family: var(--f-ui);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .09em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  line-height: 1.1;
  color: #fff8ea;
  background: linear-gradient(180deg, var(--rust-hot), var(--rust));
  border: 2px solid #f0a06a;
  border-radius: var(--radius);
  box-shadow: 0 var(--lift) 0 var(--rust-deep), 0 14px 30px rgba(194, 70, 31, .28);
  transition: transform .12s ease, box-shadow .12s ease, filter .2s ease;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.btn:hover { filter: brightness(1.08); transform: translateY(-2px); }
.btn:active { transform: translateY(var(--lift)); box-shadow: 0 0 0 var(--rust-deep), 0 6px 14px rgba(194, 70, 31, .3); }

.btn--sm { min-height: 44px; padding: 8px 20px; font-size: 1.1rem; --lift: 3px; }
.btn--xl { min-height: 68px; padding: 18px 38px; font-size: clamp(1.3rem, 3.2vw, 1.6rem); }
.btn--block { display: flex; width: 100%; }
.btn--dark {
  background: linear-gradient(180deg, #2a1e19, #150f0d);
  border-color: var(--ember);
  color: var(--bone);
  box-shadow: 0 var(--lift) 0 #000, 0 14px 30px rgba(0, 0, 0, .3);
}
.btn__price {
  padding-left: .8em;
  border-left: 2px solid rgba(255, 248, 234, .5);
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 5px 0 var(--rust-deep), 0 14px 30px rgba(194, 70, 31, .28), 0 0 0 0 rgba(224, 138, 58, .55); }
  60%      { box-shadow: 0 5px 0 var(--rust-deep), 0 14px 30px rgba(194, 70, 31, .28), 0 0 0 16px rgba(224, 138, 58, 0); }
}
.btn--pulse { animation: pulse 2.8s ease-out infinite; }
.btn--pulse:hover, .btn--pulse:active { animation: none; }

/* ---------- Faixa e topo ---------- */
.announce {
  background: var(--blood);
  color: #ffe9cf;
  text-align: center;
  padding: 9px var(--gutter);
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: clamp(.9rem, 2.4vw, 1.05rem);
  letter-spacing: .12em;
  text-transform: uppercase;
  line-height: 1.3;
}
.announce span { opacity: .6; margin-inline: .35em; }

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 9, 8, .88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.topbar__in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 10px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-family: var(--f-display);
  font-size: 1.45rem;
  letter-spacing: .02em;
  color: var(--bone);
}
.brand__logo { width: 44px; height: 44px; flex: none; object-fit: contain; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(90% 60% at 70% 20%, rgba(125, 29, 18, .32), transparent 70%),
    linear-gradient(180deg, #100b09, var(--ink) 70%);
}
.hero__grid {
  display: grid;
  gap: 0;
  padding-block: 0 clamp(36px, 6vw, 80px);
}

.hero__art {
  mix-blend-mode: lighten; /* o preto da foto assume a cor do fundo da página, sem "caixa" visível */
  height: clamp(270px, 82vw, 420px);
  margin-inline: calc(var(--gutter) * -1);
  -webkit-mask-image: linear-gradient(to bottom, #000 84%, transparent);
          mask-image: linear-gradient(to bottom, #000 84%, transparent);
}
.hero__art > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain; /* mostra a imagem inteira, sem recorte: o preto da foto se funde com a página */
  object-position: 50% 50%;
}

.hero__copy { position: relative; padding-top: 8px; }
.hero__copy h1 { margin-bottom: 20px; }
.hero__copy .lead { max-width: 34em; }

.hero__buy {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 22px 32px;
  margin-top: 30px;
}

.price { display: flex; flex-direction: column; line-height: 1; }
.price__label {
  font-family: var(--f-ui);
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-size: 1rem;
  color: var(--bone-dim);
  margin-bottom: 6px;
}
.price__value {
  font-family: var(--f-ui);
  font-weight: 700;
  font-size: clamp(3.6rem, 11vw, 4.9rem);
  color: #fff;
  line-height: .95;
  letter-spacing: .01em;
}
.price__value small { font-size: .38em; margin-right: .18em; vertical-align: .9em; color: var(--ember); letter-spacing: .06em; }
.price__value span { font-size: .6em; vertical-align: .3em; }
.price__value--xl { font-size: clamp(4.2rem, 15vw, 6.2rem); }
.price__note { margin-top: 8px; font-size: 1rem; color: var(--bone-dim); }

.micro {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  margin-top: 26px;
  font-size: 1rem;
  color: var(--bone-dim);
}
.micro li { position: relative; padding-left: 20px; }
.micro li::before {
  content: '';
  position: absolute;
  left: 0; top: .62em;
  width: 8px; height: 8px;
  background: var(--ember);
  transform: rotate(45deg);
}
.micro .micro__ok { color: #62dc98; }
.micro .micro__ok::before { background: #3fc57c; }

/* ---------- Números ---------- */
.stats {
  background: var(--coal);
  border-block: 1px solid var(--line);
  padding-block: clamp(26px, 5vw, 44px);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 16px;
}
.stat { text-align: center; }
.stat b {
  display: block;
  font-family: var(--f-ui);
  font-weight: 700;
  letter-spacing: .03em;
  font-size: clamp(2.6rem, 8vw, 4rem);
  line-height: 1;
  color: var(--ember);
  margin-bottom: 8px;
}
.stat span {
  display: block;
  font-size: 1rem;
  line-height: 1.35;
  color: var(--bone-dim);
  max-width: 14em;
  margin-inline: auto;
}

/* ---------- Seções ---------- */
.section { padding-block: clamp(56px, 9vw, 116px); }
.sec-head { text-align: center; margin-bottom: clamp(32px, 5vw, 56px); }

.ticks li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 14px;
}
.ticks li::before {
  content: '';
  position: absolute;
  left: 4px; top: .5em;
  width: 10px; height: 10px;
  background: var(--rust);
  transform: rotate(45deg);
  box-shadow: 0 0 0 3px rgba(194, 70, 31, .25);
}
.ticks--tight li { margin-bottom: 10px; }

/* O que vem */
.what { background: linear-gradient(180deg, var(--ink), var(--smoke)); }
.what__grid { display: grid; gap: clamp(32px, 6vw, 72px); align-items: center; }
.what__art { display: flex; flex-direction: column; align-items: center; }
.what__photo {
  display: block;
  width: min(100%, 520px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--line);
  box-shadow: 0 0 0 6px var(--ink), 0 0 0 7px var(--line), 0 30px 60px rgba(0, 0, 0, .65);
}
.what__caption {
  margin-top: 12px;
  font-family: var(--f-ui);
  font-size: .8rem;
  letter-spacing: .05em;
  color: var(--bone-dim);
  opacity: .7;
}
.what__copy h2 { margin-bottom: 20px; }
.what__copy > p:not(.eyebrow) { margin-bottom: 22px; }

/* A lenda (usa o visual de papel envelhecido, ver bloco .paper) */
.legend__body p { color: #3a2c22; margin-bottom: 18px; }
.legend__body p:last-child { margin-bottom: 0; }

.legend__quote {
  position: relative;
  margin: clamp(32px, 5vw, 48px) 0;
  padding: 8px 8px 8px 28px;
  border-left: 3px solid var(--blood);
}
.legend__quote p {
  font-family: var(--f-display);
  font-style: italic;
  font-size: clamp(1.3rem, 3vw, 1.6rem);
  line-height: 1.35;
  color: var(--paper-ink);
}
.legend__quote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--f-ui);
  font-style: normal;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blood);
}

.legend__for .eyebrow { margin-bottom: 16px; }

/* Repertório */
.tracks { background: linear-gradient(180deg, var(--smoke), var(--ink)); }
.tracks__sub { max-width: 38em; margin: 0 auto; color: var(--bone-dim); }
.tracklist {
  max-width: 640px;
  margin: clamp(28px, 4vw, 44px) auto 0;
}
.track {
  display: flex;
  align-items: baseline;
  gap: 18px;
  padding: 18px 4px;
  border-bottom: 1px solid var(--line);
}
.tracklist .track:first-child { border-top: 1px solid var(--line); }
.track[hidden] { display: none; }
.track__n {
  flex: none;
  width: 2.4ch;
  font-family: var(--f-ui);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--rust);
}
.track__title {
  flex: 1;
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 2.6vw, 1.45rem);
  color: var(--bone);
}
.tracklist__toggle {
  display: block;
  margin: 22px auto 0;
  padding: 10px 4px;
  background: none;
  border: none;
  border-bottom: 1px solid var(--ember);
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--ember);
  cursor: pointer;
}
.tracklist__toggle:hover { color: var(--bone); border-color: var(--bone); }

.tracks__note { margin-top: 28px; color: var(--bone-dim); }

/* Onde ouvir */
.where { background: var(--smoke); }
.cards { display: grid; gap: 18px; }
.card {
  padding: clamp(24px, 4vw, 34px);
  background: var(--coal);
  border: 1px solid var(--line);
  border-top: 3px solid var(--rust);
  border-radius: var(--radius);
}
.card h3 { margin: 14px 0 8px; }
.card p { color: var(--bone-dim); }

.icon {
  width: 52px; height: 52px;
  fill: none;
  stroke: var(--ember);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.icon--lg { width: 78px; height: 78px; flex: none; }

/* Como funciona (papel envelhecido) */
.paper {
  position: relative;
  background:
    radial-gradient(120% 80% at 50% 0%, #efe1c1, transparent 70%),
    var(--paper);
  color: var(--paper-ink);
}
.paper h2 { color: var(--paper-ink); }
.paper .eyebrow { color: var(--blood); }
.paper::before, .paper::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  height: 14px;
  background:
    linear-gradient(135deg, var(--paper) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(225deg, var(--paper) 25%, transparent 25%) 0 0 / 28px 28px;
}
.paper::before { top: -13px; transform: scaleY(-1); }
.paper::after  { bottom: -13px; }

.steps { display: grid; gap: 26px; margin-bottom: clamp(36px, 5vw, 56px); }
.step { display: flex; gap: 20px; align-items: flex-start; }
.step__n {
  flex: none;
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  font-family: var(--f-ui);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: var(--paper);
  background: var(--paper-ink);
  border-radius: 50%;
  box-shadow: 0 0 0 4px var(--paper), 0 0 0 6px var(--paper-ink);
}
.step h3 { margin-bottom: 6px; color: var(--paper-ink); }
.step p { color: #3a2c22; }

/* Para todos */
.everyone {
  background: radial-gradient(80% 90% at 20% 50%, rgba(125, 29, 18, .3), transparent 70%), var(--ink);
}
.everyone__in { display: grid; gap: 28px; align-items: center; justify-items: center; text-align: center; }
.everyone__raven { width: 150px; height: 150px; object-fit: contain; opacity: .95; }
.everyone h2 { margin-bottom: 18px; }
.everyone p { max-width: 36em; margin-inline: auto; color: var(--bone-dim); font-size: clamp(1.1rem, 2vw, 1.25rem); }

/* Oferta */
.offer {
  background:
    radial-gradient(70% 60% at 50% 0%, rgba(194, 70, 31, .22), transparent 70%),
    var(--coal);
}
.offer__card {
  position: relative;
  max-width: 640px;
  margin-inline: auto;
  padding: clamp(28px, 6vw, 52px);
  background: linear-gradient(180deg, #1f1714, #120d0b);
  border: 2px solid var(--ember);
  border-radius: 10px;
  box-shadow: 0 0 0 6px var(--ink), 0 0 0 8px var(--line), 0 40px 80px rgba(0, 0, 0, .6);
}
.offer__card h2 { font-size: clamp(2rem, 6vw, 3rem); margin-bottom: 22px; }
.offer__price { display: flex; flex-direction: column; margin: 28px 0 24px; line-height: 1; }
.offer__more {
  margin-top: 22px;
  padding: 16px 18px;
  font-size: 1.05rem;
  text-align: center;
  color: var(--bone);
  background: rgba(224, 138, 58, .1);
  border: 1px dashed var(--ember);
  border-radius: var(--radius);
}
.offer__more b { color: var(--ember); }

/* Selos de compra segura */
.seals {
  background: var(--coal);
  border-block: 1px solid var(--line);
  padding-block: clamp(28px, 5vw, 44px);
}
.seals__list {
  display: grid;
  gap: 22px 32px;
  justify-content: center;
}
.seal {
  display: flex;
  align-items: center;
  gap: 16px;
}
.seal__badge {
  flex: none;
  width: 76px;
  height: 76px;
  filter: drop-shadow(0 6px 14px rgba(23, 112, 63, .45));
}
.seal__text { display: flex; flex-direction: column; line-height: 1.25; }
.seal__text b {
  font-family: var(--f-ui);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: #62dc98;
}
.seal__text small { font-size: .95rem; color: var(--bone-dim); }

/* Depoimentos */
.testimonials { background: var(--smoke); }
.testimonials__sub { max-width: 38em; margin: 0 auto; color: var(--bone-dim); }
.testimonials__grid {
  display: grid;
  gap: 22px;
  margin-top: clamp(28px, 4vw, 44px);
}
.testimonial {
  overflow: hidden;
  background: var(--coal);
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, .4);
}
.testimonial img { display: block; width: 100%; height: auto; }

@media (min-width: 700px) {
  .testimonials__grid { grid-template-columns: repeat(3, 1fr); }
}

/* FAQ */
.faq { background: var(--ink); }
.faq__list details {
  border-bottom: 1px solid var(--line);
}
.faq__list details:first-child { border-top: 1px solid var(--line); }
.faq__list summary {
  position: relative;
  padding: 22px 48px 22px 0;
  min-height: 60px;
  cursor: pointer;
  list-style: none;
  font-family: var(--f-display);
  font-size: clamp(1.25rem, 3vw, 1.55rem);
  line-height: 1.25;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::after {
  content: '+';
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  font-family: var(--f-ui);
  font-size: 2rem;
  color: var(--ember);
  transition: transform .2s ease;
}
.faq__list details[open] summary::after { content: '\2013'; }
.faq__list details[open] summary { color: var(--ember); }
.faq__list details p { padding: 0 0 24px; max-width: 40em; color: var(--bone-dim); }

/* CTA final */
.final {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: clamp(64px, 10vw, 120px);
  background:
    radial-gradient(60% 70% at 50% 100%, rgba(194, 70, 31, .32), transparent 70%),
    var(--coal);
  border-top: 1px solid var(--line);
}
.final__in { position: relative; display: flex; flex-direction: column; align-items: center; gap: 20px; }
.final__raven { width: 110px; height: 110px; object-fit: contain; }
.final p { color: var(--bone-dim); font-size: clamp(1.1rem, 2vw, 1.25rem); }
.final .btn { margin-top: 8px; }

/* Rodapé */
.footer { background: #070605; border-top: 1px solid var(--line); padding-block: 36px 96px; }
.footer__in { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; font-size: .95rem; color: var(--bone-dim); }
.footer__copy { font-size: .85rem; opacity: .7; }

/* Barra fixa de compra (celular) */
.sticky {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
  background: rgba(11, 9, 8, .96);
  border-top: 2px solid var(--rust);
  transform: translateY(110%);
  transition: transform .3s ease;
}
.sticky.is-on { transform: translateY(0); }
.sticky__price {
  display: flex;
  flex-direction: column;
  font-family: var(--f-ui);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
  color: #fff;
}
.sticky__price small { font-size: .5em; color: var(--ember); margin-right: 2px; }
.sticky__price span { margin-top: 4px; font-family: var(--f-ui); font-size: .9rem; letter-spacing: .1em; text-transform: uppercase; color: var(--bone-dim); }
.sticky .btn { flex: 1; max-width: 240px; min-height: 52px; padding-inline: 16px; font-size: 1.2rem; }

/* ---------- Revelar ao rolar ---------- */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
  transition-delay: var(--rd, 0s);
}
.js .reveal.is-in { opacity: 1; transform: none; }

/* ---------- Telas maiores ---------- */
@media (min-width: 700px) {
  .seals__list { grid-template-columns: repeat(3, auto); }
  .stats__grid { grid-template-columns: repeat(4, 1fr); }
  .cards { grid-template-columns: repeat(3, 1fr); }
  .steps { grid-template-columns: repeat(3, 1fr); gap: 34px; }
  .step { flex-direction: column; }
  .everyone__in { grid-template-columns: auto 1fr; text-align: left; justify-items: start; gap: 48px; }
  .everyone p { margin-inline: 0; }
  .everyone__raven { width: 210px; height: 210px; }
}

@media (min-width: 900px) {
  .hero__grid {
    grid-template-columns: 1.05fr .95fr;
    align-items: center;
    gap: clamp(24px, 4vw, 64px);
    padding-block: clamp(40px, 6vw, 88px);
  }
  .hero__copy { order: 1; padding-top: 0; }
  .hero__art {
    order: 2;
    height: clamp(440px, 42vw, 620px);
    margin-inline: 0 calc(var(--gutter) * -1);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 4%, #000 86%, transparent 100%);
    -webkit-mask-composite: source-in;
            mask-image: linear-gradient(to right, transparent 0, #000 6%, #000 94%, transparent 100%), linear-gradient(to bottom, transparent 0, #000 4%, #000 86%, transparent 100%);
            mask-composite: intersect;
  }
  .what__grid { grid-template-columns: 1fr 1fr; }
  .sticky { display: none; }
  .footer { padding-bottom: 36px; }
}

@media (max-width: 899px) {
  .topbar .btn { display: none; }
  .topbar__in { justify-content: center; }
}

@media (max-width: 420px) {
  .hero__buy .btn { width: 100%; }
  .btn__price { display: none; }
}

/* ---------- Movimento reduzido ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .js .reveal { opacity: 1; transform: none; }
}
