:root {
  --green: #a77a36;
  --green-dark: #3a2812;
  --orange: #b07c34;
  --orange-dark: #7b501f;
  --brown: #a77a36;
  --brown-dark: #3a2812;
  --brown-deep: #160f08;
  --black: #101410;
  --charcoal: #241b11;
  --muted: #746a5e;
  --line: #e8decf;
  --cream: #f4eddf;
  --sand: #fbf7ef;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(36, 27, 17, 0.16);
  --radius: 18px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--black);
  background: var(--sand);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

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

.container {
  width: min(100% - 32px, var(--max));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 239, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 88px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 900;
  letter-spacing: 0.01em;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  color: var(--white);
  background: linear-gradient(135deg, var(--green), var(--orange));
  box-shadow: 0 10px 24px rgba(23, 107, 58, 0.24);
}

.brand span:last-child {
  max-width: 170px;
  line-height: 1.05;
}

.brand-logo {
  width: auto;
  max-width: min(210px, 42vw);
  max-height: 68px;
  height: auto;
  filter: drop-shadow(0 8px 16px rgba(22, 15, 8, 0.14));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  font-weight: 800;
  color: var(--charcoal);
}

.nav-links a {
  padding: 8px 0;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brown);
}

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

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--black);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 2px solid transparent;
  border-radius: 999px;
  font-weight: 900;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0;
  translate: -120% 0;
  background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transition: translate 0.55s ease;
}

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

.btn:hover::after {
  translate: 120% 0;
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--brown), var(--orange-dark));
  box-shadow: 0 14px 28px rgba(167, 122, 54, 0.3);
}

.btn-primary:hover {
  background: var(--orange-dark);
}

.btn-secondary {
  color: var(--white);
  background: var(--brown-dark);
  box-shadow: 0 14px 28px rgba(58, 40, 18, 0.24);
}

.btn-outline {
  color: var(--brown-dark);
  background: var(--cream);
  border-color: var(--brown);
}

.hero {
  position: relative;
  min-height: 680px;
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--brown-deep);
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 15, 8, 0.92), rgba(58, 40, 18, 0.72) 42%, rgba(22, 15, 8, 0.28));
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -18% auto;
  width: min(46vw, 520px);
  aspect-ratio: 1;
  border: 2px solid rgba(167, 122, 54, 0.42);
  border-radius: 50%;
  z-index: 1;
  animation: slow-spin 24s linear infinite;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.04);
  animation: hero-drift 18s ease-in-out infinite alternate;
}

.hero-motion {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(circle at 20% 25%, rgba(167, 122, 54, 0.34), transparent 24%),
    linear-gradient(115deg, transparent 0 42%, rgba(255, 255, 255, 0.08) 48%, transparent 55% 100%);
  mix-blend-mode: screen;
  animation: sweep 7s ease-in-out infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 92px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--white);
  background: rgba(167, 122, 54, 0.95);
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

h1,
h2,
h3 {
  line-height: 1.08;
  margin: 0;
}

h1 {
  font-size: clamp(2.55rem, 7vw, 5rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(2rem, 4.5vw, 3.35rem);
  letter-spacing: -0.025em;
}

h3 {
  font-size: 1.28rem;
}

.hero p {
  max-width: 680px;
  margin: 22px 0 30px;
  font-size: clamp(1.08rem, 2.5vw, 1.35rem);
  color: rgba(255, 255, 255, 0.9);
}

.hero-buttons,
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  max-width: 660px;
  margin-top: 42px;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-pills span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.seo-strip {
  overflow: hidden;
  color: var(--white);
  background: var(--brown-deep);
  border-top: 3px solid var(--brown);
}

.seo-track {
  display: flex;
  gap: 34px;
  width: max-content;
  padding: 13px 0;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  animation: marquee 32s linear infinite;
}

.seo-track span {
  white-space: nowrap;
}

.hero-stat {
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.hero-stat strong {
  display: block;
  font-size: 1.35rem;
}

.hero-stat span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
}

.section {
  padding: 86px 0;
}

.services-intro {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.services-intro::before,
.services-intro::after {
  content: "";
  position: absolute;
  top: 54px;
  bottom: 54px;
  width: min(22vw, 310px);
  border-radius: 22px;
  background-size: cover;
  background-position: center;
  opacity: 0.22;
  filter: saturate(0.9) contrast(1.05);
  z-index: -1;
}

.services-intro::before {
  left: max(16px, calc((100vw - var(--max)) / 2 - 190px));
  background-image: linear-gradient(rgba(22, 15, 8, 0.1), rgba(22, 15, 8, 0.1)), url("../assets/images/furniture-loaded-trailer.webp");
}

.services-intro::after {
  right: max(16px, calc((100vw - var(--max)) / 2 - 190px));
  background-image: linear-gradient(rgba(22, 15, 8, 0.1), rgba(22, 15, 8, 0.1)), url("../assets/images/hot-tub-removal.webp");
}

.services-intro .container {
  position: relative;
  z-index: 1;
}

.section-soft {
  background: var(--cream);
}

.section-dark {
  color: var(--white);
  background: linear-gradient(135deg, var(--brown-deep), var(--brown-dark));
}

.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 28px;
  margin-bottom: 34px;
}

.section-header p {
  max-width: 650px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-dark .section-header p {
  color: rgba(255, 255, 255, 0.78);
}

.trust-bar {
  margin-top: 26px;
  position: relative;
  z-index: 4;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--line);
  box-shadow: var(--shadow);
}

.trust-item {
  padding: 26px 18px;
  background: var(--white);
  font-weight: 900;
  text-align: center;
}

.trust-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange);
  font-size: 1.6rem;
}

.grid {
  display: grid;
  gap: 22px;
}

.services-grid {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 8px 24px rgba(16, 20, 16, 0.06);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}

.card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 124, 32, 0.45);
  box-shadow: 0 18px 38px rgba(16, 20, 16, 0.13);
}

.service-card {
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -42px;
  bottom: -42px;
  width: 94px;
  height: 94px;
  border-radius: 50%;
  background: rgba(244, 124, 32, 0.12);
}

.service-card:hover .service-icon {
  animation: bump 0.46s ease;
}

.service-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin-bottom: 18px;
  border-radius: 15px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brown), var(--brown-dark));
}

.service-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-card p,
.feature-card p,
.step p,
.about-copy p,
.contact-card p {
  color: var(--muted);
}

.image-card {
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.24s ease, box-shadow 0.24s ease;
}

.image-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 44px rgba(16, 20, 16, 0.18);
}

.image-card img {
  height: 260px;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.45s ease;
}

.image-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.04);
}

.image-card figcaption {
  padding: 16px 18px;
  font-weight: 900;
}

.steps {
  grid-template-columns: repeat(4, 1fr);
  counter-reset: steps;
}

.step {
  position: relative;
  padding: 26px;
  border-radius: var(--radius);
  background: var(--white);
  counter-increment: steps;
}

.step::before {
  content: counter(steps);
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  color: var(--white);
  background: var(--orange);
  font-weight: 900;
}

.feature-wrap {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
}

.feature-image {
  height: 100%;
  min-height: 440px;
  border-radius: 24px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.features {
  grid-template-columns: repeat(2, 1fr);
}

.feature-card {
  background: rgba(244, 237, 223, 0.08);
  border-color: rgba(244, 237, 223, 0.14);
}

.feature-card p {
  color: rgba(255, 255, 255, 0.78);
}

.gallery-grid {
  grid-template-columns: repeat(3, 1fr);
}

.gallery-grid .image-card img {
  height: 300px;
}

.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 26px;
}

.filter-btn {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  font-weight: 900;
  cursor: pointer;
}

.filter-btn.active {
  color: var(--white);
  border-color: var(--brown);
  background: var(--brown);
}

.faq-list {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--white);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  padding: 20px 22px;
  border: 0;
  background: transparent;
  color: var(--black);
  font: inherit;
  font-weight: 900;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  float: right;
  color: var(--orange);
  font-size: 1.3rem;
}

.faq-item.open .faq-question::after {
  content: "-";
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: var(--muted);
}

.faq-item.open .faq-answer {
  display: block;
}

.area-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.area-grid span {
  padding: 15px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
  transition: transform 0.2s ease, background 0.2s ease;
}

.area-grid span:hover {
  transform: translateY(-3px);
  background: rgba(244, 124, 32, 0.32);
}

.cta-panel {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 42px;
  border-radius: 26px;
  color: var(--white);
  background: linear-gradient(135deg, var(--brown-deep), var(--brown-dark));
  box-shadow: var(--shadow);
}

.cta-spark {
  position: absolute;
  right: -70px;
  top: -70px;
  width: 190px;
  height: 190px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(167, 122, 54, 0.62), transparent 68%);
  animation: pulse-glow 3.2s ease-in-out infinite;
}

.page-hero {
  padding: 88px 0;
  color: var(--white);
  background: linear-gradient(135deg, rgba(22, 15, 8, 0.96), rgba(58, 40, 18, 0.88)), url("../assets/images/loaded-dump-trailer.webp") center/cover;
}

.page-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.16rem;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.split img {
  border-radius: 24px;
  box-shadow: var(--shadow);
}

.local-seo-panel {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(244, 237, 223, 0.92), rgba(255, 255, 255, 0.96)),
    radial-gradient(circle at top right, rgba(167, 122, 54, 0.2), transparent 35%);
  box-shadow: var(--shadow);
}

.local-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.local-links a {
  padding: 10px 14px;
  border-radius: 999px;
  color: var(--brown-dark);
  background: #efe2cc;
  font-weight: 900;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.animate-in {
  animation: fade-up 0.7s ease both;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 28px;
  align-items: start;
}

.contact-card {
  padding: 28px;
  border-radius: var(--radius);
  background: var(--cream);
}

.contact-list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.contact-list strong {
  display: block;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

label {
  display: grid;
  gap: 7px;
  font-weight: 900;
}

input,
select,
textarea {
  width: 100%;
  min-height: 50px;
  padding: 12px 14px;
  border: 1px solid #cfd8cf;
  border-radius: 12px;
  font: inherit;
  color: var(--black);
  background: var(--white);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.form-status {
  display: none;
  padding: 14px 16px;
  border-radius: 12px;
  color: var(--brown-dark);
  background: #efe2cc;
  font-weight: 800;
}

.form-status.show {
  display: block;
}

.form-popup {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  display: grid;
  gap: 2px;
  width: min(340px, calc(100vw - 32px));
  padding: 18px 20px;
  border: 1px solid rgba(167, 122, 54, 0.35);
  border-radius: 16px;
  color: var(--brown-deep);
  background: var(--cream);
  box-shadow: 0 18px 42px rgba(22, 15, 8, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px);
  transition: opacity 0.24s ease, transform 0.24s ease;
}

.form-popup.show {
  opacity: 1;
  transform: translateY(0);
}

.form-popup strong {
  font-size: 1.05rem;
}

.form-popup span {
  color: var(--muted);
  font-weight: 700;
}

button:disabled,
.btn:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
}

.site-footer {
  padding: 48px 0 28px;
  color: rgba(255, 255, 255, 0.78);
  background: var(--brown-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 30px;
  margin-bottom: 34px;
}

.site-footer h3,
.site-footer strong {
  color: var(--white);
}

.footer-links {
  display: grid;
  gap: 9px;
}

.footer-bottom {
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.92rem;
}

@media (max-width: 920px) {
  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 88px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 12px 16px 18px;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 13px 0;
  }

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

  .hero {
    min-height: 620px;
  }

  .hero::before {
    background: rgba(12, 21, 13, 0.72);
  }

  .trust-grid,
  .services-grid,
  .steps,
  .gallery-grid,
  .features,
  .area-grid,
  .split,
  .contact-layout,
  .footer-grid,
  .feature-wrap {
    grid-template-columns: 1fr 1fr;
  }

  .section-header,
  .cta-panel {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .services-intro::before,
  .services-intro::after {
    top: 32px;
    bottom: auto;
    width: 42%;
    height: 220px;
    opacity: 0.16;
  }

  .services-intro::before {
    left: -30px;
  }

  .services-intro::after {
    right: -30px;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, var(--max));
  }

  .brand span:last-child {
    max-width: 132px;
    font-size: 0.92rem;
  }

  .brand-logo {
    max-width: 150px;
    max-height: 54px;
  }

  .hero {
    min-height: 560px;
    align-items: flex-end;
  }

  .hero-content {
    padding: 48px 0 42px;
    max-width: 100%;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(22, 15, 8, 0.42), rgba(22, 15, 8, 0.92) 56%, rgba(22, 15, 8, 0.98));
  }

  .hero::after,
  .hero-motion {
    display: none;
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero .eyebrow {
    margin-bottom: 12px;
    padding: 7px 11px;
    font-size: 0.72rem;
    letter-spacing: 0.06em;
  }

  .hero h1 {
    max-width: 13.5ch;
    font-size: clamp(2.25rem, 11vw, 3.1rem);
    line-height: 1;
  }

  .hero p {
    margin: 16px 0 22px;
    font-size: 1rem;
    line-height: 1.5;
  }

  .hero-buttons .btn,
  .cta-buttons .btn {
    width: 100%;
  }

  .hero-buttons {
    gap: 10px;
  }

  .hero-pills,
  .hero-stats {
    display: none;
  }

  .hero-stats,
  .trust-grid,
  .services-grid,
  .steps,
  .gallery-grid,
  .features,
  .area-grid,
  .split,
  .contact-layout,
  .footer-grid,
  .feature-wrap,
  .form-row {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 64px 0;
  }

  .services-intro::before,
  .services-intro::after {
    height: 160px;
    width: 48%;
    opacity: 0.12;
  }

  .page-hero {
    padding: 68px 0;
  }

  .cta-panel {
    padding: 28px;
  }

  .image-card img,
  .gallery-grid .image-card img {
    height: 240px;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(-16px, 10px, 0);
  }
}

@keyframes sweep {
  0%,
  100% {
    opacity: 0.45;
    transform: translateX(-8%);
  }
  50% {
    opacity: 0.8;
    transform: translateX(8%);
  }
}

@keyframes slow-spin {
  to {
    transform: rotate(360deg);
  }
}

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

@keyframes bump {
  50% {
    transform: rotate(-4deg) scale(1.08);
  }
}

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.95;
    transform: scale(1.08);
  }
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

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