:root {
  --bg: #0d0c0b;
  --surface: #171513;
  --surface-strong: #211916;
  --text: #fff8ed;
  --muted: #c8b9a7;
  --line: rgba(255, 248, 237, 0.16);
  --accent: #d6a13f;
  --accent-dark: #7a1c2a;
  --accent-cool: #285d63;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  --header-height: 80px;
  --font-base: "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-display: Georgia, "Times New Roman", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-base);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 18px 6vw;
  color: var(--text);
  background: linear-gradient(rgba(5, 5, 5, 0.72), rgba(5, 5, 5, 0));
  transition: min-height 220ms ease, padding 220ms ease, background 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  min-height: 64px;
  padding-top: 10px;
  padding-bottom: 10px;
  background: rgba(13, 12, 11, 0.88);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
}

.brand-name {
  color: rgba(255, 248, 237, 0.94);
  font-size: 1rem;
  font-weight: 750;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 248, 237, 0.82);
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 180ms ease, color 180ms ease;
}

.nav-links a:hover,
.nav-links a.is-active {
  color: var(--text);
  background: rgba(255, 248, 237, 0.12);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transform-origin: center;
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 100svh;
  overflow: hidden;
  display: grid;
  align-items: end;
  padding: 140px 6vw 82px;
  isolation: isolate;
}

.hero-media,
.hero-media img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -3;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.88) 0%, rgba(8, 7, 6, 0.58) 36%, rgba(8, 7, 6, 0.18) 68%),
    linear-gradient(0deg, rgba(13, 12, 11, 0.88) 0%, rgba(13, 12, 11, 0.08) 46%, rgba(13, 12, 11, 0.46) 100%);
}

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

.eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  margin: 0;
  font-family: var(--font-display);
  font-size: 5.2rem;
  line-height: 0.98;
  font-weight: 700;
}

.hero-copy {
  max-width: 560px;
  margin: 22px 0 0;
  color: rgba(255, 248, 237, 0.86);
  font-size: 1.25rem;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 158px;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 6px;
  font-size: 0.92rem;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

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

.button-primary {
  color: #17100a;
  background: var(--accent);
}

.button-secondary {
  color: var(--text);
  border: 1px solid rgba(255, 248, 237, 0.34);
  background: rgba(255, 248, 237, 0.08);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
}

.hero-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 248, 237, 0.22);
  border-radius: 999px;
  color: rgba(255, 248, 237, 0.78);
  background: rgba(13, 12, 11, 0.36);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.scroll-cue {
  position: absolute;
  right: 6vw;
  bottom: 44px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(255, 248, 237, 0.28);
  border-radius: 999px;
  background: rgba(13, 12, 11, 0.34);
}

.scroll-cue span {
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--text);
  border-bottom: 2px solid var(--text);
  transform: translateY(-3px) rotate(45deg);
  animation: cue 1.5s ease-in-out infinite;
}

.section {
  padding: 104px 6vw;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 42px;
}

.section-heading h2,
.music-copy h2,
.video-copy h2,
.story-copy h2 {
  margin: 0;
  font-size: 3rem;
  line-height: 1;
}

.section-heading p:not(.eyebrow),
.music-copy p:not(.eyebrow),
.video-copy p:not(.eyebrow),
.story-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.05rem;
}

.agenda-section {
  background:
    linear-gradient(180deg, #0d0c0b 0%, #151211 100%);
  border-bottom: 1px solid var(--line);
}

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

.event-card {
  display: grid;
  min-height: 250px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(150deg, rgba(255, 248, 237, 0.08), rgba(122, 28, 42, 0.14));
}

.event-card time {
  align-self: start;
  width: fit-content;
  padding: 7px 10px;
  border-radius: 6px;
  color: #14100d;
  background: var(--accent);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-card h3 {
  margin: 28px 0 8px;
  font-size: 1.4rem;
}

.event-card p {
  margin: 0;
  color: var(--muted);
}

.event-card a {
  align-self: end;
  width: fit-content;
  margin-top: 24px;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
}

.music-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
  gap: 48px;
  align-items: center;
  background: var(--surface);
}

.music-copy {
  max-width: 620px;
}

.platforms {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 30px;
}

.platforms a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 0 18px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: rgba(255, 248, 237, 0.05);
  font-weight: 900;
  transition: background 180ms ease, transform 180ms ease;
}

.platforms a::after {
  content: "";
  width: 9px;
  height: 9px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.platforms a:hover {
  background: rgba(214, 161, 63, 0.14);
  transform: translateY(-2px);
}

.feature-photo,
.story-photo,
.photo-card {
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.feature-photo {
  position: relative;
  aspect-ratio: 3 / 2;
}

.feature-photo img,
.story-photo img,
.photo-card img,
.video-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms ease;
}

.feature-photo:hover img,
.photo-card:hover img,
.video-card:hover img {
  transform: scale(1.035);
}

.feature-photo figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--text);
  background: rgba(13, 12, 11, 0.72);
  font-size: 0.82rem;
  font-weight: 900;
}

.video-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.62fr) minmax(0, 1.38fr);
  gap: 48px;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(40, 93, 99, 0.34), rgba(122, 28, 42, 0.18)),
    var(--bg);
}

.video-copy {
  max-width: 460px;
}

.video-card {
  position: relative;
  display: block;
  min-height: 390px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  box-shadow: var(--shadow);
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(13, 12, 11, 0.78), rgba(13, 12, 11, 0.06) 54%);
}

.play-button {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  display: grid;
  width: 78px;
  height: 78px;
  place-items: center;
  border-radius: 999px;
  background: var(--accent);
  transform: translate(-50%, -50%);
}

.play-button::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 5px;
  border-top: 13px solid transparent;
  border-bottom: 13px solid transparent;
  border-left: 20px solid #18100a;
}

.video-label {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 22px;
  font-weight: 900;
  text-transform: uppercase;
}

.story-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  background: var(--surface);
}

.story-photo {
  aspect-ratio: 2 / 3;
}

.story-copy {
  max-width: 600px;
}

.gallery-section {
  background: #0f0d0c;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 16px;
}

.photo-card {
  box-shadow: none;
}

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

.photo-card.wide {
  grid-column: span 2;
}

.site-footer {
  padding: 80px 6vw 34px;
  background: #080706;
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 42px;
  border-bottom: 1px solid var(--line);
}

.footer-brand span {
  color: var(--accent);
  font-size: 6rem;
  line-height: 0.9;
  font-weight: 900;
}

.footer-brand p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 42px 0;
}

.contact-block h2 {
  margin: 0 0 12px;
  color: var(--muted);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.contact-block a {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  color: var(--text);
  font-size: 1.05rem;
  font-weight: 800;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.copyright {
  margin: 0;
  color: rgba(255, 248, 237, 0.55);
  font-size: 0.88rem;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes cue {
  0%,
  100% {
    transform: translateY(-3px) rotate(45deg);
  }

  50% {
    transform: translateY(3px) rotate(45deg);
  }
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 4.3rem;
  }

  .music-section,
  .video-section,
  .story-section {
    grid-template-columns: 1fr;
  }

  .video-copy,
  .music-copy,
  .story-copy {
    max-width: 760px;
  }

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

@media (max-width: 760px) {
  :root {
    --header-height: 68px;
  }

  .site-header {
    padding: 12px 20px;
  }

  .brand-name {
    font-size: 0.82rem;
    letter-spacing: 0.02em;
  }

  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    top: 68px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(13, 12, 11, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
    backdrop-filter: blur(16px);
  }

  .nav-links.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a {
    min-height: 46px;
    border-radius: 6px;
  }

  .hero {
    min-height: 94svh;
    padding: 112px 20px 68px;
  }

  .hero-media img {
    object-position: center center;
  }

  .hero-shade {
    background:
      linear-gradient(0deg, rgba(13, 12, 11, 0.92) 0%, rgba(13, 12, 11, 0.38) 58%, rgba(13, 12, 11, 0.62) 100%);
  }

  .hero h1 {
    font-size: 3.05rem;
  }

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

  .button {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 78px 20px;
  }

  .section-heading h2,
  .music-copy h2,
  .video-copy h2,
  .story-copy h2 {
    font-size: 2.25rem;
  }

  .event-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .event-card {
    min-height: 220px;
  }

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

  .video-card {
    min-height: 280px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
  }

  .photo-card,
  .photo-card.tall,
  .photo-card.wide {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 5;
  }

  .footer-brand {
    display: block;
  }

  .footer-brand span {
    font-size: 4rem;
  }
}

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

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