@import url("https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Space+Grotesk:wght@400;500;600;700&display=swap");

:root {
  --ink: #090a0d;
  --ink-soft: #101218;
  --paper: #eeece7;
  --paper-deep: #dbd8d1;
  --white: #fafafa;
  --muted: #a5a7af;
  --electric: #6975ff;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(9, 10, 13, 0.18);
  --max: 1440px;
  --gutter: clamp(1.25rem, 4vw, 5rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: var(--ink);
  color: var(--white);
  font-family: "DM Sans", sans-serif;
  margin: 0;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  background: var(--electric);
  left: 1rem;
  padding: 0.75rem 1rem;
  position: fixed;
  top: -5rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  align-items: center;
  display: flex;
  height: 86px;
  justify-content: space-between;
  left: 0;
  padding: 0 var(--gutter);
  position: fixed;
  right: 0;
  top: 0;
  transition: background 220ms ease, height 220ms ease;
  z-index: 20;
}

.site-header.is-scrolled {
  backdrop-filter: blur(14px);
  background: rgba(9, 10, 13, 0.88);
  border-bottom: 1px solid var(--line-dark);
  height: 70px;
}

.brand {
  height: 62px;
  width: 62px;
}

.brand img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.site-nav {
  align-items: center;
  display: flex;
  gap: clamp(1rem, 2.5vw, 2.5rem);
}

.site-nav a {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-nav a:not(.nav-cta) {
  position: relative;
}

.site-nav a:not(.nav-cta)::after {
  background: var(--electric);
  bottom: -0.4rem;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
  width: 100%;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-cta {
  border: 1px solid var(--white);
  padding: 0.75rem 1rem;
  transition: background 180ms ease, color 180ms ease;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--white);
  color: var(--ink);
}

.menu-toggle {
  background: none;
  border: 0;
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.72fr);
  min-height: 100svh;
  overflow: hidden;
  padding: 8.5rem var(--gutter) 4rem;
  position: relative;
}

.hero::before {
  background: radial-gradient(circle, rgba(105, 117, 255, 0.22), transparent 64%);
  content: "";
  height: 55vw;
  left: -26vw;
  max-height: 800px;
  position: absolute;
  top: 12%;
  width: 55vw;
}

.hero-copy {
  align-self: center;
  max-width: 770px;
  padding-right: clamp(1rem, 5vw, 6rem);
  position: relative;
  z-index: 2;
}

.eyebrow {
  align-items: center;
  display: flex;
  font-size: 0.72rem;
  font-weight: 700;
  gap: 0.75rem;
  letter-spacing: 0.24em;
  margin: 0 0 1.75rem;
  text-transform: uppercase;
}

.eyebrow::before {
  background: var(--electric);
  content: "";
  height: 2px;
  width: 2.5rem;
}

.hero-logo {
  display: none;
}

h1,
h2,
h3,
blockquote {
  font-family: "Space Grotesk", sans-serif;
}

h1 {
  font-size: clamp(3.5rem, 6.8vw, 8.25rem);
  letter-spacing: -0.065em;
  line-height: 0.88;
  margin: 0;
  max-width: 9ch;
}

.hero-intro {
  color: #c2c3c9;
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.6;
  margin: 2rem 0 2.5rem;
  max-width: 42rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button {
  align-items: center;
  border: 1px solid transparent;
  display: inline-flex;
  font-size: 0.78rem;
  font-weight: 700;
  justify-content: center;
  letter-spacing: 0.14em;
  min-height: 52px;
  padding: 0.9rem 1.4rem;
  text-decoration: none;
  text-transform: uppercase;
  transition: background 180ms ease, border 180ms ease, color 180ms ease, transform 180ms ease;
}

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

.button-primary {
  background: var(--electric);
  color: var(--white);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #7e88ff;
}

.button-ghost {
  border-color: var(--line-dark);
}

.button-ghost:hover,
.button-ghost:focus-visible {
  border-color: var(--white);
}

.hero-portrait {
  align-self: stretch;
  margin: 0;
  min-height: 650px;
  overflow: hidden;
  position: relative;
}

.hero-portrait::after {
  background: linear-gradient(90deg, rgba(9, 10, 13, 0.65), transparent 35%);
  content: "";
  inset: 0;
  pointer-events: none;
  position: absolute;
}

.hero-portrait img {
  filter: saturate(0.7) contrast(1.06);
  height: 100%;
  object-fit: cover;
  object-position: 50% 24%;
  width: 100%;
}

.hero-portrait figcaption {
  bottom: 1.2rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  position: absolute;
  right: 1.2rem;
  text-transform: uppercase;
  z-index: 2;
}

.scroll-cue {
  align-items: center;
  bottom: 2rem;
  display: flex;
  font-size: 0.66rem;
  gap: 0.75rem;
  left: var(--gutter);
  letter-spacing: 0.16em;
  position: absolute;
  text-decoration: none;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.scroll-cue i {
  background: var(--line-dark);
  height: 56px;
  overflow: hidden;
  position: relative;
  width: 1px;
}

.scroll-cue i::after {
  animation: scroll-line 1.8s ease-in-out infinite;
  background: var(--white);
  content: "";
  height: 28px;
  left: 0;
  position: absolute;
  top: -28px;
  width: 1px;
}

@keyframes scroll-line {
  to { transform: translateY(84px); }
}

.marquee {
  background: var(--electric);
  color: var(--white);
  overflow: hidden;
  padding: 1.15rem 0;
}

.marquee > div {
  align-items: center;
  animation: marquee 22s linear infinite;
  display: flex;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.15rem, 2vw, 1.75rem);
  font-weight: 600;
  gap: 2rem;
  letter-spacing: -0.025em;
  min-width: max-content;
  text-transform: uppercase;
}

.marquee i {
  background: var(--white);
  border-radius: 50%;
  height: 0.35rem;
  width: 0.35rem;
}

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

.section,
.section-dark {
  margin: 0 auto;
  max-width: var(--max);
  padding: clamp(5rem, 10vw, 10rem) var(--gutter);
  position: relative;
}

.section {
  background: var(--paper);
  color: var(--ink);
  max-width: none;
}

.section-index {
  color: rgba(9, 10, 13, 0.22);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  left: var(--gutter);
  letter-spacing: 0.15em;
  position: absolute;
  top: 2rem;
}

.about {
  display: grid;
  gap: clamp(3rem, 9vw, 10rem);
  grid-template-columns: minmax(300px, 0.75fr) minmax(340px, 0.85fr);
}

.about-image {
  margin-left: max(0px, calc((100vw - var(--max)) / 2));
  max-height: 840px;
  overflow: hidden;
}

.about-image img {
  filter: saturate(0.55);
  height: 100%;
  object-fit: cover;
  object-position: 50% 15%;
  transition: filter 500ms ease, transform 700ms ease;
  width: 100%;
}

.about-image:hover img {
  filter: saturate(0.9);
  transform: scale(1.015);
}

.about-copy {
  align-self: center;
  max-width: 650px;
}

h2 {
  font-size: clamp(3.4rem, 7vw, 7.5rem);
  letter-spacing: -0.07em;
  line-height: 0.88;
  margin: 0 0 2.5rem;
}

.lead {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.3rem, 2.1vw, 2rem);
  letter-spacing: -0.03em;
  line-height: 1.3;
}

.about-copy > p:not(.eyebrow, .lead),
.history-copy > p:not(.eyebrow, .lead),
.contact-intro > p:not(.eyebrow) {
  color: #484a50;
  font-size: 1rem;
  line-height: 1.75;
  max-width: 58ch;
}

.mixes {
  padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr auto;
  margin-bottom: clamp(3rem, 6vw, 6rem);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2 {
  margin-bottom: 0;
}

.text-link {
  align-self: end;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding-bottom: 0.35rem;
  text-decoration-color: var(--electric);
  text-decoration-thickness: 2px;
  text-underline-offset: 0.45rem;
  text-transform: uppercase;
}

.text-link span {
  color: var(--electric);
}

.mix-card {
  align-items: center;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: clamp(1.25rem, 3vw, 3rem);
  grid-template-columns: 60px minmax(260px, 0.72fr) minmax(320px, 1fr);
  padding: 2.75rem 0;
}

.mix-card:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.mix-number {
  color: var(--electric);
  font-family: "Space Grotesk", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
}

.mix-copy h3 {
  font-size: clamp(2rem, 4vw, 4rem);
  letter-spacing: -0.055em;
  line-height: 0.95;
  margin: 0 0 1rem;
}

.mix-copy > p:last-child {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
  max-width: 46ch;
}

.mix-label {
  color: #c8c9cd;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  margin: 0 0 0.75rem;
  text-transform: uppercase;
}

.mix-card iframe {
  border: 0;
  border-radius: 2px;
}

.history {
  display: grid;
  gap: clamp(3rem, 8vw, 9rem);
  grid-template-columns: minmax(320px, 0.76fr) minmax(400px, 1fr);
}

.history-copy {
  align-self: center;
  justify-self: end;
  max-width: 600px;
}

.history-date {
  align-items: center;
  border-top: 1px solid var(--line-light);
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  padding-top: 1.25rem;
}

.history-date strong {
  color: var(--electric);
  font-family: "Space Grotesk", sans-serif;
  font-size: 2rem;
}

.history-date span {
  color: #585a60;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.history-photo {
  margin: 0;
  transform: rotate(1.4deg);
}

.history-photo img {
  box-shadow: 0 30px 70px rgba(9, 10, 13, 0.24);
  width: 100%;
}

.history-photo figcaption,
.live-main figcaption {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  margin-top: 0.9rem;
  text-transform: uppercase;
}

.live {
  max-width: none;
  padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

.live .section-heading {
  display: block;
}

.live-grid {
  display: grid;
  gap: clamp(1rem, 2vw, 2rem);
  grid-template-columns: 1.25fr 0.75fr;
  grid-template-rows: 1fr 1fr;
}

.live-grid figure {
  margin: 0;
  overflow: hidden;
}

.live-grid img {
  height: 100%;
  object-fit: cover;
  transition: transform 700ms cubic-bezier(0.2, 0.8, 0.2, 1);
  width: 100%;
}

.live-grid figure:hover img {
  transform: scale(1.025);
}

.live-main {
  grid-row: 1 / 3;
}

.live-main img {
  aspect-ratio: 3 / 4;
}

.live-side img {
  aspect-ratio: 4 / 3;
}

.video-section {
  height: min(78vw, 900px);
  min-height: 560px;
  overflow: hidden;
  position: relative;
}

.video-section::after {
  background: linear-gradient(90deg, rgba(9, 10, 13, 0.78), rgba(9, 10, 13, 0.08));
  content: "";
  inset: 0;
  position: absolute;
}

.video-section video {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.video-overlay {
  left: var(--gutter);
  max-width: 900px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
}

.video-overlay > p:last-child {
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(3.3rem, 8vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.88;
  margin: 0;
}

.portrait-break {
  background: var(--paper);
  color: var(--ink);
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  min-height: 750px;
}

.portrait-six {
  max-height: 980px;
  overflow: hidden;
}

.portrait-six img {
  filter: saturate(0.55);
  height: 100%;
  object-fit: cover;
  object-position: 55% 30%;
  width: 100%;
}

.portrait-quote {
  align-self: center;
  padding: clamp(4rem, 8vw, 9rem);
}

.portrait-quote blockquote {
  font-size: clamp(2.5rem, 5vw, 5.75rem);
  font-weight: 500;
  letter-spacing: -0.06em;
  line-height: 0.98;
  margin: 0 0 3rem;
}

.contact {
  display: grid;
  gap: clamp(3rem, 9vw, 10rem);
  grid-template-columns: minmax(300px, 0.8fr) minmax(380px, 0.8fr);
  padding-left: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
  padding-right: max(var(--gutter), calc((100vw - var(--max)) / 2 + var(--gutter)));
}

.contact-intro a {
  display: inline-block;
  font-weight: 700;
  margin-top: 1.5rem;
  text-decoration-color: var(--electric);
  text-underline-offset: 0.35rem;
}

.contact-form {
  display: grid;
  gap: 1.25rem;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
}

.contact-form label > span {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form small {
  color: #777980;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.contact-form input,
.contact-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(9, 10, 13, 0.42);
  border-radius: 0;
  color: var(--ink);
  outline: 0;
  padding: 0.8rem 0;
  transition: border 180ms ease;
  width: 100%;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--electric);
  border-width: 2px;
}

.contact-form .button {
  border: 0;
  cursor: pointer;
  justify-self: start;
  margin-top: 0.5rem;
}

.honeypot {
  height: 0;
  left: -9999px;
  overflow: hidden;
  position: absolute;
  width: 0;
}

.form-status {
  display: none;
  line-height: 1.5;
  padding: 1rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  background: #d7ead9;
}

.form-status.is-error {
  background: #f2d5d5;
}

.site-footer {
  align-items: end;
  border-top: 1px solid var(--line-dark);
  display: grid;
  gap: 2rem;
  grid-template-columns: auto 1fr auto;
  padding: 3rem var(--gutter);
}

.footer-logo {
  height: 90px;
  width: 90px;
}

.footer-logo img {
  height: 100%;
  object-fit: contain;
  width: 100%;
}

.footer-links {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
}

.footer-links a {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-decoration: none;
  text-transform: uppercase;
}

.site-footer p {
  color: var(--muted);
  font-size: 0.7rem;
  margin: 0;
}

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

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

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr 0.82fr;
  }

  .hero-copy {
    padding-right: 1.5rem;
  }

  .mix-card {
    grid-template-columns: 42px 1fr;
  }

  .mix-card iframe {
    grid-column: 2;
  }

  .portrait-quote {
    padding: clamp(3rem, 6vw, 6rem);
  }

  .contact {
    gap: 4rem;
  }
}

@media (max-width: 760px) {
  .site-header {
    height: 70px;
  }

  .brand {
    height: 50px;
    width: 50px;
  }

  .menu-toggle {
    cursor: pointer;
    display: grid;
    gap: 7px;
    padding: 1rem 0 1rem 1rem;
    position: relative;
    z-index: 22;
  }

  .menu-toggle span:not(.sr-only) {
    background: var(--white);
    display: block;
    height: 2px;
    transition: transform 180ms ease;
    width: 30px;
  }

  .menu-open .menu-toggle span:first-child {
    transform: translateY(4.5px) rotate(45deg);
  }

  .menu-open .menu-toggle span:nth-child(2) {
    transform: translateY(-4.5px) rotate(-45deg);
  }

  .site-nav {
    align-items: flex-start;
    background: rgba(9, 10, 13, 0.98);
    flex-direction: column;
    inset: 0;
    justify-content: center;
    opacity: 0;
    padding: var(--gutter);
    pointer-events: none;
    position: fixed;
    transition: opacity 180ms ease;
  }

  .site-nav a {
    font-family: "Space Grotesk", sans-serif;
    font-size: clamp(2.2rem, 10vw, 4rem);
    letter-spacing: -0.04em;
    text-transform: none;
  }

  .site-nav .nav-cta {
    border: 0;
    color: var(--electric);
    padding: 0;
  }

  .menu-open .site-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: 0;
    padding: 7rem var(--gutter) 2rem;
  }

  .hero-copy {
    padding: 0 0 3rem;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 15vw, 5.8rem);
  }

  .hero-portrait {
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .scroll-cue {
    display: none;
  }

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

  .about-image {
    margin: 0;
  }

  .section,
  .section-dark {
    padding-bottom: 5.5rem;
    padding-top: 5.5rem;
  }

  h2 {
    font-size: clamp(3rem, 15vw, 5.25rem);
  }

  .section-heading {
    display: block;
  }

  .section-heading .text-link {
    display: inline-block;
    margin-top: 1.5rem;
  }

  .mix-card {
    display: block;
  }

  .mix-number {
    margin-bottom: 1rem;
  }

  .mix-card iframe {
    margin-top: 1.5rem;
  }

  .history-copy {
    justify-self: start;
  }

  .history-photo {
    transform: rotate(0.7deg);
  }

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

  .live-main {
    grid-column: 1 / 3;
    grid-row: auto;
  }

  .live-side img {
    aspect-ratio: 1;
  }

  .video-section {
    height: 78svh;
    min-height: 560px;
  }

  .video-section video {
    object-position: 48% center;
  }

  .portrait-break {
    grid-template-columns: 1fr;
  }

  .portrait-six {
    aspect-ratio: 4 / 5;
  }

  .portrait-quote {
    padding: 4rem var(--gutter) 5rem;
  }

  .site-footer {
    align-items: start;
    grid-template-columns: 1fr;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .video-section video {
    display: none;
  }

  .video-section {
    background: url("assets/club-poster.jpg") center / cover no-repeat;
  }
}
