:root {
  --black: #1a1614;
  --ivory: #e8dcc8;
  --brass: #b08d57;
  --oxblood: #6b2b2b;
  --smoke: #3e4a42;
  --ink: #0e0c0b;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { overflow-x: hidden; }
video { max-width: 100%; }

body {
  background: var(--black);
  color: var(--ivory);
  font-family: Outfit, "Segoe UI", sans-serif;
  font-weight: 300;
  line-height: 1.55;
  letter-spacing: 0.01em;
}

h1, h2, .wordmark {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.05;
}

a { color: inherit; }

.eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
  margin: 0 0 0.8rem;
}

.btn {
  display: inline-block;
  border: 1px solid var(--brass);
  background: transparent;
  color: var(--ivory);
  padding: 0.85rem 1.4rem;
  text-decoration: none;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.68rem;
  font-family: Outfit, sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.btn-brass:hover { background: var(--brass); color: var(--ink); }
.btn-ghost { border-color: rgba(232,220,200,0.28); }
.btn-ghost:hover { border-color: var(--ivory); }

.gate {
  position: fixed;
  inset: 0;
  z-index: 80;
  background: var(--ink);
  display: grid;
  place-items: center;
  padding: 2rem;
}
.gate[hidden] { display: none; }
.gate-card { max-width: 28rem; text-align: center; }
.gate-card h1 {
  font-size: clamp(2rem, 6vw, 3.2rem);
  margin: 0 0 1rem;
}
.gate-copy { color: rgba(232,220,200,0.72); }
.gate-actions { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; margin-top: 1.6rem; }

.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 40;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.95rem 1.6rem 1.6rem;
  background: linear-gradient(
    180deg,
    rgba(14,12,11,0.96) 0%,
    rgba(14,12,11,0.92) 58%,
    rgba(14,12,11,0.55) 82%,
    rgba(14,12,11,0) 100%
  );
}
.wordmark {
  text-decoration: none;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-size: 0.95rem;
}
.site-header nav { display: flex; gap: 1.25rem; }
.site-header nav a {
  text-decoration: none;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  opacity: 0.8;
}

.hero {
  position: relative;
  overflow: hidden;
}
.hero-door {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  min-height: 100vh;
  align-items: stretch;
}
.door-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 7rem 6vw;
  border-right: 1px solid rgba(176,141,87,0.22);
  background: #161310;
}
.door-rule {
  display: block;
  width: 3.2rem;
  height: 1px;
  background: var(--brass);
  margin: 0 0 1.6rem;
}
.door-copy h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  margin: 0 0 1.1rem;
  font-style: italic;
  font-weight: 400;
}
.lede { color: rgba(232,220,200,0.78); max-width: 26rem; }
.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 1.8rem; }
.door-stage {
  margin: 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 7rem 6vw;
  background: #0c0b0a;
  overflow: hidden;
}
.door-house {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: 0.28;
  filter: saturate(0.55) contrast(1.1) brightness(0.55);
  transform: scale(1.04);
}
.door-stage-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, rgba(12,11,10,0.12) 0%, rgba(12,11,10,0.72) 74%),
    linear-gradient(180deg, rgba(12,11,10,0.3), rgba(12,11,10,0.55));
}
.door-frame {
  position: relative;
  width: min(854px, 100%);
  z-index: 1;
}
.door-video {
  display: block;
  width: 100%;
  height: auto;
  background: #000;
  box-shadow:
    0 30px 70px rgba(0,0,0,0.62),
    0 8px 24px rgba(0,0,0,0.4),
    0 0 0 1px rgba(176,141,87,0.18);
}
.door-stage figcaption {
  position: absolute;
  bottom: 1.6rem;
  right: 6vw;
  z-index: 1;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--brass);
}
@media (max-width: 960px) {
  .hero-door { grid-template-columns: 1fr; min-height: auto; }
  .door-copy {
    border-right: 0;
    border-bottom: 1px solid rgba(176,141,87,0.22);
    padding: 6.4rem 7vw 2.8rem;
  }
  .door-stage { min-height: 0; padding: 2.4rem 7vw 3.4rem; }
  .door-stage figcaption { right: 7vw; }
}

.band {
  padding: 5.5rem 8vw;
  border-top: 1px solid rgba(176,141,87,0.22);
}
.band-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1.4rem;
  align-items: start;
}
.download-btn { margin-top: 1.3rem; }
.download-note { margin: 0.7rem 0 0; max-width: 28rem; }
.band h2, .band-split h2 {
  font-size: clamp(2rem, 4vw, 3.1rem);
  margin: 0 0 1rem;
}
.meta { list-style: none; margin: 0; padding: 0; }
.meta li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid rgba(232,220,200,0.12);
  font-size: 0.92rem;
}
.meta span { color: var(--brass); letter-spacing: 0.14em; text-transform: uppercase; font-size: 0.62rem; }

.gallery-wrap { padding: 5rem 8vw 6rem; overflow: hidden; }
.section-head { margin-bottom: 2rem; }
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 240px), 1fr));
  gap: 0.6rem;
  width: 100%;
}
.gallery button {
  padding: 0;
  border: 0;
  background: #000;
  cursor: zoom-in;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  min-width: 0;
  max-width: 100%;
}
.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: saturate(0.92);
  transition: transform 0.5s ease, filter 0.5s;
}
.gallery button:hover img { transform: scale(1.04); filter: saturate(1); }

.band-split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 3rem;
}
.band-split article p { color: rgba(232,220,200,0.78); }
.band-split .btn { margin-top: 1.2rem; }
@media (max-width: 960px) {
  .band, .gallery-wrap { padding-left: 7vw; padding-right: 7vw; }
  .band-split { grid-template-columns: 1fr; gap: 2.2rem; }
  /* gallery columns follow auto-fit */
  .site-header nav { gap: 0.8rem; }
}
@media (max-width: 560px) {
  /* gallery already collapses via auto-fit */
  .site-header { padding: 0.85rem 1.1rem 1.8rem; }
  .hero-actions .btn { width: 100%; text-align: center; }
}

.site-footer {
  padding: 2rem 8vw 3rem;
  border-top: 1px solid rgba(176,141,87,0.22);
  font-size: 0.78rem;
  color: rgba(232,220,200,0.55);
}
.fine { opacity: 0.7; }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(8,6,5,0.94);
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 2rem;
}
.lightbox[hidden] { display: none; }
.lightbox img { max-width: min(92vw, 1100px); max-height: 88vh; }
.lb-close {
  position: absolute;
  top: 1rem; right: 1.2rem;
  background: none;
  border: 0;
  color: var(--ivory);
  font-size: 2rem;
  cursor: pointer;
}

.pay-modal {
  position: fixed;
  inset: 0;
  background: rgba(8,6,5,0.92);
  z-index: 95;
  display: grid;
  place-items: center;
  padding: 1.4rem;
}
.pay-modal[hidden] { display: none; }
.pay-card {
  position: relative;
  width: min(420px, 100%);
  background: var(--ink);
  border: 1px solid rgba(176,141,87,0.35);
  padding: 2.2rem 1.6rem 1.6rem;
  text-align: center;
}
.pay-card h2 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 500;
  font-size: 1.8rem;
  margin: 0.2rem 0 0.6rem;
}
.pay-note {
  color: rgba(232,220,200,0.72);
  font-size: 0.88rem;
  margin: 0 0 1.2rem;
}
.pay-qr {
  display: block;
  width: 220px;
  height: 220px;
  margin: 0 auto 1.1rem;
  background: #E8DCC8;
  padding: 10px;
  box-sizing: border-box;
}
.pay-addr {
  font-size: 0.68rem;
  line-height: 1.45;
  word-break: break-all;
  color: var(--ivory);
  background: rgba(232,220,200,0.06);
  padding: 0.7rem 0.8rem;
  margin: 0 0 0.85rem;
}
.pay-fine {
  font-size: 0.78rem;
  line-height: 1.45;
  color: rgba(232,220,200,0.7);
  margin: 0 0 1.1rem;
}
.pay-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
}
.pay-actions .btn { margin: 0; }

.text-link {
  display: inline;
  padding: 0;
  margin: 0;
  border: 0;
  background: none;
  color: var(--brass);
  font: inherit;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}
.text-link:hover { color: var(--ivory); }

.toast {
  position: fixed;
  bottom: 1.4rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ivory);
  color: var(--ink);
  padding: 0.7rem 1.1rem;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  z-index: 100;
}
.toast[hidden] { display: none; }

@media (max-width: 800px) {
  .band-grid, .band-split, .gallery { grid-template-columns: 1fr; }
  .site-header nav { display: none; }
  .hero-copy { padding: 0 6vw 8vh; }
}
