:root {
  --bg: #f5efe4;
  --card: #fff8f0;
  --text: #473426;
  --muted: #6f5f51;
  --gold: #c7a97b;
  --burgundy: #991e2b;
  --olive: #7c8b6b;
  --rose: #d8b7aa;
  --line: rgba(91, 70, 54, 0.16);
  --shadow: 0 28px 90px rgba(91, 70, 54, 0.16);
  --serif: "Marcellus", Georgia, serif;
  --sans: "Manrope", "Inter", system-ui, sans-serif;
  --script: "Parisienne", cursive;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: auto;
}

body {
  margin: 0;
  background:
    radial-gradient(circle at 78% 9%, rgba(153, 30, 43, 0.08), transparent 20rem),
    radial-gradient(circle at 10% 0%, rgba(199, 169, 123, 0.22), transparent 28rem),
    radial-gradient(circle at 88% 20%, rgba(124, 139, 107, 0.13), transparent 26rem),
    var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 1.03rem;
  line-height: 1.75;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.lock {
  overflow: hidden;
}

img {
  display: block;
  width: 100%;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 50;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.45) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91, 70, 54, 0.2) 1px, transparent 1px);
  background-size: 3px 3px;
  mix-blend-mode: soft-light;
}

.cursor-glow {
  position: fixed;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  background: radial-gradient(circle, rgba(255, 248, 240, 0.38), transparent 68%);
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15rem clamp(1.2rem, 4vw, 4.5rem);
  color: #fff8f0;
  text-shadow: 0 1px 16px rgba(36, 27, 21, 0.28);
  transition: background 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

.site-header.scrolled {
  color: var(--text);
  background: rgba(245, 239, 228, 0.76);
  border-bottom: 1px solid rgba(91, 70, 54, 0.08);
  backdrop-filter: blur(18px);
  text-shadow: none;
}

.brand {
  font-family: var(--serif);
  font-size: 1.7rem;
  letter-spacing: 0.05em;
}

nav {
  display: flex;
  gap: clamp(0.8rem, 3vw, 2.4rem);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

nav a {
  opacity: 0.9;
}

nav a:hover {
  opacity: 1;
  color: var(--burgundy);
}

.section-full {
  min-height: 100svh;
  scroll-margin-top: 6rem;
}

.section-pad {
  position: relative;
  padding: clamp(5.5rem, 10vw, 10rem) clamp(1.2rem, 5vw, 5rem);
  scroll-margin-top: 6rem;
}

.hero {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #4e473d;
  color: #fff8f0;
}

.hero-bg {
  position: absolute;
  inset: -8%;
  width: 116%;
  height: 116%;
  object-fit: cover;
  object-position: center center;
  filter: saturate(0.96) contrast(1.02) brightness(0.74);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(30, 22, 17, 0.42), rgba(30, 22, 17, 0.56)),
    radial-gradient(circle at 50% 35%, rgba(245, 239, 228, 0.08), transparent 34rem);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 58rem;
  padding: 0 1.4rem;
  text-align: center;
}

.hero-content .button {
  text-shadow: none;
}

.eyebrow {
  margin: 0 0 0.9rem;
  color: #f0d1a5;
  font-size: clamp(0.82rem, 1.2vw, 0.94rem);
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.22);
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.04;
}

h1 {
  margin-bottom: 0.75rem;
  font-size: clamp(5rem, 13vw, 12.8rem);
  text-wrap: balance;
  text-shadow: 0 10px 44px rgba(0, 0, 0, 0.34);
}

.hero-date {
  margin-bottom: 2rem;
  font-size: clamp(1.08rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 5px 26px rgba(0, 0, 0, 0.32);
}

.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 1rem 1.75rem;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  overflow: hidden;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}

.button::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.32), transparent);
  transform: translateX(-120%);
  transition: transform 0.7s ease;
}

.button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 44px rgba(91, 70, 54, 0.18);
}

.button:hover::after {
  transform: translateX(120%);
}

.button-primary {
  background: linear-gradient(135deg, #3d2a20, var(--burgundy));
  color: #fff8f0;
  box-shadow: 0 16px 40px rgba(61, 42, 32, 0.2);
}

.button-secondary {
  border-color: rgba(153, 30, 43, 0.34);
  background: rgba(255, 250, 244, 0.86);
  color: var(--text);
}

.glass {
  border: 1px solid rgba(255, 248, 240, 0.62);
  background: rgba(255, 248, 240, 0.7);
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}

.countdown-wrap {
  position: absolute;
  right: clamp(1rem, 5vw, 4rem);
  bottom: clamp(1rem, 5vw, 3.5rem);
  z-index: 3;
}

.countdown-wrap p {
  margin: 0 0 0.7rem;
  color: #fff8f0;
  font-size: clamp(0.78rem, 1.3vw, 0.92rem);
  font-weight: 800;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
  text-shadow: 0 5px 22px rgba(0, 0, 0, 0.34);
}

.countdown {
  display: grid;
  grid-template-columns: repeat(4, minmax(4.2rem, 1fr));
  gap: 1px;
  overflow: hidden;
  border-radius: 1.25rem;
}

.countdown div {
  min-width: 4.5rem;
  padding: 1rem 0.9rem;
  text-align: center;
  background: linear-gradient(180deg, rgba(255, 248, 240, 0.18), rgba(153, 30, 43, 0.14));
}

.countdown strong {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.8rem, 4vw, 2.7rem);
  font-weight: 400;
  line-height: 1;
}

.countdown span {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.botanical {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  opacity: 0.24;
}

.botanical::before,
.botanical::after {
  content: "";
  position: absolute;
  display: block;
  border: 1px solid rgba(255, 248, 240, 0.72);
  border-radius: 100% 0 100% 0;
  transform-origin: 0 100%;
}

.botanical::before {
  width: 7.5rem;
  height: 2.1rem;
  transform: rotate(-12deg);
}

.botanical::after {
  width: 6.4rem;
  height: 1.8rem;
  left: 3.8rem;
  top: 2.2rem;
  transform: rotate(18deg);
}

.botanical-one {
  left: 4vw;
  bottom: 12vh;
  width: 13rem;
  height: 7rem;
  transform: rotate(-18deg);
}

.botanical-two {
  right: 8vw;
  top: 18vh;
  width: 9rem;
  height: 5rem;
  transform: rotate(14deg) scale(0.76);
}

.particles {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-image:
    radial-gradient(circle, rgba(255, 248, 240, 0.55) 0 1px, transparent 1.5px),
    radial-gradient(circle, rgba(199, 169, 123, 0.35) 0 1px, transparent 1.6px);
  background-position: 0 0, 30px 40px;
  background-size: 90px 90px, 130px 130px;
  animation: floatDust 24s linear infinite;
  opacity: 0.34;
}

@keyframes floatDust {
  to {
    transform: translate3d(0, -90px, 0);
  }
}

.section-heading {
  max-width: 52rem;
  margin: 0 auto clamp(3rem, 7vw, 5rem);
  text-align: center;
}

.script {
  margin-bottom: 0.2rem;
  color: var(--burgundy);
  font-family: var(--script);
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.14;
}

.section-heading h2,
.transport-card h2,
.location-card h2,
.footer h2 {
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7.5vw, 6.9rem);
  text-wrap: balance;
}

.section-heading p:not(.script),
.transport-card p,
.location-card p {
  max-width: 43rem;
  margin-inline: auto;
  color: var(--muted);
  font-size: clamp(1.08rem, 2vw, 1.26rem);
  line-height: 1.78;
}

.story .section-heading {
  max-width: 62rem;
}

.story .section-heading .script {
  margin-bottom: 0.6rem;
}

.story .section-heading h2 {
  max-width: 48rem;
  margin-inline: auto;
  font-size: clamp(3.15rem, 7vw, 5.35rem);
}

.story .section-heading p:not(.script) {
  max-width: 50rem;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.25fr 0.95fr;
  grid-auto-rows: minmax(17rem, auto);
  gap: clamp(1rem, 2vw, 1.5rem);
  max-width: 76rem;
  margin: 0 auto;
  align-items: stretch;
}

.story-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: 20rem;
  padding: clamp(1.5rem, 3vw, 2.4rem);
  border-radius: 1.2rem;
}

.story-card.muted {
  background: rgba(124, 139, 107, 0.12);
  border: 1px solid rgba(124, 139, 107, 0.18);
}

.story-card span {
  color: var(--burgundy);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.story-card h3 {
  margin: 0.8rem 0;
  font-size: 2.45rem;
}

.story-card p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.72;
}

.photo-tile {
  position: relative;
  min-height: 22rem;
  margin: 0;
  overflow: hidden;
  border-radius: 1.2rem;
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile img,
.location-media > img {
  height: 100%;
  object-fit: cover;
  transition: transform 1.15s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.8s ease;
}

.photo-tile:hover img {
  transform: scale(1.06);
  filter: saturate(0.92) contrast(1.04);
}

.timeline {
  background:
    linear-gradient(180deg, rgba(255, 248, 240, 0.34), rgba(245, 239, 228, 0)),
    var(--bg);
}

.timeline-track {
  position: relative;
  display: grid;
  gap: clamp(2.4rem, 6vw, 5rem);
  max-width: 72rem;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) 0;
}

.timeline-track::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(153, 30, 43, 0.34) 8%,
    rgba(153, 30, 43, 0.72) 50%,
    rgba(153, 30, 43, 0.34) 92%,
    transparent
  );
  transform: translateX(-50%);
}

.timeline-spine {
  position: sticky;
  top: 18vh;
  z-index: 1;
  width: 0.85rem;
  height: 62vh;
  margin: 0 auto -62vh;
  border-radius: 999px;
  background: linear-gradient(
    180deg,
    rgba(255, 248, 240, 0),
    rgba(153, 30, 43, 0.78),
    rgba(255, 248, 240, 0)
  );
  filter: blur(0.5px);
  opacity: 0.34;
  pointer-events: none;
}

.timeline-event {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 6rem minmax(0, 1fr);
  align-items: center;
  min-height: clamp(9rem, 18vw, 13rem);
}

.timeline-event::before {
  content: "";
  position: absolute;
  top: 50%;
  left: calc(50% - clamp(6rem, 11vw, 9.5rem));
  width: clamp(2.5rem, 7vw, 5.5rem);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(153, 30, 43, 0.5));
  transform: translateY(-50%);
}

.timeline-event-right::before {
  left: calc(50% + clamp(3rem, 5vw, 4rem));
  background: linear-gradient(90deg, rgba(153, 30, 43, 0.5), transparent);
}

.timeline-marker {
  position: sticky;
  top: 42vh;
  grid-column: 2 / 3;
  grid-row: 1;
  display: grid;
  place-items: center;
  width: clamp(4.7rem, 8vw, 6rem);
  height: clamp(4.7rem, 8vw, 6rem);
  border: 1px solid rgba(153, 30, 43, 0.32);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 25%, rgba(255, 248, 240, 0.95), rgba(255, 248, 240, 0.7)),
    var(--card);
  box-shadow: 0 22px 58px rgba(91, 70, 54, 0.16);
}

.timeline-marker img {
  width: 58%;
  height: 58%;
  object-fit: contain;
  filter: brightness(0) saturate(100%) invert(17%) sepia(57%) saturate(2673%) hue-rotate(337deg) brightness(89%) contrast(93%);
}

.timeline-panel {
  grid-column: 1 / 2;
  grid-row: 1;
  justify-self: end;
  width: min(25rem, 100%);
  padding: clamp(1.35rem, 3vw, 2rem);
  border: 1px solid rgba(153, 30, 43, 0.12);
  border-radius: 1rem;
  background:
    linear-gradient(180deg, rgba(255, 250, 244, 0.92), rgba(255, 248, 240, 0.72)),
    radial-gradient(circle at 100% 0%, rgba(153, 30, 43, 0.1), transparent 10rem);
  box-shadow: 0 20px 62px rgba(91, 70, 54, 0.1);
  text-align: right;
}

.timeline-event-right .timeline-panel {
  grid-column: 3 / 4;
  justify-self: start;
  text-align: left;
}

.timeline-panel time {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--burgundy);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.timeline-panel h3 {
  margin-bottom: 0;
  font-size: clamp(2.25rem, 5vw, 4.15rem);
}

.location {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(20rem, 0.85fr);
  gap: clamp(1rem, 3vw, 2rem);
  align-items: stretch;
}

.location-media {
  position: relative;
  min-height: 42rem;
  overflow: hidden;
  border-radius: 1.45rem;
}

.location-card {
  position: absolute;
  left: clamp(1rem, 4vw, 3rem);
  bottom: clamp(1rem, 4vw, 3rem);
  width: min(30rem, calc(100% - 2rem));
  padding: clamp(1.4rem, 4vw, 2.4rem);
  border-radius: 1.2rem;
}

.location-card .eyebrow {
  text-shadow: none;
}

.location-card h2 {
  max-width: 100%;
  font-size: clamp(2.9rem, 4.2vw, 4.35rem);
  line-height: 1.06;
  overflow-wrap: anywhere;
  text-wrap: balance;
}

address {
  margin: 1.2rem 0;
  color: var(--text);
  font-weight: 600;
  font-style: normal;
}

.map-panel {
  min-height: 42rem;
  overflow: hidden;
  border: 1px solid rgba(91, 70, 54, 0.12);
  border-radius: 1.45rem;
  box-shadow: var(--shadow);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  filter: sepia(0.36) saturate(0.56) brightness(0.96) contrast(0.98);
}

.transport-card {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.75fr);
  gap: clamp(2rem, 5vw, 5rem);
  max-width: 76rem;
  margin: 0 auto;
  padding: clamp(1.4rem, 4vw, 3.4rem);
  border-radius: 1.45rem;
  align-items: center;
}

.transport-card .script {
  font-size: clamp(3.4rem, 7.5vw, 5.25rem);
}

.transport-card h2 {
  color: var(--burgundy);
  font-size: clamp(2.55rem, 5.6vw, 4.9rem);
}

.transport-card figure {
  margin: 0;
  padding: 2rem;
  border-radius: 1rem;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 248, 240, 0.55), transparent 56%),
    rgba(245, 239, 228, 0.36);
}

.transport-card figure img {
  max-height: 21rem;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: saturate(0.9) contrast(1.05);
}

.transport-meta {
  display: grid;
  gap: 0.75rem;
  margin: 1.8rem 0;
}

.transport-meta span {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(91, 70, 54, 0.11);
  border-radius: 0.8rem;
  background: rgba(255, 255, 255, 0.38);
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.55;
}

.transport-meta strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--burgundy);
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.details {
  background:
    radial-gradient(circle at 15% 18%, rgba(153, 30, 43, 0.055), transparent 22rem),
    radial-gradient(circle at 86% 82%, rgba(124, 139, 107, 0.105), transparent 24rem),
    linear-gradient(180deg, rgba(255, 248, 240, 0), rgba(153, 30, 43, 0.035), rgba(255, 248, 240, 0));
}

.details .section-heading {
  margin-bottom: clamp(2rem, 5vw, 3.4rem);
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  max-width: 78rem;
  margin: 0 auto;
  align-items: stretch;
}

.details-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.details-grid-two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 55rem;
}

.detail-card {
  position: relative;
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  min-height: clamp(19rem, 28vw, 24rem);
  padding: clamp(1.45rem, 3vw, 2.25rem);
  border: 1px solid rgba(153, 30, 43, 0.13);
  border-radius: 0.95rem;
  background:
    linear-gradient(145deg, rgba(255, 253, 248, 0.96), rgba(255, 248, 240, 0.68)),
    radial-gradient(circle at 105% -5%, rgba(153, 30, 43, 0.12), transparent 10rem),
    radial-gradient(circle at -10% 100%, rgba(199, 169, 123, 0.14), transparent 12rem);
  box-shadow: 0 22px 62px rgba(91, 70, 54, 0.1);
  overflow: hidden;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.detail-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, rgba(153, 30, 43, 0.08), var(--burgundy), rgba(153, 30, 43, 0.08));
  opacity: 0.78;
}

.detail-card::after {
  content: attr(data-number);
  position: absolute;
  right: clamp(1.2rem, 2.5vw, 2rem);
  top: clamp(1rem, 2.5vw, 1.65rem);
  color: rgba(153, 30, 43, 0.12);
  font-family: var(--serif);
  font-size: clamp(3.8rem, 7vw, 5.6rem);
  line-height: 1;
}

.detail-card:hover {
  transform: translateY(-0.35rem);
  border-color: rgba(153, 30, 43, 0.25);
  box-shadow: 0 30px 78px rgba(91, 70, 54, 0.14);
}

.detail-card span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  width: fit-content;
  margin-bottom: clamp(2rem, 4vw, 3.1rem);
  padding-bottom: 0.55rem;
  color: var(--burgundy);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.detail-card span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 2.35rem;
  height: 1px;
  background: rgba(153, 30, 43, 0.42);
}

.detail-card h3 {
  position: relative;
  z-index: 1;
  max-width: 15rem;
  margin-bottom: 1rem;
  font-size: clamp(2.2rem, 3.6vw, 3.2rem);
  line-height: 1.05;
}

.detail-card p {
  position: relative;
  z-index: 1;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(0.98rem, 1.35vw, 1.08rem);
  line-height: 1.68;
}

.iban {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(153, 30, 43, 0.16);
  color: var(--burgundy) !important;
  font-weight: 800;
  letter-spacing: 0.055em;
  overflow-wrap: anywhere;
}

label {
  display: grid;
  gap: 0.45rem;
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

input,
select,
textarea {
  width: 100%;
  min-height: 3.3rem;
  border: 1px solid rgba(91, 70, 54, 0.14);
  border-radius: 0.9rem;
  background: rgba(255, 255, 255, 0.68);
  color: var(--text);
  outline: none;
  padding: 0.9rem 1rem;
  font-size: 1rem;
  line-height: 1.55;
  letter-spacing: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

textarea {
  min-height: 8.5rem;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: rgba(153, 30, 43, 0.58);
  background: #fffdf8;
  box-shadow: 0 0 0 4px rgba(153, 30, 43, 0.1);
}

::placeholder {
  color: rgba(71, 52, 38, 0.52);
}

.wide {
  grid-column: 1 / -1;
}

.form-note {
  grid-column: 1 / -1;
  margin: 0;
  color: var(--olive);
  font-weight: 700;
  text-align: center;
}

.playlist-shell {
  max-width: 64rem;
  margin: 0 auto;
}

.song-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.8rem;
  margin-bottom: 1rem;
}

.footer {
  padding: 4rem 1rem 5rem;
  text-align: center;
}

.footer img {
  width: 4rem;
  margin: 0 auto 1rem;
  mix-blend-mode: multiply;
  opacity: 0.62;
}

.footer h2 {
  margin-bottom: 0.2rem;
  font-size: clamp(3rem, 8vw, 6rem);
}

.footer p,
.footer span {
  color: var(--muted);
  font-size: 1.05rem;
}

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

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .countdown-wrap {
    left: 1rem;
    right: 1rem;
  }

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

  .editorial-grid,
  .location,
  .transport-card,
  .details-grid,
  .details-grid-two,
  .details-grid-three {
    grid-template-columns: 1fr;
  }

  .photo-tile.tall {
    grid-row: auto;
  }

  .timeline-track {
    gap: 1.5rem;
    max-width: 38rem;
    padding-left: 0.35rem;
  }

  .timeline-track::before {
    left: 2.6rem;
  }

  .timeline-spine {
    width: 0.65rem;
    margin: 0 auto -62vh 2.25rem;
  }

  .timeline-event,
  .timeline-event-right {
    grid-template-columns: 5.2rem minmax(0, 1fr);
    min-height: 0;
  }

  .timeline-event::before,
  .timeline-event-right::before {
    left: 2.55rem;
    width: 1.6rem;
    background: linear-gradient(90deg, transparent, rgba(153, 30, 43, 0.5));
  }

  .timeline-marker {
    position: relative;
    top: auto;
    grid-column: 1 / 2;
    width: 4.4rem;
    height: 4.4rem;
  }

  .timeline-panel,
  .timeline-event-right .timeline-panel {
    grid-column: 2 / 3;
    justify-self: stretch;
    text-align: left;
  }

  .location-media,
  .map-panel {
    min-height: 30rem;
  }

}

@media (max-width: 560px) {
  .hero {
    min-height: 96svh;
    place-items: center;
  }

  .hero-bg {
    object-position: center center;
  }

  .hero-content {
    transform: translateY(-2.5rem);
  }

  .hero-date {
    font-size: 0.92rem;
    letter-spacing: 0.08em;
  }

  .countdown {
    border-radius: 0.9rem;
  }

  .countdown div {
    min-width: 0;
    padding: 0.85rem 0.35rem;
  }

  .countdown span {
    font-size: 0.62rem;
    letter-spacing: 0.06em;
  }

  .section-pad {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .section-heading p:not(.script),
  .transport-card p,
  .location-card p,
  .story-card p,
  .detail-card p {
    font-size: 1rem;
    line-height: 1.72;
  }

  .timeline-track {
    padding-left: 0;
  }

  .timeline-track::before {
    left: 2.2rem;
  }

  .timeline-spine {
    display: none;
  }

  .timeline-event,
  .timeline-event-right {
    grid-template-columns: 4.6rem minmax(0, 1fr);
  }

  .timeline-marker {
    width: 3.9rem;
    height: 3.9rem;
  }

  .timeline-panel {
    padding: 1.1rem;
    border-radius: 0.9rem;
  }

  .timeline-panel h3 {
    font-size: 2.25rem;
  }

  .button {
    width: 100%;
    max-width: 22rem;
    font-size: 0.82rem;
  }

  .location-card .button {
    width: auto;
  }

  .story-card,
  .transport-card {
    border-radius: 1rem;
  }

  .song-form {
    grid-template-columns: 1fr;
  }
}

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

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