:root {
  --bg: #080a0d;
  --bg-soft: #0d1016;
  --panel: rgba(10, 13, 18, 0.95);
  --panel-strong: rgba(14, 18, 24, 0.98);
  --text: #e8ecf0;
  --muted: #9aa5b0;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.14);
  --accent: #e8a520;          /* deeper poster gold */
  --accent-bright: #ffcc40;
  --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.6);
  --shadow-hard: 0 15px 50px rgba(0, 0, 0, 0.8);
  --radius: 12px;
  --radius-sm: 8px;
  --border-width: 1.5px;      /* thickened from 1px */
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  font-family: "Space Grotesk", sans-serif;
  color: var(--text);
  background: #06080b;
}

/* Hero poster image as full-page texture */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    linear-gradient(rgba(4, 6, 9, 0.8), rgba(4, 6, 9, 0.9)),
    url("./assets/images/bg-speakers.jpg") center / cover no-repeat;
  pointer-events: none;
  z-index: -2;
}

/* Subtle noise layer instead of scanlines */
body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
  opacity: 0.04;
  pointer-events: none;
  z-index: -1;
}

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

/* ─── Layout ─────────────────────────────── */

.site-shell {
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 100px; /* bottom pad for sticky bar */
}

/* ─── Topbar ─────────────────────────────── */

.topbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap; /* allow wrapping on tiny screens */
  gap: 12px;
  padding: 10px 16px;
  margin-bottom: 28px;
  border: var(--border-width) solid var(--line-strong);
  border-radius: 999px;
  background: rgba(8, 10, 13, 0.94);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-right: 8px;
  border-right: 1px solid var(--line-strong);
}

.logo-mmh {
  height: 38px;
  width: auto;
}

.logo-undrgrnd {
  height: 24px;
  width: auto;
  filter: brightness(2);
}

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

.brand-copy strong {
  font-size: 0.95rem;
}

.brand-copy span,
.section-subtitle,
.panel-copy,
.embed-note,
.rich-copy,
.announcement-strip p,
.cta-band p,
.site-footer {
  color: var(--muted);
}

.topnav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

@media (max-width: 640px) {
  .topnav {
    display: none; /* Hide non-essential links to save space to click ticket */
  }
}

.topnav a:hover,
.topnav a:focus-visible,
.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--text);
}

#nav-ticket-link {
  min-height: 48px;
  padding: 0 24px;
  background: var(--accent);
  color: #000;
  font-weight: 800;
  border: 0;
  border-radius: 999px;
  box-shadow: 0 4px 15px rgba(232, 165, 32, 0.3);
}

#nav-ticket-link:hover {
  background: var(--accent-bright);
  box-shadow: 0 6px 20px rgba(232, 165, 32, 0.5);
}

/* ─── Sections ───────────────────────────── */

.section {
  margin-top: 32px;
  padding: 12px 0;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 22px;
}

.section-subtitle,
.panel-copy {
  margin: 0;
  max-width: 62ch;
}

/* ─── Buttons ────────────────────────────── */

.button,
.card-links a,
.footer-links a,
.poster-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 24px;
  border: var(--border-width) solid transparent;
  border-radius: 6px; /* more rectangular poster feel */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 180ms cubic-bezier(0.4, 0, 0.2, 1);
}

.button {
  background: linear-gradient(135deg, var(--accent), var(--accent-bright));
  color: #080808;
  box-shadow: 0 8px 32px rgba(232, 165, 32, 0.35);
  font-size: 1.1rem;
  padding: 0 32px;
  min-height: 56px;
}

.button:hover,
.button:focus-visible {
  filter: brightness(1.15);
  transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(232, 165, 32, 0.5);
}

.card-links a:hover,
.card-links a:focus-visible,
.poster-link:hover,
.poster-link:focus-visible {
  transform: translateY(-2px);
  border-color: var(--line-strong);
}

.button-small {
  min-height: 42px;
  padding: 0 16px;
  font-size: 0.9rem;
}

.button-ghost,
.card-links a,
.footer-links a,
.poster-link {
  background: rgba(255, 255, 255, 0.03);
  border-color: var(--line-strong);
  color: var(--text);
  box-shadow: none;
}

.button:active {
  transform: translateY(0);
}

/* ─── Hero ───────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
  min-height: auto; /* Allow natural flow on mobile */
  padding: 20px 0;
}

@media (min-width: 1024px) {
  .hero {
    grid-template-columns: 1.25fr 0.75fr;
    gap: 60px;
    min-height: calc(100vh - 120px);
    padding: 60px 0;
  }
}

.hero-copy {
  display: grid;
  gap: 20px;
}

.section-tag {
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-status {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 9px 16px;
  border: 1px solid rgba(212, 160, 23, 0.3);
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.08);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--accent-bright);
}

.hero-status::before {
  content: "";
  width: 7px;
  height: 7px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--accent-bright);
  animation: pulse-dot 1.6s ease infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.hero h1,
.section-heading h2,
.panel h2,
.cta-band h2,
.panel h3,
.artist-card h3,
.edition-card h3 {
  margin: 0;
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 0.92;
}

.hero h1 {
  font-size: clamp(3.5rem, 10vw, 6.5rem);
  color: var(--text);
  margin-bottom: 20px;
}

.hero-lede {
  max-width: 50ch;
  font-size: 1.2rem;
  color: var(--muted);
  line-height: 1.6;
}

.section-subtitle,
.panel-copy,
.rich-copy,
.practical-item p,
.faq-answer,
.artist-card p,
.edition-card p {
  margin: 0;
  line-height: 1.7;
}

.hero-burst {
  display: none !important;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-metrics,
.artist-grid,
.edition-grid,
.practical-grid,
.content-grid {
  display: grid;
  gap: 16px;
}

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

@media (min-width: 768px) {
  .hero-metrics {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* ─── Panels / Cards ─────────────────────── */

.hero-metrics div,
.panel,
.artist-card,
.edition-card,
.announcement-strip,
.cta-band {
  border: var(--border-width) solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow-soft);
}

.hero-metrics div {
  padding: 16px;
}

.hero-metrics dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.hero-metrics dd {
  margin: 0;
  font-size: 0.96rem;
  font-weight: 700;
}

/* ─── Poster Widget ───────────────────────── */

.poster-wall {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 6; /* mobile-first vertical */
  border: var(--border-width) solid rgba(212, 160, 23, 0.5);
  border-radius: 4px; 
  overflow: hidden;
  background: #000;
  box-shadow: var(--shadow-hard);
}

@media (min-width: 1024px) {
  .poster-wall {
    aspect-ratio: 4 / 5.2; /* Back to a more "poster" vertical feel on desktop side */
    width: 85%;
    margin: 0 0 0 auto;
    border-radius: 8px;
  }
}

.poster-wall::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("./assets/images/banner-mobile.jpg") center / cover no-repeat;
  opacity: 1;
  pointer-events: none;
  transition: opacity 300ms ease;
  z-index: 1;
}

@media (min-width: 1024px) {
  .poster-wall::before {
    background-image: url("./assets/images/banner-desktop.jpg");
  }
}

/* Hide redundant text since banners have it */
.poster-tag,
.poster-date,
.poster-venue,
.poster-lineup,
.poster-link {
  display: none !important;
}

.poster-wall::after {
  display: none;
}

.poster-tag,
.poster-venue,
.poster-date,
.poster-lineup,
.poster-link {
  position: relative;
  z-index: 1;
}

.poster-tag,
.poster-venue {
  margin: 0;
}

.poster-tag {
  color: var(--accent);
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.poster-date {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 24px 0 18px;
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 9vw, 6.5rem);
  line-height: 0.88;
  letter-spacing: 0.04em;
  color: #ccd4dc;
}

.poster-date span {
  display: grid;
  place-items: center;
  min-height: 110px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.28);
}

.poster-date span:first-child,
.poster-date span:last-child {
  color: var(--accent);
}

.poster-venue {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  letter-spacing: 0.09em;
}

.poster-lineup {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 20px 0 20px;
}

.poster-lineup span,
.host-point {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(212, 160, 23, 0.22);
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.06);
  font-size: 0.9rem;
  font-weight: 600;
}

/* ─── Announcement strip ─────────────────── */

.announcement-strip,
.cta-band {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 24px;
  margin-top: 20px;
}

.announcement-strip {
  border-color: rgba(212, 160, 23, 0.18);
  background: rgba(212, 160, 23, 0.04);
}

.content-grid,
.practical-grid {
  grid-template-columns: 1fr;
  margin-top: 28px;
}

@media (min-width: 768px) {
  .content-grid,
  .practical-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.panel,
.artist-card,
.edition-card {
  padding: 0;
  overflow: hidden;
}

.panel {
  padding: 28px;
}

.panel h2,
.section-heading h2,
.cta-band h2 {
  font-size: clamp(2.2rem, 6vw, 4.5rem);
}

.panel h3,
.artist-card h3,
.edition-card h3 {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
}

/* ─── Artist Cards ─────────────────────────── */

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

@media (min-width: 768px) {
  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .artist-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  
  /* Make the first one potentially larger or just keep it tight */
  .artist-card {
    border-radius: var(--radius-sm);
  }
}

.artist-card {
  display: flex;
  flex-direction: column;
}

.card-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-soft);
}

.card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}

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

.card-body {
  padding: 24px;
  display: grid;
  gap: 10px;
  flex: 1;
}

.edition-card {
  padding: 24px;
}

.edition-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

.card-index,
.card-kicker {
  display: inline-flex;
  margin: 0;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.card-index {
  font-family: "Bebas Neue", sans-serif;
  font-size: 1.2rem;
}

.card-links,
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.card-links a,
.footer-links a {
  min-height: 38px;
  padding: 0 13px;
  font-size: 0.88rem;
}

/* ─── Instagram / YouTube ────────────────── */

.instagram-panel {
  padding: 22px;
  border: 1px solid rgba(212, 160, 23, 0.12);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
}

.instagram-handle {
  margin: 0 0 8px;
  font-family: "Bebas Neue", sans-serif;
  font-size: 2.2rem;
  letter-spacing: 0.06em;
  color: var(--accent-bright);
}

.video-shell {
  margin: 24px auto;
  border: var(--border-width) solid var(--line-strong);
  border-radius: var(--radius-sm);
  background: #000;
  aspect-ratio: 9 / 16;
  max-width: 380px; /* narrowed for better profil balance */
  overflow: hidden;
}

.video-shell iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.embed-note {
  margin-top: 14px;
  font-size: 0.93rem;
}

.embed-note:empty {
  display: none;
}

/* ─── Practical / FAQ ────────────────────── */

.rich-copy,
.host-points,
.faq-list,
.practical-list {
  display: grid;
  gap: 0;
}

/* ─── Host Axis ──────────────────────────── */

.content-grid > aside {
  border-left: 3px solid var(--accent);
  background:
    linear-gradient(135deg, rgba(212, 160, 23, 0.04) 0%, rgba(10, 13, 18, 0.98) 60%);
}

.content-grid > aside .section-tag {
  font-size: 0.75rem;
  letter-spacing: 0.26em;
}

.host-points {
  margin-top: 8px;
  gap: 10px;
}

.host-point {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  min-height: auto;
  padding: 14px 16px;
  border: 1px solid rgba(212, 160, 23, 0.15);
  border-radius: var(--radius-sm);
  background: rgba(212, 160, 23, 0.04);
  font-size: 0.95rem;
  line-height: 1.5;
}

.host-point::before {
  content: "";
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  margin-top: 7px;
  border-radius: 50%;
  background: var(--accent);
}

/* ─── Radar images ───────────────────────── */

.radar-images {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .radar-images {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.radar-photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: var(--bg-soft);
}

.radar-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 500ms ease;
}

.radar-photo:hover img {
  transform: scale(1.05);
}


.practical-item {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.practical-item:last-child,
.faq-item:last-child {
  border-bottom: 0;
}

.practical-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 0.95rem;
  color: var(--accent);
}

.practical-item a {
  color: var(--text);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-toggle {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-toggle span:last-child {
  color: var(--accent);
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 220ms ease, padding-bottom 220ms ease;
}

.faq-item.is-open .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

/* ─── CTA Band ───────────────────────────── */

.cta-band {
  margin-top: 32px;
  padding: 32px 36px;
  border-color: rgba(212, 160, 23, 0.2);
  background: rgba(14, 18, 24, 0.98);
}

.cta-band h2 {
  max-width: 14ch;
  color: var(--accent-bright);
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ─── Sticky Ticket Bar ──────────────────── */

.sticky-ticket-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px;
  background: rgba(6, 8, 11, 0.98);
  border-top: 1px solid rgba(232, 165, 32, 0.4);
  backdrop-filter: blur(20px);
  box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.8);
}

.sticky-ticket-bar p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--muted);
}

.sticky-ticket-bar strong {
  color: var(--text);
}

.sticky-ticket-bar .button {
  white-space: nowrap;
  flex-shrink: 0;
  animation: glow-pulse 2.4s ease infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 8px 28px rgba(212, 160, 23, 0.35); }
  50%       { box-shadow: 0 8px 40px rgba(212, 160, 23, 0.65); }
}

/* ─── Footer ─────────────────────────────── */

.site-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 4px 10px;
  border-top: 1px solid var(--line);
}

/* ─── Animations ─────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(16px);
  animation: rise-in 600ms ease forwards;
}

.reveal:nth-of-type(2) { animation-delay: 80ms; }
.reveal:nth-of-type(3) { animation-delay: 160ms; }
.reveal:nth-of-type(4) { animation-delay: 240ms; }

@keyframes rise-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ─── Responsive ─────────────────────────── */

@media (max-width: 1180px) {
  .hero,
  .content-grid,
  .practical-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

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

@media (max-width: 860px) {
  .site-shell {
    width: min(100% - 20px, 1240px);
  }

  .topbar {
    flex-wrap: wrap;
    border-radius: 20px;
  }

  .topnav {
    order: 3;
    width: 100%;
    justify-content: space-between;
  }

  .hero h1 {
    max-width: none;
  }

  .hero-metrics,
  .artist-grid,
  .edition-grid {
    grid-template-columns: 1fr;
  }

  .announcement-strip,
  .cta-band,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-ticket-bar {
    flex-direction: column;
    align-items: stretch;
    padding: 14px 18px;
    gap: 10px;
  }

  .sticky-ticket-bar .button {
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 560px) {
  .site-shell {
    width: min(100% - 16px, 1240px);
    padding-top: 10px;
  }

  .topbar {
    top: 8px;
    padding: 6px 12px;
  }

  .brand-mark {
    width: auto;
    height: auto;
    gap: 6px;
    padding-right: 8px;
  }

  .logo-mmh {
    height: 42px;
  }

  .logo-undrgrnd {
    height: 26px;
  }

  .brand-copy span {
    display: none;
  }

  .brand-copy strong {
    font-size: 1.8rem;
    font-family: "Bebas Neue", sans-serif;
    letter-spacing: 0.08em;
    line-height: 1;
    transform: translateY(2px); /* optical alignment with logos */
  }

  .hero h1 {
    font-size: clamp(3.8rem, 20vw, 5.8rem);
  }

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

  .panel,
  .artist-card,
  .edition-card,
  .announcement-strip,
  .cta-band,
  .poster-wall {
    border-radius: var(--radius-sm);
  }

  .poster-date span {
    min-height: 80px;
  }

  .card-photo {
    aspect-ratio: 1 / 1.1; /* slightly taller to fit headshots better */
  }

  .radar-images {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }

  .reveal,
  .faq-answer,
  .button,
  .card-links a,
  .poster-link,
  .card-photo img {
    animation: none;
    transition: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .sticky-ticket-bar .button {
    animation: none;
  }
}
