/*
 * Pop & Roll — main.css
 * Ported directly from the standalone HTML mockup approved by the client.
 * Enqueued as a real external file (see functions.php) so LiteSpeed Cache's
 * inline <style> stripping never touches it.
 */


  /* ============================
     DESIGN TOKENS
     Palette pulled straight from the band's logo: black bill-board bg,
     neon violet + spearmint green burst, chalky white for the "&".
     White carries section backgrounds, never cream/paper — paper is an accent only.
     ============================ */
  :root{
    --black: #0B0B0C;
    --black-soft: #161616;
    --purple: #8C5CF0;
    --purple-dim: #6B45C4;
    --green: #5FE8A6;
    --white: #F4F3EF;
    --paper: #E7DFC9;
    --ink: #17130F;

    --font-bubble: 'Bangers', cursive;
    --font-drip: 'Nosifer', system-ui;
    --font-eyebrow: 'Barlow Condensed', sans-serif;
    --font-body: 'Space Mono', monospace;
    --font-script: 'Caveat', cursive;

    --radius: 3px;
    --max-width: 1160px;
  }

  *{ box-sizing: border-box; margin: 0; padding: 0; }
  html{ scroll-behavior: smooth; }
  body{
    font-family: var(--font-body);
    color: var(--ink);
    background: var(--white);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
    cursor: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="30" height="30" viewBox="0 0 32 32"><polygon points="16,1 20,12 31,12 22,19 25,30 16,23 7,30 10,19 1,12 12,12" fill="%235FE8A6" stroke="%230B0B0C" stroke-width="2" stroke-linejoin="round"/></svg>') 15 15, auto;
  }
  img{ max-width: 100%; display: block; }
  a{ color: inherit; }
  .wrap{ max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }

  .eyebrow{
    font-family: var(--font-eyebrow);
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-weight: 700;
    font-size: 0.82rem;
  }

  @media (prefers-reduced-motion: reduce){
    *{ animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  }

  /* ============================
     GRAIN OVERLAY — subtle photocopy/VHS texture, applied once at body level
     ============================ */
  .grain{
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 999;
    opacity: 0.05;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='120'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
  }

  /* ============================
     NAV
     ============================ */
  header.site-nav{
    position: sticky;
    top: 0;
    z-index: 50;
    background: var(--black);
    border-bottom: 3px solid var(--purple);
  }
  .nav-inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 24px;
  }
  .nav-mark{
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    position: relative;
    z-index: 60;
  }
  .nav-mark img{
    height: 118px;
    width: auto;
    margin: -20px 0 -62px;
    filter: drop-shadow(0 12px 20px rgba(0,0,0,0.55));
  }
  .nav-mark span{
    font-family: var(--font-bubble);
    font-size: 1.2rem;
    color: var(--green);
    letter-spacing: 0.02em;
  }
  nav.nav-links{ display: flex; align-items: center; gap: 28px; }
  nav.nav-links a{
    font-family: var(--font-eyebrow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.2s, color 0.2s;
  }
  nav.nav-links a:hover, nav.nav-links a:focus-visible{ opacity: 1; color: var(--green); }

  /* ============================
     SOCIAL LINKS — used in the nav and the footer
     ============================ */
  .social-links{ display: flex; align-items: center; gap: 16px; }
  .social-links a{
    display: flex;
    color: var(--white);
    opacity: 0.75;
    transition: opacity 0.2s, color 0.2s, transform 0.2s;
  }
  .social-links a:hover, .social-links a:focus-visible{
    opacity: 1;
    color: var(--green);
    transform: translateY(-2px);
  }
  .social-links svg{ width: 20px; height: 20px; }
  .nav-social{ padding-left: 4px; border-left: 1px solid rgba(244,243,239,0.2); }
  .nav-toggle{
    display: none;
    background: none;
    border: 2px solid var(--white);
    color: var(--white);
    font-family: var(--font-eyebrow);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    padding: 6px 12px;
    border-radius: var(--radius);
    cursor: pointer;
  }

  /* ============================
     HERO VIDEO — muted looping background footage, pushed to a stark
     high-contrast black and white (leaning toward the old iPod-ad look:
     bright subject, dark background), then a diagonal purple-to-green
     multiply tint colorizes whatever reads bright, playing up the
     pop/rock double-genre in the name. True flat-color silhouette work
     (subject fully isolated from background) needs the video itself
     rotoscoped or shot on a clean backdrop, CSS filters can't isolate
     a subject from its background, but this gets close in-browser.
     ============================ */
  .hero-video{
    position: absolute;
    inset: 0;
    z-index: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1) contrast(1.7) brightness(1.35);
  }
  .hero-tint{
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(135deg, var(--purple) 0%, var(--purple) 30%, var(--green) 100%);
    mix-blend-mode: color;
    opacity: 0.95;
    pointer-events: none;
  }
  .hero{
    position: relative;
    background-color: var(--black);
    color: var(--white);
    padding: 120px 24px 70px;
    text-align: center;
    overflow: hidden;
    min-height: 78vh;
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
  .hero::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, rgba(11,11,12,0) 0%, rgba(11,11,12,0.1) 70%, rgba(11,11,12,0.45) 100%);
    pointer-events: none;
  }

  .hero-inner{ position: relative; z-index: 3; max-width: 780px; }

  /* ============================
     HERO GLASS — frosted panel holding the wordmark, eyebrow, tagline
     and CTAs, keeps text legible over a busy video without having to
     dim the whole frame
     ============================ */
  .hero-glass{
    background: rgba(11,11,12,0.42);
    backdrop-filter: blur(16px) saturate(140%);
    -webkit-backdrop-filter: blur(16px) saturate(140%);
    border: 1px solid rgba(244,243,239,0.16);
    border-radius: 16px;
    padding: 38px 34px 34px;
    box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  }

  /* Wordmark recreates the logo's letterforms in live type: bubbly POP, plain &, dripping ROLL */
  .hero-wordmark{
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    opacity: 0;
    animation: burstIn 0.7s cubic-bezier(0.2, 0.8, 0.3, 1.2) 0.1s both, glitchFlicker 6s linear 1s infinite;
  }
  @keyframes glitchFlicker{
    0%, 91%, 100%{ filter: none; }
    92%{ filter: drop-shadow(2px 0 var(--purple)) drop-shadow(-2px 0 var(--green)); }
    93%{ filter: none; }
    95%{ filter: drop-shadow(-2px 0 var(--purple)) drop-shadow(2px 0 var(--green)); }
    96%{ filter: none; }
  }
  .hero-wordmark .pop{
    font-family: var(--font-bubble);
    font-size: clamp(4.5rem, 18vw, 10rem);
    color: var(--green);
    -webkit-text-stroke: 3px var(--black);
    text-stroke: 3px var(--black);
    line-height: 0.9;
  }
  .hero-wordmark .amp{
    font-family: var(--font-bubble);
    font-size: clamp(2.4rem, 8vw, 4.8rem);
    color: var(--white);
    -webkit-text-stroke: 2px var(--black);
    line-height: 0.9;
  }
  .hero-wordmark .roll{
    font-family: var(--font-drip);
    font-size: clamp(3.6rem, 15vw, 8.4rem);
    color: var(--purple);
    line-height: 0.9;
  }
  @keyframes burstIn{
    0%{ opacity: 0; transform: scale(0.7) rotate(-6deg); }
    100%{ opacity: 1; transform: scale(1) rotate(0deg); }
  }
  .hero-eyebrow{ color: var(--green); margin-bottom: 10px; }
  .hero-tagline{
    max-width: 520px;
    margin: 14px auto 0;
    color: rgba(244,243,239,0.8);
    font-size: 0.98rem;
  }
  .hero-tagline strong{ color: var(--white); }
  .hero-ctas{
    margin-top: 30px;
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
  }
  .btn{
    font-family: var(--font-eyebrow);
    text-transform: uppercase;
    letter-spacing: 0.09em;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 26px;
    border-radius: var(--radius);
    text-decoration: none;
    display: inline-block;
    border: 2px solid transparent;
    cursor: pointer;
    transition: transform 0.15s ease, background 0.2s, color 0.2s;
  }
  .btn:hover{ transform: translateY(-2px) rotate(-1deg); }
  .btn-primary{ background: var(--purple); color: var(--white); }
  .btn-primary:hover{ background: var(--purple-dim); }
  .btn-outline{ border-color: var(--green); color: var(--green); }
  .btn-outline:hover{ background: var(--green); color: var(--black); }

  /* ============================
     BURST ACCENT — small comic-burst star echoing the logo mark
     ============================ */
  .burst-accent{
    width: 30px;
    height: 30px;
    margin: 0 auto 12px;
    background: var(--green);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: burstPulse 2.6s ease-in-out infinite;
  }
  .burst-accent.purple{ background: var(--purple); }
  @keyframes burstPulse{
    0%, 100%{ transform: scale(1) rotate(0deg); }
    50%{ transform: scale(1.14) rotate(10deg); }
  }

  /* ============================
     EQ BARS — tiny animated soundwave, signals "live" energy
     ============================ */
  .eq-bars{
    display: inline-flex;
    align-items: flex-end;
    gap: 2px;
    height: 12px;
    margin-right: 8px;
    vertical-align: middle;
  }
  .eq-bars span{
    width: 3px;
    height: 100%;
    background: var(--green);
    transform-origin: bottom;
    animation: eqBounce 0.9s ease-in-out infinite;
  }
  .eq-bars span:nth-child(1){ animation-delay: 0s; }
  .eq-bars span:nth-child(2){ animation-delay: 0.2s; }
  .eq-bars span:nth-child(3){ animation-delay: 0.4s; }
  @keyframes eqBounce{
    0%, 100%{ transform: scaleY(0.35); }
    50%{ transform: scaleY(1); }
  }

  /* ============================
     SCROLL REVEAL — sections rise and fade in as they enter view
     ============================ */
  .reveal{
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.in-view{
    opacity: 1;
    transform: translateY(0);
  }

  /* ============================
     TORN EDGE DIVIDER — flyer ripped off a telephone pole
     ============================ */
  .tear{
    height: 26px;
    background: var(--white);
    clip-path: polygon(0% 100%, 2% 20%, 5% 90%, 8% 10%, 11% 80%, 14% 15%, 17% 95%, 20% 5%, 23% 70%, 26% 25%, 29% 85%, 32% 0%, 35% 60%, 38% 20%, 41% 90%, 44% 10%, 47% 75%, 50% 30%, 53% 95%, 56% 5%, 59% 65%, 62% 15%, 65% 85%, 68% 25%, 71% 90%, 74% 10%, 77% 70%, 80% 20%, 83% 95%, 86% 5%, 89% 80%, 92% 15%, 95% 90%, 98% 20%, 100% 100%);
  }
  .tear.on-black{ background: var(--black); }

  /* ============================
     SECTION SHELL
     ============================ */
  section{ padding: 70px 24px; }
  .section-head{ text-align: center; max-width: 640px; margin: 0 auto 46px; }
  .section-head .eyebrow{ margin-bottom: 10px; display: block; }
  .section-head h2{
    font-family: var(--font-bubble);
    font-weight: 400;
    font-size: clamp(1.9rem, 4.5vw, 2.9rem);
    letter-spacing: 0.01em;
    line-height: 1.1;
  }
  .placeholder-flag{
    display: inline-block;
    font-family: var(--font-eyebrow);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--purple-dim);
    border: 1px dashed var(--purple-dim);
    border-radius: 3px;
    padding: 2px 8px;
    margin-top: 14px;
  }

  /* ============================
     ABOUT — xeroxed flyer / taped photo
     ============================ */
  .about{ background: var(--white); }
  .about-grid{
    display: grid;
    grid-template-columns: 1fr 1.15fr;
    gap: 56px;
    align-items: center;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .about-video{
    position: relative;
    max-width: 340px;
    margin: 0 auto;
    background: var(--black);
    overflow: hidden;
    transform: rotate(-2deg);
    box-shadow: 0 12px 26px rgba(0,0,0,0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .about-video:hover{
    transform: rotate(0deg) scale(1.02);
    box-shadow: 0 18px 34px rgba(0,0,0,0.35);
  }
  .about-video video{
    display: block;
    width: 100%;
    aspect-ratio: 9/16;
    object-fit: cover;
    background: var(--black);
  }
  .about-video::before{
    content: "";
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%) rotate(-3deg);
    width: 90px;
    height: 28px;
    background: rgba(231,223,201,0.75);
    border: 1px solid rgba(0,0,0,0.05);
    z-index: 2;
  }
  .about-copy .eyebrow{ color: var(--purple-dim); margin-bottom: 12px; display: block; }
  .about-copy p{ margin-bottom: 16px; color: var(--ink); }
  .about-copy p:first-of-type::first-letter{
    font-family: var(--font-bubble);
    font-size: 2.6rem;
    color: var(--purple);
    float: left;
    line-height: 0.75;
    margin: 8px 8px 0 0;
  }

  /* ============================
     BAND — trading-card style lineup, same taped-photo language as
     About and Gallery so it reads as part of the same flyer wall
     ============================ */
  .band{ background: var(--black); color: var(--white); }
  .band .section-head h2{ color: var(--white); }
  .band-grid{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 26px;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .band-card{ text-align: center; }
  .band-photo{
    position: relative;
    background: var(--white);
    padding: 12px 12px 14px;
    margin-bottom: 14px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .band-photo-inner{
    position: relative;
    aspect-ratio: 1/1;
    overflow: hidden;
    background: var(--black-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(23,19,15,0.35);
    font-family: var(--font-eyebrow);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    transition: box-shadow 0.25s ease;
  }
  .band-photo-inner img{
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center top;
  }
  /* Tape bleeds off the top of the polaroid onto the black page behind it */
  .band-photo::before{
    content: "";
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%) rotate(-4deg);
    width: 86px;
    height: 30px;
    background: rgba(231,223,201,0.88);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 5px 10px rgba(0,0,0,0.3);
  }
  .band-card:nth-child(odd) .band-photo{ transform: rotate(-1.5deg); }
  .band-card:nth-child(even) .band-photo{ transform: rotate(1.5deg); }

  /* Name written on the polaroid's own caption strip, like it was
     signed with a marker, instead of sitting as a separate heading
     below the frame */
  .band-name{
    font-family: var(--font-script);
    font-weight: 600;
    font-size: 1.65rem;
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--purple-dim);
    margin-top: 10px;
    transform: rotate(-1deg);
  }
  .band-card:nth-child(even) .band-name{ color: #2f8a63; transform: rotate(1deg); }

  .band-role{
    display: block;
    font-family: var(--font-eyebrow);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 0.78rem;
    color: rgba(244,243,239,0.6);
    margin: 0 0 10px;
  }
  .band-bio{
    font-size: 0.85rem;
    color: rgba(244,243,239,0.7);
    line-height: 1.5;
  }
  .band-socials{
    justify-content: center;
    margin-top: 12px;
  }
  .band-socials svg{ width: 16px; height: 16px; }

  /* ============================
     DECADES — mixtape tracklist. Legit sequence: real chronological range.
     ============================ */
  .decades{ background: var(--black); color: var(--white); }
  .decades .section-head h2{ color: var(--green); }
  .decade-row{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .decade-card{
    background: var(--paper);
    border-radius: 6px;
    padding: 20px 16px 22px;
    text-align: center;
    position: relative;
    box-shadow: 0 10px 20px rgba(0,0,0,0.35);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .decade-card:nth-child(odd){ transform: rotate(-1.5deg); }
  .decade-card:nth-child(even){ transform: rotate(1.5deg); }
  .decade-card:hover{
    transform: rotate(0deg) translateY(-6px);
    box-shadow: 0 18px 32px rgba(0,0,0,0.5);
  }

  /* Small black star sitting on the mixtape label, replaces the earlier
     cassette-reel graphic, same star shape used for section-head accents */
  .decade-card .cassette-star{
    width: 20px;
    height: 20px;
    margin: 0 auto 10px;
    background: var(--ink);
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  }

  .decade-card .decade-label{
    font-family: var(--font-script);
    font-weight: 600;
    font-size: 2.1rem;
    line-height: 1;
    color: var(--purple-dim);
    margin-bottom: 10px;
    transform: rotate(-1deg);
  }
  .decade-card:nth-child(even) .decade-label{ color: #2f8a63; transform: rotate(1deg); }
  .decade-songs{
    list-style: none;
    counter-reset: track;
    text-align: left;
    max-width: 180px;
    margin: 0 auto;
    font-family: var(--font-script);
    font-weight: 600;
    font-size: 1.15rem;
    line-height: 1.55;
    color: var(--ink);
  }
  .decade-songs li{
    counter-increment: track;
    position: relative;
    padding-left: 22px;
    transform: rotate(-0.7deg);
  }
  .decade-songs li:nth-child(even){ transform: rotate(0.6deg); }
  .decade-songs li::before{
    content: counter(track) ".";
    position: absolute;
    left: 0;
    top: 0.1em;
    font-family: var(--font-eyebrow);
    font-weight: 700;
    font-size: 0.7rem;
    color: rgba(23,19,15,0.4);
  }
  .setlist-note{
    text-align: center;
    max-width: 480px;
    margin: 36px auto 0;
    font-family: var(--font-script);
    font-weight: 600;
    font-size: 1.3rem;
    color: var(--green);
    transform: rotate(-1deg);
  }

  /* ============================
     GALLERY — taped-up flyer wall
     ============================ */
  .gallery{ background: var(--white); }
  .gallery-grid{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    max-width: var(--max-width);
    margin: 0 auto;
  }
  .gallery-item{
    position: relative;
    transition: transform 0.3s ease;
  }
  .gallery-item:nth-child(odd){ transform: rotate(-2deg); }
  .gallery-item:nth-child(even){ transform: rotate(2deg); }
  .gallery-item:hover{ transform: rotate(0deg) scale(1.04); z-index: 2; }

  .gallery-photo{
    aspect-ratio: 1;
    background: var(--black);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(244,243,239,0.4);
    font-family: var(--font-eyebrow);
    text-transform: uppercase;
    font-size: 0.78rem;
    letter-spacing: 0.06em;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    transition: box-shadow 0.3s ease;
  }
  .gallery-item:hover .gallery-photo{ box-shadow: 0 18px 30px rgba(0,0,0,0.4); }
  .gallery-photo img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(1);
    transition: filter 0.4s ease, transform 0.4s ease;
  }
  .gallery-item:hover .gallery-photo img{ filter: grayscale(0) contrast(1.05); transform: scale(1.05); }

  /* Pushpin — corkboard show-flyer look, a mid-2000s/2010s DIY venue-wall
     device, deliberately different from the tape used on About/Band so
     the two photo treatments don't compete */
  .gallery-item::before{
    content: "";
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%);
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: radial-gradient(circle at 35% 30%, #fff, var(--green) 45%, #2f8a63 100%);
    box-shadow: 0 3px 6px rgba(0,0,0,0.55), inset 0 0 0 1px rgba(0,0,0,0.2);
    z-index: 3;
  }
  .gallery-item:nth-child(even)::before{
    background: radial-gradient(circle at 35% 30%, #fff, var(--purple) 45%, #5a36a8 100%);
  }

  /* ============================
     VIDEO — VHS frame, dead on for the era
     ============================ */
  .video{ background: var(--black); color: var(--white); }
  .video .section-head h2{ color: var(--purple); }
  .video-frame{
    max-width: 860px;
    margin: 0 auto;
    aspect-ratio: 16/9;
    border: 3px solid var(--green);
    background: var(--black-soft);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }
  .video-frame::before{
    content: "\25CF REC";
    position: absolute;
    top: 12px;
    left: 14px;
    z-index: 2;
    font-family: var(--font-eyebrow);
    color: var(--green);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-shadow: 0 1px 3px rgba(0,0,0,0.6);
  }
  .video-frame video{
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  .video-caption{
    text-align: center;
    margin-top: 16px;
    font-family: var(--font-eyebrow);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.85rem;
    color: rgba(244,243,239,0.6);
  }

  /* ============================
     QUOTE — sharpie on a flyer margin
     ============================ */
  .quote{ background: var(--white); text-align: center; }
  .quote blockquote{
    max-width: 700px;
    margin: 0 auto;
    font-family: var(--font-script);
    font-size: 2.1rem;
    color: var(--ink);
    line-height: 1.3;
    transform: rotate(-1deg);
  }
  .quote cite{
    display: block;
    margin-top: 18px;
    font-family: var(--font-eyebrow);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-style: normal;
    font-size: 0.85rem;
    color: var(--purple-dim);
  }

  /* ============================
     BOOKING — street-flyer tear tabs
     ============================ */
  .booking{ background: var(--purple); color: var(--black); }
  .booking .section-head h2{ color: var(--black); }
  .booking .section-head .eyebrow{ color: var(--black); }
  .booking-panel{
    max-width: 640px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px 40px 10px;
  }
  .form-row{ margin-bottom: 18px; }
  .form-row label{
    display: block;
    font-family: var(--font-eyebrow);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.78rem;
    margin-bottom: 6px;
    color: var(--ink);
  }
  .form-row input, .form-row textarea{
    width: 100%;
    padding: 11px 14px;
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.2);
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--white);
    color: var(--ink);
  }
  .form-row textarea{ min-height: 100px; resize: vertical; }
  .booking-panel .btn-primary{ width: 100%; text-align: center; margin: 6px 0 24px; }

  /* ============================
     FOOTER
     ============================ */
  footer.site-footer{
    background: var(--black);
    color: rgba(244,243,239,0.6);
    padding: 40px 24px 28px;
    text-align: center;
    font-size: 0.85rem;
  }
  .footer-mark{
    font-family: var(--font-bubble);
    color: var(--green);
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  .footer-social{ justify-content: center; margin-bottom: 16px; }

  /* ============================
     BBD ATTRIBUTION PILL — inherits host palette, expands on hover
     ============================ */
  .bbd-credit{
    position: fixed;
    bottom: 18px;
    right: 18px;
    z-index: 100;
    font-family: var(--font-eyebrow);
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--white);
    background: var(--black);
    border: 1px solid var(--purple);
    border-radius: 999px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    max-width: 34px;
    overflow: hidden;
    white-space: nowrap;
    transition: max-width 0.4s ease, padding 0.3s ease;
  }
  .bbd-credit .bbd-dot{
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--green);
    flex-shrink: 0;
  }
  .bbd-credit .bbd-text{
    margin-left: 8px;
    opacity: 0;
    transition: opacity 0.3s ease 0.1s;
  }
  .bbd-credit:hover, .bbd-credit:focus-visible{ max-width: 220px; padding: 8px 16px; }
  .bbd-credit:hover .bbd-text, .bbd-credit:focus-visible .bbd-text{ opacity: 1; }

  /* ============================
     RESPONSIVE
     ============================ */
  @media (max-width: 860px){
    .about-grid{ grid-template-columns: 1fr; gap: 32px; }
    .band-grid{ grid-template-columns: repeat(2, 1fr); }
    .decade-row{ grid-template-columns: repeat(3, 1fr); }
    .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
    .nav-mark img{ height: 88px; margin: -14px 0 -46px; }
  }
  @media (max-width: 640px){
    nav.nav-links{
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: var(--black);
      flex-direction: column;
      padding: 18px 24px;
      gap: 18px;
      border-bottom: 3px solid var(--purple);
    }
    nav.nav-links.open{ display: flex; }
    .nav-toggle{ display: inline-block; }
    .nav-social{
      border-left: none;
      border-top: 1px solid rgba(244,243,239,0.2);
      padding-left: 0;
      padding-top: 14px;
      margin-top: 4px;
    }
    .nav-mark img{ height: 42px; margin: 0; }
    .hero-glass{ padding: 22px 20px 20px; border-radius: 12px; }
    .hero-wordmark{ gap: 6px; margin-bottom: 8px; }
    .hero-wordmark .pop{ font-size: 2.6rem; -webkit-text-stroke-width: 1.5px; }
    .hero-wordmark .amp{ font-size: 1.4rem; }
    .hero-wordmark .roll{ font-size: 2.1rem; }
    .hero-tagline{ font-size: 0.85rem; margin-top: 8px; }
    .hero-ctas{ margin-top: 18px; gap: 10px; }
    .btn{ padding: 11px 20px; font-size: 0.82rem; }
    .gallery-grid{ grid-template-columns: repeat(2, 1fr); }
    .decade-row{ grid-template-columns: repeat(2, 1fr); }
    .booking-panel{ padding: 30px 22px 6px; }

    /* Show the whole hero photo on mobile rather than cropping into it.
       background-size: contain never crops, it letterboxes instead,
       and background-color fills that letterbox space with black. */
    .hero{
      min-height: 62vh;
      padding-top: 100px;
    }
  }

  a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible{
    outline: 3px solid var(--green);
    outline-offset: 2px;
  }