/*
  Свадебное приглашение Никиты и Маргариты
  Автор кода: nkv
*/

/* Локальный шрифт Great Vibes — каллиграфический, с поддержкой кириллицы */
@font-face {
  font-family: 'Great Vibes';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('fonts/GreatVibes-CyrillicExt.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Great Vibes';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('fonts/GreatVibes-Cyrillic.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Great Vibes';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('fonts/GreatVibes-Latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* Локальный шрифт Inter — похож на SF Pro, с поддержкой кириллицы */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('fonts/Inter-CyrillicExt.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: block;
  src: url('fonts/Inter-Cyrillic-400.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500 700;
  font-display: block;
  src: url('fonts/Inter-CyrillicExt.woff2') format('woff2');
  unicode-range: U+0460-052F, U+1C80-1C8A, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500 700;
  font-display: block;
  src: url('fonts/Inter-Cyrillic-500plus.woff2') format('woff2');
  unicode-range: U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116;
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 700;
  font-display: block;
  src: url('fonts/Inter-Latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
  color-scheme: light;
  --text: #fdf7f2;
  --text-strong: #fffaf5;
  --radius-xl: 36px;
  --radius-lg: 24px;
  --max-width: 1180px;
}

/* Прелоадер */
.preloader {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a1a1a;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.preloader.is-hidden {
  opacity: 0;
}

.preloader__monogram {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(3rem, 8vw, 5rem);
  color: #f7dce2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  animation: preloaderPulse 1.8s ease-in-out infinite;
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.preloader__monogram.is-changing {
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
}

.preloader__date {
  font-family: 'Inter', sans-serif;
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #f7dce2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  animation: preloaderPulse 1.8s ease-in-out infinite;
  opacity: 0;
  -webkit-transform: scale(0.8);
  transform: scale(0.8);
  transition: opacity 0.4s ease, transform 0.4s ease, -webkit-transform 0.4s ease;
}

.preloader__date.is-visible {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.preloader__amp {
  font-size: 0.7em;
  color: rgba(244, 197, 207, 0.7);
  margin: 0 0.1em;
}

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.6; -webkit-transform: scale(1); transform: scale(1); }
  50% { opacity: 1; -webkit-transform: scale(1.05); transform: scale(1.05); }
}

/* Кнопка «Наверх» */
.back-to-top {
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  transform: translateY(10px);
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease, background-color 0.3s ease;
  pointer-events: none;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.back-to-top:hover {
  background: rgba(255, 255, 255, 0.22);
}

.back-to-top svg {
  width: 20px;
  height: 20px;
}

/* Лепестки */
.petals {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: visible;
  pointer-events: none;
  z-index: 1;
}

.petal {
  position: absolute;
  width: 12px;
  height: 12px;
  top: -20px;
  background: rgba(244, 197, 207, 0.6);
  border-radius: 0 100% 0 100%;
  animation: petalFall linear infinite;
}

.petal--1 { left: 10%; animation-duration: 12s; animation-delay: 0s; }
.petal--2 { left: 25%; animation-duration: 14s; animation-delay: 2s; }
.petal--3 { left: 40%; animation-duration: 10s; animation-delay: 4s; }
.petal--4 { left: 55%; animation-duration: 16s; animation-delay: 1s; }
.petal--5 { left: 70%; animation-duration: 11s; animation-delay: 3s; }
.petal--6 { left: 85%; animation-duration: 13s; animation-delay: 5s; }
.petal--7 { left: 15%; animation-duration: 15s; animation-delay: 6s; width: 8px; height: 8px; }
.petal--8 { left: 60%; animation-duration: 12s; animation-delay: 7s; width: 10px; height: 10px; }

@keyframes petalFall {
  0% {
    -webkit-transform: translateY(0) rotate(0deg);
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  90% {
    opacity: 0.6;
  }
  100% {
    -webkit-transform: translateY(100%) rotate(360deg);
    transform: translateY(100%) rotate(360deg);
    opacity: 0;
  }
}

/* Разделитель */
.divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 24px;
  width: 100%;
}

.divider svg {
  width: 200px;
  height: 24px;
  opacity: 0.7;
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  touch-action: manipulation;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  background: #1a1a1a;
  color: var(--text);
  line-height: 1.6;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.8), 0 4px 24px rgba(0, 0, 0, 0.5);
  overflow-x: hidden;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

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

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

button,
a.button {
  font: inherit;
}

.background-photos {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  z-index: -3;
  pointer-events: none;
  overflow: hidden;
}

.background-photo {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  -webkit-transform: scale(1.08);
  transform: scale(1.08);
  -webkit-filter: blur(2px) saturate(1.05) brightness(0.9);
  filter: blur(2px) saturate(1.05) brightness(0.9);
  transition: opacity 3s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 3s cubic-bezier(0.25, 0.46, 0.45, 0.94), -webkit-transform 3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.background-photo--1 {
  background-image: url("images/photo-1.webp");
}

.background-photo--2 {
  background-image: url("images/photo-2.webp");
}

.background-photo--3 {
  background-image: url("images/photo-3.webp");
}

.background-photo--4 {
  background-image: url("images/photo-4.webp");
}

.background-photo--5 {
  background-image: url("images/photo-5.webp");
}

.background-photo--6 {
  background-image: url("images/photo-6.webp");
}

.background-photo--7 {
  background-image: url("images/photo-7.webp");
}

.background-photo--8 {
  background-image: url("images/photo-8.webp");
}

.background-photo--9 {
  background-image: url("images/photo-9.webp");
}

.background-photo--10 {
  background-image: url("images/photo-10.webp");
}

.background-photo-landscape {
  display: none;
}

@media (orientation: landscape) {
  .background-photo {
    display: none;
  }

  .background-photo-landscape {
    display: block;
  }
}

.background-photo-landscape--1 {
  background-image: url("images/landphoto-1.webp");
}

.background-photo-landscape--2 {
  background-image: url("images/landphoto-2.webp");
}

.background-photo-landscape--3 {
  background-image: url("images/landphoto-3.webp");
}

.background-photo-landscape--4 {
  background-image: url("images/landphoto-4.webp");
}

.background-photo-landscape--5 {
  background-image: url("images/landphoto-5.webp");
}

.background-photo.is-active {
  opacity: 1;
  -webkit-transform: scale(1);
  transform: scale(1);
}

.background-photo::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.18) 0%, rgba(10, 10, 10, 0.34) 100%);
  pointer-events: none;
}

.page {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  isolation: isolate;
  overflow-x: hidden;
  touch-action: pan-y;
}

.story-track {
  display: flex;
  flex-direction: column;
  position: relative;
}

.story-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
  position: relative;
  width: 100%;
  overflow: visible;
}

.story-slide .section {
  width: min(100%, var(--max-width));
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 28px;
  background: transparent;
  color: #f7efe8;
  isolation: isolate;
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  overflow: visible;
}

.hero__content {
  width: min(100%, 760px);
  text-align: center;
  padding: clamp(2.2rem, 5vw, 3.8rem);
  border-radius: var(--radius-xl);
  overflow: visible;
}

.eyebrow {
  margin: 0 0 1rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.34em;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff4ef;
}

.eyebrow--script {
  font-family: 'Great Vibes', cursive;
  text-transform: none;
  letter-spacing: 0.02em;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  margin: 0 0 0.7rem;
  color: var(--text-strong);
}

.hero h1,
.hero__date,
.section__title,
.section__lead,
.signoff {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  letter-spacing: -0.01em;
}

.hero h1 {
  margin: 0 0 0.7rem;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 400;
  letter-spacing: 0.06em;
  color: #fdf5eb;
}

.hero h1 .word {
  display: inline-block;
  opacity: 0;
  -webkit-transform: translateY(20px);
  transform: translateY(20px);
  animation: wordRise 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero h1 .word:nth-child(1) { animation-delay: 0.3s; }
.hero h1 .word:nth-child(2) { animation-delay: 0.6s; }
.hero h1 .word:nth-child(3) { animation-delay: 0.9s; }

@keyframes wordRise {
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.hero__date {
  opacity: 0;
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 1.2s;
}

.hero .eyebrow {
  opacity: 0;
  animation: heroFadeIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
  animation-delay: 0.1s;
}

@keyframes heroFadeIn {
  to {
    opacity: 1;
  }
}

.hero__date {
  margin: 0 0 1rem;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #fff7f2;
}

/* Подсказка пролистать вниз */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease, -webkit-transform 0.6s ease, transform 0.6s ease;
}

.scroll-hint.is-visible {
  opacity: 1;
}

.scroll-hint.is-hidden {
  opacity: 0;
  -webkit-transform: translateX(-50%) translateY(12px);
  transform: translateX(-50%) translateY(12px);
}

.scroll-hint__text {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-hint__line {
  display: block;
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), rgba(255, 255, 255, 0));
  position: relative;
  overflow: hidden;
}

.scroll-hint__line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 14px;
  background: rgba(255, 255, 255, 0.8);
  -webkit-animation: scrollLineDrop 2s ease-in-out infinite;
  animation: scrollLineDrop 2s ease-in-out infinite;
}

@-webkit-keyframes scrollLineDrop {
  0% { -webkit-transform: translateY(-14px); opacity: 0; }
  40% { opacity: 1; }
  100% { -webkit-transform: translateY(40px); opacity: 0; }
}

@keyframes scrollLineDrop {
  0% { -webkit-transform: translateY(-14px); transform: translateY(-14px); opacity: 0; }
  40% { opacity: 1; }
  100% { -webkit-transform: translateY(40px); transform: translateY(40px); opacity: 0; }
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 0.95rem 1.55rem;
  border-radius: 999px;
  border: 1px solid rgba(248, 242, 232, 0.26);
  transition: transform 320ms cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 320ms ease, border-color 320ms ease;
}

.button:hover,
.button:focus-visible {
  -webkit-transform: translateY(-1px) scale(1.01);
  transform: translateY(-1px) scale(1.01);
}

.button--ghost {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.3);
  font-size: 0.9rem;
  padding: 0.7rem 1.2rem;
}

.button__icon {
  display: inline-flex;
  width: 1.2rem;
  height: 1.2rem;
}

.section {
  width: min(100%, var(--max-width));
  margin: 0 0 32px;
  padding: clamp(2.2rem, 5vw, 3.8rem);
  border-radius: var(--radius-xl);
  position: relative;
  z-index: 2;
}

/* .section--intro — удалено, блок использует общие стили */

.section__title {
  margin: 0 0 1rem;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
  line-height: 1.08;
  color: var(--text-strong);
  font-weight: 400;
}

.section__lead {
  margin: 0 0 1rem;
  font-size: clamp(1.05rem, 2vw, 1.15rem);
  color: rgba(255, 250, 245, 0.97);
  font-weight: 500;
  line-height: 1.6;
}

.section__copy {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: rgba(255, 250, 245, 0.94);
  line-height: 1.6;
  max-width: 700px;
}

/* .intro-grid — удалено, больше не используется */

.intro-card {
  padding: 1.25rem 1.3rem;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

.intro-card p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: #fff9f5;
  line-height: 1.6;
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 1.2rem;
}

.countdown__item {
  padding: 0.8rem 0.5rem 0.6rem;
  border-radius: 16px;
  text-align: center;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  -webkit-perspective: 200px;
  perspective: 200px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.countdown__value {
  display: block;
  font-size: clamp(1.3rem, 3vw, 1.8rem);
  font-weight: 600;
  color: #ffffff;
  line-height: 1;
  transition: transform 0.4s ease, opacity 0.4s ease, -webkit-transform 0.4s ease;
}

.countdown__value.is-flipping {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  opacity: 0;
}

/* Эффект «День свадьбы» */
.countdown.is-celebrating {
  display: none;
}

.countdown-celebration {
  display: none;
  text-align: center;
  padding: 1.5rem;
  margin-top: 1.2rem;
}

.countdown-celebration.is-visible {
  display: block;
  animation: celebrationRise 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.countdown-celebration__title {
  font-family: 'Great Vibes', cursive;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--text-strong);
  margin: 0 0 0.5rem;
  line-height: 1.2;
}

.countdown-celebration__text {
  font-size: 1rem;
  color: rgba(255, 250, 245, 0.94);
  margin: 0;
}

@keyframes celebrationRise {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

.countdown__label {
  display: block;
  margin-top: 0.35rem;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
}

.details-text {
  margin: 0 0 0.5rem;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: rgba(255, 250, 245, 0.94);
  line-height: 1.6;
}

.details-text strong {
  color: var(--text-strong);
}

.slide-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: min(100%, var(--max-width));
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.slide-inner > * + * {
  margin-top: 24px;
}

@media (max-width: 660px) {
  .slide-inner {
    gap: 16px;
  }

  .slide-inner > * + * {
    margin-top: 16px;
  }
}

.section--closing {
  display: block;
  text-align: center;
  padding: clamp(2.2rem, 5vw, 3.8rem);
  margin-left: auto;
  margin-right: auto;
  max-width: 760px;
  overflow: visible;
}

.signoff {
  margin: 0;
  font-family: 'Great Vibes', cursive;
  font-size: clamp(1.7rem, 3.4vw, 2.4rem);
  line-height: 1.4;
  max-width: 760px;
  font-weight: 400;
}

.signoff--center {
  text-align: center;
}

.signoff--right {
  text-align: right;
  margin-top: 1.5rem;
}

.reveal {
  opacity: 0;
  -webkit-transform: translateY(30px);
  transform: translateY(30px);
  transition: opacity 1600ms cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 1600ms cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.wishes-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 600px;
}

.wishes-stack > * + * {
  margin-top: 12px;
}

.wishes-stack p {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.1rem);
  color: rgba(255, 250, 245, 0.94);
  line-height: 1.6;
}

@media (max-width: 660px) {
  .hero {
    padding: 16px;
  }

  .hero__content {
    padding: 1.5rem 1rem;
  }

  .section {
    padding: 1.5rem 1rem;
    border-radius: 22px;
  }

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

/* Очень вытянутые экраны (20:9, 21:9) */
@media (min-aspect-ratio: 20/9) {
  .hero {
    padding: 12px;
  }

  .hero h1 {
    font-size: clamp(2.5rem, 9vw, 4.8rem);
  }

  .hero__date {
    font-size: clamp(1rem, 2.5vw, 1.35rem);
  }

  .section {
    padding: 1.5rem 1rem;
  }

  .scroll-hint {
    bottom: 1.5rem;
  }
}

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

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

  .hero h1 .word,
  .hero__date,
  .hero .eyebrow,
  .scroll-hint {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
    animation: none;
  }
}
