/* ---------- Tokens ---------- */
:root {
  --black: #0A0A0A;
  --off-black: #141412;
  --panel: #1B1B18;
  --white: #F5F4EF;
  --gray: #9A9A90;
  --gray-dim: #6E6E64;
  --line: rgba(245,244,239,0.12);
  --line-strong: rgba(245,244,239,0.24);

  --font: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --wrap: 1240px;
  --nav-h: 84px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

@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;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { margin: 0; font-weight: 500; letter-spacing: -0.01em; }

p {
  margin: 0 0 1.2em;
  color: var(--gray);
  max-width: 58ch;
  font-size: 1.02rem;
}
p:last-child { margin-bottom: 0; }
strong { color: var(--white); font-weight: 600; }

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

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

.wrap {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 0 32px;
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--white);
  color: var(--black);
  padding: 10px 16px;
  z-index: 200;
  font-weight: 600;
}
.skip-link:focus { left: 16px; top: 16px; }

:focus-visible {
  outline: 2px solid var(--white);
  outline-offset: 3px;
}

button {
  font-family: inherit;
  cursor: pointer;
  background: none;
  border: none;
  color: inherit;
}

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: linear-gradient(180deg, rgba(10,10,10,0.72), rgba(10,10,10,0));
  transition: background 0.3s ease;
}
.site-header.is-scrolled {
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.brand { display: flex; align-items: center; flex-shrink: 0; }
.brand-logo { height: 26px; width: auto; flex-shrink: 0; }

.site-nav {
  display: flex;
  align-items: center;
  gap: 2.6rem;
}

.site-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.2rem;
  margin: 0;
  padding: 0;
}

.site-nav a {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gray);
  transition: color 0.15s ease;
}
.site-nav a:hover { color: var(--white); }

.nav-social { gap: 1.1rem; }
.nav-social a {
  display: flex;
  color: var(--gray);
}
.nav-social svg { width: 17px; height: 17px; fill: currentColor; }
.nav-social a:hover { color: var(--white); }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--white);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(120% 90% at 50% 20%, #23231f 0%, #100f0d 55%, #0a0a0a 100%);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
}

.hero-media.video-missing .hero-video { display: none; }

.hero-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10,10,10,0.55) 0%,
    rgba(10,10,10,0.15) 30%,
    rgba(10,10,10,0.25) 65%,
    rgba(10,10,10,0.75) 100%
  );
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.9rem;
}

.hero-logo {
  width: min(78vw, 340px);
  height: auto;
  filter: drop-shadow(0 6px 28px rgba(0,0,0,0.45));
}

.hero-tagline {
  margin: 0;
  color: var(--white);
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 400;
  max-width: 34ch;
  opacity: 0.92;
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 2em;
  border: 1px solid var(--line-strong);
  border-radius: 2px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.btn-cta:hover {
  background: var(--white);
  color: var(--black);
  border-color: var(--white);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  width: 22px;
  height: 34px;
  border: 1px solid var(--line-strong);
  border-radius: 12px;
}
.scroll-cue span {
  position: absolute;
  top: 7px;
  left: 50%;
  width: 3px;
  height: 7px;
  margin-left: -1.5px;
  border-radius: 2px;
  background: var(--white);
  animation: cueDrop 2.2s ease-in-out infinite;
}
@keyframes cueDrop {
  0%   { opacity: 1; transform: translateY(0); }
  60%  { opacity: 0.2; transform: translateY(10px); }
  61%  { opacity: 0; transform: translateY(10px); }
  62%  { opacity: 0; transform: translateY(0); }
  100% { opacity: 1; transform: translateY(0); }
}

/* ---------- Reel ---------- */
.reel {
  padding: 7rem 0 6rem;
  background: var(--off-black);
}

.reel-heading {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--white);
  margin-bottom: 2.2rem;
}

.reel-frame {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border-radius: 3px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
}

.reel-thumb {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.reel-frame.thumb-missing .reel-thumb { display: none; }

.reel-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: transform 0.2s ease;
}
.reel-play svg { width: 68px; height: 68px; fill: currentColor; }
.reel-play path { fill: var(--white); }
.reel-frame:hover .reel-play { transform: scale(1.06); }

.reel-frame.reel-unavailable { cursor: default; }
.reel-frame.reel-unavailable .reel-play { opacity: 0.35; }
.reel-frame.reel-unavailable:hover .reel-play { transform: none; }

/* ---------- About ---------- */
.about {
  padding: 6.5rem 0;
  border-top: 1px solid var(--line);
}

.about-inner {
  max-width: 720px;
}

.about-lede {
  color: var(--white);
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.5;
}

.about-credit {
  margin-top: 1.8rem;
  font-size: 0.92rem;
  color: var(--gray-dim);
}

/* ---------- Sessions ---------- */
.sessions {
  padding: 6.5rem 0 7rem;
  border-top: 1px solid var(--line);
}

.section-heading {
  font-size: clamp(1.6rem, 2.6vw, 2.1rem);
  color: var(--white);
  margin-bottom: 2.4rem;
}

.sessions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2.2rem;
}

.session-card {
  display: block;
  color: inherit;
}

.session-thumb {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 2px;
  overflow: hidden;
  background: var(--panel);
  border: 1px solid var(--line);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.session-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.session-thumb-placeholder {
  color: var(--gray-dim);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  padding: 1rem;
}

.session-artist {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.2rem;
}

.session-title {
  color: var(--gray);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Contact ---------- */
.contact {
  padding: 7rem 0;
  text-align: center;
  border-top: 1px solid var(--line);
  background: var(--off-black);
}

.contact-inner { max-width: 560px; margin: 0 auto; }

.contact p { margin: 0 auto 1.4rem; }

.contact-email {
  display: inline-block;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--white);
  border-bottom: 1px solid var(--line-strong);
  padding-bottom: 2px;
  transition: border-color 0.2s ease, opacity 0.2s ease;
}
.contact-email:hover { border-color: var(--white); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 2.4rem 0;
  border-top: 1px solid var(--line);
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.footer-logo { height: 16px; width: auto; opacity: 0.8; }
.footer-brand span {
  font-size: 0.82rem;
  color: var(--gray-dim);
}

.footer-social {
  list-style: none;
  display: flex;
  gap: 1.4rem;
  margin: 0;
  padding: 0;
}
.footer-social a {
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--gray-dim);
}
.footer-social a:hover { color: var(--white); }

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.3rem;
  font-size: 0.8rem;
  color: var(--gray-dim);
}
.footer-meta a:hover { color: var(--white); }

/* ---------- Lightbox ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox[hidden] { display: none; }

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6,6,6,0.92);
}

.lightbox-body {
  position: relative;
  z-index: 1;
  width: min(92vw, 1100px);
}

.lightbox-body video {
  width: 100%;
  display: block;
  background: black;
}

.lightbox-close {
  position: absolute;
  top: -46px;
  right: 0;
  font-size: 2rem;
  line-height: 1;
  color: var(--white);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .site-nav ul:not(.nav-social) {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: rgba(10,10,10,0.97);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
  }
  .site-nav ul.open { max-height: 320px; }
  .site-nav li { width: 100%; padding: 0 32px; }
  .site-nav ul:not(.nav-social) a {
    display: block;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
  }
  .nav-toggle { display: flex; }
  .site-nav .nav-social { display: none; }

  .footer-row { justify-content: flex-start; }
  .footer-meta { align-items: flex-start; }
}

@media (max-width: 480px) {
  .about, .sessions, .contact { padding: 4.5rem 0; }
  .reel { padding: 5rem 0 4rem; }
}
