/* Invitacion digital: Hipolito | Mis 50 anos */
:root {
  --ink: #081625;
  --ink-2: #102335;
  --ink-3: #182e42;
  --ivory: #faf6ed;
  --paper: #fffdf8;
  --champagne: #e9cb72;
  --gold: #c99c35;
  --bronze: #8c6420;
  --text: #fbf8f0;
  --muted: #c7d1da;
  --paper-text: #172434;
  --paper-muted: #5e6874;
  --line: rgba(233, 203, 114, 0.48);
  --line-soft: rgba(233, 203, 114, 0.2);
  --shadow: 0 28px 70px rgba(7, 18, 31, 0.22);
  --radius-lg: 16px;
  --radius-md: 14px;
  --max: 1040px;
  --mobile-gutter: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id],
main[id] {
  scroll-margin-top: 16px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--ink);
  font-family: "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  text-rendering: optimizeLegibility;
  font-synthesis-weight: none;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255,255,255,0.028) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0,0,0,0.6), rgba(0,0,0,0.12));
}

a {
  color: inherit;
  touch-action: manipulation;
}

svg {
  display: block;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 30;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--paper);
  color: var(--ink);
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 180ms ease;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 3px solid var(--champagne);
  outline-offset: 3px;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 25;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--champagne));
  transform: scaleX(var(--scroll-progress, 0));
  transform-origin: left center;
}

.texture {
  pointer-events: none;
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0.12;
  background-image:
    radial-gradient(rgba(255,255,255,0.22) 0.55px, transparent 0.55px),
    linear-gradient(135deg, transparent 0 49%, rgba(233,203,114,0.2) 49.5%, transparent 50.5%);
  background-size: 20px 20px, 180px 180px;
  mix-blend-mode: overlay;
}

.section {
  position: relative;
  z-index: 2;
  display: grid;
  align-content: center;
  place-items: center;
  row-gap: 34px;
  min-height: 88svh;
  padding: 76px 18px;
  overflow: hidden;
}

.hero {
  min-height: 100svh;
  padding: 48px 28px 94px;
  background:
    linear-gradient(155deg, rgba(233,203,114,0.12), transparent 26%),
    linear-gradient(200deg, rgba(255,255,255,0.08), transparent 32%),
    linear-gradient(145deg, var(--ink), var(--ink-2) 58%, #0b1723);
}

.hero:not(.closing)::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 13, 23, 0.1) 0%, rgba(4, 13, 23, 0.16) 38%, rgba(4, 13, 23, 0.88) 82%, #071522 100%),
    linear-gradient(90deg, rgba(4, 13, 23, 0.28), transparent 72%);
}

.hero-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  transform: none;
}

.hero::after,
.navy::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,203,114,0.5), transparent);
}

.hero-frame {
  position: absolute;
  inset: 18px;
  z-index: 2;
  border: 1px solid var(--line);
  border-radius: 18px;
  pointer-events: none;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 13px;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
}

.hero-frame::after {
  inset: auto 28px 28px;
  height: 1px;
  border: 0;
  background: linear-gradient(90deg, transparent, var(--champagne), transparent);
}

.corner-mark {
  position: absolute;
  z-index: 2;
  width: 48px;
  height: 48px;
  pointer-events: none;
  opacity: 0.58;
}

.corner-mark::before,
.corner-mark::after {
  content: "";
  position: absolute;
  background: rgba(233,203,114,0.55);
}

.corner-mark::before {
  width: 100%;
  height: 1px;
}

.corner-mark::after {
  width: 1px;
  height: 100%;
}

.corner-mark.top-left {
  top: 42px;
  left: 42px;
}

.corner-mark.top-left::before,
.corner-mark.top-left::after {
  top: 0;
  left: 0;
}

.corner-mark.bottom-right {
  right: 42px;
  bottom: 42px;
}

.corner-mark.bottom-right::before,
.corner-mark.bottom-right::after {
  right: 0;
  bottom: 0;
}

.hero-content,
.closing-content {
  position: relative;
  z-index: 3;
  width: min(100%, 760px);
  display: grid;
  justify-items: center;
  text-align: center;
}

#inicio .hero-content {
  align-self: end;
  width: min(100%, 620px);
}

#inicio {
  align-content: end;
}

.anniversary-mark {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin-bottom: 12px;
  border: 1px solid rgba(233,203,114,0.66);
  border-radius: 999px;
  color: var(--champagne);
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.7rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: inset 0 0 0 10px rgba(233,203,114,0.04), 0 24px 60px rgba(0,0,0,0.18);
}

.name {
  margin: 0;
  color: var(--champagne);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 4.75rem;
  font-weight: 700;
  line-height: 0.84;
  text-align: center;
  text-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
  text-wrap: balance;
}

.subtitle,
.section-title,
.closing-title {
  margin: 18px 0 0;
  color: var(--text);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1.72rem;
  font-weight: 700;
  line-height: 1.12;
  text-align: center;
  letter-spacing: 0;
  text-wrap: balance;
}

.date {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 14px;
  margin: 16px 0 0;
  color: #f4f6f8;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.45;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.date time + time::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  margin: 0 12px 2px 0;
  border-radius: 999px;
  background: var(--champagne);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 28px;
  width: min(100%, 480px);
}

.primary-button,
.secondary-button,
.maps-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 14px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.primary-button {
  min-width: 168px;
  padding: 15px 24px;
  background: linear-gradient(135deg, var(--champagne), #f6df92 50%, var(--gold));
  color: var(--ink);
  box-shadow: 0 18px 42px rgba(0,0,0,0.22), 0 10px 30px rgba(201,156,53,0.18);
}

.secondary-button,
.maps-button {
  border: 1px solid rgba(233,203,114,0.48);
  background: rgba(255,255,255,0.08);
  color: var(--text);
}

.secondary-button {
  min-width: 168px;
  padding: 14px 20px;
}

.maps-button {
  width: min(100%, 430px);
  padding: 15px 22px;
  background: linear-gradient(145deg, var(--ink), var(--ink-3));
  color: var(--champagne);
  box-shadow: 0 22px 48px rgba(7, 18, 31, 0.2);
}

.secondary-button svg,
.maps-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.primary-button:hover,
.secondary-button:hover,
.maps-button:hover {
  transform: translateY(-2px);
}

.primary-button:active,
.secondary-button:active,
.maps-button:active {
  transform: translateY(0) scale(0.98);
}

.primary-button:hover {
  box-shadow: 0 22px 54px rgba(0,0,0,0.26), 0 10px 34px rgba(201,156,53,0.26);
}

.secondary-button:hover,
.maps-button:hover {
  border-color: rgba(233,203,114,0.78);
  background: rgba(255,255,255,0.12);
}

.primary-button:focus-visible,
.secondary-button:focus-visible,
.maps-button:focus-visible,
.floating-nav a:focus-visible {
  outline: 3px solid var(--champagne);
  outline-offset: 4px;
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 26px;
  z-index: 3;
  display: grid;
  gap: 9px;
  justify-items: center;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.72);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 34px;
  background: linear-gradient(180deg, var(--champagne), transparent);
  transform-origin: top center;
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { transform: scaleY(0.45); opacity: 0.45; }
  50% { transform: scaleY(1); opacity: 1; }
}

.light {
  background:
    linear-gradient(180deg, var(--paper), var(--ivory));
  color: var(--paper-text);
}

.navy {
  background:
    linear-gradient(155deg, rgba(233,203,114,0.1), transparent 25%),
    linear-gradient(145deg, var(--ink), #0f2233 62%, #091523);
}

.photo-section {
  min-height: auto;
  padding-top: 66px;
  padding-bottom: 82px;
  background:
    linear-gradient(180deg, #0b1723, var(--ink) 58%, #101e2c);
}

.photo-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent, rgba(233,203,114,0.18), transparent),
    radial-gradient(circle at 50% 0%, rgba(233,203,114,0.12), transparent 42%);
  opacity: 0.75;
}

.photo-section .section-heading,
.photo-grid {
  position: relative;
  z-index: 1;
}

.photo-section .eyebrow {
  color: var(--champagne);
}

.photo-grid {
  width: min(100%, 1080px);
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.photo-frame {
  margin: 0;
  padding: 8px;
  border: 1px solid rgba(233,203,114,0.52);
  border-radius: 16px;
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.025));
  box-shadow: 0 22px 58px rgba(0,0,0,0.22);
}

.photo-placeholder {
  min-height: 0;
  aspect-ratio: 4 / 5;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px;
  background:
    linear-gradient(145deg, rgba(8,22,37,0.8), rgba(24,46,66,0.55)),
    linear-gradient(90deg, rgba(233,203,114,0.16) 1px, transparent 1px),
    linear-gradient(180deg, rgba(233,203,114,0.12) 1px, transparent 1px);
  background-size: auto, 24px 24px, 24px 24px;
  color: rgba(233,203,114,0.86);
  font-family: "Cinzel", Georgia, serif;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
}

.photo-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  border-radius: 10px;
}

.section-inner,
.location-card,
.gold-frame {
  width: min(100%, var(--max));
}

.message-panel {
  position: relative;
  max-width: 840px;
  padding: 40px 22px;
  text-align: center;
}

.message-panel::before,
.message-panel::after {
  content: "";
  display: block;
  width: min(260px, 62vw);
  height: 1px;
  margin: 0 auto 30px;
  background: linear-gradient(90deg, transparent, rgba(140,100,32,0.76), transparent);
}

.message-panel::after {
  margin: 30px auto 0;
}

.eyebrow {
  margin: 0 0 15px;
  color: var(--bronze);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.5;
  text-transform: uppercase;
  text-align: center;
}

.hero .eyebrow,
.navy .eyebrow,
.closing .eyebrow {
  color: var(--champagne);
}

.message-panel h2,
.location-card h2,
.gold-frame h2 {
  margin: 0 0 20px;
  font-family: "Cinzel", Georgia, serif;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.04;
  text-align: center;
  text-wrap: balance;
}

.message-panel p,
.location-card p,
.gold-frame p,
.closing-text {
  margin: 0 auto 18px;
  max-width: 650px;
  font-size: 1rem;
  line-height: 1.78;
  text-align: center;
}

.message-panel p:last-child,
.gold-frame p:last-child {
  margin-bottom: 0;
}

.section-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 0;
}

.section-heading .section-title {
  margin-top: 0;
}

.detail-grid {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.045);
}

.detail-card {
  position: relative;
  min-height: 214px;
  padding: 30px 20px 28px;
  border-right: 1px solid var(--line-soft);
  text-align: center;
}

.detail-card:last-child {
  border-right: 0;
}

.detail-card::before {
  content: "";
  position: absolute;
  top: 14px;
  left: 14px;
  right: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(233,203,114,0.46), transparent);
}

.icon {
  width: 32px;
  height: 32px;
  margin: 0 auto 16px;
  color: var(--champagne);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.detail-card h3 {
  margin: 0 0 12px;
  color: var(--champagne);
  font-family: "Cinzel", Georgia, serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: uppercase;
}

.detail-card p {
  margin: 0;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.6;
  font-variant-numeric: tabular-nums;
}

.location-card {
  max-width: 820px;
  padding: 34px 22px;
  border-top: 1px solid rgba(140,100,32,0.34);
  border-bottom: 1px solid rgba(140,100,32,0.34);
  text-align: center;
}

.address {
  display: block;
  margin-top: 20px !important;
  color: var(--paper-muted);
  font-size: 0.92rem !important;
  font-style: normal;
  line-height: 1.55 !important;
}

.gold-frame {
  max-width: 840px;
  padding: 44px 22px;
  border: 1px solid rgba(233,203,114,0.62);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.08), rgba(255,255,255,0.035));
  box-shadow: inset 0 0 0 10px rgba(233,203,114,0.035), 0 25px 70px rgba(0,0,0,0.22);
  text-align: center;
}

.gold-frame h2 {
  color: var(--champagne);
  font-size: 3.7rem;
}

.closing {
  min-height: 92svh;
}

.closing .closing-title {
  color: var(--champagne);
  font-size: 3.45rem;
  line-height: 0.98;
}

.closing-text {
  color: var(--muted);
}

.floating-nav {
  position: fixed;
  right: 13px;
  top: 50%;
  z-index: 15;
  display: grid;
  gap: 0;
  transform: translateY(-50%);
}

.floating-nav a {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  text-decoration: none;
}

.floating-nav a::before {
  content: "";
  width: 9px;
  height: 9px;
  border: 1px solid rgba(233,203,114,0.78);
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.floating-nav a.active::before {
  background: var(--champagne);
  border-color: var(--champagne);
  transform: scale(1.5);
}

.js .reveal {
  opacity: 0;
  transform: translate3d(0, 28px, 0);
  transition: opacity 760ms ease, transform 760ms cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--delay, 0ms);
  will-change: opacity, transform;
}

.js .reveal.visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  will-change: auto;
}

.delay-1 { --delay: 90ms; }
.delay-2 { --delay: 180ms; }
.delay-3 { --delay: 270ms; }
.delay-4 { --delay: 360ms; }
.delay-5 { --delay: 450ms; }
.delay-6 { --delay: 540ms; }

@media (min-width: 720px) {
  .section {
    padding: 92px 34px;
  }

  .hero {
    padding: 62px 34px 92px;
  }

  #inicio {
    align-content: center;
  }

  #inicio .hero-content {
    align-self: center;
    justify-items: start;
    width: min(46vw, 560px);
    margin-right: auto;
    margin-left: clamp(54px, 8vw, 138px);
    text-align: left;
  }

  #inicio .date {
    justify-content: flex-start;
  }

  #inicio .hero-photo {
    object-position: 50% 42%;
    transform: none;
  }

  #inicio::before {
    background:
      linear-gradient(180deg, rgba(4, 13, 23, 0.05), rgba(4, 13, 23, 0.08) 58%, rgba(4, 13, 23, 0.58)),
      linear-gradient(90deg, rgba(4, 13, 23, 0.72), rgba(4, 13, 23, 0.48) 38%, rgba(4, 13, 23, 0.08) 72%);
  }

  .hero-frame {
    inset: 30px;
    border-radius: 20px;
  }

  .anniversary-mark {
    width: 108px;
    height: 108px;
    font-size: 3.35rem;
  }

  .name {
    font-size: 6.7rem;
  }

  .subtitle,
  .section-title {
    font-size: 2.55rem;
  }

  .date {
    font-size: 1.08rem;
  }

  .message-panel {
    padding: 62px 40px;
  }

  .photo-section {
    padding-top: 88px;
    padding-bottom: 96px;
  }

  .photo-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
  }

  .photo-frame {
    padding: 10px;
  }

  .message-panel h2,
  .location-card h2,
  .gold-frame h2 {
    font-size: 3.1rem;
  }

  .message-panel p,
  .location-card p,
  .gold-frame p,
  .closing-text {
    font-size: 1.08rem;
  }

  .location-card,
  .gold-frame {
    padding: 58px 54px;
  }

  .gold-frame h2 {
    font-size: 5.3rem;
  }

  .closing .closing-title {
    font-size: 5.2rem;
  }

}

@media (min-width: 1060px) {
  .anniversary-mark {
    width: 116px;
    height: 116px;
    font-size: 3.7rem;
  }

  .name {
    font-size: 7.4rem;
  }

  .subtitle,
  .section-title {
    font-size: 3rem;
  }

  .message-panel h2,
  .location-card h2,
  .gold-frame h2 {
    font-size: 3.65rem;
  }
}

@media (max-width: 719px) {
  .section {
    padding-left: var(--mobile-gutter);
    padding-right: var(--mobile-gutter);
    row-gap: 22px;
  }

  .hero {
    min-height: 100svh;
    padding: 36px 24px 96px;
  }

  #inicio .hero-content {
    width: min(100%, 420px);
  }

  .section-heading {
    margin-bottom: 24px;
  }

  .section-title {
    font-size: 2rem;
  }

  .message-panel {
    padding: 36px 8px;
  }

  .message-panel h2,
  .location-card h2 {
    font-size: 2.05rem;
  }

  .message-panel p,
  .location-card p,
  .gold-frame p,
  .closing-text {
    line-height: 1.65;
  }

  .photo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .photo-frame {
    padding: 6px;
  }

  .photo-placeholder {
    aspect-ratio: 3 / 4;
    font-size: 0.72rem;
  }

  .photo-frame img {
    aspect-ratio: 3 / 4;
  }

  .photo-section .section-title {
    max-width: 10ch;
    font-size: 1.9rem;
  }

  .date {
    display: grid;
  }

  .date time + time::before {
    display: none;
  }

  .hero-actions {
    display: grid;
  }

  .primary-button,
  .secondary-button,
  .maps-button {
    width: 100%;
  }

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

  .detail-card {
    min-height: 0;
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 14px;
    align-items: center;
    padding: 16px;
    border-right: 0;
    border-bottom: 1px solid var(--line-soft);
    text-align: left;
  }

  .detail-card:last-child {
    border-bottom: 0;
  }

  .detail-card::before {
    display: none;
  }

  .detail-card .icon {
    width: 30px;
    height: 30px;
    margin: 0;
    grid-row: span 2;
    justify-self: center;
  }

  .detail-card h3 {
    margin: 0 0 4px;
    font-size: 0.86rem;
  }

  .detail-card p {
    font-size: 0.98rem;
    line-height: 1.45;
  }

  .location-card,
  .gold-frame {
    padding: 30px 18px;
  }

  .maps-button {
    padding-left: 14px;
    padding-right: 14px;
    font-size: 0.86rem;
  }

  .floating-nav {
    top: auto;
    right: auto;
    bottom: calc(12px + env(safe-area-inset-bottom, 0px));
    left: 50%;
    display: flex;
    padding: 3px 6px;
    border: 1px solid rgba(233,203,114,0.2);
    border-radius: 999px;
    background: rgba(8,22,37,0.76);
    backdrop-filter: blur(12px);
    transform: translateX(-50%);
  }

  .floating-nav a {
    width: 38px;
    height: 38px;
  }

}

@media (max-width: 380px) {
  .name {
    font-size: 3.86rem;
  }

  .anniversary-mark {
    width: 78px;
    height: 78px;
    font-size: 2.35rem;
  }

  .subtitle {
    font-size: 1.52rem;
  }

  .gold-frame h2,
  .closing .closing-title {
    font-size: 3.15rem;
  }
}

@media (max-width: 340px) {
  :root {
    --mobile-gutter: 14px;
  }

  .hero-frame {
    inset: 12px;
  }

  .name {
    font-size: 3.45rem;
  }

  .closing .closing-title {
    font-size: 2.9rem;
  }

  .floating-nav a {
    width: 36px;
    height: 36px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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