
/* ============================================
   BOONS AGENCY — design tokens
   ============================================ */
:root{
  --bg: #0B0A0F;
  --bg-alt: #141220;
  --bg-card: #181521;
  --fg: #F5F1E8;
  --muted: #948FA3;
  --line: rgba(245,241,232,0.12);

  --magenta: #E01B24;
  --violet: #6B0F1A;   /* deep burgundy */
  --yellow: #FF7A45;   /* ember */

  --font-display: 'Unbounded', sans-serif;
  --font-body: 'Space Grotesk', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --container: 1160px;
  --radius: 4px;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; width:100%; }
body{
  margin:0; padding:0;
  width:100%;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
h1,h2,h3{ font-family: var(--font-display); margin:0; line-height:1.05; }
p{ margin:0; }
a{ color: inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
.mono{ font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.08em; }

/* film-grain overlay for a raw, analog rave-flyer texture */
.grain{
  position: fixed; inset:0; pointer-events:none; z-index: 500;
  opacity: 0.05; mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='120'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.eyebrow{ color: var(--magenta); font-size: 0.78rem; margin-bottom: 0.9rem; }

/* ============================================
   Buttons
   ============================================ */
.btn{
  display:inline-flex; align-items:center; gap:.4rem;
  padding: 0.9rem 1.6rem;
  font-family: var(--font-mono); text-transform: uppercase; letter-spacing: 0.06em; font-size: 0.85rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor:pointer; transition: transform .15s ease, background .2s ease, border-color .2s ease;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--magenta); color: #0B0A0F; font-weight: 700; }
.btn-primary:hover{ background: #f5323b; }
.btn-outline{ border-color: var(--line); color: var(--fg); }
.btn-outline:hover{ border-color: var(--magenta); }
.btn-ghost{ border-color: var(--line); color: var(--fg); padding: 0.6rem 1.2rem; }
.btn-ghost:hover{ border-color: var(--magenta); }
.btn-small{ padding: 0.6rem 1.1rem; font-size: 0.75rem; }
.btn-large{ padding: 1.1rem 2rem; font-size: 0.9rem; }

/* ============================================
   Header
   ============================================ */
.site-header{
  position: sticky; top:0; z-index: 100;
  display:flex; align-items:center; justify-content: space-between;
  padding: 1.2rem 2rem;
  background: rgba(11,10,15,0.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.wordmark{ display:flex; align-items:center; }
.wordmark-logo{ height: 40px; width:auto; }
.site-nav{ display:flex; gap: 2rem; font-family: var(--font-mono); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 0.06em; }
.site-nav a{ color: var(--muted); transition: color .2s ease; }
.site-nav a:hover{ color: var(--fg); }
.nav-cta{ display:inline-flex; }
.nav-toggle{ display:none; flex-direction:column; gap:5px; background:none; border:none; cursor:pointer; padding: 6px; }
.nav-toggle span{ width:22px; height:2px; background: var(--fg); display:block; }
.mobile-nav{
  display:none; flex-direction:column;
  position: sticky; top: 65px; z-index: 99;
  background: var(--bg-alt); border-bottom: 1px solid var(--line);
  padding: 1rem 2rem;
}
.mobile-nav a{ padding: 0.8rem 0; font-family: var(--font-mono); text-transform: uppercase; font-size: 0.85rem; border-bottom: 1px solid var(--line); }
.mobile-nav a:last-child{ border-bottom:none; }
.mobile-nav.open{ display:flex; }

/* ============================================
   Hero — energetic full-screen intro
   ============================================ */
.hero{
  position: relative;
  min-height: 100vh;
  max-width: none;
  width: 100%;
  margin-left: 0; margin-right: 0;
  display:flex; flex-direction:column; justify-content:center; align-items:center;
  padding: 4rem 2rem;
  text-align:center;
  overflow:hidden;
}
.hero-video{
  position:absolute; inset:0; z-index:0;
  width:100%; height:100%; object-fit:cover;
}
.hero-tagline{
  position:relative; z-index:5;
  margin-top: 0.8rem;
  font-size: clamp(0.72rem, 1.4vw, 0.9rem);
  color: var(--fg); opacity: 0.95;
  text-shadow: 0 2px 12px rgba(0,0,0,0.75);
  letter-spacing: 0.14em;
  max-width: none; white-space: nowrap; text-align:center; margin-left:auto; margin-right:auto;
}
.hero-bg{  position:absolute; inset:0; z-index:1;
  background: radial-gradient(ellipse 150% 120% at 50% 0%, rgba(107,15,26,0.08) 0%, transparent 70%),
              radial-gradient(ellipse 120% 150% at 100% 100%, rgba(224,27,36,0.06) 0%, transparent 60%);
  animation: gradientShift 8s ease-in-out infinite;
}
.hero-overlay{
  position:absolute; inset:0; z-index:2;
  background: linear-gradient(180deg, rgba(11,10,15,0.3) 0%, rgba(11,10,15,0.5) 50%, rgba(11,10,15,0.7) 100%);
}
@keyframes gradientShift{
  0%, 100%{ filter: brightness(1) saturate(1); }
  50%{ filter: brightness(1.1) saturate(1.15); }
}
.hero-logo-mark{
  position:relative; z-index:3; margin-top: -6rem; margin-bottom: 0.5rem;
  display:flex; flex-direction:column; align-items:center; text-align:center;
  animation: logoFloat 4s ease-in-out infinite;
}
@keyframes logoFloat{
  0%, 100%{ transform: translateY(0px); }
  50%{ transform: translateY(-4px); }
}
.hero-logo-img{ max-width: 480px; width: 100%; height:auto; display:block; margin: 0 auto; align-self:center; }
.hero-sub{
  position:relative; z-index:3;
  max-width: 580px; color: var(--muted); font-size: 1.15rem; margin-bottom: 2.5rem;
}
.hero-actions{
  position:relative; z-index:3; margin-top: 0.6rem;
  display:flex; gap: 1rem; flex-wrap:wrap; justify-content:center;
}

/* ============================================
   Section shared
   ============================================ */
.strike-out{
  text-decoration: none; position: relative; color: var(--muted); margin-right: 0.15em;
}
.strike-out::after{
  content:''; position:absolute; left:-0.04em; right:-0.04em; top:52%;
  height: 0.09em; background: var(--magenta); border-radius: 2px;
}
section{ padding: 7rem 2rem; max-width: var(--container); margin: 0 auto; }
main{ width:100%; }
.section-head{ max-width: 620px; margin-bottom: 3.5rem; }
.section-head h2, .about h2, .contact h2{ font-size: clamp(2rem, 4vw, 2.8rem); text-transform: uppercase; margin-bottom: 1rem; }
.section-lead{ color: var(--muted); font-size: 1.05rem; }

/* ============================================
   Roster — compact tiles + modal detail
   ============================================ */
.roster{ padding-top: 4rem; }
.roster-grid{ display:grid; grid-template-columns: repeat(auto-fit, minmax(180px, 260px)); gap: 1.5rem; }
.roster-tile{
  position:relative; aspect-ratio: 3/4; border-radius: 10px; overflow:hidden;
  border: none;
  background: linear-gradient(165deg, #FFC93C 0%, #FF9E2C 30%, #FF4D1C 65%, #E01B24 100%);
  padding: 2px;
  transition: box-shadow .25s ease;
  padding:0; cursor:pointer; font: inherit;
}
.roster-tile img{ position:absolute; inset:2px; border-radius:8px; width:100%; height:100%; object-fit:cover; transition: transform .3s ease; }
.roster-tile{ box-shadow: 0 12px 40px rgba(224,27,36,0.28); }
.roster-tile:hover img{ transform: scale(1.06); }
.roster-tile-fallback{ position:absolute; inset:0; display:flex; align-items:center; justify-content:center; font-size:0.7rem; color: rgba(11,10,15,0.55); z-index:0; }
.roster-tile:not(.no-photo) .roster-tile-fallback{ display:none; }
.roster-tile-overlay{
  position:absolute; left:2px; right:2px; bottom:2px; border-radius:0 0 8px 8px; padding: 1.1rem 1.2rem;
  display:flex; flex-direction:column; gap:0.3rem;
  background: linear-gradient(to top, rgba(11,10,15,0.9), rgba(11,10,15,0) 70%);
}
.roster-tile-name{ font-family: var(--font-display); font-weight: 800; text-transform: uppercase; font-size: 1.3rem; color: var(--fg); }
.roster-tile-cta{ font-size: 0.68rem; color: var(--yellow); }

.roster-tile-coming{
  background: var(--bg-card); border: 1px dashed rgba(255,158,44,0.45); cursor:default;
  display:flex; align-items:center; justify-content:center; padding: 2rem;
}
.roster-tile-coming:hover img{ transform:none; }
.roster-tile-coming-content{ text-align:center; }
.coming-label{ font-size: 0.7rem; color: var(--magenta); display:block; margin-bottom: 0.6rem; }
.coming-title{ font-family: var(--font-display); font-size: 1.5rem; text-transform: uppercase; margin-bottom: 0.8rem; color: var(--fg); }
.coming-text{ color: var(--muted); font-size: 0.9rem; margin-bottom: 1.2rem; }

.modal-overlay{
  display:none; position: fixed; inset:0; z-index: 400;
  background: rgba(11,10,15,0.82); backdrop-filter: blur(6px);
  align-items:center; justify-content:center; padding: 2rem;
}
.modal-overlay.open{ display:flex; }
.modal-close{
  position: absolute; top: 1rem; right: 1rem;
  background: var(--bg); border: 1px solid var(--line); color: var(--fg);
  width: 34px; height:34px; border-radius:50%; cursor:pointer; z-index:2;
  display:flex; align-items:center; justify-content:center; font-size:0.9rem;
}
.modal-close:hover{ border-color: var(--magenta); color: var(--magenta); }

.pass-card{
  position: relative;
  display:grid;
  grid-template-columns: 280px 1fr;
  grid-template-areas:
    "top top"
    "photo body"
    "player player"
    "barcode barcode"
    "bottom bottom";
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow:hidden;
}
.modal-pass{ position:relative; max-width: 900px; max-height: 88vh; overflow-y:auto; width:100%; cursor:default; }
.pass-reverse .pass-card{ grid-template-columns: 1fr 280px; grid-template-areas:
    "top top"
    "body photo"
    "player player"
    "barcode barcode"
    "bottom bottom"; }
.pass-top{
  grid-area: top;
  display:flex; justify-content:space-between;
  padding: 1rem 3.4rem 1rem 1.6rem;
  border-bottom: 1px dashed var(--line);
  font-size: 0.72rem; color: var(--yellow);
}
.pass-photo{
  grid-area: photo;
  position:relative;
  background: linear-gradient(160deg, var(--violet), var(--magenta));
  min-height: 260px;
  display:flex; align-items:center; justify-content:center;
  border-right: 1px dashed var(--line);
}
.pass-reverse .pass-photo{ border-right:none; border-left: 1px dashed var(--line); }
.pass-photo img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.pass-photo-fallback{ position:relative; z-index:1; font-size: 0.7rem; color: rgba(11,10,15,0.55); }
.pass-photo:not(.no-photo) .pass-photo-fallback{ display:none; }
.pass-body{ grid-area: body; padding: 1.8rem; }
.pass-name{ font-size: clamp(2rem, 4vw, 3rem); text-transform: uppercase; }
.pass-tagline{ color: var(--magenta); font-size: 0.75rem; margin: 0.4rem 0 0.6rem; }
.pass-play-hint{ color: var(--yellow); font-size: 0.68rem; margin-bottom: 1rem; }
.tag-row{ display:flex; gap: 0.5rem; flex-wrap:wrap; margin-bottom: 1.3rem; }
.tag{
  font-family: var(--font-mono); font-size: 0.68rem; text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.35rem 0.7rem; border: 1px solid var(--violet); border-radius: 999px; color: var(--fg);
}
.pass-bio{ color: var(--muted); margin-bottom: 1.4rem; max-width: 620px; }
.venues-label{ font-size: 0.68rem; color: var(--muted); display:block; margin-bottom: 0.6rem; }
.venue-chips{ display:flex; gap: 0.5rem; flex-wrap:wrap; }
.venue-chips span{
  font-family: var(--font-mono); font-size: 0.7rem; color: var(--fg);
  padding: 0.3rem 0.6rem; background: var(--bg-alt); border-radius: var(--radius);
}
.pass-player{
  grid-area: player;
  padding: 0 1.6rem 1.2rem;
}
.pass-player iframe{ width:100%; height:320px; border:0; border-radius: var(--radius); display:block; }
.pass-barcode{
  grid-area: barcode;
  height: 26px; margin: 0 1.6rem;
  background: repeating-linear-gradient(90deg, var(--fg) 0 2px, transparent 2px 5px, var(--fg) 5px 6px, transparent 6px 11px);
  opacity: 0.12;
}
.pass-bottom{
  grid-area: bottom;
  display:flex; align-items:center; justify-content:space-between;
  padding: 1.2rem 1.6rem;
}
.social-link{ font-family: var(--font-mono); font-size: 0.75rem; color: var(--muted); text-transform: uppercase; border-bottom: 1px solid transparent; }
.social-link:hover{ color: var(--fg); border-color: var(--fg); }

/* ============================================
   About
   ============================================ */
.about{ background: var(--bg-alt); max-width:100%; }
.about-inner{ max-width: var(--container); margin: 0 auto; padding: 0 0; }
.about-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; margin-top: 2.5rem; }
.about-num{ color: var(--violet); font-size: 0.9rem; display:block; margin-bottom: 0.8rem; }
.about-item h3{ font-size: 1.2rem; text-transform: uppercase; margin-bottom: 0.6rem; }
.about-item p{ color: var(--muted); }

/* ============================================
   Contact
   ============================================ */
.contact-inner a{ color: var(--magenta); border-bottom: 1px solid var(--magenta); }
.booking-form{
  margin-top: 2.5rem;
  display:grid; grid-template-columns: 1fr 1fr; gap: 1.3rem 1.5rem;
}
.form-row{ display:flex; flex-direction:column; gap: 0.5rem; }
.form-row-full{ grid-column: 1 / -1; }
.booking-form label{ font-size: 0.7rem; color: var(--muted); }
.booking-form input, .booking-form select, .booking-form textarea{
  background: var(--bg-card); border: 1px solid var(--line); color: var(--fg);
  padding: 0.85rem 1rem; border-radius: var(--radius); font-family: var(--font-body); font-size: 0.95rem;
}
.booking-form input:focus, .booking-form select:focus, .booking-form textarea:focus{
  outline: none; border-color: var(--magenta);
}
.booking-form button{ grid-column: 1 / -1; justify-self:start; margin-top: 0.5rem; }
.form-note{ grid-column: 1/-1; font-size: 0.72rem; color: var(--muted); }

/* ============================================
   Footer
   ============================================ */
.site-footer{ border-top: 1px solid var(--line); padding: 4rem 2rem 2rem; }
.footer-top{ max-width: var(--container); margin: 0 auto; display:flex; justify-content:space-between; flex-wrap:wrap; gap: 3rem; margin-bottom: 3rem; }
.footer-brand p{ color: var(--muted); margin-top: 0.8rem; max-width: 280px; }
.footer-links{ display:flex; gap: 4rem; }
.footer-links div{ display:flex; flex-direction:column; gap: 0.6rem; }
.footer-label{ font-size: 0.68rem; color: var(--muted); margin-bottom: 0.4rem; }
.footer-links a{ color: var(--fg); font-size: 0.92rem; }
.footer-links a:hover{ color: var(--magenta); }
.footer-bottom{
  max-width: var(--container); margin: 0 auto;
  display:flex; justify-content:space-between; font-size: 0.7rem; color: var(--muted);
  padding-top: 1.5rem; border-top: 1px solid var(--line);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 860px){
  .site-nav, .nav-cta{ display:none; }
  .nav-toggle{ display:flex; }
  .pass-card{ grid-template-columns: 1fr; grid-template-areas: "top" "photo" "body" "player" "barcode" "bottom"; }
  .roster-grid{ grid-template-columns: repeat(2, 1fr); }
  .pass-photo{ border-right:none; border-left:none; border-bottom: 1px dashed var(--line); min-height: 220px; }
  .about-grid{ grid-template-columns: 1fr; }
  .booking-form{ grid-template-columns: 1fr; }
  .pass-bottom{ flex-direction: column; align-items:flex-start; gap: 1rem; }
}
@media (max-width: 480px){
  .site-header{ padding: 1rem 1.2rem; }
  section, .hero{ padding-left: 1.2rem; padding-right: 1.2rem; }
}

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


/* ============================================
   Artist page (gibbs.html) — EPK
   ============================================ */
.back-link{ color: var(--muted); font-size: 0.72rem; display:inline-block; margin-bottom: 2.5rem; }
.back-link:hover{ color: var(--magenta); }

.artist-hero{ padding-top: 3.5rem; }
.artist-hero-grid{
  display:grid; grid-template-columns: 360px 1fr; gap: 3rem; align-items: start;
}
.artist-portrait{
  position:relative; aspect-ratio: 4/5; border-radius: 10px; overflow:hidden;
  background: linear-gradient(160deg, var(--violet), var(--magenta));
  border: 1px solid var(--line);
  display:flex; align-items:center; justify-content:center;
}
.artist-portrait img{ position:absolute; inset:0; width:100%; height:100%; object-fit:cover; }
.artist-portrait:not(.no-photo) .pass-photo-fallback{ display:none; }

.artist-name{ font-size: clamp(3rem, 8vw, 5.5rem); text-transform: uppercase; letter-spacing: -0.02em; }
.artist-tagline{ color: var(--magenta); font-size: 0.8rem; margin: 0.6rem 0 1.4rem; }
.artist-lead{ color: var(--fg); font-size: 1.15rem; max-width: 46ch; margin-bottom: 2rem; }
.artist-actions{ display:flex; gap: 0.8rem; flex-wrap:wrap; }

.stat-row{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 1px;
  margin-top: 4rem; background: var(--line);
  border: 1px solid var(--line); border-radius: 10px; overflow:hidden;
}
.stat{ background: var(--bg-card); padding: 1.6rem 1.4rem; }
.stat-num{
  display:block; font-family: var(--font-display); font-size: 2.2rem;
  line-height:1; color: var(--magenta); margin-bottom: 0.5rem;
}
.stat-label{ font-size: 0.68rem; color: var(--muted); }

/* Listen */
.listen-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.listen-label{ font-size: 0.7rem; color: var(--yellow); margin-bottom: 0.8rem; }
.listen-item iframe{ width:100%; height: 300px; border:0; border-radius: var(--radius); display:block; }
.listen-more{ font-size: 0.72rem; color: var(--muted); margin-top: 2rem; }
.listen-more a{ color: var(--fg); border-bottom: 1px solid var(--line); }
.listen-more a:hover{ border-color: var(--magenta); color: var(--magenta); }

/* Track record */
.record{ background: var(--bg-alt); max-width:100%; }
.record .section-head, .record .record-grid, .record .closings{ max-width: var(--container); margin-left:auto; margin-right:auto; }
.record-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.record-card{
  background: var(--bg-card); border: 1px solid var(--line); border-radius: 10px;
  padding: 1.8rem; border-top: 3px solid var(--magenta);
}
.record-count{ font-size: 0.68rem; color: var(--yellow); display:block; margin-bottom: 0.7rem; }
.record-card h3{ font-size: 1.3rem; text-transform: uppercase; margin-bottom: 0.8rem; }
.record-card p{ color: var(--muted); font-size: 0.92rem; }
.record-card strong{ color: var(--fg); }
.closings{ margin-top: 3rem; padding-top: 2.5rem; border-top: 1px dashed var(--line); }
.closings-lead{ color: var(--muted); max-width: 60ch; margin-bottom: 1.2rem; }
.closings-lead strong{ color: var(--fg); }

/* Shows */
.year-block{
  display:grid; grid-template-columns: 90px 1fr; gap: 1.5rem;
  padding: 1.5rem 0; border-top: 1px solid var(--line); align-items: start;
}
.year-block:last-child{ border-bottom: 1px solid var(--line); }
.year{ font-size: 0.85rem; color: var(--magenta); }

/* Bio */
.bio{ background: var(--bg-alt); max-width:100%; }
.bio-inner{ max-width: 720px; margin: 0 auto; }
.bio-text{ color: var(--muted); margin-bottom: 1.2rem; font-size: 1.02rem; }
.bio-short{ margin-top: 2rem; border-top: 1px dashed var(--line); padding-top: 1.5rem; }
.bio-short summary{ cursor:pointer; font-size: 0.72rem; color: var(--muted); list-style:none; }
.bio-short summary::-webkit-details-marker{ display:none; }
.bio-short summary::before{ content:'+ '; color: var(--magenta); }
.bio-short[open] summary::before{ content:'– '; }
.bio-short summary:hover{ color: var(--fg); }
.bio-short-body{ margin-top: 1.5rem; }
.bio-short-label{ font-size: 0.66rem; color: var(--yellow); margin-bottom: 0.5rem; }

/* Rider */
.rider-grid{ display:grid; grid-template-columns: repeat(2, 1fr); gap: 3rem; }
.rider-col{
  background: var(--bg-card); border: 1px solid var(--line);
  border-radius: 10px; padding: 2rem;
}
.rider-title{ font-size: 1.4rem; text-transform: uppercase; margin-bottom: 1.5rem; }
.rider-label{ font-size: 0.68rem; color: var(--magenta); margin: 1.6rem 0 0.7rem; }
.rider-label:first-of-type{ margin-top: 0; }
.rider-list{ margin: 0; padding-left: 1.1rem; color: var(--muted); font-size: 0.92rem; }
.rider-list li{ margin-bottom: 0.35rem; }
.rider-note{ color: var(--muted); font-size: 0.92rem; }
.rider-note a{ color: var(--fg); border-bottom: 1px solid var(--line); }
.rider-note a:hover{ border-color: var(--magenta); color: var(--magenta); }

/* Press */
.press-grid{ display:grid; grid-template-columns: repeat(3, 1fr); gap: 2.5rem; }
.link-list{ list-style:none; margin:0; padding:0; }
.link-list li{ margin-bottom: 0.7rem; }
.link-list a{
  font-family: var(--font-mono); font-size: 0.78rem; color: var(--muted);
  border-bottom: 1px solid transparent;
}
.link-list a:hover{ color: var(--fg); border-color: var(--magenta); }
.press-col .btn{ margin-top: 1rem; }

@media (max-width: 860px){
  .artist-hero-grid{ grid-template-columns: 1fr; gap: 2rem; }
  .artist-portrait{ max-width: 320px; }
  .stat-row{ grid-template-columns: repeat(2, 1fr); }
  .listen-grid{ grid-template-columns: 1fr; }
  .record-grid{ grid-template-columns: 1fr; }
  .rider-grid{ grid-template-columns: 1fr; gap: 1.5rem; }
  .press-grid{ grid-template-columns: 1fr; gap: 2rem; }
  .year-block{ grid-template-columns: 1fr; gap: 0.8rem; }
}

/* two CTAs side by side in the pass footer */
.pass-cta-row{ display:flex; gap: 0.6rem; flex-wrap:wrap; }
.socials{ display:flex; gap: 1.2rem; flex-wrap:wrap; }

/* booking form: keep the unchosen placeholder visibly muted */
.booking-form select:invalid{ color: var(--muted); }
.booking-form select option{ color: var(--fg); background: var(--bg-card); }
.booking-form select option[disabled]{ color: var(--muted); }

/* ============================================
   Thank-you page (thanks.html)
   ============================================ */
.thanks{
  min-height: calc(100vh - 220px);
  display:flex; flex-direction:column; align-items:center; justify-content:center;
  padding-top: 5rem; padding-bottom: 5rem;
}
.thanks-card{
  width:100%; max-width: 620px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow:hidden;
}
.thanks-card .pass-top{
  display:flex; justify-content:space-between;
  padding: 1rem 1.6rem;
  border-bottom: 1px dashed var(--line);
  font-size: 0.72rem; color: var(--yellow);
}
.thanks-body{ padding: 2.4rem 1.6rem 1.6rem; }
.thanks-title{
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.4rem);
  text-transform: uppercase; line-height: 1; margin-bottom: 1rem;
}
.thanks-lead{ color: var(--fg); font-size: 1.08rem; margin-bottom: 2.2rem; max-width: 44ch; }

.thanks-steps{ display:flex; flex-direction:column; gap: 1.2rem; }
.thanks-step{ display:grid; grid-template-columns: 34px 1fr; gap: 0.9rem; align-items:start; }
.thanks-step-num{ font-size: 0.72rem; color: var(--magenta); padding-top: 0.15rem; }
.thanks-step p{ color: var(--muted); font-size: 0.94rem; }
.thanks-step a{ color: var(--fg); border-bottom: 1px solid var(--line); }
.thanks-step a:hover{ color: var(--magenta); border-color: var(--magenta); }

.thanks-card .pass-barcode{ margin: 0.6rem 1.6rem 0; }
.thanks-bottom{
  display:flex; gap: 0.8rem; flex-wrap:wrap;
  padding: 1.6rem;
}
.thanks-note{
  font-size: 0.68rem; color: var(--muted);
  max-width: 620px; margin-top: 1.6rem; line-height: 1.7;
  text-transform: none; letter-spacing: 0.02em;
}

@media (max-width: 480px){
  .thanks-bottom .btn{ width:100%; justify-content:center; }
}

/* three-up stat row (artist pages with fewer numbers) */
.stat-row-3{ grid-template-columns: repeat(3, 1fr); }
.listen-item-wide{ margin-bottom: 2.5rem; }
.listen-item-wide iframe{ width:100%; height: 300px; border:0; border-radius: var(--radius); display:block; }
@media (max-width: 860px){ .stat-row-3{ grid-template-columns: 1fr; } }

/* booking form: error state on the note under the submit button */
.form-note-error{ color: var(--magenta); text-transform:none; letter-spacing:0.02em; }

/* Rider: present but tucked away - it's an ask, not a sell */
.rider-details{ border-top: 1px dashed var(--line); padding-top: 1.6rem; }
.rider-details summary{
  cursor: pointer; list-style: none;
  font-size: 0.8rem; color: var(--muted);
  padding: 0.2rem 0;
}
.rider-details summary::-webkit-details-marker{ display:none; }
.rider-details summary::before{ content: '+ '; color: var(--magenta); }
.rider-details[open] summary::before{ content: '– '; }
.rider-details summary:hover{ color: var(--fg); }
.rider-intro{ color: var(--muted); font-size: 0.94rem; margin: 1.2rem 0 2rem; max-width: 60ch; }
.rider-details .rider-grid{ margin-top: 0; }

/* ============================================
   Roster tiles: gradient frame all the way round
   ============================================
   Was: the img had inset:2px AND width/height:100%, so it sized to the whole
   tile and spilled 2px over the right and bottom edge - the frame only showed
   top-left. And the hover zoom covered whatever frame was left.
   Now: the image fills the tile, and the frame is drawn as a ring on top of it,
   so nothing can cover it. */
.roster-tile img{ inset: 0; width: 100%; height: 100%; }
.roster-tile::after{
  content: ''; position: absolute; inset: 0;
  border-radius: 10px;
  padding: 2px;
  background: linear-gradient(165deg, #FFC93C 0%, #FF9E2C 30%, #FF4D1C 65%, #E01B24 100%);
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
          mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
          mask-composite: exclude;
  pointer-events: none;
  z-index: 3;
}
/* the "Join us" tile keeps its own dashed outline */
.roster-tile-coming::after{ display: none; }

/* Artist modal on phones: keep the buttons above the fold.
   The card lost its player, so the only things still pushing it down are the
   overlay padding and the photo. */
@media (max-width: 560px){
  .modal-overlay{ padding: 1rem; }
  .pass-photo{ min-height: 170px; }
  .pass-body{ padding: 1.3rem; }
  .pass-bottom{ padding: 1rem 1.3rem; }
}
