@import url('https://fonts.googleapis.com/css2?family=Anton&family=Montserrat:wght@400;500;600;700;800;900&display=swap');

:root {
  --red: #e71924;
  --red2: #ff2a36;
  --deep-red: #350608;
  --black: #030303;
  --panel: rgba(7, 7, 8, 0.86);
  --panel2: rgba(18, 16, 17, 0.86);
  --line: rgba(231, 25, 36, 0.72);
  --line-soft: rgba(231, 25, 36, 0.25);
  --white: #f8f6f4;
  --muted: #cbc5c2;
  --dim: #8b8584;
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --shadow: 0 0 36px rgba(231, 25, 36, 0.22), 0 24px 80px rgba(0, 0, 0, 0.78);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Montserrat, Arial, sans-serif;
  color: var(--white);
  min-height: 100vh;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 25, 37, 0.28), transparent 27rem),
    radial-gradient(circle at 50% 100%, rgba(255, 25, 37, 0.22), transparent 24rem),
    linear-gradient(180deg, #090504 0%, #050505 48%, #090403 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(231,25,36,.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(231,25,36,.15) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: linear-gradient(to bottom, rgba(0,0,0,.85), rgba(0,0,0,.25), rgba(0,0,0,.75));
  opacity: .35;
  z-index: -2;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,0,0,.75), transparent 40%, transparent 60%, rgba(0,0,0,.75)),
    radial-gradient(circle at center, transparent 0%, rgba(0,0,0,.45) 80%);
  z-index: -1;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.container {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(20px);
  background: rgba(3, 3, 3, 0.72);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.header-inner {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 185px;
}

.brand-mark {
  width: 42px;
  height: 42px;
}

.brand-word {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.brand-word strong {
  font-family: Anton, Impact, sans-serif;
  font-size: 24px;
  letter-spacing: .12em;
}

.brand-word span {
  color: var(--red2);
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .28em;
  font-weight: 800;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 24px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--red2), #bd0d17);
  color: #fff;
  font-weight: 900;
  letter-spacing: .06em;
  text-transform: uppercase;
  border: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 32px rgba(231,25,36,.22);
  transition: transform .2s ease, filter .2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.btn.ghost {
  background: rgba(0,0,0,.25);
  border-color: rgba(255,255,255,.2);
  box-shadow: none;
}

.btn.small {
  min-height: 40px;
  padding: 0 16px;
  font-size: 11px;
}

.page-shell {
  padding: 28px 0 68px;
}

.logo-stage {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 34px clamp(18px, 4vw, 56px);
  background:
    radial-gradient(circle at 50% 0%, rgba(255,255,255,.10), transparent 18rem),
    linear-gradient(135deg, rgba(120, 18, 24, .35), rgba(4, 4, 5, .88) 52%, rgba(50, 8, 9, .42));
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}

.logo-stage::before,
.card::before,
.vibe-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(110deg, rgba(255,255,255,.05) 0 1px, transparent 1px 19px);
  opacity: .26;
  pointer-events: none;
}

.logo-stage::after,
.vibe-card::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: min(220px, 40%);
  height: 3px;
  top: -1px;
  background: var(--red2);
  filter: blur(.5px);
  box-shadow: 0 0 28px var(--red2), 0 0 65px var(--red2);
}

.main-logo {
  width: min(620px, 100%);
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
  margin-top: 24px;
}

.card,
.vibe-card,
.feature-card,
.event-card,
.package-card,
.form-card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 20% 0%, rgba(231,25,36,.12), transparent 22rem),
    linear-gradient(145deg, rgba(8, 8, 9, .92), rgba(3, 3, 3, .96));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.hero-card {
  padding: clamp(28px, 4vw, 52px);
  min-height: 470px;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: .16em;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 20px;
}

.kicker::before {
  content: "";
  width: 17px;
  height: 17px;
  border-radius: 50%;
  background: var(--red2);
  box-shadow: 0 0 16px rgba(255,42,54,.8);
}

h1, h2, h3, p { margin-top: 0; }

h1,
.display {
  font-family: Anton, Impact, sans-serif;
  letter-spacing: -.015em;
  line-height: .98;
  font-size: clamp(42px, 5.8vw, 74px);
  margin-bottom: 22px;
  max-width: 100%;
}

.red { color: var(--red2); }

.lead {
  color: var(--muted);
  font-size: clamp(15px, 1.7vw, 19px);
  line-height: 1.65;
  max-width: 780px;
}

.short-line {
  width: 110px;
  height: 3px;
  background: var(--red2);
  margin: 28px 0 24px;
  box-shadow: 0 0 18px rgba(255,42,54,.65);
}

.value-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 42px 0 36px;
}

.value {
  text-align: center;
  padding: 0 18px;
  border-right: 1px solid rgba(255,255,255,.22);
}

.value:last-child { border-right: 0; }

.value svg {
  width: 52px;
  height: 52px;
  margin: 0 auto 16px;
  color: var(--red2);
  filter: drop-shadow(0 0 12px rgba(255,42,54,.45));
}

.value strong {
  display: block;
  text-transform: uppercase;
  font-size: 17px;
  letter-spacing: .05em;
  margin-bottom: 8px;
}

.value span {
  color: var(--muted);
  line-height: 1.45;
  font-size: 15px;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.signup {
  margin-top: 20px;
}

.signup-title {
  font-size: 16px;
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .14em;
  margin-bottom: 14px;
}

.input-wrap {
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 10px;
  height: 60px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 18px;
  background: rgba(0,0,0,.34);
}

.input-wrap svg {
  width: 22px;
  color: var(--muted);
  flex: 0 0 auto;
}

input,
textarea,
select {
  width: 100%;
  background: transparent;
  border: 0;
  outline: 0;
  color: var(--white);
  font: inherit;
  min-width: 0;
}

input::placeholder,
textarea::placeholder { color: rgba(255,255,255,.52); }

.form-note {
  color: var(--muted);
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  font-size: 15px;
}

.form-note svg { width: 18px; }

.side-card {
  padding: 30px;
  display: grid;
  align-content: center;
  min-height: 470px;
  background:
    linear-gradient(rgba(3,3,3,.62), rgba(3,3,3,.88)),
    radial-gradient(circle at 50% 10%, rgba(255,42,54,.42), transparent 22rem);
}

.side-card h2 {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(30px, 4.2vw, 54px);
  line-height: 1;
  margin-bottom: 18px;
}

.side-card .poster-box {
  margin-top: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255,255,255,.12);
  padding: 24px;
  background: rgba(255,255,255,.04);
}

.section {
  margin-top: 52px;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-title {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(30px, 4.5vw, 52px);
  line-height: 1.02;
  margin-bottom: 10px;
}

.section-subtitle {
  color: var(--muted);
  max-width: 720px;
  line-height: 1.65;
  font-size: 16px;
}

.feature-grid,
.events-grid,
.package-grid {
  display: grid;
  gap: 20px;
}

.feature-grid {
  grid-template-columns: repeat(4, 1fr);
}

.events-grid,
.package-grid {
  grid-template-columns: repeat(3, 1fr);
}

.feature-card,
.event-card,
.package-card {
  padding: 26px;
  border-radius: var(--radius-lg);
  border-color: var(--line-soft);
  box-shadow: 0 12px 42px rgba(0,0,0,.45);
}

.feature-card svg,
.package-card svg {
  width: 42px;
  height: 42px;
  color: var(--red2);
  margin-bottom: 18px;
}

.feature-card h3,
.event-card h3,
.package-card h3 {
  font-size: 17px;
  text-transform: uppercase;
  letter-spacing: .05em;
  line-height: 1.25;
}

.feature-card p,
.event-card p,
.package-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 0;
  font-size: 15px;
}

.event-date {
  display: inline-grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--red2), #8d0710);
  font-weight: 900;
  text-align: center;
  margin-bottom: 20px;
  box-shadow: 0 10px 26px rgba(231,25,36,.28);
  font-size: 15px;
}

.event-card .location {
  color: var(--muted);
  margin-bottom: 18px;
}

.ad-band {
  padding: clamp(28px, 4vw, 44px);
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  gap: 24px;
  align-items: center;
  border-radius: var(--radius-xl);
}

.ad-slots {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.ad-slot {
  border: 1px dashed rgba(255,255,255,.28);
  border-radius: 16px;
  padding: 16px;
  background: rgba(255,255,255,.035);
}

.ad-slot strong {
  color: var(--red2);
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: .1em;
}

.ad-slot span {
  display: block;
  color: var(--muted);
  margin-top: 7px;
  font-size: 14px;
  line-height: 1.5;
}

.footer {
  border-top: 1px solid rgba(255,255,255,.08);
  margin-top: 68px;
  padding: 34px 0;
  color: var(--muted);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer .brand-mark { width: 36px; height: 36px; }

.footer-links {
  display: flex;
  gap: 18px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .09em;
}

/* Vibe list page */
.vibe-page .page-shell {
  padding-top: 24px;
}

.vibe-layout {
  max-width: 980px;
  margin: 0 auto;
}

.vibe-card {
  padding: clamp(28px, 4vw, 48px);
  margin-top: 24px;
}

.vibe-card h1 {
  font-size: clamp(40px, 5.8vw, 70px);
}

.vibe-card .lead {
  max-width: 720px;
}

.vibe-form {
  margin-top: 40px;
}

/* Advertise page */
.form-card {
  padding: 30px;
  border-radius: var(--radius-lg);
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form .input-wrap {
  height: 56px;
}

textarea {
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 12px;
  background: rgba(0,0,0,.35);
  min-height: 130px;
  padding: 18px 20px;
  resize: vertical;
}

/* responsive */
@media (max-width: 1180px) {
  .hero-grid,
  .ad-band {
    grid-template-columns: 1fr;
  }
  .side-card,
  .hero-card { min-height: auto; }
}

@media (max-width: 980px) {
  .feature-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .events-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .nav { display: none; }
  .value-row {
    grid-template-columns: 1fr;
  }
  .value {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.18);
    padding: 22px 0;
  }
  .value:last-child { border-bottom: 0; }
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100% - 24px, 1080px);
  }
  .header-inner {
    min-height: 68px;
  }
  .brand-word strong { font-size: 21px; }
  .brand-word span { font-size: 8px; }
  .brand-mark { width: 38px; height: 38px; }
  .logo-stage,
  .card,
  .vibe-card {
    border-radius: 24px;
  }
  h1,
  .display,
  .vibe-card h1 {
    font-size: 38px;
  }
  .hero-card,
  .side-card,
  .vibe-card,
  .form-card {
    padding: 24px;
  }
  .lead,
  .section-subtitle,
  .feature-card p,
  .event-card p,
  .package-card p,
  .ad-slot span {
    font-size: 14px;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .input-wrap {
    height: 56px;
  }
  .btn {
    width: 100%;
  }
  .cta-row {
    flex-direction: column;
  }
  .ad-slots {
    grid-template-columns: 1fr;
  }
}


/* Sizing pass: prevents logo/text clipping on laptop widths */
.logo-stage {
  padding: clamp(24px, 4vw, 42px) clamp(18px, 5vw, 52px);
}

.stage-logo-lockup {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 3.2vw, 38px);
  max-width: 880px;
  margin: 0 auto;
}

.stage-logo-mark {
  width: clamp(110px, 17vw, 190px);
  flex: 0 0 auto;
  filter: drop-shadow(0 0 22px rgba(255, 42, 54, .22));
}

.stage-logo-type {
  min-width: 0;
  text-align: left;
}

.stage-logo-name {
  display: flex;
  align-items: baseline;
  gap: clamp(18px, 3.2vw, 38px);
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(56px, 8vw, 105px);
  line-height: .86;
  letter-spacing: .08em;
  color: var(--white);
  white-space: nowrap;
}

.stage-logo-name .red-letter {
  color: var(--red2);
}

.stage-logo-sub {
  margin-top: clamp(14px, 1.5vw, 22px);
  color: var(--red2);
  font-weight: 900;
  font-size: clamp(18px, 2.5vw, 34px);
  letter-spacing: clamp(.24em, .8vw, .48em);
  white-space: nowrap;
}

.stage-logo-line {
  margin-top: clamp(14px, 1.6vw, 22px);
  display: flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  font-size: clamp(12px, 1.55vw, 20px);
  font-weight: 900;
  letter-spacing: clamp(.14em, .52vw, .34em);
  white-space: nowrap;
}

.stage-logo-line i {
  display: block;
  width: clamp(34px, 7vw, 72px);
  height: 4px;
  border-radius: 999px;
  background: var(--red2);
  box-shadow: 0 0 18px rgba(255,42,54,.55);
}

.hero-grid {
  grid-template-columns: 1fr;
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}

.hero-card,
.side-card {
  min-height: unset;
  padding: clamp(26px, 4.2vw, 50px);
}

h1,
.display {
  font-size: clamp(42px, 6.2vw, 72px);
  line-height: 1.02;
}

.side-card h2 {
  font-size: clamp(34px, 5.2vw, 58px);
}

.card,
.vibe-card,
.feature-card,
.event-card,
.package-card,
.form-card {
  overflow: hidden;
}

@media (max-width: 760px) {
  .stage-logo-lockup {
    flex-direction: column;
    gap: 14px;
  }

  .stage-logo-type {
    text-align: center;
  }

  .stage-logo-name {
    justify-content: center;
    font-size: clamp(44px, 13vw, 74px);
    gap: clamp(12px, 4vw, 24px);
  }

  .stage-logo-sub {
    font-size: clamp(14px, 4vw, 22px);
    letter-spacing: .22em;
  }

  .stage-logo-line {
    justify-content: center;
    white-space: normal;
    font-size: 12px;
    letter-spacing: .16em;
    gap: 10px;
  }

  .stage-logo-line i {
    width: 34px;
  }
}

@media (max-width: 430px) {
  h1,
  .display,
  .vibe-card h1 {
    font-size: 36px;
  }

  .kicker {
    font-size: 11px;
    letter-spacing: .12em;
  }
}


/* Neville “NATO” Brown founder section */
.neville-card {
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-color: rgba(231, 25, 36, 0.78);
}

.neville-photo-wrap {
  position: relative;
  z-index: 2;
}

.neville-photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  border: 1px solid rgba(231, 25, 36, 0.78);
  box-shadow: 0 0 34px rgba(231, 25, 36, 0.26), 0 28px 70px rgba(0,0,0,.62);
  filter: saturate(.95) contrast(1.03);
}

.neville-photo-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  background: rgba(0,0,0,.72);
  backdrop-filter: blur(12px);
  color: var(--white);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  font-size: 13px;
}

.neville-copy {
  position: relative;
  z-index: 2;
}

.neville-copy .section-title {
  text-align: left;
  margin-bottom: 0;
}

.neville-copy p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.neville-copy strong {
  color: var(--white);
}

.neville-copy blockquote {
  margin: 28px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--red2);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  color: var(--white);
  font-size: clamp(20px, 2.5vw, 30px);
  line-height: 1.35;
  font-family: Anton, Impact, sans-serif;
  letter-spacing: .02em;
  box-shadow: inset 0 0 30px rgba(231,25,36,.08);
}

@media (max-width: 900px) {
  .neville-card {
    grid-template-columns: 1fr;
  }

  .neville-photo-wrap {
    max-width: 420px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .neville-card {
    padding: 24px;
  }

  .neville-copy p {
    font-size: 14px;
  }

  .neville-photo {
    border-radius: 22px;
  }
}




/* Floating Calypso music button */
.music-anchor {
  display: block;
  height: 1px;
  scroll-margin-top: 100px;
}

.floating-music {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 9999;
}

.floating-music-button {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 245px;
  padding: 14px 18px;
  border: 1px solid rgba(231, 25, 36, 0.85);
  border-radius: 999px;
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 42, 54, .28), transparent 7rem),
    linear-gradient(135deg, rgba(10,10,10,.96), rgba(40,4,6,.96));
  color: var(--white);
  box-shadow: 0 0 28px rgba(231,25,36,.35), 0 18px 44px rgba(0,0,0,.58);
  cursor: pointer;
  font-family: Montserrat, Arial, sans-serif;
  text-align: left;
  backdrop-filter: blur(14px);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.floating-music-button:hover {
  transform: translateY(-3px);
  border-color: var(--red2);
  box-shadow: 0 0 34px rgba(255,42,54,.48), 0 22px 50px rgba(0,0,0,.68);
}

.music-button-icon {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: linear-gradient(135deg, var(--red2), #9c0710);
  box-shadow: 0 0 20px rgba(255,42,54,.58);
}

.music-button-icon span {
  display: block;
  width: 4px;
  border-radius: 999px;
  background: #fff;
}

.music-button-icon span:nth-child(1) { height: 14px; }
.music-button-icon span:nth-child(2) { height: 24px; }
.music-button-icon span:nth-child(3) { height: 17px; }

.floating-music.is-playing .music-button-icon span:nth-child(1) {
  animation: musicPulse 0.75s infinite ease-in-out alternate;
}

.floating-music.is-playing .music-button-icon span:nth-child(2) {
  animation: musicPulse 0.55s infinite ease-in-out alternate;
}

.floating-music.is-playing .music-button-icon span:nth-child(3) {
  animation: musicPulse 0.9s infinite ease-in-out alternate;
}

.music-button-text {
  display: grid;
  gap: 3px;
}

.music-button-text strong {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.1;
}

.music-button-text small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.2;
}

@keyframes musicPulse {
  from { transform: scaleY(.55); opacity: .65; }
  to { transform: scaleY(1.25); opacity: 1; }
}

@media (max-width: 640px) {
  .floating-music {
    left: 12px;
    right: 12px;
    bottom: 14px;
  }

  .floating-music-button {
    width: 100%;
    min-width: 0;
    justify-content: flex-start;
    padding: 12px 14px;
  }

  .music-button-icon {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }
}


/* Live event feature */
.live-event-section {
  scroll-margin-top: 96px;
}

.live-event-card {
  display: grid;
  grid-template-columns: minmax(280px, 420px) 1fr;
  gap: clamp(26px, 5vw, 58px);
  align-items: center;
  padding: clamp(26px, 4.5vw, 56px);
  border-color: rgba(234, 183, 77, .72);
  background:
    radial-gradient(circle at 25% 0%, rgba(234, 183, 77, .16), transparent 22rem),
    radial-gradient(circle at 85% 25%, rgba(231, 25, 36, .16), transparent 20rem),
    linear-gradient(145deg, rgba(8, 8, 9, .94), rgba(3, 3, 3, .98));
}

.live-event-flyer,
.live-event-copy {
  position: relative;
  z-index: 2;
}

.live-event-flyer img {
  width: 100%;
  border-radius: 24px;
  border: 1px solid rgba(234, 183, 77, .72);
  box-shadow: 0 0 34px rgba(234, 183, 77, .18), 0 28px 70px rgba(0,0,0,.65);
}

.live-event-copy .section-title {
  text-align: left;
  margin-bottom: 8px;
}

.event-tagline {
  color: #f6d16d;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  line-height: 1.45;
  margin-bottom: 24px;
}

.event-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 26px 0;
}

.event-meta-item {
  padding: 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}

.event-meta-item span {
  display: block;
  color: var(--red2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  margin-bottom: 8px;
}

.event-meta-item strong {
  display: block;
  color: var(--white);
  line-height: 1.45;
}

.ticket-price-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 26px 0;
}

.ticket-price {
  min-width: 150px;
  padding: 18px 22px;
  border: 1px solid rgba(234, 183, 77, .65);
  border-radius: 18px;
  background: linear-gradient(145deg, rgba(234, 183, 77, .10), rgba(0,0,0,.30));
}

.ticket-price span {
  display: block;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 900;
}

.ticket-price strong {
  display: block;
  color: var(--white);
  font-family: Anton, Impact, sans-serif;
  font-size: 54px;
  line-height: 1;
  margin-top: 8px;
}

.featured-line,
.event-contact {
  color: var(--muted);
  line-height: 1.7;
}

.featured-line strong {
  color: var(--white);
}

.event-contact {
  margin-top: 22px;
  font-size: 14px;
}

.event-card-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.featured-event-card {
  border-color: rgba(234, 183, 77, .52);
}

.event-page-card {
  margin-top: 24px;
}

@media (max-width: 900px) {
  .live-event-card {
    grid-template-columns: 1fr;
  }

  .live-event-flyer {
    max-width: 440px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .event-meta-grid {
    grid-template-columns: 1fr;
  }

  .ticket-price {
    width: 100%;
  }

  .ticket-price strong {
    font-size: 44px;
  }
}


/* Event Mode Homepage */
.event-mode .page-shell {
  padding-top: 0;
}

.event-header {
  background: rgba(3, 3, 3, 0.86);
}

.event-hero {
  position: relative;
  min-height: calc(100vh - 76px);
  padding: clamp(28px, 5vw, 66px) 0;
  display: grid;
  align-items: center;
  overflow: hidden;
}

.event-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.86), rgba(0,0,0,.66), rgba(0,0,0,.92)),
    radial-gradient(circle at 72% 25%, rgba(234, 183, 77, .24), transparent 32rem),
    radial-gradient(circle at 30% 75%, rgba(231, 25, 36, .22), transparent 28rem);
  pointer-events: none;
}

.event-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

.event-hero-flyer img {
  width: 100%;
  border-radius: 28px;
  border: 1px solid rgba(234, 183, 77, .78);
  box-shadow: 0 0 52px rgba(234, 183, 77, .22), 0 32px 90px rgba(0,0,0,.74);
}

.event-hero-content {
  max-width: 760px;
}

.mini-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 900;
  letter-spacing: .16em;
  font-size: 12px;
}

.mini-brand img {
  width: 36px;
  height: 36px;
}

.event-hero h1 {
  font-size: clamp(64px, 10vw, 140px);
  line-height: .92;
  margin-bottom: 22px;
}

.hero-tagline {
  font-size: clamp(16px, 2vw, 23px);
  max-width: 760px;
}

.hero-detail-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.hero-detail-list div {
  padding: 15px 16px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 16px;
  background: rgba(255,255,255,.045);
}

.hero-detail-list span,
.hero-ticket-price span {
  display: block;
  color: var(--red2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  margin-bottom: 7px;
}

.hero-detail-list strong {
  color: var(--white);
  line-height: 1.35;
}

.hero-ticket-bar {
  display: grid;
  grid-template-columns: 120px 120px 1fr;
  gap: 14px;
  align-items: stretch;
  padding: 16px;
  border: 1px solid rgba(234, 183, 77, .64);
  border-radius: 22px;
  background: rgba(0,0,0,.40);
}

.hero-ticket-price {
  padding: 10px 12px;
  border-right: 1px solid rgba(255,255,255,.12);
}

.hero-ticket-price strong {
  display: block;
  color: var(--white);
  font-family: Anton, Impact, sans-serif;
  font-size: 48px;
  line-height: .9;
}

.hero-ticket-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.event-info-strip {
  border-top: 1px solid rgba(234,183,77,.28);
  border-bottom: 1px solid rgba(234,183,77,.28);
  background: rgba(0,0,0,.56);
}

.event-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.event-strip-grid article {
  padding: 22px 20px;
  border-right: 1px solid rgba(255,255,255,.10);
  text-align: center;
}

.event-strip-grid article:last-child { border-right: 0; }

.event-strip-grid span {
  display: block;
  color: var(--red2);
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 11px;
  font-weight: 900;
  margin-bottom: 8px;
}

.event-strip-grid strong {
  color: var(--white);
  font-size: 18px;
}

.event-section-head .section-title,
.ticket-cta-card .section-title,
.event-vibe-card .section-title,
.compact-about-card .section-title,
.compact-founder-card .section-title {
  text-align: left;
}

.lineup-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.lineup-grid article {
  position: relative;
  z-index: 2;
  min-height: 82px;
  padding: 18px;
  border: 1px solid rgba(234,183,77,.28);
  border-radius: 18px;
  background: rgba(255,255,255,.035);
  color: var(--white);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  display: grid;
  align-content: center;
}

.lineup-grid small,
.lineup-headliner span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  margin-top: 6px;
}

.lineup-headliner {
  grid-column: span 2;
  background: linear-gradient(145deg, rgba(234,183,77,.13), rgba(231,25,36,.10)) !important;
  border-color: rgba(234,183,77,.62) !important;
}

.lineup-headliner strong {
  font-family: Anton, Impact, sans-serif;
  font-size: clamp(34px, 4vw, 58px);
  line-height: 1;
}

.ticket-cta-card,
.event-vibe-card {
  padding: clamp(28px, 4vw, 46px);
  display: grid;
  grid-template-columns: 1fr minmax(260px, 430px);
  gap: 28px;
  align-items: center;
}

.ticket-contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
}

.ticket-contact-grid a {
  padding: 16px 18px;
  border: 1px solid rgba(234,183,77,.42);
  border-radius: 16px;
  background: rgba(0,0,0,.35);
  color: var(--white);
  font-weight: 900;
  letter-spacing: .08em;
  text-align: center;
}

.event-vibe-form {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.about-grid-event-mode {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 22px;
}

.compact-about-card,
.compact-founder-card {
  padding: clamp(26px, 4vw, 42px);
}

.compact-about-card p,
.compact-founder-card p {
  position: relative;
  z-index: 2;
  color: var(--muted);
  line-height: 1.75;
}

.compact-founder-card {
  display: grid;
  grid-template-columns: 210px 1fr;
  gap: 26px;
  align-items: center;
}

.compact-founder-card img {
  position: relative;
  z-index: 2;
  width: 100%;
  border-radius: 22px;
  border: 1px solid rgba(231,25,36,.7);
  box-shadow: 0 18px 45px rgba(0,0,0,.55);
}

.compact-founder-card blockquote {
  position: relative;
  z-index: 2;
  margin: 18px 0 0;
  color: var(--white);
  font-family: Anton, Impact, sans-serif;
  font-size: 24px;
  line-height: 1.25;
}

.advertise-low {
  margin-bottom: 40px;
}

@media (max-width: 980px) {
  .event-hero-inner,
  .ticket-cta-card,
  .event-vibe-card,
  .about-grid-event-mode,
  .compact-founder-card {
    grid-template-columns: 1fr;
  }

  .event-hero-flyer,
  .compact-founder-card img {
    max-width: 460px;
    margin: 0 auto;
  }

  .hero-ticket-bar {
    grid-template-columns: 1fr 1fr;
  }

  .hero-ticket-actions {
    grid-column: 1 / -1;
  }

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

  .event-strip-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .event-hero {
    min-height: auto;
    padding-bottom: 34px;
  }

  .event-hero h1 {
    font-size: 58px;
  }

  .hero-detail-list,
  .hero-ticket-bar,
  .lineup-grid,
  .event-strip-grid {
    grid-template-columns: 1fr;
  }

  .lineup-headliner {
    grid-column: span 1;
  }

  .event-strip-grid article {
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.10);
  }

  .event-strip-grid article:last-child { border-bottom: 0; }
}


/* Songs of Praise Event Theme */
:root {
  --sop-gold: #f6d16d;
  --sop-gold-2: #c78c2a;
  --sop-teal: #073536;
  --sop-teal-2: #0d5555;
  --sop-cream: #fff7df;
  --sop-dark: #031011;
}

.songs-theme {
  background:
    radial-gradient(circle at 82% 5%, rgba(246, 209, 109, .34), transparent 26rem),
    radial-gradient(circle at 4% 18%, rgba(12, 88, 88, .34), transparent 22rem),
    radial-gradient(circle at 50% 100%, rgba(199, 140, 42, .20), transparent 32rem),
    linear-gradient(180deg, #02090a 0%, #031011 52%, #020405 100%);
}

.songs-theme::before {
  background-image:
    linear-gradient(rgba(246,209,109,.10) 1px, transparent 1px),
    linear-gradient(90deg, rgba(246,209,109,.10) 1px, transparent 1px);
  opacity: .24;
}

.no-scroll {
  overflow: hidden;
}

.event-header {
  background: rgba(1, 10, 11, .78);
  border-bottom-color: rgba(246, 209, 109, .18);
}

.event-ticket-nav,
.sop-btn {
  background: linear-gradient(135deg, var(--sop-gold), var(--sop-gold-2));
  color: #111;
  border-color: rgba(255,255,255,.16);
  box-shadow: 0 16px 34px rgba(246, 209, 109, .18);
}

.sop-btn:hover {
  color: #111;
  filter: brightness(1.06);
}

.sop-btn.ghost {
  color: var(--sop-cream);
  background: rgba(2, 20, 21, .70);
  border-color: rgba(246, 209, 109, .38);
  box-shadow: none;
}

.sop-hero {
  min-height: calc(100vh - 76px);
  padding: clamp(24px, 4vw, 56px) 0;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.sop-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3,16,17,.20), rgba(3,16,17,.72) 58%, rgba(3,16,17,.96)),
    radial-gradient(circle at 32% 48%, rgba(246,209,109,.25), transparent 28rem);
  pointer-events: none;
}

.sop-hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 48vw) 1fr;
  gap: clamp(28px, 5vw, 66px);
  align-items: center;
}

.poster-open {
  position: relative;
  display: block;
  width: 100%;
  border: 1px solid rgba(246, 209, 109, .62);
  border-radius: 28px;
  padding: 0;
  background: transparent;
  overflow: hidden;
  cursor: zoom-in;
  box-shadow: 0 0 46px rgba(246, 209, 109, .18), 0 30px 90px rgba(0,0,0,.78);
}

.poster-open img {
  width: 100%;
  max-height: min(86vh, 940px);
  object-fit: contain;
  background: #02090a;
}

.poster-open span {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(1, 10, 11, .84);
  color: var(--sop-cream);
  border: 1px solid rgba(246, 209, 109, .35);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-weight: 900;
  font-size: 12px;
  backdrop-filter: blur(10px);
}

.sop-hero-copy {
  color: var(--sop-cream);
}

.event-presenter,
.sop-kicker {
  display: inline-block;
  color: var(--sop-gold);
  text-transform: uppercase;
  letter-spacing: .2em;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 14px;
}

.sop-hero h1 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(64px, 10vw, 130px);
  line-height: .88;
  margin: 0 0 18px;
  letter-spacing: -.05em;
}

.sop-hero h1 span {
  display: block;
  font-family: "Brush Script MT", "Segoe Script", cursive;
  color: var(--sop-gold);
  font-weight: 400;
  letter-spacing: -.06em;
  font-size: 1.05em;
}

.sop-subtitle {
  color: var(--sop-cream);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: clamp(16px, 2vw, 24px);
  line-height: 1.4;
  margin-bottom: 28px;
}

.sop-highlight-list {
  display: grid;
  gap: 12px;
  margin: 28px 0;
}

.sop-highlight-list div,
.sop-strip-grid div {
  border: 1px solid rgba(246, 209, 109, .24);
  background: rgba(2, 20, 21, .64);
  border-radius: 18px;
  padding: 16px 18px;
}

.sop-highlight-list small,
.sop-strip-grid span {
  display: block;
  color: var(--sop-gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 11px;
  margin-bottom: 6px;
}

.sop-highlight-list strong,
.sop-strip-grid strong {
  color: var(--sop-cream);
  line-height: 1.35;
}

.sop-cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.sop-note {
  margin-top: 24px;
  color: rgba(255, 247, 223, .78);
  line-height: 1.65;
}

.sop-quick-strip {
  border-top: 1px solid rgba(246, 209, 109, .18);
  border-bottom: 1px solid rgba(246, 209, 109, .18);
  background: rgba(2, 20, 21, .72);
  padding: 18px 0;
}

.sop-strip-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.sop-section {
  margin-top: 0;
  padding: clamp(54px, 7vw, 88px) 0;
}

.sop-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}

.sop-section-head h2,
.sop-ticket-card h2,
.sop-vibe-card h2,
.sop-about h2,
.sop-ad-card h2 {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(38px, 5vw, 70px);
  line-height: .98;
  margin: 0;
  color: var(--sop-cream);
}

.sop-section-head p,
.sop-ticket-card p,
.sop-vibe-card p,
.sop-about p,
.sop-ad-card p {
  color: rgba(255, 247, 223, .74);
  line-height: 1.7;
  max-width: 650px;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.artist-card {
  position: relative;
  min-height: 280px;
  border: 1px solid rgba(246, 209, 109, .35);
  border-radius: 24px;
  overflow: hidden;
  padding: 0;
  background: #031011;
  cursor: pointer;
  box-shadow: 0 16px 42px rgba(0,0,0,.45);
}

.artist-card img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  transition: transform .3s ease;
}

.artist-card:hover img {
  transform: scale(1.04);
}

.artist-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.86));
}

.artist-card-info {
  position: absolute;
  z-index: 2;
  left: 14px;
  right: 14px;
  bottom: 14px;
  text-align: left;
}

.artist-card-info strong {
  display: block;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: .07em;
  line-height: 1.1;
}

.artist-card-info small {
  display: block;
  margin-top: 5px;
  color: var(--sop-gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.sop-ticket-card,
.sop-vibe-card,
.sop-about-grid,
.sop-ad-card {
  border: 1px solid rgba(246, 209, 109, .34);
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 0%, rgba(246, 209, 109, .12), transparent 20rem),
    linear-gradient(145deg, rgba(4, 36, 37, .76), rgba(1, 10, 11, .94));
  box-shadow: 0 28px 70px rgba(0,0,0,.55);
  padding: clamp(28px, 5vw, 56px);
}

.sop-ticket-card {
  display: grid;
  grid-template-columns: 1.1fr .7fr;
  gap: 28px;
  align-items: center;
}

.sop-price-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.sop-price-panel div {
  border: 1px solid rgba(246, 209, 109, .42);
  border-radius: 22px;
  padding: 22px;
  text-align: center;
  background: rgba(0,0,0,.26);
}

.sop-price-panel span {
  color: var(--sop-gold);
  text-transform: uppercase;
  font-size: 12px;
  letter-spacing: .14em;
  font-weight: 900;
}

.sop-price-panel strong {
  display: block;
  font-family: Georgia, serif;
  color: #fff;
  font-size: 62px;
  line-height: 1;
  margin-top: 8px;
}

.sop-contact-panel {
  grid-column: 1 / -1;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sop-contact-panel a {
  color: var(--sop-cream);
  border: 1px solid rgba(246, 209, 109, .30);
  border-radius: 999px;
  padding: 12px 16px;
  background: rgba(0,0,0,.24);
  font-weight: 800;
}

.sop-vibe-card,
.sop-ad-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
}

.sop-mini-form {
  min-width: min(440px, 100%);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
}

.sop-mini-form input {
  min-height: 52px;
  border: 1px solid rgba(246, 209, 109, .34);
  border-radius: 12px;
  padding: 0 16px;
  background: rgba(0,0,0,.34);
  color: var(--sop-cream);
}

.sop-about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 34px;
}

.sop-about h3 {
  font-family: Georgia, serif;
  color: var(--sop-cream);
  font-size: 34px;
  margin: 0 0 12px;
}

.sop-text-link {
  color: var(--sop-gold);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.flyer-lightbox,
.artist-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: none;
}

.flyer-lightbox.is-open,
.artist-modal.is-open {
  display: grid;
}

.flyer-lightbox {
  place-items: center;
  background: rgba(0,0,0,.92);
  padding: 24px;
}

.flyer-lightbox img {
  max-width: min(96vw, 900px);
  max-height: 94vh;
  object-fit: contain;
  border: 1px solid rgba(246, 209, 109, .52);
  border-radius: 18px;
  box-shadow: 0 0 70px rgba(246, 209, 109, .22);
}

.lightbox-close,
.artist-modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  z-index: 2;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(246, 209, 109, .42);
  background: rgba(2, 20, 21, .90);
  color: var(--sop-cream);
  font-size: 32px;
  cursor: pointer;
}

.artist-modal {
  place-items: center;
  padding: 24px;
}

.artist-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.82);
}

.artist-modal-panel {
  position: relative;
  z-index: 2;
  width: min(900px, 96vw);
  display: grid;
  grid-template-columns: minmax(260px, 360px) 1fr;
  gap: 0;
  overflow: hidden;
  border-radius: 30px;
  border: 1px solid rgba(246, 209, 109, .46);
  background: #031011;
  box-shadow: 0 40px 90px rgba(0,0,0,.72);
}

.artist-modal-panel img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.artist-modal-copy {
  padding: clamp(28px, 4vw, 46px);
}

.artist-modal-copy span {
  color: var(--sop-gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 12px;
}

.artist-modal-copy h3 {
  font-family: Georgia, serif;
  color: var(--sop-cream);
  font-size: clamp(34px, 5vw, 58px);
  margin: 12px 0 18px;
  line-height: 1;
}

.artist-modal-copy p {
  color: rgba(255, 247, 223, .78);
  line-height: 1.75;
}

.artist-sample {
  margin-top: 24px;
  border: 1px solid rgba(246, 209, 109, .25);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,.04);
}

.artist-sample strong,
.artist-sample small {
  display: block;
}

.artist-sample strong {
  color: var(--sop-cream);
  text-transform: uppercase;
  letter-spacing: .1em;
}

.artist-sample small {
  color: var(--sop-gold);
  margin-top: 6px;
}

.flyer-page-main {
  padding: 28px 0 70px;
}

.flyer-page-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.full-flyer-image {
  width: min(100%, 920px);
  margin: 0 auto;
  border-radius: 24px;
  border: 1px solid rgba(246, 209, 109, .52);
  box-shadow: 0 0 50px rgba(246, 209, 109, .18), 0 30px 90px rgba(0,0,0,.65);
}

.songs-theme .floating-music-button {
  border-color: rgba(246, 209, 109, .72);
  background:
    radial-gradient(circle at 20% 0%, rgba(246, 209, 109, .28), transparent 7rem),
    linear-gradient(135deg, rgba(3, 26, 27, .96), rgba(0,0,0,.96));
}

.songs-theme .music-button-icon {
  background: linear-gradient(135deg, var(--sop-gold), var(--sop-gold-2));
}

.songs-theme .music-button-icon span {
  background: #111;
}

@media (max-width: 1020px) {
  .sop-hero-inner,
  .sop-ticket-card,
  .sop-vibe-card,
  .sop-about-grid,
  .sop-ad-card {
    grid-template-columns: 1fr;
  }

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

  .poster-open img {
    max-height: none;
  }
}

@media (max-width: 760px) {
  .sop-strip-grid,
  .artist-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .sop-section-head {
    display: block;
  }

  .sop-mini-form {
    grid-template-columns: 1fr;
  }

  .sop-price-panel {
    grid-template-columns: 1fr;
  }

  .artist-modal-panel {
    grid-template-columns: 1fr;
    max-height: 90vh;
    overflow-y: auto;
  }

  .artist-modal-panel img {
    min-height: 280px;
    max-height: 360px;
  }
}

@media (max-width: 520px) {
  .sop-hero {
    padding-top: 18px;
  }

  .sop-strip-grid,
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .sop-hero h1 {
    font-size: 62px;
  }

  .artist-card,
  .artist-card img {
    min-height: 240px;
  }
}


/* Founder / About NATO page */
.sop-about-lite {
  padding-top: 36px;
}

.sop-about-lite-card,
.founder-story-card,
.founder-mini-card,
.founder-cta-card {
  border: 1px solid rgba(246, 209, 109, .34);
  border-radius: 34px;
  background:
    radial-gradient(circle at 15% 0%, rgba(246, 209, 109, .12), transparent 20rem),
    linear-gradient(145deg, rgba(4, 36, 37, .76), rgba(1, 10, 11, .94));
  box-shadow: 0 28px 70px rgba(0,0,0,.55);
}

.sop-about-lite-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  padding: clamp(28px, 5vw, 50px);
}

.sop-about-lite-card h2,
.founder-story-card h2,
.founder-mini-card h2,
.founder-cta-card h2 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--sop-cream);
  font-size: clamp(32px, 4.6vw, 58px);
  line-height: .98;
  margin: 0 0 14px;
}

.sop-about-lite-card p,
.founder-mini-card p,
.founder-cta-card p {
  color: rgba(255, 247, 223, .74);
  line-height: 1.7;
  margin-bottom: 0;
}

.founder-hero {
  min-height: calc(100vh - 76px);
  display: flex;
  align-items: center;
  padding: clamp(28px, 5vw, 74px) 0;
}

.founder-hero-grid {
  display: grid;
  grid-template-columns: minmax(280px, 440px) 1fr;
  gap: clamp(30px, 6vw, 76px);
  align-items: center;
}

.founder-photo-panel {
  border: 1px solid rgba(246, 209, 109, .50);
  border-radius: 34px;
  overflow: hidden;
  box-shadow: 0 0 45px rgba(246, 209, 109, .18), 0 30px 90px rgba(0,0,0,.70);
  background: rgba(0,0,0,.30);
}

.founder-photo-panel img {
  width: 100%;
  display: block;
}

.founder-hero-copy h1 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--sop-cream);
  font-size: clamp(58px, 8vw, 112px);
  line-height: .92;
  margin: 0 0 20px;
  letter-spacing: -.05em;
}

.founder-lead {
  color: rgba(255, 247, 223, .80);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.65;
  max-width: 760px;
}

.founder-facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 30px;
}

.founder-facts div {
  padding: 16px;
  border: 1px solid rgba(246, 209, 109, .25);
  border-radius: 18px;
  background: rgba(2, 20, 21, .64);
}

.founder-facts span {
  display: block;
  color: var(--sop-gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 11px;
  margin-bottom: 6px;
}

.founder-facts strong {
  color: var(--sop-cream);
}

.founder-story-card {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: clamp(28px, 5vw, 60px);
  padding: clamp(30px, 5vw, 60px);
}

.founder-story-copy p {
  color: rgba(255, 247, 223, .78);
  line-height: 1.8;
  font-size: 16px;
}

.founder-story-copy strong {
  color: var(--sop-cream);
}

.founder-story-copy blockquote {
  margin: 28px 0;
  padding: 22px 26px;
  border-left: 4px solid var(--sop-gold);
  border-radius: 18px;
  background: rgba(255,255,255,.045);
  color: var(--sop-cream);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.22;
}

.founder-nato-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.founder-mini-card,
.founder-cta-card {
  padding: clamp(28px, 4vw, 46px);
}

.founder-cta-card {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 26px;
  align-items: center;
}

@media (max-width: 920px) {
  .sop-about-lite-card,
  .founder-hero-grid,
  .founder-story-card,
  .founder-nato-grid,
  .founder-cta-card {
    grid-template-columns: 1fr;
  }

  .founder-photo-panel {
    max-width: 440px;
    margin: 0 auto;
  }

  .founder-facts {
    grid-template-columns: 1fr;
  }
}


/* Official venue spotlight */
.venue-spotlight-section {
  padding-top: 40px;
}

.venue-spotlight-card {
  border: 1px solid rgba(246, 209, 109, .34);
  border-radius: 34px;
  background:
    radial-gradient(circle at 10% 0%, rgba(246, 209, 109, .12), transparent 22rem),
    radial-gradient(circle at 100% 100%, rgba(13, 85, 85, .18), transparent 22rem),
    linear-gradient(145deg, rgba(4, 36, 37, .76), rgba(1, 10, 11, .94));
  box-shadow: 0 28px 70px rgba(0,0,0,.55);
  padding: clamp(28px, 5vw, 50px);
}

.venue-spotlight-head {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 24px;
}

.venue-spotlight-head h2 {
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--sop-cream);
  font-size: clamp(34px, 4.5vw, 60px);
  line-height: .98;
  margin: 0 0 12px;
}

.venue-spotlight-head p,
.venue-description {
  color: rgba(255, 247, 223, .76);
  line-height: 1.75;
}

.venue-spotlight-head p strong,
.venue-description strong {
  color: var(--sop-cream);
}

.venue-brand-lockup {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid rgba(246, 209, 109, .22);
  border-radius: 24px;
  background: rgba(255,255,255,.04);
}

.venue-round-logo {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 0 26px rgba(0,0,0,.35);
}

.venue-wordmark {
  max-width: 320px;
  width: 100%;
  border-radius: 12px;
}

.venue-spotlight-grid {
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 22px;
}

.venue-image-main {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  border: 1px solid rgba(246, 209, 109, .26);
  background: #071818;
  min-height: 100%;
}

.venue-image-main img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  display: block;
}

.venue-image-main::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(0,0,0,.78));
}

.venue-image-caption {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 16px 18px;
  border-radius: 20px;
  background: rgba(0, 0, 0, .42);
  border: 1px solid rgba(246, 209, 109, .28);
  backdrop-filter: blur(8px);
}

.venue-image-caption strong,
.venue-image-caption span {
  display: block;
}

.venue-image-caption strong {
  color: var(--sop-cream);
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: 15px;
}

.venue-image-caption span {
  color: rgba(255,247,223,.76);
  margin-top: 6px;
  line-height: 1.45;
}

.venue-info-panel {
  display: grid;
  align-content: start;
  gap: 18px;
}

.venue-meta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.venue-meta-grid div,
.venue-food-card {
  border: 1px solid rgba(246, 209, 109, .22);
  border-radius: 20px;
  background: rgba(255,255,255,.04);
}

.venue-meta-grid div {
  padding: 16px;
}

.venue-meta-grid span {
  display: block;
  color: var(--sop-gold);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
  font-size: 11px;
  margin-bottom: 6px;
}

.venue-meta-grid strong {
  color: var(--sop-cream);
  line-height: 1.4;
}

.venue-food-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.venue-food-card {
  overflow: hidden;
}

.venue-food-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  display: block;
}

.venue-food-card span {
  display: block;
  color: var(--sop-cream);
  padding: 12px 14px 14px;
  font-weight: 700;
}

.venue-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 1020px) {
  .venue-spotlight-head,
  .venue-spotlight-grid {
    grid-template-columns: 1fr;
  }

  .venue-brand-lockup {
    justify-content: flex-start;
  }
}

@media (max-width: 760px) {
  .venue-meta-grid,
  .venue-food-grid {
    grid-template-columns: 1fr;
  }

  .venue-image-main img {
    min-height: 320px;
  }

  .venue-round-logo {
    width: 72px;
    height: 72px;
  }
}


/* Ticket contact label cleanup */
.sop-contact-panel a {
  display: grid;
  gap: 4px;
}

.sop-contact-panel a span {
  display: block;
  color: var(--sop-gold);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-weight: 900;
}

.sop-contact-panel a strong {
  color: var(--sop-cream);
  font-size: 15px;
}
