/* ==========================================================================
   Deyvid Tattoo — Landing Page
   Replica em HTML do Figma "Landing Pages / @deyvid_tattooart" (node 522:5)
   ========================================================================== */

/* ---------- Fonts ---------- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF, U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020, U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/inter-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ---------- Tokens ---------- */
:root {
  --ink:      #040404;
  --paper:    #e6e6e6;
  --accent-a: #ff9500;
  --accent-b: #ffb245;
  --red:      #ff0000;

  --grad-cta:    linear-gradient(60.88deg,  #ff9500 6.34%, #ffb245 88.55%);
  --grad-bar:    linear-gradient(26.38deg,  #ff0000 6.34%, #ffb245 88.55%);
  --grad-faq:    linear-gradient(38.97deg,  #ff9500 6.34%, #ffb245 88.55%);
  --grad-works:  linear-gradient(15.74deg,  #ff0000 6.34%, #ffb245 88.55%);
  --grad-head:   linear-gradient(93.89deg,  #e6e6e6 1.03%, #b9b9b9 55.27%, #808080 124.64%);
  --grad-card:   linear-gradient(118.46deg, #000000 2.61%, #040404 67.60%);
  --grad-icon:   linear-gradient(84.91deg,  #ff9500 6.34%, #ffb245 88.55%);

  --glow: 0 0 52.8px rgba(243,233,218,.10), 0 0 66.4px rgba(209,197,173,.25);

  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'SF Pro Text', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

  --shell: 1272px;   /* 1920 - 324*2 */
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: #fff;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.4;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
h1, h2, h3, p, ol, ul, figure { margin: 0; }
a { color: inherit; text-decoration: none; }

.shell { width: min(100% - 48px, var(--shell)); margin-inline: auto; }

/* ---------- Botao ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 413px;
  max-width: 100%;
  height: 66px;
  padding: 10px 16px;
  background-image: var(--grad-cta);
  box-shadow: var(--glow);
  color: var(--ink);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: .01em;
  text-align: center;
  text-transform: uppercase;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
}
.btn:hover  { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 0 60px rgba(255,178,69,.45); }

.btn:active { transform: translateY(0); }
.btn:focus-visible { outline: 3px solid #fff; outline-offset: 3px; }


/* ---------- Par de CTAs: mensagem (primario) + ligacao (secundario) ----------
   O secundario e' contorno, nao preenchido: dois botoes com o mesmo peso
   dividem o clique em vez de somar. O gradiente fica so' no que a gente quer
   que seja clicado primeiro. */
.ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}
.ctas .btn { width: auto; min-width: 260px; flex: 0 1 auto; }
.btn--ghost {
  background-image: none;
  background-color: transparent;
  box-shadow: none;
  color: #fff;
  border: 2px solid rgba(255,255,255,.55);
}
.btn--ghost:hover {
  background-color: rgba(255,255,255,.10);
  border-color: #fff;
  box-shadow: none;
  filter: none;
}
/* centralizado quando o bloco inteiro e' centralizado (depoimentos e CTA final) */
.testimonials__cta.ctas, .cta__content .ctas { justify-content: center; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-in { opacity: 1; transform: none; }

/* NOTA: `content-visibility: auto` nas secoes foi testado e REMOVIDO.
   Ele deixa a secao fora da tela sem renderizar, e as imagens com
   loading="lazy" la dentro nunca chegam a entrar no viewport — a foto do
   artista simplesmente nao carregava. O ganho era de tempo de pintura; o
   lazy loading economiza banda de verdade. Ficou o lazy. */

/* ---------- Textura de linhas ---------- */
.lines { position: absolute; inset: 0; overflow: hidden; pointer-events: none; }
.lines span {
  position: absolute;
  width: 2192px;
  height: 1142px;
  background: url('../img/linhas.webp') center / cover no-repeat;
}
.lines__a { left: 50%; top: 0;      transform: translateX(-50%); }
.lines__b { left: 50%; bottom: 0;   transform: translateX(-50%) rotate(180deg); }
.lines--multiply span { mix-blend-mode: multiply; }

/* ==========================================================================
   TOP BAR
   ========================================================================== */
.topbar {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, 1314px);
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--grad-bar);
}
.topbar__text {
  font-size: clamp(12px, 1.7vw, 24px);
  font-weight: 500;
  letter-spacing: clamp(2px, .5vw, 7.2px);
  text-transform: uppercase;
  white-space: nowrap;
  color: #fff;
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero {
  position: relative;
  min-height: 900px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--ink);
}
.hero__bg { position: absolute; inset: 0; }
.hero__bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero .shell { position: relative; z-index: 2; }
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  width: 429px;
  max-width: 100%;
}
.hero__title {
  margin: 0;
  font-size: clamp(34px, 2.6vw, 49.452px);
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  background-image: var(--grad-head);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero__lead {
  font-size: clamp(18px, 1.3vw, 24px);
  font-weight: 500;
  line-height: 1.4;
  color: #fff;
}

/* ==========================================================================
   BENEFITS
   ========================================================================== */
.benefits {
  position: relative;
  background: var(--paper);
  padding: 137px 0;
  overflow: hidden;
}
.benefits__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 866px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.benefits__title {
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: var(--ink);
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
  width: 100%;
}
.card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 25px;
  min-height: 384px;
  padding: 31px 36px;
  border: 2px solid var(--red);
  border-radius: 10px;
  background-image: var(--grad-card);
}
.card__title { font-size: 24px; font-weight: 600; line-height: 31px; color: #fff; }
.card__text  { font-size: 16px; font-weight: 400; line-height: 23px; color: #fff; }

/* Icone dos cards */
.ico { display: block; width: 52px; height: 52px; flex: none; position: relative; }
.ico > img { width: 52px; height: 52px; }
.ico--composed {
  border: 1.268px solid var(--accent-a);
  border-radius: 3.171px;
  background-image: var(--grad-icon);
  box-shadow: inset 0 0 10.083px rgba(0,0,0,.42);
  overflow: hidden;
}
.ico__glyph {
  position: absolute;
  left: 8.34px;
  top: 9.00px;
  width: 36.32px;
  height: 34.02px;
}
.ico__glyph img { width: 36.32px; height: 34.02px; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */
.testimonials {
  position: relative;
  background: var(--ink);
  padding: 100px 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.testimonials__title {
  font-size: clamp(28px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  text-transform: uppercase;
  color: var(--paper);
}
.testimonials__cta { margin-top: 12px; }

.marquee { width: 100%; overflow: hidden; }
.marquee__track {
  display: flex;
  align-items: center;
  gap: 10.01px;
  width: max-content;
  will-change: transform;
  animation: marquee-left 70s linear infinite;
}
.marquee[data-marquee="right"] .marquee__track { animation-name: marquee-right; animation-duration: 85s; }
.marquee:hover .marquee__track { animation-play-state: paused; }
.marquee__track img { flex: none; object-fit: cover; }

@keyframes marquee-left  { from { transform: translateX(0); }            to { transform: translateX(calc(-50% - 5.005px)); } }
@keyframes marquee-right { from { transform: translateX(calc(-50% - 5.005px)); } to { transform: translateX(0); } }

/* ==========================================================================
   CREATIVE PROCESS
   ========================================================================== */
.process {
  position: relative;
  background: var(--ink);
  border-top: 1px solid #fff;
  padding: 100px 0;
  overflow: hidden;
}
.process__bg { position: absolute; inset: 0; pointer-events: none; }
.process__bg img { position: absolute; max-width: none; }
.process__bg-1 { left: -456px; top: 6px;   width: 944px;  height: 1090px; opacity: .10; }
.process__bg-2 { left: 488px;  top: -22px; width: 1265px; height: 1118px; opacity: .10; }
.process__bg-3 { left: 1752px; top: -22px; width: 1262px; height: 1318px; opacity: .10; }
.process__glow { left: -1182px; top: 201px; width: 1381px; height: 1381px; opacity: .5; }

.process__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1129px);
  margin-inline: auto;
  display: flex;
  gap: 200px;
  align-items: flex-start;
}
.process__head { width: 437px; flex: none; display: flex; flex-direction: column; gap: 20px; color: var(--paper); }
.process__title {
  font-size: clamp(36px, 3.4vw, 60px);
  font-weight: 700;
  line-height: 1.05;
  text-transform: uppercase;
}
.process__sub { font-size: clamp(20px, 1.6vw, 28px); font-weight: 500; line-height: 1.1; }

.steps { list-style: none; padding: 0; margin: 0; width: 492px; flex: none; display: flex; flex-direction: column; gap: 46px; }
.step { display: flex; flex-direction: column; gap: 19px; }
.step__icon  { width: 91px; height: 91px; }
.step__title { font-size: clamp(28px, 2.3vw, 40px); font-weight: 700; line-height: 1; color: var(--paper); }
.step__text  { font-size: clamp(19px, 1.6vw, 28px); font-weight: 500; line-height: 1.1; color: var(--paper); }

/* ==========================================================================
   ABOUT
   ========================================================================== */
.about {
  position: relative;
  background: var(--paper);
  min-height: 816px;
  display: flex;
  align-items: center;
  padding: 90px 0;
  overflow: hidden;
}
/* A arte de fundo e ancorada pela borda ESQUERDA, nao pela direita.
   Ancorada a direita (como vinha do Figma, `right:-567px`), a borda
   esquerda dela e `largura da tela - 1221px` — ou seja, quanto menor o
   monitor, mais ela avanca para dentro da coluna de texto. A 1280px ja
   cobria o texto inteiro.
   - `calc(50% - 261px)` reproduz exatamente a posicao do Figma em telas
     largas (em 1920 da os mesmos 699px), e mantem essa mesma relacao com
     o texto em qualquer largura, porque a coluna e centrada.
   - o piso de 460px segura a arte fora do texto quando a tela encolhe e o
     container passa a encostar nas bordas (abaixo de ~1460px). */
.about__bg {
  position: absolute;
  left: max(calc(50% - 261px), 460px);
  right: auto;
  top: 50%;
  width: 1788px;
  height: 2682px;
  max-width: none;
  /* scaleX(-1): no Figma este no carrega `rotate(180deg)` + `scaleY(-1)`,
     que combinados equivalem a um espelhamento horizontal — a leoa olha
     para a direita, nao para a esquerda do arquivo original. */
  transform: translateY(-50%) scaleX(-1);
  mix-blend-mode: multiply;
  pointer-events: none;
}
.about__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, var(--shell));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.about__text { width: 428px; flex: none; display: flex; flex-direction: column; gap: 20px; color: var(--ink); }
.about__title { font-size: clamp(28px, 2.4vw, 40px); font-weight: 700; line-height: 1.1; }
.about__text p { font-size: clamp(17px, 1.35vw, 22px); font-weight: 500; line-height: 1.4; }

.photo {
  position: relative;
  width: 473px;
  height: 647px;
  flex: none;
  /* No Figma o bloco do "about" nao e centrado na pagina: o texto comeca em
     324px e a foto termina em 1536px, 60px antes da margem espelhada. Sem
     isto o space-between joga a foto ate 1596px. */
  margin-right: 60px;
  overflow: hidden;
  background: var(--ink);
  border: 1px solid #fff;
}
.photo__img {
  position: absolute;
  left: -97px;
  top: -45px;
  width: 668.8px;
  height: 836px;
  max-width: none;
  object-fit: cover;
}
.photo__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8.63px;
  background: var(--paper);
  border-top: 1px solid #fff;
  color: var(--ink);
}
.photo__avatar { width: 48.34px; height: 48.34px; border-radius: 50%; object-fit: cover; }
.photo__id { display: flex; flex-direction: column; gap: 6px; line-height: 1; }
.photo__id strong { font-size: 25.37px; font-weight: 700; }
.photo__id span   { font-size: 25.37px; font-weight: 400; }

/* ==========================================================================
   WORKS
   ========================================================================== */
.works { background: var(--ink); padding: 100px 0; overflow: hidden; }
.works__inner {
  width: min(100% - 48px, 1116px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 53px;
}
.works__title { font-size: clamp(28px, 2.4vw, 40px); font-weight: 700; line-height: 1.1; text-align: center; color: #fff; }
.works__title .grad {
  background-image: var(--grad-works);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.works__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  width: 100%;
}
/* Cards verticais 3:4 — e o formato nativo das fotos do Deyvid. Em 9:16
   (formato dos videos que estavam aqui) o corte comia a lateral do braco. */
.work {
  position: relative;
  margin: 0;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: #0d0d0d;
  transition: transform .35s ease;
}
.work img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work:hover { transform: scale(1.02); }

/* ==========================================================================
   CTA
   ========================================================================== */
.cta {
  position: relative;
  background: var(--paper);
  padding: 120px 0;
  overflow: hidden;
  display: flex;
  justify-content: center;
}
.cta__box {
  position: relative;
  z-index: 2;
  width: min(100% - 48px, 1082px);
  min-height: 370px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--ink);
  padding: 48px 24px;
}
.cta__bg {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1179.6px;
  height: 1232px;
  max-width: none;
  transform: translate(-50%, calc(-50% - 145px));
  opacity: .2;
  object-fit: cover;
  pointer-events: none;
}
.cta__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: 509px;
  max-width: 100%;
}
.cta__title {
  font-size: clamp(26px, 2.4vw, 40px);
  font-weight: 700;
  line-height: 1.1;
  text-align: center;
  color: #fff;
}

/* ==========================================================================
   FAQ
   ========================================================================== */
.faq { background: var(--ink); padding: 100px 0; overflow: hidden; }
.faq__inner {
  width: min(100% - 48px, 750px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.faq__head { display: flex; flex-direction: column; align-items: center; gap: 40px; }
.faq__title {
  font-size: clamp(26px, 2.4vw, 40px);
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
  text-align: center;
  color: #fff;
}
.faq__rule { width: 297px; height: 5px; max-width: 60%; }

.faq__list { display: flex; flex-direction: column; gap: 15px; }

.qa { border-radius: 5px; background-image: var(--grad-faq); overflow: hidden; }
.qa > summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 54px;
  padding: 15px 24px;
  color: #000;
  font-size: clamp(16px, 1.4vw, 20px);
  font-weight: 500;
  line-height: 24px;
  cursor: pointer;
  list-style: none;
}
.qa > summary::-webkit-details-marker { display: none; }
.qa > summary:focus-visible { outline: 3px solid #fff; outline-offset: -3px; }
.qa__chevron {
  flex: none;
  width: 16px;
  height: 16px;
  background: url('../img/chevron.svg') center / contain no-repeat;
  transform: rotate(-90deg);
  transition: transform .25s ease;
}
.qa[open] .qa__chevron { transform: rotate(90deg); }
.qa__body { padding: 0 24px 20px; color: #1a1200; }
.qa__body p { font-size: clamp(16px, 1.2vw, 17px); line-height: 1.55; }

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background: var(--ink);
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 28px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px 24px;
  flex-wrap: wrap;
  color: rgba(255,255,255,.62);
  font-size: 14px;
}
/* padding vertical leva a area de toque a 44px (o texto sozinho dava 20px,
   pequeno demais para o dedo no celular) */
.footer a { display: inline-block; padding: 14px 6px; }
.footer a:hover { color: var(--accent-a); }

/* ==========================================================================
   RESPONSIVO
   ========================================================================== */
@media (max-width: 1280px) {
  .process__inner { gap: 80px; }
  .process__head, .steps { width: auto; flex: 1 1 0; }
}

@media (max-width: 1080px) {
  /* 4 colunas a partir de 1080; abaixo disso o card ficava com ~230px e a peca
     perdia leitura. 3 -> 2 -> 1 conforme aperta. */
  .works__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
  .about__inner { flex-direction: column; text-align: left; }
  .about__text  { width: 100%; max-width: 560px; }
  /* Em telas estreitas a arte de fundo cai por cima do texto — baixa a
     intensidade e joga um veu da cor do papel pra manter a leitura limpa. */
  /* empilhado: a arte volta a ser ancorada pela direita e recua de vez */
  .about__bg { left: auto; right: -40%; opacity: .18; }
  .about::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(230,230,230,.82) 0%, rgba(230,230,230,.55) 60%, rgba(230,230,230,.2) 100%);
    pointer-events: none;
    z-index: 1;
  }
  .process__inner { flex-direction: column; gap: 56px; }
  .process__head { width: 100%; }
  .steps { width: 100%; }
}

@media (max-width: 900px) {
  .hero { min-height: 640px; padding: 120px 0 72px; }
  .hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(4,4,4,.86) 0%, rgba(4,4,4,.55) 45%, rgba(4,4,4,.9) 100%);
  }
  .hero__bg img { object-position: 72% center; }
  .hero__content { gap: 28px; }

  .benefits { padding: 80px 0; }
  .benefits__grid { grid-template-columns: minmax(0, 1fr); gap: 24px; }
  .card { min-height: 0; padding: 28px; }

  .works__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }

  .ctas { flex-direction: column; align-items: stretch; }
  .ctas .btn { width: 100%; min-width: 0; }

  .photo { width: 100%; max-width: 473px; height: auto; aspect-ratio: 473 / 647; margin-right: 0; }
  .photo__img { position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: auto; height: 100%; }
  .photo__id strong, .photo__id span { font-size: 20px; }

  .process__bg { display: none; }
  .testimonials { padding: 72px 0; }
  .faq, .works { padding: 72px 0; }
  .cta { padding: 72px 0; }
}

@media (max-width: 560px) {
  .shell { width: calc(100% - 32px); }
  .topbar { height: 46px; }
  .btn { width: 100%; height: 60px; font-size: 16px; }
  .card__title { font-size: 21px; line-height: 28px; }
  .photo__bar { height: 72px; }
  .photo__avatar { width: 40px; height: 40px; }
  .photo__id strong, .photo__id span { font-size: 17px; }
  .cta__box { padding: 36px 18px; }
  .qa > summary { padding: 14px 16px; }
  .qa__body { padding: 0 16px 16px; }

  /* Os prints de depoimento vinham no tamanho de desktop (ate 459px) numa
     tela de 390 — apareciam cortados dos dois lados e nao dava pra ler um
     depoimento inteiro. Limitados a 264px cabem com folga; `height:auto`
     preserva a proporcao de cada um, que e o que da o efeito escalonado.
     O `gap` NAO muda: o keyframe do marquee desconta metade dele para o
     loop fechar sem salto. */
  .marquee__track img {
    width: auto !important;
    height: auto !important;
    max-width: 264px;
  }

  /* a secao de depoimentos nao tem padding lateral (o marquee precisa
     sangrar ate a borda), entao o botao ganha a margem por conta propria */
  .testimonials__cta { width: calc(100% - 32px); }
}

/* 480px e nao 420: um iPhone Pro Max tem 430px de largura e caia em 2
   colunas, deixando cada peca com ~199px. Tatuagem de braco inteiro em
   199px nao mostra nada. Celular inteiro fica em 1 coluna; tablet, em 2. */
@media (max-width: 480px) {
  .works__grid { grid-template-columns: minmax(0, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .marquee__track { animation: none; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .btn, .works__grid img, .qa__chevron { transition: none; }
}
