/* =============================================
   ROOT & RESET
   ============================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #090909;
  --dark:    #111111;
  --card:    #181818;
  --border:  rgba(255,255,255,0.07);
  --red:     #a41014;
  --red-hi:  #be1218;
  --white:   #f2f2f2;
  --muted:   #555;
  --fh:      'Bebas Neue', sans-serif;
  --fb:      'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background-color: var(--black);
  /* grungy dark grain — matches poster texture */
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Cfilter id='g'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.68' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23g)' opacity='0.13'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 100% 100% at 50% 50%, transparent 55%, rgba(0,0,0,0.55) 100%);
  background-size: 400px 400px, 100% 100%;
  background-attachment: fixed;
  color: var(--white);
  font-family: var(--fb);
  font-size: 15px;
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }

/* =============================================
   HELPERS
   ============================================= */
.t-white { color: var(--white); }
.t-red   { color: var(--red); }

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sec-head {
  text-align: center;
  margin-bottom: 3.5rem;
}

.sec-tag {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.sec-tag.left { text-align: left; }

.sec-title {
  font-family: var(--fh);
  font-size: clamp(3rem, 6vw, 5rem);
  letter-spacing: 0.06em;
  line-height: 1;
}

.sec-title.left { text-align: left; }

section { padding: 6rem 0; }

/* =============================================
   NAV
   ============================================= */
#nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 200;
  padding: 1.4rem 2rem;
  transition: background 0.3s, padding 0.3s, border-color 0.3s;
  border-bottom: 1px solid transparent;
}

#nav.scrolled {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1rem 2rem;
  border-bottom-color: rgba(200, 17, 26, 0.2);
}

.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.65rem;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  gap: 1px;
}

.nav-vinyl {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  animation: spin 5s linear infinite;
}

.nl-main {
  font-family: var(--fh);
  font-size: 1.4rem;
  letter-spacing: 0.12em;
}

.nl-sub {
  font-size: 0.55rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: var(--red);
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.6);
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--red); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 201;
}

.burger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--white);
  transition: all 0.3s;
}

.burger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* =============================================
   HERO
   ============================================= */
#home {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 2rem 5rem;
  overflow: hidden;
}

/* Hide nav logo on homepage — hero title IS the logo.
   Fades back in once the user scrolls (nav gets .scrolled class). */
.is-home .nav-logo { opacity: 0; pointer-events: none; transition: opacity 0.4s; }
.is-home #nav.scrolled .nav-logo { opacity: 1; pointer-events: auto; }

.hero-glow {
  position: absolute;
  top: 40%;
  left: 20%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(200,17,26,0.14) 0%, transparent 68%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}

.hero-tag {
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.hero-title {
  font-family: var(--fh);
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.88;
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  margin-bottom: 0.3rem;
}

.hero-sub {
  font-family: var(--fh);
  font-size: clamp(1.5rem, 3.5vw, 3.2rem);
  letter-spacing: 0.08em;
  color: rgba(242,242,242,0.55);
  margin-bottom: 1.4rem;
}

.hero-genres {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--muted);
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--white);
  border-bottom: 1px solid rgba(200,17,26,0.6);
  padding-bottom: 0.3rem;
  transition: color 0.2s, border-color 0.2s;
}

.hero-cta:hover { color: var(--red); border-color: var(--red); }

/* Vinyl */
.hero-vinyl {
  position: absolute;
  right: -60px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.92;
  pointer-events: none;
  z-index: 1;
}

.vinyl-disc {
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 46%, rgba(255,255,255,0.018) 0%, transparent 52%),
    repeating-radial-gradient(
      circle,
      #020202 0px,
      #020202 1.2px,
      #0c0c0c 1.2px,
      #0c0c0c 2.5px
    );
  display: flex;
  align-items: center;
  justify-content: center;
  animation: spin 8s linear infinite;
  box-shadow: 0 0 100px rgba(0,0,0,1), inset 0 0 30px rgba(0,0,0,0.6);
}

.vinyl-disc.small {
  width: 300px;
  height: 300px;
  animation-duration: 8s;
}

.vinyl-label {
  width: 355px;
  height: 355px;
}

.vinyl-disc.small .vinyl-label {
  width: 200px;
  height: 200px;
}

.vinyl-svg-label {
  width: 100%;
  height: 100%;
  display: block;
}

.vl-brand {
  font-family: var(--fh);
  font-size: 1rem;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1;
}

.vinyl-disc.small .vl-brand { font-size: 0.7rem; }

.vl-name {
  font-size: 0.38rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
  line-height: 1.3;
  padding: 0 4px;
}

.vl-detail {
  font-size: 0.3rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.55);
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* =============================================
   SHARED PAGE HERO (events, gallery, about)
   ============================================= */
.page-hero {
  position: relative;
  min-height: 44vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid rgba(200,17,26,0.15);
}

.page-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 9rem;
  padding-bottom: 3.5rem;
}

.page-hero-title {
  font-family: var(--fh);
  font-size: clamp(4.5rem, 12vw, 11rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  margin: 0.5rem 0 0.75rem;
}

.page-hero-sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}

/* About page extra links */
.about-links {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}

.about-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.45);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}

.about-link:hover { color: var(--white); border-color: var(--red); }

/* Gallery page — edge-to-edge grid, no top padding */
.gallery-page-grid {
  margin-top: 0;
}

/* =============================================
   EVENTS
   ============================================= */
#events {
  background: var(--dark);
  border-top: 1px solid rgba(200,17,26,0.15);
  border-bottom: 1px solid rgba(200,17,26,0.15);
}

.events-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(190px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.ev-card {
  position: relative;
  background: var(--card);
  padding: 2rem 1.4rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  transition: background 0.2s;
  overflow: hidden;
}

.ev-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.2s;
}

.ev-next::before { background: var(--red); }

.ev-done { opacity: 0.42; }

.ev-ep {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
}

.ev-date {
  font-family: var(--fh);
  font-size: 2.4rem;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--white);
}

.ev-venue {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(242,242,242,0.45);
  text-transform: uppercase;
}

.ev-lineup {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.lu-hd {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}

.ev-lineup p {
  font-family: var(--fh);
  font-size: 1rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.ev-genres {
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--muted);
  text-transform: uppercase;
  margin-top: auto;
}

.ev-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: rgba(242,242,242,0.4);
  text-transform: uppercase;
}

.ev-free { color: var(--red); }

.ev-set-time {
  font-size: 0.55rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--muted);
  margin-left: 0.3rem;
}

.ev-set-note {
  font-family: var(--fb);
  font-size: 0.58rem;
  font-weight: 400;
  color: var(--muted);
  margin-top: -0.1rem;
  padding-left: 0.2rem;
}

.ev-tba {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: rgba(242,242,242,0.2);
  text-transform: uppercase;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 0.75rem;
  margin-top: 0.25rem;
}

.ev-badge {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-size: 0.5rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.25rem 0.5rem;
}

.ev-done .ev-badge  { background: rgba(255,255,255,0.07); color: var(--muted); }
.ev-next .ev-badge  { background: var(--red); color: #fff; }
.ev-soon .ev-badge  { border: 1px solid rgba(255,255,255,0.12); color: rgba(242,242,242,0.3); }

/* =============================================
   GALLERY
   ============================================= */
#gallery {
  background: var(--black);
  padding-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 300px;
  gap: 3px;
  margin-top: 0;
}

.g-item { overflow: hidden; }
.g-tall { grid-row: span 2; }
.g-wide { grid-column: span 2; }

.g-ph {
  width: 100%;
  height: 100%;
  background: var(--card);
  border: 1px dashed rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
  cursor: default;
}

.g-ph:hover { background: #1a1a1a; border-color: rgba(200,17,26,0.3); }

.g-ph span {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.12);
  text-transform: uppercase;
  pointer-events: none;
}

/* When real images are added, the placeholder is hidden */
.g-item img + .g-ph { display: none; }
.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.55) contrast(1.15) saturate(0.75);
  transition: transform 0.5s ease, filter 0.4s ease;
}
.g-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.75) contrast(1.1) saturate(0.9);
}

/* Hide DJ placeholder when photo is present */
.dj-photo img ~ .dj-ph { display: none; }

.gallery-footer {
  display: flex;
  justify-content: center;
  padding: 2.5rem 2rem 0;
}

.ig-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.45);
  border: 1px solid rgba(255,255,255,0.1);
  padding: 0.7rem 1.5rem;
  transition: color 0.2s, border-color 0.2s;
}

.ig-link:hover { color: var(--white); border-color: rgba(200,17,26,0.5); }

/* =============================================
   ABOUT
   ============================================= */
#about {
  background: var(--dark);
  border-top: 1px solid rgba(200,17,26,0.12);
}

.about-wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 6rem;
  align-items: center;
}

.about-visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  opacity: 1;
}

.about-tags {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.about-tags span {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.35);
  border-left: 2px solid var(--red);
  padding-left: 0.75rem;
}

.about-copy p {
  color: rgba(242,242,242,0.6);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1rem;
  max-width: 540px;
}

.about-copy .sec-title { margin-bottom: 1.5rem; }

.about-venue {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: 0.85rem;
  color: rgba(242,242,242,0.45);
}

.about-venue strong {
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* =============================================
   FOOTER / CONTACT
   ============================================= */
footer#contact {
  background: var(--black);
  border-top: 1px solid rgba(200,17,26,0.2);
  padding: 4rem 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.footer-brand-text {
  display: flex;
  flex-direction: column;
}

.footer-vinyl {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

/* The real disc artwork, scaled down to sit beside the brand name.
   Spin lives on .vinyl-disc, so the wrapper stays still. */
.footer-vinyl .vinyl-disc {
  width: 100%;
  height: 100%;
  animation: spin 5s linear infinite;
  box-shadow: inset 0 0 6px rgba(0,0,0,0.7);
}

.footer-vinyl .vinyl-label { width: 68%; height: 68%; }

.fb-main {
  font-family: var(--fh);
  font-size: 2rem;
  letter-spacing: 0.12em;
  line-height: 1;
}

.fb-sub {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-top: 0.3rem;
}

.fb-loc {
  font-size: 0.68rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-top: 0.4rem;
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.fc-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.footer-contact a {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: rgba(242,242,242,0.5);
  text-transform: uppercase;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--white); }

.footer-copy {
  font-size: 0.65rem;
  color: rgba(242,242,242,0.2);
  letter-spacing: 0.06em;
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 2rem;
  margin-top: 1rem;
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .events-row { grid-template-columns: repeat(3, 1fr); }
  .about-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { flex-direction: row; justify-content: flex-start; opacity: 0.55; }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8,8,8,0.97);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 199;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-family: var(--fh);
    font-size: 2.5rem;
    letter-spacing: 0.2em;
    color: var(--white);
  }

  .burger { display: flex; }

  #home { padding: 6rem 1.5rem 4rem; min-height: 100svh; }

  /* Vinyl goes large and centred on mobile, sitting behind the hero text.
     Percentage label + aspect-ratio keeps the artwork proportional at any size. */
  .hero-vinyl {
    right: auto;
    left: 70%;
    top: 54%;
    transform: translate(-50%, -50%);
    opacity: 0.38;
  }

  .vinyl-disc {
    width: min(118vw, 640px);
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .vinyl-label { width: 68%; height: 68%; }

  .events-row { grid-template-columns: repeat(2, 1fr); }

  /* Cards go two-up here, so the badge crowds the Ep./Pop Up title.
     Shrink it and reserve space so the two can't collide. */
  .ev-badge {
    top: 0.85rem;
    right: 0.85rem;
    font-size: 0.4rem;
    letter-spacing: 0.12em;
    padding: 0.18rem 0.35rem;
  }

  .ev-ep {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    padding-right: 5.2rem;
  }

  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 220px; }
  .g-tall { grid-row: span 1; }
  .g-wide { grid-column: span 2; }

  .about-visual {
    flex-direction: column;
    justify-content: center;
    opacity: 0.45;
  }

  .vinyl-disc.small  { width: 200px; height: 200px; }
  .vinyl-disc.small .vinyl-label { width: 133px; height: 133px; }
  .about-wrap { grid-template-columns: 1fr; }

  .footer-inner { flex-direction: column; align-items: flex-start; gap: 2.5rem; }
  .footer-copy { text-align: left; }
}

@media (max-width: 500px) {
  .hero-vinyl { top: 55%; opacity: 0.32; }
  .vinyl-disc { width: 128vw; }

  .about-visual { opacity: 0.4; }
  .vinyl-disc.small  { width: 165px; height: 165px; }
  .vinyl-disc.small .vinyl-label { width: 110px; height: 110px; }

  .events-row { grid-template-columns: 1fr 1fr; }
  .ev-card { padding: 1.4rem 1rem 1.8rem; }

  .ev-badge { top: 0.7rem; right: 0.7rem; font-size: 0.36rem; letter-spacing: 0.1em; }
  .ev-ep    { padding-right: 4.4rem; }
  .ev-date { font-size: 1.8rem; }

  .gallery-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .g-wide { grid-column: span 2; }
}

/* =============================================
   NAV ACTIVE STATE
   ============================================= */
.nav-active { color: var(--red) !important; }

/* =============================================
   DJ PAGE — HERO
   ============================================= */
.dj-page-hero {
  position: relative;
  min-height: 50vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-bottom: 1px solid rgba(200,17,26,0.15);
}

.dph-inner {
  position: relative;
  z-index: 2;
  padding-bottom: 4rem;
  padding-top: 10rem;
}

.dph-title {
  font-family: var(--fh);
  font-size: clamp(5rem, 13vw, 13rem);
  letter-spacing: 0.04em;
  line-height: 0.9;
  margin: 0.5rem 0 1rem;
}

.dph-sub {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: var(--muted);
  text-transform: uppercase;
}

/* =============================================
   DJ PAGE — SHOWCASE BLOCKS
   ============================================= */
.dj-showcase {
  display: flex;
  flex-direction: column;
}

.dj-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dj-photo {
  position: relative;
  overflow: hidden;
  background: var(--card);
  min-height: 400px;
}

.dj-ph {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--card);
  border: 1px dashed rgba(255,255,255,0.07);
}

.dj-ph span {
  font-family: var(--fh);
  font-size: clamp(3rem, 8vw, 8rem);
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.05);
  pointer-events: none;
  user-select: none;
}

.dj-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.6) contrast(1.1) saturate(0.7);
  transition: transform 0.7s ease, filter 0.5s ease;
}

.dj-block:hover .dj-photo img {
  transform: scale(1.04);
  filter: brightness(0.8) contrast(1.05) saturate(0.9);
}

.dj-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 60%, var(--dark) 100%);
  pointer-events: none;
  z-index: 1;
}

/* Reverse overlay direction for right-side photos */
.dj-block .dj-info + .dj-photo .dj-photo-overlay {
  background: linear-gradient(to left, transparent 60%, var(--dark) 100%);
}

.dj-info {
  padding: 5rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--dark);
}

.dj-num {
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.4em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.dj-name {
  font-family: var(--fh);
  font-size: clamp(4rem, 7vw, 7.5rem);
  letter-spacing: 0.03em;
  line-height: 0.95;
  margin-bottom: 1.25rem;
}

.dj-genres {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.dj-genre-tag {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  border: 1px solid rgba(200,17,26,0.45);
  color: var(--red);
  padding: 0.28rem 0.65rem;
  text-transform: uppercase;
}

.dj-bio {
  color: rgba(242,242,242,0.55);
  font-size: 0.95rem;
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 2.5rem;
}

.dj-socials {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.dj-social {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(242,242,242,0.38);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  padding-bottom: 0.2rem;
  transition: color 0.2s, border-color 0.2s;
}

.dj-social:hover {
  color: var(--white);
  border-color: var(--red);
}

/* DJ page responsive */
@media (max-width: 900px) {
  .dj-block {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .dj-photo { min-height: 300px; order: 1 !important; }
  .dj-info  { order: 2 !important; }

  .dj-photo-overlay { display: none; }

  .dj-info { padding: 3rem 2rem; }
}

@media (max-width: 500px) {
  .dph-title { font-size: clamp(4rem, 18vw, 7rem); }
  .dj-name   { font-size: clamp(3.5rem, 14vw, 5.5rem); }
  .dj-info   { padding: 2.5rem 1.5rem; }
}

/* =============================================
   FADE-IN ANIMATION
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* =============================================
   COUNTDOWN
   ============================================= */
.hero-countdown {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  margin-top: 1.8rem;
}

.cd-unit {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.cd-num {
  font-family: var(--fh);
  font-size: clamp(2.2rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: 0.05em;
  color: var(--white);
}

.cd-label {
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  color: var(--red);
  text-transform: uppercase;
}

.cd-sep {
  font-family: var(--fh);
  font-size: 2rem;
  color: rgba(255,255,255,0.15);
  line-height: 1;
  padding-bottom: 0.15rem;
}

/* =============================================
   GALLERY LIGHTBOX
   ============================================= */
.g-item img { cursor: pointer; }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 500;
  background: rgba(0,0,0,0.96);
  align-items: center;
  justify-content: center;
}

.lightbox.open { display: flex; }

.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  filter: brightness(0.92) contrast(1.05);
  animation: lb-in 0.2s ease;
}

@keyframes lb-in {
  from { opacity: 0; transform: scale(0.97); }
  to   { opacity: 1; transform: none; }
}

.lb-close {
  position: fixed;
  top: 1.5rem;
  right: 2rem;
  font-size: 1.6rem;
  color: rgba(255,255,255,0.45);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
  z-index: 501;
}

.lb-close:hover { color: var(--white); }

.lb-prev,
.lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  background: none;
  border: none;
  cursor: pointer;
  padding: 1rem;
  transition: color 0.2s;
  z-index: 501;
}

.lb-prev { left: 1rem; }
.lb-next { right: 1rem; }
.lb-prev:hover,
.lb-next:hover { color: var(--white); }

.lb-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  color: rgba(255,255,255,0.2);
  text-transform: uppercase;
  pointer-events: none;
}

/* =============================================
   POP-UP EVENT CARD
   ============================================= */
.ev-popup {
  animation: popup-pulse 2.8s ease-in-out infinite;
}

@keyframes popup-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(200,17,26,0); }
  50%       { box-shadow: 0 0 22px 3px rgba(200,17,26,0.14); }
}


/* =============================================
   MOBILE / TOUCH PERFORMANCE
   ============================================= */
/* background-attachment:fixed is ignored by iOS Safari and forces a
   full-background repaint per scroll frame on Android. */
@media (hover: none) and (pointer: coarse) {
  body { background-attachment: scroll; }
}

/* =============================================
   REDUCED MOTION
   ============================================= */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .vinyl-disc { animation: none; }
  .fade-in { opacity: 1; transform: none; }
}

/* =============================================
   FOOTER CREDIT
   ============================================= */
.footer-credit {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  color: rgba(242,242,242,0.15);
}


/* =============================================
   GUESTS
   ============================================= */
.guests {
  padding: 6rem 0 7rem;
  border-top: 1px solid rgba(200,17,26,0.15);
}

.guests-intro {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 3rem;
}

.guest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.guest-name {
  background: var(--card);
  padding: 1.5rem 1rem;
  text-align: center;
  font-family: var(--fh);
  font-size: 1.1rem;
  letter-spacing: 0.08em;
  color: rgba(242,242,242,0.75);
  transition: background 0.2s, color 0.2s;
}

.guest-name:hover {
  background: rgba(200,17,26,0.12);
  color: var(--white);
}

@media (max-width: 768px) {
  .guests { padding: 4rem 0 5rem; }
  .guest-grid { grid-template-columns: repeat(2, 1fr); }
  .guest-name { padding: 1.1rem 0.6rem; font-size: 0.95rem; }
}


/* =============================================
   TICKETS
   ============================================= */
.hero-tickets {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1rem;
  margin-left: 1.6rem;
  padding: 0.7rem 1.4rem;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background 0.2s, transform 0.2s;
}

/* display:inline-flex would otherwise beat the UA's [hidden] rule */
.hero-tickets[hidden] { display: none; }

.hero-tickets:hover {
  background: #a50d15;
  transform: translateY(-2px);
}

.ev-tickets {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  align-self: flex-start;
  margin-top: 0.7rem;
  padding: 0.5rem 0.9rem;
  border: 1px solid var(--red);
  color: var(--red);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background 0.2s, color 0.2s;
}

.ev-tickets:hover {
  background: var(--red);
  color: #fff;
}

@media (max-width: 500px) {
  /* wraps onto its own line here, so the left gap would read as an indent */
  .hero-tickets { margin-left: 0; padding: 0.6rem 1.1rem; font-size: 0.6rem; letter-spacing: 0.14em; }
  .ev-tickets   { padding: 0.45rem 0.7rem; font-size: 0.52rem; letter-spacing: 0.12em; }
}


/* =============================================
   CONTACT FORM
   ============================================= */
.contact-section { padding: 6rem 0 7rem; }

.contact-wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 4rem;
  align-items: start;
}

.cf-hp { position: absolute; left: -9999px; }

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.4rem;
}

.cf-field label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.cf-field label span { color: var(--red); }

.cf-field input,
.cf-field select,
.cf-field textarea {
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--white);
  font-family: var(--fb);
  font-size: 0.9rem;
  padding: 0.9rem 1rem;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
}

.cf-field textarea { resize: vertical; min-height: 140px; }

.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(242,242,242,0.25); }

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  outline: none;
  border-color: var(--red);
  background: rgba(200,17,26,0.05);
}

.cf-submit {
  display: inline-block;
  background: var(--red);
  color: #fff;
  border: none;
  font-family: var(--fb);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 1rem 2.2rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.cf-submit:hover { background: #a50d15; transform: translateY(-2px); }

.contact-aside { border-left: 1px solid var(--border); padding-left: 2.5rem; }

.ca-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  color: var(--red);
  margin-bottom: 1.4rem;
}

.ca-link {
  display: block;
  color: var(--white);
  font-size: 0.9rem;
  margin-bottom: 0.9rem;
  border-bottom: 1px solid transparent;
  transition: color 0.2s, border-color 0.2s;
  word-break: break-word;
}

.ca-link:hover { color: var(--red); border-color: var(--red); }

.ca-note {
  margin-top: 2rem;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.7;
}

.thanks-copy {
  color: var(--muted);
  font-size: 1rem;
  max-width: 44ch;
  margin-bottom: 2.5rem;
}

.thanks-actions {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .contact-aside { border-left: none; border-top: 1px solid var(--border); padding-left: 0; padding-top: 2.5rem; }
}

@media (max-width: 768px) {
  .contact-section { padding: 4rem 0 5rem; }
  .cf-row { grid-template-columns: 1fr; gap: 0; }
  /* 16px minimum stops iOS zooming the page on focus */
  .cf-field input,
  .cf-field select,
  .cf-field textarea { font-size: 16px; }
  .cf-submit { width: 100%; text-align: center; }
}
