/* ═══════════════════════════════════════════════════
   Ana Paula Araújo · Advocacia Estratégica
   Identidade: preto profundo + dourado champagne
   ═══════════════════════════════════════════════════ */

:root {
  --bg: #0b0a08;
  --bg-soft: #131109;
  --bg-card: #16130d;
  --gold: #c9a25e;
  --gold-light: #e6c98c;
  --gold-dim: rgba(201, 162, 94, 0.35);
  --text: #efe9dd;
  --text-dim: #a89f8d;
  --line: rgba(201, 162, 94, 0.18);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", "Segoe UI", sans-serif;
  --ease-apple: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--gold); color: var(--bg); }

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

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.15; }

h2 { font-size: clamp(2.2rem, 5vw, 3.6rem); letter-spacing: 0.01em; }

em {
  font-style: italic;
  background: linear-gradient(100deg, var(--gold-light), var(--gold) 60%, #9a7a3e);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ── Botões ─────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 2.2rem;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.5s var(--ease-apple), box-shadow 0.5s var(--ease-apple),
              background 0.4s, color 0.4s, border-color 0.4s;
}
.btn--gold {
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  color: #1a1508;
}
.btn--gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px -12px rgba(201, 162, 94, 0.45);
}
.btn--ghost {
  border-color: var(--gold-dim);
  color: var(--gold-light);
  background: transparent;
}
.btn--ghost:hover { border-color: var(--gold); background: rgba(201, 162, 94, 0.08); transform: translateY(-3px); }
.btn--small { padding: 0.7rem 1.4rem; font-size: 0.7rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── Monograma ──────────────────────────────────── */
.monogram {
  font-family: var(--serif);
  font-size: 1.9rem;
  letter-spacing: 0.08em;
  background: linear-gradient(120deg, var(--gold-light), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.monogram--large { font-size: 3.4rem; }

/* ── Header ─────────────────────────────────────── */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 1.1rem clamp(1.2rem, 4vw, 3.5rem);
  transition: background 0.5s, backdrop-filter 0.5s, padding 0.5s var(--ease-apple),
              border-color 0.5s;
  border-bottom: 1px solid transparent;
}
.header--scrolled {
  background: rgba(11, 10, 8, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom-color: var(--line);
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
}
.header__brand { display: flex; align-items: center; gap: 0.9rem; text-decoration: none; }
.header__name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.2;
  display: flex;
  flex-direction: column;
}
.header__name small {
  font-family: var(--sans);
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
}
.header__nav { display: flex; gap: 2.2rem; }
.header__nav a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  position: relative;
  transition: color 0.35s;
}
.header__nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 100%; height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.5s var(--ease-apple);
}
.header__nav a:hover { color: var(--gold-light); }
.header__nav a:hover::after { transform: scaleX(1); transform-origin: left; }

.header__burger {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.header__burger span {
  width: 26px; height: 1.5px;
  background: var(--gold-light);
  transition: transform 0.4s var(--ease-apple), opacity 0.3s;
}
.header__burger--open span:first-child { transform: translateY(3.75px) rotate(45deg); }
.header__burger--open span:last-child { transform: translateY(-3.75px) rotate(-45deg); }

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(11, 10, 8, 0.96);
  backdrop-filter: blur(20px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.4rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s var(--ease-apple);
}
.mobile-menu--open { opacity: 1; pointer-events: auto; }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--text);
  text-decoration: none;
  transition: color 0.3s;
}
.mobile-menu a:hover { color: var(--gold-light); }

/* ── Hero ───────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(6rem, 12vh, 9rem) clamp(1.2rem, 5vw, 5rem) 4rem;
  overflow: hidden;
}
.hero__glow {
  position: absolute;
  top: -30%;
  right: -15%;
  width: 70vw;
  height: 70vw;
  background: radial-gradient(circle, rgba(201, 162, 94, 0.14), transparent 60%);
  pointer-events: none;
  animation: glowDrift 14s ease-in-out infinite alternate;
}
@keyframes glowDrift {
  from { transform: translate(0, 0) scale(1); }
  to   { transform: translate(-6%, 8%) scale(1.12); }
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: clamp(2rem, 6vw, 6rem);
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}
.hero__eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.hero__eyebrow::before {
  content: "";
  display: inline-block;
  width: 42px; height: 1px;
  background: var(--gold);
  vertical-align: middle;
  margin-right: 1rem;
}
.hero__title {
  font-size: clamp(2.6rem, 5.6vw, 4.8rem);
  font-weight: 300;
}
.hero__title span { display: block; }
.hero__sub {
  max-width: 46ch;
  margin-top: 1.8rem;
  color: var(--text-dim);
  font-size: 1.05rem;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 2.6rem; }

.hero__visual { position: relative; justify-self: center; }
.hero__portrait {
  position: relative;
  width: clamp(240px, 26vw, 380px);
  border-radius: 200px 200px 12px 12px;
  overflow: hidden;
  box-shadow: 0 40px 80px -30px rgba(0, 0, 0, 0.8);
  will-change: transform;
}
.hero__portrait img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.06); transition: transform 1.6s var(--ease-apple); }
.hero__portrait:hover img { transform: scale(1.12); }
.hero__frame {
  position: absolute;
  inset: 10px;
  border: 1px solid var(--gold-dim);
  border-radius: 190px 190px 8px 8px;
  pointer-events: none;
}
.hero__badge {
  position: absolute;
  bottom: 8%;
  left: -22%;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  padding: 0.8rem 1.2rem;
  background: rgba(19, 17, 9, 0.85);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line);
  border-radius: 100px;
  will-change: transform;
}
.hero__badge img {
  width: 52px; height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
}
.hero__badge strong { display: block; font-family: var(--serif); font-size: 1rem; font-weight: 500; }
.hero__badge span { font-size: 0.72rem; letter-spacing: 0.06em; color: var(--text-dim); }
.hero__watermark {
  position: absolute;
  top: -14%;
  right: -18%;
  font-family: var(--serif);
  font-size: clamp(7rem, 14vw, 12rem);
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 162, 94, 0.16);
  pointer-events: none;
  user-select: none;
}

.hero__scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 26px; height: 44px;
  border: 1px solid var(--gold-dim);
  border-radius: 20px;
  display: flex;
  justify-content: center;
}
.hero__scroll span {
  width: 3px; height: 9px;
  margin-top: 8px;
  border-radius: 3px;
  background: var(--gold);
  animation: scrollHint 2s var(--ease-apple) infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(0); opacity: 1; }
  70%  { transform: translateY(14px); opacity: 0; }
  100% { transform: translateY(0); opacity: 0; }
}

/* ── Manifesto (efeito Apple de palavras) ───────── */
.manifesto {
  padding: clamp(7rem, 16vh, 12rem) clamp(1.2rem, 6vw, 6rem);
  text-align: center;
  background: linear-gradient(180deg, var(--bg), var(--bg-soft) 50%, var(--bg));
}
.manifesto__line {
  font-family: var(--serif);
  font-size: clamp(2.4rem, 6.5vw, 5.2rem);
  font-weight: 300;
  max-width: 20ch;
  margin: 0 auto;
  line-height: 1.25;
}
.manifesto__line .word {
  display: inline-block;
  opacity: 0.12;
  filter: blur(4px);
  transform: translateY(0.25em);
  transition: opacity 0.6s var(--ease-apple), filter 0.6s var(--ease-apple), transform 0.6s var(--ease-apple);
}
.manifesto__line .word--lit {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
.manifesto__sub {
  margin: 2.6rem auto 0;
  max-width: 52ch;
  color: var(--text-dim);
}

/* ── Cabeçalho de seção ─────────────────────────── */
.section-head { text-align: center; margin-bottom: clamp(3rem, 7vh, 5rem); }
.section-head__tag {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}
.section-head__tag::before,
.section-head__tag::after {
  content: "—";
  color: var(--gold-dim);
  margin: 0 0.8rem;
}

/* ── Sobre ──────────────────────────────────────── */
.about { padding: clamp(5rem, 12vh, 9rem) clamp(1.2rem, 5vw, 5rem); }
.about__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  align-items: center;
  max-width: 1180px;
  margin: 0 auto;
}
.about__photos { position: relative; padding-bottom: 5rem; }
.about__photo {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.75);
  will-change: transform;
}
.about__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.4s var(--ease-apple); }
.about__photo:hover img { transform: scale(1.07); }
.about__photo--main { width: 78%; }
.about__photo--float {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 52%;
  border: 1px solid var(--line);
  outline: 10px solid var(--bg);
}
.about__text p { color: var(--text-dim); margin-bottom: 1.3rem; font-size: 1.05rem; }
.about__text strong { color: var(--text); font-weight: 500; }
.about__list { list-style: none; margin: 1.8rem 0 0; }
.about__list li {
  position: relative;
  padding: 0.85rem 0 0.85rem 2.4rem;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
}
.about__list li::before {
  content: "⚜";
  position: absolute;
  left: 0.4rem;
  color: var(--gold);
}
.about__verse {
  margin-top: 1.6rem !important;
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem !important;
  color: var(--gold) !important;
}

/* ── Áreas ──────────────────────────────────────── */
.areas { padding: clamp(5rem, 12vh, 9rem) clamp(1.2rem, 5vw, 5rem); background: var(--bg-soft); }
.areas__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  max-width: 1180px;
  margin: 0 auto;
}
.area-card {
  position: relative;
  padding: 2.8rem 2.2rem 2.4rem;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.7s var(--ease-apple), border-color 0.5s, box-shadow 0.7s var(--ease-apple);
}
.area-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(600px circle at var(--mx, 50%) var(--my, 0%), rgba(201, 162, 94, 0.09), transparent 45%);
  opacity: 0;
  transition: opacity 0.5s;
}
.area-card:hover { transform: translateY(-10px); border-color: var(--gold-dim); box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.7); }
.area-card:hover::before { opacity: 1; }
.area-card__icon {
  width: 58px; height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  color: var(--gold-light);
  margin-bottom: 1.6rem;
  transition: background 0.4s, color 0.4s;
}
.area-card:hover .area-card__icon { background: rgba(201, 162, 94, 0.12); }
.area-card__icon svg { width: 26px; height: 26px; }
.area-card h3 { font-size: 1.7rem; margin-bottom: 0.9rem; color: var(--gold-light); font-weight: 500; }
.area-card p { color: var(--text-dim); font-size: 0.95rem; }
.area-card__number {
  position: absolute;
  top: 1.4rem;
  right: 1.8rem;
  font-family: var(--serif);
  font-size: 2.6rem;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 162, 94, 0.25);
}

/* ── Galeria parallax ───────────────────────────── */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
  padding: clamp(5rem, 12vh, 9rem) clamp(1.2rem, 5vw, 5rem);
  max-width: 1400px;
  margin: 0 auto;
  align-items: start;
}
.gallery__item {
  border-radius: 14px;
  overflow: hidden;
  will-change: transform;
  box-shadow: 0 24px 50px -20px rgba(0, 0, 0, 0.7);
}
.gallery__item--tall { margin-top: 4rem; }
.gallery__item img {
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  transition: transform 1.4s var(--ease-apple), filter 0.8s;
  filter: saturate(0.92);
}
.gallery__item:hover img { transform: scale(1.06); filter: saturate(1.05); }

/* ── Método ─────────────────────────────────────── */
.method { padding: clamp(5rem, 12vh, 9rem) clamp(1.2rem, 5vw, 5rem); background: var(--bg-soft); }
.method__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(2rem, 4vw, 4rem);
  max-width: 1180px;
  margin: 0 auto;
}
.method__step { text-align: center; padding: 0 1rem; }
.method__num {
  display: inline-grid;
  place-items: center;
  width: 74px; height: 74px;
  border: 1px solid var(--gold-dim);
  border-radius: 50%;
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--gold-light);
  margin-bottom: 1.4rem;
  position: relative;
}
.method__num::after {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(201, 162, 94, 0.1);
  border-radius: 50%;
}
.method__step h3 { font-size: 1.45rem; margin-bottom: 0.7rem; font-weight: 500; }
.method__step p { color: var(--text-dim); font-size: 0.95rem; }

/* ── Contato ────────────────────────────────────── */
.contact {
  padding: clamp(6rem, 14vh, 10rem) clamp(1.2rem, 5vw, 5rem);
  background:
    radial-gradient(1000px circle at 85% 10%, rgba(201, 162, 94, 0.07), transparent 55%),
    var(--bg);
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 7vw, 7rem);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.contact__text h2 { margin: 1rem 0 1.4rem; }
.contact__text > p { color: var(--text-dim); max-width: 42ch; }
.contact__channels { display: flex; flex-direction: column; gap: 0.9rem; margin-top: 2.2rem; }
.contact__channel {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--gold-light);
  text-decoration: none;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  transition: color 0.3s, transform 0.4s var(--ease-apple);
  width: fit-content;
}
.contact__channel:hover { color: var(--gold); transform: translateX(6px); }
.contact__channel svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact__form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: clamp(1.8rem, 3.5vw, 2.8rem);
  box-shadow: 0 40px 80px -40px rgba(0, 0, 0, 0.8);
}
.field { margin-bottom: 1.2rem; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.9rem 1.1rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line);
  border-radius: 10px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 0.98rem;
  font-weight: 300;
  transition: border-color 0.35s, background 0.35s, box-shadow 0.35s;
}
.field select { appearance: none; }
.field select option { background: var(--bg-card); color: var(--text); }
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: rgba(168, 159, 141, 0.5); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(201, 162, 94, 0.05);
  box-shadow: 0 0 0 4px rgba(201, 162, 94, 0.08);
}
.contact__note {
  margin-top: 1rem;
  font-size: 0.78rem;
  color: var(--text-dim);
  text-align: center;
}

/* ── Footer ─────────────────────────────────────── */
.footer {
  text-align: center;
  padding: 4.5rem 1.5rem 3rem;
  border-top: 1px solid var(--line);
  background: var(--bg-soft);
}
.footer__name { font-family: var(--serif); font-size: 1.3rem; margin-top: 1rem; }
.footer__line {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold);
  margin: 0.5rem 0 1.6rem;
}
.footer__links { display: flex; justify-content: center; gap: 2rem; margin-bottom: 1.8rem; }
.footer__links a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 0.78rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  transition: color 0.3s;
}
.footer__links a:hover { color: var(--gold-light); }
.footer__copy { font-size: 0.78rem; color: rgba(168, 159, 141, 0.55); }

/* ── WhatsApp flutuante ─────────────────────────── */
.whatsapp-float {
  position: fixed;
  right: 1.6rem;
  bottom: 1.6rem;
  z-index: 80;
  width: 60px; height: 60px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #2ee06f, #1eb856);
  color: #fff;
  box-shadow: 0 14px 34px -8px rgba(30, 184, 86, 0.55);
  transition: transform 0.5s var(--ease-apple), box-shadow 0.5s;
}
.whatsapp-float svg { width: 30px; height: 30px; position: relative; z-index: 1; }
.whatsapp-float:hover { transform: translateY(-5px) scale(1.06); box-shadow: 0 20px 44px -8px rgba(30, 184, 86, 0.65); }
.whatsapp-float__pulse {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: rgba(46, 224, 111, 0.45);
  animation: waPulse 2.4s var(--ease-apple) infinite;
}
@keyframes waPulse {
  0%   { transform: scale(1); opacity: 0.7; }
  70%  { transform: scale(1.65); opacity: 0; }
  100% { transform: scale(1.65); opacity: 0; }
}

/* ── Animação de reveal (scroll) ────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(42px);
  filter: blur(6px);
  transition: opacity 1s var(--ease-apple), transform 1s var(--ease-apple), filter 1s var(--ease-apple);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal--in {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

/* ── Responsivo ─────────────────────────────────── */
@media (max-width: 1024px) {
  .header__nav { display: none; }
  .hero__inner { grid-template-columns: 1fr; gap: 4rem; text-align: center; }
  .hero__eyebrow::before { display: none; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__actions { justify-content: center; }
  .hero__badge { left: -6%; }
  .about__grid { grid-template-columns: 1fr; }
  .areas__grid { grid-template-columns: 1fr; max-width: 560px; }
  .method__steps { grid-template-columns: 1fr; max-width: 480px; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .contact__inner { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .header__cta { display: none; }
  .header__burger { display: flex; }
  .header__name { font-size: 0.92rem; }
  .hero { padding-top: 7rem; }
  .hero__title { font-size: clamp(1.9rem, 9.5vw, 2.6rem); text-wrap: balance; }
  h2 { text-wrap: balance; }
  .hero__badge { position: static; margin-top: 1.4rem; width: fit-content; margin-left: auto; margin-right: auto; }
  .hero__watermark { display: none; }
  .hero__scroll { display: none; }
  .field-row { grid-template-columns: 1fr; }
  .gallery { gap: 0.8rem; }
  .gallery__item--tall { margin-top: 2rem; }
  .whatsapp-float { width: 54px; height: 54px; right: 1.1rem; bottom: 1.1rem; }
}

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