:root {
  --forest: #173c2a;
  --forest-deep: #102a1e;
  --leaf: #3f6f4a;
  --mint: #dce9df;
  --paper: #f7f8f5;
  --white: #ffffff;
  --ink: #1e2521;
  --muted: #667069;
  --line: #d7ddd8;
  --tea: #724b3c;
  --berry: #8c3f47;
  --max-width: 1240px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans CJK SC", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #d7ab5f;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 10px;
  left: 10px;
  padding: 8px 14px;
  color: var(--forest-deep);
  background: var(--white);
  transform: translateY(-150%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 max(28px, calc((100vw - var(--max-width)) / 2));
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  transition: background-color 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 28px rgba(21, 50, 35, 0.08);
  border-bottom-color: rgba(23, 60, 42, 0.1);
  backdrop-filter: blur(14px);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  flex: 0 0 auto;
}

.brand-emblem {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: "Songti SC", STSong, serif;
  font-size: 20px;
  line-height: 1;
}

.brand-name,
.footer-brand > span:last-child {
  display: flex;
  flex-direction: column;
  font-family: "Songti SC", STSong, serif;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.15;
}

.brand-name small,
.footer-brand small {
  margin-top: 4px;
  font-family: Arial, sans-serif;
  font-size: 9px;
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  font-size: 14px;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  white-space: nowrap;
}

.site-nav a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.nav-cta {
  padding: 9px 18px;
  color: var(--forest-deep);
  background: var(--white);
  border-radius: 4px;
}

.is-scrolled .nav-cta {
  color: var(--white);
  background: var(--forest);
}

.menu-toggle {
  width: 44px;
  height: 44px;
  display: none;
  padding: 0;
  border: 0;
  color: inherit;
  background: transparent;
}

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

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

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

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

.hero {
  position: relative;
  min-height: clamp(620px, calc(100svh - 112px), 760px);
  display: flex;
  align-items: center;
  color: var(--white);
  background: var(--forest-deep);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0 0 0 auto;
  width: 60%;
  background-image: url("/assets/hero-garden.webp");
  background-size: cover;
  background-position: center;
}

.hero-shade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 58%;
  width: 2px;
  background: rgba(255, 255, 255, 0.22);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(610px, calc(100% - 48px));
  margin-left: max(28px, calc((100vw - var(--max-width)) / 2));
  padding: 126px 0 92px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 15px;
  color: var(--leaf);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: #b8d2bf;
}

.hero h1 {
  margin: 0;
  font-family: "Songti SC", STSong, serif;
  font-size: 78px;
  font-weight: 700;
  line-height: 1.06;
}

.hero-tagline {
  margin: 16px 0 0;
  font-family: "Songti SC", STSong, serif;
  font-size: 33px;
  line-height: 1.42;
}

.hero-copy {
  max-width: 510px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.77);
  font-size: 16px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-light {
  color: var(--forest-deep);
  background: var(--white);
}

.button-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.65);
  background: transparent;
}

.hero-facts {
  position: absolute;
  z-index: 3;
  right: max(28px, calc((100vw - var(--max-width)) / 2));
  bottom: 34px;
  display: flex;
  gap: 1px;
  color: var(--forest-deep);
  background: rgba(255, 255, 255, 0.9);
}

.hero-facts div {
  width: 118px;
  min-height: 82px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 12px 16px;
  border-right: 1px solid rgba(23, 60, 42, 0.14);
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts strong {
  font-family: Georgia, serif;
  font-size: 25px;
  line-height: 1.1;
}

.hero-facts span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
}

.intro-band {
  min-height: 118px;
  display: grid;
  place-items: center;
  padding: 30px 24px;
  color: var(--forest-deep);
  background: var(--mint);
}

.intro-band p {
  margin: 0;
  font-family: "Songti SC", STSong, serif;
  font-size: 24px;
  text-align: center;
}

.section {
  padding: 112px max(28px, calc((100vw - var(--max-width)) / 2));
}

.section-muted {
  background: var(--paper);
}

.section-dark {
  color: var(--white);
  background: #18221d;
}

.section-grid,
.section-heading,
.model-layout,
.contact-layout {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.86fr);
  gap: 94px;
  align-items: center;
}

.section h2,
.contact h2 {
  margin: 0;
  font-family: "Songti SC", STSong, serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.28;
}

.section-lead,
.model-lead {
  margin: 28px 0 0;
  font-size: 19px;
  line-height: 1.9;
}

.story-copy > p:not(.section-kicker, .section-lead) {
  margin: 18px 0 0;
  color: var(--muted);
}

.story-image {
  margin: 0;
}

.story-image img {
  width: 100%;
  aspect-ratio: 5 / 5.4;
  object-fit: cover;
}

.story-image figcaption,
.store-display figcaption,
.quality-gallery figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.origin-list {
  margin: 34px 0 0;
  border-top: 1px solid var(--line);
}

.origin-list div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.origin-list dt {
  font-weight: 700;
}

.origin-list dd {
  margin: 0;
  color: var(--muted);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.65fr);
  gap: 70px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading > p {
  margin: 0 0 5px;
  color: var(--muted);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.65);
}

.section-kicker-light {
  color: #a8c6ad;
}

.product-tabs {
  width: 100%;
  max-width: var(--max-width);
  display: flex;
  gap: 0;
  margin: 0 auto 34px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.product-tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  min-width: 98px;
  min-height: 44px;
  padding: 8px 18px;
  border: 0;
  border-bottom: 3px solid transparent;
  color: var(--muted);
  background: transparent;
  cursor: pointer;
  white-space: nowrap;
}

.tab.is-active {
  color: var(--forest-deep);
  border-bottom-color: var(--forest);
  font-weight: 700;
}

.product-grid {
  width: 100%;
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin: 0 auto;
}

.product-card {
  min-width: 0;
  overflow: hidden;
  background: var(--white);
  border: 1px solid #e3e7e4;
  border-radius: 6px;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 40px rgba(20, 48, 34, 0.1);
}

.product-card[hidden] {
  display: none;
}

.product-card > img {
  width: 100%;
  aspect-ratio: 4 / 4.25;
  object-fit: cover;
}

.product-card-wide {
  grid-column: span 2;
}

.product-card-wide > img {
  aspect-ratio: 2 / 1.04;
}

.product-body {
  min-height: 184px;
  padding: 22px;
}

.product-body span,
.product-body small {
  display: block;
  color: var(--leaf);
  font-size: 12px;
  font-weight: 700;
}

.product-body h3 {
  margin: 7px 0 8px;
  font-family: "Songti SC", STSong, serif;
  font-size: 23px;
  line-height: 1.35;
}

.product-body p {
  min-height: 48px;
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
}

.product-body small {
  color: #8a918d;
  font-weight: 500;
}

.model {
  padding-top: 0;
  padding-bottom: 0;
  color: var(--white);
  background: var(--forest-deep);
}

.model-layout {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  align-items: center;
  gap: 80px;
}

.model-copy {
  padding: 90px 0;
}

.model-copy h2 {
  font-size: 58px;
}

.model-lead {
  max-width: 600px;
  color: rgba(255, 255, 255, 0.7);
}

.model-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 38px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.model-points div {
  padding: 20px 20px 20px 0;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.model-points div + div {
  padding-left: 20px;
}

.model-points div:last-child {
  border-right: 0;
}

.model-points strong,
.model-points span {
  display: block;
}

.model-points strong {
  font-family: Georgia, serif;
  font-size: 24px;
}

.model-points span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
}

.machine-visual {
  align-self: end;
  margin: 0;
}

.machine-visual img {
  width: 100%;
  max-height: 680px;
  object-fit: cover;
  object-position: center 20%;
}

.advantage-list {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin: 0 auto 72px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.advantage-list article {
  min-height: 250px;
  padding: 34px 42px 34px 0;
  border-right: 1px solid var(--line);
}

.advantage-list article + article {
  padding-left: 42px;
}

.advantage-list article:last-child {
  border-right: 0;
}

.advantage-list span {
  color: var(--berry);
  font-family: Georgia, serif;
  font-size: 13px;
}

.advantage-list h3 {
  margin: 35px 0 10px;
  font-family: "Songti SC", STSong, serif;
  font-size: 25px;
}

.advantage-list p {
  margin: 0;
  color: var(--muted);
}

.store-display {
  max-width: var(--max-width);
  margin: 0 auto;
}

.store-display img {
  width: 100%;
  aspect-ratio: 2.34 / 1;
  object-fit: cover;
}

.scene-grid {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0 auto;
}

.scene {
  position: relative;
  min-height: 310px;
  margin: 0;
  overflow: hidden;
}

.scene-large,
.scene-wide {
  grid-column: span 2;
}

.scene img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) brightness(0.78);
  transition: transform 400ms ease, filter 300ms ease;
}

.scene:hover img {
  transform: scale(1.025);
  filter: saturate(1) brightness(0.9);
}

.scene figcaption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  color: var(--white);
}

.scene figcaption strong {
  font-family: "Songti SC", STSong, serif;
  font-size: 24px;
}

.scene figcaption span {
  font-size: 12px;
  text-align: right;
}

.quality-gallery {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin: 0 auto 80px;
}

.quality-gallery figure {
  margin: 0;
}

.quality-gallery img {
  width: 100%;
  aspect-ratio: 1.7 / 1;
  object-fit: cover;
  border: 1px solid var(--line);
}

.recommendation {
  max-width: var(--max-width);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 74px;
  align-items: center;
  margin: 0 auto;
  padding-top: 70px;
  border-top: 1px solid var(--line);
}

.recommendation img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  object-position: center 35%;
}

.recommendation h3 {
  margin: 0 0 18px;
  font-family: "Songti SC", STSong, serif;
  font-size: 38px;
  line-height: 1.35;
}

.recommendation p:last-child {
  color: var(--muted);
}

.contact {
  color: var(--white);
  background: var(--tea);
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 96px;
  align-items: start;
}

.contact-copy > p:not(.section-kicker) {
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.72);
}

.contact-copy ul {
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.contact-copy li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.inquiry-form {
  display: grid;
  gap: 18px;
  padding: 36px;
  color: var(--ink);
  background: var(--white);
  border-radius: 6px;
}

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

.inquiry-form label {
  display: grid;
  gap: 7px;
  font-size: 13px;
  font-weight: 700;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #c9d0cb;
  border-radius: 3px;
  color: var(--ink);
  background: var(--white);
  font-size: 15px;
}

.inquiry-form textarea {
  min-height: 116px;
  resize: vertical;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--forest);
  outline: 2px solid rgba(63, 111, 74, 0.18);
}

.button-submit {
  color: var(--white);
  background: var(--forest-deep);
}

.button-submit:disabled {
  cursor: wait;
  opacity: 0.65;
  transform: none;
}

.form-consent,
.form-status {
  margin: -5px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--forest);
  font-weight: 700;
}

.form-status.is-error {
  color: #9b3030;
}

.honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.site-footer {
  min-height: 210px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 50px max(28px, calc((100vw - var(--max-width)) / 2));
  color: rgba(255, 255, 255, 0.74);
  background: #111713;
}

.site-footer > p {
  margin: 0;
  text-align: center;
}

.footer-brand {
  color: var(--white);
}

.copyright {
  text-align: right !important;
  font-size: 12px;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 1080px) {
  .site-nav {
    gap: 20px;
  }

  .hero-media {
    width: 52%;
  }

  .hero-shade {
    left: 50%;
  }

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

  .story-grid,
  .contact-layout {
    gap: 56px;
  }
}

@media (max-width: 860px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    bottom: 0;
    width: min(360px, 88vw);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 24px;
    color: var(--forest-deep);
    background: var(--white);
    box-shadow: -18px 20px 40px rgba(0, 0, 0, 0.2);
    transform: translateX(105%);
    transition: transform 220ms ease;
  }

  .site-nav.is-open {
    transform: translateX(0);
  }

  .site-nav a {
    padding: 15px 4px;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin-top: 18px;
    padding: 13px 18px;
    color: var(--white);
    background: var(--forest);
    border: 0;
    text-align: center;
  }

  .hero {
    min-height: 680px;
  }

  .hero-media {
    inset: 0;
    width: 100%;
    opacity: 0.34;
    background-position: center;
  }

  .hero-shade {
    inset: 0;
    width: auto;
    background: rgba(9, 34, 22, 0.3);
  }

  .hero-content {
    width: calc(100% - 40px);
    margin: 0 20px;
    padding: 120px 0 126px;
  }

  .hero-facts {
    right: 20px;
    bottom: 20px;
  }

  .story-grid,
  .model-layout,
  .contact-layout,
  .recommendation {
    grid-template-columns: 1fr;
  }

  .story-grid {
    gap: 48px;
  }

  .story-image img {
    max-height: 620px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .model-layout {
    gap: 0;
  }

  .model-copy {
    padding-bottom: 30px;
  }

  .machine-visual {
    width: min(620px, 100%);
    justify-self: center;
  }

  .advantage-list {
    grid-template-columns: 1fr;
  }

  .advantage-list article,
  .advantage-list article + article {
    min-height: auto;
    padding: 28px 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .advantage-list article:last-child {
    border-bottom: 0;
  }

  .advantage-list h3 {
    margin-top: 14px;
  }

  .scene-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quality-gallery {
    grid-template-columns: 1fr;
  }

  .recommendation {
    gap: 36px;
  }

  .contact-layout {
    gap: 50px;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .copyright {
    text-align: center !important;
  }
}

@media (max-width: 600px) {
  .brand-name {
    font-size: 17px;
  }

  .hero {
    min-height: 650px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-tagline {
    font-size: 26px;
  }

  .hero-copy {
    font-size: 14px;
  }

  .hero-facts {
    left: 20px;
    right: 20px;
  }

  .hero-facts div {
    width: 33.333%;
    min-height: 72px;
    padding: 10px 12px;
  }

  .hero-facts strong {
    font-size: 21px;
  }

  .intro-band p {
    font-size: 19px;
  }

  .section {
    padding: 82px 20px;
  }

  .section h2,
  .contact h2 {
    font-size: 37px;
  }

  .section-lead,
  .model-lead {
    font-size: 17px;
  }

  .origin-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card-wide {
    grid-column: span 1;
  }

  .product-card > img,
  .product-card-wide > img {
    aspect-ratio: 4 / 3;
  }

  .product-body {
    min-height: auto;
  }

  .product-body p {
    min-height: auto;
  }

  .model {
    padding: 0 20px;
  }

  .model-copy h2 {
    font-size: 45px;
  }

  .model-points {
    grid-template-columns: 1fr;
  }

  .model-points div,
  .model-points div + div {
    padding: 15px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .model-points div:last-child {
    border-bottom: 0;
  }

  .scene-grid {
    grid-template-columns: 1fr;
  }

  .scene,
  .scene-large,
  .scene-wide {
    min-height: 270px;
    grid-column: span 1;
  }

  .quality-gallery {
    gap: 36px;
  }

  .recommendation {
    padding-top: 48px;
  }

  .recommendation h3 {
    font-size: 31px;
  }

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

  .inquiry-form {
    padding: 24px 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::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;
  }
}
