/* =========================================================
   PIZZARIA FELLICE — "Oito fatias"
   Paleta tirada do logo: forno, ouro do Coliseu, pomodoro.
   ========================================================= */
:root {
  --ink: #0E0A07;
  --ink-2: #16100B;
  --ink-3: #221912;
  --cream: #F2E9DA;
  --cream-2: #E7DAC3;
  --paper: #F4ECDF;
  --paper-ink: #1B130D;
  --paper-muted: #6E5D4B;
  --muted: rgba(242, 233, 218, .64);
  --line: rgba(242, 233, 218, .13);
  --line-paper: rgba(27, 19, 13, .14);
  --gold: #C9A15B;
  --gold-2: #E4C88E;
  --red: #C62A1F;
  --red-2: #DE3B2B;
  --basil: #2F6B3E;

  --f-display: 'Bodoni Moda', 'Didot', Georgia, serif;
  --f-body: 'Hanken Grotesk', system-ui, sans-serif;
  --f-mono: 'DM Mono', ui-monospace, monospace;

  --fs-hero: clamp(3.1rem, 7.4vw + .5rem, 8.6rem);
  --fs-h1: clamp(3.4rem, 10vw, 11rem);
  --fs-h2: clamp(2.1rem, 4vw + .6rem, 4.6rem);
  --fs-h3: clamp(1.4rem, 1.6vw + .8rem, 2.2rem);
  --fs-body: clamp(1rem, .35vw + .9rem, 1.125rem);
  --fs-small: .875rem;
  --fs-eyebrow: .72rem;

  --ease: cubic-bezier(.16, 1, .3, 1);
  --ease-io: cubic-bezier(.76, 0, .24, 1);
  --gutter: clamp(1rem, 4vw, 3.5rem);
  --max: 1440px;
  --section: clamp(6rem, 14vh, 11rem);
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: auto; }
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--cream);
  font-family: var(--f-body);
  font-size: var(--fs-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
body.is-loading { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
em { font-style: italic; }
h1, h2, h3, h4 { margin: 0; font-weight: 400; }
p { margin: 0; }
::selection { background: var(--gold); color: var(--ink); }

:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; border-radius: 4px; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: fixed; top: -100px; left: 1rem; z-index: 10000; background: var(--gold); color: var(--ink); padding: .6rem 1rem; border-radius: 6px; font-weight: 600; transition: top .2s; }
.skip-link:focus { top: 1rem; }
.nowrap { white-space: nowrap; }
.mono { font-family: var(--f-mono); font-size: .75rem; letter-spacing: .08em; text-transform: uppercase; }
.small { font-size: .7rem; }

/* ---------- tipografia ---------- */
.eyebrow {
  font-family: var(--f-mono);
  font-size: var(--fs-eyebrow);
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.chapter {
  display: inline-flex; align-items: center; gap: .75rem;
  font-family: var(--f-mono); font-size: var(--fs-eyebrow); letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.6rem;
}
.chapter::before { content: ''; width: 28px; height: 1px; background: currentColor; }
.h1, .h2, .h3 { font-family: var(--f-display); font-optical-sizing: auto; letter-spacing: -.02em; }
.h1 { font-size: var(--fs-h1); line-height: .86; font-weight: 400; }
.h2 { font-size: var(--fs-h2); line-height: 1.02; }
.h3 { font-size: var(--fs-h3); line-height: 1.1; }
.h1 em, .h2 em, .h3 em { color: var(--gold); }
.paper .h1 em, .paper .h2 em { color: var(--red); }

/* ---------- botões ---------- */
.btn {
  --bh: 52px;
  position: relative;
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  min-height: var(--bh); padding: 0 1.6rem;
  border-radius: 999px;
  font-family: var(--f-body); font-size: .95rem; font-weight: 600; letter-spacing: .01em;
  white-space: nowrap;
  transition: background .35s var(--ease), color .35s var(--ease), border-color .35s var(--ease), box-shadow .35s var(--ease);
  will-change: transform;
}
.btn .arrow { display: inline-block; transition: transform .45s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }
.btn-sm { --bh: 42px; padding: 0 1.1rem; font-size: .85rem; }
.btn-lg { --bh: 60px; padding: 0 2rem; font-size: 1rem; }
.btn-red { background: var(--red); color: #fff; box-shadow: 0 10px 30px -12px rgba(198, 42, 31, .7); }
.btn-red:hover { background: var(--red-2); box-shadow: 0 16px 40px -12px rgba(222, 59, 43, .8); }
.btn-line { border: 1px solid var(--line); color: var(--cream); }
.btn-line:hover { border-color: var(--gold); color: var(--gold-2); }
.btn-ghost { color: var(--cream); background: rgba(242, 233, 218, .06); border: 1px solid var(--line); }
.btn-ghost:hover { background: rgba(242, 233, 218, .12); }
.btn-cream { background: var(--cream); color: var(--ink); }
.btn-cream:hover { background: #fff; }
.btn:active { transform: scale(.97); }

/* ---------- loader ---------- */
.loader {
  position: fixed; inset: 0; z-index: 9000;
  display: grid; place-items: center;
  background: var(--ink);
  transition: clip-path 1.1s var(--ease-io);
  clip-path: inset(0 0 0 0);
}
.loader.done { clip-path: inset(0 0 100% 0); }
.loader-inner { display: grid; justify-items: center; gap: .5rem; }
.loader-label { font-family: var(--f-mono); font-size: .72rem; letter-spacing: .3em; text-transform: uppercase; color: var(--gold); }
.loader-year { font-family: var(--f-display); font-size: clamp(4.5rem, 16vw, 12rem); line-height: 1; font-style: italic; font-variant-numeric: tabular-nums; }
.loader-line { width: 180px; height: 1px; background: var(--line); overflow: hidden; }
.loader-line span { display: block; height: 100%; width: 100%; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 1.5s var(--ease-io); }
.loader.run .loader-line span { transform: scaleX(1); }

/* ---------- grain + cursor ---------- */
.grain {
  position: fixed; inset: -50%; z-index: 8000; pointer-events: none; opacity: .06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: grain 1s steps(4) infinite;
}
@keyframes grain { 0% { transform: translate(0, 0) } 25% { transform: translate(-3%, 2%) } 50% { transform: translate(2%, -3%) } 75% { transform: translate(-2%, -1%) } }
.cursor {
  position: fixed; top: 0; left: 0; z-index: 8500; pointer-events: none;
  width: 10px; height: 10px; margin: -5px 0 0 -5px; border-radius: 50%;
  background: var(--gold);
  display: grid; place-items: center;
  transition: width .45s var(--ease), height .45s var(--ease), margin .45s var(--ease), background .3s, opacity .3s;
  opacity: 0;
}
.cursor.on { opacity: 1; }
.cursor.hover { width: 44px; height: 44px; margin: -22px 0 0 -22px; background: rgba(201, 161, 91, .18); border: 1px solid var(--gold); }
.cursor.label { width: 84px; height: 84px; margin: -42px 0 0 -42px; background: var(--gold); border: 0; }
.cursor-label { font-family: var(--f-mono); font-size: .65rem; letter-spacing: .14em; text-transform: uppercase; color: var(--ink); opacity: 0; transition: opacity .2s; }
.cursor.label .cursor-label { opacity: 1; }
@media (hover: none), (pointer: coarse) { .cursor { display: none; } }

/* ---------- nav ---------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 2rem;
  padding: 1.1rem var(--gutter);
  transition: background .5s var(--ease), padding .5s var(--ease), transform .6s var(--ease);
}
.nav.scrolled { background: rgba(14, 10, 7, .72); backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3); padding-block: .7rem; border-bottom: 1px solid var(--line); }
.nav.hide { transform: translateY(-110%); }
.nav-logo img { height: 50px; width: auto; transition: height .5s var(--ease); }
.nav.scrolled .nav-logo img { height: 40px; }
.nav-links { display: flex; justify-content: center; gap: clamp(1rem, 2.4vw, 2.4rem); }
.nav-links a { position: relative; font-size: .9rem; color: var(--muted); transition: color .3s; padding: .5rem 0; }
.nav-links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: .2rem; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .5s var(--ease); }
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); transform-origin: left; }
.nav-actions { display: flex; align-items: center; gap: .6rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line); position: relative; }
.nav-toggle span { position: absolute; left: 14px; right: 14px; height: 1.5px; background: var(--cream); transition: transform .5s var(--ease), top .5s var(--ease); }
.nav-toggle span:first-child { top: 19px; }
.nav-toggle span:last-child { top: 26px; }
.nav-toggle[aria-expanded="true"] span:first-child { top: 22px; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:last-child { top: 22px; transform: rotate(-45deg); }

.overlay {
  position: fixed; inset: 0; z-index: 400;
  background: var(--ink-2);
  display: flex; flex-direction: column; justify-content: center;
  padding: 6rem var(--gutter) 2rem;
  clip-path: circle(0% at calc(100% - 40px) 40px);
  transition: clip-path .8s var(--ease-io);
}
.overlay.open { clip-path: circle(150% at calc(100% - 40px) 40px); }
.overlay nav { display: grid; gap: .2rem; }
.overlay nav a { font-family: var(--f-display); font-size: clamp(2.2rem, 10vw, 3.4rem); line-height: 1.15; display: flex; align-items: baseline; gap: 1rem; }
.overlay nav a i { font-family: var(--f-mono); font-style: normal; font-size: .75rem; color: var(--gold); }
.overlay-foot { margin-top: auto; font-size: .85rem; color: var(--muted); }

/* ---------- seções ---------- */
.section { position: relative; padding: var(--section) var(--gutter); }
.section > * { max-width: var(--max); margin-inline: auto; }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  grid-template-rows: 1fr auto;
  align-items: center;
  gap: 2rem var(--gutter);
  padding: 7.5rem var(--gutter) 2.2rem;
  overflow: hidden;
  isolation: isolate;
}
.hero::before {
  content: ''; position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(60% 70% at 78% 45%, rgba(198, 42, 31, .20), transparent 60%),
    radial-gradient(40% 50% at 70% 60%, rgba(201, 161, 91, .12), transparent 70%),
    var(--ink);
}
.hero-copy { position: relative; z-index: 2; max-width: 720px; }
.hero-eyebrow { display: flex; align-items: center; gap: .7rem; margin-bottom: 2rem; }
.hero-eyebrow .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--red-2); box-shadow: 0 0 0 4px rgba(222, 59, 43, .2); animation: pulse 2.4s var(--ease) infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 9px rgba(222, 59, 43, 0); } }
.hero-title {
  font-family: var(--f-display);
  font-size: var(--fs-hero);
  line-height: .92;
  letter-spacing: -.035em;
  font-weight: 400;
}
.hero-title .line { display: block; overflow: hidden; padding-bottom: .08em; }
.hero-title .line > span { display: inline-block; }
.hero-title em { color: var(--gold); font-weight: 400; }
.hero-sub { margin-top: 2rem; max-width: 30rem; color: var(--muted); font-size: 1.08rem; }
.hero-sub b { color: var(--cream); font-weight: 600; }
.hero-ctas { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 2.4rem; }

/* A pizza */
.pizza-stage {
  position: relative; z-index: 1;
  width: min(43vw, 680px);
  aspect-ratio: 1;
  justify-self: end;
  margin-top: 2.5rem;
  margin-right: calc(var(--gutter) * -1 - 5vw);
}
.pizza-ring { position: absolute; inset: -9%; width: 118%; height: 118%; animation: spin 60s linear infinite; }
.pizza-ring text { font-family: var(--f-mono); font-size: 13px; letter-spacing: 5.2px; fill: rgba(242, 233, 218, .42); }
@keyframes spin { to { transform: rotate(360deg); } }
.pizza {
  --spread: 3px;
  --rot: 0deg;
  --srot: 0deg;
  position: absolute; inset: 0;
  transform: rotate(calc(var(--rot) + var(--srot)));
  filter: drop-shadow(0 40px 60px rgba(0, 0, 0, .6)) drop-shadow(0 0 80px rgba(198, 42, 31, .18));
}
.slice {
  --hover: 0px;
  --enter: 0px;
  position: absolute; inset: 0;
  clip-path: var(--clip);
  transform: translate(calc(var(--dx) * (var(--spread) + var(--hover) + var(--enter))), calc(var(--dy) * (var(--spread) + var(--hover) + var(--enter))));
  outline: none;
}
.slice span {
  position: absolute; inset: 0; border-radius: 50%;
  background: url('../assets/img/hero-pizza.webp') center / cover no-repeat;
  transition: filter .4s var(--ease);
}
.slice:hover span, .slice:focus-visible span { filter: brightness(1.12) saturate(1.1); }
.pizza.has-hover .slice:not(:hover):not(:focus-visible) span { filter: brightness(.55) saturate(.8); }
.pizza-caption {
  position: absolute; left: -16%; bottom: -1%;
  text-shadow: 0 2px 20px rgba(14, 10, 7, .9);
  display: flex; align-items: flex-end; gap: .9rem;
  pointer-events: none;
}
.pizza-caption-n { font-family: var(--f-display); font-style: italic; font-size: clamp(3rem, 5vw, 4.6rem); line-height: .8; color: var(--gold); font-variant-numeric: tabular-nums; }
.pizza-caption-t { font-family: var(--f-display); font-size: 1.15rem; line-height: 1.15; max-width: 12rem; }
.pizza-caption-t small { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.hero-stats {
  grid-column: 1 / -1;
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 0; padding-top: 1.4rem;
  border-top: 1px solid var(--line);
  position: relative; z-index: 2;
}
.hero-stats div { padding-right: 1rem; }
.hero-stats dt { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); order: 2; }
.hero-stats dd { margin: .2rem 0 0; font-family: var(--f-display); font-size: clamp(1.8rem, 3vw, 2.8rem); line-height: 1; }
.hero-stats dd small { font-size: .45em; margin-left: .2rem; color: var(--gold); font-style: italic; }
.scroll-cue { position: absolute; left: 50%; bottom: 7.2rem; width: 1px; height: 54px; background: var(--line); overflow: hidden; z-index: 2; }
.scroll-cue span { position: absolute; inset: 0; background: var(--gold); animation: cue 2.2s var(--ease-io) infinite; }
@keyframes cue { 0% { transform: translateY(-100%) } 60%, 100% { transform: translateY(100%) } }

/* hero entrada */
[data-hero-line] { transform: translateY(105%); }
[data-hero-in] { opacity: 0; transform: translateY(24px); }
.hero-ready [data-hero-line] { transform: none; transition: transform 1.3s var(--ease); }
.hero-ready .line:nth-child(2) [data-hero-line] { transition-delay: .09s; }
.hero-ready [data-hero-in] { opacity: 1; transform: none; transition: opacity 1.1s var(--ease) .35s, transform 1.1s var(--ease) .35s; }
.hero-ready .hero-stats[data-hero-in] { transition-delay: .6s; }

/* ============ MARQUEE ============ */
.marquee { overflow: hidden; border-block: 1px solid var(--line); padding: 1.4rem 0; background: var(--ink-2); }
.marquee-track { display: inline-flex; white-space: nowrap; animation: marquee 48s linear infinite; }
.marquee span { font-family: var(--f-display); font-size: clamp(2rem, 5vw, 4.4rem); line-height: 1; letter-spacing: -.02em; }
.marquee em { color: transparent; -webkit-text-stroke: 1px var(--gold); }
.marquee i { font-style: normal; color: var(--red-2); font-size: .45em; vertical-align: middle; margin: 0 .6em; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ A CASA ============ */
.casa-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: var(--gutter); align-items: start; }
.casa-year { position: sticky; top: 7rem; display: grid; }
.big-year { font-family: var(--f-display); font-size: clamp(6rem, 17vw, 17rem); line-height: .8; letter-spacing: -.05em; color: var(--ink-3); -webkit-text-stroke: 1px rgba(201, 161, 91, .35); }
.big-year em { color: var(--gold); -webkit-text-stroke: 0; }
.casa-text .h2 { max-width: 16ch; }
.casa-cols { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; margin-top: 3rem; color: var(--muted); }
.casa-photo { margin: clamp(4rem, 9vw, 8rem) auto 0; position: relative; overflow: hidden; border-radius: var(--radius); aspect-ratio: 21 / 9; }
.casa-photo img { width: 100%; height: 118%; object-fit: cover; }
.casa-photo figcaption { position: absolute; left: 1.2rem; bottom: 1rem; color: var(--cream); background: rgba(14, 10, 7, .55); backdrop-filter: blur(8px); padding: .45rem .8rem; border-radius: 999px; }

.fatto { margin-top: clamp(5rem, 10vw, 9rem); }
.fatto-head { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 7fr); gap: var(--gutter); align-items: end; margin-bottom: 3rem; }
.fatto-head .h3 { max-width: 20ch; }
.fatto-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1rem, 2.5vw, 2.5rem); }
.fatto-steps li { position: relative; }
.fatto-steps li:nth-child(2) { margin-top: 5rem; }
.fatto-steps li:nth-child(3) { margin-top: 2.5rem; }
.fatto-steps figure { margin: 0 0 1.4rem; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4 / 5; }
.fatto-steps img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.fatto-steps li:hover img { transform: scale(1.05); }
.step-n { font-family: var(--f-mono); font-size: .72rem; color: var(--gold); letter-spacing: .12em; }
.fatto-steps h4 { font-family: var(--f-display); font-size: 1.8rem; margin: .3rem 0 .6rem; }
.fatto-steps p { color: var(--muted); font-size: .98rem; }

/* ============ FUNDADOR ============ */
.fundador { background: var(--ink-2); }
.fundador-grid { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: clamp(2rem, 7vw, 8rem); align-items: center; }
.fundador-photo { position: relative; margin: 0; border-radius: 200px 200px var(--radius) var(--radius); overflow: hidden; aspect-ratio: 3 / 4.4; max-width: 520px; }
.fundador-photo img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; }
.fundador-photo::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(14, 10, 7, .7), transparent 40%); }
.fundador-photo figcaption { position: absolute; z-index: 1; left: 1.4rem; bottom: 1.2rem; color: var(--gold-2); }
.fundador-text > p { color: var(--muted); max-width: 34rem; margin-top: 1.2rem; }
.fundador-name { display: grid; margin: 2rem 0 1rem !important; padding: 1.2rem 0; border-block: 1px solid var(--line); color: var(--cream) !important; }
.fundador-name .name { font-family: var(--f-display); font-style: italic; font-size: 1.9rem; line-height: 1.1; }
.fundador-name .role { font-family: var(--f-mono); font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); margin-top: .4rem; }
.fundador-reels { display: flex; gap: .8rem; margin-top: 2.4rem; }
.reel { position: relative; width: 118px; aspect-ratio: 9 / 16; border-radius: 10px; overflow: hidden; border: 1px solid var(--line); flex-shrink: 0; transition: transform .6s var(--ease); }
.reel:nth-child(2) { transform: translateY(18px) rotate(1.5deg); }
.reel:nth-child(3) { transform: rotate(-1.5deg); }
.reel:hover { transform: translateY(-6px) rotate(0); }
.reel img { width: 100%; height: 100%; object-fit: cover; }
.reel span { position: absolute; left: .5rem; right: .5rem; bottom: .5rem; font-size: .68rem; line-height: 1.2; font-weight: 600; text-shadow: 0 1px 8px rgba(0, 0, 0, .8); }
.reel::before { content: '▶'; position: absolute; top: .5rem; right: .55rem; font-size: .6rem; z-index: 1; opacity: .85; }

/* ============ CARDÁPIO (papel) ============ */
.paper { background: var(--paper); color: var(--paper-ink); }
.paper .chapter { color: var(--red); }
.paper ::selection { background: var(--red); color: #fff; }
.paper :focus-visible { outline-color: var(--red); }
.cardapio { border-radius: 28px 28px 0 0; margin-top: -28px; z-index: 2; }
.cardapio-head { display: flex; justify-content: space-between; align-items: flex-end; gap: 2rem; flex-wrap: wrap; margin-bottom: 3rem; }
.cardapio-head .h1 { color: var(--paper-ink); }
.cardapio-tools { display: grid; gap: 1rem; justify-items: end; max-width: 26rem; }
.search { display: flex; align-items: center; gap: .6rem; width: min(26rem, 100%); padding: 0 1.1rem; height: 54px; border: 1px solid var(--line-paper); border-radius: 999px; background: #fff8ee; transition: border-color .3s, box-shadow .3s; }
.search:focus-within { border-color: var(--red); box-shadow: 0 0 0 4px rgba(198, 42, 31, .12); }
.search svg { width: 18px; height: 18px; fill: none; stroke: var(--paper-muted); stroke-width: 2; flex-shrink: 0; }
.search input { flex: 1; border: 0; background: none; font: inherit; font-size: .98rem; color: var(--paper-ink); outline: none; min-width: 0; }
.search input::placeholder { color: var(--paper-muted); }
.cardapio-note { font-size: .82rem; color: var(--paper-muted); text-align: right; }
.cardapio-note a { color: var(--red); font-weight: 600; white-space: nowrap; }

.tabs {
  position: sticky; top: 64px; z-index: 5;
  display: flex; gap: .4rem; overflow-x: auto; scrollbar-width: none;
  padding: .7rem 0; margin-bottom: 1.5rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line-paper);
  -webkit-mask-image: linear-gradient(to right, #000 92%, transparent);
          mask-image: linear-gradient(to right, #000 92%, transparent);
}
.tabs::-webkit-scrollbar { display: none; }
.tab { flex-shrink: 0; height: 42px; padding: 0 1.1rem; border-radius: 999px; font-size: .9rem; font-weight: 500; color: var(--paper-muted); border: 1px solid transparent; transition: all .35s var(--ease); }
.tab:hover { color: var(--paper-ink); border-color: var(--line-paper); }
.tab[aria-selected="true"] { background: var(--paper-ink); color: var(--paper); }
.tab sup { font-family: var(--f-mono); font-size: .62rem; margin-left: .25rem; opacity: .6; }

.cardapio-body { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, 400px); gap: clamp(2rem, 5vw, 5rem); align-items: start; }
.menu-group + .menu-group { margin-top: 3rem; }
.menu-group-title { font-family: var(--f-display); font-style: italic; font-size: 1.8rem; color: var(--red); margin-bottom: .6rem; }
.menu-cols { display: flex; justify-content: flex-end; gap: 0; font-family: var(--f-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--paper-muted); padding-bottom: .5rem; border-bottom: 1px solid var(--line-paper); }
.menu-cols span { width: 84px; text-align: right; }
.menu-items { list-style: none; margin: 0; padding: 0; }
.mi {
  display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: .2rem 1rem;
  padding: 1.05rem .2rem;
  border-bottom: 1px solid var(--line-paper);
  position: relative;
  transition: background .3s, padding .4s var(--ease);
  animation: miIn .6s var(--ease) both;
  animation-delay: calc(var(--k, 0) * 22ms);
}
@keyframes miIn { from { opacity: 0; transform: translateY(12px); } }
.mi:hover, .mi:focus-within { background: rgba(198, 42, 31, .045); padding-left: .8rem; }
.mi-name { font-family: var(--f-display); font-size: 1.32rem; line-height: 1.2; display: flex; align-items: baseline; gap: .5rem; }
.mi-name .ph { display: inline-block; width: 7px; height: 7px; border-radius: 50%; background: var(--gold); transform: translateY(-3px); flex-shrink: 0; }
.mi-desc { grid-column: 1; font-size: .92rem; color: var(--paper-muted); max-width: 44ch; line-height: 1.5; }
.mi-price { grid-row: 1 / span 2; grid-column: 2; display: flex; align-items: baseline; }
.mi-price span { width: 84px; text-align: right; font-family: var(--f-display); font-size: 1.2rem; font-variant-numeric: lining-nums tabular-nums; }
.mi-price span small { display: block; font-family: var(--f-mono); font-size: .6rem; letter-spacing: .1em; text-transform: uppercase; color: var(--paper-muted); }
.mi-price .soft { font-size: .9rem; color: var(--paper-muted); font-style: italic; width: auto; }
.mi-thumb { display: none; }
.menu-empty { padding: 3rem 0; font-family: var(--f-display); font-size: 1.6rem; color: var(--paper-muted); }
.menu-empty small { display: block; font-family: var(--f-body); font-size: .95rem; margin-top: .5rem; }
.menu-more { margin-top: 1.4rem; height: 48px; padding: 0 1.4rem; border-radius: 999px; border: 1px solid var(--paper-ink); font-weight: 600; font-size: .9rem; transition: background .3s, color .3s; }
.menu-more:hover { background: var(--paper-ink); color: var(--paper); }
mark { background: rgba(201, 161, 91, .38); color: inherit; border-radius: 2px; }

.menu-plate { position: sticky; top: 140px; }
.plate {
  position: relative; aspect-ratio: 1; border-radius: 50%; overflow: hidden;
  background: var(--cream-2);
  box-shadow: 0 40px 80px -30px rgba(27, 19, 13, .55), inset 0 0 0 10px rgba(255, 255, 255, .4);
}
.plate img { width: 100%; height: 100%; object-fit: cover; transition: opacity .45s var(--ease), transform 1.2s var(--ease); }
.plate.swap img { opacity: 0; transform: scale(1.08) rotate(8deg); }
.plate-cap { margin-top: 1.4rem; text-align: center; font-family: var(--f-display); font-size: 1.5rem; font-style: italic; }
.plate-cap small { display: block; font-family: var(--f-mono); font-style: normal; font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--paper-muted); margin-top: .3rem; }

/* ============ RODÍZIO ============ */
.rodizio { overflow: hidden; isolation: isolate; padding-bottom: calc(var(--section) * .8); }
.rodizio-bg { position: absolute; inset: 0; z-index: -1; max-width: none !important; }
.rodizio-bg img { width: 100%; height: 125%; object-fit: cover; object-position: 50% 40%; filter: saturate(1.05) brightness(.8); opacity: .55; }
.rodizio-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, var(--ink) 22%, rgba(14, 10, 7, .78) 55%, rgba(14, 10, 7, .35)), linear-gradient(to top, var(--ink), transparent 40%); }
.rodizio-inner { display: grid; }
.rodizio-title { font-family: var(--f-display); font-size: clamp(4rem, 13vw, 13rem); line-height: .82; letter-spacing: -.045em; }
.rodizio-title em { color: var(--gold); display: inline-block; }
.rodizio-info { display: flex; flex-wrap: wrap; align-items: flex-end; gap: 2rem 4rem; margin-top: 3.5rem; }
.price { display: flex; align-items: flex-start; font-family: var(--f-display); line-height: .8; }
.price .cur { font-size: 1.4rem; margin: .5rem .4rem 0 0; color: var(--gold); }
.price .val { font-size: clamp(5rem, 10vw, 9rem); letter-spacing: -.04em; }
.price .cents { font-size: clamp(1.6rem, 3vw, 2.6rem); display: grid; margin-top: .3rem; }
.price .cents small { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-top: .6rem; }
.rodizio-dl { display: grid; gap: 1rem; margin: 0; padding-left: 2rem; border-left: 1px solid var(--line); }
.rodizio-dl dt { font-family: var(--f-mono); font-size: .66rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold); }
.rodizio-dl dd { margin: 0; font-family: var(--f-display); font-size: 1.5rem; }

.vinho {
  display: grid; grid-template-columns: 180px 1fr; gap: 2rem; align-items: center;
  margin-top: clamp(4rem, 8vw, 7rem); margin-left: auto !important; margin-right: 0 !important;
  max-width: 560px !important;
  padding: 1.2rem; border: 1px solid var(--line); border-radius: 20px;
  background: rgba(22, 16, 11, .75); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
}
.vinho figure { margin: 0; aspect-ratio: 4 / 5; border-radius: 12px; overflow: hidden; }
.vinho img { width: 100%; height: 100%; object-fit: cover; }
.vinho h3 { font-family: var(--f-display); font-size: 2.2rem; line-height: 1; margin: .5rem 0 .6rem; }
.vinho h3 em { color: var(--gold); }
.vinho p:not(.eyebrow) { color: var(--muted); font-size: .95rem; }
.vinho .mono { margin-top: .9rem; color: var(--cream); }

/* ============ SALÃO ============ */
.salao-head { margin-bottom: clamp(3rem, 6vw, 5rem); }
.salao-head .h2 { max-width: 14ch; }
.collage { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); grid-auto-rows: clamp(60px, 7vw, 110px); gap: clamp(.6rem, 1.4vw, 1.2rem); }
.collage figure { margin: 0; overflow: hidden; border-radius: var(--radius); position: relative; }
.collage img { width: 100%; height: 115%; object-fit: cover; }
.c1 { grid-column: 1 / 8; grid-row: 1 / 6; }
.c2 { grid-column: 8 / 13; grid-row: 1 / 4; }
.c3 { grid-column: 8 / 10; grid-row: 4 / 7; }
.c4 { grid-column: 10 / 13; grid-row: 4 / 7; }
.c5 { grid-column: 3 / 8; grid-row: 6 / 10; border-radius: 50% !important; aspect-ratio: 1; align-self: start; }
.c6 { grid-column: 8 / 13; grid-row: 7 / 10; margin: 0; align-self: center; font-family: var(--f-display); font-style: italic; font-size: clamp(1.4rem, 2.2vw, 2.1rem); line-height: 1.25; color: var(--cream-2); padding-left: 1.4rem; border-left: 2px solid var(--red); }

/* ============ CASAS ============ */
.casas { background: var(--ink-2); }
.casas-head { margin-bottom: 3rem; }
.casas-list { list-style: none; padding: 0; margin: 0 auto; border-top: 1px solid var(--line); }
.casa-row {
  display: grid; grid-template-columns: 60px minmax(0, 1.5fr) minmax(0, 1.3fr) minmax(0, .9fr) 230px; align-items: center; gap: 1.5rem;
  padding: 2rem 0; border-bottom: 1px solid var(--line);
  position: relative; transition: padding .5s var(--ease);
}
.casa-row::before { content: ''; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(201, 161, 91, .08), transparent 70%); opacity: 0; transition: opacity .5s var(--ease); pointer-events: none; }
.casa-row:hover::before { opacity: 1; }
.casa-row:hover { padding-left: 1rem; }
.casa-row .n { color: var(--gold); }
.casa-row h3 { font-family: var(--f-display); font-size: clamp(1.9rem, 3.4vw, 3.2rem); line-height: 1; letter-spacing: -.02em; transition: color .4s, font-style .4s; }
.casa-row:hover h3 { color: var(--gold-2); font-style: italic; }
.casa-row .addr { color: var(--cream-2); font-size: .98rem; line-height: 1.45; }
.casa-row .addr small { color: var(--muted); font-size: .82rem; }
.tags { display: flex; flex-wrap: wrap; gap: .35rem; }
.tags span { font-size: .72rem; padding: .3rem .7rem; border: 1px solid var(--line); border-radius: 999px; color: var(--muted); white-space: nowrap; }
.links { display: flex; gap: 1.2rem; justify-content: flex-end; }
.links a { font-size: .9rem; font-weight: 600; position: relative; white-space: nowrap; padding: .6rem 0; }
.links a::after { content: ''; position: absolute; left: 0; right: 0; bottom: .35rem; height: 1px; background: currentColor; transform-origin: left; transition: transform .45s var(--ease); }
.links a:hover { color: var(--gold-2); }
.links a:hover::after { transform: scaleX(0); transform-origin: right; }
.row-thumb { display: none; }
.casas-float {
  position: fixed; top: 0; left: 0; z-index: 50; pointer-events: none;
  width: 300px; aspect-ratio: 4 / 5; border-radius: 16px; overflow: hidden;
  opacity: 0; transform: scale(.85) rotate(-4deg);
  transition: opacity .4s var(--ease), transform .6s var(--ease);
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, .8);
  max-width: none !important; margin: 0 !important;
}
.casas-float.show { opacity: 1; transform: scale(1) rotate(-2deg); }
.casas-float img { width: 100%; height: 100%; object-fit: cover; }

/* ============ RESERVAR ============ */
.reservar { text-align: left; }
.reservar-title { font-family: var(--f-display); font-size: clamp(3rem, 8.5vw, 9rem); line-height: .9; letter-spacing: -.04em; margin-bottom: clamp(3rem, 6vw, 5rem); }
.reservar-title em { color: var(--gold); }
.choice { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1rem, 2vw, 1.6rem); }
.choice-card { position: relative; overflow: hidden; border-radius: 24px; padding: clamp(1.8rem, 3.5vw, 3rem); min-height: 440px; display: flex; flex-direction: column; align-items: flex-start; gap: 1rem; }
.choice-card h3 { font-family: var(--f-display); font-size: clamp(2rem, 3.4vw, 3.2rem); line-height: 1; }
.choice-card > p:not(.eyebrow) { max-width: 30rem; }
.choice-card .btn { margin-top: auto; }
.choice-mesa { background: var(--red); color: #fff; }
.choice-mesa .eyebrow { color: #FFD9B8; }
.choice-mesa > p:not(.eyebrow) { color: rgba(255, 255, 255, .85); }
.choice-mesa .btn-red { background: var(--ink); box-shadow: none; }
.choice-mesa .btn-red:hover { background: #000; }
.choice-mesa :focus-visible { outline-color: #fff; }
.choice-casa { background: var(--ink-3); border: 1px solid var(--line); }
.choice-casa > p:not(.eyebrow) { color: var(--muted); max-width: 20rem; }
.choice-casa > *:not(.choice-img) { position: relative; z-index: 1; }
.choice-img { position: absolute; right: -18%; bottom: -30%; width: 72%; border-radius: 50%; transition: transform 1.4s var(--ease); box-shadow: 0 30px 60px rgba(0, 0, 0, .5); }
.choice-casa:hover .choice-img { transform: rotate(-25deg) scale(1.04); }
.seg { display: inline-flex; flex-wrap: wrap; gap: .3rem; padding: .3rem; border-radius: 999px; background: rgba(0, 0, 0, .2); margin: .6rem 0 1.4rem; }
.seg button { height: 42px; padding: 0 1.1rem; border-radius: 999px; font-size: .9rem; font-weight: 500; color: rgba(255, 255, 255, .8); transition: all .35s var(--ease); }
.seg button:hover { color: #fff; }
.seg button[aria-checked="true"] { background: #fff; color: var(--red); }

/* ============ INSTAGRAM ============ */
.insta { padding-top: 0; }
.insta-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: .5rem 2rem; margin-bottom: 2.2rem; }
.insta-head .chapter { width: 100%; margin-bottom: .4rem; }
.insta-head .h2 a { transition: color .3s; }
.insta-head .h2 a:hover { color: var(--gold-2); }
.insta-head > p { color: var(--muted); }
.insta-grid { display: grid; grid-template-columns: repeat(6, minmax(0, 1fr)); gap: .6rem; }
.insta-grid a { aspect-ratio: 4 / 5; overflow: hidden; border-radius: 10px; }
.insta-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease), filter .5s; filter: saturate(.85); }
.insta-grid a:hover img { transform: scale(1.06); filter: saturate(1.1); }

/* ============ FOOTER ============ */
.footer { padding: clamp(4rem, 8vw, 7rem) var(--gutter) 1.4rem; border-top: 1px solid var(--line); overflow: hidden; }
.footer > * { max-width: var(--max); margin-inline: auto; }
.footer-top { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); gap: 3rem; }
.footer-mail { display: inline-block; margin-top: .8rem; font-family: var(--f-display); font-size: clamp(1.6rem, 3.4vw, 3rem); font-style: italic; border-bottom: 1px solid var(--line); transition: color .3s, border-color .3s; }
.footer-mail:hover { color: var(--gold-2); border-color: var(--gold); }
.footer-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.footer-cols h4 { font-family: var(--f-mono); font-size: .68rem; letter-spacing: .16em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-cols a { display: block; color: var(--muted); padding: .28rem 0; font-size: .95rem; transition: color .3s; }
.footer-cols a:hover { color: var(--cream); }
.footer-word {
  font-family: var(--f-display); font-size: clamp(6rem, 25vw, 26rem); line-height: .8; letter-spacing: -.06em;
  text-align: center; margin: clamp(3rem, 6vw, 5rem) auto 1.5rem !important;
  background: linear-gradient(180deg, var(--cream) 30%, rgba(201, 161, 91, .15));
  -webkit-background-clip: text; background-clip: text; color: transparent;
  user-select: none;
}
.footer-word em { font-style: italic; }
.footer-bottom { display: flex; justify-content: space-between; gap: 1rem; flex-wrap: wrap; font-size: .8rem; color: var(--muted); padding-top: 1.2rem; border-top: 1px solid var(--line); }
.to-top:hover { color: var(--gold-2); }

.mobile-bar { display: none; }

/* ============ reveals ============ */
[data-reveal] { opacity: 0; }
[data-reveal="up"] { transform: translateY(44px); }
[data-reveal="clip"] { opacity: 1; clip-path: inset(18% 8% 18% 8% round var(--radius)); }
[data-reveal="clip"] img { transform: scale(1.18); }
[data-reveal].is-visible { opacity: 1; transform: none; transition: opacity 1.1s var(--ease), transform 1.1s var(--ease), clip-path 1.5s var(--ease); }
[data-reveal="clip"].is-visible { clip-path: inset(0 0 0 0 round var(--radius)); }
[data-reveal="clip"].is-visible img { transform: scale(1); transition: transform 1.8s var(--ease); }
.c5[data-reveal="clip"], .c5[data-reveal="clip"].is-visible { clip-path: circle(50%); }
.c5[data-reveal="clip"] { clip-path: circle(20%); }
.fundador-photo[data-reveal="clip"].is-visible { clip-path: inset(0 0 0 0 round 200px 200px var(--radius) var(--radius)); }
[data-reveal-delay="1"] { transition-delay: .06s !important; }
[data-reveal-delay="2"] { transition-delay: .12s !important; }
[data-reveal-delay="3"] { transition-delay: .18s !important; }
[data-reveal-delay="4"] { transition-delay: .24s !important; }
.split-word { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .1em; margin-bottom: -.1em; }
.split-word > span { display: inline-block; transform: translateY(110%); transition: transform 1.1s var(--ease); transition-delay: calc(var(--w) * 45ms); }
[data-split].is-visible .split-word > span { transform: none; }

/* ============ responsivo ============ */
@media (max-width: 1100px) {
  .nav-links { display: none; }
  .nav { display: flex; justify-content: space-between; }
  .nav-toggle { display: inline-block; }
  .nav-actions .btn-ghost { display: none; }
  .casa-row { grid-template-columns: 44px minmax(0, 1fr) minmax(0, 1fr); }
  .casa-row .tags { grid-column: 2; }
  .casa-row .links { grid-column: 3; justify-content: flex-start; }
  .cardapio-body { grid-template-columns: minmax(0, 1fr) 300px; }
}

@media (max-width: 860px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    padding-top: 6rem;
    min-height: auto;
  }
  .pizza-stage { order: -1; width: min(92vw, 520px); justify-self: center; margin: 0 0 -1rem; }
  .pizza-caption { display: none; }
  .pizza-stage { width: min(84vw, 480px); margin-bottom: 1rem; }
  .scroll-cue { display: none; }
  .hero-stats { grid-template-columns: repeat(2, 1fr); row-gap: 1.2rem; }
  .casa-grid, .fatto-head, .fundador-grid { grid-template-columns: 1fr; }
  .casa-year { position: static; }
  .big-year { font-size: clamp(5rem, 30vw, 9rem); }
  .casa-cols { grid-template-columns: 1fr; gap: 1rem; margin-top: 2rem; }
  .casa-photo { aspect-ratio: 4 / 3; }
  .fatto-steps { grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 78%; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 1rem; margin-inline: calc(var(--gutter) * -1); padding-inline: var(--gutter); scrollbar-width: none; }
  .fatto-steps::-webkit-scrollbar { display: none; }
  .fatto-steps li { scroll-snap-align: start; margin-top: 0 !important; }
  .fundador-photo { max-width: 420px; margin-inline: auto; width: 100%; }
  .cardapio-head { align-items: flex-start; }
  .cardapio-tools { justify-items: start; }
  .cardapio-note { text-align: left; }
  .cardapio-body { grid-template-columns: 1fr; }
  .menu-plate { display: none; }
  .mi { grid-template-columns: minmax(0, 1fr) auto; grid-template-areas: "n p" "d d"; column-gap: .8rem; }
  .mi:has(.mi-thumb) { grid-template-columns: 52px minmax(0, 1fr) auto; grid-template-areas: "t n p" "t d d"; }
  .mi-thumb { display: block; grid-area: t; width: 52px; height: 52px; border-radius: 50%; object-fit: cover; align-self: start; }
  .mi-name { grid-area: n; }
  .mi-name .ph { display: none; }
  .mi-desc { grid-area: d; max-width: none; }
  .mi-price { grid-area: p; }
  .mi-price span { width: 60px; font-size: 1.05rem; }
  .menu-cols span { width: 60px; }
  .mi:hover, .mi:focus-within { padding-left: .2rem; }
  .tabs { top: 58px; }
  .vinho { grid-template-columns: 110px 1fr; gap: 1.2rem; }
  .vinho h3 { font-size: 1.7rem; }
  .collage { grid-template-columns: repeat(6, 1fr); grid-auto-rows: 64px; }
  .c1 { grid-column: 1 / 7; grid-row: 1 / 5; }
  .c2 { grid-column: 1 / 4; grid-row: 5 / 8; }
  .c3 { grid-column: 4 / 7; grid-row: 5 / 8; }
  .c4 { grid-column: 1 / 4; grid-row: 8 / 11; }
  .c5 { grid-column: 4 / 7; grid-row: 8 / 11; }
  .c6 { grid-column: 1 / 7; grid-row: 11 / 14; }
  .casa-row { grid-template-columns: 1fr auto; gap: .8rem 1rem; padding: 1.6rem 0; }
  .casa-row:hover { padding-left: 0; }
  .casa-row .n { display: none; }
  .casa-row h3 { grid-column: 1; }
  .row-thumb { display: block; grid-column: 2; grid-row: 1 / span 2; width: 88px; height: 88px; object-fit: cover; border-radius: 12px; }
  .casa-row .addr { grid-column: 1; }
  .casa-row .tags, .casa-row .links { grid-column: 1 / -1; justify-content: flex-start; }
  .casas-float { display: none; }
  .choice { grid-template-columns: 1fr; }
  .choice-card { min-height: 380px; }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-cols { grid-template-columns: repeat(2, 1fr); }
  .mobile-bar {
    display: grid; grid-template-columns: 1fr 1.4fr; gap: .5rem;
    position: fixed; left: .6rem; right: .6rem; bottom: calc(.6rem + env(safe-area-inset-bottom)); z-index: 450;
    padding: .45rem; border-radius: 999px;
    background: rgba(22, 16, 11, .82); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--line);
    transform: translateY(150%); transition: transform .6s var(--ease);
  }
  .mobile-bar.show { transform: none; }
  .menu-open .mobile-bar { transform: translateY(150%); }
  .mobile-bar .btn { --bh: 48px; padding: 0 1rem; }
  .footer { padding-bottom: 6rem; }
}

@media (max-width: 520px) {
  .nav-actions .btn-red { display: none; }
  .hero-ctas .btn { flex: 1 1 100%; }
  .fundador-reels { gap: .5rem; }
  .reel { width: calc((100% - 1rem) / 3); }
  .rodizio-dl { padding-left: 0; border-left: 0; }
  .vinho { grid-template-columns: 1fr; }
  .vinho figure { aspect-ratio: 16 / 10; }
  .mi-name { font-size: 1.15rem; }
  .mi-desc { font-size: .86rem; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  [data-reveal], [data-hero-in], [data-hero-line], .split-word > span { opacity: 1 !important; transform: none !important; clip-path: none !important; }
  [data-reveal] img { transform: none !important; }
  .grain { display: none; }
}
