:root {
  --ink: #382923;
  --soft-ink: #725b50;
  --cream: #fff6ef;
  --pearl: #fffaf6;
  --shell: #f3d4c2;
  --sunset: #ef9d78;
  --coral: #d76f62;
  --rose: #e8a6ad;
  --aqua: #7eb6ac;
  --lagoon: #315e5d;
  --gold: #c79d66;
  --coffee: #7d523f;
  --line: rgba(56, 41, 35, 0.14);
  --shadow: 0 24px 70px rgba(62, 38, 30, 0.18);
  --max: 1180px;
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  width: 100%;
  min-height: 100vh;
  color: var(--ink);
  background:
    linear-gradient(180deg, #fff7f0 0%, #f7ded0 35%, #f2d7c7 68%, #fff3eb 100%);
  font-family: "Manrope", system-ui, sans-serif;
  overflow-x: hidden;
}

main {
  overflow-x: clip;
}

body::selection {
  color: var(--pearl);
  background: var(--coral);
}

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

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

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: calc(var(--scroll-progress, 0) * 100%);
  height: 3px;
  z-index: 80;
  background: linear-gradient(90deg, var(--pearl), var(--rose), var(--aqua));
  box-shadow: 0 0 18px rgba(255, 250, 246, 0.8);
  transform-origin: left;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 30;
  opacity: 0.055;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 220 220' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='grain'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23grain)' opacity='0.65'/%3E%3C/svg%3E");
  mix-blend-mode: multiply;
}

.sparkle-layer {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
}

.music-toggle {
  position: fixed;
  right: 14px;
  bottom: 14px;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 14px;
  border: 1px solid rgba(255, 250, 246, 0.36);
  border-radius: 999px;
  color: var(--pearl);
  background: rgba(39, 24, 19, 0.55);
  backdrop-filter: blur(12px);
  box-shadow: 0 14px 36px rgba(33, 21, 18, 0.34);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 220ms ease, box-shadow 220ms ease, opacity 220ms ease;
}

.music-toggle:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 44px rgba(33, 21, 18, 0.4);
}

.music-toggle:active {
  transform: translateY(0);
}

.music-toggle__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #68ffb2;
  box-shadow: 0 0 16px rgba(104, 255, 178, 0.9);
  animation: music-pulse 1.5s ease-in-out infinite;
}

.music-toggle.is-muted .music-toggle__dot {
  background: #ffc1bd;
  box-shadow: 0 0 0 rgba(255, 193, 189, 0);
  animation: none;
}

.audio-unlock {
  position: fixed;
  inset: auto 12px 66px;
  z-index: 95;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 250, 246, 0.44);
  background: rgba(39, 24, 19, 0.84);
  color: var(--pearl);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.34);
  cursor: pointer;
}

.audio-unlock.is-visible {
  display: inline-flex;
}

.sparkle {
  position: absolute;
  left: var(--x);
  top: var(--y);
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  opacity: var(--opacity);
  background: var(--pearl);
  box-shadow: 0 0 18px rgba(255, 244, 235, 0.7), 0 0 34px rgba(232, 166, 173, 0.34);
  animation: sparkle var(--duration) ease-in-out infinite;
  animation-delay: var(--delay);
}

.sparkle::before,
.sparkle::after {
  content: "";
  position: absolute;
  background: currentColor;
  color: var(--pearl);
  border-radius: 99px;
}

.sparkle::before {
  left: -110%;
  right: -110%;
  top: 45%;
  height: 10%;
}

.sparkle::after {
  top: -110%;
  bottom: -110%;
  left: 45%;
  width: 10%;
}

.section {
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.section-current {
  position: absolute;
  inset: -20% -10%;
  pointer-events: none;
  opacity: 0.18;
  z-index: 1;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 250, 246, 0.5) 46%, transparent 55% 100%),
    radial-gradient(circle at 18% 22%, rgba(255, 250, 246, 0.4), transparent 22%),
    radial-gradient(circle at 82% 78%, rgba(126, 182, 172, 0.45), transparent 25%);
  background-size: 220% 100%, 100% 100%, 100% 100%;
  animation: current-glide 12s ease-in-out infinite;
}

.section-current--aqua {
  opacity: 0.22;
  mix-blend-mode: screen;
}

.section-current--sunset {
  opacity: 0.16;
}

.section-current--sand,
.section-current--pearl {
  opacity: 0.12;
}

.section__inner {
  width: min(calc(100% - 36px), var(--max));
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.section-label {
  margin: 0 0 14px;
  color: var(--coral);
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.editorial-title {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 2.7rem;
  line-height: 0.96;
  font-weight: 600;
  color: var(--ink);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 52px;
  padding: 0 22px;
  max-width: 100%;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 800;
  white-space: nowrap;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background-color 220ms ease;
}

.button::before,
.location__ticket::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: translateX(-120%) skewX(-18deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transition: transform 760ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.button:hover::before,
.location__ticket:hover::before {
  transform: translateX(120%) skewX(-18deg);
}

.button__ripple,
.ticket__ripple {
  position: absolute;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  background: rgba(255, 255, 255, 0.55);
  animation: ripple-pop 650ms ease-out forwards;
}

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

.button--light {
  color: var(--ink);
  background: var(--pearl);
  box-shadow: 0 18px 45px rgba(255, 246, 239, 0.26);
}

.button--glass {
  color: var(--pearl);
  border-color: rgba(255, 250, 246, 0.4);
  background: rgba(255, 250, 246, 0.12);
  backdrop-filter: blur(14px);
}

.button--whatsapp {
  color: #fff;
  background: linear-gradient(135deg, #25d366, #128c7e);
  box-shadow: 0 18px 46px rgba(37, 211, 102, 0.28);
}

.button--mega {
  width: min(100%, 520px);
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px 28px;
  border-radius: 8px;
  font-size: 1.28rem;
  text-align: center;
  box-shadow:
    0 22px 70px rgba(37, 211, 102, 0.34),
    0 0 0 1px rgba(255, 255, 255, 0.26) inset;
  animation: cta-breathe 2.8s ease-in-out infinite;
}

.button--mega small {
  grid-column: 2;
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  opacity: 0.86;
}

.button__main {
  display: inline-block;
  font-size: clamp(1.15rem, 3.8vw, 1.55rem);
  font-weight: 900;
  letter-spacing: 0.01em;
  line-height: 1.1;
}

.button__spark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 0 24px rgba(255, 250, 246, 0.34);
  animation: spark-spin 4.8s linear infinite;
}

.hero {
  min-height: 92svh;
  display: grid;
  align-items: end;
  position: relative;
  isolation: isolate;
  color: var(--pearl);
  padding: 28px 18px 26px;
}

.hero__image,
.hero__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  z-index: -3;
}

.hero__image img {
  object-fit: cover;
  object-position: center;
  transform: scale(1.04);
  animation: image-breathe 16s ease-in-out infinite alternate;
}

.hero__veil {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(35, 25, 22, 0.14) 0%, rgba(35, 25, 22, 0.28) 40%, rgba(39, 24, 19, 0.72) 100%),
    linear-gradient(90deg, rgba(195, 91, 76, 0.52), transparent 45%, rgba(49, 94, 93, 0.4));
}

.hero__veil::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.18) 48%, transparent 58% 100%);
  transform: translateX(-100%);
  animation: hero-sheen 6.8s ease-in-out 1.2s infinite;
}

.hero__motion {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  overflow: hidden;
}

.hero__motion span {
  position: absolute;
  left: -20%;
  width: 145%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 246, 0.68), rgba(126, 182, 172, 0.36), transparent);
  box-shadow: 0 0 18px rgba(255, 250, 246, 0.42);
  transform: rotate(-8deg);
  animation: ribbon-glide 9s ease-in-out infinite;
}

.hero__motion span:nth-child(1) {
  top: 26%;
}

.hero__motion span:nth-child(2) {
  top: 45%;
  animation-delay: -3.2s;
  opacity: 0.66;
}

.hero__motion span:nth-child(3) {
  top: 68%;
  animation-delay: -5.8s;
  opacity: 0.52;
}

.mermaid-tail {
  pointer-events: none;
  filter: drop-shadow(0 26px 36px rgba(33, 61, 60, 0.28));
}

.mermaid-tail svg,
.mermaid__mark svg,
.finale__tail svg {
  width: 100%;
  height: auto;
}

.hero__tail {
  position: absolute;
  right: -44px;
  bottom: 92px;
  z-index: 1;
  width: 190px;
  opacity: 0.72;
  transform: rotate(-16deg);
  animation: tail-float 7.8s ease-in-out infinite;
}

.tail__body,
.tail__fin {
  fill: url("#unused");
}

.tail__body {
  fill: rgba(126, 182, 172, 0.78);
  stroke: rgba(255, 250, 246, 0.45);
  stroke-width: 2;
}

.tail__fin {
  fill: rgba(232, 166, 173, 0.74);
  stroke: rgba(255, 250, 246, 0.46);
  stroke-width: 2;
}

.tail__fin--right {
  fill: rgba(126, 182, 172, 0.7);
}

.tail__shine {
  fill: none;
  stroke: rgba(255, 250, 246, 0.78);
  stroke-width: 5;
  stroke-linecap: round;
  opacity: 0.78;
}

.bubble-field {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.bubble-field span {
  position: absolute;
  width: 12px;
  height: 12px;
  border: 1px solid rgba(255, 250, 246, 0.72);
  border-radius: 50%;
  background: rgba(255, 250, 246, 0.12);
  box-shadow: inset 0 0 10px rgba(255, 250, 246, 0.36), 0 0 18px rgba(126, 182, 172, 0.22);
  animation: bubble-rise 8s ease-in-out infinite;
}

.bubble-field span:nth-child(1) {
  left: 12%;
  bottom: 18%;
}

.bubble-field span:nth-child(2) {
  left: 72%;
  bottom: 24%;
  width: 8px;
  height: 8px;
  animation-delay: 1.2s;
}

.bubble-field span:nth-child(3) {
  left: 86%;
  bottom: 36%;
  width: 16px;
  height: 16px;
  animation-delay: 2.4s;
}

.bubble-field span:nth-child(4) {
  left: 28%;
  bottom: 32%;
  width: 9px;
  height: 9px;
  animation-delay: 3.1s;
}

.bubble-field span:nth-child(5) {
  left: 58%;
  bottom: 14%;
  width: 13px;
  height: 13px;
  animation-delay: 4.2s;
}

.hero__lights {
  position: absolute;
  top: 18px;
  left: 18px;
  right: 18px;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  opacity: 0.86;
}

.hero__lights::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 246, 0.62), transparent);
}

.hero__lights span {
  position: relative;
  width: 10px;
  height: 14px;
  border-radius: 999px;
  background: var(--pearl);
  box-shadow: 0 0 24px rgba(255, 234, 214, 0.9);
  animation: light-pulse 3.2s ease-in-out infinite;
}

.hero__lights span:nth-child(2n) {
  animation-delay: 0.6s;
}

.hero__content {
  width: min(100%, 1060px);
  margin: 0 auto;
  padding: 100px 0 118px;
  position: relative;
  z-index: 2;
}

.kicker {
  margin: 0 0 12px;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__title {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 3.35rem;
  line-height: 0.84;
  font-weight: 700;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(105deg, #fffaf6 0%, #ffe1cd 24%, #fffaf6 42%, #f1a890 66%, #fffaf6 100%);
  background-size: 240% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.34);
  animation: title-shimmer 7s ease-in-out infinite;
}

.hero__chapter {
  margin: 12px 0 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 600;
}

.hero__quote {
  max-width: 460px;
  margin: 24px 0 0;
  font-size: 1.05rem;
  line-height: 1.7;
  font-weight: 600;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
  max-width: 100%;
}

.hero-countdown {
  margin-top: 18px;
  width: min(100%, 640px);
  padding: 14px 14px 12px;
  border: 1px solid rgba(255, 250, 246, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(255, 250, 246, 0.2), rgba(255, 250, 246, 0.08)),
    rgba(20, 14, 12, 0.28);
  backdrop-filter: blur(14px);
  box-shadow: 0 20px 58px rgba(0, 0, 0, 0.24);
}

.hero-countdown__top {
  margin: 0 0 7px;
  color: rgba(255, 250, 246, 0.96);
  font-size: 0.9rem;
  line-height: 1.45;
  font-weight: 700;
}

.hero-countdown__top strong {
  color: #fff;
}

.hero-countdown__label {
  margin: 0 0 10px;
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 900;
  color: rgba(255, 250, 246, 0.78);
}

.hero-countdown__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.hero-countdown__item {
  min-width: 0;
  text-align: center;
  border-radius: 8px;
  padding: 9px 6px;
  border: 1px solid rgba(255, 250, 246, 0.22);
  background: rgba(255, 250, 246, 0.14);
}

.hero-countdown__item strong {
  display: block;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.08rem, 3.8vw, 1.7rem);
  line-height: 1;
  color: #fff;
}

.hero-countdown__item span {
  display: block;
  margin-top: 4px;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(255, 250, 246, 0.86);
}

.hero__dock {
  width: min(calc(100% - 36px), 980px);
  position: absolute;
  left: 50%;
  bottom: 20px;
  z-index: 3;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 246, 0.22);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.16);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
}

.hero__dock div {
  padding: 12px 10px;
  background: rgba(255, 250, 246, 0.08);
  min-width: 0;
}

.hero__dock span {
  display: block;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  opacity: 0.78;
}

.hero__dock strong {
  display: block;
  margin-top: 4px;
  font-size: 0.86rem;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.marquee-strip {
  position: relative;
  overflow: hidden;
  max-width: 100vw;
  color: var(--pearl);
  background: linear-gradient(90deg, var(--coffee), var(--coral), var(--lagoon));
  border-block: 1px solid rgba(255, 250, 246, 0.24);
}

.marquee-strip::before,
.marquee-strip::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 72px;
  z-index: 2;
  pointer-events: none;
}

.marquee-strip::before {
  left: 0;
  background: linear-gradient(90deg, rgba(125, 82, 63, 0.92), transparent);
}

.marquee-strip::after {
  right: 0;
  background: linear-gradient(270deg, rgba(49, 94, 93, 0.92), transparent);
}

.marquee-track {
  display: flex;
  width: max-content;
  gap: 34px;
  padding: 14px 0;
  animation: marquee 24s linear infinite;
}

.marquee-track span {
  flex: 0 0 auto;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.marquee-track span::after {
  content: "•";
  margin-left: 34px;
  color: rgba(255, 250, 246, 0.68);
}

.photo-interlude {
  position: relative;
  min-height: clamp(360px, 62vw, 760px);
  overflow: hidden;
  isolation: isolate;
  margin-block: -1px;
}

.photo-interlude::before,
.photo-interlude::after {
  content: "";
  position: absolute;
  left: -12%;
  width: 124%;
  height: clamp(34px, 7vw, 84px);
  z-index: 3;
  pointer-events: none;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.photo-interlude::before {
  top: -1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff2e8' d='M0 45L48 53.7C96 62 192 80 288 84.3C384 89 480 81 576 68.8C672 57 768 43 864 40.8C960 39 1056 49 1152 62.2C1248 75 1344 91 1392 99.2L1440 107V0H1392C1344 0 1248 0 1152 0C1056 0 960 0 864 0C768 0 672 0 576 0C480 0 384 0 288 0C192 0 96 0 48 0H0Z'/%3E%3C/svg%3E");
  filter: drop-shadow(0 8px 20px rgba(255, 250, 246, 0.36));
}

.photo-interlude::after {
  bottom: -1px;
  transform: rotate(180deg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 1440 140' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff2e8' d='M0 45L48 53.7C96 62 192 80 288 84.3C384 89 480 81 576 68.8C672 57 768 43 864 40.8C960 39 1056 49 1152 62.2C1248 75 1344 91 1392 99.2L1440 107V0H1392C1344 0 1248 0 1152 0C1056 0 960 0 864 0C768 0 672 0 576 0C480 0 384 0 288 0C192 0 96 0 48 0H0Z'/%3E%3C/svg%3E");
  filter: drop-shadow(0 -8px 20px rgba(255, 250, 246, 0.28));
}

.photo-interlude img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  transform: scale(1.02);
  filter: saturate(1.06) contrast(1.04);
  animation: interlude-zoom 18s ease-in-out infinite alternate;
}

.photo-interlude__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(35, 25, 22, 0.14), rgba(35, 25, 22, 0.5)),
    radial-gradient(circle at 20% 12%, rgba(255, 250, 246, 0.3), transparent 28%),
    radial-gradient(circle at 78% 78%, rgba(126, 182, 172, 0.24), transparent 34%);
}

.photo-interlude__veil::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255, 250, 246, 0.24) 48%, transparent 60% 100%);
  transform: translateX(-110%);
  animation: hero-sheen 7.6s ease-in-out infinite;
}

.photo-interlude__line {
  position: absolute;
  left: min(6vw, 36px);
  right: min(6vw, 36px);
  bottom: min(6vw, 26px);
  z-index: 2;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 246, 0.76), transparent);
  box-shadow: 0 0 22px rgba(255, 250, 246, 0.48);
}

.photo-interlude--lore3 .photo-interlude__veil {
  background:
    linear-gradient(105deg, rgba(181, 90, 82, 0.44), rgba(37, 68, 67, 0.56)),
    radial-gradient(circle at 75% 20%, rgba(255, 250, 246, 0.24), transparent 32%);
}

.photo-interlude--lore3 img {
  object-position: center 40%;
}

.photo-interlude--lore4 .photo-interlude__veil {
  background:
    linear-gradient(110deg, rgba(49, 94, 93, 0.56), rgba(216, 111, 98, 0.44)),
    radial-gradient(circle at 24% 26%, rgba(255, 250, 246, 0.24), transparent 34%);
}

.photo-interlude--lore4 img {
  object-position: center 38%;
}

.photo-interlude--lore5 .photo-interlude__veil {
  background:
    linear-gradient(115deg, rgba(125, 82, 63, 0.5), rgba(232, 166, 173, 0.44)),
    radial-gradient(circle at 78% 72%, rgba(255, 250, 246, 0.26), transparent 33%);
}

.photo-interlude--lore5 img {
  object-position: center 44%;
}

.intro {
  padding: 74px 0 82px;
  background:
    linear-gradient(120deg, rgba(255, 247, 240, 0.94), rgba(245, 215, 199, 0.8)),
    repeating-linear-gradient(90deg, rgba(125, 82, 63, 0.04) 0 1px, transparent 1px 52px);
}

.story-reel {
  padding: 72px 0 78px;
  background:
    radial-gradient(circle at 15% 18%, rgba(255, 250, 246, 0.6), transparent 28%),
    linear-gradient(140deg, rgba(241, 167, 145, 0.2), rgba(126, 182, 172, 0.24)),
    #fff3ea;
}

.story-reel__layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

.story-reel__copy p:not(.section-label) {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--soft-ink);
  line-height: 1.75;
  font-weight: 700;
}

.story-reel__frame {
  margin: 0;
  justify-self: center;
  width: min(100%, 410px);
  border-radius: 22px;
  padding: 10px;
  background:
    linear-gradient(145deg, rgba(255, 250, 246, 0.86), rgba(255, 250, 246, 0.46)),
    linear-gradient(145deg, rgba(232, 166, 173, 0.34), rgba(126, 182, 172, 0.28));
  border: 1px solid rgba(255, 250, 246, 0.9);
  box-shadow:
    0 24px 70px rgba(61, 38, 30, 0.2),
    0 0 0 1px rgba(255, 250, 246, 0.6) inset;
  position: relative;
  overflow: hidden;
}

.story-reel__frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 38%, rgba(255, 255, 255, 0.32) 49%, transparent 62% 100%);
  transform: translateX(-120%);
  animation: image-sweep 8s ease-in-out infinite;
  pointer-events: none;
}

.story-reel__video {
  display: block;
  width: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 16px;
  background: #0f0f0f;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.story-reel__frame figcaption {
  margin-top: 10px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--coral);
}

.intro__layout {
  display: grid;
  gap: 34px;
}

.intro__media {
  position: relative;
  min-height: 390px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.intro__media::before,
.details__visual::before,
.rsvp::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 42%, rgba(255, 250, 246, 0.22) 50%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: image-sweep 7.4s ease-in-out infinite;
}

.intro__media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), filter 900ms ease;
}

.intro__media:hover img,
.details__visual:hover img,
.details__visual:hover video {
  transform: scale(1.07);
  filter: saturate(1.14) contrast(1.04);
}

.intro__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(37, 26, 22, 0.52) 100%);
}

.intro__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  color: var(--pearl);
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.intro__shell-line {
  position: absolute;
  right: 18px;
  top: 18px;
  z-index: 3;
  display: flex;
  gap: 9px;
}

.intro__shell-line span,
.rsvp__pearls span {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 28%, #fff 0 18%, rgba(255, 250, 246, 0.9) 24%, rgba(232, 166, 173, 0.42) 60%, rgba(126, 182, 172, 0.4) 100%);
  box-shadow: 0 0 22px rgba(255, 250, 246, 0.55);
  animation: pearl-shimmer 3.6s ease-in-out infinite;
}

.intro__shell-line span:nth-child(2) {
  animation-delay: 0.6s;
}

.intro__shell-line span:nth-child(3) {
  animation-delay: 1.2s;
}

.intro__copy {
  align-self: center;
}

.letter {
  margin-top: 24px;
  max-width: 640px;
}

.letter p {
  margin: 0 0 18px;
  color: var(--soft-ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.45rem;
  line-height: 1.42;
  font-weight: 600;
}

.letter p:last-child {
  color: var(--coral);
  font-style: italic;
}

.mermaid-interlude {
  padding: 68px 0;
  color: var(--pearl);
  background:
    linear-gradient(120deg, rgba(49, 94, 93, 0.94), rgba(126, 182, 172, 0.78), rgba(216, 111, 98, 0.76)),
    radial-gradient(circle at 22% 18%, rgba(255, 250, 246, 0.3), transparent 28%),
    repeating-radial-gradient(circle at 50% 0%, rgba(255, 250, 246, 0.18) 0 1px, transparent 1px 18px);
  isolation: isolate;
}

.mermaid-interlude::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  background:
    radial-gradient(circle at 10% 20%, transparent 0 28px, rgba(255, 250, 246, 0.45) 29px 30px, transparent 31px),
    radial-gradient(circle at 30% 45%, transparent 0 28px, rgba(255, 250, 246, 0.35) 29px 30px, transparent 31px),
    radial-gradient(circle at 50% 20%, transparent 0 28px, rgba(255, 250, 246, 0.4) 29px 30px, transparent 31px),
    radial-gradient(circle at 70% 45%, transparent 0 28px, rgba(255, 250, 246, 0.35) 29px 30px, transparent 31px),
    radial-gradient(circle at 90% 20%, transparent 0 28px, rgba(255, 250, 246, 0.4) 29px 30px, transparent 31px);
  background-size: 240px 100px;
  animation: scales-drift 12s linear infinite;
}

.mermaid__layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

.mermaid__mark {
  width: min(62vw, 260px);
  margin: 0 auto;
  opacity: 0.9;
  filter: drop-shadow(0 30px 40px rgba(28, 56, 56, 0.26));
  animation: tail-float 7s ease-in-out infinite;
}

.mermaid__copy {
  max-width: 680px;
}

.mermaid__copy .section-label,
.mermaid__copy .editorial-title {
  color: var(--pearl);
}

.mermaid__copy p:not(.section-label) {
  max-width: 560px;
  margin: 20px 0 0;
  line-height: 1.75;
  font-weight: 800;
}

.details {
  padding: 84px 0;
  color: var(--pearl);
  background:
    linear-gradient(135deg, rgba(216, 106, 88, 0.96), rgba(239, 157, 120, 0.9) 46%, rgba(49, 94, 93, 0.92)),
    url("https://images.unsplash.com/photo-1520483601560-389dff434fdf?auto=format&fit=crop&w=1800&q=82") center/cover;
  background-blend-mode: multiply;
}

.details__comets {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.details__comets span {
  position: absolute;
  width: 160px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 246, 0.88), transparent);
  transform: rotate(-24deg);
  filter: drop-shadow(0 0 10px rgba(255, 250, 246, 0.65));
  animation: comet 6.5s ease-in-out infinite;
}

.details__comets span:nth-child(1) {
  top: 22%;
  left: -20%;
}

.details__comets span:nth-child(2) {
  top: 48%;
  left: -34%;
  animation-delay: 1.9s;
  opacity: 0.74;
}

.details__comets span:nth-child(3) {
  top: 70%;
  left: -28%;
  animation-delay: 3.4s;
  opacity: 0.58;
}

.details .section-label,
.details .editorial-title {
  color: var(--pearl);
}

.details__layout {
  display: grid;
  gap: 34px;
  align-items: center;
}

.details__headline p:not(.section-label) {
  max-width: 430px;
  margin: 18px 0 0;
  line-height: 1.75;
  font-weight: 700;
}

.birthday-note {
  max-width: 560px !important;
  margin-top: 20px !important;
  color: rgba(255, 250, 246, 0.95);
}

.birthday-note strong {
  color: #fff;
}

.countdown {
  margin-top: 20px;
  width: min(100%, 560px);
  padding: 14px;
  border: 1px solid rgba(255, 250, 246, 0.36);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.12);
  backdrop-filter: blur(10px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
}

.countdown__label {
  margin: 0 0 10px;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 250, 246, 0.84);
}

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

.countdown__item {
  min-width: 0;
  padding: 10px 8px;
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.16);
  border: 1px solid rgba(255, 250, 246, 0.24);
  text-align: center;
}

.countdown__item strong {
  display: block;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.15rem, 4.2vw, 1.9rem);
  line-height: 1;
  color: #fff;
}

.countdown__item span {
  display: block;
  margin-top: 5px;
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  color: rgba(255, 250, 246, 0.9);
}

.mega-date {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 4.6rem;
  line-height: 0.9;
  font-weight: 700;
  animation: date-glow 3.8s ease-in-out infinite;
}

.details__visual {
  min-height: 320px;
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid rgba(255, 250, 246, 0.3);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
  position: relative;
  max-width: 100%;
}

.details__visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: 0.86;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), opacity 900ms ease;
}

.details__visual video {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  opacity: 0.92;
  transition: transform 900ms cubic-bezier(0.16, 1, 0.3, 1), opacity 900ms ease;
}

.location-band {
  padding: 72px 0;
  background:
    linear-gradient(90deg, rgba(255, 250, 246, 0.94), rgba(255, 250, 246, 0.76)),
    url("https://images.unsplash.com/photo-1468413253725-0d5181091126?auto=format&fit=crop&w=1800&q=82") center/cover;
}

.location__layout {
  display: grid;
  gap: 26px;
  align-items: center;
}

.location__copy p:not(.section-label) {
  max-width: 520px;
  margin: 18px 0 0;
  color: var(--soft-ink);
  line-height: 1.75;
  font-weight: 700;
}

.location__ticket {
  display: grid;
  gap: 6px;
  padding: 22px;
  border: 1px solid rgba(56, 41, 35, 0.16);
  border-radius: 8px;
  background: rgba(255, 250, 246, 0.8);
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease;
  overflow: hidden;
  position: relative;
  min-width: 0;
}

.location__ticket:hover {
  transform: translateY(-4px);
  box-shadow: 0 28px 80px rgba(62, 38, 30, 0.22);
}

.location__ticket span {
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

.location__ticket strong {
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 2rem;
  font-weight: 600;
  overflow-wrap: anywhere;
}

.dress {
  padding: 78px 0 88px;
  background:
    linear-gradient(180deg, #fff8f3 0%, #f8e1d4 100%);
}

.pre-rsvp-reel {
  padding: 72px 0;
  background:
    linear-gradient(135deg, rgba(49, 94, 93, 0.9), rgba(216, 111, 98, 0.82)),
    radial-gradient(circle at 22% 24%, rgba(255, 250, 246, 0.24), transparent 30%);
  color: var(--pearl);
}

.pre-rsvp-reel__layout {
  display: grid;
  gap: 24px;
  align-items: center;
}

.pre-rsvp-reel__media {
  position: relative;
  width: min(100%, 420px);
  justify-self: center;
  border-radius: 18px;
  padding: 8px;
  border: 1px solid rgba(255, 250, 246, 0.3);
  background: rgba(255, 250, 246, 0.12);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.26);
  overflow: hidden;
}

.pre-rsvp-reel__media::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 0 42%, rgba(255, 255, 255, 0.3) 52%, transparent 62% 100%);
  transform: translateX(-120%);
  animation: image-sweep 7.2s ease-in-out infinite;
  pointer-events: none;
}

.pre-rsvp-reel__video {
  width: 100%;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  border-radius: 12px;
  background: #0f0f0f;
}

.pre-rsvp-reel__copy .section-label,
.pre-rsvp-reel__copy .editorial-title {
  color: var(--pearl);
}

.pre-rsvp-reel__copy p:not(.section-label) {
  max-width: 520px;
  margin: 18px 0 0;
  line-height: 1.75;
  font-weight: 700;
  color: rgba(255, 250, 246, 0.92);
}

.gifts-teaser {
  padding: 70px 0;
  background:
    radial-gradient(circle at 16% 20%, rgba(255, 250, 246, 0.56), transparent 32%),
    linear-gradient(135deg, rgba(232, 166, 173, 0.2), rgba(126, 182, 172, 0.18)),
    #fff5ec;
}

.gifts-teaser__layout {
  display: grid;
  gap: 26px;
  align-items: center;
}

.gifts-teaser__copy p:not(.section-label) {
  max-width: 640px;
  margin: 18px 0 0;
  color: var(--soft-ink);
  line-height: 1.78;
  font-weight: 700;
}

.gifts-teaser__actions {
  display: grid;
  gap: 12px;
  width: min(100%, 560px);
}

.button--gift {
  color: #fff;
  border: 1px solid rgba(255, 250, 246, 0.3);
  background: linear-gradient(135deg, #d76f62, #b85f96, #4f8f91);
  box-shadow: 0 20px 56px rgba(98, 52, 74, 0.28);
  animation: gift-glow 3.8s ease-in-out infinite;
}

.gift-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  align-items: end;
  padding: 10px;
  background: rgba(20, 14, 12, 0.62);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 280ms ease;
}

.gift-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gift-modal__panel {
  width: min(100%, 1080px);
  max-height: min(92svh, 900px);
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  background:
    linear-gradient(170deg, rgba(255, 250, 246, 0.98), rgba(255, 244, 235, 0.97)),
    radial-gradient(circle at 80% 10%, rgba(126, 182, 172, 0.18), transparent 40%);
  box-shadow: 0 32px 100px rgba(0, 0, 0, 0.34);
  transform: translateY(18px) scale(0.98);
  transition: transform 340ms cubic-bezier(0.16, 1, 0.3, 1);
}

.gift-modal.is-open .gift-modal__panel {
  transform: translateY(0) scale(1);
}

.gift-modal__head {
  position: relative;
  padding: 22px 18px 16px;
  color: var(--ink);
  background:
    linear-gradient(120deg, rgba(232, 166, 173, 0.24), rgba(126, 182, 172, 0.2), rgba(239, 157, 120, 0.26)),
    rgba(255, 250, 246, 0.8);
  border-bottom: 1px solid rgba(56, 41, 35, 0.12);
}

.gift-modal__head h2 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.5rem, 4.2vw, 2.4rem);
  line-height: 1.05;
}

.gift-modal__head p {
  margin: 12px 0 0;
  max-width: 720px;
  color: var(--soft-ink);
  line-height: 1.65;
  font-weight: 700;
}

.gift-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(56, 41, 35, 0.2);
  background: rgba(255, 250, 246, 0.78);
  color: var(--ink);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.gift-modal__content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  padding: 14px;
  overflow: auto;
  max-height: calc(min(92svh, 900px) - 172px);
}

.gift-modal__list-wrap,
.gift-modal__bank {
  border: 1px solid rgba(56, 41, 35, 0.14);
  border-radius: 14px;
  background: rgba(255, 250, 246, 0.82);
  box-shadow: 0 14px 34px rgba(62, 38, 30, 0.08);
}

.gift-modal__list-wrap {
  padding: 14px 12px;
}

.gift-modal__bank {
  padding: 14px 12px 16px;
}

.gift-modal__list-wrap h3,
.gift-modal__bank h3 {
  margin: 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 1.2rem;
}

.gift-list {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.gift-modal__pick-hint {
  margin: 10px 0 0;
  color: var(--soft-ink);
  font-size: 0.86rem;
  font-weight: 700;
}

.gift-list li {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-areas:
    "title price"
    "cta cta";
  gap: 10px;
  align-items: center;
  padding: 11px 10px;
  border-radius: 10px;
  border: 1px solid rgba(56, 41, 35, 0.1);
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.8), rgba(255, 248, 242, 0.9));
}

.gift-list li span {
  grid-area: title;
  min-width: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.35;
}

.gift-list li strong {
  grid-area: price;
  color: var(--coral);
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.gift-list__btn {
  grid-area: cta;
  justify-self: start;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(56, 41, 35, 0.16);
  background: rgba(255, 250, 246, 0.9);
  color: var(--ink);
  font: inherit;
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.gift-list__btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(56, 41, 35, 0.16);
}

.gift-list__btn.is-active {
  color: #fff;
  border-color: rgba(255, 250, 246, 0.28);
  background: linear-gradient(135deg, #d76f62, #4f8f91);
}

.gift-modal__bank-name {
  margin: 12px 0;
  color: var(--soft-ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.gift-modal__selected {
  margin: 10px 0 0;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 800;
}

.gift-modal__bank dl {
  margin: 0;
  display: grid;
  gap: 9px;
}

.gift-modal__bank dl div {
  display: grid;
  gap: 2px;
  padding: 8px 9px;
  border-radius: 10px;
  border: 1px solid rgba(56, 41, 35, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.gift-modal__bank dt {
  color: var(--soft-ink);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gift-modal__bank dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.gift-modal__hint {
  margin: 12px 0 14px;
  color: var(--soft-ink);
  line-height: 1.62;
  font-size: 0.9rem;
  font-weight: 700;
}

.gift-modal__cta {
  width: 100%;
}

.gift-modal__bank.is-hidden {
  display: none;
}

.gift-modal__content {
  grid-template-columns: 1fr !important;
}

.gift-bank-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  place-items: center;
  padding: 12px;
  background: rgba(20, 14, 12, 0.66);
  backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 220ms ease;
}

.gift-bank-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gift-bank-modal__panel {
  width: min(100%, 560px);
  max-height: min(92svh, 860px);
  overflow: auto;
  border-radius: 18px;
  padding: 18px 14px 16px;
  background:
    linear-gradient(170deg, rgba(255, 250, 246, 0.99), rgba(255, 244, 235, 0.97)),
    radial-gradient(circle at 80% 10%, rgba(126, 182, 172, 0.18), transparent 40%);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.34);
}

.gift-bank-modal__close {
  float: right;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(56, 41, 35, 0.2);
  background: rgba(255, 250, 246, 0.86);
  color: var(--ink);
  font: inherit;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
}

.gift-bank-modal__panel h3 {
  clear: both;
  margin: 2px 0 0;
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: clamp(1.3rem, 4vw, 2rem);
}

.gift-bank-modal__dl {
  margin: 0;
  display: grid;
  gap: 9px;
}

.gift-bank-modal__dl div {
  display: grid;
  gap: 2px;
  padding: 8px 9px;
  border-radius: 10px;
  border: 1px solid rgba(56, 41, 35, 0.12);
  background: rgba(255, 255, 255, 0.74);
}

.gift-bank-modal__dl dt {
  color: var(--soft-ink);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.gift-bank-modal__dl dd {
  margin: 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

body.modal-open {
  overflow: hidden;
}

.scale-veil {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.28;
  background:
    radial-gradient(circle at 20px 24px, transparent 0 18px, rgba(126, 182, 172, 0.36) 19px 20px, transparent 21px),
    radial-gradient(circle at 60px 24px, transparent 0 18px, rgba(232, 166, 173, 0.28) 19px 20px, transparent 21px);
  background-size: 80px 46px;
  mask-image: linear-gradient(180deg, transparent, #000 12%, #000 78%, transparent);
  animation: scales-drift 18s linear infinite;
}

.dress__layout {
  display: grid;
  gap: 30px;
}

.dress__copy p:not(.section-label) {
  margin: 16px 0 0;
  color: var(--soft-ink);
  font-size: 1.1rem;
  font-weight: 800;
}

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

.swatch {
  min-height: 168px;
  position: relative;
  display: flex;
  align-items: end;
  padding: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 250, 246, 0.72);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(62, 38, 30, 0.12);
  transform: translateY(0) rotate(0deg);
  transition: transform 300ms ease, box-shadow 300ms ease;
  min-width: 0;
}

.swatch:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 26px 60px rgba(62, 38, 30, 0.18);
}

.swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.34), transparent 38%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent 48%);
}

.swatch::after {
  content: "";
  position: absolute;
  inset: auto 12px 12px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 250, 246, 0.82), transparent);
  transform: translateX(-120%);
  animation: swatch-flash 4.8s ease-in-out infinite;
}

.swatch:nth-child(2)::after {
  animation-delay: 0.7s;
}

.swatch:nth-child(3)::after {
  animation-delay: 1.3s;
}

.swatch:nth-child(4)::after {
  animation-delay: 1.9s;
}

.swatch span {
  position: relative;
  z-index: 1;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
}

.swatch--nude {
  background: #dfb79e;
}

.swatch--beige {
  background: #d8c0a6;
}

.swatch--coffee {
  background: #8d6048;
}

.swatch--coffee span {
  color: var(--pearl);
}

.swatch--white {
  background: #fffaf3;
}

.pink-note {
  max-width: 680px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.pink-note span {
  display: block;
  color: var(--coral);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  animation: pink-pulse 3.6s ease-in-out infinite;
}

.pink-note p {
  margin: 8px 0 0;
  color: var(--soft-ink);
  font-weight: 800;
}

.rsvp {
  min-height: 720px;
  display: grid;
  align-items: center;
  color: var(--pearl);
  isolation: isolate;
}

.rsvp__image,
.rsvp__image img,
.rsvp__overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.rsvp__image {
  z-index: 0;
}

.rsvp__image img {
  object-fit: cover;
}

.rsvp__overlay {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 32, 32, 0.9), rgba(91, 47, 43, 0.6), rgba(49, 94, 93, 0.58)),
    radial-gradient(circle at 72% 22%, rgba(232, 166, 173, 0.36), transparent 28%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.58));
  animation: rsvp-color-shift 8s ease-in-out infinite;
}

.rsvp__waves {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  height: 44%;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.8;
}

.rsvp__waves span {
  position: absolute;
  left: 50%;
  bottom: -14%;
  width: 140%;
  height: 130px;
  border-radius: 50%;
  transform: translateX(-50%);
  background: linear-gradient(180deg, transparent, rgba(255, 250, 246, 0.24));
  filter: blur(1px);
  animation: rsvp-wave 8s ease-in-out infinite;
}

.rsvp__waves span:nth-child(2) {
  bottom: 5%;
  opacity: 0.6;
  animation-delay: -2.8s;
}

.rsvp__waves span:nth-child(3) {
  bottom: 18%;
  opacity: 0.42;
  animation-delay: -5.2s;
}

.rsvp__constellation {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.rsvp__constellation span {
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--pearl);
  box-shadow: 0 0 20px rgba(255, 250, 246, 0.76), 0 0 42px rgba(126, 182, 172, 0.36);
  animation: constellation-pulse 3.2s ease-in-out infinite;
}

.rsvp__constellation span:nth-child(1) {
  left: 12%;
  top: 18%;
}

.rsvp__constellation span:nth-child(2) {
  left: 32%;
  top: 12%;
  width: 6px;
  height: 6px;
  animation-delay: 0.5s;
}

.rsvp__constellation span:nth-child(3) {
  right: 18%;
  top: 24%;
  animation-delay: 1s;
}

.rsvp__constellation span:nth-child(4) {
  right: 28%;
  bottom: 20%;
  width: 7px;
  height: 7px;
  animation-delay: 1.6s;
}

.rsvp__constellation span:nth-child(5) {
  left: 16%;
  bottom: 28%;
  width: 6px;
  height: 6px;
  animation-delay: 2.1s;
}

.rsvp__pearls {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

.rsvp__pearls span {
  position: absolute;
}

.rsvp__pearls span:nth-child(1) {
  left: 8%;
  top: 20%;
}

.rsvp__pearls span:nth-child(2) {
  right: 12%;
  top: 28%;
  width: 20px;
  height: 20px;
  animation-delay: 0.8s;
}

.rsvp__pearls span:nth-child(3) {
  left: 22%;
  bottom: 18%;
  width: 11px;
  height: 11px;
  animation-delay: 1.4s;
}

.rsvp__pearls span:nth-child(4) {
  right: 20%;
  bottom: 22%;
  width: 15px;
  height: 15px;
  animation-delay: 2.1s;
}

.rsvp::before {
  z-index: 2;
  animation-delay: 1.2s;
}

.rsvp__content {
  max-width: 620px;
  padding: 34px 0;
}

.rsvp .section-label,
.rsvp .editorial-title {
  color: var(--pearl);
}

.rsvp__label {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid rgba(255, 250, 246, 0.24);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.1);
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
}

.rsvp .editorial-title {
  max-width: 760px;
  text-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  animation: rsvp-title-glow 4.6s ease-in-out infinite;
}

.rsvp__content p:not(.section-label) {
  margin: 20px 0 28px;
  max-width: 520px;
  line-height: 1.75;
  font-weight: 700;
}

.rsvp__mini-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 18px;
}

.rsvp__mini-row span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 250, 246, 0.22);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.12);
  color: rgba(255, 250, 246, 0.9);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: mini-chip-float 3.4s ease-in-out infinite;
}

.rsvp__mini-row span:nth-child(2) {
  animation-delay: 0.45s;
}

.rsvp__mini-row span:nth-child(3) {
  animation-delay: 0.9s;
}

.finale {
  padding: 86px 0 94px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(255, 246, 240, 0.94), rgba(247, 209, 194, 0.9)),
    radial-gradient(circle at 50% 0%, rgba(126, 182, 172, 0.34), transparent 42%);
}

.finale__tail {
  position: absolute;
  left: 50%;
  top: 18px;
  width: 210px;
  opacity: 0.18;
  transform: translateX(-50%) rotate(8deg);
  pointer-events: none;
  animation: finale-tail-float 8.4s ease-in-out infinite;
}

.hashtag {
  margin: 0 0 18px;
  color: var(--coral);
  font-family: "Bodoni Moda", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  animation: hashtag-pop 4.2s ease-in-out infinite;
}

.finale__text {
  margin: 0 auto;
  max-width: 780px;
  color: var(--ink);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2.4rem;
  line-height: 1.05;
  font-weight: 700;
}

.finale__subcopy {
  margin: 18px auto 0;
  max-width: 560px;
  color: var(--soft-ink);
  font-size: 1.1rem;
  line-height: 1.7;
  font-weight: 800;
}

.footer {
  padding: 22px 18px 28px;
  text-align: center;
  color: rgba(56, 41, 35, 0.72);
  background: #fff3eb;
  font-size: 0.9rem;
  font-weight: 700;
}

.reveal {
  opacity: 0;
  transform: translateY(34px) scale(0.98);
  filter: blur(8px);
  transition:
    opacity 860ms ease,
    transform 860ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 860ms ease;
}

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

@keyframes image-breathe {
  from {
    transform: scale(1.04) translateY(0);
  }
  to {
    transform: scale(1.1) translateY(-10px);
  }
}

@keyframes light-pulse {
  0%,
  100% {
    opacity: 0.55;
    transform: translateY(0);
  }
  50% {
    opacity: 1;
    transform: translateY(-2px);
  }
}

@keyframes sparkle {
  0%,
  100% {
    opacity: 0.2;
    transform: scale(0.72) rotate(0deg);
  }
  50% {
    opacity: 1;
    transform: scale(1.08) rotate(18deg);
  }
}

@keyframes hero-sheen {
  0%,
  32% {
    transform: translateX(-110%);
  }
  58%,
  100% {
    transform: translateX(110%);
  }
}

@keyframes ribbon-glide {
  0%,
  100% {
    transform: translateX(-8%) rotate(-8deg);
    opacity: 0.34;
  }
  50% {
    transform: translateX(10%) rotate(-8deg);
    opacity: 0.9;
  }
}

@keyframes title-shimmer {
  0%,
  100% {
    background-position: 0% 50%;
  }
  48%,
  62% {
    background-position: 100% 50%;
  }
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes image-sweep {
  0%,
  42% {
    transform: translateX(-120%);
  }
  68%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes comet {
  0% {
    transform: translateX(0) translateY(0) rotate(-24deg);
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  65%,
  100% {
    transform: translateX(150vw) translateY(42px) rotate(-24deg);
    opacity: 0;
  }
}

@keyframes date-glow {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(255, 250, 246, 0);
  }
  50% {
    text-shadow: 0 0 34px rgba(255, 250, 246, 0.5);
  }
}

@keyframes swatch-flash {
  0%,
  42% {
    transform: translateX(-120%);
  }
  65%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes pink-pulse {
  0%,
  100% {
    text-shadow: 0 0 0 rgba(216, 111, 98, 0);
  }
  50% {
    text-shadow: 0 0 22px rgba(216, 111, 98, 0.28);
  }
}

@keyframes hashtag-pop {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes ripple-pop {
  to {
    transform: translate(-50%, -50%) scale(18);
    opacity: 0;
  }
}

@keyframes tail-float {
  0%,
  100% {
    transform: translateY(0) rotate(var(--tail-rotate, -16deg));
  }
  50% {
    transform: translateY(-14px) rotate(calc(var(--tail-rotate, -16deg) + 3deg));
  }
}

@keyframes finale-tail-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(8deg);
  }
  50% {
    transform: translateX(-50%) translateY(-12px) rotate(11deg);
  }
}

@keyframes bubble-rise {
  0% {
    transform: translateY(0) scale(0.8);
    opacity: 0;
  }
  18%,
  72% {
    opacity: 0.8;
  }
  100% {
    transform: translateY(-96px) scale(1.15);
    opacity: 0;
  }
}

@keyframes pearl-shimmer {
  0%,
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.72;
  }
  50% {
    transform: translateY(-4px) scale(1.08);
    opacity: 1;
  }
}

@keyframes scales-drift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 240px 100px;
  }
}

@keyframes current-glide {
  0%,
  100% {
    background-position: -30% 50%, 0 0, 0 0;
    transform: translateY(0);
  }
  50% {
    background-position: 130% 50%, 0 0, 0 0;
    transform: translateY(-10px);
  }
}

@keyframes cta-breathe {
  0%,
  100% {
    transform: translateY(0) scale(1);
    box-shadow:
      0 22px 70px rgba(37, 211, 102, 0.34),
      0 0 0 1px rgba(255, 255, 255, 0.26) inset;
  }
  50% {
    transform: translateY(-4px) scale(1.018);
    box-shadow:
      0 30px 90px rgba(37, 211, 102, 0.46),
      0 0 34px rgba(255, 250, 246, 0.18),
      0 0 0 1px rgba(255, 255, 255, 0.34) inset;
  }
}

@keyframes spark-spin {
  from {
    transform: rotate(0deg) scale(1);
  }
  50% {
    transform: rotate(180deg) scale(1.12);
  }
  to {
    transform: rotate(360deg) scale(1);
  }
}

@keyframes rsvp-color-shift {
  0%,
  100% {
    filter: saturate(1) hue-rotate(0deg);
  }
  50% {
    filter: saturate(1.18) hue-rotate(-8deg);
  }
}

@keyframes rsvp-wave {
  0%,
  100% {
    transform: translateX(-50%) translateY(0) rotate(1deg);
  }
  50% {
    transform: translateX(-50%) translateY(-14px) rotate(-1deg);
  }
}

@keyframes constellation-pulse {
  0%,
  100% {
    opacity: 0.34;
    transform: scale(0.72);
  }
  50% {
    opacity: 1;
    transform: scale(1.18);
  }
}

@keyframes rsvp-title-glow {
  0%,
  100% {
    text-shadow: 0 22px 70px rgba(0, 0, 0, 0.32);
  }
  50% {
    text-shadow:
      0 22px 70px rgba(0, 0, 0, 0.32),
      0 0 34px rgba(255, 250, 246, 0.34);
  }
}

@keyframes mini-chip-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

@keyframes interlude-zoom {
  from {
    transform: scale(1.02) translateY(0);
  }
  to {
    transform: scale(1.09) translateY(-10px);
  }
}

@keyframes music-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.8;
  }
  50% {
    transform: scale(1.2);
    opacity: 1;
  }
}

@keyframes gift-glow {
  0%,
  100% {
    box-shadow: 0 20px 56px rgba(98, 52, 74, 0.28);
  }
  50% {
    box-shadow: 0 28px 70px rgba(98, 52, 74, 0.42), 0 0 26px rgba(255, 250, 246, 0.18);
  }
}

@keyframes interlude-drift-mobile {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-10px);
  }
}

@media (max-width: 699px) {
  .section__inner {
    width: min(calc(100% - 28px), var(--max));
  }

  .hero {
    min-height: 100svh;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 78px 14px 18px;
  }

  .hero__content {
    width: 100%;
    padding: 52px 0 20px;
  }

  .hero__title {
    font-size: 3.15rem;
    line-height: 0.9;
    max-width: 100%;
    overflow-wrap: anywhere;
  }

  .hero__chapter {
    font-size: 1.46rem;
  }

  .hero__quote {
    max-width: 22rem;
    font-size: 0.98rem;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-countdown {
    margin-top: 14px;
    padding: 12px 10px 10px;
  }

  .hero-countdown__top {
    font-size: 0.82rem;
  }

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

  .button {
    width: 100%;
    min-height: 50px;
    padding-inline: 16px;
    white-space: normal;
    text-align: center;
  }

  .button--mega {
    min-height: 72px;
    padding: 14px 18px;
    font-size: 1.04rem;
    text-align: center;
  }

  .button__spark {
    width: 36px;
    height: 36px;
  }

  .hero__dock {
    position: relative;
    left: auto;
    bottom: auto;
    transform: none;
    width: 100%;
    grid-template-columns: 1fr;
    margin: 0;
  }

  .hero__dock div {
    display: grid;
    grid-template-columns: 82px 1fr;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
  }

  .hero__dock span {
    font-size: 0.68rem;
  }

  .hero__dock strong {
    margin-top: 0;
    font-size: 0.94rem;
  }

  .marquee-track {
    gap: 22px;
    padding-block: 12px;
    animation-duration: 18s;
  }

  .music-toggle {
    right: 10px;
    bottom: 10px;
    min-height: 40px;
    padding: 8px 11px;
    font-size: 0.66rem;
  }

  .music-toggle__dot {
    width: 8px;
    height: 8px;
  }

  .photo-interlude {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    min-height: clamp(440px, 112vw, 760px);
    aspect-ratio: auto;
    max-height: none;
  }

  .photo-interlude.reveal,
  .photo-interlude.reveal.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
  }

  .photo-interlude::before,
  .photo-interlude::after {
    height: clamp(28px, 8vw, 58px);
    left: -22%;
    width: 144%;
  }

  .photo-interlude img {
    object-position: center 36%;
    transform: scale(1);
    animation: interlude-drift-mobile 14s ease-in-out infinite alternate;
  }

  .photo-interlude--lore3 img {
    object-position: center 30%;
  }

  .photo-interlude--lore4 img {
    object-position: center 28%;
  }

  .photo-interlude--lore5 img {
    object-position: center 32%;
  }

  .marquee-track span {
    font-size: 0.76rem;
  }

  .marquee-track span::after {
    margin-left: 22px;
  }

  .intro,
  .story-reel,
  .details,
  .dress,
  .gifts-teaser,
  .pre-rsvp-reel,
  .location-band,
  .finale {
    padding-block: 62px;
  }

  .intro__media,
  .details__visual {
    min-height: 280px;
  }

  .editorial-title {
    font-size: 2.42rem;
    line-height: 1;
  }

  .story-reel__frame {
    width: min(100%, 360px);
    border-radius: 18px;
    padding: 8px;
  }

  .story-reel__video {
    border-radius: 13px;
  }

  .letter p {
    font-size: 1.28rem;
  }

  .mega-date {
    font-size: 3.6rem;
  }

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

  .location__ticket {
    padding: 18px;
  }

  .location__ticket strong {
    font-size: 1.62rem;
  }

  .swatch-run {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .swatch {
    min-height: 128px;
    padding: 12px;
  }

  .pink-note span {
    font-size: 1.42rem;
  }

  .rsvp {
    min-height: 640px;
    padding-block: 62px;
  }

  .rsvp__content {
    width: min(calc(100% - 28px), var(--max));
    padding-block: 22px;
  }

  .rsvp__constellation span:nth-child(n + 4),
  .rsvp__waves span:nth-child(3) {
    display: none;
  }

  .rsvp__mini-row {
    gap: 6px;
  }

  .gift-modal {
    padding: 8px;
  }

  .gift-modal__head {
    padding: 20px 14px 14px;
  }

  .gift-modal__close {
    top: 10px;
    right: 10px;
    min-height: 34px;
  }

  .gift-modal__content {
    padding: 10px;
    max-height: calc(min(92svh, 900px) - 168px);
  }

  .gift-list li {
    grid-template-columns: 1fr;
    gap: 6px;
  }

  .hashtag {
    font-size: 2.5rem;
  }

  .finale__text {
    font-size: 2.05rem;
  }
}

@media (max-width: 360px) {
  .hero__title {
    font-size: 2.72rem;
  }

  .hero__dock div {
    grid-template-columns: 74px 1fr;
    gap: 8px;
    padding-inline: 10px;
  }

  .hero__dock strong {
    font-size: 0.84rem;
  }

  .editorial-title {
    font-size: 2.14rem;
  }

  .mega-date {
    font-size: 3.05rem;
  }

  .swatch-run {
    grid-template-columns: 1fr;
  }

  .button--mega {
    text-align: center;
    gap: 4px;
  }

  .button--mega small {
    grid-column: auto;
  }

  .button__spark {
    grid-row: auto;
  }

  .hero-countdown__item strong {
    font-size: 1.02rem;
  }
}

@media (min-width: 700px) {
  .section__inner {
    width: min(calc(100% - 56px), var(--max));
  }

  .hero {
    padding-inline: 28px;
  }

  .hero__title {
    font-size: 6rem;
  }

  .hero__chapter {
    font-size: 2.25rem;
  }

  .hero__quote {
    font-size: 1.12rem;
  }

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

  .editorial-title {
    font-size: 4rem;
  }

  .intro__layout,
  .story-reel__layout,
  .details__layout,
  .location__layout {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .mermaid__layout {
    grid-template-columns: 0.58fr 1fr;
  }

  .location__layout {
    grid-template-columns: 1fr 0.72fr;
  }

  .story-reel__layout {
    grid-template-columns: 0.92fr 1.08fr;
  }

  .gifts-teaser__layout {
    grid-template-columns: 1.06fr 0.94fr;
  }

  .pre-rsvp-reel__layout {
    grid-template-columns: 0.86fr 1.14fr;
  }

  .gift-modal {
    align-items: center;
    padding: 16px;
  }

  .gift-modal__content {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 14px;
  }

  .swatch-run {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .mega-date {
    font-size: 6.5rem;
  }

  .hashtag {
    font-size: 4.8rem;
  }

  .finale__text {
    font-size: 3.6rem;
  }
}

@media (min-width: 1040px) {
  .hero {
    min-height: 90svh;
  }

  .hero__content {
    padding-bottom: 132px;
  }

  .hero__dock div {
    padding: 14px 16px;
  }

  .hero__dock strong {
    font-size: 1rem;
  }

  .hero__title {
    font-size: 8.2rem;
  }

  .hero__tail {
    right: 6vw;
    bottom: 120px;
    width: 250px;
  }

  .intro,
  .details,
  .dress,
  .gifts-teaser {
    padding-block: 112px;
  }

  .editorial-title {
    font-size: 5.1rem;
  }

  .letter p {
    font-size: 1.7rem;
  }

  .mega-date {
    font-size: 8rem;
  }

  .location__ticket strong {
    font-size: 2.6rem;
  }
}

@media (max-width: 520px) {
  .hero__tail {
    right: -68px;
    bottom: 126px;
    width: 150px;
    opacity: 0.48;
  }

  .hero__bubbles span:nth-child(n + 4),
  .rsvp__pearls span:nth-child(n + 3) {
    display: none;
  }

  .mermaid-interlude {
    padding: 58px 0;
  }

  .mermaid__mark {
    width: 168px;
  }

  .mermaid__copy {
    text-align: center;
  }

  .scale-veil {
    opacity: 0.18;
    background-size: 64px 38px;
  }

  .finale__tail {
    width: 160px;
    top: 28px;
  }
}

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

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

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