:root {
  --bg: #080808;
  --ink: #f7f1e8;
  --muted: #b8aea1;
  --line: rgba(247, 241, 232, 0.18);
  --hot: #ff4d6d;
  --lime: #d9ff3f;
  --panel: #141414;
  --font-display: "Anton", Impact, sans-serif;
  --font-body: "Inter", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
}

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

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

.music-player {
  position: fixed;
  right: clamp(16px, 3vw, 34px);
  bottom: clamp(16px, 3vw, 34px);
  z-index: 40;
}

.music-toggle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 16px 10px 12px;
  border: 1px solid rgba(8, 8, 8, 0.18);
  border-radius: 999px;
  background: var(--ink);
  color: var(--bg);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
  cursor: pointer;
  font: 900 0.72rem/1 var(--font-body);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.music-toggle:hover {
  background: var(--lime);
}

.music-toggle[aria-pressed="true"] {
  background: var(--hot);
}

.music-icon {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: var(--bg);
  color: var(--ink);
  font-size: 1rem;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 4vw, 56px);
  color: var(--ink);
  mix-blend-mode: difference;
}

.brand {
  font-family: var(--font-display);
  font-size: clamp(1.55rem, 4vw, 3.25rem);
  line-height: 0.9;
}

.nav-links {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 110px clamp(18px, 5vw, 72px) 48px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 8, 8, 0.9), rgba(8, 8, 8, 0.18) 50%, rgba(8, 8, 8, 0.72)),
    linear-gradient(0deg, rgba(8, 8, 8, 0.95), transparent 46%);
  pointer-events: none;
}

.hero-media {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 1fr;
  gap: 6px;
  opacity: 0.92;
}

.hero-media img:nth-child(2) {
  object-position: center top;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 920px;
}

.eyebrow,
.section-label,
figcaption {
  margin: 0;
  color: var(--lime);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-top: 12px;
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: 0.82;
}

h2 {
  font-size: clamp(3.5rem, 10vw, 10rem);
  line-height: 0.88;
}

.hero-text {
  max-width: 640px;
  margin: 22px 0 0;
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.35;
}

.scroll-cue {
  position: absolute;
  right: clamp(18px, 5vw, 72px);
  bottom: 48px;
  z-index: 3;
  display: grid;
  gap: 12px;
  justify-items: end;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.scroll-cue .line {
  width: 92px;
  height: 2px;
  background: var(--hot);
}

.countdown-section,
.story-section,
.gallery-section,
.message-section,
.split-section {
  padding: clamp(72px, 10vw, 150px) clamp(18px, 5vw, 72px);
}

.countdown-section {
  display: grid;
  gap: 22px;
  background: var(--ink);
  color: var(--bg);
}

.countdown-section .eyebrow,
.countdown-section .section-label {
  color: #cf1741;
}

.countdown-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  border-top: 3px solid var(--bg);
  padding-top: 28px;
}

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

.countdown article {
  min-height: 150px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  background: var(--bg);
  color: var(--ink);
}

.countdown strong {
  font-family: var(--font-display);
  font-size: clamp(3.25rem, 7vw, 7rem);
  font-weight: 400;
  line-height: 0.9;
}

.countdown span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.story-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 7vw, 96px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.story-copy {
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.55rem);
  font-weight: 600;
  line-height: 1.45;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  min-height: 78vh;
  padding: 6px;
}

.feature-strip figure {
  position: relative;
  min-height: 420px;
  margin: 0;
  overflow: hidden;
}

.feature-strip figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  color: var(--ink);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 90px);
  align-items: center;
}

.split-image {
  height: min(82vh, 760px);
}

.split-copy p:last-child,
.message-frame p:last-child {
  max-width: 720px;
  color: var(--muted);
  font-size: clamp(1rem, 1.6vw, 1.35rem);
  font-weight: 700;
  line-height: 1.55;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: clamp(220px, 28vw, 440px);
  gap: 6px;
}

.photo-grid img:nth-child(1),
.photo-grid img:nth-child(6) {
  grid-row: span 2;
}

.photo-grid img:nth-child(4) {
  grid-column: span 2;
}

.message-section {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: stretch;
  background: var(--panel);
}

.message-frame {
  display: grid;
  align-content: center;
  min-height: 620px;
  border: 1px solid var(--line);
  padding: clamp(24px, 4vw, 54px);
}

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

.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: var(--hot);
  color: var(--bg);
}

.marquee-track {
  width: max-content;
  display: flex;
  gap: 34px;
  padding: 16px 0;
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 6vw, 5.5rem);
  line-height: 0.95;
  text-transform: uppercase;
  animation: marquee 22s linear infinite;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(18px, 5vw, 72px);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 920px) {
  .site-header {
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 290px;
  }

  .hero-media {
    grid-template-columns: 1fr;
  }

  .hero-media img:not(:first-child) {
    display: none;
  }

  .scroll-cue {
    position: relative;
    right: auto;
    bottom: auto;
    justify-items: start;
    margin-top: 34px;
  }

  .countdown-card,
  .story-section,
  .split-section,
  .message-section {
    grid-template-columns: 1fr;
  }

  .feature-strip,
  .photo-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feature-strip {
    min-height: auto;
  }

  .section-heading {
    display: grid;
  }
}

@media (max-width: 620px) {
  .site-header {
    position: absolute;
    mix-blend-mode: normal;
  }

  .nav-links {
    display: none;
  }

  .hero {
    min-height: 92svh;
  }

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

  .countdown article {
    min-height: 128px;
  }

  .feature-strip,
  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-grid {
    grid-auto-rows: 420px;
  }

  .photo-grid img:nth-child(1),
  .photo-grid img:nth-child(4),
  .photo-grid img:nth-child(6) {
    grid-column: auto;
    grid-row: auto;
  }

  .split-image,
  .message-photo,
  .message-frame {
    min-height: 480px;
    height: auto;
  }

  .site-footer {
    display: grid;
  }

  .music-player {
    right: 14px;
    bottom: 14px;
  }

  .music-text {
    display: none;
  }

  .music-toggle {
    min-width: 50px;
    padding: 10px;
  }
}
