:root{
  --bg: #102A21;
  --cream: #1C3D31;
  --cream-soft: #17332A;
  --copper: #C9A24C;
  --copper-deep: #9C7A3C;
  --copper-dark: #081712;
  --gold-soft: #E7D2A0;
  --ink: #F2E9D6;
  --ink-soft: #B7AC95;
  --border: rgba(201,162,76,0.22);
  --white: #FFFFFF;
  --surface-light: #FBF6EA;
  --text-on-light: #201B14;
  --text-on-light-soft: #5C5344;

  --font-display: 'Cormorant Garamond', serif;
  --font-tracked: 'Poppins', sans-serif;
  --font-body: 'DM Sans', sans-serif;

  --header-h: 152px;
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior: smooth; }

body{
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.65;
  overflow-x: hidden;
}

a{ color:inherit; text-decoration:none; }
img{ display:block; max-width:100%; }
::selection{ background: var(--copper); color: var(--text-on-light); }

.container{
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

.section{ padding: 110px 0; position: relative; }

.section-tag{
  display:block;
  font-family: var(--font-tracked);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}

/* ---------- PHOTO PLACEHOLDER ---------- */
.img-frame{ position: relative; }

.photo-placeholder{
  display: none;
  position: absolute;
  inset: 0;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  text-align: center;
  background:
    repeating-linear-gradient(135deg, var(--cream) 0px, var(--cream) 16px, var(--cream-soft) 16px, var(--cream-soft) 32px);
  border: 2px dashed var(--copper);
  border-radius: inherit;
  color: var(--copper);
}
.img-frame.img-missing .photo-placeholder{ display: flex; }
.img-frame.img-missing img{ display: none; }

.photo-placeholder svg{
  width: 40px; height: 40px;
  color: var(--copper);
  opacity: .85;
}
.photo-placeholder .ph-label{
  font-family: var(--font-tracked);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.photo-placeholder code{
  font-family: 'DM Sans', monospace;
  font-size: 11px;
  color: var(--text-on-light-soft);
  background: rgba(251,246,234,0.85);
  padding: 4px 10px;
  border-radius: 8px;
  word-break: break-all;
}

/* ---------- HEADER ---------- */
header{
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(16,42,33,0.90);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

nav{
  display:flex;
  align-items:center;
  justify-content: space-between;
  padding: 34px 0;
}

.logo{
  display:flex;
  align-items:center;
  gap: 18px;
}

.logo-mark{
  width: 64px;
  height: 82px;
  object-fit: contain;
  object-position: center bottom;
}

.logo-text{
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.1;
  display:flex;
  flex-direction: column;
}

.logo-text small{
  font-family: var(--font-tracked);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--copper);
  margin-top: 5px;
}

.nav-links{
  display:flex;
  gap: 40px;
  font-family: var(--font-tracked);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
}
.nav-links a{ transition: color .2s; }
.nav-links a:hover{ color: var(--copper); }

.nav-cta{
  position: relative;
  overflow: hidden;
  font-family: var(--font-tracked);
  font-size: 13px;
  font-weight: 500;
  padding: 11px 22px;
  background: var(--copper);
  color: var(--text-on-light);
  border-radius: 30px;
  transition: background .2s, transform .2s, box-shadow .35s;
  white-space: nowrap;
}
.nav-cta::before{
  content: '';
  position: absolute;
  top: 0;
  left: -75%;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent, rgba(255,255,255,0.65), transparent);
  transform: skewX(-20deg);
  transition: left .65s ease;
}
.nav-cta:hover{
  background: var(--copper-deep);
  transform: translateY(-1px);
  box-shadow: 0 8px 26px rgba(201,162,76,0.45);
}
.nav-cta:hover::before{ left: 125%; }

.nav-actions{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

@media (max-width: 780px){ .nav-links{ display:none; } }

/* ---------- MOBILE MENU (TOGGLE + PAINEL) ---------- */
.nav-toggle{
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: 1px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  flex-shrink: 0;
}
.nav-toggle span{
  display: block;
  width: 20px;
  height: 2px;
  background: var(--copper);
  border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.nav-mobile{
  display: none;
  flex-direction: column;
  max-height: 0;
  overflow: hidden;
  background: var(--bg);
  border-top: 1px solid var(--border);
  transition: max-height .35s ease;
}
.nav-mobile.open{ max-height: 420px; }
.nav-mobile a{
  padding: 16px 28px;
  font-family: var(--font-tracked);
  font-size: 15px;
  font-weight: 500;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:hover{ color: var(--copper); }
@media (max-width: 780px){
  nav{ padding: 18px 0; }
  .logo-mark{ width: 42px; height: 54px; }
  .logo-text{ font-size: 17px; }
  .logo-text small{ font-size: 8.5px; margin-top: 3px; }
  .nav-cta{
    font-size: 12px;
    padding: 9px 14px;
  }
  .nav-toggle{ display: flex; }
  .nav-mobile{ display: flex; }
}

@media (max-width: 420px){
  .logo{ gap: 10px; }
  .logo-mark{ width: 34px; height: 44px; }
  .logo-text{ font-size: 14px; }
  .logo-text small{ display: none; }
  .nav-cta{ font-size: 11px; padding: 8px 10px; }
}

@media (max-width: 340px){
  .nav-actions{ gap: 8px; }
  .nav-cta{ padding: 7px 9px; }
}

/* ---------- HERO ---------- */
.hero{
  position: relative;
  min-height: 78vh;
  overflow: hidden;
}

.hero-media{ position:absolute; inset:0; }
.hero-video{ width:100%; height:100%; object-fit: cover; object-position: 30% 18%; display: block; }

.video-frame.video-missing .hero-video{ display: none; }
.video-frame.video-missing .photo-placeholder{ display: flex; }
.video-frame.video-missing .hero-sound-btn{ display: none; }

.hero-sound-btn{
  position: absolute;
  right: 22px;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
  background: rgba(8,23,18,0.45);
  backdrop-filter: blur(4px);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.hero-sound-btn:hover{
  background: rgba(8,23,18,0.65);
  border-color: var(--gold-soft);
}

.hero-sound-btn svg{
  width: 20px;
  height: 20px;
}

.hero-sound-btn .icon-unmuted{ display: none; }

.hero-sound-btn[aria-pressed="true"] .icon-muted{ display: none; }
.hero-sound-btn[aria-pressed="true"] .icon-unmuted{ display: block; }
.hero-sound-btn[aria-pressed="true"]{
  border-color: var(--gold-soft);
}

@media (max-width: 420px){
  .hero-sound-btn{ right: 14px; bottom: 14px; width: 38px; height: 38px; }
  .hero-sound-btn svg{ width: 17px; height: 17px; }
}

/* No mobile o vídeo é horizontal (paisagem) — mostra ele inteiro em vez de cortar as laterais */
@media (max-width: 780px){
  .hero{
    min-height: 0;
    aspect-ratio: 960 / 544;
    background: #081712;
  }
  .hero-media{ position: static; aspect-ratio: 960 / 544; }
  .hero-video{ height: auto; object-fit: contain; }
}

.scroll-cue{
  display:inline-flex;
  align-items:center;
  gap: 8px;
  margin-top: 46px;
  font-family: var(--font-tracked);
  font-size: 13px;
  color: var(--copper);
  border-bottom: 1px solid rgba(201,162,76,0.55);
  padding-bottom: 4px;
  transition: border-color .25s, color .25s, text-shadow .35s;
}
.scroll-cue:hover{
  border-color: var(--copper);
  color: var(--gold-soft);
  text-shadow: 0 0 14px rgba(201,162,76,0.65), 0 0 28px rgba(201,162,76,0.35);
}
.scroll-cue span{ transition: transform .2s; }
.scroll-cue:hover span{ transform: translateX(4px); }

/* ---------- INTRO ---------- */
.intro{
  min-height: calc(100vh - var(--header-h));
  padding: 72px 0 28px;
  box-sizing: border-box;
  display: flex;
  align-items: stretch;
}
.intro .container.intro-grid{ width: 100%; }

.intro-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  align-items: stretch;
}

.intro-photo{
  border-radius: 28px 0 0 28px;
  overflow: hidden;
}
.intro-photo img{ width:100%; height:100%; object-fit: cover; }

.intro-card{
  background: var(--cream);
  border-radius: 0 28px 28px 0;
  padding: 48px;
  display:flex;
  flex-direction: column;
  justify-content:center;
}

.intro-card h2{
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  color: var(--copper);
  margin-bottom: 18px;
}

.intro-card p{
  font-size: clamp(17px, 1.5vw, 21px);
  color: var(--ink);
  max-width: 520px;
  margin-bottom: 14px;
  line-height: 1.55;
}

.arrow-divider{
  display:block;
  width: 60px;
  height: 2px;
  background: var(--copper);
  margin-top: 16px;
  position: relative;
}
.arrow-divider::after{
  content: '→';
  position: absolute;
  right: -22px;
  top: -12px;
  color: var(--copper);
}

@media (max-width: 860px){
  .intro{ min-height: 0; padding: 0; }
  .intro-grid{ grid-template-columns: 1fr; }
  .intro-photo{ border-radius: 32px 32px 0 0; min-height: 340px; }
  .intro-card{ border-radius: 0 0 32px 32px; padding: 44px 32px; }
  .intro-card p{ font-size: 16px; }
}

/* ---------- QUOTE BAND ---------- */
.quote-band{
  background: var(--copper-deep);
  padding: 90px 0;
}
.quote-lead{
  font-family: var(--font-display);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 500;
  color: var(--white);
  max-width: 880px;
  line-height: 1.35;
}
.quote-lead span{ color: var(--gold-soft); font-style: italic; }

/* ---------- STORY ---------- */
.story-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  align-items: stretch;
}
.story-photo{
  border-radius: 28px 0 0 28px;
  overflow: hidden;
  min-height: 360px;
}
.story-photo img{ width:100%; height:100%; object-fit: cover; }

.story-card{
  background: var(--cream);
  border-radius: 0 28px 28px 0;
  padding: 48px;
  display:flex;
  flex-direction: column;
  justify-content:center;
}
.story-card h3{
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 18px;
}
.story-card p{
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 520px;
  line-height: 1.55;
}
@media (max-width: 860px){
  .story-grid{ grid-template-columns: 1fr; }
  .story-photo{ border-radius: 32px 32px 0 0; min-height: 300px; }
  .story-card{ border-radius: 0 0 32px 32px; padding: 44px 32px; }
}

/* ---------- LANÇAMENTO (Bienal do Livro) ---------- */
.launch{ padding: 100px 0; }

.launch-grid{
  display:grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 0;
  align-items: stretch;
  border-radius: 28px;
  overflow: hidden;
}

.launch-photo{ min-height: 100%; }
.launch-photo .ph-img{ width:100%; height:100%; object-fit: cover; object-position: top center; }

.launch-card{
  background: var(--cream);
  padding: 56px 48px;
  display:flex;
  flex-direction: column;
  justify-content:center;
}

.launch-tag{
  display:inline-block;
  font-family: var(--font-tracked);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--copper);
  margin-bottom: 18px;
}

.launch-card h2{
  font-family: var(--font-display);
  font-size: clamp(28px, 3.2vw, 40px);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.25;
  margin-bottom: 24px;
}

.launch-card p{
  font-size: 16px;
  color: var(--ink-soft);
  line-height: 1.7;
  max-width: 560px;
  margin-bottom: 16px;
}

.launch-card strong{ color: var(--copper); font-weight: 600; }

.launch-final{
  color: var(--ink) !important;
  font-style: italic;
  margin-top: 8px;
}

@media (max-width: 860px){
  .launch{ padding: 0; }
  .launch-grid{ grid-template-columns: 1fr; border-radius: 32px; }
  .launch-photo{ min-height: 340px; }
  .launch-card{ padding: 44px 32px; }
}

/* ---------- PARQUE GLOBAL ---------- */
.pg-feature{ padding: 110px 0; }

.pg-carousel{
  position: relative;
  width: 100%;
  max-width: 480px;
  aspect-ratio: 3 / 4;
  max-height: calc(100vh - var(--header-h) - 24px);
  margin: 60px auto 0;
  overflow: hidden;
  border-radius: 24px;
}

.pg-carousel-track{
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .55s cubic-bezier(.65,0,.35,1);
}

.pg-carousel-slide{
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  position: relative;
}
.pg-carousel-slide img{ width: 100%; height: 100%; object-fit: cover; }

.pg-carousel-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(201,162,76,0.45);
  background: rgba(16,42,33,0.55);
  backdrop-filter: blur(6px);
  color: var(--gold-soft);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  transition: background .2s, color .2s, transform .2s;
}
.pg-carousel-btn:hover{ background: var(--copper); color: var(--text-on-light); }
.pg-carousel-prev{ left: 24px; }
.pg-carousel-next{ right: 24px; }

.pg-carousel-dots{
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  z-index: 5;
}
.pg-carousel-dot{
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.45);
  cursor: pointer;
  padding: 0;
  transition: background .2s, transform .2s;
}
.pg-carousel-dot.active{ background: var(--copper); transform: scale(1.35); }

@media (max-width: 640px){
  .pg-carousel-btn{ width: 40px; height: 40px; font-size: 19px; }
  .pg-carousel-prev{ left: 12px; }
  .pg-carousel-next{ right: 12px; }
}

.pg-body{
  display:grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 48px;
  align-items: start;
}

.pg-text h2{
  font-family: var(--font-display);
  font-size: clamp(40px, 5vw, 60px);
  font-weight: 500;
  color: var(--copper);
  margin-bottom: 20px;
}
.pg-text p{ color: var(--ink-soft); font-size: 16px; margin-bottom: 14px; max-width: 540px; }

.pg-stat-card{
  background: var(--cream);
  border-radius: 24px;
  padding: 40px;
}
.pg-stat-num{
  font-family: var(--font-display);
  font-size: 80px;
  font-weight: 500;
  color: var(--copper);
  line-height: 1;
  display:block;
}
.pg-stat-label{
  font-family: var(--font-tracked);
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--copper);
  display:block;
  margin: 8px 0 18px;
}
.pg-stat-card p{ font-size: 14.5px; color: var(--ink-soft); }

@media (max-width: 860px){ .pg-body{ grid-template-columns: 1fr; } }

.pg-closing{
  margin-top: 70px;
  text-align: center;
}
.pg-closing p{ font-size: 17px; color: var(--ink-soft); max-width: 640px; margin: 0 auto 20px; }
.pg-highlight{
  font-family: var(--font-display);
  font-size: clamp(28px, 3.6vw, 38px);
  font-style: italic;
  color: var(--copper) !important;
  line-height: 1.5;
}

/* ---------- DIFERENCIAL ---------- */
.diferencial h2{
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 50px);
  font-weight: 500;
  color: var(--ink);
  max-width: 720px;
  margin-bottom: 40px;
}

.diferencial-body{
  columns: 2;
  column-gap: 48px;
  margin-bottom: 70px;
}
.diferencial-body p{
  font-size: 16px;
  color: var(--ink-soft);
  margin-bottom: 16px;
  break-inside: avoid;
}
.diferencial-emphasis{
  color: var(--copper-deep) !important;
  font-weight: 500;
  font-size: 17px !important;
}
@media (max-width: 720px){ .diferencial-body{ columns: 1; } }

.pol-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.pol-card{
  background: var(--cream);
  border-radius: 22px;
  padding: 36px 32px;
}
.pol-card h4{
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 500;
  color: var(--copper);
  margin-bottom: 14px;
}
.pol-card p{ font-size: 14.5px; color: var(--ink-soft); }
@media (max-width: 860px){ .pol-grid{ grid-template-columns: 1fr; } }

/* ---------- CONQUISTAS ---------- */
.conquistas h2{
  font-family: var(--font-display);
  font-size: clamp(34px, 4.4vw, 50px);
  font-weight: 500;
  color: var(--ink);
  max-width: 640px;
  margin-bottom: 44px;
}

.conquistas-strip{
  background: var(--cream);
  border-radius: 24px;
  padding: 44px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}
.conquista-item{ display:flex; gap: 16px; align-items:flex-start; }
.conquista-item svg{ width: 30px; height:30px; flex-shrink:0; color: var(--copper); margin-top: 2px; }
.conquista-item p{ font-size: 15px; color: var(--ink); }
@media (max-width: 860px){ .conquistas-strip{ grid-template-columns: 1fr; } }

/* ---------- DEPOIMENTOS ---------- */
.depoimentos{ background: var(--cream-soft); }

.depo-head{
  display:flex;
  align-items:flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 44px;
}
.depo-head h2{
  font-family: var(--font-display);
  font-size: clamp(32px, 4.2vw, 46px);
  font-weight: 500;
  color: var(--ink);
  max-width: 560px;
}

.depo-viewport{
  overflow: hidden;
  width: 100%;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}

.depo-track{
  display: flex;
  width: max-content;
  gap: 22px;
  padding: 4px 28px 20px;
  animation: depoScroll 55s linear infinite;
}
.depo-viewport:hover .depo-track{ animation-play-state: paused; }

@keyframes depoScroll{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce){
  .depo-track{ animation: none; }
}

.depo-card{
  flex: 0 0 340px;
  background: var(--surface-light);
  border: 1px solid rgba(32,27,20,0.08);
  border-radius: 22px;
  padding: 32px;
  display:flex;
  flex-direction: column;
}
.depo-stars{ color: var(--copper-deep); letter-spacing: 2px; margin-bottom: 16px; font-size: 14px; }
.depo-card p{ font-size: 14.5px; color: var(--text-on-light-soft); flex: 1; margin-bottom: 20px; }
.depo-author strong{ display:block; font-family: var(--font-display); font-size: 18px; color: var(--text-on-light); font-weight: 600; }
.depo-author span{ font-size: 12.5px; color: var(--copper-deep); font-family: var(--font-tracked); }

/* ---------- MANIFESTO ---------- */
.manifesto{
  background: var(--copper-dark);
  text-align: center;
  padding: 110px 0;
}
.manifesto p{
  font-family: var(--font-display);
  font-size: clamp(20px, 2.6vw, 28px);
  color: var(--gold-soft);
  margin-bottom: 10px;
}
.manifesto p span{ color: var(--white); font-weight: 600; }
.manifesto-final{
  margin-top: 30px !important;
  font-size: clamp(32px, 4.6vw, 52px) !important;
  font-weight: 600;
  color: var(--white) !important;
  font-style: italic;
  letter-spacing: 0.01em;
}

/* ---------- CONTATO ---------- */
.contato-grid{
  display:grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items:center;
}
.contato-text h2{
  font-family: var(--font-display);
  font-size: clamp(44px, 6vw, 68px);
  font-weight: 500;
  color: var(--copper);
  margin-bottom: 20px;
}
.contato-text p{ font-size: 16px; color: var(--ink-soft); max-width: 480px; }

.contato-links{ display:flex; flex-direction: column; gap: 18px; }
.contato-item{
  display:flex;
  align-items:center;
  gap: 16px;
  background: var(--cream);
  border-radius: 16px;
  padding: 18px 24px;
  font-family: var(--font-tracked);
  font-size: 15px;
  color: var(--ink);
  transition: background .2s, transform .2s;
}
.contato-item:hover{ background: #26493B; transform: translateX(4px); }
.contato-item svg{ width: 22px; height: 22px; color: var(--copper); flex-shrink:0; }

@media (max-width: 780px){ .contato-grid{ grid-template-columns: 1fr; } }

/* ---------- FOOTER ---------- */
footer{ border-top: 1px solid var(--border); padding: 30px 0; }
.footer-row{
  display:flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-family: var(--font-tracked);
  font-size: 12px;
  color: var(--ink-soft);
}
.footer-credits a{ color: var(--ink-soft); transition: color .2s; }
.footer-credits a:hover{ color: var(--copper); }

/* ---------- REVEAL ---------- */
.reveal{ opacity:0; transform: translateY(20px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in{ opacity:1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}
