:root {
  --brand-black: #0b0b0a;
  --brand-graphite: #151513;
  --brand-surface: #1b1a17;
  --brand-gold-dark: #80632f;
  --brand-gold: #c5a35a;
  --brand-gold-light: #e0c27a;
  --brand-gold-highlight: #f4dfa3;
  --brand-ivory: #f4f0e7;
  --brand-muted: #a9a297;
  --brand-line: rgba(244, 240, 231, 0.14);
  --brand-line-dark: rgba(11, 11, 10, 0.14);
  --metal: linear-gradient(135deg, #80632f 0%, #c5a35a 30%, #f4dfa3 52%, #d2ad61 72%, #8a6b34 100%);
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", Arial, sans-serif;
  --container: min(100% - 40px, 1240px);
  --container-wide: min(100% - 40px, 1520px);
  --radius: 6px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.32);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--brand-black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--brand-black);
  color: var(--brand-ivory);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--brand-gold-highlight);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 999;
  transform: translateY(-140%);
  border: 1px solid var(--brand-gold);
  background: var(--brand-ivory);
  color: var(--brand-black);
  padding: 10px 14px;
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.noise-overlay {
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='1'/%3E%3C/svg%3E");
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(11, 11, 10, 0.82), rgba(11, 11, 10, 0));
  transition: background 220ms ease, border-color 220ms ease, padding 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  border-color: var(--brand-line);
  background: rgba(11, 11, 10, 0.94);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: var(--container-wide);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 92px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.brand-logo {
  width: clamp(138px, 11vw, 186px);
  max-height: 62px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.5vw, 38px);
  color: rgba(244, 240, 231, 0.78);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-links a {
  position: relative;
  padding: 10px 0;
}

.nav-links a::after,
.text-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--brand-gold);
  transition: transform 220ms ease;
}

.nav-links a[aria-current="page"],
.nav-links a:hover,
.text-link:hover {
  color: var(--brand-ivory);
}

.nav-links a[aria-current="page"]::after,
.nav-links a:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--brand-line);
  background: transparent;
  color: var(--brand-ivory);
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 1px;
  margin: 5px auto;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 0;
  padding: 12px 18px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease, color 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--brand-gold-light);
  color: var(--brand-black);
}

.btn-primary:hover {
  background: var(--brand-gold-highlight);
}

.btn-secondary {
  border-color: rgba(244, 240, 231, 0.24);
  background: rgba(244, 240, 231, 0.02);
  color: var(--brand-ivory);
}

.btn-secondary:hover {
  border-color: rgba(224, 194, 122, 0.75);
}

.text-link {
  position: relative;
  display: inline-block;
  color: var(--brand-ivory);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

main {
  background: var(--brand-black);
}

.hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 11, 10, 0.9) 0%, rgba(11, 11, 10, 0.62) 42%, rgba(11, 11, 10, 0.18) 78%),
    linear-gradient(180deg, rgba(11, 11, 10, 0.32) 0%, rgba(11, 11, 10, 0.18) 42%, var(--brand-black) 100%);
}

.hero-media,
.page-hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img,
.page-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-inner {
  width: var(--container-wide);
  margin: 0 auto;
  padding: 150px 0 76px;
  display: grid;
  grid-template-columns: minmax(0, 760px) 1fr;
  gap: 48px;
  align-items: end;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--brand-gold-light);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.35;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 42px;
  height: 1px;
  background: var(--brand-gold);
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.hero h1,
.page-hero h1 {
  margin: 24px 0 24px;
  max-width: 880px;
  font-size: clamp(3rem, 8vw, 8.4rem);
}

.hero p,
.page-hero p,
.section-lead {
  color: rgba(244, 240, 231, 0.78);
  font-size: clamp(1rem, 1.35vw, 1.24rem);
  line-height: 1.75;
}

.hero p {
  max-width: 720px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-aside {
  border-left: 1px solid var(--brand-line);
  padding-left: 28px;
  color: rgba(244, 240, 231, 0.64);
  font-size: 13px;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 34px;
  color: rgba(244, 240, 231, 0.58);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue::before {
  content: "";
  width: 1px;
  height: 44px;
  background: var(--brand-gold);
}

.section {
  padding: clamp(76px, 9vw, 150px) 0;
  position: relative;
}

.section-dark {
  background: var(--brand-black);
}

.section-surface {
  background: var(--brand-surface);
}

.section-ivory {
  background: var(--brand-ivory);
  color: var(--brand-black);
}

.section-ivory .eyebrow,
.section-ivory .text-link {
  color: var(--brand-gold-dark);
}

.section-ivory .eyebrow::before {
  background: var(--brand-gold-dark);
}

.section-ivory .section-lead,
.section-ivory .muted,
.section-ivory .measure {
  color: rgba(11, 11, 10, 0.68);
}

.section-ivory .grid-three {
  background: rgba(11, 11, 10, 0.16);
  border-color: rgba(11, 11, 10, 0.16);
}

.section-ivory .grid-three > * {
  background: var(--brand-ivory);
}

.section-ivory .value-panel p,
.section-ivory .service-panel p,
.section-ivory .timeline-step h3 {
  color: rgba(11, 11, 10, 0.68);
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.container-wide {
  width: var(--container-wide);
  margin: 0 auto;
}

.grid-two {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 100px);
  align-items: center;
}

.grid-three {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--brand-line);
  border: 1px solid var(--brand-line);
}

.grid-three > * {
  background: var(--brand-black);
}

.section-kicker {
  color: var(--brand-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-title {
  margin: 18px 0 24px;
  max-width: 920px;
  font-size: clamp(2.45rem, 5vw, 5.9rem);
}

.measure {
  max-width: 720px;
  color: rgba(244, 240, 231, 0.72);
}

.image-panel {
  position: relative;
  min-height: clamp(360px, 54vw, 720px);
  overflow: hidden;
  border: 1px solid var(--brand-line);
  background: var(--brand-graphite);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 800ms ease;
}

.image-panel:hover img {
  transform: scale(1.035);
}

.image-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(11, 11, 10, 0.56));
}

.stat-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}

.stat {
  padding: 28px;
  border-right: 1px solid var(--brand-line);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--brand-gold-light);
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 4.4rem);
  font-weight: 500;
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: rgba(244, 240, 231, 0.68);
  font-size: 13px;
}

.editorial-list {
  display: grid;
  gap: 1px;
  margin-top: 44px;
  background: var(--brand-line);
  border: 1px solid var(--brand-line);
}

.editorial-row {
  display: grid;
  grid-template-columns: 120px minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 28px;
  align-items: start;
  background: var(--brand-black);
  padding: clamp(24px, 4vw, 48px);
}

.editorial-row .number {
  color: var(--brand-gold-light);
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 5.4rem);
  line-height: 0.9;
}

.editorial-row h3 {
  margin-bottom: 0;
  font-size: clamp(1.7rem, 3vw, 3rem);
}

.editorial-row p,
.value-panel p,
.service-panel p,
.post-card p {
  color: rgba(244, 240, 231, 0.68);
}

.value-panel,
.service-panel,
.empty-state {
  padding: clamp(24px, 4vw, 46px);
  min-height: 280px;
}

.value-panel .number,
.service-panel .number {
  color: var(--brand-gold-light);
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 56px);
  line-height: 1;
  overflow-wrap: anywhere;
}

.value-panel h3,
.service-panel h3 {
  margin: 52px 0 18px;
  font-size: clamp(1.55rem, 2.4vw, 2.4rem);
}

.partners {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--brand-line);
  border: 1px solid var(--brand-line);
}

.partner {
  min-height: 112px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--brand-surface);
  color: rgba(244, 240, 231, 0.56);
  font-family: var(--font-display);
  font-size: clamp(1.05rem, 1.8vw, 1.6rem);
  text-align: center;
  transition: color 180ms ease, background 180ms ease;
}

.partner:hover {
  background: var(--brand-graphite);
  color: var(--brand-ivory);
}

.testimonial-shell {
  border: 1px solid var(--brand-line);
  padding: clamp(28px, 5vw, 60px);
  background: rgba(244, 240, 231, 0.025);
}

.testimonial-items {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--brand-line);
}

.testimonial-item {
  background: var(--brand-black);
  padding: 28px;
}

.testimonial-item strong {
  display: block;
  color: var(--brand-ivory);
}

.testimonial-item span,
.meta,
.muted {
  color: var(--brand-muted);
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 44px;
  background: var(--brand-line);
  border: 1px solid var(--brand-line);
}

.post-card {
  display: grid;
  grid-template-rows: 300px 1fr;
  min-height: 100%;
  background: var(--brand-black);
}

.post-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-card-body {
  padding: clamp(24px, 4vw, 42px);
}

.post-card h2,
.post-card h3 {
  margin: 14px 0;
  font-size: clamp(1.8rem, 3vw, 3rem);
}

.page-hero {
  min-height: 72vh;
  position: relative;
  display: flex;
  align-items: end;
  isolation: isolate;
  overflow: hidden;
}

.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 11, 10, 0.9), rgba(11, 11, 10, 0.45)),
    linear-gradient(180deg, rgba(11, 11, 10, 0.15), var(--brand-black));
}

.page-hero-inner {
  width: var(--container);
  margin: 0 auto;
  padding: 150px 0 76px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--brand-line);
  border-left: 1px solid var(--brand-line);
}

.timeline-step {
  min-height: 210px;
  padding: 26px;
  border-right: 1px solid var(--brand-line);
  border-bottom: 1px solid var(--brand-line);
}

.section-ivory .timeline {
  border-color: rgba(11, 11, 10, 0.16);
}

.section-ivory .timeline-step {
  border-color: rgba(11, 11, 10, 0.16);
}

.timeline-step span {
  color: var(--brand-gold-light);
  font-family: var(--font-display);
  font-size: 32px;
}

.timeline-step h3 {
  margin: 24px 0 0;
  font-size: 1.35rem;
  line-height: 1.15;
}

.empty-state {
  display: grid;
  min-height: 420px;
  align-content: center;
  border: 1px solid var(--brand-line);
  background:
    linear-gradient(90deg, rgba(11, 11, 10, 0.9), rgba(11, 11, 10, 0.55)),
    url("../images/arquitetura-residencial.webp") center / cover;
}

.empty-state h2 {
  max-width: 760px;
  font-size: clamp(2.2rem, 5vw, 5.2rem);
}

.article {
  width: min(100% - 40px, 860px);
  margin: 0 auto;
  padding: 150px 0 90px;
}

.article h1 {
  margin: 18px 0 18px;
  font-size: clamp(2.6rem, 6vw, 6rem);
}

.article h2 {
  margin-top: 54px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.article p,
.article li {
  color: rgba(244, 240, 231, 0.76);
  font-size: 1.05rem;
}

.article .disclaimer {
  margin-top: 42px;
  border-left: 2px solid var(--brand-gold);
  padding: 18px 22px;
  background: rgba(244, 240, 231, 0.04);
  color: var(--brand-ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(34px, 7vw, 90px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}

.contact-list a,
.contact-list span {
  display: block;
  color: rgba(244, 240, 231, 0.78);
}

.contact-form {
  display: grid;
  gap: 18px;
  border: 1px solid var(--brand-line);
  padding: clamp(24px, 4vw, 42px);
  background: var(--brand-surface);
}

.field {
  display: grid;
  gap: 8px;
}

.field label {
  color: var(--brand-muted);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid rgba(244, 240, 231, 0.18);
  border-radius: 0;
  background: rgba(11, 11, 10, 0.42);
  color: var(--brand-ivory);
  padding: 14px 15px;
  transition: border-color 180ms ease, background 180ms ease;
}

.field textarea {
  min-height: 150px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--brand-gold-light);
  background: rgba(11, 11, 10, 0.7);
}

.field-error {
  min-height: 20px;
  color: var(--brand-gold-highlight);
  font-size: 13px;
}

.form-status {
  min-height: 24px;
  color: var(--brand-gold-highlight);
}

.site-footer {
  border-top: 1px solid var(--brand-line);
  background:
    linear-gradient(180deg, var(--brand-surface), var(--brand-black));
  color: var(--brand-ivory);
}

.site-footer .brand-logo {
  width: min(100%, 268px);
  max-height: 154px;
}

.footer-inner {
  width: var(--container-wide);
  margin: 0 auto;
  padding: clamp(58px, 8vw, 100px) 0 36px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.75fr 0.9fr 0.9fr;
  gap: 34px;
}

.footer-title {
  margin: 22px 0 12px;
  max-width: 560px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4.8rem);
  line-height: 1;
}

.footer-col h2,
.footer-col h3 {
  margin: 0 0 16px;
  color: var(--brand-gold-light);
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 10px;
  color: rgba(244, 240, 231, 0.68);
  font-size: 14px;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid var(--brand-line);
  color: rgba(244, 240, 231, 0.5);
  font-size: 12px;
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
  background: #20bd5a;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.42);
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .nav-shell {
    min-height: 78px;
  }

  .nav-links {
    position: fixed;
    inset: 78px 0 auto;
    display: grid;
    gap: 0;
    padding: 26px 20px 34px;
    border-top: 1px solid var(--brand-line);
    border-bottom: 1px solid var(--brand-line);
    background: rgba(11, 11, 10, 0.98);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 220ms ease, opacity 220ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 16px 0;
    border-bottom: 1px solid var(--brand-line);
    font-size: 14px;
  }

  .menu-toggle {
    display: block;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero-inner,
  .grid-two,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    padding-bottom: 48px;
  }

  .hero-aside {
    max-width: 520px;
  }

  .grid-three,
  .posts-grid,
  .testimonial-items,
  .partners,
  .timeline,
  .stat-line {
    grid-template-columns: 1fr 1fr;
  }

  .editorial-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  :root {
    --container: min(100% - 32px, 1240px);
    --container-wide: min(100% - 32px, 1520px);
  }

  .brand-logo {
    width: 132px;
    max-height: 52px;
  }

  .site-footer .brand-logo {
    width: 210px;
    max-height: 122px;
  }

  .hero {
    min-height: 100svh;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.75rem, 17vw, 4.8rem);
  }

  .hero-actions,
  .section-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .grid-three,
  .posts-grid,
  .testimonial-items,
  .partners,
  .timeline,
  .stat-line {
    grid-template-columns: 1fr;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--brand-line);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .post-card {
    grid-template-rows: 220px 1fr;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
