:root {
  --eucalyptus: #35584d;
  --sage: #8fa68e;
  --sand: #e8ddc9;
  --rose: #c89493;
  --paper: #f8f3ea;
  --ink: #24322d;
  --muted: #66736d;
  --white: #fffdf9;
  --line: rgba(53, 88, 77, 0.18);
  --shadow: 0 24px 70px rgba(36, 50, 45, 0.16);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.65;
}

body.menu-open,
body.dialog-open {
  overflow: hidden;
}

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

button,
input,
textarea {
  font: inherit;
}

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

a {
  color: inherit;
}

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

h1,
h2,
h3,
.signature,
.wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
}

h2 {
  margin-bottom: 1rem;
  font-size: clamp(2.35rem, 6vw, 5.3rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
}

h3 {
  margin-bottom: 0.7rem;
  font-size: clamp(1.45rem, 3vw, 2.25rem);
  line-height: 1.13;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  left: 1rem;
  top: -10rem;
  padding: 0.8rem 1rem;
  color: var(--white);
  background: var(--ink);
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 82px;
  padding: 0 4vw;
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(248, 243, 234, 0.96);
  border-bottom-color: var(--line);
  box-shadow: 0 8px 30px rgba(36, 50, 45, 0.08);
}

.wordmark {
  font-size: 1.55rem;
  text-decoration: none;
  letter-spacing: 0.06em;
}

.wordmark span,
.signature span {
  color: var(--rose);
  font-style: italic;
}

nav {
  display: flex;
  gap: clamp(0.8rem, 2vw, 2rem);
}

nav a {
  position: relative;
  font-size: 0.78rem;
  font-weight: 650;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

nav a::after {
  content: "";
  position: absolute;
  inset: auto 0 -0.45rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

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

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

.menu-button span:not(.sr-only) {
  display: block;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
}

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--eucalyptus);
}

.hero-photo,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-photo {
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
}

.hero-shade {
  background: rgba(24, 39, 34, 0.48);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(1120px, 90vw);
  padding: 8rem 0 5rem;
  text-align: center;
}

.hero h1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(0.5rem, 2vw, 2rem);
  margin: 0 0 1.1rem;
  font-size: clamp(4.1rem, 13vw, 10.5rem);
  line-height: 0.82;
  letter-spacing: -0.075em;
}

.hero h1 i {
  color: #efd0ce;
  font-size: 0.55em;
  font-weight: 400;
}

.hero-date {
  margin-bottom: 2rem;
  font-size: clamp(1rem, 2vw, 1.25rem);
  font-weight: 650;
  letter-spacing: 0.48em;
}

.eyebrow {
  margin-bottom: 0.85rem;
  color: var(--eucalyptus);
  font-size: 0.72rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.eyebrow.light,
.light .eyebrow {
  color: #efd0ce;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 0.78rem 1.4rem;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 0.76rem;
  font-weight: 750;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

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

.button-primary {
  color: var(--white);
  background: var(--eucalyptus);
}

.button-secondary,
.button-outline {
  color: var(--eucalyptus);
  border-color: var(--eucalyptus);
  background: transparent;
}

.scroll-hint {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 2rem;
  display: flex;
  gap: 0.8rem;
  align-items: center;
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.scroll-hint span {
  font-size: 1.3rem;
}

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

.section-inner {
  width: min(1180px, 88vw);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 9rem) 0;
}

.centered,
.section-heading {
  text-align: center;
}

.section-heading {
  width: min(760px, 100%);
  margin: 0 auto clamp(3rem, 6vw, 5rem);
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.07rem;
}

.section-heading.light,
.section-heading.light > p:last-child {
  color: var(--white);
}

.countdown-section {
  position: relative;
  overflow: hidden;
}

.countdown-section::before,
.countdown-section::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  border: 1px solid var(--line);
  transform: rotate(45deg);
}

.countdown-section::before {
  top: 3rem;
  left: -85px;
}

.countdown-section::after {
  right: -85px;
  bottom: 3rem;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(90px, 1fr));
  width: min(850px, 100%);
  margin: 3rem auto 2rem;
  border-block: 1px solid var(--line);
}

.countdown div {
  padding: clamp(1.3rem, 4vw, 2.4rem) 0.7rem;
}

.countdown div + div {
  border-left: 1px solid var(--line);
}

.countdown strong,
.countdown span {
  display: block;
}

.countdown strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.4rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
}

.countdown span {
  margin-top: 0.8rem;
  color: var(--muted);
  font-size: 0.62rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.date-note {
  color: var(--muted);
}

.palette {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}

.swatch {
  display: grid;
  width: clamp(72px, 10vw, 112px);
  aspect-ratio: 1;
  place-items: end center;
  padding: 0.5rem;
  color: transparent;
  border: 5px solid var(--paper);
  border-radius: 50%;
  box-shadow: 0 0 0 1px var(--line);
}

.swatch + .swatch {
  margin-left: -14px;
}

.swatch:hover b,
.swatch:focus-within b {
  color: var(--white);
}

.swatch b {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.swatch.eucalyptus { background: var(--eucalyptus); }
.swatch.sage { background: var(--sage); }
.swatch.sand { background: var(--sand); }
.swatch.rose { background: var(--rose); }

.gallery-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  min-height: 760px;
  color: var(--white);
  background: var(--eucalyptus);
}

.gallery-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem);
}

.gallery-copy h2 {
  max-width: 600px;
}

.gallery-copy > p:last-child {
  max-width: 510px;
  color: rgba(255, 255, 255, 0.76);
}

.carousel {
  position: relative;
  min-height: 650px;
  overflow: hidden;
}

.carousel-track,
.slide,
.slide img {
  width: 100%;
  height: 100%;
}

.slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transform: scale(1.025);
  transition: opacity 700ms ease, visibility 700ms ease, transform 1200ms ease;
}

.slide.is-active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.slide img {
  object-fit: cover;
}

.slide figcaption {
  position: absolute;
  left: 2rem;
  bottom: 2rem;
  padding: 0.45rem 0.8rem;
  color: var(--white);
  background: rgba(36, 50, 45, 0.66);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.carousel-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  width: 52px;
  height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 50%;
  color: var(--white);
  background: rgba(36, 50, 45, 0.28);
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-button.previous { left: 1.5rem; }
.carousel-button.next { right: 1.5rem; }

.carousel-dots {
  position: absolute;
  z-index: 3;
  right: 2rem;
  bottom: 2.3rem;
  display: flex;
  gap: 0.5rem;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border: 1px solid var(--white);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.carousel-dots button.is-active {
  background: var(--white);
}

.location-grid,
.wishlist-grid,
.hotel-grid {
  display: grid;
  gap: 1.5rem;
}

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

.location-card {
  position: relative;
  min-height: 390px;
  padding: clamp(2rem, 5vw, 4rem);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--white);
}

.location-card .number {
  position: absolute;
  right: 1rem;
  top: -1.9rem;
  color: rgba(53, 88, 77, 0.08);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 10rem;
  line-height: 1;
}

.location-card h3 {
  position: relative;
  max-width: 430px;
}

.location-time,
address {
  color: var(--muted);
}

address {
  margin-bottom: 2.5rem;
  font-style: normal;
}

.text-link,
.text-button,
.inline-button {
  padding: 0;
  border: 0;
  color: var(--eucalyptus);
  background: transparent;
  cursor: pointer;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.3em;
}

.muted-link,
.disabled-link {
  cursor: default;
  opacity: 0.64;
}

.timeline-section,
.wishlist-section {
  color: var(--white);
  background: var(--eucalyptus);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0;
  margin: 0;
  list-style: none;
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.timeline li {
  min-height: 290px;
  padding: 2rem;
  background: var(--eucalyptus);
}

.timeline-icon {
  display: grid;
  width: 50px;
  height: 50px;
  margin-bottom: 2.2rem;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 50%;
  color: #efd0ce;
  font-family: Georgia, "Times New Roman", serif;
}

.timeline time {
  color: #efd0ce;
  font-size: 0.65rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.timeline h3 {
  margin: 0.45rem 0 0.7rem;
  font-size: 1.75rem;
}

.timeline p {
  color: rgba(255, 255, 255, 0.72);
}

.rsvp-layout {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: clamp(3rem, 7vw, 8rem);
  align-items: start;
}

.rsvp-copy {
  position: sticky;
  top: 120px;
}

.rsvp-copy h2 {
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.privacy-note {
  padding-top: 1.3rem;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.rsvp-form {
  padding: clamp(1.6rem, 4vw, 3.5rem);
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  gap: 1rem;
}

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

label,
legend {
  color: var(--ink);
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.05em;
}

input,
textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.9rem 0;
  border: 0;
  border-bottom: 1px solid rgba(53, 88, 77, 0.34);
  border-radius: 0;
  color: var(--ink);
  background: transparent;
  outline: none;
}

input:focus,
textarea:focus {
  border-bottom-color: var(--eucalyptus);
  box-shadow: 0 1px 0 var(--eucalyptus);
}

textarea {
  resize: vertical;
}

fieldset {
  padding: 1.2rem 0;
  margin: 1.5rem 0;
  border: 0;
  border-block: 1px solid var(--line);
}

.choice-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.8rem;
}

.choice input {
  position: absolute;
  width: 1px;
  opacity: 0;
}

.choice span {
  display: block;
  padding: 0.75rem 1rem;
  border: 1px solid var(--line);
  cursor: pointer;
}

.choice input:checked + span {
  color: var(--white);
  border-color: var(--eucalyptus);
  background: var(--eucalyptus);
}

.consent {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin: 1.5rem 0;
  font-weight: 500;
  line-height: 1.5;
}

.consent input {
  width: 18px;
  height: 18px;
  margin: 0.18rem 0 0;
  accent-color: var(--eucalyptus);
}

.honeypot {
  position: absolute;
  left: -10000px;
}

.form-status {
  min-height: 1.7rem;
  margin: 1rem 0 0;
  font-size: 0.88rem;
}

.form-status.is-error { color: #9e403e; }
.form-status.is-success { color: var(--eucalyptus); font-weight: 700; }

.admin-panel {
  padding-top: 0;
}

.admin-panel summary {
  width: max-content;
  margin-left: auto;
  color: var(--muted);
  cursor: pointer;
  font-size: 0.75rem;
  text-decoration: underline;
}

.admin-login,
.guest-list {
  margin-top: 1.2rem;
  padding: 1.5rem;
  border: 1px solid var(--line);
  background: var(--white);
}

.admin-login form {
  display: flex;
  gap: 1rem;
  align-items: end;
}

.admin-login label {
  flex: 1;
}

.guest-list-heading,
.guest-summary {
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.guest-summary {
  justify-content: flex-start;
  margin-bottom: 1rem;
  color: var(--muted);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.82rem;
}

th,
td {
  min-width: 110px;
  padding: 0.75rem;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

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

.wish-card {
  min-height: 330px;
  padding: clamp(2rem, 4vw, 3rem);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.wish-icon {
  display: block;
  margin-bottom: 4rem;
  color: #efd0ce;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.6rem;
}

.wish-card p {
  color: rgba(255, 255, 255, 0.7);
}

.wish-card .text-link {
  color: #efd0ce;
}

.hotel-card {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--line);
  background: var(--white);
}

.hotel-number {
  color: var(--rose);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.5rem;
  line-height: 1;
}

.hotel-card p:not(.eyebrow) {
  color: var(--muted);
}

.closing-section {
  position: relative;
  display: grid;
  min-height: 780px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.closing-section > img,
.closing-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.closing-section > img {
  object-fit: cover;
}

.closing-shade {
  background: rgba(24, 39, 34, 0.62);
}

.closing-copy {
  position: relative;
  z-index: 1;
  width: min(760px, 86vw);
}

.closing-copy p:not(.eyebrow):not(.signature) {
  max-width: 620px;
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
}

.signature {
  margin-top: 3rem;
  font-size: clamp(2.3rem, 5vw, 4rem);
}

footer {
  padding: 4rem 5vw;
  color: rgba(255, 255, 255, 0.75);
  background: var(--ink);
  text-align: center;
}

.footer-mark {
  display: block;
  margin-bottom: 1.2rem;
  color: var(--white);
  font-size: 2rem;
}

footer p {
  margin-bottom: 0.45rem;
  font-size: 0.84rem;
}

footer .text-button {
  margin-top: 1rem;
  color: #efd0ce;
}

.privacy-dialog {
  width: min(680px, 90vw);
  max-height: min(82vh, 850px);
  padding: clamp(2rem, 5vw, 4rem);
  border: 0;
  color: var(--ink);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.privacy-dialog::backdrop {
  background: rgba(24, 39, 34, 0.72);
}

.privacy-dialog h2 {
  font-size: clamp(2.3rem, 5vw, 3.8rem);
}

.privacy-dialog h3 {
  margin: 2rem 0 0.5rem;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: 750;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.privacy-dialog p {
  color: var(--muted);
}

.dialog-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
  font-size: 2rem;
}

.cookie-banner {
  position: fixed;
  z-index: 500;
  right: 1.5rem;
  bottom: 1.5rem;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  width: min(760px, calc(100vw - 3rem));
  padding: 1.5rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner h2 {
  margin-bottom: 0.45rem;
  font-size: 1.55rem;
  letter-spacing: -0.02em;
}

.cookie-banner p {
  margin-bottom: 0;
  font-size: 0.88rem;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  justify-content: center;
}

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

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

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

  nav {
    position: fixed;
    inset: 82px 0 0;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.4rem;
    color: var(--ink);
    background: var(--paper);
  }

  body.menu-open nav {
    display: flex;
  }

  nav a {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 1.75rem;
    font-weight: 400;
    text-transform: none;
    letter-spacing: 0;
  }

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

  .gallery-copy {
    min-height: 460px;
  }

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

  .rsvp-layout {
    grid-template-columns: 1fr;
  }

  .rsvp-copy {
    position: static;
  }
}

@media (max-width: 720px) {
  .site-header {
    height: 70px;
    padding-inline: 1.2rem;
  }

  nav {
    inset: 70px 0 0;
  }

  .hero h1 {
    flex-direction: column;
    gap: 0.1rem;
    font-size: clamp(4rem, 24vw, 7.5rem);
  }

  .hero h1 i {
    margin: -0.2em 0;
  }

  .hero-date {
    letter-spacing: 0.3em;
  }

  .scroll-hint {
    display: none;
  }

  .section-inner {
    width: min(100% - 2rem, 1180px);
  }

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

  .countdown div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .countdown div:nth-child(4) {
    border-top: 1px solid var(--line);
  }

  .palette {
    flex-wrap: wrap;
  }

  .gallery-copy {
    min-height: 410px;
    padding: 4rem 1.2rem;
  }

  .carousel {
    min-height: 520px;
  }

  .location-grid,
  .hotel-grid,
  .wishlist-grid,
  .two-columns {
    grid-template-columns: 1fr;
  }

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

  .timeline li {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 1rem;
    min-height: 0;
  }

  .timeline-icon {
    margin-bottom: 0;
  }

  .admin-login form {
    flex-direction: column;
    align-items: stretch;
  }

  .cookie-banner {
    right: 0.75rem;
    bottom: 0.75rem;
    grid-template-columns: 1fr;
    width: calc(100vw - 1.5rem);
  }

  .cookie-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cookie-actions .button {
    flex: 1;
  }
}

@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;
  }
}
