:root {
  --black: #050505;
  --black-soft: #0a0a0b;
  --white: #f4f4f1;
  --silver: #b8b8b5;
  --line: rgba(255, 255, 255, 0.16);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --page-pad: clamp(1.25rem, 6vw, 5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
  background: var(--black);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--black);
  color: var(--white);
  font-family: "Manrope", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.is-locked {
  overflow: hidden;
}

[hidden] {
  display: none !important;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  color: inherit;
  font: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.noise {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.06;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
  mix-blend-mode: soft-light;
}

.ambient {
  position: fixed;
  inset: 0;
  z-index: 2;
  overflow: hidden;
  pointer-events: none;
}

.spark {
  position: absolute;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 12px 4px rgba(255, 255, 255, 0.35);
  animation: float 8s ease-in-out infinite;
}

.spark--1 { left: 8%; top: 24%; animation-delay: -2s; }
.spark--2 { right: 12%; top: 42%; animation-delay: -5s; }
.spark--3 { left: 82%; top: 12%; animation-delay: -7s; }
.spark--4 { left: 18%; top: 76%; animation-delay: -3s; }
.spark--5 { left: 57%; top: 67%; animation-delay: -4s; }
.spark--6 { right: 5%; top: 84%; animation-delay: -1s; }

.prism {
  position: absolute;
  top: 0;
  left: 0;
  width: clamp(2.8rem, 10vw, 5.5rem);
  aspect-ratio: 0.72;
  opacity: 0;
  background:
    linear-gradient(132deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.03) 36%, transparent 37%),
    linear-gradient(33deg, rgba(255, 255, 255, 0.03) 48%, rgba(255, 255, 255, 0.22) 49%, transparent 52%);
  clip-path: polygon(52% 0, 100% 100%, 0 76%);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.22));
  will-change: transform, opacity;
}

.prism::after {
  content: "";
  position: absolute;
  inset: 1px;
  background: #070707;
  clip-path: polygon(52% 4%, 95% 94%, 7% 72%);
}

.prism--1 {
  animation: prism-pass-one 17s linear infinite;
}

.prism--2 {
  width: clamp(1.8rem, 7vw, 3.8rem);
  animation: prism-pass-two 21s -9s linear infinite;
}

.prism--3 {
  width: clamp(2.2rem, 8vw, 4.5rem);
  animation: prism-pass-three 25s -15s linear infinite;
}

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0) scale(0.75); opacity: 0.25; }
  50% { transform: translate3d(8px, -22px, 0) scale(1.4); opacity: 0.8; }
}

@keyframes prism-pass-one {
  0% { opacity: 0; transform: translate3d(-18vw, 22vh, 0) rotate(-24deg) scale(0.75); }
  12% { opacity: 0.22; }
  45% { opacity: 0.1; }
  88% { opacity: 0.2; }
  100% { opacity: 0; transform: translate3d(118vw, 62vh, 0) rotate(155deg) scale(1.08); }
}

@keyframes prism-pass-two {
  0% { opacity: 0; transform: translate3d(108vw, 8vh, 0) rotate(36deg) scale(0.62); }
  15% { opacity: 0.16; }
  82% { opacity: 0.12; }
  100% { opacity: 0; transform: translate3d(-18vw, 45vh, 0) rotate(-130deg) scale(0.92); }
}

@keyframes prism-pass-three {
  0% { opacity: 0; transform: translate3d(14vw, 108vh, 0) rotate(-10deg) scale(0.68); }
  14% { opacity: 0.13; }
  84% { opacity: 0.18; }
  100% { opacity: 0; transform: translate3d(78vw, -18vh, 0) rotate(120deg) scale(0.96); }
}

.eyebrow {
  margin: 0 0 1.1rem;
  color: var(--silver);
  font-family: "Montserrat", sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.31em;
  line-height: 1.3;
  text-transform: uppercase;
}

.intro {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  min-height: 100svh;
  overflow: hidden;
  padding: 2rem;
  background:
    radial-gradient(circle at 50% 56%, rgba(255, 255, 255, 0.14), transparent 22%),
    #030303;
  transition: opacity 0.8s var(--ease-out), visibility 0.8s;
}

.intro::before,
.intro::after {
  content: "";
  position: absolute;
  width: 55vw;
  max-width: 26rem;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.16);
  transform: rotate(45deg) skew(8deg, 8deg);
}

.intro::before {
  top: -35vw;
  right: -32vw;
}

.intro::after {
  bottom: -38vw;
  left: -35vw;
}

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

.intro__glow {
  position: absolute;
  left: 50%;
  bottom: -3rem;
  width: 22rem;
  height: 12rem;
  background: rgba(255, 255, 255, 0.16);
  filter: blur(70px);
  transform: translateX(-50%);
}

.intro__content {
  position: relative;
  z-index: 1;
  width: 100%;
  text-align: center;
}

.intro__eyebrow {
  margin-bottom: 1rem;
  animation: intro-rise 1s 0.15s both;
}

.intro__title {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.6rem, 20vw, 8rem);
  font-weight: 300;
  letter-spacing: -0.08em;
  line-height: 0.82;
  text-transform: uppercase;
  background: linear-gradient(112deg, #6a6a6a 0%, #fff 24%, #777 49%, #fff 70%, #555 100%);
  background-size: 200% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.22));
  animation: intro-rise 1s 0.25s both, metal-shine 5s 1.3s linear infinite;
}

.intro__age {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1.15rem 0 2.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  animation: intro-rise 1s 0.4s both;
}

.intro__age span {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0;
}

@keyframes intro-rise {
  from { opacity: 0; transform: translateY(28px); filter: blur(8px); }
  to { opacity: 1; transform: translateY(0); filter: blur(0); }
}

@keyframes metal-shine {
  0% { background-position: 130% 0; }
  100% { background-position: -70% 0; }
}

.enter-button,
.primary-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-height: 3.75rem;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(8, 8, 8, 0.55);
  color: #fff;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.enter-button {
  width: min(100%, 18rem);
  animation: intro-rise 1s 0.55s both;
}

.enter-button svg,
.primary-button svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
  transition: transform 0.35s var(--ease-out);
}

.enter-button:hover svg,
.primary-button:hover svg {
  transform: translateX(5px);
}

.enter-button__pulse {
  position: absolute;
  inset: -1px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: inherit;
  animation: pulse-ring 2.3s ease-out infinite;
}

@keyframes pulse-ring {
  0% { opacity: 0.6; transform: scale(1); }
  75%, 100% { opacity: 0; transform: scale(1.12, 1.3); }
}

.intro__hint {
  margin: 1.1rem 0 0;
  color: #777;
  font-size: 0.65rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: intro-rise 1s 0.7s both;
}

#soundtrack {
  display: none;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: max(1.1rem, env(safe-area-inset-top)) var(--page-pad) 1rem;
  transition: background 0.4s ease, border-color 0.4s ease;
}

.site-header.is-scrolled {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(5, 5, 5, 0.72);
  backdrop-filter: blur(16px);
}

.monogram {
  font-family: "Montserrat", sans-serif;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: -0.08em;
}

.monogram span {
  margin-left: 0.15rem;
  color: #8d8d8d;
  font-size: 0.52rem;
  letter-spacing: 0;
  vertical-align: top;
}

.music-toggle {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.music-toggle__label {
  color: #b9b9b7;
  font-family: "Montserrat", sans-serif;
  font-size: 0.57rem;
  font-weight: 600;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.equalizer {
  display: flex;
  align-items: center;
  gap: 2px;
  width: 14px;
  height: 13px;
}

.equalizer i {
  display: block;
  width: 2px;
  height: 30%;
  background: #fff;
  animation: equalize 0.7s ease-in-out infinite alternate;
}

.equalizer i:nth-child(2) { animation-delay: -0.2s; }
.equalizer i:nth-child(3) { animation-delay: -0.45s; }
.equalizer i:nth-child(4) { animation-delay: -0.1s; }

.music-toggle.is-paused .equalizer i {
  height: 2px;
  animation-play-state: paused;
}

@keyframes equalize {
  from { height: 20%; }
  to { height: 100%; }
}

.hero {
  position: relative;
  display: grid;
  min-height: 100svh;
  overflow: hidden;
  padding: 7rem var(--page-pad) 6rem;
  isolation: isolate;
}

.hero__image {
  position: absolute;
  inset: -4%;
  z-index: -3;
  background-image: url("assets/crystal-stage.jpg");
  background-position: 50% 68%;
  background-size: cover;
  filter: contrast(1.12) brightness(0.62);
  transform: scale(1.08);
  will-change: transform;
}

.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.85) 0%, transparent 30%, rgba(0, 0, 0, 0.1) 57%, #050505 100%),
    radial-gradient(circle at 50% 42%, transparent 15%, rgba(0, 0, 0, 0.38) 78%);
}

.hero__content {
  align-self: center;
  width: 100%;
  max-width: 63rem;
  margin: 0 auto;
  text-align: center;
}

.hero__title {
  position: relative;
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(4.2rem, 21.5vw, 13rem);
  font-weight: 300;
  letter-spacing: -0.085em;
  line-height: 0.75;
  text-transform: uppercase;
  background: linear-gradient(112deg, #616161 0%, #fff 22%, #757575 46%, #fff 66%, #4c4c4c 100%);
  background-size: 220% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(0 0 22px rgba(255, 255, 255, 0.16));
  animation: metal-shine 8s linear infinite;
}

.hero__age-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin: 1.5rem 0 2rem;
}

.hero__age {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.2rem, 17vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.08em;
  line-height: 0.75;
}

.hero__years {
  border-left: 1px solid rgba(255, 255, 255, 0.5);
  padding-left: 0.8rem;
  color: #c3c3c0;
  font-family: "Montserrat", sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  line-height: 1.55;
  text-align: left;
  text-transform: uppercase;
}

.event-stamp {
  display: inline-flex;
  flex-direction: column;
  gap: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.45);
  border-bottom: 1px solid rgba(255, 255, 255, 0.45);
  padding: 0.8rem 1.4rem;
  background: rgba(0, 0, 0, 0.28);
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.event-stamp span {
  color: #b8b8b5;
  font-size: 0.57rem;
  letter-spacing: 0.28em;
}

.event-stamp strong {
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}

.scroll-cue {
  position: absolute;
  bottom: 1.65rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  transform: translateX(-50%);
}

.scroll-cue span {
  font-family: "Montserrat", sans-serif;
  font-size: 0.48rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  position: relative;
  width: 1px;
  height: 1.7rem;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.2);
}

.scroll-cue i::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  animation: scroll-line 1.8s ease-in-out infinite;
}

@keyframes scroll-line {
  from { transform: translateY(-100%); }
  to { transform: translateY(100%); }
}

.section {
  position: relative;
  z-index: 3;
  overflow: hidden;
  padding: clamp(6.5rem, 18vw, 11rem) var(--page-pad);
}

main > section {
  scroll-margin-top: 4.5rem;
}

.section__inner {
  width: 100%;
  max-width: 68rem;
  margin: 0 auto;
}

.section-title {
  margin: 0 0 3.4rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.9rem, 13vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.95;
  text-transform: uppercase;
}

.section-title em {
  color: transparent;
  font-style: normal;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.58);
}

.countdown-section {
  background:
    radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.075), transparent 33%),
    var(--black);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.countdown__unit {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 8.5rem;
  overflow: hidden;
  border: 1px solid var(--line);
  padding: 1rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.006));
}

.countdown__unit::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -80%;
  width: 55%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.11), transparent);
  transform: rotate(20deg);
  animation: card-shine 6s linear infinite;
}

.countdown__unit:nth-child(2)::after { animation-delay: 0.7s; }
.countdown__unit:nth-child(3)::after { animation-delay: 1.4s; }
.countdown__unit:nth-child(4)::after { animation-delay: 2.1s; }

@keyframes card-shine {
  0%, 70% { left: -80%; }
  100% { left: 140%; }
}

.countdown__unit strong {
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.6rem, 14vw, 5rem);
  font-weight: 300;
  letter-spacing: -0.07em;
  line-height: 1;
}

.countdown__unit span {
  color: #8d8d8b;
  font-family: "Montserrat", sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.countdown__after {
  margin: 1.5rem 0 0;
  color: #c6c6c3;
}

.statement {
  display: grid;
  min-height: 90svh;
  align-items: center;
  background:
    linear-gradient(135deg, transparent 42%, rgba(255, 255, 255, 0.09) 42.1%, transparent 42.4%),
    linear-gradient(45deg, transparent 72%, rgba(255, 255, 255, 0.06) 72.1%, transparent 72.4%),
    #efefec;
  color: #090909;
}

.statement .eyebrow {
  color: #5e5e5c;
}

.statement__text {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(2.5rem, 12.5vw, 7rem);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.96;
  text-transform: uppercase;
}

.statement__text span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.6);
}

.dress-code {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  margin-top: 4rem;
  border-top: 1px solid rgba(0, 0, 0, 0.25);
  padding-top: 1.2rem;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
}

.dress-code span {
  color: #676765;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.24em;
}

.dress-code strong {
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.details {
  background: var(--black-soft);
}

.detail-card {
  position: relative;
  display: grid;
  grid-template-columns: 2rem 1fr auto;
  gap: 0.8rem;
  align-items: start;
  border-top: 1px solid var(--line);
  padding: 1.5rem 0 2.2rem;
}

.detail-card__index,
.detail-card__label {
  color: #747472;
  font-family: "Montserrat", sans-serif;
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.detail-card__label {
  margin: 0 0 1rem;
}

.detail-card h3 {
  margin: 0 0 0.8rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.65rem, 8vw, 3.2rem);
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1;
  text-transform: uppercase;
}

.detail-card p:last-child {
  margin: 0;
  color: #989895;
  font-size: 0.75rem;
  line-height: 1.65;
}

.icon-button {
  display: grid;
  width: 2.9rem;
  height: 2.9rem;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.icon-button:hover {
  background: #f2f2ef;
  color: #050505;
  transform: scale(1.06);
}

.icon-button svg {
  width: 1.1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.primary-button {
  width: 100%;
  min-height: 4rem;
  margin-top: 1.2rem;
}

.gift {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent 50%),
    #060606;
}

.gift__flare {
  position: absolute;
  top: 15%;
  right: -7rem;
  width: 16rem;
  height: 16rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transform: rotate(45deg) skew(8deg, 8deg);
}

.gift__copy {
  max-width: 30rem;
  margin: -1.7rem 0 2.8rem;
  color: #9c9c99;
  font-size: 0.88rem;
  line-height: 1.75;
}

.iban-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0.25rem;
  padding: 1.5rem;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.09), transparent 35%, rgba(255, 255, 255, 0.035) 80%),
    #0c0c0d;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.42);
}

.iban-card::before {
  content: "A";
  position: absolute;
  right: -0.1em;
  bottom: -0.25em;
  color: rgba(255, 255, 255, 0.025);
  font-family: "Montserrat", sans-serif;
  font-size: 13rem;
  font-weight: 800;
  line-height: 1;
}

.iban-card__top,
.iban-card__number {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.iban-card__number {
  margin: 3.2rem 0 1.8rem;
}

.iban-card span {
  color: #747472;
  font-family: "Montserrat", sans-serif;
  font-size: 0.52rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.iban-card__top strong {
  font-size: 0.83rem;
  letter-spacing: 0.03em;
}

.iban-card__number strong {
  max-width: 19rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(1.2rem, 6.3vw, 2rem);
  font-weight: 500;
  letter-spacing: 0.065em;
  line-height: 1.45;
  overflow-wrap: anywhere;
}

.copy-button {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-family: "Montserrat", sans-serif;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.copy-button svg {
  width: 1rem;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.copy-button[disabled] {
  cursor: not-allowed;
  opacity: 0.42;
}

.iban-note {
  margin: 1rem 0 0;
  color: #747472;
  font-size: 0.68rem;
}

.finale {
  display: grid;
  min-height: 100svh;
  align-items: center;
  background: #efefec;
  color: #080808;
}

.finale::after {
  content: "";
  position: absolute;
  right: -10%;
  bottom: -8%;
  width: 75vw;
  max-width: 35rem;
  aspect-ratio: 1;
  background: url("assets/crystal-stage.jpg") 58% 70% / cover;
  clip-path: polygon(52% 0, 100% 100%, 0 72%);
  filter: grayscale(1) contrast(1.4);
  mix-blend-mode: multiply;
  opacity: 0.14;
}

.finale__inner {
  position: relative;
  z-index: 1;
}

.finale .eyebrow {
  color: #636361;
}

.finale__title {
  margin: 0 0 3rem;
  font-family: "Montserrat", sans-serif;
  font-size: clamp(3.5rem, 16vw, 8.5rem);
  font-weight: 700;
  letter-spacing: -0.075em;
  line-height: 0.86;
  text-transform: uppercase;
}

.finale__title span {
  color: transparent;
  -webkit-text-stroke: 1px rgba(0, 0, 0, 0.65);
}

.primary-button--light {
  border-color: #0a0a0a;
  background: #0a0a0a;
  color: #fff;
}

.track-credit {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-top: 3.5rem;
  border-left: 1px solid #aaa;
  padding-left: 0.9rem;
}

.track-credit span,
.track-credit small {
  color: #656563;
  font-family: "Montserrat", sans-serif;
  font-size: 0.5rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.track-credit strong {
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
}

.toast {
  position: fixed;
  right: var(--page-pad);
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
  z-index: 90;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 999px;
  padding: 0.8rem 1.1rem;
  background: rgba(10, 10, 10, 0.9);
  color: #fff;
  font-size: 0.7rem;
  opacity: 0;
  transform: translateY(1rem);
  transition: opacity 0.3s ease, transform 0.3s var(--ease-out);
  pointer-events: none;
  backdrop-filter: blur(12px);
}

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

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}

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

@media (min-width: 700px) {
  .hero {
    padding-top: 9rem;
  }

  .hero__image {
    background-position: 50% 72%;
  }

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

  .countdown__unit {
    min-height: 13rem;
    padding: 1.4rem;
  }

  .detail-card {
    grid-template-columns: 3rem 1fr auto;
    padding: 2.2rem 0 3rem;
  }

  .primary-button {
    width: auto;
    min-width: 20rem;
    padding: 0 2rem;
  }

  .iban-card {
    max-width: 42rem;
    padding: 2rem;
  }
}

@media (max-width: 699px) and (max-height: 900px) {
  .section {
    padding-top: 4.75rem;
    padding-bottom: 4.75rem;
  }

  .section-title {
    margin-bottom: 2.3rem;
  }

  .detail-card {
    padding-top: 1.15rem;
    padding-bottom: 1.55rem;
  }

  .gift__copy {
    margin-bottom: 1.8rem;
  }

  .iban-card__number {
    margin-top: 2rem;
    margin-bottom: 1.4rem;
  }
}

@media (min-width: 1024px) {
  .hero__content {
    margin-top: 2rem;
  }

  .statement__inner,
  .finale__inner {
    padding-left: 8vw;
  }

  .details .section__inner {
    display: grid;
    grid-template-columns: minmax(15rem, 0.8fr) 1.2fr;
    column-gap: 7rem;
  }

  .details .eyebrow,
  .details .section-title {
    grid-column: 1;
  }

  .details .section-title {
    grid-row: 2 / span 2;
  }

  .detail-card,
  .details .primary-button {
    grid-column: 2;
  }

  .detail-card--date {
    grid-row: 1 / span 2;
  }

  .detail-card--location {
    grid-row: 3;
  }

  .details .primary-button {
    grid-row: 4;
  }

  .gift .section__inner {
    padding-left: 10vw;
  }
}

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

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

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

  .prism {
    display: none;
  }
}
