/* ============================================================
   Shock Collar Comedy — design system
   Dark editorial poster aesthetic. Condensed impact display type
   (Anton) + a clean grotesque body face (Barlow), brand red plus
   an electric "shock" yellow accent on near-black.
   ============================================================ */

:root {
  --bg: #0a0a0d;
  --bg-alt: #141417;
  --bg-card: #1a1a1e;
  --fg: #f6f4ef;
  --fg-muted: #9a9893;
  --fg-dim: #6b6a66;
  --red: #e23c28;
  --red-dark: #a52a1b;
  --volt: #e8ff2e;
  --border: #29292d;
  --border-bright: #3a3a3f;

  --font-display: "Anton", "Arial Narrow", sans-serif;
  --font-body: "Barlow", -apple-system, sans-serif;

  --max: 1180px;
  --edge: clamp(20px, 5vw, 56px);
}

* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 0.95;
}

p { color: var(--fg-muted); margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--volt);
}
.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--volt);
}

/* ---------- Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--edge);
  max-width: var(--max);
  margin: 0 auto;
}
.logo img { height: 38px; width: auto; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.site-nav a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--fg-muted);
  padding: 6px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--fg);
  border-color: var(--red);
}
.nav-toggle { display: none; }

@media (max-width: 760px) {
  .site-nav {
    position: fixed;
    inset: 65px 0 0 0;
    background: var(--bg);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px var(--edge) 24px;
    transform: translateY(-8px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
    border-bottom: 1px solid var(--border);
  }
  .site-nav.open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .site-nav a { width: 100%; padding: 14px 0; border-bottom: 1px solid var(--border); }
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 34px;
    height: 34px;
    background: none;
    border: none;
    cursor: pointer;
  }
  .nav-toggle span {
    display: block;
    height: 2px;
    background: var(--fg);
  }
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  clip-path: polygon(0 0, 100% 0, 100% 78%, 94% 100%, 0 100%);
}
.btn-primary { background: var(--red); color: var(--fg); }
.btn-primary:hover { background: var(--red-dark); }
.btn-volt { background: var(--volt); color: #10120a; }
.btn-volt:hover { background: #cfe825; }
.btn-outline {
  background: transparent;
  color: var(--fg);
  border: 1.5px solid var(--border-bright);
  clip-path: none;
  padding: 13.5px 28px;
}
.btn-outline:hover { border-color: var(--fg); }
.btn-small { padding: 10px 20px; font-size: 0.72rem; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 84vh;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center 22%;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10,10,13,0.55) 0%, rgba(10,10,13,0.35) 30%, rgba(10,10,13,0.92) 92%),
    linear-gradient(90deg, rgba(10,10,13,0.75) 0%, rgba(10,10,13,0.05) 55%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--edge) 64px;
}
.hero h1 {
  font-size: clamp(3.2rem, 9vw, 6.6rem);
  color: var(--fg);
}
.hero h1 .accent { color: var(--red); }
.hero-sub {
  max-width: 46ch;
  margin: 20px 0 30px;
  font-size: 1.05rem;
  color: var(--fg);
  opacity: 0.85;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 88px 0; }
.section-tight { padding: 56px 0; }
.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
}
.section-alt { background: var(--bg-alt); }

/* ---------- Shows: empty state ---------- */
.no-shows {
  border: 1px dashed var(--border-bright);
  padding: 44px var(--edge);
  text-align: center;
  background: var(--bg-card);
}
.no-shows h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--fg);
  margin-bottom: 10px;
}
.no-shows p { max-width: 52ch; margin-left: auto; margin-right: auto; }
.no-shows .btn { margin-top: 22px; }

/* ---------- Past shows strip ---------- */
.past-strip {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  padding-bottom: 10px;
  scrollbar-width: thin;
  scrollbar-color: var(--border-bright) transparent;
}
.past-strip::-webkit-scrollbar { height: 6px; }
.past-strip::-webkit-scrollbar-thumb { background: var(--border-bright); }

.past-card {
  position: relative;
  flex: 0 0 240px;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bg-card);
}
.past-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.past-card:hover img { transform: scale(1.06); }
.past-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,10,13,0) 45%, rgba(10,10,13,0.92) 100%);
}
.past-card-label {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 16px;
}
.past-card-label .city {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--fg);
  text-transform: uppercase;
}
.past-card-label .date {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--volt);
  font-weight: 700;
}

/* ---------- About teaser / bio ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.about-grid img { width: 100%; }
.about-copy .lede {
  font-size: 1.2rem;
  color: var(--fg);
  font-weight: 500;
}
.credit-row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
}
.credit-row div {
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: var(--fg-dim);
}
.credit-row strong { color: var(--fg); display: block; font-size: 1.1rem; }

@media (max-width: 860px) {
  .about-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* ---------- Video grid ---------- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 22px;
}
.video-card {
  display: block;
  background: var(--bg-card);
  border: 1px solid var(--border);
}
.video-card:hover { border-color: var(--red); }
.video-thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; }
.video-thumb img { width: 100%; height: 100%; object-fit: cover; }
.play-badge {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
}
.play-badge span {
  width: 54px; height: 54px;
  border-radius: 50%;
  background: rgba(226,60,40,0.92);
  display: flex; align-items: center; justify-content: center;
}
.play-badge svg { width: 18px; height: 18px; fill: var(--fg); margin-left: 2px; }
.video-card-body { padding: 16px 18px 18px; }
.video-card-body h3 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  font-size: 0.98rem;
  letter-spacing: 0;
  color: var(--fg);
  line-height: 1.35;
  margin-bottom: 10px;
  min-height: 2.7em;
}
.video-card-body .watch {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--volt);
}

/* ---------- Gallery grid ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 4px;
}
.gallery-grid button {
  padding: 0; border: none; background: none; cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden;
}
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease, filter 0.4s ease;
  filter: saturate(0.94);
}
.gallery-grid button:hover img { transform: scale(1.05); filter: saturate(1.1); }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(6,6,8,0.96);
  display: none;
  align-items: center; justify-content: center;
  padding: 40px;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 100%; max-height: 86vh; }
.lightbox-close {
  position: absolute; top: 24px; right: 28px;
  background: none; border: none; color: var(--fg);
  font-size: 2rem; cursor: pointer; line-height: 1;
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 56px;
}
.contact-links { display: flex; flex-direction: column; gap: 18px; margin-top: 24px; }
.contact-links a {
  font-family: var(--font-display);
  font-size: 1.3rem;
  text-transform: uppercase;
  color: var(--fg);
  border-bottom: 1px solid var(--border);
  padding-bottom: 14px;
  transition: color 0.15s ease;
}
.contact-links a:hover { color: var(--red); }
.contact-links span {
  display: block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 4px;
}

.form-grid { display: flex; flex-direction: column; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--fg-dim);
  margin-bottom: 8px;
}
.field input, .field textarea {
  width: 100%;
  background: var(--bg-card);
  border: 1px solid var(--border);
  color: var(--fg);
  padding: 13px 14px;
  font-family: var(--font-body);
  font-size: 1rem;
}
.field input:focus, .field textarea:focus {
  outline: none; border-color: var(--red);
}

@media (max-width: 860px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ---------- Terms / legal ---------- */
.terms summary {
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-transform: uppercase;
  color: var(--fg);
}
.terms p { margin-top: 16px; }

.legal-content { max-width: 720px; }
.legal-content h2 {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.2rem;
  margin-top: 34px;
  margin-bottom: 10px;
  color: var(--fg);
}
.legal-content h3 {
  font-family: var(--font-body);
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1rem;
  margin-top: 20px;
  color: var(--fg);
}
.legal-content ul { color: var(--fg-muted); padding-left: 1.2em; }
.legal-content li { margin-bottom: 6px; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 48px 0 32px;
  background: var(--bg-alt);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 36px;
}
.footer-grid h4 {
  font-family: var(--font-body);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.75rem;
  color: var(--fg-dim);
  margin-bottom: 16px;
}
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--fg-muted); font-size: 0.95rem; }
.footer-links a:hover { color: var(--fg); }
.footer-logo img { height: 34px; margin-bottom: 14px; }
.footer-tagline { max-width: 32ch; font-size: 0.92rem; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--fg-dim);
}
.footer-bottom a { color: var(--fg-dim); }
.footer-bottom a:hover { color: var(--fg); }

@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 26px; }
}

/* ---------- Page hero (non-home pages) ---------- */
.page-hero {
  padding: 64px 0 40px;
  border-bottom: 1px solid var(--border);
}
.page-hero h1 { font-size: clamp(2.6rem, 7vw, 4.4rem); }
.page-hero p { max-width: 60ch; margin-top: 16px; font-size: 1.05rem; }
