:root {
  --bg: #070707;
  --bg-soft: #111111;
  --panel: rgba(255, 255, 255, 0.05);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --text: #f6efe5;
  --muted: #c6b8a7;
  --gold: #d5a04f;
  --gold-2: #f2d49d;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(213, 160, 79, 0.18), transparent 22%),
    linear-gradient(180deg, #0a0a0a 0%, #050505 100%);
}

.noise {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.08;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 6px 6px, 6px 6px;
  mix-blend-mode: soft-light;
}

img,
video {
  display: block;
  width: 100%;
}

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

.topbar,
.hero,
.section,
.marquee-band {
  width: min(1240px, calc(100% - 2rem));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  backdrop-filter: blur(18px);
}

.logo {
  display: flex;
  gap: 0.9rem;
  align-items: center;
}

.logo-mark {
  display: grid;
  place-items: center;
  width: 2.8rem;
  height: 2.8rem;
  border: 1px solid rgba(213, 160, 79, 0.4);
  border-radius: 50%;
  font-family: "Didot", "Baskerville", serif;
  color: var(--gold-2);
}

.logo-copy {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.logo-copy strong,
.kicker,
.artist-tag {
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.logo-copy em {
  font-style: normal;
  color: var(--muted);
  font-size: 0.82rem;
}

.nav {
  display: flex;
  gap: 1.15rem;
  flex-wrap: wrap;
  color: var(--muted);
}

.nav a:hover {
  color: var(--text);
}

.hero {
  padding: 1.5rem 0 3rem;
}

.hero-grid,
.story-grid,
.artists-grid,
.motion-grid,
.booking-panel {
  display: grid;
  gap: 1.4rem;
}

.hero-grid {
  grid-template-columns: 1fr 1.05fr;
  align-items: center;
}

.hero-grid-simple {
  grid-template-columns: 0.95fr 1.05fr;
}

.kicker {
  color: var(--gold);
  font-size: 0.75rem;
  margin: 0 0 1rem;
}

.banner-hero h1,
.hero h2,
.section-heading h2,
.artist-copy h3,
.booking-copy h2 {
  margin: 0;
  line-height: 0.94;
  font-family: "Didot", "Baskerville", Georgia, serif;
}

.banner-hero h1 {
  font-size: clamp(3.4rem, 8vw, 6.7rem);
  max-width: 9ch;
}

.hero h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  max-width: 11ch;
}

.lead,
.story-card p,
.artist-copy p,
.motion-copy p,
.booking-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin: 2rem 0 1.5rem;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 3.1rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 700;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-gold {
  background: linear-gradient(135deg, #c98d35, #f0cf90);
  color: #1a1205;
}

.button-ghost {
  border-color: rgba(213, 160, 79, 0.38);
  background: rgba(255, 255, 255, 0.02);
}

.button-full {
  width: 100%;
}

.banner-hero {
  position: relative;
  width: min(1320px, calc(100% - 1rem));
  aspect-ratio: 3306 / 1848;
  min-height: 0;
  margin: 1rem auto 0;
  border: 1px solid var(--line);
  border-radius: 36px;
  overflow: hidden;
  box-shadow: var(--shadow);
  background: transparent;
}

.banner-hero img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: left center;
  background: transparent;
}

.banner-title {
  position: absolute;
  left: 39%;
  right: 3.5%;
  bottom: 16%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35rem;
  text-align: left;
  text-transform: uppercase;
  color: #f6efe5;
  text-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
}

.banner-title span {
  font-size: clamp(0.95rem, 1.8vw, 1.3rem);
  letter-spacing: 0.22em;
}

.banner-title strong {
  font-family: "Didot", "Baskerville", Georgia, serif;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.95;
  max-width: 10ch;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
}

.hero-facts div,
.story-card,
.artist-card,
.motion-player,
.motion-copy,
.booking-panel {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
}

.hero-facts div {
  padding: 1rem;
  border-radius: 24px;
}

.hero-facts span,
.meta-row span,
.hero-plaque span {
  display: block;
  color: var(--muted);
  font-size: 0.83rem;
  margin-bottom: 0.25rem;
}

.hero-spotlight {
  margin: 0;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
}

.hero-spotlight img {
  height: 760px;
  object-fit: cover;
  object-position: center 24%;
}

.marquee-band {
  overflow: hidden;
  padding: 0.5rem 0 2rem;
}

.marquee-track {
  display: flex;
  gap: 2rem;
  min-width: max-content;
  color: rgba(242, 212, 157, 0.9);
  font-family: "Arial Narrow", "Avenir Next Condensed", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.75rem);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  padding: 2rem 0 4.5rem;
}

.section-heading {
  margin-bottom: 1.4rem;
}

.section-heading h2,
.booking-copy h2 {
  font-size: clamp(2.3rem, 5vw, 4.5rem);
  max-width: 12ch;
}

.story-grid,
.motion-grid,
.booking-panel {
  grid-template-columns: 0.95fr 1.05fr;
  align-items: stretch;
}

.story-card {
  border-radius: 30px;
  overflow: hidden;
}

.story-card-text {
  padding: 1.7rem;
}

.story-card-image img,
.artist-card img {
  height: 100%;
  object-fit: cover;
}

.artists-grid {
  grid-template-columns: 1.1fr 0.9fr;
}

.artist-card {
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  overflow: hidden;
}

.artist-image-contained {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: none;
  min-height: 0;
  margin: 0 auto 1.4rem;
  padding: 0;
  background: transparent;
  object-fit: contain;
  object-position: center center;
}

.artist-card-contained {
  align-items: center;
}

.artist-card-contained .artist-copy {
  align-self: stretch;
}

.artist-image-tupac {
  max-width: 544px;
}

.artist-image-tupac-stage {
  width: 100%;
  max-width: none;
  height: 520px;
  margin: 0;
  object-fit: cover;
  object-position: 56% 24%;
}

.artist-card-dark {
  background: linear-gradient(180deg, rgba(213, 160, 79, 0.08), rgba(255, 255, 255, 0.03));
}

.artist-copy {
  padding: 1.4rem 1.4rem 0.85rem;
}

.artist-copy h3 {
  font-size: clamp(1.9rem, 3vw, 3rem);
  margin: 0.4rem 0 0.6rem;
}

.profile-link {
  display: inline-block;
  margin-top: 0.6rem;
  color: var(--gold-2);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
}

.profile-link:hover {
  color: var(--text);
}

.motion-player,
.motion-copy {
  border-radius: 30px;
  overflow: hidden;
}

.motion-player video {
  height: 100%;
  min-height: 420px;
  object-fit: cover;
  background: #000;
}

.motion-copy {
  padding: 1.7rem;
}

.booking-panel {
  padding: 1.6rem;
  border-radius: 32px;
  background:
    radial-gradient(circle at top right, rgba(213, 160, 79, 0.16), transparent 35%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03));
}

.booking-meta {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.booking-meta-copy p {
  margin: 0;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--line);
}

.page-shell {
  padding-bottom: 4rem;
}

.page-hero {
  width: min(1240px, calc(100% - 2rem));
  margin: 1rem auto 0;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 1.4rem;
  align-items: stretch;
}

.page-copy,
.page-visual,
.detail-card,
.gallery-card {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
  border-radius: 30px;
}

.page-copy {
  padding: 2rem;
}

.page-copy h1,
.page-copy h2,
.detail-card h2 {
  margin: 0;
  line-height: 0.94;
  font-family: "Didot", "Baskerville", Georgia, serif;
}

.page-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  max-width: 10ch;
}

.page-subhead {
  margin: 1rem 0 0;
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.08rem;
}

.page-visual {
  overflow: hidden;
}

.page-visual img {
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  object-position: center 22%;
}

.detail-grid,
.gallery-grid {
  width: min(1240px, calc(100% - 2rem));
  margin: 2rem auto 0;
  display: grid;
  gap: 1.4rem;
}

.detail-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.detail-card {
  padding: 1.7rem;
}

.detail-card p,
.detail-card li {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

.detail-card ul {
  margin: 1rem 0 0;
  padding-left: 1.1rem;
}

.gallery-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.gallery-card {
  overflow: hidden;
}

.gallery-card img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.gallery-card figcaption {
  padding: 0.9rem 1rem 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.6;
}

.natural-gallery .gallery-card img {
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.snoop-gallery .gallery-card {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem;
}

.snoop-gallery .gallery-card img {
  width: 100%;
  max-height: 420px;
  height: auto;
  min-height: 0;
  object-fit: contain;
}

.snoop-fun-gallery {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: 280px;
}

.snoop-fun-gallery .fun-shot,
.snoop-fun-gallery .fun-shot-feature,
.snoop-fun-gallery .fun-shot-wide,
.snoop-fun-gallery .fun-shot-tall,
.snoop-fun-gallery .fun-shot:not(.fun-shot-wide):not(.fun-shot-tall) {
  grid-column: auto;
  grid-row: auto;
}

.snoop-fun-gallery .fun-shot img {
  height: 100%;
  object-fit: cover;
}

.crop-snoop-performance img {
  object-position: center 18%;
}

.booking-page {
  width: min(1040px, calc(100% - 2rem));
  margin: 2rem auto 0;
}

.booking-form {
  margin-top: 2rem;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
  display: grid;
  gap: 1.1rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.booking-form label,
.booking-form fieldset {
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  margin-top: 0.45rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(232, 213, 150, 0.25);
  border-radius: 16px;
  background: rgba(5, 8, 12, 0.72);
  color: var(--text);
  font: inherit;
  text-transform: none;
}

.booking-form textarea {
  resize: vertical;
}

.booking-form fieldset {
  border: 1px solid rgba(232, 213, 150, 0.18);
  border-radius: 20px;
  padding: 1rem;
}

.booking-form legend {
  padding: 0 0.45rem;
  color: var(--gold);
}

.check-option {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0.8rem 1rem 0 0;
  color: var(--text);
}

.check-option input {
  width: auto;
  margin: 0;
}

.hidden-field {
  display: none;
}

.crowd-preview {
  margin-top: 2rem;
}

.fun-gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 160px;
  gap: 0.8rem;
  margin-top: 2rem;
}

.fun-shot {
  border: 1px solid rgba(232, 213, 150, 0.2);
  border-radius: 24px;
  padding: 0;
  overflow: hidden;
  background: var(--panel);
  cursor: zoom-in;
  box-shadow: var(--shadow);
}

.fun-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.fun-shot:hover img {
  filter: saturate(1.08) contrast(1.05);
  transform: scale(1.035);
}

.crop-bishop img {
  object-position: center 24%;
}

.crop-cherokee img {
  object-position: center 12%;
}

.crop-cindy img {
  object-position: center 22%;
}

.crop-frank img {
  object-position: center 12%;
}

.crop-afeni img {
  object-position: 72% 18%;
}

.crop-micaal img {
  object-position: center 4%;
}

.fun-shot-wide {
  grid-column: span 3;
}

.fun-shot-feature {
  grid-column: span 4;
  grid-row: span 2;
}

.fun-shot-tall {
  grid-row: span 2;
}

.fun-shot:not(.fun-shot-wide):not(.fun-shot-tall) {
  grid-column: span 2;
}

.lightbox {
  width: min(920px, calc(100% - 2rem));
  border: 1px solid rgba(232, 213, 150, 0.3);
  border-radius: 28px;
  padding: 1rem;
  background: rgba(5, 8, 12, 0.96);
  box-shadow: var(--shadow);
  position: relative;
}

.lightbox::backdrop {
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(8px);
}

.lightbox img {
  width: 100%;
  max-height: 78vh;
  object-fit: contain;
  border-radius: 18px;
}

.lightbox.lightbox-small img {
  width: min(760px, 100%);
  display: block;
  margin: 0 auto;
}

.lightbox-caption {
  margin: 0.85rem 0 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.5;
  text-align: center;
}

.lightbox-close {
  float: right;
  margin-bottom: 0.75rem;
  border: 1px solid rgba(232, 213, 150, 0.3);
  border-radius: 999px;
  padding: 0.55rem 0.9rem;
  background: rgba(232, 213, 150, 0.12);
  color: var(--gold);
  font: inherit;
  cursor: pointer;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 1px solid rgba(232, 213, 150, 0.32);
  border-radius: 999px;
  padding: 0.7rem 0.9rem;
  background: rgba(5, 8, 12, 0.78);
  color: var(--gold);
  font: inherit;
  cursor: pointer;
}

.lightbox-prev {
  left: 1.2rem;
}

.lightbox-next {
  right: 1.2rem;
}

.page-actions {
  display: flex;
  gap: 0.9rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.gallery-actions {
  justify-content: center;
}

.section-heading-with-cta {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
}

.page-section {
  width: min(1240px, calc(100% - 2rem));
  margin: 2rem auto 0;
}

.feature-split {
  width: min(1240px, calc(100% - 2rem));
  margin: 2rem auto 0;
  display: grid;
  grid-template-columns: 1.02fr 0.98fr;
  gap: 1.4rem;
  align-items: stretch;
}

.feature-split-reverse {
  grid-template-columns: 0.98fr 1.02fr;
}

.feature-media,
.feature-copy {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
  border-radius: 30px;
  overflow: hidden;
}

.feature-media img {
  width: 100%;
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.feature-copy {
  padding: 1.8rem;
}

.heading-with-poster {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 112px;
  gap: 1rem;
  align-items: start;
}

.heading-with-poster h2 {
  max-width: none;
}

.poster-card {
  margin: 0;
}

.poster-card img {
  width: 100%;
  border: 1px solid rgba(232, 213, 150, 0.26);
  border-radius: 14px;
  box-shadow: var(--shadow);
}

.feature-copy h2 {
  margin: 0;
  line-height: 0.94;
  font-family: "Didot", "Baskerville", Georgia, serif;
  font-size: clamp(2.1rem, 4vw, 3.8rem);
  max-width: 12ch;
}

.feature-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1.02rem;
}

.video-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.4rem;
}

.video-card,
.video-copy {
  border: 1px solid var(--line);
  background: linear-gradient(180deg, var(--panel-strong), var(--panel));
  box-shadow: var(--shadow);
  border-radius: 30px;
  overflow: hidden;
}

.video-card video {
  width: 100%;
  min-height: 420px;
  background: #000;
}

.video-copy {
  padding: 1.7rem;
}

.video-copy p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 1rem;
}

@media (max-width: 980px) {
  .hero-grid,
  .story-grid,
  .artists-grid,
  .motion-grid,
  .booking-panel,
  .hero-facts,
  .page-hero,
  .detail-grid,
  .gallery-grid,
  .form-grid,
  .fun-gallery,
  .video-grid,
  .feature-split,
  .feature-split-reverse {
    grid-template-columns: 1fr;
  }

  .fun-gallery {
    grid-auto-rows: auto;
  }

  .fun-shot,
  .fun-shot-feature,
  .fun-shot-wide,
  .fun-shot-tall,
  .fun-shot:not(.fun-shot-wide):not(.fun-shot-tall) {
    grid-column: auto;
    grid-row: auto;
  }

  .fun-shot img {
    height: auto;
  }

  .banner-hero {
    aspect-ratio: auto;
  }

  .banner-title {
    left: 38%;
    right: 4%;
    bottom: 12%;
  }

  .hero-spotlight img {
    height: 620px;
  }

  .page-visual img {
    min-height: 480px;
  }

  .section-heading-with-cta {
    flex-direction: column;
  }
}

@media (max-width: 640px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav {
    gap: 0.75rem;
    font-size: 0.95rem;
  }

  .topbar,
  .hero,
  .section,
  .marquee-band {
    width: min(100% - 1.25rem, 1240px);
  }

  .banner-hero {
    width: min(100% - 0.5rem, 1320px);
    border-radius: 26px;
  }

  .banner-title {
    align-items: flex-start;
    text-align: left;
    left: 46%;
    right: 0.85rem;
    bottom: 0.85rem;
    gap: 0.2rem;
  }

  .banner-title span {
    font-size: 0.78rem;
    letter-spacing: 0.16em;
  }

  .banner-title strong {
    font-size: clamp(1.35rem, 6vw, 2.05rem);
    max-width: 8ch;
  }

  .hero-spotlight img {
    height: 480px;
  }

  .button {
    width: 100%;
  }
}
