:root {
  --paper: #fbf7ef;
  --ivory: #f2eadf;
  --champagne: #c7a66a;
  --gold: #b9965e;
  --sage: #a7a879;
  --garden: #746d44;
  --venue-green: #2B421F;
  --deep-green: #2f3426;
  --rose: #c9a7a7;
  --berry: #697843;
  --wine: #283322;
  --ink: #4d3635;
  --soft-ink: #806f68;
  --line: rgba(40, 51, 34, 0.17);
  --shadow: 0 24px 80px rgba(68, 45, 35, 0.14);
  --paper-shadow: 0 22px 70px rgba(91, 64, 47, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 50% 0%, rgba(199, 166, 106, 0.18), transparent 34rem),
    linear-gradient(180deg, #fbf7ef 0%, #f3eadf 48%, #fbf7ef 100%);
  color: var(--ink);
  font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  opacity: 0.28;
  background:
    linear-gradient(rgba(40, 51, 34, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(40, 51, 34, 0.025) 1px, transparent 1px);
  background-size: 42px 42px;
}

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

body:not(.has-entered-invitation) .site-header,
body:not(.has-entered-invitation) main > section:not(.invitation),
body:not(.has-entered-invitation) .site-footer {
  display: none;
}

body:not(.has-entered-invitation) .invitation {
  position: fixed;
  inset: 0;
  z-index: 50;
}

body.has-entered-invitation .invitation {
  display: none;
}

body.is-leaving-envelope .invitation {
  opacity: 0;
  transform: scale(0.985);
}

body.has-entered-invitation .site-header {
  animation: siteReveal 0.7s ease both;
}

body.has-entered-invitation .hero {
  animation: siteReveal 0.9s ease both;
}

body.has-entered-invitation .reveal {
  opacity: 1;
  transform: translateY(0);
}

img,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 120px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 18px clamp(18px, 4vw, 54px);
  color: var(--paper);
  transition: background 0.35s ease, color 0.35s ease, box-shadow 0.35s ease;
}

.site-header.is-scrolled {
  background: rgba(251, 247, 239, 0.9);
  color: var(--ink);
  box-shadow: 0 1px 0 var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img {
  display: block;
  width: 44px;
  height: 44px;
  object-fit: contain;
  filter: none;
  transition: filter 0.35s ease;
}

.brand span,
.footer-brand span {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.site-header.is-scrolled .brand img {
  filter: brightness(0);
}

nav {
  display: flex;
  justify-content: center;
  gap: clamp(16px, 4vw, 46px);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav a,
.nav-cta,
.button,
.text-link,
.scroll-cue {
  text-decoration: none;
}

.nav-cta,
.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-cta {
  border: 1px solid rgba(185, 150, 94, 0.42);
  background: var(--venue-green);
  color: #ffffff;
  font-size: 0.86rem;
  box-shadow: 0 12px 28px rgba(12, 22, 9, 0.14);
}

.nav-cta:hover,
.button:hover {
  transform: translateY(-2px);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: stretch;
  overflow: hidden;
  isolation: isolate;
  padding: 0;
  color: var(--paper);
}

.hero-media {
  position: absolute;
  inset: 0;
  background-image: url("assets/optimized/invitation-cover-watercolor.webp");
  background-size: cover;
  background-position: 50% 46%;
  transform: scale(1.06);
  animation: slowDrift 24s ease-in-out infinite alternate;
  z-index: -3;
  display: none;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(19, 25, 17, 0.8), rgba(40, 51, 34, 0.44) 52%, rgba(19, 25, 17, 0.58)),
    linear-gradient(0deg, rgba(19, 25, 17, 0.66), transparent 58%);
  display: none;
}

.hero-content {
  display: none;
  width: min(610px, 100%);
  align-self: end;
  padding-bottom: clamp(20px, 5vw, 78px);
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
  line-height: 0.96;
}

h1 {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 7.2vw, 7.4rem);
}

h2 {
  font-size: clamp(2.9rem, 6vw, 6.1rem);
}

h3 {
  margin-bottom: 8px;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  font-weight: 700;
  line-height: 1.1;
}

.hero-copy {
  width: min(690px, 100%);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  color: rgba(247, 248, 239, 0.9);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-meta span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  border: 1px solid rgba(251, 247, 239, 0.46);
  border-radius: 999px;
  padding: 7px 14px;
  background: rgba(251, 247, 239, 0.1);
  color: rgba(251, 247, 239, 0.94);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button.primary {
  border: 1px solid rgba(185, 150, 94, 0.42);
  background: var(--venue-green);
  color: #ffffff;
  box-shadow: 0 16px 38px rgba(12, 22, 9, 0.2);
}

.button.ghost {
  border: 1px solid rgba(247, 248, 239, 0.68);
  color: var(--paper);
}

.hero-invite-card {
  display: block;
  justify-self: center;
  width: 100vw;
  height: 100svh;
  min-height: 100dvh;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--paper);
  box-shadow: none;
  position: relative;
}

.hero-invite-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  object-fit: cover;
  object-position: center 50%;
}

.hero-invite-card figcaption {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-rows: 1fr auto auto auto;
  justify-items: center;
  padding: clamp(88px, 9vw, 126px) 24px clamp(38px, 5vw, 68px);
  color: #fffaf0;
  text-align: center;
  text-shadow: 0 2px 16px rgba(20, 16, 12, 0.34);
  background:
    linear-gradient(180deg, rgba(20, 24, 18, 0.18), transparent 22%, transparent 66%, rgba(20, 24, 18, 0.34)),
    linear-gradient(90deg, rgba(20, 24, 18, 0.08), transparent 24%, transparent 76%, rgba(20, 24, 18, 0.08));
}

.hero-invite-card strong {
  align-self: center;
  margin-top: clamp(18px, 5vh, 72px);
  font-family: "Great Vibes", "Cormorant Garamond", cursive;
  font-size: clamp(4.6rem, 9vw, 8.6rem);
  font-weight: 400;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: none;
}

.invite-card-kicker,
.invite-card-date,
.hero-invite-card small {
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.invite-card-kicker {
  font-size: clamp(0.72rem, 1.2vw, 1rem);
}

.invite-card-date {
  position: relative;
  margin-bottom: 12px;
  font-size: clamp(1.2rem, 2vw, 1.8rem);
}

.invite-card-date::before,
.invite-card-date::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 52px;
  height: 1px;
  background: rgba(255, 250, 240, 0.68);
}

.invite-card-date::before {
  right: calc(100% + 14px);
}

.invite-card-date::after {
  left: calc(100% + 14px);
}

.hero-invite-card small {
  margin-bottom: 16px;
  font-size: clamp(0.62rem, 1vw, 0.82rem);
  letter-spacing: 0.24em;
}

.scroll-cue {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 0;
  color: #fffaf0;
  font-size: 1.35rem;
  line-height: 1;
  text-shadow: none;
  background: transparent;
  backdrop-filter: none;
  cursor: pointer;
  animation: scrollCue 1.45s ease-in-out infinite;
}

.music-toggle {
  position: fixed;
  right: clamp(16px, 4vw, 30px);
  bottom: clamp(16px, 4vw, 30px);
  z-index: 42;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(40, 51, 34, 0.18);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.88);
  color: var(--wine);
  box-shadow: 0 14px 32px rgba(68, 45, 35, 0.14);
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, color 0.25s ease, background 0.25s ease;
}

body.has-entered-invitation .music-toggle.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.music-toggle:hover,
.music-toggle:focus-visible {
  color: #8a5f3a;
  background: rgba(255, 251, 244, 0.98);
}

.music-toggle-icon {
  width: 23px;
  height: 23px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.music-toggle-icon--off,
.music-toggle.is-muted .music-toggle-icon--on {
  display: none;
}

.music-toggle.is-muted .music-toggle-icon--off {
  display: block;
}

.hero-note {
  display: none;
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 46px;
  gap: 4px;
  padding-left: 28px;
  border-left: 1px solid rgba(247, 248, 239, 0.45);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
  width: min(1080px, calc(100% - 40px));
  margin: clamp(46px, 7vw, 90px) auto;
  position: relative;
  z-index: 2;
  overflow: hidden;
  border: 1px solid rgba(40, 51, 34, 0.16);
  border-radius: 24px;
  background: rgba(255, 251, 244, 0.92);
  box-shadow: var(--paper-shadow);
}

.proof-item {
  min-height: 165px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 28px;
  border-right: 1px solid rgba(40, 51, 34, 0.12);
  text-align: center;
}

.proof-item:last-child {
  border-right: 0;
}

.proof-item strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 700;
  line-height: 1.08;
}

.proof-item span {
  display: block;
  padding-top: 0;
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  line-height: 1.25;
  text-transform: uppercase;
}

.welcome-strip {
  overflow: hidden;
  text-align: center;
  background:
    #ffffff;
}

.welcome-copy {
  width: min(690px, 100%);
  margin: 0 auto clamp(28px, 5vw, 52px);
}

.script-heading {
  margin-bottom: 12px;
  color: var(--gold);
  font-family: "Great Vibes", "Cormorant Garamond", cursive;
  font-size: clamp(3rem, 7vw, 5.2rem);
  line-height: 0.9;
}

.welcome-copy p:not(.script-heading) {
  margin: 0 auto;
  color: var(--soft-ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.28rem, 2.3vw, 1.75rem);
  font-weight: 600;
  line-height: 1.35;
}

.live-gallery {
  position: relative;
  overflow: hidden;
  width: min(980px, 100vw);
  margin: 0 auto;
  mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 8%, black 92%, transparent);
}

.live-gallery-track {
  display: flex;
  width: max-content;
  gap: 14px;
  align-items: stretch;
  animation: liveGalleryDrift 56s linear infinite;
}

.live-gallery:hover .live-gallery-track {
  animation-play-state: paused;
}

.live-gallery img {
  flex: 0 0 clamp(170px, 22vw, 280px);
  width: clamp(170px, 22vw, 280px);
  aspect-ratio: 0.72;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 44px rgba(68, 45, 35, 0.14);
}

.section {
  padding: clamp(82px, 12vw, 155px) clamp(20px, 6vw, 86px);
}

main > section:not(.invitation):not(.hero):not(.final-cta) {
  position: relative;
}

main > section:not(.invitation):not(.hero):not(.final-cta)::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 28px;
  width: min(86px, 20vw);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(185, 150, 94, 0.85), transparent);
}

.invitation {
  min-height: 100svh;
  display: grid;
  align-items: center;
  justify-items: center;
  overflow: hidden;
  padding: clamp(18px, 4vw, 52px);
  background:
    radial-gradient(circle at 50% 44%, rgba(211, 190, 150, 0.18), transparent 38%),
    var(--paper);
  opacity: 1;
  transform: scale(1);
  transition: opacity 1s ease, transform 1s ease;
}

.invitation-shell {
  width: min(1180px, 96vw);
  margin: 0;
  display: grid;
  justify-items: center;
}

.invitation-launch {
  position: relative;
  width: min(100%, 1180px);
  max-width: 100%;
  aspect-ratio: 3281 / 1875;
}

.invitation-launch::before,
.invitation-launch::after {
  position: absolute;
  z-index: 4;
  pointer-events: none;
}

.invitation-launch::before {
  content: "↓";
  left: 50%;
  top: 40%;
  color: rgba(185, 150, 94, 0.95);
  font-size: clamp(2rem, 4vw, 4.8rem);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1;
  text-shadow: 0 2px 8px rgba(68, 45, 35, 0.16);
  transform: translate(-50%, 0);
  animation: sealArrowNudge 1.8s ease-in-out infinite;
}

.invitation-launch::after {
  content: none;
}

.invitation-envelope-image,
.invitation-envelope-video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 0;
}

.invitation-envelope-image {
  z-index: 0;
  opacity: 1;
  transition: opacity 0.32s ease;
  filter: drop-shadow(0 30px 70px rgba(77, 63, 45, 0.18));
}

.invitation-envelope-video {
  z-index: 1;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
  mix-blend-mode: multiply;
  clip-path: inset(4% 13% 2% 13%);
}

.invitation-launch.is-opening .invitation-envelope-video,
.invitation-launch.is-opened .invitation-envelope-video {
  opacity: 1;
}

.invitation-launch.is-opening .invitation-envelope-image,
.invitation-launch.is-opened .invitation-envelope-image {
  opacity: 0;
}

.invitation-launch.is-opening::before,
.invitation-launch.is-opening::after,
.invitation-launch.is-opened::before,
.invitation-launch.is-opened::after {
  display: none;
  opacity: 0;
}

.invitation-launch-seal {
  position: absolute;
  left: 50%;
  top: 65.3%;
  width: 16%;
  aspect-ratio: 1;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 999px;
  background: transparent;
  display: block;
  padding: 0;
  cursor: pointer;
  z-index: 5;
  opacity: 1;
  pointer-events: auto;
}

.invitation-launch-seal::after {
  content: "";
  position: absolute;
  inset: -10%;
  border-radius: 999px;
  border: 1px solid rgba(198, 165, 106, 0);
  box-shadow: 0 0 0 0 rgba(198, 165, 106, 0);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.invitation-launch-seal:hover::after,
.invitation-launch-seal:focus-visible::after {
  border-color: rgba(198, 165, 106, 0.38);
  box-shadow: 0 0 0 10px rgba(198, 165, 106, 0.10);
  transform: scale(1.05);
}

.invitation-launch-seal:focus-visible {
  outline: none;
}

.invitation-launch.is-opening .invitation-launch-seal,
.invitation-launch.is-opened .invitation-launch-seal {
  pointer-events: none;
  animation: invitationSealRelease 0.46s cubic-bezier(0.28, 0.78, 0.22, 1) forwards;
}

@keyframes invitationSealRelease {
  0% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
  36% {
    opacity: 1;
    transform: translate(-50%, -50%) scale(0.96);
  }
  100% {
    opacity: 0;
    transform: translate(-50%, -39%) scale(0.82);
  }
}

@keyframes sealArrowNudge {
  0%, 100% {
    transform: translate(-50%, 0);
    opacity: 0.78;
  }
  50% {
    transform: translate(-50%, 8px);
    opacity: 1;
  }
}

@keyframes sealArrowHeadNudge {
  0%, 100% {
    transform: rotate(3deg) translate(0, 0);
    opacity: 0.78;
  }
  50% {
    transform: rotate(3deg) translate(-7px, 5px);
    opacity: 1;
  }
}

@keyframes siteReveal {
  from {
    opacity: 0;
    filter: blur(6px);
  }
  to {
    opacity: 1;
    filter: blur(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .invitation-envelope-image,
  .invitation-envelope-video {
    transition: none;
  }
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 0.9fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.intro {
  width: min(1120px, calc(100% - 40px));
  margin: clamp(42px, 7vw, 84px) auto clamp(72px, 9vw, 120px);
  border: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 12%, rgba(199, 166, 106, 0.14), transparent 16rem),
    rgba(255, 251, 244, 0.88);
  box-shadow: 0 26px 76px rgba(68, 45, 35, 0.14), 0 0 0 1px rgba(40, 51, 34, 0.06);
}

.intro h2 {
  max-width: 660px;
  font-size: clamp(2.2rem, 3.8vw, 4.05rem);
  line-height: 1;
}

.scene-copy h2,
.ensemble-heading h2,
.details-panel h2,
.ep-copy h2,
.reviews-copy h2,
.final-content h2 {
  font-size: clamp(2.2rem, 3.8vw, 4.05rem);
  line-height: 1;
}

.intro-copy {
  padding-top: 14px;
  color: var(--soft-ink);
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
}

.intro-copy,
.scene-copy p:not(.section-kicker),
.ensemble-heading p:not(.section-kicker),
.ep-copy p:not(.section-kicker),
.reviews-copy p,
.final-content p:not(.eyebrow) {
  font-size: clamp(1.03rem, 1.6vw, 1.2rem);
  line-height: 1.55;
}

.intro .section-kicker,
.scene-copy .section-kicker,
.ensemble-kicker,
.details .section-kicker,
.ep .section-kicker,
.reviews .section-kicker {
  color: var(--gold);
}

.scene-feature {
  padding-top: clamp(82px, 12vw, 140px);
  padding-bottom: clamp(92px, 12vw, 150px);
  background:
    linear-gradient(180deg, rgba(251, 247, 239, 0), rgba(199, 166, 106, 0.14)),
    radial-gradient(circle at 18% 22%, rgba(40, 51, 34, 0.08), transparent 28%);
}

.scene-grid {
  display: grid;
  grid-template-columns: minmax(320px, 1.08fr) minmax(280px, 0.72fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}

.scene-copy {
  max-width: 520px;
}

.scene-copy p:not(.section-kicker) {
  color: var(--soft-ink);
}

.wide-image {
  margin: 0;
  overflow: hidden;
  border: 2px solid rgba(40, 51, 34, 0.18);
  border-radius: 26px;
  box-shadow: var(--shadow);
}

.image-lightbox-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.wide-image img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center top;
}

.ensemble {
  background:
    linear-gradient(180deg, rgba(255, 251, 244, 0.9), rgba(199, 166, 106, 0.13)),
    radial-gradient(circle at 88% 10%, rgba(40, 51, 34, 0.12), transparent 26%);
}

.ensemble-heading {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(300px, 0.95fr);
  grid-template-areas:
    "kicker title"
    "intro title";
  gap: clamp(20px, 5vw, 56px) clamp(36px, 8vw, 96px);
  align-items: start;
  margin-bottom: 46px;
}

.ensemble-kicker {
  grid-area: kicker;
  align-self: end;
}

.ensemble-heading h2 {
  grid-area: title;
  max-width: 560px;
  margin-bottom: 0;
}

.ensemble-intro {
  grid-area: intro;
  padding-top: 8px;
}

.ensemble-heading p:not(.section-kicker) {
  max-width: 560px;
  color: var(--soft-ink);
}

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

.personal-invite .intro {
  margin: clamp(30px, 5vw, 58px) auto clamp(48px, 6vw, 82px);
  padding-block: clamp(42px, 6vw, 72px);
}

.personal-invite .intro-grid {
  grid-template-columns: minmax(300px, 0.88fr) minmax(320px, 0.82fr);
  gap: clamp(24px, 4vw, 52px);
}

.personal-invite .intro h2,
.personal-invite .ensemble-heading h2 {
  font-size: clamp(2rem, 3.2vw, 3.35rem);
}

.personal-invite .intro-copy,
.personal-invite .ensemble-heading p:not(.section-kicker) {
  font-size: clamp(1rem, 1.35vw, 1.12rem);
  line-height: 1.5;
}

.personal-invite .intro-copy p {
  margin-bottom: 18px;
}

.personal-invite .ensemble {
  padding-top: clamp(54px, 7vw, 88px);
}

.personal-invite .ensemble-heading {
  grid-template-columns: minmax(280px, 0.82fr) minmax(320px, 0.9fr);
  gap: clamp(16px, 3vw, 34px) clamp(32px, 6vw, 74px);
  margin-bottom: 34px;
}

.personal-invite .ensemble-intro {
  padding-top: 0;
}

.musician-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  overflow: hidden;
  min-height: 104px;
  border: 1px solid rgba(40, 51, 34, 0.16);
  border-radius: 20px;
  background: rgba(255, 251, 244, 0.78);
  box-shadow: 0 18px 50px rgba(68, 45, 35, 0.08);
}

.musician-card img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.musician-copy {
  padding: 14px 16px;
}

.musician-copy h3 {
  margin-bottom: 4px;
  font-size: 1rem;
}

.musician-copy p {
  margin: 0;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.details {
  display: grid;
  grid-template-columns: minmax(260px, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(34px, 7vw, 90px);
  align-items: center;
  margin: clamp(46px, 7vw, 86px) auto;
  width: min(1120px, calc(100% - 40px));
  border: 0;
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 12%, rgba(199, 166, 106, 0.14), transparent 16rem),
    rgba(255, 251, 244, 0.88);
  color: var(--ink);
  box-shadow: 0 28px 82px rgba(68, 45, 35, 0.16), 0 0 0 1px rgba(185, 150, 94, 0.16);
}

.details-panel {
  align-self: start;
  position: sticky;
  top: 120px;
}

.details-panel h2 {
  margin-bottom: 22px;
}

.large {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: var(--soft-ink);
}

.program-partner-note {
  width: min(340px, 100%);
  margin: 16px 0 0;
  color: #8d6a3b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.text-link {
  display: inline-flex;
  margin-top: 12px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.invitation-timeline {
  position: relative;
  display: grid;
  gap: 34px;
  min-height: 520px;
  padding: 36px 0;
  border-top: 0;
}

.invitation-timeline::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 50%;
  width: 2px;
  border-radius: 999px;
  background: linear-gradient(180deg, transparent, rgba(40, 51, 34, 0.58) 9%, rgba(40, 51, 34, 0.68) 88%, transparent);
  transform: translateX(-50%);
}

.timeline-row {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  width: calc(50% - 30px);
  min-height: 112px;
  align-content: center;
  gap: 4px;
  padding: 0;
  border-bottom: 0;
  text-align: right;
}

.program-icon {
  display: block;
  width: 38px;
  height: 38px;
  margin-bottom: 8px;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.timeline-row-left .program-icon {
  justify-self: end;
}

.timeline-row-right .program-icon {
  justify-self: start;
}

.timeline-row-left span {
  justify-self: end;
}

.timeline-row-left .program-icon {
  justify-self: end;
  margin-right: 14px;
}

.timeline-row-right span {
  justify-self: start;
}

.timeline-row-right .program-icon {
  justify-self: start;
  margin-left: 14px;
}

.timeline-row::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 13px;
  height: 2px;
  border-radius: 999px;
  background: rgba(40, 51, 34, 0.58);
}

.timeline-row-left {
  justify-self: start;
}

.timeline-row-right {
  justify-self: end;
  text-align: left;
}

.timeline-row-left::after {
  right: -30px;
}

.timeline-row-right::after {
  left: -30px;
}

.timeline-row span,
.timeline-row h3 {
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.timeline-row span {
  display: block;
  width: max-content;
  font-size: clamp(1.08rem, 2vw, 1.42rem);
  line-height: 1;
}

.timeline-row h3 {
  margin: 0;
  font-size: clamp(0.86rem, 1.25vw, 1.06rem);
  line-height: 1.12;
}

.timeline-row p {
  max-width: 210px;
  margin-bottom: 0;
  color: var(--soft-ink);
  font-size: 0.82rem;
  line-height: 1.45;
}

.location {
  display: grid;
  justify-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 0, rgba(255, 251, 244, 0.20), transparent 22rem),
    linear-gradient(180deg, var(--venue-green), #354D25);
  text-align: center;
}

.location-heading {
  margin-bottom: clamp(24px, 5vw, 42px);
  color: #fffaf0;
}

.location-heading .script-heading {
  margin-bottom: 2px;
  color: var(--gold);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
}

.location-heading p:not(.script-heading) {
  margin: 0;
  color: var(--gold);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 700;
}

.location-card {
  width: min(560px, 100%);
  overflow: hidden;
  border: 1px solid rgba(40, 51, 34, 0.12);
  border-radius: 18px;
  background: rgba(255, 251, 244, 0.96);
  box-shadow: 0 26px 70px rgba(68, 45, 35, 0.16);
}

.location-visual {
  margin: 0;
  padding: clamp(20px, 5vw, 38px) clamp(20px, 5vw, 44px) 0;
}

.location-visual img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.location-card-copy {
  padding: clamp(24px, 5vw, 42px);
  color: var(--gold);
}

.location-date {
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.location-card h2 {
  margin: 0 auto 8px;
  max-width: 420px;
  color: var(--gold);
  font-size: clamp(2rem, 5vw, 3.4rem);
}

.location-card-copy > p:not(.location-date):not(.location-note):not(.location-partner-note):not(.location-address) {
  margin-bottom: 12px;
  color: rgba(115, 87, 48, 0.74);
  font-weight: 700;
}

.location-address {
  margin-bottom: 12px;
  color: rgba(115, 87, 48, 0.74);
  font-weight: 400;
}

.location-map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  margin-bottom: 18px;
  padding: 0 18px;
  border: 1px solid rgba(199, 166, 106, 0.42);
  border-radius: 999px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.location-map-link:hover,
.location-map-link:focus-visible {
  border-color: rgba(40, 51, 34, 0.48);
  color: var(--wine);
  transform: translateY(-1px);
}

.location-card-copy span {
  display: block;
  width: 56px;
  height: 1px;
  margin: 0 auto 18px;
  background: rgba(199, 166, 106, 0.46);
}

.location-note {
  width: min(360px, 100%);
  margin: 0 auto;
  color: var(--soft-ink);
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-size: clamp(1.05rem, 2vw, 1.22rem);
  font-weight: 600;
  line-height: 1.35;
}

.location-partner-note {
  display: none;
  width: min(340px, 100%);
  margin: 18px auto 0;
  color: #8d6a3b;
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.ep {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(310px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background:
    radial-gradient(circle at 20% 50%, rgba(40, 51, 34, 0.08), transparent 22rem),
    var(--ivory);
}

.ep-art {
  overflow: hidden;
  border: 2px solid rgba(40, 51, 34, 0.18);
  border-radius: 26px;
  box-shadow: var(--shadow);
  background: var(--paper);
}

.ep-art img {
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.ep-copy p:not(.section-kicker) {
  color: var(--soft-ink);
}

.spotify-frame {
  margin-top: 26px;
  overflow: hidden;
  border: 0;
  border-radius: 12px;
  background: transparent;
  box-shadow: 0 18px 50px rgba(68, 45, 35, 0.08);
  line-height: 0;
}

.spotify-frame iframe {
  display: block;
  border: 0;
}

.logos {
  padding-top: 76px;
  padding-bottom: 76px;
  background: var(--venue-green);
}

.logos .section-kicker {
  color: var(--gold);
}

.logo-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 24px;
  mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 7%, black 93%, transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 16px;
  align-items: stretch;
  animation: logoMarquee 52s linear infinite;
}

.logo-marquee:hover .logo-track {
  animation-play-state: paused;
}

.logo-tile {
  display: grid;
  place-items: center;
  flex: 0 0 clamp(180px, calc((100vw - 220px) / 5), 250px);
  min-height: 122px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(40, 51, 34, 0.04);
}

.logo-tile img {
  width: calc(100% - 28px);
  height: 86px;
  object-fit: contain;
  padding: 0;
  filter: none;
}

.logo--boost {
  transform: scale(1.14);
  transform-origin: center;
}

.image-lightbox {
  width: min(94vw, 1180px);
  max-width: none;
  padding: 0;
  border: 0;
  background: transparent;
}

.image-lightbox::backdrop {
  background: rgba(22, 20, 16, 0.82);
  backdrop-filter: blur(8px);
}

.image-lightbox img {
  display: block;
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.36);
}

.image-lightbox-close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 251, 244, 0.34);
  border-radius: 999px;
  background: rgba(255, 251, 244, 0.94);
  color: var(--ink);
  cursor: pointer;
  font-size: 1.8rem;
  line-height: 1;
}

.reviews {
  background:
    linear-gradient(180deg, var(--paper), rgba(199, 166, 106, 0.14)),
    linear-gradient(90deg, rgba(40, 51, 34, 0.09), transparent 44%);
}

.reviews-heading {
  display: grid;
  grid-template-columns: minmax(220px, 0.28fr) minmax(320px, 1fr) auto;
  gap: clamp(20px, 6vw, 82px);
  align-items: end;
  margin-bottom: 42px;
}

.reviews-copy p {
  margin: 14px 0 0;
  max-width: 520px;
  color: var(--soft-ink);
}

.reviews-controls {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  width: 100%;
  z-index: 4;
}

.carousel-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--wine);
  font: inherit;
  font-size: 1.5rem;
  cursor: pointer;
  transition: color 0.25s ease, background 0.25s ease;
}

.carousel-button--side {
  position: relative;
}

.carousel-button--side span {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.carousel-button:hover {
  color: var(--gold);
  background: linear-gradient(90deg, rgba(40, 51, 34, 0.1), transparent);
}

.carousel-button--next:hover {
  background: linear-gradient(270deg, rgba(40, 51, 34, 0.1), transparent);
}

.review-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 64px;
}

.review-window {
  overflow: hidden;
}

.review-track {
  display: flex;
  gap: 0;
  transition: transform 0.55s ease;
}

.review-page {
  min-width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  min-height: 380px;
  display: flex;
  flex-direction: column;
  padding: clamp(24px, 3vw, 34px);
  border: 1px solid rgba(40, 51, 34, 0.16);
  border-radius: 22px;
  background: rgba(255, 251, 244, 0.82);
  box-shadow: 0 18px 50px rgba(68, 45, 35, 0.08);
}

.stars {
  color: var(--gold);
  letter-spacing: 0.12em;
}

blockquote {
  margin: 0;
  color: var(--soft-ink);
  font-size: 1.02rem;
}

.reviewer {
  margin: auto 0 0;
  padding-top: 22px;
  color: var(--venue-green);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

@keyframes logoMarquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes liveGalleryDrift {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 7px));
  }
}

@keyframes scrollCue {
  0%,
  100% {
    opacity: 0.72;
    transform: translateY(0);
  }
  45% {
    opacity: 1;
    transform: translateY(9px);
  }
}

.final-cta {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: clamp(96px, 13vw, 160px) clamp(20px, 6vw, 86px);
  background:
    radial-gradient(circle at 50% 0, rgba(255, 251, 244, 0.62), transparent 18rem),
    linear-gradient(180deg, rgba(255, 251, 244, 0.94), rgba(199, 166, 106, 0.38));
  color: var(--ink);
  text-align: center;
}

.final-cta::before {
  content: "";
  position: absolute;
  top: 48px;
  width: 68px;
  height: 1px;
  background: rgba(199, 166, 106, 0.48);
}

.final-content {
  width: min(640px, 100%);
  padding: clamp(34px, 7vw, 64px) clamp(24px, 6vw, 58px);
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 0, rgba(199, 166, 106, 0.12), transparent 14rem),
    rgba(255, 251, 244, 0.94);
  box-shadow: 0 26px 76px rgba(68, 45, 35, 0.14), 0 0 0 1px rgba(40, 51, 34, 0.06);
}

.final-content .script-heading {
  margin-bottom: 6px;
  color: #8d6a3b;
  font-size: clamp(2.8rem, 6.4vw, 4.8rem);
}

.final-content h2 {
  margin-bottom: 18px;
  color: #5f4030;
}

.final-content p:not(.eyebrow) {
  width: min(460px, 100%);
  margin: 0 auto 30px;
  color: #7c6253;
  font-family: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  font-weight: 600;
}

.final-content .button {
  border-color: rgba(185, 150, 94, 0.42);
  background: var(--venue-green);
  color: #ffffff;
  box-shadow: 0 14px 32px rgba(12, 22, 9, 0.2);
}

.final-content .button:hover {
  background: #354d25;
  color: #ffffff;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 32px clamp(20px, 6vw, 86px);
  background: var(--venue-green);
  color: rgba(251, 247, 239, 0.78);
  font-size: 0.9rem;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.footer-logo {
  display: block;
  object-fit: contain;
  filter: none;
}

.footer-logo--loua {
  width: 46px;
  height: 46px;
}

.footer-logo--park13 {
  width: 54px;
  height: 54px;
}

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

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

@keyframes slowDrift {
  from {
    transform: scale(1.04) translate3d(-0.7%, 0, 0);
  }
  to {
    transform: scale(1.09) translate3d(0.8%, -0.7%, 0);
  }
}

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

@media (max-width: 920px) {
  .site-header {
    grid-template-columns: 90px 1fr;
  }

  .site-header nav {
    display: none;
  }

  .nav-cta {
    justify-self: end;
    min-height: 42px;
    padding: 10px 15px;
    font-size: 0.8rem;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: 92svh;
    align-items: end;
    padding-top: 78px;
    gap: 22px;
  }

  .hero-invite-card {
    display: block;
    width: min(330px, 86vw);
    order: -1;
  }

  .hero-content {
    padding-bottom: 24px;
  }

  .hero-note {
    position: static;
    margin-top: 42px;
  }

  .proof-band,
  .intro-grid,
  .scene-grid,
  .details,
  .ep,
  .reviews-heading,
  .review-page {
    grid-template-columns: 1fr;
  }

  .ensemble-heading {
    grid-template-columns: 1fr;
    grid-template-areas:
      "kicker"
      "title"
      "intro";
    gap: 20px;
  }

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

  .proof-item {
    min-height: 132px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .intro,
  .details {
    width: min(100% - 28px, 720px);
    border-radius: 28px;
  }

  .details {
    background:
      radial-gradient(circle at 88% 12%, rgba(199, 166, 106, 0.14), transparent 16rem),
      rgba(255, 251, 244, 0.88);
  }

  .details-panel {
    position: static;
  }

  .program-partner-note {
    display: none;
  }

  .location-partner-note {
    display: block;
  }

  .invitation-timeline {
    min-height: 470px;
    padding: 20px 0 10px;
  }

  .logo-track {
    animation-duration: 34s;
  }

  .logo-tile {
    flex-basis: clamp(170px, calc((100vw - 120px) / 3.2), 230px);
    min-height: 112px;
  }

  .logo-tile img {
    height: 76px;
  }

  .reviews-heading {
    grid-template-columns: 1fr;
  }

  .review-page--single {
    flex: 0 0 100%;
    min-width: 100%;
    grid-template-columns: 1fr;
    box-sizing: border-box;
    padding: 0 84px;
  }

  .review-track {
    gap: 0;
  }

  .review-card {
    min-height: auto;
    padding: 24px 22px;
  }

  .reviewer {
    margin-top: 18px;
    padding-top: 0;
  }

  .invitation-launch {
    width: min(100%, 560px);
  }

  .invitation-facts {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding: 14px 16px;
  }

  .brand img {
    width: 44px;
  }

  .hero {
    min-height: 96svh;
    place-items: stretch;
    padding: 0;
  }

  .hero-media {
    background-position: 50% 50%;
  }

  h1 {
    font-size: clamp(3.2rem, 15vw, 4.9rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-content,
  .hero-note {
    display: none;
  }

  .hero-invite-card {
    width: 100vw;
    height: 100svh;
    min-height: 100dvh;
    border: 0;
    border-radius: 0;
  }

  .hero-invite-card img {
    height: 100%;
    aspect-ratio: auto;
  }

  .hero-invite-card figcaption {
    display: grid;
    padding: 88px 18px 38px;
  }

  .hero-invite-card strong {
    margin-top: clamp(36px, 13vh, 92px);
    font-size: clamp(3.2rem, 16vw, 4.8rem);
  }

  .invite-card-kicker {
    display: none;
  }

  .hero-invite-card small {
    margin-bottom: 14px;
  }

  .scroll-cue {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    border: 0;
    border-radius: 0;
    color: #fffaf0;
    font-size: 1.35rem;
    line-height: 1;
    text-shadow: none;
    background: transparent;
    backdrop-filter: none;
    cursor: pointer;
    animation: scrollCue 1.45s ease-in-out infinite;
  }

  .invite-card-date::before,
  .invite-card-date::after {
    width: 34px;
  }

  .hero-meta span {
    min-height: 34px;
    font-size: 0.68rem;
  }

  .proof-band {
    width: calc(100% - 24px);
    margin-top: 18px;
    border-radius: 22px;
  }

  .welcome-strip {
    padding-top: 82px;
    padding-bottom: 76px;
  }

  .welcome-copy {
    width: min(330px, 100%);
    margin-bottom: 30px;
  }

  .welcome-copy p:not(.script-heading) {
    font-size: 1.18rem;
  }

  .live-gallery {
    width: 100vw;
    margin-left: -18px;
    mask-image: linear-gradient(90deg, transparent, black 11%, black 89%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, black 11%, black 89%, transparent);
  }

  .live-gallery-track {
    gap: 10px;
    animation-duration: 46s;
  }

  .live-gallery img {
    flex-basis: 216px;
    width: 216px;
    border-radius: 4px;
  }

  .section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .intro,
  .details {
    width: calc(100% - 20px);
    border-radius: 24px;
  }

  .intro {
    margin-top: 46px;
    margin-bottom: 70px;
  }

  .details {
    margin-top: 42px;
    margin-bottom: 58px;
  }

  .location {
    padding-top: 78px;
    padding-bottom: 82px;
  }

  .location-card {
    width: min(100% - 26px, 340px);
    border-radius: 14px;
  }

  .location-visual {
    padding: 18px 18px 0;
  }

  .location-visual img {
    aspect-ratio: 1 / 0.86;
  }

  .location-card-copy {
    padding: 24px 22px 30px;
  }

  .wide-image img {
    aspect-ratio: 1 / 1.05;
    object-position: center top;
  }

  .timeline-row {
    width: calc(50% - 20px);
    min-height: 108px;
    gap: 3px;
  }

  .invitation-timeline {
    gap: 28px;
    min-height: 500px;
  }

  .timeline-row::after {
    width: 10px;
  }

  .timeline-row-left::after {
    right: -20px;
  }

  .timeline-row-right::after {
    left: -20px;
  }

  .timeline-row span {
    font-size: 1rem;
    letter-spacing: 0.05em;
  }

  .program-icon {
    width: 30px;
    height: 30px;
    margin-bottom: 7px;
  }

  .timeline-row h3 {
    font-size: 0.76rem;
    letter-spacing: 0.06em;
  }

  .logo-tile {
    flex-basis: 160px;
    min-height: 100px;
  }

  .logo-tile img,
  .logo--boost {
    height: 64px;
  }

  .logo--boost {
    transform: scale(1.1);
  }

  .reviews-controls {
    position: absolute;
    inset: 0;
    justify-content: space-between;
    padding: 0;
    pointer-events: none;
  }

  .carousel-button {
    width: 42px;
    height: 100%;
    pointer-events: auto;
  }

  .carousel-button--prev {
    background: transparent;
  }

  .carousel-button--next {
    background: transparent;
  }

  .carousel-button--side span {
    width: 38px;
    height: 38px;
    background: transparent;
  }

  .review-carousel {
    padding: 0;
  }

  .review-page--single {
    flex: 0 0 100%;
    min-width: 100%;
    gap: 0;
    padding: 0 52px;
  }

  .review-track {
    gap: 0;
    width: 100%;
    margin: 0;
    padding: 0;
  }

  .review-card {
    padding: 24px 20px;
  }

  .logo-tile--herthadalen img {
    padding: 8px 12px;
  }

  .invitation {
    padding: 0;
  }

  .invitation-shell {
    width: 100vw;
    height: 100svh;
    min-height: 100dvh;
    transform: none;
  }

  .invitation-launch {
    width: 100%;
    height: 100svh;
    min-height: 100dvh;
    aspect-ratio: auto;
    max-width: none;
    overflow: hidden;
    border-radius: 0;
    box-shadow: none;
  }

  .invitation-envelope-image,
  .invitation-envelope-video {
    inset: 0;
    width: 100%;
    max-width: none;
    height: 100%;
    min-height: 100dvh;
    object-fit: cover;
    object-position: center center;
    transform: translateY(-17%) scale(1.5);
    transform-origin: center center;
  }

  .invitation-envelope-image {
    filter: none;
  }

  .invitation-envelope-video {
    clip-path: none;
  }

  .invitation-launch-seal {
    top: 50%;
    width: 27%;
  }

  .invitation-launch::before {
    top: 25%;
    font-size: clamp(2.4rem, 14vw, 4.2rem);
  }

  .ensemble-grid {
    grid-template-columns: 1fr;
  }

  .musician-card {
    grid-template-columns: 72px 1fr;
    min-height: 92px;
  }

  .site-footer {
    display: grid;
  }
}
