@import url('https://fonts.googleapis.com/css2?family=Special+Elite&family=Oswald:wght@500;600;700&display=swap');

:root {
  --black: #080808;
  --ink: #111;
  --paper: #e8e0ce;
  --paper-dark: #cfc4ad;
  --white: #f4efe4;
  --gray: #9b968d;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: "Special Elite", Courier, monospace;
  line-height: 1.5;
  overflow-x: hidden;
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px clamp(18px, 4vw, 52px);
  background: rgba(5, 5, 5, 0.94);
  border-bottom: 1px solid #302f2b;
  backdrop-filter: blur(8px);
}

.brand {
  text-decoration: none;
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: clamp(1rem, 2vw, 1.35rem);
}

.nav {
  display: flex;
  gap: clamp(16px, 2.5vw, 34px);
}

.nav a {
  text-decoration: none;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.11em;
  transition: opacity 0.2s ease;
}

.nav a:hover {
  opacity: 0.6;
}

.menu-toggle {
  display: none;
  width: 40px;
  height: 36px;
  border: 0;
  background: transparent;
  padding: 7px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--white);
}

.hero {
  position: relative;
  min-height: auto;
  display: grid;
  place-items: center;
  padding: 24px 20px 34px;
  background:
    radial-gradient(circle at center, #1c1c1b 0, #0c0c0c 42%, #030303 100%);
}

.hero-noise {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    repeating-linear-gradient(0deg, rgba(255,255,255,.035) 0 1px, transparent 1px 4px),
    repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0 1px, transparent 1px 5px);
  mix-blend-mode: screen;
}

.hero-inner {
  position: relative;
  z-index: 1;
  width: min(100%, 700px);
  text-align: center;
}

.hero-art {
  display: block;
  width: min(78vh, 620px, 100%);
  margin: 0 auto;
  filter: contrast(1.04) brightness(0.98);
  box-shadow: 0 24px 70px rgba(0,0,0,.65);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 18px;
}

.paper-button,
.small-button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  text-transform: uppercase;
  font-family: "Oswald", Impact, sans-serif;
  font-weight: 700;
  letter-spacing: .08em;
  background: var(--paper);
  color: var(--ink);
  border: 2px solid var(--paper);
  transform: rotate(-0.7deg);
  transition: transform .15s ease, background .15s ease, color .15s ease;
}

.paper-button {
  padding: 13px 24px 12px;
  min-width: 160px;
}

.paper-button.alt {
  transform: rotate(0.8deg);
  background: transparent;
  color: var(--paper);
}

.paper-button:hover,
.small-button:hover {
  transform: rotate(0deg) scale(1.03);
}

.hero-tagline {
  margin: 12px 0 0;
  color: #bcb6aa;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.section {
  padding: 90px 22px;
  background: var(--paper);
  color: var(--ink);
}

.dark-section {
  background: #0a0a0a;
  color: var(--white);
}

.paper-section {
  background:
    linear-gradient(rgba(232,224,206,.94), rgba(232,224,206,.94)),
    repeating-linear-gradient(0deg, transparent 0 5px, rgba(0,0,0,.08) 5px 6px);
}

.booking-section {
  background: var(--paper);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-inner.narrow {
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 4px;
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  opacity: .65;
}

h2 {
  margin: 0 0 40px;
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(3rem, 8vw, 6.5rem);
  line-height: .9;
  letter-spacing: -.03em;
}

.show-card {
  display: grid;
  grid-template-columns: 110px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 22px;
  background: #111;
  color: var(--white);
  border: 1px solid #262626;
}

.show-date {
  text-align: center;
  padding-right: 22px;
  border-right: 1px solid #555;
}

.show-date span {
  display: block;
}

.month {
  font-size: .8rem;
  letter-spacing: .2em;
}

.day {
  font-family: "Oswald", Impact, sans-serif;
  font-size: 3rem;
  line-height: .9;
}

.show-info h3 {
  margin: 0;
  font-family: "Oswald", Impact, sans-serif;
  font-size: 1.8rem;
}

.show-info p {
  margin: 3px 0 0;
  opacity: .7;
}

.small-button {
  padding: 10px 17px;
  font-size: .8rem;
}

.placeholder-note {
  margin-top: 20px;
  opacity: .6;
}

.video-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 5px;
  border: 2px solid #403e39;
  background:
    linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
    repeating-linear-gradient(45deg, #181818 0 12px, #141414 12px 24px);
  text-align: center;
}

.video-placeholder span {
  font-family: "Oswald", Impact, sans-serif;
  font-size: clamp(2rem, 6vw, 4.5rem);
}

.video-placeholder small {
  color: #98938a;
}

.photo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.photo-placeholder {
  min-height: 330px;
  display: grid;
  place-items: center;
  background: #181818;
  color: var(--paper);
  border: 12px solid #f0e7d2;
  box-shadow: 7px 11px 0 rgba(0,0,0,.2);
  font-family: "Oswald", Impact, sans-serif;
  font-size: 2rem;
}

.tilted-left {
  transform: rotate(-2deg);
}

.tilted-right {
  transform: rotate(2deg);
}

.about-copy,
.booking-copy {
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  max-width: 720px;
}

.booking-copy {
  margin-bottom: 28px;
}

footer {
  padding: 32px 20px;
  text-align: center;
  color: #817d74;
  border-top: 1px solid #222;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

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

  .menu-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 12px 20px 18px;
    background: #080808;
    border-bottom: 1px solid #333;
  }

  .nav.open {
    display: flex;
  }

  .nav a {
    padding: 14px 0;
    border-bottom: 1px solid #1f1f1f;
  }

  .hero {
    min-height: auto;
    padding-top: 22px;
  }

  .hero-art {
    width: 100%;
  }

  .hero-actions {
    margin-top: 20px;
  }

  .paper-button {
    min-width: 145px;
  }

  .section {
    padding: 68px 18px;
  }

  h2 {
    margin-bottom: 30px;
  }

  .show-card {
    grid-template-columns: 78px 1fr;
  }

  .show-date {
    padding-right: 14px;
  }

  .small-button {
    grid-column: 1 / -1;
    text-align: center;
  }

  .video-placeholder {
    min-height: 240px;
  }

  .photo-grid {
    grid-template-columns: 1fr;
  }

  .photo-placeholder {
    min-height: 300px;
  }
}
