:root {
  --bg: #040404;
  --bg-soft: #0b0b0b;
  --panel: rgba(14, 14, 14, 0.82);
  --panel-strong: rgba(20, 20, 20, 0.94);
  --ink: #f6efe3;
  --muted: #c9beaf;
  --gold: #d5934d;
  --gold-soft: #f3c68f;
  --copper: #a54f24;
  --blue: #1c5f8e;
  --blue-soft: #5aa5d8;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(255, 255, 255, 0.28);
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.36);
  --radius-xl: 34px;
  --radius-lg: 28px;
  --radius-md: 18px;
  --container: min(1240px, calc(100vw - 2.4rem));
  --header-width: min(980px, calc(100vw - 2.4rem));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7rem;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at 14% 10%, rgba(28, 95, 142, 0.22), transparent 24%),
    radial-gradient(circle at 88% 16%, rgba(213, 147, 77, 0.18), transparent 28%),
    radial-gradient(circle at 58% 78%, rgba(165, 79, 36, 0.15), transparent 22%),
    linear-gradient(180deg, #020202 0%, #060606 48%, #090807 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.016) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.016) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent 92%);
}

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

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

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

.page-shell {
  position: relative;
  overflow: clip;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: fixed;
  top: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 40;
  width: var(--header-width);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 0.45rem;
  padding: 0.58rem 0.84rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  backdrop-filter: none;
  background: #000;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.18);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.site-nav-left {
  justify-content: flex-end;
}

.site-nav-right {
  justify-content: flex-start;
}

.site-nav a,
.eyebrow,
.section-tag,
.hero-social a,
.contact-card span,
.inline-link {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.site-nav a {
  color: var(--muted);
  line-height: 1.04;
  transition: color 220ms ease, opacity 220ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--gold-soft);
}

.brand {
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: min(9.6rem, 21vw);
  object-fit: contain;
}

main {
  width: 100%;
}

section {
  padding: 6.5rem 0;
}

.hero {
  position: relative;
  width: 100vw;
  min-height: 100svh;
  margin-left: calc(50% - 50vw);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #020202;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at var(--pointer-x, 18%) var(--pointer-y, 22%), rgba(243, 198, 143, 0.2), transparent 22%),
    linear-gradient(90deg, rgba(2, 2, 2, 0.72) 0%, rgba(2, 2, 2, 0.38) 46%, rgba(2, 2, 2, 0.7) 100%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.18) 0%, rgba(0, 0, 0, 0.18) 48%, rgba(0, 0, 0, 0.82) 100%);
  z-index: 1;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 18%, rgba(28, 95, 142, 0.38), transparent 24%),
    radial-gradient(circle at 72% 44%, rgba(213, 147, 77, 0.32), transparent 20%);
  mix-blend-mode: screen;
  opacity: 0.7;
  z-index: 1;
}

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

.hero-backdrop img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0.7;
  filter: saturate(1.08) contrast(1.08) brightness(0.82);
}

.hero-inner,
.hero-footer,
.hero-social {
  position: relative;
  z-index: 2;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(380px, 0.92fr);
  gap: 1rem;
  align-items: center;
  width: 100%;
  padding-top: 7.4rem;
  padding-inline: clamp(1.2rem, 4vw, 4.8rem);
  padding-bottom: 8.4rem;
}

.hero-copy {
  max-width: 44rem;
  transform: translateY(-2.2rem);
}

.eyebrow,
.section-tag,
.contact-card span,
.inline-link {
  color: var(--gold-soft);
}

.hero h1,
.story h2,
.showcase h2,
.gallery h2,
.contact h2 {
  margin: 0;
  font-family: "League Spartan", sans-serif;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 8ch;
  font-size: clamp(2.4rem, 5.4vw, 4.8rem);
  text-shadow: 0 10px 34px rgba(0, 0, 0, 0.32);
}

.lead,
.story-copy p,
.showcase-lead,
.poster-copy p,
.contact-lead {
  color: var(--muted);
  line-height: 1.78;
}

.lead {
  max-width: 34rem;
  margin: 1rem 0 0;
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-top: 1.9rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.35rem;
  padding: 0.9rem 1.4rem;
  border-radius: 14px;
  border: 1px solid transparent;
  font-size: 0.88rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease,
    color 220ms ease,
    box-shadow 220ms ease;
}

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

.button-primary {
  color: #150d07;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--copper));
  box-shadow: 0 20px 40px rgba(213, 147, 77, 0.22);
}

.button-secondary {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: rgba(243, 198, 143, 0.45);
  background: rgba(243, 198, 143, 0.08);
}

.hero-band {
  margin: 0;
  justify-self: end;
  align-self: center;
  width: min(100%, 48rem);
  transform: translateY(2rem);
}

.hero-band img {
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 34px 65px rgba(0, 0, 0, 0.52)) saturate(1.08);
}

.hero-social {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.hero-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(243, 198, 143, 0.2);
  background: rgba(213, 147, 77, 0.86);
  color: #110b07;
}

.hero-footer {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(7, 7, 7, 0.5), rgba(7, 7, 7, 0.78));
  backdrop-filter: blur(12px);
}

.hero-footer-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  padding: 1.2rem 0 1.3rem;
}

.hero-stat {
  padding-right: 1rem;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  margin-bottom: 0.3rem;
  font-family: "League Spartan", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-stat span {
  color: var(--muted);
  line-height: 1.6;
}

.marquee-bar {
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(8, 8, 8, 0.88);
}

.marquee-track {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  padding: 1rem 0;
  animation: marquee 26s linear infinite;
}

.marquee-track span {
  position: relative;
  padding-left: 1rem;
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--gold-soft);
}

.marquee-track span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 0.34rem;
  height: 0.34rem;
  border-radius: 999px;
  background: currentColor;
  transform: translateY(-50%);
}

.story {
  padding-top: 7rem;
}

.story-layout,
.showcase-layout,
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 2rem;
  align-items: center;
}

.story h2,
.showcase h2,
.gallery h2,
.contact h2 {
  font-size: clamp(2.35rem, 5.1vw, 5rem);
}

.story-copy p,
.showcase-lead,
.contact-lead {
  max-width: 42rem;
}

.story-copy p {
  margin: 1.1rem 0 0;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-top: 1.65rem;
  padding: 0.92rem 1.34rem;
  border: 1px solid rgba(243, 198, 143, 0.44);
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold), var(--copper));
  color: #120b07;
  letter-spacing: 0.14em;
  box-shadow: 0 18px 40px rgba(213, 147, 77, 0.26);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    filter 220ms ease;
}

.inline-link::after {
  content: ">>";
  font-size: 0.7rem;
  letter-spacing: 0.12em;
}

.inline-link:hover,
.inline-link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 24px 46px rgba(213, 147, 77, 0.34);
  filter: saturate(1.08);
}

.inline-link:focus-visible {
  outline: 2px solid rgba(243, 198, 143, 0.52);
  outline-offset: 3px;
}

.story-video {
  width: 100%;
  max-width: 22rem;
  margin-top: 1.4rem;
}

.story-video-tag {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--gold-soft);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.story-video-frame {
  position: relative;
  height: 0;
  padding-top: 177.7778%;
  overflow: hidden;
  border: 1px solid rgba(243, 198, 143, 0.18);
  border-radius: 24px;
  background:
    radial-gradient(circle at top, rgba(213, 147, 77, 0.2), transparent 34%),
    rgba(7, 7, 7, 0.96);
  box-shadow: var(--shadow);
}

.story-video-frame iframe {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #000;
}

.story-stack {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem;
}

.story-photo,
.showcase-stage,
.poster-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: var(--panel);
}

.story-photo {
  min-height: 17rem;
}

.story-photo-large {
  grid-row: span 2;
  min-height: 36rem;
}

.story-photo img,
.showcase-stage img,
.contact-art img,
.poster-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.story-photo img,
.poster-card img {
  object-position: center top;
}

.showcase {
  background:
    radial-gradient(circle at 20% 22%, rgba(28, 95, 142, 0.14), transparent 26%),
    radial-gradient(circle at 84% 20%, rgba(213, 147, 77, 0.14), transparent 30%);
}

.showcase-stage {
  min-height: 40rem;
}

.showcase-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.7));
}

.showcase-stage figcaption {
  position: absolute;
  left: 1.3rem;
  right: 1.3rem;
  bottom: 1.25rem;
  z-index: 1;
  color: var(--ink);
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.35;
  text-transform: uppercase;
}

.showcase-lead {
  margin: 1.2rem 0 0;
}

.showcase-cards {
  display: grid;
  gap: 0.95rem;
  margin-top: 2rem;
}

.show-card {
  padding: 1.25rem 1.25rem 1.35rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.025);
}

.show-card span {
  display: inline-block;
  margin-bottom: 0.7rem;
  color: var(--gold);
  font-family: "League Spartan", sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.2em;
}

.show-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.2rem;
}

.show-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.gallery-header {
  display: grid;
  gap: 0.85rem;
  margin-bottom: 2rem;
}

.carousel {
  display: grid;
  gap: 1.4rem;
}

.carousel:focus-visible {
  outline: 2px solid rgba(243, 198, 143, 0.44);
  outline-offset: 0.34rem;
}

.carousel.is-dragging {
  user-select: none;
}

.carousel-viewport {
  overflow: hidden;
  cursor: grab;
  touch-action: pan-y;
  border-radius: var(--radius-lg);
}

.carousel-track {
  display: flex;
  gap: 1.25rem;
  transform: translate3d(0, 0, 0);
  transition: transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
  backface-visibility: hidden;
}

.carousel-track.is-animating {
  pointer-events: none;
}

.carousel-track.is-dragging {
  transition: none !important;
  cursor: grabbing;
}

.carousel-track.is-static {
  transition: none;
}

.poster-card {
  flex: 0 0 min(29rem, calc(100vw - 3.4rem));
  min-height: 34rem;
  border-color: var(--line-strong);
  transition: opacity 700ms ease;
}

.poster-card img {
  height: 100%;
  transition: transform 1100ms cubic-bezier(0.22, 0.61, 0.36, 1);
  will-change: transform;
}

.carousel-track.is-animating .poster-card {
  opacity: 0.92;
}

.carousel-track.is-animating .poster-card img {
  transform: scale(1.008);
}

.carousel-track.is-animating .poster-card.is-active {
  opacity: 1;
  filter: none;
}

.poster-copy {
  position: absolute;
  inset: auto 0 0;
  padding: 4.5rem 1.15rem 1.15rem;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.82) 48%, rgba(0, 0, 0, 0.98));
}

.poster-copy h3 {
  margin: 0 0 0.4rem;
  font-family: "League Spartan", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.poster-copy p {
  margin: 0;
  font-size: 0.95rem;
}

.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}

.carousel-progress {
  min-width: 4.8rem;
  margin: 0;
  color: var(--muted);
  font-family: "League Spartan", sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-align: center;
  text-transform: uppercase;
}

.carousel-button {
  width: 3.6rem;
  height: 3.6rem;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: #efe6d6;
  color: #120d08;
  cursor: pointer;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.carousel-button:hover,
.carousel-button:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(243, 198, 143, 0.6);
  background: var(--gold-soft);
}

.carousel-button:active {
  transform: scale(0.96);
}

.carousel-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}

.carousel-dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
}

.carousel-dot {
  width: 0.72rem;
  height: 0.72rem;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: transform 220ms ease, background-color 220ms ease;
}

.carousel-dot.is-active {
  transform: scale(1.2);
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
}

.contact-shell {
  position: relative;
  padding: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(213, 147, 77, 0.18), transparent 26%),
    radial-gradient(circle at 16% 80%, rgba(28, 95, 142, 0.16), transparent 22%),
    rgba(8, 8, 8, 0.92);
  overflow: hidden;
}

.contact-art {
  margin: 0;
  align-self: end;
}

.contact-art img {
  object-fit: contain;
  filter: drop-shadow(0 26px 55px rgba(0, 0, 0, 0.45));
}

.contact-content {
  position: relative;
  z-index: 1;
  justify-self: end;
  max-width: 42rem;
}

.contact-lead {
  margin: 1.15rem 0 0;
}

.contact-grid {
  display: grid;
  gap: 0.8rem;
  margin: 2rem 0;
}

.contact-card {
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-card a {
  display: block;
  margin-top: 0.35rem;
  font-family: "League Spartan", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 700;
  letter-spacing: 0.05em;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.7rem 1.4rem;
  padding: 1.5rem 0 2rem;
  color: var(--muted);
  font-size: 0.92rem;
}

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

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

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1100px) {
  .site-header {
    grid-template-columns: 1fr;
    border-radius: 24px;
    gap: 0.65rem;
  }

  .brand {
    order: -1;
  }

  .site-nav {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-inner,
  .story-layout,
  .showcase-layout,
  .contact-shell {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    gap: 2rem;
    padding-bottom: 11rem;
  }

  .hero-band {
    justify-self: center;
    width: min(100%, 34rem);
    transform: none;
  }

  .hero-copy,
  .contact-content {
    max-width: none;
  }

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

  .hero-stat {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding-bottom: 1rem;
  }

  .hero-stat:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .story-stack {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 780px) {
  html {
    scroll-padding-top: 9rem;
  }

  .container {
    width: min(100vw - 1.25rem, 100%);
  }

  .site-header {
    top: 0.6rem;
    padding: 0.66rem;
  }

  .site-nav {
    gap: 0.8rem 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 11rem;
    padding-bottom: 13rem;
    padding-inline: 1.2rem;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-copy {
    transform: none;
  }

  .hero-social {
    right: auto;
    left: 50%;
    bottom: 9.5rem;
    top: auto;
    transform: translateX(-50%);
    flex-direction: row;
  }

  .story-photo-large {
    grid-row: auto;
    min-height: 22rem;
  }

  .story-photo,
  .showcase-stage,
  .poster-card {
    min-height: 22rem;
  }

  .showcase-stage figcaption {
    font-size: 0.92rem;
  }

  .carousel-controls {
    gap: 0.7rem;
  }

  .carousel-button {
    width: 3.1rem;
    height: 3.1rem;
  }

  .contact-shell {
    padding: 1.3rem;
  }

  .contact-art {
    order: 2;
    justify-self: center;
    width: min(100%, 24rem);
  }
}

@media (max-width: 560px) {
  section {
    padding: 4.5rem 0;
  }

  .site-nav a,
  .eyebrow,
  .section-tag,
  .hero-social a,
  .contact-card span,
  .inline-link {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
  }

  .hero h1,
  .story h2,
  .showcase h2,
  .gallery h2,
  .contact h2 {
    font-size: clamp(2.35rem, 13vw, 3.8rem);
    letter-spacing: 0.04em;
  }

  .lead,
  .story-copy p,
  .showcase-lead,
  .contact-lead,
  .poster-copy p {
    font-size: 0.96rem;
  }

  .hero-inner {
    padding-top: 10.4rem;
  }

  .hero-band {
    width: min(100%, 22rem);
  }

  .story-stack {
    grid-template-columns: 1fr;
  }

  .carousel-controls {
    flex-wrap: wrap;
  }

  .carousel-progress {
    order: 3;
    width: 100%;
  }

  .poster-card {
    flex-basis: calc(100vw - 1.3rem);
  }

  .poster-copy {
    padding-top: 3.6rem;
  }

  .site-footer {
    padding-bottom: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

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