:root {
  --ivory: #fffdf8;
  --cream: #fbf1e5;
  --linen: #f6e7d8;
  --ink: #27201c;
  --muted: #75685d;
  --plum: #753854;
  --sage: #6f7b4a;
  --butter: #f7dc91;
  --grass: #c6ca72;
  --sun: #fce296;
  --orange: #eeb245;
  --rose: #f69b87;
  --lilac: #e1a5ce;
  --powder: #c8c2ec;
  --line: rgba(39, 32, 28, 0.13);
  --shadow: 0 26px 80px rgba(79, 53, 38, 0.11);
  --luxury-ease: ease-in-out;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  background: var(--ivory);
  color: var(--ink);
  font-family: Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  letter-spacing: 0;
}

body:not(.invitation-open) {
  overflow: hidden;
}

body:not(.invitation-open) main,
body:not(.invitation-open) footer {
  display: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

figure {
  margin: 0;
}

a {
  color: inherit;
}

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

main {
  position: relative;
}

.variant main > section {
  width: min(1080px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(54px, 8vw, 108px) 0;
}

.opening {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  align-items: end;
  padding: clamp(18px, 4vw, 54px);
  overflow: hidden;
  background: var(--cream);
  transition: opacity 900ms ease, visibility 900ms ease, transform 900ms ease;
}

.opening::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(39, 32, 28, 0.64), rgba(39, 32, 28, 0.24) 45%, rgba(39, 32, 28, 0.02)),
    linear-gradient(0deg, rgba(39, 32, 28, 0.34), transparent 60%);
  pointer-events: none;
}

.opening-image {
  position: absolute;
  inset: 0;
  box-shadow: none;
}

.opening-image::after {
  background: linear-gradient(90deg, rgba(39, 32, 28, 0.03), transparent);
  mix-blend-mode: normal;
}

.opening-shell {
  position: relative;
  z-index: 2;
  width: min(1120px, 100%);
  margin: 0 auto;
}

.opening-note {
  width: min(540px, 100%);
  padding: clamp(24px, 5vw, 48px);
  color: var(--ivory);
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.36);
  animation: bloomIn 620ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.flower-curtain {
  position: absolute;
  inset: 0;
  z-index: 3;
  overflow: hidden;
  pointer-events: none;
}

.floating-petal {
  position: absolute;
  width: 14px;
  height: 22px;
  border-radius: 80% 18% 80% 22%;
  background: rgba(246, 155, 135, 0.7);
  animation: petalDrift 14s linear infinite;
}

.floating-petal:nth-child(1) { left: 8%; top: -12%; animation-delay: -1s; background: rgba(247, 220, 145, 0.78); }
.floating-petal:nth-child(2) { left: 21%; top: -16%; animation-delay: -8s; background: rgba(225, 165, 206, 0.72); }
.floating-petal:nth-child(3) { left: 43%; top: -10%; animation-delay: -4s; background: rgba(200, 194, 236, 0.76); }
.floating-petal:nth-child(4) { left: 62%; top: -14%; animation-delay: -10s; background: rgba(238, 178, 69, 0.62); }
.floating-petal:nth-child(5) { left: 78%; top: -11%; animation-delay: -5s; background: rgba(198, 202, 114, 0.68); }
.floating-petal:nth-child(6) { left: 91%; top: -13%; animation-delay: -3s; background: rgba(246, 155, 135, 0.72); }

.invitation-open .opening {
  opacity: 0;
  visibility: hidden;
  transform: translateY(-18px) scale(1.01);
}

.film-photo {
  position: relative;
  overflow: hidden;
  background: var(--linen);
  box-shadow: var(--shadow);
}

.film-photo img {
  position: absolute;
  inset: 0;
}

.film-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.03), rgba(39, 32, 28, 0.08)),
    radial-gradient(circle at 50% 36%, transparent 50%, rgba(39, 32, 28, 0.08));
  mix-blend-mode: multiply;
}

.kicker {
  margin: 0;
  color: var(--sage);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 0.98;
}

h1 {
  margin-top: 14px;
  font-size: clamp(4rem, 9vw, 8.3rem);
}

h1 span,
h1 em,
.editorial-names span,
.editorial-names em {
  display: block;
}

h1 em,
.editorial-names em {
  font-style: italic;
}

h3,
p {
  margin-top: 0;
}

.date-line {
  margin: 18px 0 28px;
  color: var(--butter);
  font-size: clamp(1.05rem, 2vw, 1.45rem);
  font-weight: 850;
}

.open-button,
.location-list a {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  transition: transform 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.open-button {
  border: 1px solid rgba(255, 253, 248, 0.76);
  background: var(--ivory);
  color: var(--ink);
}

.open-button:hover,
.location-list a:hover {
  transform: translateY(-3px);
}

.script-word {
  margin: 0 0 12px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.6rem, 8vw, 5.5rem);
  font-style: italic;
  line-height: 0.9;
}

.itinerary {
  display: grid;
}

.itinerary article {
  position: relative;
}

.itinerary time {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  line-height: 1;
}

.itinerary h3,
.location-list h3 {
  margin: 12px 0 4px;
  font-size: 1.04rem;
}

.itinerary p,
.location-list p,
.v-hero-copy p,
.v-intro p,
.v-palette p,
.x-letter p,
.m-letter p,
.m-gallery p {
  color: var(--muted);
}

.location-list {
  display: grid;
}

.location-list article {
  border-top: 1px solid var(--line);
}

.location-list article:last-child {
  border-bottom: 1px solid var(--line);
}

.location-list span {
  display: block;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.7rem;
}

.variant-eventee-v4 .location-address {
  max-width: 34ch;
  margin: 8px 0 4px;
  color: rgba(75, 54, 61, 0.82);
  font-size: 0.96rem;
  font-weight: 560;
  line-height: 1.55;
}

.swatches {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.swatch {
  display: block;
  width: clamp(36px, 7vw, 72px);
  aspect-ratio: 1;
  border-radius: 50% 50% 50% 18%;
  box-shadow: inset 0 0 0 1px rgba(39, 32, 28, 0.09), 0 14px 26px rgba(79, 53, 38, 0.08);
  transform: rotate(-8deg);
}

.swatch:nth-child(even) {
  transform: rotate(8deg) translateY(9px);
}

.swatch-cream { background: #fff1d1; }
.swatch-grass { background: #cccd6d; }
.swatch-sun { background: #fce296; }
.swatch-orange { background: #eeb245; }
.swatch-rose { background: #f69b87; }
.swatch-lilac { background: #ecafd3; }
.swatch-powder { background: #cbc4f0; }

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

.countdown div {
  min-height: 96px;
  display: grid;
  place-items: center;
  padding: 14px 8px;
  border-top: 1px solid rgba(111, 123, 74, 0.24);
  border-bottom: 1px solid rgba(111, 123, 74, 0.24);
}

.countdown strong {
  display: block;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-weight: 500;
  line-height: 1;
}

.countdown span {
  color: var(--muted);
  font-size: 0.82rem;
}

.v-closing {
  position: relative;
  min-height: min(820px, 100svh);
  display: grid;
  place-items: end center;
}

.closing-photo {
  position: absolute;
  inset: clamp(16px, 4vw, 52px);
  z-index: 0;
}

.closing-photo img {
  object-position: 48% 45%;
}

.closing-photo::after {
  background:
    linear-gradient(0deg, rgba(39, 32, 28, 0.66), rgba(39, 32, 28, 0.24) 58%, rgba(39, 32, 28, 0.08)),
    radial-gradient(circle at 50% 62%, rgba(20, 24, 18, 0.34), transparent 42%),
    radial-gradient(circle at 50% 78%, rgba(117, 56, 84, 0.22), transparent 36%);
  mix-blend-mode: normal;
}

.closing-copy {
  position: relative;
  z-index: 1;
  width: min(680px, calc(100% - 40px));
  padding-bottom: clamp(24px, 6vw, 58px);
  color: var(--ivory);
  text-align: center;
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.45);
}

.closing-copy .kicker {
  color: var(--butter);
}

.closing-copy h2 {
  margin-top: 10px;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
}

footer {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
  padding: 26px;
  color: var(--muted);
  background: var(--ivory);
  font-size: 0.9rem;
}

/* Variant 1: Eventee-style premium scroll */
.variant-eventee {
  background:
    radial-gradient(circle at 14% 12%, rgba(246, 155, 135, 0.14), transparent 28rem),
    radial-gradient(circle at 92% 8%, rgba(200, 194, 236, 0.16), transparent 30rem),
    linear-gradient(180deg, #fffaf3 0%, #fbf0e4 54%, #fffdf8 100%);
}

.variant-eventee .film-photo {
  border-radius: 76px 16px 76px 16px;
}

.v-hero {
  min-height: 92svh;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 86px);
  align-items: center;
}

.v-hero-copy h2 {
  max-width: 9ch;
  margin-top: 12px;
  font-size: clamp(4.1rem, 8vw, 7rem);
}

.v-hero-copy p:last-child {
  max-width: 440px;
  margin-top: 28px;
  font-size: 1.08rem;
}

.phone-scroll {
  position: relative;
  min-height: min(690px, 74svh);
}

.phone-card {
  position: absolute;
  inset: 0 2% 5% 14%;
}

.floating-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(270px, 42%);
  aspect-ratio: 0.78;
  border: 10px solid var(--ivory);
  transform: translateY(10px);
}

.v-intro {
  text-align: center;
}

.v-intro h2 {
  max-width: 840px;
  margin: 0 auto;
  font-size: clamp(2.4rem, 5vw, 4.5rem);
}

.v-intro p {
  max-width: 680px;
  margin: 24px auto 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.08rem, 1.8vw, 1.34rem);
}

.v-day {
  display: grid;
  grid-template-columns: minmax(190px, 0.36fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: start;
}

.date-mark span,
.date-mark em {
  display: block;
  color: var(--sage);
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.date-mark strong {
  display: block;
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(7rem, 14vw, 12rem);
  font-weight: 500;
  line-height: 0.9;
}

.variant-eventee .itinerary {
  gap: 0;
  border-left: 1px solid rgba(111, 123, 74, 0.28);
}

.variant-eventee .itinerary article {
  padding: 0 0 32px 32px;
}

.variant-eventee .itinerary article::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--ivory);
  box-shadow: 0 0 0 1px var(--sage), 0 0 0 8px rgba(198, 202, 114, 0.14);
}

.v-locations,
.v-countdown {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(34px, 7vw, 80px);
  align-items: center;
}

.wide-photo {
  min-height: 620px;
}

.location-list {
  margin-top: 28px;
  gap: 0;
}

.location-list article {
  padding: 24px 0;
}

.variant-eventee .location-list a,
.variant-magazine .location-list a {
  border: 1px solid rgba(117, 56, 84, 0.22);
  background: rgba(117, 56, 84, 0.08);
  color: var(--plum);
}

.variant-eventee .location-list a:hover,
.variant-magazine .location-list a:hover {
  background: var(--plum);
  color: var(--ivory);
}

.v-palette {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
}

.v-palette h2,
.v-countdown h2,
.location-panel h2 {
  margin-top: 10px;
  font-size: clamp(2.3rem, 5vw, 4.6rem);
}

.detail-photo {
  min-height: 520px;
}

/* Variant 1 V2: Eventee structure with minimal tones and petal palette */
.variant-eventee-v2 {
  --ivory: #fffdf8;
  --cream: #fbf1e5;
  --linen: #f7eee5;
  --ink: #211a19;
  --muted: #62564f;
  --plum: #5f2447;
  --sage: #6f7b4a;
  --deep-plum: #4f183d;
  --charcoal: #211a19;
  --line: rgba(79, 24, 61, 0.13);
  --shadow: 0 24px 76px rgba(79, 53, 38, 0.09);
  background:
    linear-gradient(rgba(255, 253, 248, 0.46), rgba(255, 253, 248, 0.56)),
    url("assets/summer-garden-canvas-desktop.png") top center / 100% auto repeat-y,
    #fff8f1;
  color: var(--charcoal);
}

.variant-eventee-v2 .kicker {
  color: var(--sage);
}

.variant-eventee-v2 h1,
.variant-eventee-v2 h2,
.variant-eventee-v2 h3,
.variant-eventee-v2 time {
  color: var(--charcoal);
}

.variant-eventee-v2 p {
  color: var(--muted);
}

.variant-eventee-v2 h1,
.variant-eventee-v2 .editorial-names {
  color: var(--deep-plum);
  letter-spacing: 0;
}

.variant-eventee-v2 h1 em,
.variant-eventee-v2 .editorial-names em {
  margin: -0.06em 0 -0.02em;
  color: #7d3d61;
  font-size: 0.58em;
  line-height: 0.78;
}

.variant-eventee-v2 .film-photo {
  border-radius: 82px 18px 82px 18px;
  box-shadow: 0 28px 88px rgba(62, 44, 30, 0.1);
}

.variant-eventee-v2 .phone-card {
  inset: 0 0 5% 15%;
}

.variant-eventee-v2 .floating-card {
  border-color: #fffdf8;
  border-radius: 30px 54px 30px 54px;
}

.variant-eventee-v2 .date-mark strong,
.variant-eventee-v2 .itinerary time,
.variant-eventee-v2 .location-list span,
.variant-eventee-v2 .countdown strong {
  color: var(--deep-plum);
}

.variant-eventee-v2 .itinerary {
  border-left: 0;
  gap: 18px;
}

.variant-eventee-v2 .itinerary article::before {
  display: none;
}

.variant-eventee-v2 .itinerary article {
  min-height: 132px;
  display: grid;
  grid-template-columns: 76px minmax(100px, 0.28fr) 1fr;
  column-gap: 24px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid rgba(79, 24, 61, 0.12);
}

.variant-eventee-v2 .itinerary article:last-child {
  border-bottom: 1px solid rgba(79, 24, 61, 0.12);
}

.variant-eventee-v2 .timeline-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.72);
  box-shadow: 0 16px 34px rgba(79, 53, 38, 0.08);
}

.variant-eventee-v2 .timeline-icon svg {
  width: 38px;
  height: 38px;
  fill: none;
  stroke: #7f4564;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.variant-eventee-v2 .itinerary time {
  font-size: clamp(2rem, 4vw, 3.2rem);
}

.variant-eventee-v2 .itinerary h3,
.variant-eventee-v2 .itinerary p {
  grid-column: 3;
}

.variant-eventee-v2 .itinerary h3 {
  color: var(--deep-plum);
}

.variant-eventee-v2 .itinerary p {
  color: var(--muted);
}

.variant-eventee-v2 .location-list a {
  min-height: 50px;
  gap: 12px;
  padding: 0 16px 0 24px;
  border-color: rgba(95, 36, 71, 0.35);
  background: rgba(255, 253, 248, 0.42);
  color: var(--deep-plum);
  box-shadow: none;
}

.variant-eventee-v2 .location-list a::after {
  content: "↗";
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(95, 36, 71, 0.08);
  color: var(--deep-plum);
  font-size: 0.9rem;
  line-height: 1;
  transition: transform 220ms ease, background 220ms ease, color 220ms ease;
}

.variant-eventee-v2 .location-list a:hover {
  background: rgba(228, 164, 206, 0.22);
  border-color: rgba(95, 36, 71, 0.42);
  color: var(--deep-plum);
  box-shadow: 0 16px 34px rgba(95, 36, 71, 0.1);
}

.variant-eventee-v2 .location-list a:hover::after {
  background: rgba(95, 36, 71, 0.12);
  color: var(--deep-plum);
  transform: translate(2px, -2px);
}

.variant-eventee-v2 .v-petal-palette {
  display: block;
  width: min(1180px, calc(100% - 36px));
  padding-top: clamp(74px, 9vw, 128px);
  padding-bottom: clamp(72px, 9vw, 128px);
  text-align: center;
}

.variant-eventee-v2 .v-petal-palette h2 {
  max-width: 1120px;
  margin: 14px auto 0;
  color: var(--deep-plum);
  font-size: clamp(3.2rem, 8.5vw, 6.75rem);
  line-height: 0.98;
}

.variant-eventee-v2 .v-petal-palette p:last-child {
  max-width: 720px;
  margin: 24px auto 0;
  color: var(--muted);
}

.variant-eventee-v2 .petal-swatches {
  justify-content: center;
  align-items: center;
  gap: clamp(10px, 1.6vw, 22px);
  margin-top: clamp(42px, 6vw, 72px);
}

.variant-eventee-v2 .watercolor-swatch {
  display: block;
  width: clamp(126px, 12.6vw, 198px);
  aspect-ratio: 2.75;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  filter: saturate(1.16) contrast(1.04);
  opacity: 0.98;
  mix-blend-mode: multiply;
  transform: rotate(-2deg);
}

.variant-eventee-v2 .watercolor-cream {
  background-image: url("assets/watercolor-swatches/cream.png");
  transform: rotate(-5deg) translateY(7px);
}

.variant-eventee-v2 .watercolor-grass {
  background-image: url("assets/watercolor-swatches/grass.png");
  transform: rotate(2deg) translateY(12px);
}

.variant-eventee-v2 .watercolor-sun {
  background-image: url("assets/watercolor-swatches/sun.png");
  transform: rotate(-3deg) translateY(1px);
}

.variant-eventee-v2 .watercolor-orange {
  background-image: url("assets/watercolor-swatches/orange.png");
  transform: rotate(4deg) translateY(11px);
}

.variant-eventee-v2 .watercolor-peach {
  background-image: url("assets/watercolor-swatches/peach.png");
  transform: rotate(-4deg) translateY(2px);
}

.variant-eventee-v2 .watercolor-rose {
  background-image: url("assets/watercolor-swatches/rose.png");
  transform: rotate(3deg) translateY(10px);
}

.variant-eventee-v2 .watercolor-lavender {
  background-image: url("assets/watercolor-swatches/lavender.png");
  transform: rotate(-3deg) translateY(1px);
}

.variant-eventee-v2 .watercolor-blue {
  background-image: url("assets/watercolor-swatches/blue.png");
  filter: hue-rotate(34deg) saturate(0.9) brightness(1.06) contrast(1.04);
  transform: rotate(5deg) translateY(12px);
}

/* Variant 1 V3: softer luminous editorial refinement */
.variant-eventee-v3 {
  --soft-plum: #b9799d;
  --soft-plum-ink: #9f6387;
  --soft-rose-plum: #c991aa;
  --deep-plum: #4f183d;
  background:
    linear-gradient(rgba(255, 253, 248, 0.52), rgba(255, 250, 245, 0.6)),
    url("assets/summer-garden-canvas-scroll-desktop.png") top center / 100% auto repeat-y,
    #fff8f1;
}

.variant-eventee-v3::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 253, 248, 0.54) 0 28%, rgba(255, 253, 248, 0.22) 52%, transparent 78%),
    linear-gradient(180deg, rgba(255, 253, 248, 0.1), rgba(255, 246, 240, 0.18));
}

.variant-eventee-v3 .kicker {
  color: rgba(95, 111, 62, 0.82);
}

.variant-eventee-v3 .opening-note .kicker {
  color: rgba(125, 55, 92, 0.76);
}

.variant-eventee-v3 h1,
.variant-eventee-v3 .editorial-names {
  color: var(--deep-plum);
}

.variant-eventee-v3 h1 em,
.variant-eventee-v3 .editorial-names em {
  color: var(--soft-rose-plum);
  text-shadow: 0 10px 34px rgba(201, 145, 170, 0.18);
}

.variant-eventee-v3 .film-photo img {
  filter: brightness(1.055) saturate(1.08) contrast(1.02);
}

.variant-eventee-v3 .film-photo::after {
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.08), rgba(79, 24, 61, 0.035)),
    radial-gradient(circle at 50% 34%, transparent 55%, rgba(255, 253, 248, 0.06));
}

.variant-eventee-v3 .timeline-icon {
  background:
    radial-gradient(circle, rgba(255, 253, 248, 0.78) 0 42%, rgba(255, 253, 248, 0.3) 68%, transparent 100%);
  box-shadow: none;
}

.variant-eventee-v3 .timeline-icon svg {
  stroke: var(--soft-plum-ink);
}

.variant-eventee-v3 .itinerary article {
  align-items: start;
  border-top-color: transparent;
  background: linear-gradient(90deg, transparent, rgba(95, 36, 71, 0.1) 18%, rgba(95, 36, 71, 0.1) 82%, transparent) top / 100% 1px no-repeat;
}

.variant-eventee-v3 .itinerary article:last-child {
  border-bottom-color: transparent;
  background:
    linear-gradient(90deg, transparent, rgba(95, 36, 71, 0.1) 18%, rgba(95, 36, 71, 0.1) 82%, transparent) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(95, 36, 71, 0.08) 18%, rgba(95, 36, 71, 0.08) 82%, transparent) bottom / 100% 1px no-repeat;
}

.variant-eventee-v3 .location-list article {
  border-top-color: transparent;
  background: linear-gradient(90deg, transparent, rgba(95, 36, 71, 0.1) 14%, rgba(95, 36, 71, 0.1) 86%, transparent) top / 100% 1px no-repeat;
}

.variant-eventee-v3 .location-list article:last-child {
  border-bottom-color: transparent;
  background:
    linear-gradient(90deg, transparent, rgba(95, 36, 71, 0.1) 14%, rgba(95, 36, 71, 0.1) 86%, transparent) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(95, 36, 71, 0.08) 14%, rgba(95, 36, 71, 0.08) 86%, transparent) bottom / 100% 1px no-repeat;
}

.variant-eventee-v3 .countdown div {
  border-top-color: transparent;
  border-bottom-color: transparent;
  background:
    linear-gradient(90deg, transparent, rgba(111, 123, 74, 0.18) 16%, rgba(111, 123, 74, 0.18) 84%, transparent) top / 100% 1px no-repeat,
    linear-gradient(90deg, transparent, rgba(111, 123, 74, 0.14) 16%, rgba(111, 123, 74, 0.14) 84%, transparent) bottom / 100% 1px no-repeat;
}

.variant-eventee-v3 .location-list a {
  border-color: rgba(95, 36, 71, 0.24);
  background: rgba(255, 253, 248, 0.2);
  color: var(--deep-plum);
}

.variant-eventee-v3 .location-list a::after {
  background: rgba(185, 121, 157, 0.1);
}

.variant-eventee-v3 .location-list a:hover {
  background: rgba(95, 36, 71, 0.1);
  border-color: rgba(95, 36, 71, 0.38);
}

.variant-eventee-v3 .date-mark {
  display: grid;
  justify-items: start;
  gap: clamp(8px, 1.1vw, 14px);
}

.variant-eventee-v3 .date-mark strong {
  line-height: 0.82;
  margin-bottom: clamp(8px, 1vw, 14px);
}

.variant-eventee-v3 .v-petal-palette p:last-child {
  max-width: 800px;
  color: rgba(43, 34, 31, 0.76);
  font-size: clamp(1.06rem, 1.55vw, 1.28rem);
  line-height: 1.7;
}

.variant-eventee-v3 .petal-swatches {
  position: relative;
  isolation: isolate;
  padding: clamp(16px, 2.2vw, 28px) clamp(18px, 3vw, 42px);
}

.variant-eventee-v3 .petal-swatches::before {
  content: "";
  position: absolute;
  inset: -8px -24px;
  z-index: -1;
  border-radius: 999px;
  background: radial-gradient(ellipse, rgba(255, 253, 248, 0.52) 0 42%, rgba(255, 253, 248, 0.2) 66%, transparent 100%);
  filter: blur(8px);
}

.variant-eventee-v3 .watercolor-cream {
  background-image: url("assets/watercolor-swatches-v3/cream.png");
}

.variant-eventee-v3 .watercolor-grass {
  background-image: url("assets/watercolor-swatches-v3/grass.png");
}

.variant-eventee-v3 .watercolor-sun {
  background-image: url("assets/watercolor-swatches-v3/sun.png");
}

.variant-eventee-v3 .watercolor-orange {
  background-image: url("assets/watercolor-swatches-v3/orange.png");
}

.variant-eventee-v3 .watercolor-peach {
  background-image: url("assets/watercolor-swatches-v3/peach.png");
}

.variant-eventee-v3 .watercolor-rose {
  background-image: url("assets/watercolor-swatches-v3/rose.png");
}

.variant-eventee-v3 .watercolor-lavender {
  background-image: url("assets/watercolor-swatches-v3/lavender.png");
}

.variant-eventee-v3 .watercolor-blue {
  background-image: url("assets/watercolor-swatches-v3/blue.png");
}

.variant-eventee-v3 .watercolor-swatch {
  filter: saturate(1.16) brightness(1.01) contrast(1.06);
  opacity: 1;
}

.variant-eventee-v3 .watercolor-blue {
  filter: hue-rotate(34deg) saturate(0.98) brightness(1.03) contrast(1.06);
}

.variant-eventee-v3 .reveal {
  transition: opacity 920ms ease, transform 920ms cubic-bezier(0.22, 1, 0.36, 1);
}

.variant-eventee-v3 .stagger-reveal > * {
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.variant-eventee-v3 .floating-petal {
  opacity: 0.62;
}

.variant-eventee-v3 .floating-petal:nth-child(7) {
  left: 14%;
  top: 18%;
  width: 10px;
  height: 18px;
  background: rgba(247, 220, 145, 0.64);
  animation-delay: -11s;
  animation-duration: 18s;
}

.variant-eventee-v3 .floating-petal:nth-child(8) {
  left: 32%;
  top: 8%;
  width: 12px;
  height: 20px;
  background: rgba(246, 155, 135, 0.58);
  animation-delay: -6s;
  animation-duration: 17s;
}

.variant-eventee-v3 .floating-petal:nth-child(9) {
  left: 52%;
  top: 24%;
  width: 9px;
  height: 16px;
  background: rgba(200, 194, 236, 0.58);
  animation-delay: -13s;
  animation-duration: 19s;
}

.variant-eventee-v3 .floating-petal:nth-child(10) {
  left: 70%;
  top: 12%;
  width: 11px;
  height: 19px;
  background: rgba(198, 202, 114, 0.58);
  animation-delay: -9s;
  animation-duration: 18.5s;
}

.variant-eventee-v3 .floating-petal:nth-child(11) {
  left: 84%;
  top: 30%;
  width: 10px;
  height: 18px;
  background: rgba(225, 165, 206, 0.54);
  animation-delay: -15s;
  animation-duration: 20s;
}

.variant-eventee-v3 .floating-petal:nth-child(12) {
  left: 24%;
  top: -18%;
  width: 13px;
  height: 21px;
  background: rgba(246, 155, 135, 0.62);
  animation-delay: -2s;
  animation-duration: 16.5s;
}

.variant-eventee-v3 .floating-petal:nth-child(13) {
  left: 58%;
  top: -20%;
  width: 12px;
  height: 20px;
  background: rgba(247, 220, 145, 0.58);
  animation-delay: -7s;
  animation-duration: 17.5s;
}

.variant-eventee-v3 .floating-petal:nth-child(14) {
  left: 94%;
  top: 4%;
  width: 9px;
  height: 16px;
  background: rgba(246, 155, 135, 0.5);
  animation-delay: -12s;
  animation-duration: 21s;
}

.variant-eventee-v3 .opening {
  align-items: center;
  background:
    linear-gradient(rgba(255, 253, 248, 0.44), rgba(255, 250, 245, 0.54)),
    url("assets/summer-garden-canvas-scroll-desktop.png") center top / cover no-repeat,
    #fff8f1;
}

.variant-eventee-v3 .opening::after {
  background:
    radial-gradient(circle at 25% 50%, rgba(255, 253, 248, 0.88) 0 24%, rgba(255, 253, 248, 0.64) 38%, rgba(255, 253, 248, 0.12) 62%, transparent 74%),
    linear-gradient(90deg, rgba(255, 253, 248, 0.34), rgba(255, 253, 248, 0.1));
}

.variant-eventee-v3 .opening-image {
  opacity: 0;
}

.variant-eventee-v3 .opening-note {
  color: var(--deep-plum);
  text-shadow: none;
}

.variant-eventee-v3 .opening-note h1 {
  text-shadow: 0 18px 46px rgba(79, 24, 61, 0.1);
}

.variant-eventee-v3 .date-line {
  color: rgba(79, 24, 61, 0.72);
  text-shadow: none;
}

.variant-eventee-v3 .open-button {
  border: 1px solid rgba(79, 24, 61, 0.18);
  background: rgba(255, 253, 248, 0.54);
  color: var(--deep-plum);
  box-shadow: 0 18px 44px rgba(79, 24, 61, 0.07);
}

.variant-eventee-v3 .open-button:hover {
  background: rgba(79, 24, 61, 0.1);
  color: var(--deep-plum);
  transform: translateY(-2px);
}

/* Variant 1 V4: airy RSVP confirmation */
.variant-eventee-v4 .opening {
  align-items: center;
  background:
    linear-gradient(90deg, rgba(20, 24, 18, 0.46), rgba(20, 24, 18, 0.12) 44%, rgba(20, 24, 18, 0.04)),
    url("assets/opening-proposal-desktop.jpg") center center / cover no-repeat,
    #313827;
}

.variant-eventee-v4 .opening::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(ellipse at 27% 68%, rgba(20, 24, 18, 0.48), rgba(20, 24, 18, 0.26) 26%, transparent 48%);
  pointer-events: none;
}

.variant-eventee-v4 .opening::after {
  background:
    linear-gradient(90deg, rgba(20, 24, 18, 0.08), transparent 42%),
    linear-gradient(0deg, rgba(20, 24, 18, 0.04), transparent 42%);
}

.variant-eventee-v4 .opening-image {
  z-index: 0;
  opacity: 0;
  border-radius: 0;
}

.variant-eventee-v4 .opening-image::after {
  background: transparent;
}

.variant-eventee-v4 .opening-image img {
  object-position: center center;
  filter: blur(4px) saturate(1.05) brightness(1.04) contrast(1.02);
  transform: scale(1.018);
}

.variant-eventee-v4 .opening-note {
  color: var(--ivory);
  text-shadow: 0 3px 30px rgba(0, 0, 0, 0.38);
  animation: none;
}

.variant-eventee-v4 .opening-note h1 {
  animation: v4HeroSlideUp 1s var(--luxury-ease) 0.1s both;
}

.variant-eventee-v4 .opening-note .kicker {
  animation: v4HeroSlideUp 0.8s var(--luxury-ease) 0.4s both;
}

.variant-eventee-v4 .opening-note .date-line {
  animation: v4HeroSlideUp 0.8s var(--luxury-ease) 0.52s both;
}

.variant-eventee-v4 .opening-note .open-button {
  animation: v4HeroFadeIn 0.8s var(--luxury-ease) 0.7s both;
}

.variant-eventee-v4 .opening-note .kicker,
.variant-eventee-v4 .opening-note h1,
.variant-eventee-v4 .opening-note h1 span {
  color: rgba(255, 253, 248, 0.94);
}

.variant-eventee-v4 .opening-note h1 em {
  color: rgba(226, 165, 197, 0.94);
}

.variant-eventee-v4:not(.invitation-open) .music-controller,
.variant-eventee-v4:not(.invitation-open) .music-controller.is-playing {
  color: rgba(255, 253, 248, 0.74);
}

.variant-eventee-v4 .date-line {
  color: rgba(255, 253, 248, 0.78);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.26);
}

.variant-eventee-v4 .open-button {
  border-color: rgba(255, 253, 248, 0.42);
  background: rgba(255, 253, 248, 0.88);
  color: var(--deep-plum);
  box-shadow: 0 18px 48px rgba(20, 24, 18, 0.22);
}

.variant-eventee-v4 .open-button:hover {
  border-color: rgba(255, 253, 248, 0.7);
  background: var(--ivory);
  color: var(--deep-plum);
}

.variant-eventee-v4 .location-list a {
  transition: all 0.3s ease-in-out;
}

.variant-eventee-v4 .location-list a:hover,
.variant-eventee-v4 .location-list a:focus-visible {
  border-color: var(--deep-plum);
  background: var(--deep-plum);
  color: var(--ivory);
}

.variant-eventee-v4 .v-rsvp {
  display: grid;
  grid-template-columns: minmax(0, 760px);
  justify-content: center;
  gap: clamp(34px, 6vw, 62px);
  align-items: center;
  width: min(1080px, calc(100% - 36px));
  padding-top: clamp(78px, 10vw, 132px);
  padding-bottom: clamp(82px, 10vw, 140px);
}

.variant-eventee-v4 .rsvp-copy {
  text-align: center;
}

.variant-eventee-v4 .rsvp-copy h2 {
  margin: 14px auto 0;
  max-width: min(100%, 13ch);
  color: var(--deep-plum);
  font-size: clamp(2.6rem, 6vw, 4.35rem);
  font-style: italic;
  line-height: 1.04;
  overflow-wrap: anywhere;
}

.variant-eventee-v4 .rsvp-form {
  display: grid;
  gap: clamp(22px, 3vw, 34px);
  width: 100%;
  padding-top: 0;
}

.variant-eventee-v4 .rsvp-field {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  border: 0;
}

.variant-eventee-v4 .rsvp-field > span,
.variant-eventee-v4 .rsvp-choice legend {
  color: var(--deep-plum);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.variant-eventee-v4 .rsvp-field input[type="text"] {
  width: 100%;
  min-height: 58px;
  border: 0;
  border-bottom: 1px solid rgba(79, 24, 61, 0.28);
  border-radius: 0;
  background: linear-gradient(90deg, rgba(255, 253, 248, 0.34), rgba(255, 253, 248, 0.08));
  color: var(--deep-plum);
  font: inherit;
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  outline: 0;
  padding: 0 4px;
  transition: border-color 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.variant-eventee-v4 .rsvp-field input[type="text"]::placeholder {
  color: rgba(98, 86, 79, 0.48);
}

.variant-eventee-v4 .rsvp-field input[type="text"]:focus {
  border-color: rgba(79, 24, 61, 0.72);
  background: rgba(255, 253, 248, 0.42);
  box-shadow: 0 16px 34px rgba(79, 24, 61, 0.06);
}

.variant-eventee-v4 .rsvp-choice {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.variant-eventee-v4 .rsvp-choice legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
}

.variant-eventee-v4 .rsvp-choice label {
  cursor: pointer;
}

.variant-eventee-v4 .rsvp-choice input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.variant-eventee-v4 .rsvp-choice label span {
  min-height: 54px;
  display: grid;
  place-items: center;
  padding: 0 18px;
  border: 1px solid rgba(79, 24, 61, 0.22);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.24);
  color: var(--deep-plum);
  font-weight: 750;
  text-align: center;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.variant-eventee-v4 .rsvp-choice input:checked + span,
.variant-eventee-v4 .rsvp-choice label:hover span {
  border-color: rgba(79, 24, 61, 0.58);
  background: rgba(79, 24, 61, 0.1);
  transform: translateY(-1px);
}

.variant-eventee-v4 .rsvp-submit {
  justify-self: start;
  min-height: 54px;
  padding: 0 28px;
  border: 1px solid rgba(79, 24, 61, 0.42);
  border-radius: 999px;
  background: transparent;
  color: var(--deep-plum);
  font: inherit;
  font-weight: 850;
  cursor: pointer;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.variant-eventee-v4 .rsvp-submit:hover,
.variant-eventee-v4 .rsvp-submit:focus-visible {
  border-color: var(--deep-plum);
  background: var(--deep-plum);
  color: var(--ivory);
  box-shadow: 0 18px 38px rgba(79, 24, 61, 0.14);
  transform: translateY(-2px);
}

.variant-eventee-v4 .rsvp-status {
  min-height: 1.5em;
  margin: -8px 0 0;
  color: rgba(79, 24, 61, 0.72);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.02rem;
}

.variant-eventee-v4 .v-telegram {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.46fr);
  gap: clamp(34px, 6vw, 78px);
  align-items: center;
  width: min(1040px, calc(100% - 36px));
  padding-top: clamp(64px, 8vw, 108px);
  padding-bottom: clamp(74px, 9vw, 126px);
}

.variant-eventee-v4 .telegram-copy {
  max-width: 690px;
}

.variant-eventee-v4 .telegram-copy h2 {
  max-width: 11ch;
  color: var(--deep-plum);
  font-size: clamp(2.7rem, 6vw, 5.1rem);
  font-style: italic;
  line-height: 0.98;
}

.variant-eventee-v4 .telegram-copy p:not(.script-label) {
  margin: clamp(18px, 3vw, 28px) 0 0;
  color: rgba(42, 35, 31, 0.76);
  font-size: clamp(1.06rem, 1.7vw, 1.25rem);
  line-height: 1.72;
}

.variant-eventee-v4 .telegram-link {
  width: fit-content;
  min-height: 54px;
  display: inline-grid;
  place-items: center;
  margin-top: clamp(24px, 4vw, 34px);
  padding: 0 28px;
  border: 1px solid rgba(79, 24, 61, 0.42);
  border-radius: 999px;
  background: transparent;
  color: var(--deep-plum);
  font-weight: 850;
  text-decoration: none;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.variant-eventee-v4 .telegram-link:hover,
.variant-eventee-v4 .telegram-link:focus-visible {
  border-color: var(--deep-plum);
  background: var(--deep-plum);
  color: var(--ivory);
  box-shadow: 0 18px 38px rgba(79, 24, 61, 0.14);
  transform: translateY(-2px);
}

.variant-eventee-v4 .telegram-qr-card {
  position: relative;
  display: grid;
  gap: 16px;
  justify-items: center;
  justify-self: end;
  width: min(100%, 330px);
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid rgba(79, 24, 61, 0.18);
  border-radius: 42% 58% 48% 52% / 52% 43% 57% 48%;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.9), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.82), rgba(251, 232, 236, 0.42));
  box-shadow: 0 28px 70px rgba(79, 24, 61, 0.11);
  color: var(--deep-plum);
  text-decoration: none;
  transition: border-radius 420ms ease, box-shadow 260ms ease, transform 260ms ease;
}

.variant-eventee-v4 .telegram-qr-card::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(circle at 50% 42%, rgba(222, 139, 184, 0.2), transparent 64%);
  filter: blur(20px);
  opacity: 0.86;
}

.variant-eventee-v4 .telegram-qr-card:hover,
.variant-eventee-v4 .telegram-qr-card:focus-visible {
  border-radius: 50% 50% 44% 56% / 48% 54% 46% 52%;
  box-shadow: 0 34px 84px rgba(79, 24, 61, 0.16);
  transform: translateY(-4px) rotate(-0.6deg);
}

.variant-eventee-v4 .telegram-qr-card span {
  color: var(--sage);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.variant-eventee-v4 .telegram-qr-card img {
  width: min(100%, 238px);
  aspect-ratio: 1;
  border-radius: 24px;
  box-shadow: 0 16px 34px rgba(79, 24, 61, 0.1);
}

.variant-eventee-v4 .v-welcome-zone,
.variant-eventee-v4 .v-accommodation {
  width: min(900px, calc(100% - 36px));
  padding-top: clamp(38px, 6vw, 76px);
  padding-bottom: clamp(62px, 8vw, 112px);
}

.variant-eventee-v4 .v-accommodation {
  padding-top: 0;
  padding-bottom: clamp(44px, 6vw, 82px);
}

.variant-eventee-v4 .welcome-card,
.variant-eventee-v4 .accommodation-card {
  position: relative;
  padding: clamp(34px, 6vw, 58px);
  border: 1px solid rgba(79, 24, 61, 0.16);
  border-radius: 52px 18px 52px 18px;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.52), rgba(251, 232, 236, 0.22));
  box-shadow: 0 24px 70px rgba(79, 24, 61, 0.08);
  text-align: center;
}

.variant-eventee-v4 .accommodation-card {
  border-radius: 18px 52px 18px 52px;
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.82), transparent 34%),
    linear-gradient(145deg, rgba(255, 253, 248, 0.5), rgba(239, 229, 251, 0.2));
}

.variant-eventee-v4 .accommodation-card .script-label {
  margin-bottom: 10px;
  color: var(--sage);
  font-family: Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.74rem, 1.1vw, 0.86rem);
  font-weight: 850;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.variant-eventee-v4 .welcome-card .script-label {
  margin-bottom: 10px;
  color: var(--sage);
  font-family: Avenir Next, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(0.74rem, 1.1vw, 0.86rem);
  font-weight: 850;
  letter-spacing: 0.2em;
  line-height: 1.3;
  text-transform: uppercase;
}

.variant-eventee-v4 .welcome-card::before,
.variant-eventee-v4 .accommodation-card::before {
  content: "";
  position: absolute;
  inset: -22px;
  z-index: -1;
  border-radius: inherit;
  background: radial-gradient(ellipse at 50% 42%, rgba(222, 139, 184, 0.18), transparent 68%);
  filter: blur(20px);
  opacity: 0.78;
}

.variant-eventee-v4 .accommodation-card::before {
  background: radial-gradient(ellipse at 50% 42%, rgba(192, 174, 229, 0.18), transparent 68%);
}

.variant-eventee-v4 .welcome-card h2,
.variant-eventee-v4 .accommodation-card h2 {
  color: var(--deep-plum);
  font-size: clamp(2.5rem, 5.4vw, 4.8rem);
  font-style: italic;
  line-height: 0.98;
}

.variant-eventee-v4 .accommodation-card h2 {
  font-size: clamp(2.25rem, 4.4vw, 3.9rem);
}

.variant-eventee-v4 .welcome-card h2 {
  font-size: clamp(2.25rem, 4.4vw, 3.9rem);
}

.variant-eventee-v4 .welcome-card p:not(.script-label),
.variant-eventee-v4 .accommodation-card p:not(.script-label) {
  max-width: 690px;
  margin: clamp(18px, 3vw, 28px) auto 0;
  color: rgba(42, 35, 31, 0.76);
  font-size: clamp(1.05rem, 1.65vw, 1.22rem);
  line-height: 1.72;
}

.variant-eventee-v4 .script-label {
  margin: -0.12em 0 12px;
  padding: 0.12em 0 0.24em;
  color: rgba(79, 24, 61, 0.74);
  font-family: "Snell Roundhand", "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(2.35rem, 6vw, 5.1rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.16;
  text-transform: none;
}

.variant-eventee-v4 .editorial-names {
  max-width: 10ch;
  color: var(--plum);
  font-family: "Snell Roundhand", "Segoe Script", "Brush Script MT", cursive;
  font-size: clamp(4.6rem, 10vw, 8.2rem);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 0.86;
}

.variant-eventee-v4 .editorial-names em {
  color: rgba(206, 138, 176, 0.92);
  font-style: normal;
  line-height: 0.8;
}

.variant-eventee-v4 .v-intro .script-label,
.variant-eventee-v4 .v-petal-palette .script-label,
.variant-eventee-v4 .rsvp-copy .script-label {
  text-align: center;
}

.variant-eventee-v4 .v-day .script-label {
  grid-column: 1 / -1;
  justify-self: center;
  margin-bottom: clamp(6px, 2vw, 18px);
}

.variant-eventee-v4 .location-panel .script-label {
  margin-bottom: 8px;
}

.variant-eventee-v4 .closing-copy .script-label {
  color: rgba(255, 253, 248, 0.9);
  text-shadow: 0 3px 22px rgba(0, 0, 0, 0.28);
}

.variant-eventee-v4 .closing-copy h2 {
  color: rgba(255, 253, 248, 0.96);
  text-shadow: 0 4px 30px rgba(20, 24, 18, 0.42);
}

.variant-eventee-v4 .closing-copy p:last-child {
  color: rgba(255, 253, 248, 0.82);
  text-shadow: 0 3px 22px rgba(20, 24, 18, 0.38);
}

.variant-eventee-v4 .reference-panel {
  position: relative;
  isolation: isolate;
}

.variant-eventee-v4 .reference-panel::before {
  content: "";
  position: absolute;
  inset: -32px -28px;
  z-index: -1;
  background: radial-gradient(ellipse at 50% 28%, rgba(255, 253, 248, 0.62), rgba(255, 253, 248, 0.18) 62%, transparent 78%);
  filter: blur(14px);
  opacity: 0.82;
  pointer-events: none;
}

.variant-eventee-v4.motion-ready .reveal,
.variant-eventee-v4.motion-ready .stagger-reveal > * {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
  filter: blur(10px);
  transition:
    opacity 0.9s var(--luxury-ease),
    transform 0.9s var(--luxury-ease),
    filter 0.9s var(--luxury-ease);
  transition-delay: calc(var(--motion-index, 0) * 70ms);
  will-change: opacity, transform, filter;
}

.variant-eventee-v4 .reveal.is-visible,
.variant-eventee-v4 .stagger-reveal.is-visible > *,
.variant-eventee-v4 .stagger-reveal > .is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

.variant-eventee-v4.motion-ready .phone-scroll {
  opacity: 0;
  transform: scale(0.98);
  transition: opacity 1s var(--luxury-ease), transform 1s var(--luxury-ease);
  will-change: opacity, transform;
}

.variant-eventee-v4 .v-hero.is-visible .phone-scroll {
  opacity: 1;
  transform: scale(1);
}

.variant-eventee-v4.motion-ready .v-petal-palette h2 {
  opacity: 0;
  transform: translate3d(0, 22px, 0);
  transition: opacity 0.8s var(--luxury-ease), transform 0.8s var(--luxury-ease);
  transition-delay: 0.1s;
  will-change: opacity, transform;
}

.variant-eventee-v4 .v-petal-palette.is-visible h2 {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.variant-eventee-v4.motion-ready .v-petal-palette .watercolor-swatch {
  opacity: 0;
  transform: scale(0.82);
  transition: opacity 0.6s var(--luxury-ease), transform 0.6s var(--luxury-ease);
  transition-delay: calc(var(--motion-index, 0) * 0.1s);
  will-change: opacity, transform;
}

.variant-eventee-v4 .v-petal-palette.is-visible .watercolor-swatch {
  opacity: 1;
  transform: scale(1);
}

.variant-eventee-v4.motion-ready .itinerary {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  transition: opacity 0.8s var(--luxury-ease), transform 0.8s var(--luxury-ease);
  transition-delay: 0.2s;
  will-change: opacity, transform;
}

.variant-eventee-v4 .v-day.is-visible .itinerary,
.variant-eventee-v4 .itinerary.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.variant-eventee-v4.motion-ready .itinerary article {
  transition-delay: calc(var(--motion-index, 0) * 0.2s);
}

.variant-eventee-v4.motion-ready .itinerary article > :not(.timeline-icon) {
  opacity: 0;
  transform: translate3d(-18px, 0, 0);
  transition: opacity 0.7s var(--luxury-ease), transform 0.7s var(--luxury-ease);
  transition-delay: calc(var(--motion-index, 0) * 0.2s + 0.12s);
  will-change: opacity, transform;
}

.variant-eventee-v4 .itinerary.is-visible article > :not(.timeline-icon),
.variant-eventee-v4 .v-day.is-visible .itinerary article > :not(.timeline-icon) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.variant-eventee-v4.motion-ready .timeline-icon {
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 0.7s var(--luxury-ease), transform 0.7s var(--luxury-ease);
  transition-delay: calc(var(--motion-index, 0) * 0.2s);
  will-change: opacity, transform;
}

.variant-eventee-v4 .itinerary.is-visible .timeline-icon,
.variant-eventee-v4 .v-day.is-visible .timeline-icon {
  opacity: 1;
  transform: scale(1);
}

.variant-eventee-v4.motion-ready .countdown div {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition: opacity 0.8s var(--luxury-ease), transform 0.8s var(--luxury-ease);
  transition-delay: 0.1s;
}

.variant-eventee-v4 .countdown.is-visible div,
.variant-eventee-v4 .v-countdown.is-visible .countdown div {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.variant-eventee-v4 main > section {
  position: relative;
  isolation: isolate;
}

.variant-eventee-v4 .pop-icon {
  --pop-size: 18px;
  position: absolute;
  width: var(--pop-size);
  height: var(--pop-size);
  z-index: 0;
  pointer-events: none;
  opacity: 0;
  transform: translate3d(0, 12px, 0) scale(0.54) rotate(var(--pop-rotate, -10deg));
  transform-origin: 50% 60%;
  filter: drop-shadow(0 8px 16px rgba(79, 24, 61, 0.1));
}

.variant-eventee-v4 .pop-icon-petal {
  border-radius: 62% 38% 58% 42% / 70% 48% 52% 30%;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.55), transparent 42%),
    linear-gradient(135deg, rgba(247, 151, 137, 0.76), rgba(222, 139, 184, 0.66));
}

.variant-eventee-v4 .pop-icon-dot {
  border-radius: 999px;
  background:
    radial-gradient(circle at 35% 28%, rgba(255, 255, 255, 0.55), transparent 42%),
    linear-gradient(135deg, rgba(246, 211, 104, 0.82), rgba(150, 190, 128, 0.72));
}

.variant-eventee-v4 .pop-icon-spark {
  color: rgba(151, 89, 126, 0.74);
  filter: drop-shadow(0 10px 20px rgba(151, 89, 126, 0.14));
}

.variant-eventee-v4 .pop-icon-spark::before,
.variant-eventee-v4 .pop-icon-spark::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.variant-eventee-v4 .pop-icon-spark::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.variant-eventee-v4 .reveal.is-visible .pop-icon {
  animation:
    v4IconPop 920ms cubic-bezier(0.18, 1.25, 0.38, 1) both,
    v4IconDrift 5.8s ease-in-out infinite;
  animation-delay: var(--pop-delay, 0ms), calc(var(--pop-delay, 0ms) + 860ms);
}

.variant-eventee-v4 .pop-hero-a {
  --pop-size: 20px;
  --pop-delay: 150ms;
  --pop-rotate: -18deg;
  left: 8%;
  top: 15%;
}

.variant-eventee-v4 .pop-hero-b {
  --pop-size: 18px;
  --pop-delay: 340ms;
  right: 12%;
  top: 20%;
}

.variant-eventee-v4 .pop-intro-a {
  --pop-size: 22px;
  --pop-delay: 120ms;
  left: 9%;
  top: 18%;
}

.variant-eventee-v4 .pop-intro-b {
  --pop-size: 13px;
  --pop-delay: 280ms;
  right: 18%;
  top: 30%;
}

.variant-eventee-v4 .pop-intro-c {
  --pop-size: 17px;
  --pop-delay: 440ms;
  left: 18%;
  bottom: 18%;
}

.variant-eventee-v4 .pop-locations-a {
  --pop-size: 18px;
  --pop-delay: 180ms;
  right: 9%;
  top: 16%;
}

.variant-eventee-v4 .pop-locations-b {
  --pop-size: 24px;
  --pop-delay: 380ms;
  left: 5%;
  bottom: 16%;
}

.variant-eventee-v4 .pop-day-a {
  --pop-size: 15px;
  --pop-delay: 140ms;
  right: 17%;
  top: 14%;
}

.variant-eventee-v4 .pop-day-b {
  --pop-size: 20px;
  --pop-delay: 360ms;
  left: 8%;
  top: 42%;
}

.variant-eventee-v4 .pop-welcome-a {
  --pop-size: 22px;
  --pop-delay: 140ms;
  left: 8%;
  top: 26%;
}

.variant-eventee-v4 .pop-welcome-b {
  --pop-size: 14px;
  --pop-delay: 320ms;
  right: 11%;
  bottom: 24%;
}

.variant-eventee-v4 .pop-accommodation-a {
  --pop-size: 19px;
  --pop-delay: 150ms;
  right: 9%;
  top: 22%;
}

.variant-eventee-v4 .pop-accommodation-b {
  --pop-size: 22px;
  --pop-delay: 340ms;
  left: 8%;
  bottom: 22%;
}

.variant-eventee-v4 .pop-palette-a {
  --pop-size: 24px;
  --pop-delay: 120ms;
  left: 6%;
  top: 24%;
}

.variant-eventee-v4 .pop-palette-b {
  --pop-size: 14px;
  --pop-delay: 260ms;
  right: 11%;
  top: 38%;
}

.variant-eventee-v4 .pop-palette-c {
  --pop-size: 20px;
  --pop-delay: 430ms;
  left: 48%;
  bottom: 18%;
}

.variant-eventee-v4 .pop-countdown-a {
  --pop-size: 18px;
  --pop-delay: 160ms;
  left: 12%;
  top: 20%;
}

.variant-eventee-v4 .pop-countdown-b {
  --pop-size: 22px;
  --pop-delay: 360ms;
  right: 8%;
  bottom: 18%;
}

.variant-eventee-v4 .pop-rsvp-a {
  --pop-size: 15px;
  --pop-delay: 150ms;
  left: 10%;
  top: 18%;
}

.variant-eventee-v4 .pop-rsvp-b {
  --pop-size: 20px;
  --pop-delay: 350ms;
  right: 9%;
  top: 32%;
}

.variant-eventee-v4 .pop-telegram-a {
  --pop-size: 22px;
  --pop-delay: 130ms;
  left: 8%;
  top: 18%;
}

.variant-eventee-v4 .pop-telegram-b {
  --pop-size: 19px;
  --pop-delay: 330ms;
  right: 6%;
  bottom: 18%;
}

.variant-eventee-v4 .pop-closing-a {
  --pop-size: 22px;
  --pop-delay: 120ms;
  left: 11%;
  bottom: 20%;
}

.variant-eventee-v4 .pop-closing-b {
  --pop-size: 19px;
  --pop-delay: 320ms;
  right: 12%;
  top: 20%;
}

.variant-eventee-v4.motion-ready .script-label {
  opacity: 0;
  clip-path: inset(-0.22em 100% -0.34em 0);
  transform: translate3d(0, 16px, 0) rotate(-1deg);
  filter: blur(8px);
}

.variant-eventee-v4 .reveal.is-visible .script-label {
  animation: v4ScriptWrite 1150ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.variant-eventee-v4.motion-ready .v-hero-copy > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  animation: v4PetalFloat 0.9s var(--luxury-ease) forwards;
}

.variant-eventee-v4.motion-ready .v-hero-copy > :nth-child(2) {
  animation-delay: 0.1s;
}

.variant-eventee-v4.motion-ready .v-hero-copy > :nth-child(3) {
  animation-delay: 0.4s;
}

.variant-eventee-v4.motion-ready .film-photo img {
  filter: blur(10px) saturate(0.96) brightness(1.05);
  transform: scale(1.075);
  transition:
    filter 1200ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 1400ms cubic-bezier(0.22, 1, 0.36, 1);
}

.variant-eventee-v4 .film-photo.is-visible img,
.variant-eventee-v4 .reveal.is-visible .film-photo img {
  filter: blur(0) saturate(1.07) brightness(1.04);
  transform: scale(1.045);
}

.variant-eventee-v4.motion-ready .opening-image img,
.variant-eventee-v4 .opening-image img {
  object-position: center center;
  filter: blur(2px) saturate(1.07) brightness(1.16) contrast(1.03);
  transform: scale(1.01);
}

.variant-eventee-v4 .itinerary article,
.variant-eventee-v4 .watercolor-swatch,
.variant-eventee-v4 .countdown div,
.variant-eventee-v4 .rsvp-field,
.variant-eventee-v4 .rsvp-submit {
  transition-delay: calc(var(--motion-index, 0) * 70ms);
}

.variant-eventee-v4 .timeline-icon svg path {
  stroke-dasharray: 120;
  stroke-dashoffset: var(--path-length, 120);
  transition:
    stroke-dashoffset 0.7s var(--luxury-ease),
    opacity 0.7s var(--luxury-ease);
  transition-delay: calc(var(--motion-index, 0) * 0.2s);
}

.variant-eventee-v4 .itinerary.is-visible .timeline-icon svg path {
  stroke-dashoffset: 0;
}

.variant-eventee-v4 .watercolor-swatch {
  transform-origin: 50% 60%;
  mix-blend-mode: normal;
  filter: drop-shadow(0 14px 22px rgba(79, 24, 61, 0.08));
  opacity: 1;
}

.variant-eventee-v4 .watercolor-cream {
  background-image: url("assets/watercolor-swatches-v4/cream.png");
  filter: drop-shadow(0 14px 22px rgba(79, 24, 61, 0.07));
}

.variant-eventee-v4 .watercolor-grass {
  background-image: url("assets/watercolor-swatches-v4/grass.png");
}

.variant-eventee-v4 .watercolor-sun {
  background-image: url("assets/watercolor-swatches-v4/sun.png");
}

.variant-eventee-v4 .watercolor-orange {
  background-image: url("assets/watercolor-swatches-v4/orange.png");
}

.variant-eventee-v4 .watercolor-peach {
  background-image: url("assets/watercolor-swatches-v4/peach.png");
}

.variant-eventee-v4 .watercolor-rose {
  background-image: url("assets/watercolor-swatches-v4/rose.png");
}

.variant-eventee-v4 .watercolor-lavender {
  background-image: url("assets/watercolor-swatches-v4/lavender.png");
}

.variant-eventee-v4 .watercolor-blue {
  background-image: url("assets/watercolor-swatches-v4/blue.png");
  filter: drop-shadow(0 14px 22px rgba(79, 24, 61, 0.08));
}

.variant-eventee-v4 .v-petal-palette.is-visible .watercolor-swatch {
  animation: v4SwatchFloat 5.8s ease-in-out infinite;
  animation-delay: calc(var(--motion-index, 0) * 0.1s + 0.72s);
}

.variant-eventee-v4 .v-petal-palette.is-visible .watercolor-swatch:nth-child(even) {
  animation-duration: 6.6s;
  animation-direction: alternate-reverse;
}

.variant-eventee-v4 .countdown.is-visible div {
  animation: v4CountBloom 0.8s var(--luxury-ease) both;
  animation-delay: 0.1s;
}

.variant-eventee-v4 .rsvp-form.is-visible .rsvp-field,
.variant-eventee-v4 .rsvp-form.is-visible .rsvp-submit {
  animation: v4PetalFloat 0.82s var(--luxury-ease) both;
  animation-delay: calc(var(--motion-index, 0) * 85ms);
}

.variant-eventee-v4 .music-controller {
  position: fixed;
  top: clamp(18px, 3vw, 32px);
  right: clamp(16px, 3vw, 34px);
  z-index: 80;
  display: grid;
  justify-items: center;
  gap: 4px;
  width: 76px;
  min-height: 72px;
  padding: 10px 8px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(79, 24, 61, 0.68);
  cursor: pointer;
  isolation: isolate;
  opacity: 0.78;
  transition: color 220ms ease, opacity 220ms ease, transform 220ms ease;
}

.variant-eventee-v4 .music-controller::before {
  content: "";
  position: absolute;
  inset: -10px -8px;
  z-index: -1;
  border-radius: inherit;
  background:
    radial-gradient(circle at 48% 42%, rgba(234, 157, 190, 0.22), transparent 58%),
    radial-gradient(circle at 68% 68%, rgba(255, 219, 205, 0.16), transparent 62%);
  filter: blur(12px);
  opacity: 0;
  transform: scale(0.88);
  transition: opacity 260ms ease, transform 260ms ease;
}

.variant-eventee-v4 .music-controller::after {
  content: "";
  position: absolute;
  inset: 8px;
  z-index: -1;
  border-radius: inherit;
  border: 1px solid rgba(79, 24, 61, 0.12);
  opacity: 0;
  transform: scale(0.9);
}

.variant-eventee-v4 .music-controller:hover,
.variant-eventee-v4 .music-controller:focus-visible {
  color: var(--deep-plum);
  opacity: 1;
  transform: translateY(-1px);
}

.variant-eventee-v4 .music-controller:hover::before,
.variant-eventee-v4 .music-controller:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.variant-eventee-v4 .music-controller.is-playing {
  color: var(--deep-plum);
  opacity: 0.9;
}

.variant-eventee-v4 .music-controller.is-playing::after {
  animation: v4MusicBreath 3.8s ease-in-out infinite;
}

.variant-eventee-v4 .music-controller.is-playing .music-icon svg {
  animation: v4MusicNote 1.65s ease-in-out infinite;
  transform-origin: 50% 70%;
}

.variant-eventee-v4 .music-controller.is-muted {
  color: rgba(79, 24, 61, 0.46);
  opacity: 0.58;
}

.variant-eventee-v4 .music-icon {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
}

.variant-eventee-v4 .music-icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.variant-eventee-v4 .music-track {
  color: currentColor;
  font-size: 0.52rem;
  font-weight: 750;
  letter-spacing: 0.06em;
  line-height: 1.15;
  text-align: center;
}

@keyframes v4HeroSlideUp {
  0% {
    opacity: 0;
    transform: translate3d(0, 22px, 0);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes v4HeroFadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@keyframes v4PetalFloat {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(8px);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes v4ScriptWrite {
  0% {
    opacity: 0;
    clip-path: inset(-0.22em 100% -0.34em 0);
    transform: translate3d(0, 16px, 0) rotate(-1.4deg);
    filter: blur(8px);
  }

  58% {
    opacity: 1;
    clip-path: inset(-0.22em 0 -0.34em 0);
    transform: translate3d(0, -2px, 0) rotate(0.4deg);
    filter: blur(1px);
  }

  100% {
    opacity: 1;
    clip-path: inset(-0.22em 0 -0.34em 0);
    transform: translate3d(0, 0, 0) rotate(0deg);
    filter: blur(0);
  }
}

@keyframes v4MusicBreath {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.92);
  }

  45% {
    opacity: 0.72;
    transform: scale(1.16);
  }
}

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

  28% {
    transform: translate3d(0, -2px, 0) rotate(-5deg) scale(1.05);
  }

  58% {
    transform: translate3d(1px, 1px, 0) rotate(4deg) scale(0.98);
  }

  78% {
    transform: translate3d(0, -1px, 0) rotate(-2deg) scale(1.02);
  }
}

@keyframes v4IconPop {
  0% {
    opacity: 0;
    transform: translate3d(0, 16px, 0) scale(0.42) rotate(calc(var(--pop-rotate, -10deg) - 18deg));
    filter: blur(7px) drop-shadow(0 0 0 rgba(79, 24, 61, 0));
  }

  62% {
    opacity: 0.9;
    transform: translate3d(0, -5px, 0) scale(1.14) rotate(calc(var(--pop-rotate, -10deg) + 4deg));
    filter: blur(0) drop-shadow(0 14px 22px rgba(79, 24, 61, 0.12));
  }

  100% {
    opacity: 0.76;
    transform: translate3d(0, 0, 0) scale(1) rotate(var(--pop-rotate, -10deg));
    filter: blur(0) drop-shadow(0 8px 16px rgba(79, 24, 61, 0.1));
  }
}

@keyframes v4IconDrift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1) rotate(var(--pop-rotate, -10deg));
  }

  45% {
    transform: translate3d(4px, -8px, 0) scale(1.04) rotate(calc(var(--pop-rotate, -10deg) + 7deg));
  }

  72% {
    transform: translate3d(-3px, -3px, 0) scale(0.98) rotate(calc(var(--pop-rotate, -10deg) - 4deg));
  }
}

@keyframes v4SwatchFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-1deg);
    filter: drop-shadow(0 14px 22px rgba(79, 24, 61, 0.08));
  }

  50% {
    transform: translate3d(0, -7px, 0) rotate(2deg);
    filter: drop-shadow(0 18px 28px rgba(79, 24, 61, 0.1));
  }
}

@keyframes v4CountBloom {
  0% {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    box-shadow: 0 0 0 rgba(79, 24, 61, 0);
  }

  68% {
    opacity: 1;
    transform: translate3d(0, -2px, 0);
    box-shadow: 0 18px 42px rgba(79, 24, 61, 0.08);
  }

  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    box-shadow: 0 0 0 rgba(79, 24, 61, 0);
  }
}

/* Variant 2: Magazine editorial */
.variant-magazine {
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.94) 0 50%, rgba(251, 241, 229, 0.7) 50% 100%),
    #fffdf8;
}

.variant-magazine .film-photo {
  border-radius: 4px 88px 4px 4px;
}

.m-cover {
  min-height: 94svh;
  display: grid;
  grid-template-columns: 0.85fr 1.1fr 0.34fr;
  gap: clamp(24px, 4vw, 46px);
  align-items: end;
}

.m-cover-title {
  align-self: center;
  z-index: 2;
}

.m-cover-title h2 {
  margin-top: 12px;
  font-size: clamp(4rem, 8vw, 7.4rem);
}

.m-main-photo {
  min-height: min(720px, 78svh);
}

.m-cover aside {
  align-self: start;
  padding-top: 18vh;
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.m-cover aside span {
  color: var(--plum);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.6rem;
}

.m-letter {
  display: grid;
  grid-template-columns: 0.45fr 1fr;
  gap: clamp(24px, 6vw, 90px);
  align-items: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.m-letter h2 {
  font-size: clamp(2.3rem, 4.5vw, 4.7rem);
}

.m-letter p {
  max-width: 650px;
  margin-top: 24px;
  font-size: 1.08rem;
}

.m-split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: start;
}

.m-side-photo {
  min-height: 720px;
}

.m-split h2,
.m-locations h2,
.m-gallery h2,
.m-countdown h2 {
  margin-top: 10px;
  font-size: clamp(2.5rem, 5.4vw, 5rem);
}

.variant-magazine .itinerary {
  margin-top: 28px;
  gap: 18px;
}

.variant-magazine .itinerary article {
  padding: 22px 0;
  border-top: 1px solid var(--line);
}

.m-locations {
  text-align: center;
}

.m-locations .location-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  margin-top: 34px;
  text-align: left;
}

.m-locations .location-list article {
  border-bottom: 1px solid var(--line);
}

.m-gallery {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 7vw, 84px);
  align-items: center;
}

.m-gallery figure {
  min-height: 520px;
}

.m-countdown {
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* Variant 3: Minimal elegant */
.variant-minimal {
  background: #fffdf8;
  color: #2b2520;
}

.variant-minimal .film-photo {
  border-radius: 0;
  box-shadow: none;
}

.variant-minimal .opening-image {
  border-radius: 0;
}

.variant-minimal main > section {
  width: min(920px, calc(100% - 40px));
}

.x-hero {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 0.78fr);
  gap: clamp(26px, 7vw, 94px);
  align-items: center;
  border-bottom: 1px solid var(--line);
}

.x-hero h2 {
  font-size: clamp(4.5rem, 11vw, 9rem);
}

.x-photo {
  min-height: min(680px, 78svh);
}

.x-note {
  max-width: 520px;
  color: var(--muted);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.2rem, 2.4vw, 1.7rem);
}

.x-letter {
  max-width: 780px;
  text-align: center;
}

.x-letter h2,
.x-final h2 {
  font-size: clamp(2.6rem, 6vw, 5rem);
}

.x-letter p {
  margin-top: 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.x-program {
  display: grid;
  grid-template-columns: 0.35fr 1fr;
  gap: clamp(30px, 7vw, 90px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.x-program h2 {
  margin-top: 8px;
  color: var(--plum);
  font-size: clamp(4rem, 9vw, 7rem);
}

.variant-minimal .itinerary {
  gap: 0;
}

.variant-minimal .itinerary article {
  display: grid;
  grid-template-columns: 128px 1fr;
  column-gap: 28px;
  padding: 24px 0;
  border-top: 1px solid var(--line);
}

.variant-minimal .itinerary article:first-child {
  border-top: 0;
}

.x-locations .location-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  margin-top: 22px;
}

.x-locations .location-list article {
  border-bottom: 1px solid var(--line);
}

.variant-minimal .location-list a {
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
}

.x-gallery {
  display: grid;
  grid-template-columns: 1.1fr 0.8fr 0.8fr;
  gap: 16px;
  align-items: end;
}

.x-gallery figure {
  min-height: 520px;
}

.x-gallery figure:nth-child(2),
.x-gallery figure:nth-child(3) {
  min-height: 360px;
}

.x-palette {
  text-align: center;
}

.x-palette h2 {
  max-width: 720px;
  margin: 10px auto 28px;
  font-size: clamp(2.2rem, 5vw, 4rem);
}

.x-palette .swatches {
  justify-content: center;
}

.x-countdown {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.x-final {
  min-height: 58svh;
  display: grid;
  place-items: center;
  text-align: center;
}

.x-final p {
  color: var(--plum);
  font-weight: 850;
}

.reveal {
  transition: opacity 760ms ease, transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .reveal {
  opacity: 0.18;
  transform: translateY(22px);
}

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

.stagger-reveal > * {
  transition: opacity 680ms ease, transform 680ms cubic-bezier(0.22, 1, 0.36, 1);
}

.motion-ready .stagger-reveal > * {
  opacity: 0.18;
  transform: translateY(18px);
}

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

.is-visible .stagger-reveal > *:nth-child(2),
.stagger-reveal.is-visible > *:nth-child(2) { transition-delay: 80ms; }
.is-visible .stagger-reveal > *:nth-child(3),
.stagger-reveal.is-visible > *:nth-child(3) { transition-delay: 160ms; }
.is-visible .stagger-reveal > *:nth-child(4),
.stagger-reveal.is-visible > *:nth-child(4) { transition-delay: 240ms; }

@keyframes bloomIn {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes petalDrift {
  0% {
    opacity: 0;
    transform: translate3d(0, -10svh, 0) rotate(0deg);
  }
  12% { opacity: 1; }
  86% { opacity: 0.75; }
  100% {
    opacity: 0;
    transform: translate3d(-54px, 116svh, 0) rotate(260deg);
  }
}

@media (max-width: 900px) {
  .v-hero,
  .v-day,
  .v-locations,
  .v-countdown,
  .v-palette,
  .m-cover,
  .m-letter,
  .m-split,
  .m-gallery,
  .x-hero,
  .x-program {
    grid-template-columns: 1fr;
  }

  .m-cover aside {
    display: none;
  }

  .phone-scroll {
    min-height: 560px;
  }

  .wide-photo,
  .detail-photo,
  .m-side-photo {
    min-height: 520px;
  }

  .m-locations .location-list,
  .x-locations .location-list {
    grid-template-columns: 1fr;
  }

  .x-gallery {
    grid-template-columns: 1fr;
  }

  .x-gallery figure,
  .x-gallery figure:nth-child(2),
  .x-gallery figure:nth-child(3) {
    min-height: 430px;
  }
}

@media (max-width: 560px) {
  .variant main > section {
    width: min(100% - 30px, 1080px);
    padding: 62px 0;
  }

  .variant-eventee-v4 .pop-icon {
    --pop-size: 13px;
    opacity: 0.62;
  }

  .variant-eventee-v4 .pop-intro-c,
  .variant-eventee-v4 .pop-palette-c,
  .variant-eventee-v4 .pop-closing-b {
    display: none;
  }

  .variant-eventee-v4 .pop-locations-b,
  .variant-eventee-v4 .pop-countdown-b {
    left: auto;
    right: 8%;
  }

  .opening {
    align-items: start;
    padding: 14px;
  }

  .opening::after {
    background:
      linear-gradient(0deg, rgba(39, 32, 28, 0.66), rgba(39, 32, 28, 0.08) 58%),
      linear-gradient(90deg, rgba(39, 32, 28, 0.18), rgba(39, 32, 28, 0.1));
  }

  .opening-note {
    width: 100%;
    padding: 24px 22px;
  }

  .opening-shell {
    margin-top: 22px;
  }

  h1 {
    font-size: clamp(3.3rem, 16vw, 4.8rem);
  }

  .v-hero-copy h2,
  .m-cover-title h2,
  .x-hero h2 {
    font-size: clamp(3.35rem, 15vw, 4.9rem);
  }

  .v-intro h2,
  .v-palette h2,
  .v-countdown h2,
  .location-panel h2,
  .m-letter h2,
  .m-split h2,
  .m-locations h2,
  .m-gallery h2,
  .m-countdown h2,
  .x-letter h2,
  .x-palette h2,
  .x-final h2 {
    font-size: clamp(2.25rem, 11vw, 3.65rem);
  }

  .phone-scroll {
    min-height: 470px;
  }

  .phone-card {
    inset: 0 0 10% 0;
  }

  .floating-card {
    width: 40%;
    border-width: 7px;
  }

  .date-mark strong {
    font-size: clamp(6.5rem, 32vw, 9.2rem);
  }

  .variant-eventee .itinerary article {
    padding-left: 26px;
  }

  .wide-photo,
  .detail-photo,
  .m-main-photo,
  .m-side-photo,
  .x-photo {
    min-height: 430px;
  }

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

  .m-locations,
  .x-palette {
    text-align: left;
  }

  .m-locations .location-list,
  .x-locations .location-list {
    gap: 0;
  }

  .variant-minimal .itinerary article {
    grid-template-columns: 1fr;
  }

  .x-gallery figure,
  .x-gallery figure:nth-child(2),
  .x-gallery figure:nth-child(3) {
    min-height: 380px;
  }

  .v-closing {
    min-height: 720px;
  }

  .closing-photo {
    inset: 0;
  }

  .variant-eventee-v2 .v-petal-palette {
    width: min(100% - 24px, 1080px);
    padding-top: 72px;
    padding-bottom: 78px;
    text-align: center;
  }

  .variant-eventee-v2 .v-petal-palette h2 {
    font-size: clamp(2.45rem, 12vw, 4.35rem);
  }

  .variant-eventee-v2 .petal-swatches {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 12px;
    max-width: 330px;
    margin-inline: auto;
  }

  .variant-eventee-v2 .watercolor-swatch {
    width: 100%;
  }

  .variant-eventee-v2 {
    background:
      linear-gradient(rgba(255, 253, 248, 0.48), rgba(255, 253, 248, 0.58)),
      url("assets/summer-garden-canvas-mobile.png") top center / 100% auto repeat-y,
      #fff8f1;
  }

  .variant-eventee-v2 .v-hero {
    padding-top: 72px;
    padding-bottom: 82px;
  }

  .variant-eventee-v2 .editorial-names {
    max-width: 7.5ch;
  }

  .variant-eventee-v2 .phone-scroll {
    min-height: 540px;
    margin-top: 14px;
  }

  .variant-eventee-v2 .phone-card {
    inset: 0 0 8% 9%;
  }

  .variant-eventee-v2 .floating-card {
    width: 43%;
    bottom: 2%;
  }

  .variant-eventee-v2 .v-day {
    gap: 40px;
  }

  .variant-eventee-v2 .itinerary {
    gap: 0;
  }

  .variant-eventee-v2 .itinerary article {
    grid-template-columns: 58px 1fr;
    gap: 12px 18px;
    min-height: 0;
    padding: 26px 0;
  }

  .variant-eventee-v2 .timeline-icon {
    grid-row: span 3;
    width: 48px;
    height: 48px;
  }

  .variant-eventee-v2 .timeline-icon svg {
    width: 31px;
    height: 31px;
  }

  .variant-eventee-v2 .itinerary time,
  .variant-eventee-v2 .itinerary h3,
  .variant-eventee-v2 .itinerary p {
    grid-column: 2;
  }

  .variant-eventee-v2 .wide-photo,
  .variant-eventee-v2 .detail-photo {
    min-height: 500px;
  }

  .variant-eventee-v3 {
    background:
      linear-gradient(rgba(255, 253, 248, 0.54), rgba(255, 250, 245, 0.64)),
      url("assets/summer-garden-canvas-mobile.png") center top / cover fixed no-repeat,
      #fff8f1;
  }

  .variant-eventee-v3 .opening {
    align-items: end;
    background:
      linear-gradient(rgba(255, 253, 248, 0.46), rgba(255, 250, 245, 0.56)),
      url("assets/summer-garden-canvas-mobile.png") center top / cover no-repeat,
      #fff8f1;
  }

  .variant-eventee-v3 .opening::after {
    background:
      radial-gradient(circle at 45% 62%, rgba(255, 253, 248, 0.9) 0 32%, rgba(255, 253, 248, 0.62) 48%, rgba(255, 253, 248, 0.08) 72%, transparent 84%),
      linear-gradient(180deg, rgba(255, 253, 248, 0.18), rgba(255, 253, 248, 0.38));
  }

  .variant-eventee-v4 .opening {
    align-items: end;
    background:
      linear-gradient(180deg, rgba(20, 24, 18, 0.04), rgba(20, 24, 18, 0.24)),
      url("assets/opening-proposal-mobile.jpg") center center / cover no-repeat,
      #313827;
  }

  .variant-eventee-v4 .opening::before {
    background:
      radial-gradient(ellipse at 28% 78%, rgba(20, 24, 18, 0.44), rgba(20, 24, 18, 0.22) 28%, transparent 52%);
  }

  .variant-eventee-v4 .opening::after {
    background:
      linear-gradient(0deg, rgba(20, 24, 18, 0.04), transparent 44%),
      linear-gradient(90deg, rgba(20, 24, 18, 0.05), transparent 56%);
  }

  .variant-eventee-v4 .opening-image {
    opacity: 0;
  }

  .variant-eventee-v3 .opening-note .kicker {
    color: rgba(125, 55, 92, 0.78);
  }

  .variant-eventee-v4 .opening-note .kicker {
    color: rgba(255, 253, 248, 0.78);
  }

  .variant-eventee-v3 .phone-scroll {
    min-height: 560px;
    margin-top: 34px;
    margin-bottom: 28px;
  }

  .variant-eventee-v3 .date-mark {
    gap: 10px;
  }

  .variant-eventee-v3 .date-mark strong {
    font-size: clamp(5.6rem, 29vw, 8rem);
    line-height: 0.84;
    margin-bottom: 14px;
  }

  .variant-eventee-v3 .itinerary article {
    grid-template-columns: 62px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    align-items: start;
    column-gap: 20px;
    row-gap: 7px;
    padding: 30px 0;
  }

  .variant-eventee-v3 .timeline-icon {
    grid-column: 1;
    grid-row: 1 / span 3;
    align-self: start;
    justify-self: center;
    width: 54px;
    height: 54px;
    margin-top: 2px;
  }

  .variant-eventee-v3 .timeline-icon svg {
    width: 32px;
    height: 32px;
  }

  .variant-eventee-v3 .itinerary time,
  .variant-eventee-v3 .itinerary h3,
  .variant-eventee-v3 .itinerary p {
    grid-column: 2;
    min-width: 0;
  }

  .variant-eventee-v3 .itinerary time {
    align-self: end;
    line-height: 0.94;
  }

  .variant-eventee-v3 .itinerary h3 {
    margin: 0;
  }

  .variant-eventee-v3 .itinerary p {
    margin: 0;
  }

  .variant-eventee-v3 .v-hero {
    padding-top: 92px;
    padding-bottom: 104px;
  }

  .variant-eventee-v3 .v-petal-palette p:last-child {
    font-size: 1.03rem;
    line-height: 1.68;
  }

  .variant-eventee-v3 .petal-swatches {
    gap: 22px 16px;
    max-width: 350px;
    padding: 20px 14px;
  }

  .variant-eventee-v3 .petal-swatches::before {
    inset: -10px -12px;
    border-radius: 42px;
    background: radial-gradient(ellipse, rgba(255, 253, 248, 0.48) 0 44%, rgba(255, 253, 248, 0.18) 68%, transparent 100%);
  }

  .variant-eventee-v3 .watercolor-swatch {
    filter: saturate(1.28) brightness(1.03) contrast(1.08);
  }

  .variant-eventee-v3 .watercolor-blue {
    filter: hue-rotate(34deg) saturate(1) brightness(1.05) contrast(1.08);
  }

  .variant-eventee-v3 .v-countdown {
    padding-top: 88px;
    padding-bottom: 94px;
  }

  .variant-eventee-v4 .v-rsvp {
    grid-template-columns: 1fr;
    gap: 30px;
    width: min(100% - 24px, 1080px);
    padding-top: 84px;
    padding-bottom: 96px;
  }

  .variant-eventee-v4 .rsvp-copy {
    position: static;
  }

  .variant-eventee-v4 .rsvp-copy h2 {
    max-width: min(100%, 12ch);
    font-size: clamp(2.35rem, 10.5vw, 3.65rem);
  }

  .variant-eventee-v4 .rsvp-choice {
    grid-template-columns: 1fr;
  }

  .variant-eventee-v4 .rsvp-submit {
    width: 100%;
    justify-self: stretch;
  }

  .variant-eventee-v4 .v-welcome-zone,
  .variant-eventee-v4 .v-accommodation {
    width: min(100% - 24px, 900px);
    padding-top: 54px;
    padding-bottom: 78px;
  }

  .variant-eventee-v4 .v-accommodation {
    padding-top: 0;
    padding-bottom: 58px;
  }

  .variant-eventee-v4 .welcome-card,
  .variant-eventee-v4 .accommodation-card {
    padding: 34px 22px;
    border-radius: 34px 12px 34px 12px;
  }

  .variant-eventee-v4 .accommodation-card {
    border-radius: 12px 34px 12px 34px;
  }

  .variant-eventee-v4 .welcome-card h2,
  .variant-eventee-v4 .accommodation-card h2 {
    font-size: clamp(2.25rem, 10vw, 3.45rem);
  }

  .variant-eventee-v4 .accommodation-card .script-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .variant-eventee-v4 .welcome-card .script-label {
    font-size: 0.72rem;
    letter-spacing: 0.18em;
  }

  .variant-eventee-v4 .accommodation-card h2 {
    font-size: clamp(2rem, 8vw, 2.9rem);
  }

  .variant-eventee-v4 .welcome-card h2 {
    font-size: clamp(2rem, 8vw, 2.9rem);
  }

  .variant-eventee-v4 .v-telegram {
    grid-template-columns: 1fr;
    gap: 34px;
    width: min(100% - 24px, 1080px);
    padding-top: 72px;
    padding-bottom: 92px;
  }

  .variant-eventee-v4 .telegram-copy {
    text-align: center;
  }

  .variant-eventee-v4 .telegram-copy h2 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10vw, 3.7rem);
  }

  .variant-eventee-v4 .telegram-link {
    width: 100%;
  }

  .variant-eventee-v4 .telegram-qr-card {
    justify-self: center;
    width: min(100%, 292px);
    border-radius: 38px;
  }

  .variant-eventee-v4 .telegram-qr-card img {
    width: min(100%, 218px);
  }

  .variant-eventee-v4 .music-controller {
    top: 14px;
    right: 12px;
    width: 68px;
    min-height: 66px;
    padding: 8px 6px;
  }

  .variant-eventee-v4 .music-icon {
    width: 25px;
    height: 25px;
  }

  .variant-eventee-v4 .music-track {
    font-size: 0.48rem;
  }

  footer {
    display: grid;
    text-align: center;
  }
}

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

  .reveal,
  .stagger-reveal > * {
    opacity: 1;
    transform: none;
  }
}
