@font-face {
  font-family: "Handvetica Neue";
  src: url("./assets/dehinted-HandveticaNeue-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

:root {
  --page-bg: #020816;
  --site-background: url("./assets/site-background.jpg");
  --overlay-top: rgba(1, 3, 14, 0.48);
  --overlay-bottom: rgba(3, 5, 18, 0.7);
  --story-font: "Handvetica Neue", sans-serif;
  --display-font: "Handvetica Neue", sans-serif;
  --body-font: "Handvetica Neue", sans-serif;
  --continuation-safe-left: clamp(1.05rem, 3vw, 2.3rem);
  --continuation-safe-inner: clamp(0.3rem, 1vw, 0.9rem);
  --continuation-form-safe-left: clamp(0.95rem, 2.6vw, 1.8rem);
  --continuation-content-max: 76rem;
  --continuation-copy-max: 43rem;
  --continuation-text: rgba(238, 243, 255, 0.95);
  --continuation-muted: rgba(202, 214, 240, 0.86);
  --continuation-heading: rgba(249, 245, 238, 0.97);
  --continuation-panel-bg: transparent;
  --continuation-panel-border: transparent;
  --continuation-panel-shadow: none;
  --continuation-soft-glow: none;
  --continuation-surface-highlight: rgba(255, 247, 226, 0.06);
  --continuation-surface-line: rgba(255, 255, 255, 0.05);
  --continuation-radius-lg: 1.8rem;
  --continuation-radius-md: 1.15rem;
  --continuation-section-gap: clamp(2.6rem, 5.6vw, 4.8rem);
  --planet-appear-delay: 2s;
  --planet-large-size: clamp(11rem, 42vw, 22rem);
  --planet-small-size: clamp(2.4rem, 4.15vw, 3.25rem);
  --planet-one-image: url("./assets/%D0%B1%D0%B0%D1%88%D0%BA%D0%B8%D1%80%D0%B8%D1%8F.png");
  --planet-two-image: url("./assets/%D1%83%D0%BB%D1%8C%D1%8F%D0%BD%D0%BE%D0%B2%D1%81%D0%BA-960.png");
  --planet-center-image: url("./assets/%D0%BC%D0%B0%D0%BB%D0%B5%D0%BD%D1%8C%D0%BA%D0%B0%D1%8F%20%D0%BF%D0%BB%D0%B0%D0%BD%D0%B5%D1%82%D0%B0-640.png");
  --planet-memory-one-image: url("./assets/memory-right-768.png");
  --planet-memory-two-image: url("./assets/memory-left.png");
  --planet-memory-center-image: url("./assets/%D1%81%D0%B5%D1%80%D0%B4%D1%86%D0%B5-512.png");
  --planet-one-surface:
    radial-gradient(circle at 32% 30%, rgba(255, 244, 220, 0.92), rgba(255, 208, 147, 0.75) 24%, rgba(179, 112, 255, 0.48) 52%, rgba(74, 38, 125, 0.98) 100%);
  --planet-two-surface:
    radial-gradient(circle at 34% 28%, rgba(255, 255, 255, 0.94), rgba(197, 218, 255, 0.82) 24%, rgba(95, 126, 255, 0.54) 54%, rgba(28, 33, 93, 0.98) 100%);
  --planet-small-surface:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.96), rgba(203, 214, 255, 0.78) 40%, rgba(106, 123, 255, 0.42) 72%, rgba(61, 75, 143, 0.94) 100%);
}

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

html,
body {
  margin: 0;
  padding: 0;
  min-height: 100%;
  overflow-x: hidden;
  max-width: 100%;
  overscroll-behavior-x: none;
}

body {
  margin: 0;
  position: relative;
  isolation: isolate;
  background-color: var(--page-bg);
  background-image: var(--site-background);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  overflow-x: hidden;
  overflow-anchor: none;
}

body.site-is-loading {
  overflow: hidden;
}

body.hero-scroll-locked {
  overflow: hidden;
  overscroll-behavior: none;
}

html[lang="tt"] {
  --story-font: "Noto Sans", "Segoe UI", "Arial Unicode MS", system-ui, sans-serif;
  --display-font: "Noto Sans", "Segoe UI", "Arial Unicode MS", system-ui, sans-serif;
  --body-font: "Noto Sans", "Segoe UI", "Arial Unicode MS", system-ui, sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    linear-gradient(180deg, rgba(2, 5, 18, 0.22), rgba(2, 5, 18, 0.56)),
    var(--site-background);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.page {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100vw;
  background: transparent;
  overflow-anchor: none;
  opacity: 1;
  filter: blur(0);
  transition:
    opacity 560ms ease,
    filter 680ms ease;
}

body.site-is-loading .page {
  opacity: 0.01;
  filter: blur(16px);
}

.page::before {
  content: none;
}

.page::after {
  content: none;
}

.site-boot-splash {
  position: fixed;
  inset: 0;
  z-index: 5000;
  pointer-events: none;
  opacity: 1;
  visibility: visible;
  background:
    radial-gradient(circle at 50% 46%, rgba(106, 139, 255, 0.2), rgba(106, 139, 255, 0.04) 18%, rgba(106, 139, 255, 0) 42%),
    linear-gradient(180deg, rgba(2, 5, 18, 0.2), rgba(2, 5, 18, 0.62)),
    var(--site-background);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition:
    opacity 680ms ease,
    visibility 680ms ease;
}

body.site-is-ready .site-boot-splash {
  opacity: 0;
  visibility: hidden;
}

.site-boot-splash__halo,
.site-boot-splash__core {
  position: absolute;
  left: 50%;
  top: 48%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.site-boot-splash__halo {
  width: clamp(8rem, 24vw, 16rem);
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(241, 247, 255, 0.28), rgba(209, 226, 255, 0.14) 32%, rgba(154, 187, 255, 0.06) 52%, rgba(154, 187, 255, 0) 74%);
  filter: blur(10px);
  animation: siteBootPulse 1.7s ease-in-out infinite;
}

.site-boot-splash__core {
  width: clamp(0.72rem, 1.45vw, 1.05rem);
  aspect-ratio: 1;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.98), rgba(241, 247, 255, 0.92) 48%, rgba(202, 223, 255, 0.18) 76%, rgba(202, 223, 255, 0) 100%);
  box-shadow:
    0 0 0.7rem rgba(255, 255, 255, 0.8),
    0 0 1.6rem rgba(197, 220, 255, 0.48),
    0 0 2.8rem rgba(120, 145, 255, 0.24);
}

.slide {
  position: relative;
  overflow: hidden;
  overflow: clip;
}

.hero-stage {
  position: relative;
  min-height: var(--hero-stage-height, 100vh);
  height: var(--hero-stage-height, 100vh);
  overflow: hidden;
  overflow: clip;
  isolation: isolate;
  touch-action: pan-y pinch-zoom;
  overflow-anchor: none;
  --hero-vignette-opacity: 0.54;
  --hero-focus-opacity: 0.12;
  --hero-glow-opacity: 0.44;
  --hero-near-opacity: 0.42;
  --hero-far-opacity: 0.24;
  --hero-constellation-opacity: 0.26;
  --hero-text-support-opacity: 0.18;
  --hero-center-clear-opacity: 0.2;
  --hero-scene-scale: 1;
  --hero-scene-shift-y: 0rem;
  --hero-text-shift-y: 0.65rem;
  --hero-cta-opacity: 0;
  background: transparent;
}

.hero-stage::before,
.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  transition:
    opacity 1.2s ease,
    transform 1.2s ease;
}

.hero-stage::before {
  z-index: 0;
  opacity: var(--hero-vignette-opacity);
  background:
    radial-gradient(circle at 50% 46%, rgba(255, 255, 255, 0) 0 16%, rgba(8, 13, 34, 0.08) 34%, rgba(1, 4, 14, 0.68) 100%),
    linear-gradient(180deg, rgba(1, 4, 14, 0.28), rgba(1, 4, 14, 0.04) 28%, rgba(1, 4, 14, 0.42) 100%);
}

.hero-stage::after {
  z-index: 1;
  opacity: var(--hero-focus-opacity);
  background:
    radial-gradient(circle at 50% 48%, rgba(156, 184, 255, 0.26), rgba(156, 184, 255, 0.06) 18%, rgba(156, 184, 255, 0) 42%),
    radial-gradient(circle at 50% 48%, rgba(255, 239, 198, 0.14), rgba(255, 239, 198, 0) 26%);
  transform: scale(1.03);
}

.hero-stage[data-stage="calm"] {
  --hero-vignette-opacity: 0.6;
  --hero-focus-opacity: 0.08;
  --hero-glow-opacity: 0.28;
  --hero-near-opacity: 0.3;
  --hero-far-opacity: 0.18;
  --hero-constellation-opacity: 0;
  --hero-text-support-opacity: 0.08;
  --hero-center-clear-opacity: 0.12;
}

.hero-stage[data-stage="reveal"] {
  --hero-vignette-opacity: 0.52;
  --hero-focus-opacity: 0.11;
  --hero-glow-opacity: 0.38;
  --hero-near-opacity: 0.36;
  --hero-far-opacity: 0.22;
  --hero-text-support-opacity: 0.12;
  --hero-center-clear-opacity: 0.18;
}

.hero-stage[data-stage="orbit"] {
  --hero-vignette-opacity: 0.48;
  --hero-focus-opacity: 0.16;
  --hero-glow-opacity: 0.46;
  --hero-near-opacity: 0.44;
  --hero-far-opacity: 0.26;
  --hero-constellation-opacity: 0.12;
  --hero-text-support-opacity: 0.18;
  --hero-center-clear-opacity: 0.24;
  --hero-text-shift-y: 0;
}

.hero-stage[data-stage="memory"] {
  --hero-vignette-opacity: 0.44;
  --hero-focus-opacity: 0.2;
  --hero-glow-opacity: 0.52;
  --hero-near-opacity: 0.34;
  --hero-far-opacity: 0.2;
  --hero-constellation-opacity: 0.08;
  --hero-text-support-opacity: 0.2;
  --hero-center-clear-opacity: 0.28;
  --hero-scene-scale: 0.992;
  --hero-scene-shift-y: -0.08rem;
  --hero-text-shift-y: 0.1rem;
}

.hero-stage[data-stage="guest"] {
  --hero-vignette-opacity: 0.46;
  --hero-focus-opacity: 0.24;
  --hero-glow-opacity: 0.4;
  --hero-near-opacity: 0.28;
  --hero-far-opacity: 0.16;
  --hero-constellation-opacity: 0.9;
  --hero-text-support-opacity: 0.24;
  --hero-center-clear-opacity: 0.22;
}

.hero-stage[data-stage="focus"],
.hero-stage[data-stage="settled"] {
  --hero-vignette-opacity: 0.5;
  --hero-focus-opacity: 0.2;
  --hero-glow-opacity: 0.34;
  --hero-near-opacity: 0.22;
  --hero-far-opacity: 0.14;
  --hero-constellation-opacity: 1;
  --hero-text-support-opacity: 0.32;
  --hero-center-clear-opacity: 0.16;
  --hero-scene-scale: 1.004;
  --hero-scene-shift-y: -0.16rem;
}

.hero-stage[data-stage="settled"] {
  --hero-cta-opacity: 1;
}

.preload-glow,
.starfield,
.center-clear {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.preload-glow {
  z-index: 0;
  background:
    radial-gradient(circle at 50% 52%, rgba(163, 119, 255, 0.14), rgba(163, 119, 255, 0.04) 18%, rgba(163, 119, 255, 0) 36%),
    radial-gradient(circle at 52% 46%, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0) 22%);
  opacity: var(--hero-glow-opacity);
  filter: blur(14px);
  animation: pulseGlow 8s ease-in-out infinite;
  transition: opacity 1s ease;
}

.starfield--near {
  z-index: 0;
  opacity: var(--hero-near-opacity);
  background-image:
    radial-gradient(circle at 9% 18%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.8px),
    radial-gradient(circle at 23% 62%, rgba(255, 255, 255, 0.8) 0 1.2px, transparent 2px),
    radial-gradient(circle at 74% 28%, rgba(255, 255, 255, 0.9) 0 1.4px, transparent 2.1px),
    radial-gradient(circle at 82% 68%, rgba(255, 255, 255, 0.95) 0 1px, transparent 1.7px),
    radial-gradient(circle at 38% 36%, rgba(255, 255, 255, 0.72) 0 1px, transparent 1.8px),
    radial-gradient(circle at 61% 80%, rgba(255, 255, 255, 0.82) 0 1.1px, transparent 1.9px);
  animation: twinkleNear 8s ease-in-out infinite alternate;
  transition: opacity 1s ease;
}

.starfield--far {
  z-index: 0;
  opacity: var(--hero-far-opacity);
  background-image:
    radial-gradient(circle at 14% 30%, rgba(210, 225, 255, 0.9) 0 0.8px, transparent 1.5px),
    radial-gradient(circle at 31% 14%, rgba(255, 255, 255, 0.72) 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 48% 58%, rgba(255, 255, 255, 0.85) 0 0.7px, transparent 1.4px),
    radial-gradient(circle at 66% 42%, rgba(220, 230, 255, 0.76) 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.82) 0 0.8px, transparent 1.5px),
    radial-gradient(circle at 87% 54%, rgba(255, 255, 255, 0.74) 0 0.8px, transparent 1.4px),
    radial-gradient(circle at 57% 88%, rgba(210, 225, 255, 0.84) 0 0.8px, transparent 1.5px);
  animation: twinkleFar 10s ease-in-out infinite;
  transition: opacity 1s ease;
}

.center-clear {
  z-index: 0;
  opacity: var(--hero-center-clear-opacity);
  background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0) 0 14%, rgba(255, 255, 255, 0.015) 22%, rgba(0, 0, 0, 0) 38%);
  transition: opacity 1s ease;
}

.planet-system {
  position: absolute;
  inset: 0;
  pointer-events: none;
  transform: translateY(-6%);
  z-index: 2;
  will-change: transform;
  transition: transform 1.1s cubic-bezier(0.22, 0.61, 0.24, 1);
}

.hero-stage[data-stage="memory"] .planet-system {
  transform: translateY(-6%);
}

.hero-stage[data-stage="focus"] .planet-system,
.hero-stage[data-stage="settled"] .planet-system {
  transform: translateY(-6%);
}

.hero-stage[data-stage="focus"] .scene,
.hero-stage[data-stage="focus"] .planet-system,
.hero-stage[data-stage="guest"] .scene,
.hero-stage[data-stage="guest"] .planet-system,
.hero-stage[data-stage="settled"] .scene,
.hero-stage[data-stage="settled"] .planet-system {
  pointer-events: auto;
}

.scene {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  transform: translate3d(0, var(--hero-scene-shift-y), 0) scale(var(--hero-scene-scale));
  will-change: transform;
  transition: transform 1.2s cubic-bezier(0.22, 0.61, 0.24, 1);
}

.constellation-wrap {
  position: absolute;
  left: 50%;
  top: clamp(1rem, 4vh, 2.9rem);
  width: min(100vw, 78rem);
  height: clamp(16.8rem, 32vh, 22.8rem);
  z-index: 2600;
  pointer-events: none;
  opacity: var(--hero-constellation-opacity);
  transform: translate3d(-50%, 0, 0) scale(1);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.22, 0.61, 0.24, 1);
}

.hero-date {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  transform: translateX(-50%);
  padding: 0.34rem 0.9rem;
  border: 1px solid rgba(231, 213, 170, 0.24);
  border-radius: 999px;
  color: rgba(245, 236, 214, 0.92);
  background: linear-gradient(180deg, rgba(14, 22, 49, 0.56), rgba(8, 13, 31, 0.26));
  box-shadow:
    0 0.8rem 1.6rem rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 247, 231, 0.08);
  font-family: var(--body-font);
  font-size: clamp(0.72rem, 1vw, 0.86rem);
  line-height: 1;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 0.7rem rgba(255, 241, 214, 0.08);
}

.hero-stage[data-stage="guest"] .constellation-wrap,
.hero-stage[data-stage="focus"] .constellation-wrap,
.hero-stage[data-stage="settled"] .constellation-wrap {
  transform: translate3d(calc(-50% - 0.08rem), -0.18rem, 0) scale(1.02);
}

.guest-name,
.floating-guest-star {
  display: none !important;
}

.intro-text {
  display: block;
}

.constellation {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: visible;
  filter:
    brightness(1.34)
    saturate(1.16)
    drop-shadow(0 0 0.9rem rgba(255, 255, 255, 0.18))
    drop-shadow(0 0 1.8rem rgba(222, 235, 255, 0.16));
}

.constellation__layer {
  overflow: visible;
}

.line {
  fill: none;
  stroke: url(#lineGradient);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: var(--len);
  stroke-dashoffset: var(--len);
  opacity: 0;
  filter:
    drop-shadow(0 0 0.58rem rgba(255, 255, 255, 0.94))
    drop-shadow(0 0 2rem rgba(220, 236, 255, 0.66));
}

.line.is-on {
  animation: constellationLineIn 1460ms cubic-bezier(0.2, 0.8, 0, 1) forwards;
}

.star {
  opacity: 0;
  visibility: hidden;
  overflow: visible;
  filter:
    drop-shadow(0 0 1.45rem rgba(255, 255, 255, 1))
    drop-shadow(0 0 3.2rem rgba(222, 237, 255, 0.92));
}

.star.is-on {
  opacity: 1;
  visibility: visible;
}

.star use {
  transform-box: fill-box;
  transform-origin: center;
}

.star--main {
  filter:
    drop-shadow(0 0 1.7rem rgba(255, 255, 255, 1))
    drop-shadow(0 0 3.8rem rgba(224, 238, 255, 1));
}

.star--small {
  filter:
    drop-shadow(0 0 1.3rem rgba(255, 255, 255, 1))
    drop-shadow(0 0 2.7rem rgba(214, 232, 255, 0.82));
}

.star--hero {
  filter:
    drop-shadow(0 0 2.35rem rgba(255, 255, 255, 1))
    drop-shadow(0 0 4.7rem rgba(237, 245, 255, 1));
}

.star.is-on use {
  animation: constellationStarIn 760ms cubic-bezier(0.18, 0.86, 0.2, 1) forwards;
}

.star.twinkle {
  animation: constellationTwinkle var(--twinkle-dur, 6.8s) ease-in-out var(--twinkle-delay, 0s) infinite;
}

.intro-text {
  position: absolute;
  left: 50%;
  top: calc(50% + clamp(4.45rem, 9.6vw, 6.25rem));
  z-index: 3005;
  display: grid;
  gap: clamp(0.2rem, 0.55vh, 0.42rem);
  width: min(82vw, 31rem);
  transform: translate(-50%, 0) translateY(var(--hero-text-shift-y));
  opacity: 0;
  filter: blur(10px);
  text-align: center;
  transition:
    opacity 1.8s ease,
    filter 1.8s ease,
    transform 1.6s cubic-bezier(0.22, 0.61, 0.24, 1);
  pointer-events: none;
}

.intro-text::before,
.guest-name::before {
  content: "";
  position: absolute;
  inset: -1.2rem -1.5rem;
  z-index: -1;
  border-radius: 1.9rem;
  opacity: var(--hero-text-support-opacity);
  background:
    linear-gradient(180deg, rgba(6, 11, 30, 0.54), rgba(6, 11, 30, 0.2) 58%, rgba(6, 11, 30, 0)),
    radial-gradient(circle at 50% 40%, rgba(136, 164, 235, 0.18), rgba(136, 164, 235, 0.05) 34%, rgba(136, 164, 235, 0) 72%);
  filter: blur(18px);
  transition: opacity 1s ease;
}

.intro-text.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translate(-50%, 0) translateY(0);
}

.hero-stage[data-stage="memory"] .intro-text::before,
.hero-stage[data-stage="memory"] .guest-name::before,
.hero-stage[data-stage="focus"] .intro-text::before,
.hero-stage[data-stage="settled"] .intro-text::before {
  opacity: min(1, calc(var(--hero-text-support-opacity) + 0.06));
}

.hero-stage[data-stage="focus"] .intro-text,
.hero-stage[data-stage="settled"] .intro-text {
  left: 50%;
  top: calc(50% + clamp(4.75rem, 10.4vw, 6.7rem));
  width: min(92vw, 27rem);
}

.hero-stage[data-stage="focus"] .guest-name,
.hero-stage[data-stage="settled"] .guest-name {
  max-width: min(42vw, 15rem);
}

.intro-text__line {
  margin: 0;
  color: rgba(248, 243, 235, 0.97);
  font-family: var(--display-font);
  font-size: clamp(1.28rem, 2vw, 1.74rem);
  line-height: 1.02;
  font-weight: 600;
  font-style: normal;
  max-width: 16ch;
  margin-inline: auto;
  letter-spacing: 0.02em;
  text-wrap: balance;
  text-shadow:
    0 0 0.7rem rgba(255, 246, 225, 0.05),
    0 0.2rem 1rem rgba(3, 7, 20, 0.36);
}

.intro-text__line--second {
  position: relative;
  margin-top: 0;
  max-width: 14ch;
  color: rgba(248, 243, 235, 0.97);
  font-family: var(--display-font);
  font-size: clamp(1.7rem, 2.95vw, 2.42rem);
  line-height: 1.02;
  font-weight: 600;
  letter-spacing: 0.018em;
  text-align: center;
  margin-inline: auto;
  padding-top: clamp(0.24rem, 0.7vh, 0.44rem);
  text-shadow:
    0 0 0.7rem rgba(255, 246, 225, 0.05),
    0 0.2rem 1rem rgba(3, 7, 20, 0.36);
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 1.3s ease,
    filter 1.3s ease;
}

.intro-text__line--second.is-visible {
  opacity: 1;
  filter: blur(0);
}

.guest-name {
  position: absolute;
  left: 24%;
  top: 4%;
  z-index: 2100;
  max-width: min(44vw, 18rem);
  color: rgba(242, 248, 255, 0.96);
  font-family: var(--story-font);
  font-size: clamp(1.72rem, 2.9vw, 2.9rem);
  line-height: 1.05;
  font-weight: 700;
  letter-spacing: 0;
  text-wrap: balance;
  opacity: 0;
  filter: blur(7px);
  text-shadow:
    0 0 0.8rem rgba(255, 241, 214, 0.12),
    0 0 1.8rem rgba(117, 157, 255, 0.08),
    0 0 2.6rem rgba(255, 236, 196, 0.06);
  transition:
    opacity 1.1s ease,
    filter 1.1s ease,
    transform 1.1s ease;
  pointer-events: none;
  transform: translateY(calc(var(--hero-text-shift-y) * 0.8));
}

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

.floating-guest-star {
  position: absolute;
  left: clamp(0.9rem, 2.2vw, 2rem);
  left: calc(env(safe-area-inset-left) + clamp(0.9rem, 2.2vw, 2rem));
  top: clamp(5.6rem, 12vh, 8.2rem);
  top: calc(env(safe-area-inset-top) + clamp(5.6rem, 12vh, 8.2rem));
  z-index: 4200;
  display: block;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 520ms ease,
    visibility 0s linear 520ms;
}

.floating-guest-star.is-visible {
  opacity: 1;
  visibility: visible;
  transition:
    opacity 520ms ease,
    visibility 0s linear 0s;
}

.floating-guest-star.is-traveling {
  transition:
    transform 1.85s cubic-bezier(0.16, 0.84, 0.16, 1),
    opacity 520ms ease,
    visibility 0s linear 0s;
}

.floating-guest-star__icon {
  width: clamp(3.8rem, 5vw, 4.9rem);
  height: clamp(3.8rem, 5vw, 4.9rem);
  overflow: visible;
  filter:
    drop-shadow(0 0 0.65rem rgba(232, 241, 255, 0.58))
    drop-shadow(0 0 1.2rem rgba(177, 205, 255, 0.28));
  animation: floatingGuestStarPulse 3.4s ease-in-out infinite;
  flex: 0 0 auto;
}

.planet-cta {
  position: absolute;
  left: 50%;
  top: auto;
  bottom: max(4rem, calc(env(safe-area-inset-bottom) + clamp(3.5rem, 6.8vh, 5.1rem)));
  z-index: 1688;
  width: min(94vw, 27rem);
  padding: 0;
  transform: translateX(-50%) translateY(1.1rem);
  opacity: var(--hero-cta-opacity);
  filter: blur(8px);
  transition:
    opacity 1.1s ease,
    filter 1.1s ease,
    transform 1.1s ease;
  pointer-events: none;
}

body.invite-opened .hero-stage,
body.invite-opened .scene,
body.invite-opened .planet-system,
body.invite-opened .planet-cta,
body.invite-opened .planet--scroll-ready,
body.invite-opened .planet--scroll-active,
body.invite-opened .planet--preview-ready {
  pointer-events: none !important;
}

body.invite-opened .hero-stage {
  display: none !important;
  min-height: 0 !important;
  height: 0 !important;
  overflow: hidden !important;
  overflow: clip !important;
  isolation: auto;
  background: transparent;
}

body.invite-opened .hero-stage::before,
body.invite-opened .hero-stage::after,
body.invite-opened .hero-stage > * {
  display: none !important;
}

body.invite-opened .preload-glow,
body.invite-opened .starfield,
body.invite-opened .center-clear,
body.invite-opened .scene,
body.invite-opened .planet-system,
body.invite-opened .constellation-wrap,
body.invite-opened .constellation,
body.invite-opened .line,
body.invite-opened .star,
body.invite-opened .intro-text,
body.invite-opened .planet-cta,
body.invite-opened .planet--scroll-ready::before,
body.invite-opened .planet--scroll-ready::after,
body.invite-opened .planet--scroll-active::before,
body.invite-opened .planet--scroll-active::after,
body.invite-opened .floating-guest-star__icon {
  animation: none !important;
  transition: none !important;
}

body.invite-opened .preload-glow,
body.invite-opened .starfield,
body.invite-opened .center-clear,
body.invite-opened .constellation,
body.invite-opened .line,
body.invite-opened .star,
body.invite-opened .intro-text,
body.invite-opened .planet-cta,
body.invite-opened .planet--scroll-ready::before,
body.invite-opened .planet--scroll-ready::after,
body.invite-opened .planet--scroll-active::before,
body.invite-opened .planet--scroll-active::after {
  filter: none !important;
}

.planet-cta::before {
  content: none;
}

.planet-cta.is-visible {
  opacity: 1;
  filter: blur(0);
  transform: translateX(-50%) translateY(0.34rem);
  pointer-events: none;
  cursor: default;
}

.planet-cta__label {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: clamp(0.42rem, 1vw, 0.96rem);
  width: 100%;
  color: rgba(248, 243, 235, 0.96);
  font-family: var(--display-font);
  font-size: clamp(0.88rem, 1.06vw, 0.98rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  text-align: center;
  text-shadow: 0 0 0.4rem rgba(255, 241, 214, 0.08);
  opacity: 0;
  transform: translateY(0.9rem);
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.22, 0.61, 0.24, 1);
}

.planet-cta.is-visible .planet-cta__label {
  opacity: 1;
  transform: translateY(1.12rem);
}

.planet-cta__label-part:first-child {
  text-align: right;
}

.planet-cta__label-part:last-child {
  text-align: left;
}

.planet-cta__label-gap {
  display: block;
  width: clamp(2.85rem, 4vw, 3.45rem);
  aspect-ratio: 1 / 1;
  visibility: hidden;
  pointer-events: none;
}

.planet {
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  will-change: transform, opacity, filter;
  contain: layout paint;
  pointer-events: none;
}

.planet::before,
.planet::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
}

.planet__memory {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  opacity: 0;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
}

.planet--memory-back .planet__memory {
  opacity: 1;
}

.planet--large {
  width: var(--planet-large-size);
  aspect-ratio: 1;
  box-shadow:
    inset -1.4rem -1.65rem 2rem rgba(5, 9, 24, 0.48),
    inset 0.08rem 0.08rem 0.35rem rgba(255, 255, 255, 0.18),
    0 0 1rem rgba(152, 140, 255, 0.12);
  overflow: hidden;
  border: 1px solid rgba(168, 205, 255, 0.22);
}

.planet--small {
  width: var(--planet-small-size);
  aspect-ratio: 1;
  z-index: 60;
  box-shadow:
    inset -0.55rem -0.65rem 0.9rem rgba(8, 10, 28, 0.5),
    inset 0.12rem 0.12rem 0.24rem rgba(255, 255, 255, 0.2),
    0 0 0.8rem rgba(190, 200, 255, 0.18);
  overflow: hidden;
  border: 1px solid rgba(226, 234, 255, 0.16);
}

.planet--one {
  background-image:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05) 18%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0) 56%, rgba(160, 205, 255, 0.24) 82%, rgba(113, 163, 255, 0.5) 100%),
    var(--planet-one-image);
  background-size: 100% 100%, 100% 100%, 168% auto;
  background-position: center, center, center 50%;
  background-repeat: no-repeat;
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
  box-shadow:
    inset -1.15rem -1.35rem 1.8rem rgba(12, 18, 40, 0.44),
    inset 0.65rem 0.75rem 1rem rgba(255, 255, 255, 0.16),
    0 0 1.15rem rgba(114, 172, 255, 0.18);
}

.planet--one::before {
  inset: 4%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 18%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 70% 74%, rgba(8, 14, 36, 0.42), rgba(8, 14, 36, 0.16) 24%, rgba(8, 14, 36, 0) 44%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0) 70%, rgba(149, 199, 255, 0.18) 82%, rgba(226, 240, 255, 0.24) 92%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 68% 74%, rgba(91, 144, 255, 0.16), rgba(91, 144, 255, 0) 36%);
  mix-blend-mode: screen;
  opacity: 0.96;
}

.planet--one::after {
  inset: -2%;
  background:
    radial-gradient(circle, rgba(119, 176, 255, 0.12) 0, rgba(119, 176, 255, 0.04) 46%, rgba(119, 176, 255, 0) 72%);
  filter: blur(6px);
  opacity: 0.38;
}

.planet--one .planet__memory {
  background-image:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0) 18%),
    radial-gradient(circle at 82% 22%, rgba(255, 229, 187, 0.22), rgba(255, 229, 187, 0) 18%),
    var(--planet-memory-one-image);
  background-size: 100% 100%, 100% 100%, 106% auto;
  background-position: center, center, center 34%;
  background-repeat: no-repeat;
}

.planet--two {
  background-image:
    radial-gradient(circle at 32% 28%, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.05) 18%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0) 56%, rgba(160, 205, 255, 0.24) 82%, rgba(113, 163, 255, 0.5) 100%),
    var(--planet-two-image);
  background-size: 100% 100%, 100% 100%, 176% auto;
  background-position: center, center, center 48%;
  background-repeat: no-repeat;
  filter: saturate(1.08) contrast(1.04) brightness(1.02);
  box-shadow:
    inset -1.15rem -1.35rem 1.8rem rgba(12, 18, 40, 0.44),
    inset 0.65rem 0.75rem 1rem rgba(255, 255, 255, 0.16),
    0 0 1.15rem rgba(114, 172, 255, 0.18);
}

.planet--two::before {
  inset: 4%;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 18%, rgba(255, 255, 255, 0) 34%),
    radial-gradient(circle at 70% 74%, rgba(8, 14, 36, 0.42), rgba(8, 14, 36, 0.16) 24%, rgba(8, 14, 36, 0) 44%),
    radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0) 70%, rgba(149, 199, 255, 0.18) 82%, rgba(226, 240, 255, 0.24) 92%, rgba(255, 255, 255, 0) 100%),
    radial-gradient(circle at 68% 74%, rgba(91, 144, 255, 0.16), rgba(91, 144, 255, 0) 36%);
  mix-blend-mode: screen;
  opacity: 0.96;
}

.planet--two::after {
  inset: -2%;
  background:
    radial-gradient(circle, rgba(119, 176, 255, 0.12) 0, rgba(119, 176, 255, 0.04) 46%, rgba(119, 176, 255, 0) 72%);
  filter: blur(6px);
  opacity: 0.38;
}

.planet--two .planet__memory {
  background-image:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0) 16%),
    radial-gradient(circle at 76% 18%, rgba(255, 230, 194, 0.18), rgba(255, 230, 194, 0) 16%),
    var(--planet-memory-two-image);
  background-size: 100% 100%, 100% 100%, 108% auto;
  background-position: center, center, center 42%;
  background-repeat: no-repeat;
}

.planet--small {
  background-image:
    radial-gradient(circle at 34% 26%, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.06) 16%, rgba(255, 255, 255, 0) 30%),
    radial-gradient(circle at 50% 52%, rgba(255, 255, 255, 0) 56%, rgba(216, 227, 255, 0.16) 80%, rgba(255, 244, 215, 0.3) 94%, rgba(255, 255, 255, 0) 100%),
    var(--planet-center-image);
  background-size: 100% 100%, 100% 100%, 168% auto;
  background-position: center, center, center 50%;
  background-repeat: no-repeat;
  filter: saturate(1.12) contrast(1.05) brightness(1.03);
}

.planet--small::before {
  content: none;
}

.planet--small::after {
  content: none;
}

.planet--small .planet__memory {
  background-image: var(--planet-memory-center-image);
  background-size: 100% auto;
  background-position: center;
  background-repeat: no-repeat;
}

.planet--small.planet--memory-back {
  background-image: none;
  background-color: transparent;
  border-radius: 0;
  border: 0;
  box-shadow: none;
  filter: none;
  overflow: visible;
  outline: none;
}

.planet--small.planet--memory-back .planet__memory {
  transform-origin: center;
  animation: none;
  inset: -4%;
  background-size: 88% auto;
  background-position: center;
  filter: none;
  border-radius: 0;
  clip-path: none;
}

.hero-stage[data-stage="memory"] .planet--small::after {
  opacity: 0;
  filter: blur(0);
}

.hero-stage[data-stage="memory"] .planet--small::before {
  opacity: 0.62;
}

.planet--scroll-ready {
  pointer-events: none;
  cursor: default;
  transition:
    box-shadow 280ms ease,
    filter 280ms ease,
    outline-offset 280ms ease;
  box-shadow:
    inset -0.55rem -0.65rem 0.9rem rgba(8, 10, 28, 0.5),
    inset 0.12rem 0.12rem 0.24rem rgba(255, 255, 255, 0.2),
    0 0 1.05rem rgba(214, 223, 255, 0.24),
    0 0 2rem rgba(244, 227, 176, 0.16);
}

.planet--scroll-ready::before,
.planet--scroll-active::before {
  animation: planetInviteHalo 4.8s ease-in-out infinite;
}

.planet--scroll-ready::after,
.planet--scroll-active::after {
  opacity: 0.1;
  filter: blur(1.2px);
  animation: planetInviteAura 6.4s ease-in-out infinite;
}

.planet--scroll-active {
  pointer-events: auto;
  cursor: pointer;
  box-shadow:
    inset -0.55rem -0.65rem 0.9rem rgba(8, 10, 28, 0.5),
    inset 0.12rem 0.12rem 0.24rem rgba(255, 255, 255, 0.2),
    0 0 1.25rem rgba(226, 233, 255, 0.32),
    0 0 2.8rem rgba(244, 227, 176, 0.28);
}

.planet--scroll-active:hover {
  box-shadow:
    inset -0.55rem -0.65rem 0.9rem rgba(8, 10, 28, 0.5),
    inset 0.12rem 0.12rem 0.24rem rgba(255, 255, 255, 0.2),
    0 0 1.3rem rgba(222, 230, 255, 0.34),
    0 0 3.05rem rgba(255, 234, 180, 0.34);
}

.planet--preview-ready {
  pointer-events: auto;
  cursor: pointer;
  touch-action: manipulation;
}

.planet-system .planet--preview-ready,
.planet--large.planet--preview-ready {
  pointer-events: auto !important;
}

.planet--scroll-active:focus-visible {
  outline: 2px solid rgba(242, 232, 195, 0.85);
  outline-offset: 0.55rem;
  box-shadow:
    inset -0.55rem -0.65rem 0.9rem rgba(8, 10, 28, 0.5),
    inset 0.12rem 0.12rem 0.24rem rgba(255, 255, 255, 0.2),
    0 0 0 0.24rem rgba(242, 232, 195, 0.16),
    0 0 1.45rem rgba(230, 236, 255, 0.4),
    0 0 3rem rgba(255, 234, 180, 0.34);
}

.planet--small.planet--scroll-ready,
.planet--small.planet--scroll-active,
.planet--small.planet--scroll-active:hover,
.planet--small.planet--scroll-active:focus-visible {
  box-shadow:
    inset -0.42rem -0.5rem 0.72rem rgba(8, 10, 28, 0.46),
    inset 0.08rem 0.08rem 0.16rem rgba(255, 255, 255, 0.14);
}

.planet-cta:focus-visible {
  outline: 2px solid rgba(242, 232, 195, 0.85);
  outline-offset: 0.4rem;
  border-radius: 999px;
}

.page-content {
  position: relative;
  isolation: isolate;
  width: 100%;
  max-width: 100vw;
  min-height: auto;
  overflow: visible;
  padding: clamp(2.4rem, 4.2vw, 3.4rem) clamp(1rem, 3vw, 3rem) clamp(6.4rem, 10vw, 9.2rem);
  scroll-margin-top: 1rem;
  overflow-anchor: none;
}

.page-content::before {
  content: none;
}

.page-content::after {
  content: none;
}

.continuation-inner {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: var(--continuation-section-gap);
  width: 100%;
  max-width: min(82rem, 100%);
  margin: 0 auto;
  padding: clamp(1.55rem, 3vh, 2.4rem) clamp(0.7rem, 1.4vw, 1.2rem) 0;
  text-align: left;
}

.continuation-inner > * {
  min-width: 0;
}

.continuation-block {
  position: relative;
  width: 100%;
  max-width: 100%;
  margin: 0;
  opacity: 1;
  filter: none;
  transform: none;
  transition: none;
}

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

.page-content .continuation-title {
  margin: 0;
  color: var(--continuation-heading);
  font-family: var(--display-font);
  font-size: clamp(2.95rem, 5.8vw, 5.2rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 0.012em;
  text-wrap: balance;
  text-shadow: 0 0 0.55rem rgba(255, 246, 225, 0.04);
}

.page-content .continuation-block p {
  margin: 0;
  color: var(--continuation-text) !important;
  font-family: var(--body-font);
  font-size: clamp(1.08rem, 1.36vw, 1.18rem);
  line-height: 1.84;
  font-weight: 500;
  letter-spacing: 0.008em;
  text-shadow: none;
}

.page-content .continuation-block p + p {
  margin-top: 0.8em;
}

.page-content .continuation-block p.continuation-break {
  margin-bottom: 0;
}

.story-intro-header,
.section-header {
  width: min(100%, 52rem);
  margin-inline: auto;
  padding-top: clamp(1rem, 2vw, 1.5rem);
  padding-inline: var(--continuation-safe-left);
  text-align: center;
}

.story-intro-header .continuation-title {
  max-width: 13ch;
  margin-inline: auto;
  font-size: clamp(3rem, 6.2vw, 5.4rem);
}

.section-header .continuation-title {
  max-width: 16ch;
  margin-bottom: 0;
  margin-inline: auto;
}

.section-header::before {
  content: none;
}

.story-panel,
.timing-panel,
.media-panel,
.rsvp-form {
  border: 0;
  background: transparent;
  box-shadow: none;
  position: relative;
  min-width: 0;
  overflow: visible;
}

.story-panel::before,
.timing-panel::before,
.media-panel::before,
.rsvp-form::before {
  content: none;
}

.story-panel::after,
.timing-panel::after,
.media-panel::after,
.rsvp-form::after {
  content: none;
}

.story-panel,
.timing-panel {
  width: min(100%, 52rem);
  margin-inline: auto;
  padding: 0;
  border-radius: 0;
}

.story-panel {
  padding-inline: var(--continuation-safe-left);
  text-align: center;
}

.story-panel--closing p {
  color: rgba(243, 246, 255, 0.96) !important;
  font-size: clamp(1.14rem, 1.72vw, 1.3rem);
  line-height: 1.78;
}

.calendar-section,
.location-section,
.dresscode-section,
.rsvp-section {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.location-section {
  display: grid;
  justify-items: center;
  text-align: center;
  position: relative;
}

.calendar-section.continuation-block,
.location-section.continuation-block,
.dresscode-section.continuation-block {
  margin-left: 0;
}

.media-panel {
  width: min(100%, 62rem);
  justify-self: stretch;
  margin-inline: auto;
  padding: 0;
  padding-inline: var(--continuation-safe-left);
  box-sizing: border-box;
  border-radius: 0;
}

.calendar-section.media-panel {
  width: min(100%, 36rem);
  margin-inline: auto;
}

.calendar-wrap {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}

.calendar-kicker {
  margin: 0 0 1rem;
  color: rgba(248, 243, 235, 0.96);
  font-family: var(--display-font);
  font-size: clamp(1.22rem, 1.8vw, 1.46rem);
  line-height: 1.05;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.date-title,
.location-title {
  margin: 0;
}

.date-calendar-frame {
  display: block;
  width: min(100%, 31rem);
  max-width: 100%;
  margin-inline: auto;
  aspect-ratio: 1 / 1;
  border-radius: 0;
  overflow: hidden;
  box-sizing: border-box;
  border: 0;
  box-shadow: none;
}

.date-calendar-frame img,
.date-calendar-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: inherit;
}

.location-photo-frame,
.dresscode-photo-frame {
  width: min(100%, 100%);
  max-width: 100%;
  aspect-ratio: 3 / 2;
  margin: 0 auto;
  box-sizing: border-box;
}

.location-gallery {
  width: 100%;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 100%;
  gap: 0;
  overflow-x: auto;
  overflow-y: hidden;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  padding: 0 0 0.55rem;
  -webkit-overflow-scrolling: touch;
}

.location-gallery .location-photo-frame {
  width: 100%;
  min-width: 0;
  scroll-snap-align: start;
}

.location-gallery::-webkit-scrollbar {
  height: 0.45rem;
}

.location-gallery::-webkit-scrollbar-thumb {
  background: rgba(216, 224, 247, 0.28);
  border-radius: 999px;
}

.location-section.media-panel::after {
  content: "›";
  position: absolute;
  right: max(var(--continuation-safe-left), 0.85rem);
  top: clamp(5.4rem, 17vw, 9.4rem);
  display: grid;
  place-items: center;
  width: clamp(2.4rem, 4.4vw, 2.95rem);
  aspect-ratio: 1;
  border-radius: 999px;
  color: rgba(247, 242, 233, 0.92);
  font-family: var(--display-font);
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  line-height: 1;
  background:
    linear-gradient(135deg, rgba(255, 248, 234, 0.2), rgba(255, 248, 234, 0.04)),
    rgba(7, 12, 26, 0.2);
  box-shadow:
    0 0.2rem 0.9rem rgba(4, 8, 18, 0.26),
    inset 0 0 0 1px rgba(255, 244, 224, 0.14);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  pointer-events: none;
  z-index: 2;
}

.dresscode-photo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: auto;
  min-height: clamp(13rem, 24vw, 18rem);
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.location-photo,
.dresscode-photo {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  border-radius: 0;
  border: 0;
  box-shadow: none;
}

.dresscode-photo {
  width: min(100%, 23rem);
  aspect-ratio: auto;
  object-fit: contain;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.dresscode-note {
  width: min(100%, 30rem);
  margin: 0 auto;
  color: rgba(229, 236, 252, 0.88);
  font-family: var(--body-font);
  font-size: clamp(1rem, 1.45vw, 1.1rem);
  line-height: 1.76;
  text-align: center;
  text-wrap: balance;
  justify-self: center;
}

.location-address {
  display: block;
  width: min(100%, 28rem);
  max-width: 28rem;
  margin: 1.25rem auto 0;
  padding-inline: 1rem;
  color: var(--continuation-muted);
  font-family: var(--body-font);
  font-size: clamp(1.08rem, 1.55vw, 1.18rem);
  line-height: 1.8;
  font-weight: 500;
  text-align: center;
  text-wrap: balance;
}

.location-route-button,
.rsvp-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.84rem 1.42rem;
  border-radius: 999px;
  border: 1px solid rgba(219, 202, 164, 0.28);
  color: rgba(247, 250, 255, 0.97);
  background:
    linear-gradient(180deg, rgba(22, 34, 76, 0.95), rgba(11, 18, 43, 0.94));
  font-family: var(--body-font);
  font-size: 0.82rem;
  line-height: 1;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  font-weight: 700;
  text-decoration: none;
  box-shadow:
    0 0.95rem 1.95rem rgba(5, 10, 27, 0.28),
    inset 0 0 0.62rem rgba(255, 255, 255, 0.06),
    0 0 1.25rem rgba(114, 150, 240, 0.14);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.location-route-button {
  width: fit-content;
  margin: 1.6rem auto 0;
}

.location-route-button:hover,
.rsvp-submit:hover {
  transform: translateY(-1px);
  border-color: rgba(232, 221, 192, 0.44);
  box-shadow:
    0 1.08rem 2.15rem rgba(6, 12, 32, 0.32),
    inset 0 0 0.7rem rgba(255, 255, 255, 0.08),
    0 0 1.55rem rgba(148, 183, 255, 0.18);
}

.location-route-button:focus-visible,
.rsvp-submit:focus-visible {
  outline: 2px solid rgba(234, 240, 255, 0.94);
  outline-offset: 2px;
}

.rsvp-submit:disabled {
  cursor: wait;
  opacity: 0.72;
  transform: none;
  box-shadow: none;
}

.timing-panel {
  max-width: 48rem;
  text-align: left;
  padding-inline: var(--continuation-safe-left);
}

.timing-list {
  display: grid;
  gap: 1.1rem;
  width: min(100%, 48rem);
  margin: 0 auto 0 clamp(-1.1rem, -1.5vw, -0.45rem);
}

.timing-item {
  display: grid;
  grid-template-columns: clamp(5.5rem, 8.4vw, 6.8rem) minmax(0, 1fr);
  align-items: center;
  column-gap: clamp(0.9rem, 2vw, 1.4rem);
  width: 100%;
  padding-block: 0.28rem;
}

.timing-item + .timing-item {
  border-top: 1px solid rgba(233, 223, 197, 0.12);
  padding-top: 1.25rem;
}

.timing-item__icon-wrap {
  display: grid;
  place-items: center;
  width: clamp(5.5rem, 8.4vw, 6.8rem);
  aspect-ratio: 1;
}

.timing-item__icon {
  display: block;
  width: clamp(4.5rem, 6.8vw, 5.3rem);
  height: clamp(4.5rem, 6.8vw, 5.3rem);
  object-fit: contain;
}

.timing-item__copy {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: baseline;
  column-gap: clamp(1rem, 2vw, 1.35rem);
  min-width: 0;
}

.timing-item__time,
.timing-item__label {
  margin: 0;
}

.timing-item__time {
  color: rgba(249, 243, 230, 0.98);
  font-family: var(--display-font);
  font-size: clamp(1.44rem, 2.2vw, 1.92rem);
  line-height: 1.05;
  letter-spacing: 0.04em;
}

.timing-item__label {
  color: rgba(228, 235, 249, 0.92);
  font-family: var(--body-font);
  font-size: clamp(1rem, 1.42vw, 1.1rem);
  line-height: 1.34;
  letter-spacing: 0.01em;
  white-space: normal;
}

.dresscode-section.media-panel {
  width: min(100%, 58rem);
  display: grid;
  justify-items: center;
  row-gap: 1.15rem;
}

.rsvp-section {
  width: min(100%, 58rem);
  margin-inline: auto;
}

.rsvp-form {
  display: grid;
  gap: 1.12rem;
  width: 100%;
  margin: 0 auto;
  padding: 0;
  padding-inline: var(--continuation-form-safe-left);
  border-radius: 0;
}

.rsvp-fieldset {
  margin: 0;
  padding: 0 0 1rem;
  border: 0;
  border-bottom: 1px solid rgba(220, 205, 173, 0.14);
  border-radius: 0;
  background: transparent;
  min-inline-size: 0;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.rsvp-fieldset.is-invalid,
.rsvp-companion.is-invalid {
  border-bottom-color: rgba(255, 193, 198, 0.46);
  background: transparent;
  box-shadow: none;
}

.rsvp-legend,
.rsvp-label {
  margin: 0 0 0.72rem;
  display: block;
  color: rgba(248, 243, 235, 0.97);
  font-family: var(--display-font);
  font-size: clamp(1.22rem, 1.95vw, 1.42rem);
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-wrap: balance;
}

.rsvp-option {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-top: 0.55rem;
  color: var(--continuation-text);
  font-family: var(--body-font);
  font-size: clamp(1rem, 1.48vw, 1.1rem);
  line-height: 1.66;
  font-weight: 500;
  letter-spacing: 0.006em;
}

.rsvp-option input[type="radio"],
.rsvp-option input[type="checkbox"] {
  margin-top: 0.22rem;
  width: 1rem;
  height: 1rem;
  accent-color: #a8beff;
  flex-shrink: 0;
}

.rsvp-options-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 1.1rem;
  row-gap: 0.18rem;
}

.rsvp-companion {
  padding: 0 0 1rem;
  border: 0;
  border-bottom: 1px solid rgba(220, 205, 173, 0.14);
  border-radius: 0;
  background: transparent;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.rsvp-input,
.rsvp-textarea {
  width: 100%;
  border: 1px solid rgba(220, 205, 173, 0.16);
  border-radius: 0;
  background: rgba(8, 13, 33, 0.2);
  color: rgba(244, 248, 255, 0.98);
  font-family: var(--body-font);
  font-size: clamp(1rem, 1.42vw, 1.08rem);
  line-height: 1.72;
  font-weight: 500;
  letter-spacing: 0.008em;
  padding: 0.88rem 0.98rem;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.rsvp-input::placeholder,
.rsvp-textarea::placeholder {
  color: rgba(194, 207, 235, 0.5);
}

.rsvp-input:focus,
.rsvp-textarea:focus {
  outline: none;
  border-color: rgba(224, 232, 255, 0.38);
  box-shadow: 0 1px 0 0 rgba(112, 144, 232, 0.22);
  background: rgba(9, 16, 39, 0.36);
}

.rsvp-input[aria-invalid="true"],
.rsvp-textarea[aria-invalid="true"] {
  border-color: rgba(255, 193, 198, 0.42);
  box-shadow:
    0 0 0 3px rgba(255, 193, 198, 0.1),
    0 0 1rem rgba(255, 193, 198, 0.08);
  background: rgba(52, 18, 33, 0.32);
}

.rsvp-option input[aria-invalid="true"] {
  accent-color: #f1a8b3;
}

.rsvp-textarea {
  resize: vertical;
  min-height: 7rem;
}

.rsvp-error {
  display: block;
  min-height: 1.2em;
  margin-top: 0.45rem;
  color: rgba(255, 193, 198, 0.95);
  font-family: var(--body-font);
  font-size: 0.8rem;
  line-height: 1.4;
  transition:
    color 180ms ease,
    opacity 180ms ease;
}

.rsvp-error:not(:empty) {
  color: rgba(255, 210, 214, 0.98);
}

.rsvp-actions {
  display: grid;
  justify-items: center;
  gap: 0.65rem;
  margin-top: 0.4rem;
}

.rsvp-status {
  min-height: 1.25em;
  color: rgba(219, 236, 255, 0.94);
  font-family: var(--display-font);
  font-size: 1.12rem;
  line-height: 1.35;
  letter-spacing: 0.02em;
  text-align: center;
}

.rsvp-status.is-success {
  color: rgba(206, 242, 220, 0.96);
}

.rsvp-status.is-pending {
  color: rgba(219, 236, 255, 0.94);
}

.rsvp-status.is-error {
  color: rgba(255, 193, 198, 0.95);
}

.finale-stage {
  position: relative;
  padding: clamp(3.8rem, 8vw, 6rem) var(--continuation-safe-left) clamp(3.4rem, 9vw, 5.8rem);
  background: transparent;
  isolation: isolate;
}

.finale-stage[hidden] {
  display: none !important;
}

.finale-stage__inner {
  position: relative;
  box-sizing: border-box;
  width: min(100%, 72rem);
  margin: 0 auto;
  padding: 0 clamp(0.5rem, 2vw, 1.5rem) clamp(1.2rem, 2vw, 1.8rem);
  display: grid;
  justify-items: center;
  gap: clamp(0.8rem, 2vw, 1.3rem);
  overflow: visible;
}

.finale-ambient-stars {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
  opacity: 0.82;
}

.finale-named-stars {
  position: relative;
  z-index: 3;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 0.8rem;
  min-height: 0;
  overflow: visible;
  pointer-events: none;
  margin: 0 auto clamp(0.25rem, 1.4vw, 0.75rem);
  padding: 0 0.4rem;
  width: min(100%, 33rem);
  max-width: min(100%, 33rem);
}

.finale-named-stars:empty {
  display: none;
}

.finale-planet-shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  margin-top: 0;
}

.finale-planet {
  display: block;
  width: min(82vw, 35rem);
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 1.2rem 2.2rem rgba(0, 0, 0, 0.28));
}

.finale-copy-shell {
  position: relative;
  z-index: 3;
  width: min(100%, 42rem);
  margin-inline: auto;
  margin-top: -1rem;
  text-align: center;
}

.finale-heading {
  margin: 0 0 0.8rem;
  color: #E1C38B;
  font-family: var(--display-font);
  font-size: clamp(2.3rem, 4.8vw, 3.8rem);
  line-height: 0.98;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-shadow: 0 0.55rem 2rem rgba(4, 10, 27, 0.7);
}

.finale-heading:focus {
  outline: none;
}

.finale-copy {
  margin: 0;
  color: rgba(230, 237, 252, 0.92);
  font-family: var(--body-font);
  font-size: clamp(1.02rem, 1.78vw, 1.14rem);
  line-height: 1.8;
  text-wrap: balance;
}

.finale-countdown {
  margin: 0.9rem 0 0;
  color: #E1C38B;
  font-family: var(--display-font);
  font-size: clamp(2rem, 4.2vw, 3rem);
  line-height: 1.08;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 1.1rem rgba(225, 195, 139, 0.16),
    0 0.3rem 1.2rem rgba(4, 10, 27, 0.56);
}

.finale-star {
  position: relative;
  flex: 0 0 auto;
  width: calc(0.5rem * var(--finale-star-size, 1));
  height: calc(0.5rem * var(--finale-star-size, 1));
  border-radius: 999px;
  background: rgba(243, 248, 255, 0.92);
  box-shadow: 0 0 0.4rem rgba(230, 240, 255, 0.14);
  opacity: var(--finale-star-opacity, 0.44);
  animation: twinkleFar var(--finale-star-duration, 6s) ease-in-out infinite;
  animation-delay: var(--finale-star-delay, 0s);
  transform: translate(var(--finale-star-drift, 0), var(--finale-star-lift, 0));
}

.finale-star--ambient {
  position: absolute;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 50%, rgba(246, 241, 230, 0.9) 0 42%, rgba(246, 241, 230, 0.08) 72%, rgba(246, 241, 230, 0) 100%);
  box-shadow:
    0 0 0.55rem rgba(230, 240, 255, 0.08),
    0 0 1.1rem rgba(225, 195, 139, 0.04);
}

.finale-star--named {
  display: grid;
  grid-template-columns: auto minmax(0, 12ch);
  align-items: center;
  justify-content: center;
  justify-self: center;
  column-gap: clamp(0.68rem, 1.24vw, 0.98rem);
  width: auto;
  max-width: 100%;
  height: auto;
  margin-inline: 0;
  background: transparent;
  opacity: 1;
  box-shadow: none;
  animation: none;
  transform: none;
  z-index: 8;
}

.finale-star__icon {
  display: block;
  width: clamp(1.8rem, 3vw, 2.45rem);
  height: clamp(1.8rem, 3vw, 2.45rem);
  flex-shrink: 0;
  object-fit: contain;
  filter:
    drop-shadow(0 0 1rem rgba(225, 195, 139, 0.36))
    drop-shadow(0 0.6rem 1.4rem rgba(225, 195, 139, 0.18));
}

.finale-star__label {
  position: static;
  transform: none;
  white-space: normal;
  overflow-wrap: normal;
  word-break: normal;
  text-wrap: pretty;
  color: rgba(252, 247, 236, 0.98);
  font-family: var(--display-font);
  display: block;
  min-height: clamp(1.8rem, 3vw, 2.45rem);
  max-width: 12ch;
  font-size: clamp(1.15rem, 2.35vw, 2rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  font-weight: 600;
  text-align: center;
  justify-self: center;
  hyphens: none;
  text-shadow:
    0 0 1rem rgba(225, 195, 139, 0.28),
    0 0.35rem 1.2rem rgba(2, 4, 15, 0.75);
}

.finale-support {
  position: relative;
  z-index: 3;
  width: min(100%, 58rem);
  margin-inline: auto;
  margin-top: 1rem;
}

.finale-contact-list {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem 2rem;
  width: 100%;
}

.finale-contact-card {
  display: grid;
  justify-items: center;
  gap: 0.18rem;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.finale-contact-card--right {
  text-align: center;
}

.finale-contact-name {
  margin: 0 0 0.85rem;
  color: rgba(249, 245, 234, 0.98);
  font-family: var(--display-font);
  font-size: clamp(2.7rem, 4.9vw, 3.75rem);
  line-height: 1;
}

.finale-contact-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.05rem;
  width: 100%;
  margin-top: 0.78rem;
  color: rgba(232, 239, 252, 0.96);
  font-family: var(--body-font);
  font-size: clamp(1.5rem, 2.75vw, 1.95rem);
  line-height: 1.28;
  font-weight: 600;
  text-decoration: none;
  white-space: normal;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    color 180ms ease;
}

.finale-contact-link:hover {
  color: #E1C38B;
  opacity: 0.94;
  transform: translateY(-1px);
}

.finale-contact-link:focus-visible {
  outline: 2px solid rgba(234, 240, 255, 0.94);
  outline-offset: 4px;
  border-radius: 0.5rem;
}

.finale-contact-icon {
  width: 2.7rem;
  height: 2.7rem;
  object-fit: contain;
  flex-shrink: 0;
  filter: none;
}

.site-locale-control {
  position: fixed;
  top: max(0.95rem, env(safe-area-inset-top));
  left: max(0.95rem, env(safe-area-inset-left));
  z-index: 41;
  display: grid;
  width: auto;
  margin: 0;
  padding: 0;
}

.site-locale-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.25rem;
  height: 3.25rem;
  padding: 0.22rem;
  border: 1px solid rgba(225, 195, 139, 0.24);
  border-radius: 999px;
  background: rgba(8, 14, 34, 0.74);
  cursor: pointer;
  box-shadow:
    0 0.9rem 1.8rem rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 247, 231, 0.05);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.site-locale-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(225, 195, 139, 0.42);
}

.site-locale-toggle.is-active {
  border-color: rgba(225, 195, 139, 0.48);
  background: rgba(18, 28, 59, 0.84);
  box-shadow:
    0 0.9rem 1.8rem rgba(0, 0, 0, 0.2),
    0 0 1.2rem rgba(225, 195, 139, 0.14);
}

.site-locale-toggle:focus-visible {
  outline: 2px solid rgba(234, 240, 255, 0.94);
  outline-offset: 2px;
}

.site-locale-toggle__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 999px;
}

.site-audio-control {
  position: fixed;
  top: max(0.95rem, env(safe-area-inset-top));
  right: max(0.95rem, env(safe-area-inset-right));
  z-index: 40;
  display: grid;
  justify-items: end;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-audio-toggle {
  min-width: 0;
  min-height: 2rem;
  padding: 0.45rem 0.78rem;
  border: 1px solid rgba(225, 195, 139, 0.2);
  border-radius: 999px;
  background: rgba(8, 14, 34, 0.76);
  color: rgba(247, 243, 232, 0.96);
  font-family: var(--body-font);
  font-size: 0.68rem;
  line-height: 1;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    0 0.9rem 1.8rem rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 247, 231, 0.05);
}

.site-audio-control.is-playing {
  background: transparent;
}

.site-audio-control.is-blocked {
  background: transparent;
}

.site-audio-control.is-playing .site-audio-toggle {
  border-color: rgba(225, 195, 139, 0.36);
  background: rgba(18, 28, 59, 0.84);
}

.site-audio-control.is-muted .site-audio-toggle,
.site-audio-control.is-blocked .site-audio-toggle {
  background: rgba(6, 10, 24, 0.78);
}

.site-audio-toggle:focus-visible {
  outline: 2px solid rgba(234, 240, 255, 0.94);
  outline-offset: 2px;
}

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

@keyframes twinkleNear {
  0% {
    opacity: 0.28;
    transform: scale(1);
  }

  50% {
    opacity: 0.54;
    transform: scale(1.006);
  }

  100% {
    opacity: 0.34;
    transform: scale(0.998);
  }
}

@keyframes twinkleFar {
  0% {
    opacity: 0.12;
  }

  45% {
    opacity: 0.3;
  }

  100% {
    opacity: 0.18;
  }
}

@keyframes pulseGlow {
  0% {
    opacity: 0.26;
    transform: scale(0.99);
  }

  50% {
    opacity: 0.42;
    transform: scale(1.015);
  }

  100% {
    opacity: 0.3;
    transform: scale(0.995);
  }
}

@keyframes siteBootPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(0.96);
    opacity: 0.8;
  }

  50% {
    transform: translate(-50%, -50%) scale(1.06);
    opacity: 1;
  }
}

@keyframes constellationStarIn {
  from {
    opacity: 0;
    transform: scale(0.78);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes constellationLineIn {
  from {
    opacity: 0;
    stroke-dashoffset: var(--len);
  }

  to {
    opacity: 1;
    stroke-dashoffset: 0;
  }
}

@keyframes namedStarPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.04);
  }
}

@keyframes constellationTwinkle {
  0%,
  100% {
    opacity: 0.56;
  }

  45% {
    opacity: 0.84;
  }
}

@keyframes heartPlanetGlow {
  0%,
  100% {
    opacity: 0.96;
    transform: scale(1);
  }

  24% {
    opacity: 1;
    transform: scale(1.03);
  }

  62% {
    opacity: 1;
    transform: scale(1.048);
  }
}

@keyframes planetInviteHalo {
  0%,
  100% {
    opacity: 0.9;
    transform: scale(1);
  }

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

@keyframes planetInviteAura {
  0%,
  100% {
    opacity: 0.08;
    transform: scale(1);
  }

  50% {
    opacity: 0.15;
    transform: scale(1.08);
  }
}

@keyframes ctaArrowFloat {
  0%,
  100% {
    opacity: 0.34;
    transform: translateY(0);
  }

  50% {
    opacity: 0.76;
    transform: translateY(0.24rem);
  }
}

@keyframes floatingGuestStarPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.035);
  }
}

@media (prefers-reduced-motion: reduce) {
  .line,
  .star {
    opacity: 1 !important;
    animation: none !important;
  }

  .line {
    stroke-dashoffset: 0;
  }

  .star use {
    transform: scale(1);
    animation: none !important;
  }

  .planet--scroll-active {
    animation: none !important;
  }

  .planet--scroll-ready::before,
  .planet--scroll-ready::after,
  .planet--scroll-active::before,
  .planet--scroll-active::after {
    animation: none !important;
  }

  .floating-guest-star__icon {
    animation: none !important;
  }
}

@media (max-width: 768px) {
  :root {
    --planet-large-size: clamp(9rem, 40vw, 14rem);
    --planet-small-size: clamp(1.95rem, 5.55vw, 2.55rem);
    --continuation-safe-left: clamp(0.85rem, 4vw, 1.2rem);
    --continuation-copy-max: 100%;
    --continuation-section-gap: 2.4rem;
    --continuation-safe-inner: 0.82rem;
    --continuation-form-safe-left: clamp(0.8rem, 4vw, 1.1rem);
  }

  .hero-stage {
    --hero-vignette-opacity: 0.56;
    --hero-focus-opacity: 0.1;
    --hero-glow-opacity: 0.24;
    --hero-near-opacity: 0.18;
    --hero-far-opacity: 0.1;
    --hero-constellation-opacity: 0.18;
    --hero-text-support-opacity: 0.18;
    --hero-center-clear-opacity: 0.12;
  }

  .preload-glow,
  .starfield--near,
  .starfield--far {
    animation: none;
  }

  .intro-text {
    left: 50%;
    top: calc(50% + clamp(4.45rem, 14vw, 6rem));
    gap: 0.32rem;
    width: min(92vw, 18.4rem);
  }

  .hero-stage[data-stage="focus"] .intro-text,
  .hero-stage[data-stage="settled"] .intro-text {
    left: 50%;
    top: calc(50% + clamp(4.65rem, 14.8vw, 6.35rem));
    width: min(92vw, 18rem);
  }

  .intro-text__line {
    font-size: clamp(1.08rem, 4.2vw, 1.38rem);
    line-height: 1.04;
    margin-inline: auto;
    max-width: 100%;
  }

  .intro-text__line--second {
    margin-top: 0;
    font-size: clamp(1.34rem, 5.4vw, 1.86rem);
    line-height: 1.04;
    padding-top: 0.16rem;
  }

  .constellation-wrap {
    left: 50%;
    top: clamp(1.05rem, 4.2vh, 2.3rem);
    width: min(100vw, 36rem);
    height: clamp(16.2rem, 30vh, 19.2rem);
  }

  .hero-date {
    padding: 0.28rem 0.74rem;
    font-size: clamp(0.62rem, 2.5vw, 0.72rem);
    letter-spacing: 0.18em;
  }

  .guest-name {
    left: 13%;
    top: 8%;
    max-width: 11rem;
    font-size: clamp(1.36rem, 5.6vw, 1.92rem);
  }

  .floating-guest-star {
    left: 0.7rem;
    left: calc(env(safe-area-inset-left) + 0.7rem);
    top: 5.2rem;
    top: calc(env(safe-area-inset-top) + 5.2rem);
  }

  .floating-guest-star__icon {
    width: 3.2rem;
    height: 3.2rem;
    animation: none;
  }

  .planet-cta {
    top: auto;
    bottom: max(4.35rem, calc(env(safe-area-inset-bottom) + 4rem));
    width: min(96vw, 18.6rem);
  }

  .planet-cta__label {
    font-size: clamp(0.84rem, 3.9vw, 0.96rem);
    letter-spacing: 0.07em;
    line-height: 1;
  }

  .planet-cta__label-gap {
    width: clamp(2.35rem, 11vw, 2.85rem);
  }

  .planet-cta.is-visible .planet-cta__label {
    transform: translateY(1rem);
  }

  .page-content {
    padding: 1.8rem 0.72rem 5.9rem;
    overflow-x: clip;
  }

  .page-content::before {
    content: none;
  }

  .page-content::after {
    content: none;
  }

  .continuation-inner {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--continuation-section-gap);
    max-width: 100%;
    padding: 1.15rem 0.42rem 0;
    overflow-x: clip;
  }

  .continuation-block {
    width: 100%;
    filter: none;
    transform: none;
    transition: none;
  }

  .story-intro-header,
  .section-header {
    width: 100%;
    padding-top: 0.35rem;
    padding-inline: var(--continuation-safe-left);
  }

  .story-intro-header .continuation-title {
    max-width: 12ch;
    font-size: clamp(2.52rem, 10.8vw, 3.35rem);
    line-height: 1;
  }

  .page-content .continuation-title {
    font-size: clamp(2.24rem, 9.8vw, 3rem);
    line-height: 0.98;
  }

  .section-header::before {
    width: 3.5rem;
    margin-bottom: 1rem;
  }

  .page-content .continuation-block p {
    font-size: clamp(1.08rem, 4.5vw, 1.2rem);
    line-height: 1.88;
    letter-spacing: 0.01em;
  }

  .page-content .continuation-block p + p {
    margin-top: 0.8em;
  }

  .story-panel,
  .timing-panel {
    padding: 0;
    border-radius: 0;
    width: 100%;
    padding-inline: var(--continuation-safe-left);
  }

  .timing-list {
    width: 100%;
    gap: 0.85rem;
    margin-left: 0;
  }

  .timing-item {
    grid-template-columns: 4.7rem minmax(0, 1fr);
    column-gap: 0.7rem;
    align-items: center;
  }

  .timing-item + .timing-item {
    padding-top: 1rem;
  }

  .timing-item__icon-wrap {
    width: 4.7rem;
  }

  .timing-item__icon {
    width: 3.7rem;
    height: 3.7rem;
  }

  .timing-item__copy {
    grid-template-columns: auto minmax(0, 1fr);
    column-gap: 0.72rem;
    align-items: baseline;
  }

  .timing-item__time {
    font-size: clamp(1.02rem, 4vw, 1.18rem);
    padding-top: 0;
  }

  .timing-item__label {
    font-size: 0.9rem;
    line-height: 1.24;
    white-space: normal;
  }

  .media-panel {
    width: 100%;
    padding: 0;
    padding-inline: var(--continuation-safe-left);
    border-radius: 0;
  }

  .story-panel,
  .timing-panel,
  .media-panel,
  .rsvp-form {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-color: transparent;
    box-shadow: none;
  }

  .story-panel::before,
  .timing-panel::before,
  .media-panel::before,
  .rsvp-form::before {
    content: none;
  }

  .story-panel::after,
  .timing-panel::after,
  .media-panel::after,
  .rsvp-form::after {
    content: none;
  }

  .calendar-section.continuation-block,
  .location-section.continuation-block,
  .dresscode-section.continuation-block {
    width: 100%;
    margin-left: 0;
  }

  .rsvp-section {
    width: 100%;
  }

  .date-calendar-frame,
  .location-photo,
  .dresscode-photo {
    border-radius: 0;
  }

  .dresscode-photo-frame {
    min-height: 11.5rem;
    padding: 0;
    border-radius: 0;
  }

  .dresscode-photo {
    width: min(100%, 16rem);
    border-radius: 0;
  }

  .dresscode-note {
    width: min(100%, 18rem);
    margin-top: 0;
    font-size: 0.96rem;
    line-height: 1.72;
  }

  .calendar-kicker {
    margin-bottom: 0.8rem;
    font-size: 1.08rem;
    letter-spacing: 0.07em;
  }

  .location-gallery {
    grid-auto-columns: 100%;
    gap: 0;
    padding-bottom: 0.4rem;
  }

  .location-section.media-panel::after {
    right: max(var(--continuation-safe-left), 0.65rem);
    top: clamp(4.8rem, 24vw, 8.4rem);
    width: 2.2rem;
    font-size: 1.4rem;
  }

  .location-address {
    width: min(100%, 24.5rem);
    max-width: calc(100% - 1.6rem);
    margin-top: 1.18rem;
    margin-inline: auto;
    padding-inline: 0.7rem;
    font-size: 1.08rem;
    line-height: 1.8;
    text-align: center;
  }

  .location-route-button {
    min-height: 2.95rem;
    margin-top: 1.45rem;
    padding: 0.86rem 1.34rem;
    font-size: 0.84rem;
    letter-spacing: 0.14em;
  }

  .rsvp-form {
    gap: 1rem;
    padding: 0;
    padding-inline: var(--continuation-form-safe-left);
    border-radius: 0;
  }

  .rsvp-fieldset,
  .rsvp-companion {
    padding: 0 0 1rem;
    border-radius: 0;
  }

  .rsvp-legend,
  .rsvp-label {
    margin-bottom: 0.72rem;
    font-size: clamp(1.14rem, 5vw, 1.3rem);
    line-height: 1.38;
    letter-spacing: 0.018em;
  }

  .rsvp-options-grid {
    grid-template-columns: 1fr;
    row-gap: 0.26rem;
  }

  .rsvp-option {
    gap: 0.68rem;
    font-size: 1rem;
    line-height: 1.68;
  }

  .rsvp-submit {
    min-height: 3rem;
    width: 100%;
    font-size: 0.84rem;
    letter-spacing: 0.15em;
  }

  .rsvp-status {
    font-size: 1.08rem;
    line-height: 1.42;
  }

  .finale-stage {
    padding: 2.8rem var(--continuation-safe-left) 3rem;
  }

  .finale-stage__inner {
    width: 100%;
    min-height: auto;
    padding: 0 0.3rem 0.9rem;
  }

  .finale-planet {
    width: min(90vw, 24rem);
  }

  .finale-copy-shell,
  .finale-copy {
    width: 100%;
    font-size: 1.08rem;
    line-height: 1.78;
  }

  .finale-copy-shell {
    margin-top: -0.75rem;
  }

  .finale-named-stars {
    gap: 0.88rem;
    width: 100%;
    max-width: 100%;
    margin-bottom: 0.75rem;
    padding: 0 0.1rem;
  }

  .finale-star--named {
    grid-template-columns: auto minmax(0, 10ch);
    column-gap: 0.5rem;
    width: auto;
    max-width: 100%;
  }

  .finale-star__icon {
    width: 1.95rem;
    height: 1.95rem;
  }

  .finale-star__label {
    min-height: 1.95rem;
    max-width: 10ch;
    font-size: clamp(1.02rem, 5.3vw, 1.6rem);
    line-height: 1.08;
    letter-spacing: 0.02em;
  }

  .finale-heading {
    font-size: clamp(2rem, 9vw, 2.8rem);
  }

  .finale-countdown {
    font-size: clamp(1.6rem, 7vw, 2.1rem);
  }

  .finale-support {
    width: 100%;
  }

  .finale-contact-list {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    gap: 1rem;
  }

  .finale-contact-card,
  .finale-contact-card--right {
    text-align: center;
  }

  .finale-contact-card--right .finale-contact-link {
    justify-content: center;
  }

  .finale-contact-link {
    width: 100%;
    font-size: 1.2rem;
    white-space: normal;
  }

  .finale-contact-name {
    font-size: clamp(2.4rem, 10.4vw, 3rem);
  }

  .finale-contact-icon {
    width: 2.45rem;
    height: 2.45rem;
  }

  .site-audio-control {
    top: max(0.8rem, env(safe-area-inset-top));
    right: max(0.8rem, env(safe-area-inset-right));
  }

  .site-locale-control {
    top: max(0.8rem, env(safe-area-inset-top));
    left: max(0.8rem, env(safe-area-inset-left));
  }

  .site-locale-toggle {
    width: 2.85rem;
    height: 2.85rem;
    padding: 0.18rem;
  }

  .site-audio-toggle {
    min-height: 1.9rem;
    padding: 0.42rem 0.68rem;
    font-size: 0.64rem;
  }

  .page::before {
    content: none;
  }

  .page::after {
    content: none;
  }
}
