:root {
  --bg: #07060a;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.72);
  --border: rgba(212, 175, 55, 0.22);
  --gold: #d4af37;
  --gold-2: #f2d36b;
  --gold-deep: #a97c17;

  --radius: 16px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.45);

  --container: 1040px;

  --display-font: "Barnboard W90 Regular", Impact, Haettenschweiler,
    "Arial Narrow Bold", "Franklin Gothic Medium", "Arial Black", ui-sans-serif,
    system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial,
    "Apple Color Emoji", "Segoe UI Emoji";
  background: radial-gradient(
      900px 700px at 15% 0%,
      rgba(212, 175, 55, 0.14),
      transparent 60%
    ),
    radial-gradient(
      900px 700px at 85% 10%,
      rgba(212, 175, 55, 0.08),
      transparent 55%
    ),
    var(--bg);
  color: var(--text);
  line-height: 1.55;
}

a {
  color: rgba(242, 211, 107, 0.95);
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 3px;
}

a:hover {
  text-decoration-color: rgba(242, 211, 107, 0.8);
}

code {
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono",
    "Courier New", monospace;
  font-size: 0.95em;
}

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

.skip-link {
  position: absolute;
  left: -999px;
  top: 0.75rem;
  padding: 0.6rem 0.9rem;
  background: #111827;
  border: 1px solid var(--border);
  border-radius: 10px;
  z-index: 50;
}
.skip-link:focus {
  left: 0.75rem;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(11, 13, 18, 0.55);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.16);
  transform: translateZ(0);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1rem;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.show-banner {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  border-radius: 999px;
  border: 1px solid rgba(242, 211, 107, 0.45);
  background: radial-gradient(
      130% 220% at 20% 0%,
      rgba(242, 211, 107, 0.18),
      rgba(255, 255, 255, 0.02) 55%,
      rgba(255, 255, 255, 0.02)
    ),
    rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.1) inset, 0 0 22px rgba(242, 211, 107, 0.12);
}

.show-banner:hover {
  border-color: rgba(242, 211, 107, 0.7);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.16) inset, 0 0 30px rgba(242, 211, 107, 0.18);
}

.show-banner-sub {
  color: rgba(255, 255, 255, 0.82);
}

.show-banner strong {
  color: rgba(242, 211, 107, 0.98);
}

.show-banner:focus-visible {
  outline: 3px solid rgba(242, 211, 107, 0.55);
  outline-offset: 3px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.brand-mark {
  border-radius: 10px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.03);
  box-shadow: var(--shadow);
}

.brand-name {
  font-family: var(--display-font);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

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

.site-nav a {
  text-decoration: none;
  color: var(--muted);
  padding: 0.4rem 0.6rem;
  border-radius: 10px;
}

.site-nav a:hover {
  color: var(--text);
  background: rgba(212, 175, 55, 0.09);
}

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 0.5rem 0.6rem;
  border-radius: 12px;
}

.nav-toggle-bars {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  position: relative;
}
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--text);
}
.nav-toggle-bars::before {
  top: -6px;
}
.nav-toggle-bars::after {
  top: 6px;
}

.hero {
  position: relative;
  min-height: clamp(500px, 72vh, 720px);
  display: grid;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: var(--bg);
  z-index: 0;
}

.hero-bg::before {
  content: "";
  position: absolute;
  inset: -30px;
  background-image: url("assets/images/hero.png");
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  filter: blur(18px) saturate(1.15) contrast(1.08);
  transform: translateZ(0) scale(1.08);
  opacity: 0.75;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: linear-gradient(
    to bottom,
    rgba(7, 6, 10, 0.24),
    rgba(7, 6, 10, 0.94)
  );
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  opacity: 0.09;
  mix-blend-mode: normal;
  transform: translateZ(0);
}

.hero-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(
      0deg,
      rgba(255, 255, 255, 0.06) 0px,
      rgba(255, 255, 255, 0.06) 1px,
      transparent 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      90deg,
      rgba(242, 211, 107, 0.06) 0px,
      rgba(242, 211, 107, 0.06) 1px,
      transparent 1px,
      transparent 4px
    );
  background-size: 220px 220px, 300px 300px;
  filter: contrast(1.22) saturate(1.2);
  animation: hero-grain 6.2s steps(12) infinite;
}

.hero-overlay::after {
  content: "";
  position: absolute;
  inset: -20% -40%;
  background: linear-gradient(
    110deg,
    transparent 42%,
    rgba(242, 211, 107, 0.52) 50%,
    transparent 58%
  );
  transform: translateX(-25%);
  animation: hero-shimmer 6.8s ease-in-out infinite;
  filter: blur(0.2px);
  opacity: 0.85;
}

@keyframes hero-grain {
  0% {
    transform: translate3d(0, 0, 0);
  }
  20% {
    transform: translate3d(-2%, 1%, 0);
  }
  40% {
    transform: translate3d(1%, -2%, 0);
  }
  60% {
    transform: translate3d(3%, 1%, 0);
  }
  80% {
    transform: translate3d(-1%, 2%, 0);
  }
  100% {
    transform: translate3d(0, 0, 0);
  }
}

@keyframes hero-shimmer {
  0% {
    transform: translateX(-35%) rotate(0.001deg);
  }
  55% {
    transform: translateX(35%) rotate(0.001deg);
  }
  100% {
    transform: translateX(35%) rotate(0.001deg);
  }
}

.hero-inner {
  position: relative;
  z-index: 2;
  padding: 4.75rem 0 3rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 1.75rem;
}

.hero-copy {
  background: rgba(7, 6, 10, 0.55);
  border: 1px solid rgba(242, 211, 107, 0.18);
  border-radius: 18px;
  padding: 1.2rem 1.25rem;
  box-shadow: 0 20px 55px rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateZ(0);
}

.hero-art {
  justify-self: end;
  width: 100%;
  max-width: 520px;
}

.hero-art img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 18px 42px rgba(0, 0, 0, 0.6));
}

.kicker {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  background: rgba(212, 175, 55, 0.12);
  border: 1px solid rgba(212, 175, 55, 0.22);
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-weight: 600;
}

.hero-title {
  margin: 0.8rem 0 0.4rem;
  font-family: var(--display-font);
  font-size: clamp(2.1rem, 6vw, 4.1rem);
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-shadow: 0 0 2px rgba(242, 211, 107, 0.22),
    0 0 18px rgba(242, 211, 107, 0.22),
    0 0 54px rgba(212, 175, 55, 0.2),
    0 14px 36px rgba(0, 0, 0, 0.7);
}

@supports (-webkit-text-stroke: 1px black) {
  .hero-title {
    -webkit-text-stroke: 1px rgba(242, 211, 107, 0.32);
  }
}

.hero-subtitle {
  margin: 0;
  max-width: 62ch;
  font-family: var(--display-font);
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.08rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-shadow: 0 0 18px rgba(0, 0, 0, 0.65);
}

.hero-cta {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.08) inset;
}

.btn:hover {
  background: rgba(255, 255, 255, 0.07);
  box-shadow: 0 0 0 1px rgba(212, 175, 55, 0.18) inset,
    0 0 22px rgba(242, 211, 107, 0.18),
    0 0 52px rgba(212, 175, 55, 0.12);
}

.btn.primary {
  border-color: rgba(212, 175, 55, 0.55);
  background: linear-gradient(
    135deg,
    rgba(242, 211, 107, 0.98),
    rgba(169, 124, 23, 0.98)
  );
  color: rgba(0, 0, 0, 0.88);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.12) inset,
    0 0 26px rgba(242, 211, 107, 0.22),
    0 10px 30px rgba(0, 0, 0, 0.5);
}

.show-card {
  display: grid;
  grid-template-columns: minmax(220px, 320px) minmax(0, 1fr);
  gap: 1.05rem;
  align-items: center;
}

.show-poster {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  border: 1px solid rgba(242, 211, 107, 0.22);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.35) inset, 0 14px 36px rgba(0, 0, 0, 0.55);
}

.show-meta {
  min-width: 0;
}

.show-date {
  margin: 0 0 0.35rem;
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.show-title {
  margin: 0 0 0.85rem;
  font-size: 1.25rem;
  line-height: 1.2;
}

.show-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.btn.primary:hover {
  filter: brightness(1.03);
}

.social-row {
  margin-top: 1.4rem;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.icon-link {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  text-decoration: none;
}

.icon-link:hover {
  background: rgba(212, 175, 55, 0.09);
}

.icon-link svg {
  width: 22px;
  height: 22px;
  fill: rgba(255, 255, 255, 0.92);
}

.section {
  padding: 3.25rem 0;
}

/* Progressive enhancement: keep content visible if JS fails to load. */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.reveal-in {
  animation: section-reveal 520ms ease both;
  will-change: opacity, transform;
}

.reveal.reveal-skip.reveal-in {
  animation: none;
}

@keyframes section-reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 1.4rem;
}

h2 {
  margin: 0 0 0.8rem;
  font-size: 1.7rem;
  color: rgba(242, 211, 107, 0.96);
}

.muted {
  color: var(--muted);
  margin: 0;
}

.grid.two {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
  align-items: start;
}

.card {
  align-self: start;
  height: fit-content;
  background: linear-gradient(
      180deg,
      rgba(242, 211, 107, 0.07),
      rgba(255, 255, 255, 0.03) 38%,
      rgba(255, 255, 255, 0.02)
    ),
    var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.card:hover {
  border-color: rgba(242, 211, 107, 0.36);
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.55);
  transform: translateY(-1px);
}

.card.compact {
  padding: 0.95rem;
}

.card-title {
  margin: 0 0 0.6rem;
  font-size: 1.05rem;
}

.card-title-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
}

.chip {
  appearance: none;
  border: 1px solid rgba(242, 211, 107, 0.3);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(242, 211, 107, 0.95);
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0.02em;
  cursor: pointer;
  white-space: nowrap;
}

.chip:hover {
  border-color: rgba(242, 211, 107, 0.55);
  box-shadow: 0 0 18px rgba(242, 211, 107, 0.14);
}

.chip:focus-visible {
  outline: 3px solid rgba(242, 211, 107, 0.55);
  outline-offset: 3px;
}

.facts,
.link-list {
  margin: 0;
  padding-left: 1.1rem;
  color: rgba(255, 255, 255, 0.86);
}

.facts li,
.link-list li {
  margin: 0.4rem 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 0.85rem;
}

.photo-strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 320px);
  gap: 0.85rem;
  overflow-x: auto;
  padding-bottom: 0.4rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.photo-strip::-webkit-scrollbar {
  height: 10px;
}

.photo-strip::-webkit-scrollbar-thumb {
  background: rgba(242, 211, 107, 0.18);
  border-radius: 999px;
}

.photo-strip::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 999px;
}

.thumb {
  scroll-snap-align: start;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
  text-decoration: none;
  position: relative;
}

.thumb img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  background: rgba(0, 0, 0, 0.22);
  aspect-ratio: 4 / 3;
  transform: scale(1.01);
}

.thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(90% 90% at 20% 10%, rgba(242, 211, 107, 0.14), transparent 60%);
  opacity: 0;
  transition: opacity 160ms ease;
}

.thumb:hover::after {
  opacity: 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
}

.lightbox[hidden] {
  display: none !important;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  backdrop-filter: blur(10px);
  z-index: 0;
}

.lightbox-dialog {
  position: relative;
  z-index: 1;
  width: min(1100px, calc(100vw - 1.5rem));
  height: min(760px, calc(100vh - 1.5rem));
  min-width: 0;
  min-height: 0;
  border-radius: 18px;
  border: 1px solid rgba(242, 211, 107, 0.22);
  background: rgba(7, 6, 10, 0.55);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(12px);
  display: grid;
  grid-template-columns: 56px 1fr 56px;
  grid-template-rows: 56px 1fr;
  overflow: hidden;
}

.lightbox-close {
  grid-column: 3;
  grid-row: 1;
  justify-self: end;
  align-self: start;
  margin: 10px 10px 0 0;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(242, 211, 107, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(242, 211, 107, 0.95);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-close:hover {
  border-color: rgba(242, 211, 107, 0.55);
  box-shadow: 0 0 18px rgba(242, 211, 107, 0.14);
}

.lightbox-nav {
  grid-row: 2;
  width: 44px;
  height: 44px;
  margin: 0 auto 16px;
  align-self: center;
  border-radius: 14px;
  border: 1px solid rgba(242, 211, 107, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: rgba(242, 211, 107, 0.95);
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.lightbox-nav:hover {
  border-color: rgba(242, 211, 107, 0.55);
  box-shadow: 0 0 22px rgba(242, 211, 107, 0.14);
}

.lightbox-nav.prev {
  grid-column: 1;
}

.lightbox-nav.next {
  grid-column: 3;
}

.lightbox-figure {
  grid-column: 2;
  grid-row: 1 / span 2;
  margin: 0;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  padding: 14px;
  gap: 10px;
  min-width: 0;
  min-height: 0;
}

.lightbox-figure img {
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  object-fit: contain;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.28);
}

.lightbox-cap {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 700;
  letter-spacing: 0.02em;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(242, 211, 107, 0.14);
  border-radius: 12px;
  padding: 0.45rem 0.6rem;
  overflow: auto;
  max-height: 5.2em;
  white-space: normal;
}

.shot {
  margin: 0;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.18);
  background: rgba(255, 255, 255, 0.04);
  box-shadow: var(--shadow);
}

.shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 3 / 2;
  transform: scale(1.01);
}

.embed-note {
  border: 1px dashed rgba(255, 255, 255, 0.25);
  border-radius: 12px;
  padding: 0.9rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.03);
}

.site-footer {
  border-top: 1px solid rgba(212, 175, 55, 0.16);
  padding: 2.2rem 0;
  background: rgba(0, 0, 0, 0.2);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

@media (max-width: 860px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero-art {
    justify-self: start;
    max-width: 560px;
  }
  .grid.two {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .hero-copy {
    padding: 1.05rem 1rem;
  }
  .show-card {
    grid-template-columns: 1fr;
  }
  .show-banner-sub {
    display: none;
  }
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }
  .site-nav {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    padding: 0.75rem 1rem 1rem;
    gap: 0.25rem;
    background: rgba(11, 13, 18, 0.85);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }
  .site-nav.open {
    display: flex;
  }
  .site-nav a {
    padding: 0.7rem 0.6rem;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .reveal.reveal-in {
    animation: none;
  }
  .hero-overlay {
    opacity: 0.07;
  }
  .hero-overlay::before,
  .hero-overlay::after {
    animation: none;
  }
}
