:root {
  color-scheme: dark;
  --bg: #08131f;
  --bg-soft: #102334;
  --panel: rgba(10, 22, 34, 0.78);
  --panel-strong: rgba(10, 22, 34, 0.9);
  --line: rgba(161, 210, 255, 0.18);
  --text: #f4f7fb;
  --muted: #c8d8e8;
  --accent: #5ea3db;
  --accent-soft: #89c8f5;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: Georgia, serif;
  background:
    radial-gradient(circle at top, rgba(69, 137, 191, 0.22), transparent 30%),
    linear-gradient(180deg, #0a1521 0%, #08131f 30%, #0a1a2a 100%);
  color: var(--text);
  overflow-x: hidden;
}

body.is-locked {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.page-loader {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: grid;
  place-items: center;
  background: rgba(6, 12, 19, 0.96);
  transition: opacity 0.45s ease, visibility 0.45s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__ring,
.page-loader__core {
  position: absolute;
  border-radius: 999px;
}

.page-loader__ring {
  width: 72px;
  height: 72px;
  border: 1px solid rgba(94, 163, 219, 0.3);
  border-top-color: var(--accent-soft);
  animation: spin 1.1s linear infinite;
}

.page-loader__core {
  width: 16px;
  height: 16px;
  background: var(--accent-soft);
  box-shadow: 0 0 24px rgba(137, 200, 245, 0.9);
  animation: pulse 1.8s ease-in-out infinite;
}

.entry-screen {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at top, rgba(93, 163, 219, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(7, 16, 26, 0.94), rgba(7, 16, 26, 0.98));
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.entry-screen.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.entry-screen__backdrop {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.entry-screen__decor,
.entry-screen__leaf,
.entry-screen__star {
  position: absolute;
  opacity: 0.2;
  pointer-events: none;
}

.entry-screen__decor--left {
  top: 12%;
  left: -4%;
  width: 150px;
}

.entry-screen__decor--right {
  right: -5%;
  bottom: 12%;
  width: 140px;
}

.entry-screen__decor--center {
  left: 50%;
  top: 18%;
  width: 190px;
  transform: translateX(-50%);
  opacity: 0.12;
}

.entry-screen__leaf--left {
  left: -4%;
  bottom: 16%;
  width: 140px;
}

.entry-screen__leaf--right {
  top: 10%;
  right: -4%;
  width: 140px;
}

.entry-screen__star--one {
  top: 20%;
  right: 16%;
  width: 52px;
  opacity: 0.32;
  animation: floatBob 4.8s ease-in-out infinite;
}

.entry-screen__star--two {
  left: 14%;
  bottom: 18%;
  width: 40px;
  opacity: 0.28;
  animation: floatBob 5.8s ease-in-out infinite reverse;
}

.entry-card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  padding: 28px 24px;
  border: 1px solid rgba(137, 200, 245, 0.25);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(10, 23, 36, 0.92), rgba(10, 23, 36, 0.78));
  box-shadow: var(--shadow);
  color: var(--text);
  text-align: center;
  cursor: pointer;
}

.entry-card__eyebrow,
.eyebrow {
  margin: 0;
  font-family: "Androgy Demo", cursive;
  font-size: 2rem;
  line-height: 1.1;
  color: #dbefff;
}

.entry-card__eyebrow--serif,
.eyebrow--serif {
  font-family: "Cinzel", serif;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.3;
}

.entry-card__title {
  width: min(100%, 360px);
  margin: 18px auto 0;
}

.entry-card__copy {
  margin: 20px auto 0;
  max-width: 28rem;
  font-family: "Cinzel", serif;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--muted);
}

.entry-card__action,
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 22px;
  border: 1px solid rgba(137, 200, 245, 0.42);
  border-radius: 8px;
  background: rgba(94, 163, 219, 0.12);
  font-family: "Cinzel", serif;
  font-size: 0.9rem;
  text-decoration: none;
  color: var(--text);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible,
.entry-card:hover .entry-card__action,
.entry-card:focus-visible .entry-card__action {
  transform: translateY(-1px);
  background: rgba(94, 163, 219, 0.2);
  border-color: rgba(137, 200, 245, 0.7);
}

.music-toggle {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 0 16px;
  border: 1px solid rgba(137, 200, 245, 0.4);
  border-radius: 8px;
  background: rgba(8, 19, 31, 0.84);
  color: var(--text);
  backdrop-filter: blur(12px);
}

.music-toggle--hidden {
  display: none;
}

.music-toggle__pulse {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  box-shadow: 0 0 0 rgba(137, 200, 245, 0.7);
}

.music-toggle.is-playing .music-toggle__pulse {
  animation: musicPulse 1.8s ease-in-out infinite;
}

.music-toggle__label {
  font-family: "Cinzel", serif;
  font-size: 0.8rem;
}

.site-shell {
  opacity: 1;
  transition: opacity 0.5s ease;
}

.site-shell--hidden {
  opacity: 0;
  pointer-events: none;
}

.section {
  position: relative;
  padding: 64px 20px;
}

.floating-cluster {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.floating-ornament {
  position: absolute;
  opacity: 0.34;
  animation: floatBob 5.2s ease-in-out infinite;
}

.floating-ornament--a {
  left: -2%;
  top: 10%;
  width: 70px;
}

.floating-ornament--b {
  right: -3%;
  top: 28%;
  width: 80px;
  animation-duration: 6.4s;
}

.floating-ornament--c {
  left: 12%;
  bottom: 12%;
  width: 55px;
  animation-duration: 4.6s;
}

.floating-ornament--d {
  right: 10%;
  bottom: 10%;
  width: 68px;
  animation-duration: 7.6s;
}

.section__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1080px);
  margin: 0 auto;
}

.section__inner--narrow {
  width: min(100%, 860px);
}

.hero {
  min-height: 100svh;
  display: grid;
  place-items: center;
  padding-top: 88px;
  padding-bottom: 64px;
}

.hero__layer {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.hero__ornament,
.hero__shell,
.hero__spark {
  position: absolute;
  opacity: 0.78;
}

.hero__ornament--left {
  left: -36px;
  top: 88px;
  width: 110px;
}

.hero__ornament--right {
  right: -42px;
  bottom: 100px;
  width: 110px;
}

.hero__shell--one {
  right: 12%;
  top: 16%;
  width: 48px;
}

.hero__shell--two {
  left: 10%;
  bottom: 20%;
  width: 54px;
}

.hero__shell--three {
  left: 18%;
  top: 22%;
  width: 90px;
  opacity: 0.44;
}

.hero__shell--four {
  right: 18%;
  bottom: 28%;
  width: 88px;
  opacity: 0.38;
}

.hero__spark--one {
  top: 16%;
  left: 46%;
  width: 42px;
  opacity: 0.5;
  animation: floatBob 4.2s ease-in-out infinite;
}

.hero__spark--two {
  right: 24%;
  top: 34%;
  width: 36px;
  opacity: 0.42;
  animation: floatBob 5.1s ease-in-out infinite reverse;
}

.hero__ornament--left,
.hero__ornament--right,
.hero__shell--one,
.hero__shell--two,
.hero__shell--three,
.hero__shell--four {
  animation: floatBob 6.2s ease-in-out infinite;
}

.hero__ornament--right,
.hero__shell--two,
.hero__shell--four {
  animation-direction: reverse;
}

.hero__content {
  position: relative;
  z-index: 1;
  width: min(100%, 720px);
  text-align: center;
}

.hero__logo {
  width: min(100%, 460px);
  margin: 0 auto 20px;
}

.hero .eyebrow {
  margin-top: 10px;
}

.hero__details {
  margin-top: 0;
}

.hero__details--location {
  max-width: 32rem;
  margin-inline: auto;
}

.hero__date,
.hero__time,
.hero__venue,
.hero__place,
.summary-block__label,
.summary-block__value,
.timeline-item__time,
.timeline-item__title,
.dress-card__title,
.section-copy,
.timeline-item__copy {
  margin: 0;
}

.hero__date,
.hero__time {
  font-family: "Cinzel", serif;
  font-weight: 400;
  line-height: 1.25;
  color: #edf7ff;
}

.hero__date {
  font-size: 1.6rem;
}

.hero__time {
  margin-top: 8px;
  font-size: 1.3rem;
}

.hero__venue {
  margin-top: 18px;
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: 1.3rem;
  letter-spacing: 0;
}

.hero__place {
  margin-top: 10px;
  font-family: "Cinzel", serif;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--muted);
}

.hero__divider {
  display: block;
  width: min(100%, 180px);
  height: 1px;
  margin: 22px auto;
  background: linear-gradient(90deg, transparent, rgba(137, 200, 245, 0.65), transparent);
}

.section--intro {
  margin-top: 0;
  padding-top: 28px;
}

.event-overview {
  text-align: center;
  padding: 10px 0 0;
}

.event-overview__kicker,
.event-overview__date,
.event-overview__time,
.event-overview__venue,
.event-overview__place {
  margin: 0;
}

.event-overview__kicker {
  font-family: "Cinzel", serif;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.event-overview__date {
  margin-top: 12px;
  font-family: "Cinzel", serif;
  font-size: clamp(2rem, 9vw, 4.4rem);
  line-height: 1.02;
  color: #f3f8fe;
}

.event-overview__time {
  margin-top: 10px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.25rem, 5.2vw, 2.1rem);
  line-height: 1.1;
  color: var(--accent-soft);
}

.event-overview__venue {
  margin-top: 26px;
  font-family: "Cinzel", serif;
  font-size: clamp(1.2rem, 5.1vw, 2.3rem);
  line-height: 1.12;
  color: #f3f8fe;
}

.event-overview__place {
  margin: 10px auto 0;
  max-width: 34rem;
  font-family: "Cinzel", serif;
  font-size: clamp(0.98rem, 3.4vw, 1.24rem);
  line-height: 1.5;
  color: var(--muted);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
}

.countdown__item {
  position: relative;
  padding: 22px 12px 18px;
  border-top: 1px solid rgba(137, 200, 245, 0.18);
  border-bottom: 1px solid rgba(137, 200, 245, 0.18);
  background: linear-gradient(180deg, rgba(8, 24, 39, 0.18), rgba(8, 24, 39, 0.02));
  text-align: center;
}

.countdown__value {
  display: block;
  font-family: "Cinzel", serif;
  font-size: clamp(2.3rem, 9vw, 4.9rem);
  font-weight: 400;
  line-height: 0.95;
  color: #f3f8fe;
}

.countdown__label {
  display: block;
  margin-top: 10px;
  font-family: "Cinzel", serif;
  color: var(--muted);
  font-size: clamp(0.82rem, 2.8vw, 1rem);
  text-transform: lowercase;
}

.map-card {
  position: relative;
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  min-height: 320px;
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.map-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(4, 10, 18, 0.14), rgba(18, 46, 74, 0.2)),
    linear-gradient(0deg, rgba(54, 117, 173, 0.08), rgba(54, 117, 173, 0.08));
  opacity: 0.78;
  z-index: 1;
  box-shadow: inset 0 0 0 1px rgba(116, 177, 232, 0.18);
}

.map-card iframe {
  position: relative;
  z-index: 0;
  display: block;
  width: 100%;
  height: 320px;
  border: 0;
  filter: grayscale(0.84) invert(0.88) hue-rotate(186deg) saturate(0.9) contrast(1.04) brightness(0.64);
}

.section-title {
  width: min(100%, 360px);
  margin: 0 auto 28px;
}

.timeline {
  position: relative;
  display: grid;
  gap: 28px;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 21px;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(137, 200, 245, 0.58), transparent);
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr;
  column-gap: 24px;
  row-gap: 6px;
  padding: 0 0 0 36px;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: #6998C5;
  border: 1px solid rgba(137, 200, 245, 0.72);
  box-shadow: 0 0 0 6px rgba(137, 200, 245, 0.08);
}

.timeline-item__icon {
  grid-column: 1;
  grid-row: 1 / span 2;
  display: block;
  width: 42px;
  height: 42px;
  min-width: 42px;
  min-height: 42px;
  max-width: 42px;
  max-height: 42px;
  aspect-ratio: 1 / 1;
  box-sizing: border-box;
  margin-top: 0;
  padding: 9px;
  border: 1px solid rgba(137, 200, 245, 0.56);
  border-radius: 50%;
  background: rgba(105, 152, 197, 0.1);
  box-shadow: inset 0 0 0 1px rgba(137, 200, 245, 0.08);
  object-fit: contain;
  flex-shrink: 0;
}

.timeline-item__time {
  grid-column: 2;
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: clamp(1rem, 3vw, 1.18rem);
  color: #6998C5;
}

.timeline-item__title,
.dress-card__title {
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: clamp(1.45rem, 4.2vw, 2.15rem);
  line-height: 1.18;
}

.timeline-item__copy,
.dress-card__copy,
.section-copy {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

.section--dress,
.section--rsvp,
.section--gifts {
  text-align: center;
}

.dress-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 26px;
}

.dress-card {
  padding: 10px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.dress-card__icon {
  width: clamp(120px, 26vw, 210px);
  height: auto;
  margin: 0 auto;
}

.dress-note {
  margin: 24px auto 0;
  max-width: 34rem;
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: clamp(1.18rem, 3.4vw, 1.34rem);
  line-height: 1.8;
  color: #6998C5;
}

.section--dress .section-copy {
  max-width: 40rem;
  margin: 0 auto;
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 4vw, 1.62rem);
  line-height: 1.7;
}

.section--rsvp .section-copy,
.section--gifts .section-copy,
.section-note {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
  font-family: "Cinzel", serif;
  font-weight: 400;
  font-size: clamp(1.3rem, 4vw, 1.62rem);
  line-height: 1.7;
}

.section-note {
  margin-top: 24px;
  color: var(--text);
}

.gift-icon {
  width: clamp(100px, 16vw, 150px);
  height: auto;
  margin: 26px auto 0;
}

.modal-shell {
  position: fixed;
  inset: 0;
  z-index: 45;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.modal-shell.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(5, 10, 18, 0.76);
  backdrop-filter: blur(10px);
}

.modal-card {
  position: relative;
  z-index: 1;
  width: min(100%, 640px);
  max-height: min(92vh, 860px);
  overflow-y: auto;
  padding: 28px 20px 22px;
  border: 1px solid rgba(137, 200, 245, 0.22);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(8, 19, 31, 0.97), rgba(11, 30, 46, 0.95));
  box-shadow: var(--shadow);
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(137, 200, 245, 0.28);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  font-size: 1.5rem;
}

.modal-kicker,
.modal-copy,
.form-label,
.form-status {
  margin: 0;
}

.modal-kicker {
  font-family: "Cinzel", serif;
  font-size: 0.84rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #6998C5;
}

.modal-title {
  margin: 12px 0 0;
  font-family: "Cinzel", serif;
  font-size: clamp(1.9rem, 6vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
}

.modal-copy {
  margin-top: 14px;
  font-family: "Cinzel", serif;
  font-size: 1.02rem;
  line-height: 1.7;
  color: var(--muted);
}

.rsvp-form {
  margin-top: 26px;
  display: grid;
  gap: 18px;
}

.form-field,
.form-fieldset {
  display: grid;
  gap: 10px;
  border: 0;
  padding: 0;
  margin: 0;
}

.form-label {
  font-family: "Cinzel", serif;
  font-size: 1rem;
  color: var(--text);
}

.form-input {
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  border: 1px solid rgba(137, 200, 245, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  font: inherit;
}

.form-input::placeholder {
  color: rgba(244, 247, 251, 0.45);
}

.form-textarea {
  min-height: 108px;
  padding-top: 14px;
  resize: vertical;
}

.form-fieldset {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: start;
}

.form-fieldset .form-label {
  grid-column: 1 / -1;
}

.choice-pill {
  position: relative;
  display: flex;
}

.choice-pill input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-pill span {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border: 1px solid rgba(137, 200, 245, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
  font-family: "Cinzel", serif;
  text-align: center;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.choice-pill input:checked + span {
  border-color: rgba(137, 200, 245, 0.74);
  background: rgba(105, 152, 197, 0.16);
  color: #dff0ff;
}

.form-status {
  min-height: 1.5em;
  font-family: "Cinzel", serif;
  font-size: 0.96rem;
  color: #6998C5;
}

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

.button--submit {
  width: 100%;
  margin-top: 0;
}

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

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

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

@keyframes pulse {
  0%,
  100% {
    transform: scale(0.82);
    opacity: 0.85;
  }

  50% {
    transform: scale(1.15);
    opacity: 1;
  }
}

@keyframes musicPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(137, 200, 245, 0.5);
  }

  50% {
    box-shadow: 0 0 0 10px rgba(137, 200, 245, 0);
  }
}

@keyframes floatBob {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  50% {
    transform: translate3d(0, -28px, 0) rotate(6deg);
  }
}

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

  .floating-ornament--a {
    width: 118px;
  }

  .floating-ornament--b,
  .floating-ornament--d {
    width: 126px;
  }

  .floating-ornament--c {
    width: 96px;
  }

  .entry-card {
    padding: 38px 42px;
  }

  .modal-card {
    padding: 34px 30px 28px;
  }

  .entry-card__eyebrow,
  .eyebrow {
    font-size: 2.7rem;
  }

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

  .section--intro {
    margin-top: 0;
    padding-top: 40px;
  }

  .timeline {
    gap: 34px;
  }

  .timeline::before {
    left: 50%;
    transform: translateX(-50%);
  }

  .timeline-item {
    width: calc(50% - 20px);
    padding: 0;
  }

  .timeline-item:nth-child(odd) {
    margin-right: auto;
    padding-right: 56px;
  }

  .timeline-item:nth-child(even) {
    margin-left: auto;
    padding-left: 56px;
  }

  .timeline-item::before {
    top: 10px;
  }

  .timeline-item:nth-child(odd)::before {
    right: -21px;
    left: auto;
  }

  .timeline-item:nth-child(even)::before {
    left: -21px;
  }

  .timeline-item__icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    min-height: 72px;
    max-width: 72px;
    max-height: 72px;
    padding: 16px;
  }

  .dress-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: center;
    width: min(100%, 760px);
    margin-inline: auto;
    gap: 32px;
  }

  .hero__date {
    font-size: 2rem;
  }

  .hero__time {
    font-size: 1.55rem;
  }

  .hero__logo {
    margin-bottom: 28px;
  }

  .hero .eyebrow {
    margin-top: 12px;
  }

  .hero__ornament--left,
  .hero__ornament--right {
    width: 180px !important;
  }

  .hero__shell--one {
    width: 74px !important;
  }

  .hero__shell--two {
    width: 86px !important;
  }

  .hero__shell--three {
    width: 150px !important;
  }

  .hero__shell--four {
    width: 148px !important;
  }

  .hero__spark--one {
    width: 68px !important;
  }

  .hero__spark--two {
    width: 56px !important;
  }

  .entry-screen__decor--center {
    width: 260px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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