:root {
  --paper: #f7f8ef;
  --ivory: #ebe8d9;
  --champagne: #d3be96;
  --sage: #a7b86c;
  --garden: #697843;
  --deep-green: #283322;
  --rose: #d8a2af;
  --berry: #a95b6b;
  --ink: #51464a;
  --soft-ink: #746b68;
  --line: rgba(81, 70, 74, 0.16);
  --shadow: 0 24px 80px rgba(40, 51, 34, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.6;
}

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;
}

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(247, 248, 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: "Ultra", Georgia, "Times New Roman", serif;
  font-size: 1.4rem;
  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 {
  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: 600;
  transition: transform 0.25s ease, background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.nav-cta {
  border: 1px solid currentColor;
  font-size: 0.86rem;
}

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

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  padding: 150px clamp(20px, 6vw, 86px) 46px;
  color: var(--paper);
}

.hero-media,
.final-bg {
  position: absolute;
  inset: 0;
  background-image: url("assets/optimized/hero-setup.webp");
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  animation: slowDrift 24s ease-in-out infinite alternate;
  z-index: -3;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(20, 25, 19, 0.72), rgba(20, 25, 19, 0.26) 48%, rgba(20, 25, 19, 0.46)),
    linear-gradient(0deg, rgba(20, 25, 19, 0.58), transparent 56%);
}

.hero-content {
  width: min(850px, 100%);
}

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

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

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

h1 {
  max-width: 900px;
  margin-bottom: 24px;
  font-size: clamp(4rem, 12vw, 10.5rem);
}

h2 {
  font-size: clamp(2.6rem, 6vw, 6.3rem);
}

h3 {
  margin-bottom: 8px;
  font-family: "Ultra", Georgia, "Times New Roman", serif;
  font-size: 1.38rem;
  font-weight: 400;
  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-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button.primary {
  background: var(--paper);
  color: var(--deep-green);
}

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

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 70px);
  bottom: 46px;
  display: grid;
  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);
  border-bottom: 1px solid var(--line);
  background: var(--ivory);
}

.proof-item {
  min-height: 165px;
  display: grid;
  align-content: center;
  justify-items: center;
  padding: 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}

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

.proof-item strong {
  display: block;
  color: var(--garden);
  font-family: "Ultra", Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  font-weight: 400;
  line-height: 0.95;
}

.proof-item span {
  font-size: 0.86rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.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-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-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 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.95fr) minmax(280px, 0.75fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.intro h2 {
  max-width: 950px;
}

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

.scene-feature {
  padding-top: 0;
  background:
    linear-gradient(180deg, rgba(235, 232, 217, 0.36), rgba(247, 248, 239, 0)),
    radial-gradient(circle at 18% 22%, rgba(167, 184, 108, 0.14), 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);
  font-size: 1.03rem;
}

.wide-image {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.wide-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 8.3;
  object-fit: cover;
}

.ensemble {
  padding-top: 0;
  background:
    linear-gradient(180deg, var(--paper), rgba(211, 190, 150, 0.18)),
    radial-gradient(circle at 88% 10%, rgba(216, 162, 175, 0.24), 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: 640px;
  margin-bottom: 0;
  font-size: clamp(3rem, 6.6vw, 6.8rem);
}

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

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

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

.musician-card {
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  overflow: hidden;
  min-height: 104px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
  box-shadow: 0 18px 50px rgba(40, 51, 34, 0.07);
}

.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(--garden);
  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);
  background: var(--deep-green);
  color: var(--paper);
}

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

.details-panel h2 {
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.large {
  font-size: clamp(1.08rem, 2vw, 1.35rem);
  color: rgba(247, 248, 239, 0.86);
}

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

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(247, 248, 239, 0.2);
}

.timeline-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid rgba(247, 248, 239, 0.2);
}

.timeline-row span {
  color: var(--champagne);
  font-family: "Ultra", Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
}

.timeline-row p {
  margin-bottom: 0;
  color: rgba(247, 248, 239, 0.76);
}

.ep {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(310px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: center;
  background: var(--ivory);
}

.ep-art {
  overflow: hidden;
  border-radius: 8px;
  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);
  font-size: 1.08rem;
}

.spotify-frame {
  margin-top: 26px;
  overflow: hidden;
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(40, 51, 34, 0.08);
}

.logos {
  padding-top: 76px;
  padding-bottom: 76px;
}

.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: rgba(255, 255, 255, 0.72);
  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;
}

.reviews {
  background:
    linear-gradient(180deg, var(--paper), rgba(216, 162, 175, 0.14)),
    linear-gradient(90deg, rgba(167, 184, 108, 0.15), 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(--garden);
  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-radius: 999px;
  background: rgba(167, 184, 108, 0.16);
  border: 1px solid rgba(105, 120, 67, 0.18);
  box-shadow: 0 12px 24px rgba(40, 51, 34, 0.08);
}

.carousel-button:hover {
  color: var(--deep-green);
  background: linear-gradient(90deg, rgba(167, 184, 108, 0.12), transparent);
}

.carousel-button--next:hover {
  background: linear-gradient(270deg, rgba(167, 184, 108, 0.12), transparent);
}

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

.review-track {
  display: flex;
  gap: 24px;
  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 var(--line);
  border-radius: 8px;
  background: rgba(247, 248, 239, 0.78);
  box-shadow: 0 18px 50px rgba(40, 51, 34, 0.07);
}

.stars {
  color: var(--champagne);
  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(--garden);
  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));
  }
}

.final-cta {
  position: relative;
  min-height: 76svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(90px, 14vw, 170px) clamp(20px, 6vw, 86px);
  color: var(--paper);
  text-align: center;
}

.final-bg {
  filter: brightness(0.55) saturate(0.8);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: rgba(40, 51, 34, 0.4);
}

.final-content {
  width: min(920px, 100%);
}

.final-content h2 {
  margin-bottom: 22px;
}

.final-content p:not(.eyebrow) {
  width: min(650px, 100%);
  margin: 0 auto 28px;
  color: rgba(247, 248, 239, 0.86);
  font-size: 1.12rem;
}

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

.site-footer img {
  width: 44px;
  height: 44px;
  filter: none;
}

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

.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 {
    min-height: 92svh;
    padding-top: 118px;
  }

  .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);
  }

  .details-panel {
    position: static;
  }

  .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-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: 72px;
  }

  .hero {
    min-height: 96svh;
    padding: 104px 18px 32px;
  }

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

  h1 {
    font-size: clamp(3.2rem, 18vw, 5rem);
  }

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

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

  .wide-image img {
    aspect-ratio: 4 / 5;
  }

  .timeline-row {
    grid-template-columns: 70px 1fr;
    gap: 16px;
  }

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

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

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

  .reviews-controls {
    position: static;
    justify-content: center;
    padding: 18px 0 0;
  }

  .carousel-button {
    width: 52px;
    height: 52px;
    background: transparent;
  }

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

  .review-carousel {
    padding: 0;
  }

  .review-page--single {
    flex: 0 0 calc(100% - 72px);
    min-width: calc(100% - 72px);
    gap: 0;
  }

  .review-track {
    gap: 18px;
    padding: 0 18px;
  }

  .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%;
  }

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

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

  .site-footer {
    display: grid;
  }
}
