:root {
  --cream: #f0ede7;
  --paper: #f8f6f1;
  --ink: #101010;
  --muted: #6d6b67;
  --rust: #edae36;
  --line: rgba(16, 16, 16, 0.16);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--paper); font-family: "Manrope", sans-serif; animation: pageFadeIn .5s ease; }
@keyframes pageFadeIn { from { opacity: 0; } to { opacity: 1; } }

/* Hero content stagger on page load */
@keyframes heroSlideUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.page-hero > .eyebrow, .hero .eyebrow { animation: heroSlideUp .8s cubic-bezier(.2,.9,.3,1) .1s both; }
.page-hero > h1, .hero h1 { animation: heroSlideUp .9s cubic-bezier(.2,.9,.3,1) .25s both; }
.page-hero > p, .hero > p { animation: heroSlideUp .9s cubic-bezier(.2,.9,.3,1) .4s both; }

/* Unified button hover polish */
.button { transition: transform .2s ease, box-shadow .25s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.button.primary:hover { transform: translateY(-2px); box-shadow: 0 10px 26px rgba(237,174,54,.32); }
.button.outline:hover { transform: translateY(-2px); }
.button.outline-dark:hover { transform: translateY(-2px); background: var(--ink); color: white; }

/* Media page - videos hover lift */
.video-grid article { transition: transform .3s ease; }
.video-grid article:hover { transform: translateY(-6px); }
.video-embed { transition: box-shadow .3s ease; }
.video-grid article:hover .video-embed { box-shadow: 0 14px 34px rgba(0,0,0,.18); }

/* Media page - photo gentle scale + brightness on hover */
.photo-grid figure { transition: transform .4s cubic-bezier(.2,.9,.3,1); overflow: hidden; }
.photo-grid figure:hover { transform: scale(1.015); }
.photo-grid figure img { transition: filter .35s ease, transform .8s ease; }
.photo-grid figure:hover img { filter: brightness(1.06) contrast(1.04); transform: scale(1.04); }
.photo-grid figure figcaption { transition: color .25s ease; }
.photo-grid figure:hover figcaption { color: var(--rust); }

/* Planning timeline - step reveal (JS toggles .pg-in) */
.pg-step { opacity: 0; transform: translateX(-24px); transition: opacity .7s ease, transform .7s ease; }
.pg-step.pg-in { opacity: 1; transform: translateX(0); }
.pg-step-num { transition: transform .3s ease, background .25s ease, color .25s ease; }
.pg-step.pg-in .pg-step-num { animation: stepPop .6s cubic-bezier(.34,1.56,.64,1); }
@keyframes stepPop { 0% { transform: scale(0); } 60% { transform: scale(1.18); } 100% { transform: scale(1); } }

/* Songs page - row slide-in on scroll */
.setlist-rows li { transition: transform .18s ease, background .18s ease; }
.setlist-rows li:hover { transform: translateX(6px); }

/* Reduce motion preference */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }
h1, h2, .logo, .album-title, .release-copy h2 { font-family: "Archivo Black", sans-serif; font-weight: 400; text-transform: uppercase; }
h3 { font-family: "Manrope", sans-serif; }
.site-header { position: fixed; z-index: 100; top: 0; left: 0; width: 100%; display: flex; align-items: center; justify-content: space-between; padding: 20px 3vw; color: white; transition: background-color .3s ease, padding .3s ease, backdrop-filter .3s ease; }
.site-header.scrolled { background: rgba(10,10,10,.95); backdrop-filter: blur(12px); padding-top: 13px; padding-bottom: 13px; }
.logo { display: flex; flex-direction: column; font-size: 1.55rem; line-height: .82; letter-spacing: -.04em; }
.logo span { color: var(--rust); }
.logo small { display: block; margin-top: 4px; font-size: .5rem; letter-spacing: .32em; font-weight: 400; color: #f5e496; text-transform: uppercase; text-align: right; }
nav { display: flex; align-items: center; flex-wrap: nowrap; gap: 22px; font-size: .68rem; font-weight: 600; letter-spacing: .06em; text-transform: uppercase; }
.nav-cta { color: var(--rust); }
.site-header nav a.active { color: var(--rust) !important; border-bottom: 2px solid var(--rust); padding-bottom: 2px; }
.menu-button { display: none; padding: 6px; border: 0; background: none; }
.menu-button span { display: block; width: 24px; height: 1px; margin: 5px; background: white; }
.hero { min-height: 100vh; position: relative; display: flex; align-items: end; padding: 140px 5vw 80px; overflow: hidden; color: white; background: #0b0b0b; }
.hero-video { position: absolute; z-index: 0; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-youtube { position: absolute; z-index: 0; top: 50%; left: 50%; width: 100vw; height: 56.25vw; min-width: 177.78vh; min-height: 100vh; border: 0; transform: translate(-50%, -50%); pointer-events: none; }
.hero-overlay { position: absolute; z-index: 1; inset: 0; background: linear-gradient(0deg, rgba(0,0,0,.82) 0%, rgba(0,0,0,.32) 50%, rgba(0,0,0,.55) 100%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 680px; }
.hero-wordmark { position: absolute; z-index: 2; top: 96px; left: 50%; display: flex; flex-direction: column; align-items: stretch; color: var(--rust); font-family: "Archivo Black", sans-serif; font-size: clamp(3.2rem, 8.5vw, 8.4rem); line-height: .75; letter-spacing: -.08em; text-transform: uppercase; transform: translateX(-50%); white-space: nowrap; }
.hero-wordmark-name { display: flex; align-items: baseline; justify-content: center; }
.hero-wordmark span { color: #f5e496; font-size: .55em; transform: translateY(-.55em); }
.hero-wm-mike { display: inline-flex; align-items: baseline; gap: .08em; letter-spacing: 0; }
.hero-wm-mike em { font-style: normal; letter-spacing: -.08em; }
.hero-wordmark strong { font-weight: 400; }
.hero-wm-c { font-style: normal; font-size: .5em; vertical-align: baseline; letter-spacing: -.02em; }
.hero-wordmark-tag { margin-top: .18em; color: #f5e496; font-size: .3em; letter-spacing: .35em; font-weight: 400; text-align: right; }
.eyebrow { margin: 0 0 18px; color: var(--rust); font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; }
.hero .eyebrow { color: var(--rust); }
h1 { max-width: 650px; margin: 0 0 24px; font-size: clamp(2.8rem, 6vw, 6.3rem); line-height: .92; letter-spacing: -.055em; }
.button { display: inline-flex; justify-content: center; padding: 15px 24px; border: 1px solid transparent; cursor: pointer; text-transform: uppercase; letter-spacing: .1em; font-size: .68rem; font-weight: 700; }
.primary { color: var(--ink); background: var(--rust); }
.outline { border-color: rgba(255,255,255,.7); color: white; transition: background .2s ease, border-color .2s ease; }
.outline:hover { background: rgba(255,255,255,.1); border-color: white; }
.outline-dark { border-color: var(--ink); color: var(--ink); }
.text-link { font-size: .75rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.play-icon { display: inline-grid; width: 33px; height: 33px; margin-right: 8px; place-items: center; border: 1px solid currentColor; border-radius: 50%; font-size: .55rem; }
.scroll-hint { position: absolute; right: 4vw; bottom: 35px; color: rgba(255,255,255,.65); font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; }
.scroll-hint span { margin-left: 10px; }
.section { padding: 110px 8vw; }
.release { display: grid; grid-template-columns: 1.2fr .8fr; gap: 7vw; align-items: center; background: var(--paper); }
.release-art { position: relative; min-height: 610px; overflow: hidden; background: #dedbd4; }
.album-card { position: absolute; overflow: hidden; background: #aaa; box-shadow: 0 20px 50px rgba(0,0,0,.18); }
.album-card img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.7); }
.album-one { left: 5%; bottom: -5%; width: 48%; height: 72%; transform: rotate(-4deg); }
.album-two { right: 4%; top: 8%; width: 42%; height: 65%; transform: rotate(4deg); }
.album-title { position: absolute; z-index: 2; top: 35px; left: 35px; display: flex; flex-direction: column; color: var(--ink); font-size: clamp(2.7rem, 6vw, 6.2rem); line-height: .78; letter-spacing: -.08em; }
.album-title span { font-size: .4em; }
.album-title strong { color: var(--rust); font-weight: 400; }
.album-title small { margin-top: 18px; font-family: "Manrope", sans-serif; font-size: .11em; font-weight: 700; letter-spacing: .18em; text-transform: uppercase; }
.release-copy h2 { font-size: clamp(4rem, 8vw, 8rem); line-height: .82; letter-spacing: -.08em; }
.release-copy > p:not(.eyebrow) { max-width: 540px; color: var(--muted); line-height: 1.8; }
.release-actions { display: flex; gap: 10px; margin: 30px 0 55px; }
.newsletter { display: block; padding-top: 28px; border-top: 1px solid var(--line); }
.newsletter > span { display: block; font-size: 1.35rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.newsletter > p { margin: 8px 0 20px; color: var(--muted); font-size: .75rem; }
.newsletter > div { display: grid; grid-template-columns: 1fr auto; }
.newsletter input { margin: 0; padding: 13px 0; }
.newsletter button { border: 1px solid var(--rust); padding: 0 18px; color: var(--ink); background: transparent; cursor: pointer; font-size: .65rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.newsletter .newsletter-message { margin-bottom: 0; color: #96701e; }
.about { display: grid; grid-template-columns: 1fr 3fr; gap: 40px; background: var(--cream); }
.section-label { color: var(--muted); font-size: .65rem; letter-spacing: .15em; }
.about-copy { max-width: 900px; }
h2 { margin: 0; max-width: 850px; font-size: clamp(3rem, 6vw, 5.8rem); line-height: .92; letter-spacing: -.055em; }
.about-copy > p:not(.eyebrow) { max-width: 650px; margin: 30px 0; color: var(--muted); line-height: 1.85; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 55px; padding-top: 30px; border-top: 1px solid var(--line); gap: 20px; }
.stats strong, .stats span { display: block; }
.stats strong { font-family: "Archivo Black", sans-serif; font-size: 2.1rem; font-weight: 400; }
.stats span { color: var(--muted); font-size: .72rem; }
.setlist-section { background: var(--paper); padding: 70px 8vw; }
.setlist-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 28px; }
.setlist-header h2 { font-size: clamp(1.6rem, 2.5vw, 2.4rem); }
.setlist-columns { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 0 40px; }
.setlist-columns.setlist-columns--2 { grid-template-columns: 1fr 1fr; gap: 0 80px; }
.setlist-group { border-top: 2px solid var(--ink); }
.setlist-genre-label { font-family: "Archivo Black", sans-serif; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase; color: var(--rust); padding: 16px 0 14px; border-bottom: 1px solid var(--line); }
.setlist-columns--2 .setlist-genre-label { font-size: 1rem; letter-spacing: .12em; padding: 22px 0 20px; }
.setlist-rows { list-style: none; margin: 0; padding: 0; }
.setlist-rows li { position: relative; display: flex; align-items: baseline; gap: 6px; padding: 7px 0 7px 12px; border-bottom: 1px solid var(--line); transition: background .15s; }
.setlist-rows li::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); width: 3px; height: 0; background: var(--rust); border-radius: 2px; transition: height 0.2s ease; }
.setlist-rows li:hover::before { height: 70%; }
.setlist-rows li:hover .sl-title { color: var(--rust); }
.sl-num { display: none; }
.sl-title { font-size: .88rem; font-weight: 600; color: var(--ink); letter-spacing: -.01em; transition: color .15s; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; flex-shrink: 1; min-width: 0; }
.setlist-footer { margin-top: 40px; padding-top: 32px; border-top: 1px solid var(--line); display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.setlist-footer p { margin: 0; color: var(--muted); font-size: .82rem; line-height: 1.7; max-width: 560px; }
.setlist-footer .button { flex-shrink: 0; }
.sl-sep { font-size: .7rem; color: var(--line); flex-shrink: 0; }
.sl-artist { font-size: .7rem; color: var(--muted); font-style: italic; letter-spacing: .02em; white-space: nowrap; flex-shrink: 0; }
.section-heading { display: flex; align-items: end; justify-content: space-between; margin-bottom: 50px; }
.track-list { border-top: 1px solid var(--line); }
.track { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 20px; padding: 24px 8px; border-bottom: 1px solid var(--line); }
.track-play { width: 45px; height: 45px; border: 1px solid var(--line); border-radius: 50%; background: transparent; color: var(--rust); cursor: pointer; }
.track span { color: var(--rust); font-size: .6rem; letter-spacing: .15em; text-transform: uppercase; }
.track h3 { margin: 4px 0 0; font-size: 1.15rem; text-transform: uppercase; }
.track time { color: var(--muted); font-size: .75rem; }
.track.playing { color: var(--rust); }
.track.loading { opacity: .55; }
.music-note { display: flex; align-items: baseline; gap: 18px; margin-top: 24px; color: var(--muted); font-size: .7rem; }
.music-note span { flex: 0 0 auto; color: var(--rust); font-weight: 600; letter-spacing: .12em; text-transform: uppercase; }
.music-note p { margin: 0; }
.gallery { background: var(--cream); }
.section-intro { max-width: 390px; margin: 0; color: var(--muted); font-size: .78rem; line-height: 1.8; }
.photo-grid { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 260px; gap: 12px; grid-auto-flow: dense; }
.photo-grid figure { position: relative; overflow: hidden; margin: 0; background: #d7cfc3; }
.photo-grid .photo-wide { grid-column: span 2; }
.photo-grid .photo-tall { grid-row: span 2; }
.photo-grid img { width: 100%; height: 100%; object-fit: cover; filter: saturate(.75); transition: transform .5s ease, filter .5s ease; }
.photo-grid figure:hover img { transform: scale(1.035); filter: saturate(1); }
.photo-grid figcaption { position: absolute; right: 12px; bottom: 12px; left: 12px; padding: 10px 12px; color: white; background: rgba(25,23,21,.58); backdrop-filter: blur(8px); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; }
.videos { color: white; background: #25221f; }
.videos .eyebrow { color: #e2a793; }
.video-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.video-embed { position: relative; overflow: hidden; aspect-ratio: 16 / 9; margin-bottom: 18px; background: #161412; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.video-grid span { color: #e2a793; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; }
.video-grid h3 { margin: 6px 0 0; font-size: 1.8rem; }
.video-note { margin: 30px 0 0; color: rgba(255,255,255,.5); font-size: .7rem; }
.video-cta { background: var(--ink); color: white; padding: 90px 8vw; border-top: 1px solid rgba(255,255,255,.08); }
.video-cta-inner { max-width: 720px; }
.video-cta .eyebrow { color: var(--rust); }
.video-cta h2 { color: white; font-size: clamp(2rem, 4vw, 3.4rem); margin: 12px 0 24px; line-height: 1.05; }
.video-cta p { color: rgba(255,255,255,.7); line-height: 1.7; margin: 0 0 32px; max-width: 620px; }
.video-cta-buttons { display: flex; gap: 14px; flex-wrap: wrap; }
.shows { color: white; background: #101010; }
.shows .eyebrow { color: #e2a793; }
.show-list { border-top: 1px solid rgba(255,255,255,.15); }
.show-list article { display: grid; grid-template-columns: 85px 1fr auto; align-items: center; gap: 20px; padding: 26px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.show-list time { color: #e2a793; font-size: .62rem; letter-spacing: .15em; text-align: center; }
.show-list time strong { display: block; font-family: "Archivo Black", sans-serif; font-size: 2rem; font-weight: 400; line-height: .8; }
.show-list h3 { margin: 0 0 5px; font-size: 1rem; text-transform: uppercase; }
.show-list p { margin: 0; color: rgba(255,255,255,.55); font-size: .75rem; }
.show-list a { padding: 11px 18px; border: 1px solid rgba(255,255,255,.3); border-radius: 99px; font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.booking { display: grid; grid-template-columns: 1fr 1fr; gap: 8vw; background: var(--cream); }
.booking > div > p:last-child { max-width: 480px; color: var(--muted); line-height: 1.7; }
form { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
label { color: var(--muted); font-size: .65rem; letter-spacing: .08em; text-transform: uppercase; }
input, select, textarea { width: 100%; margin-top: 8px; padding: 12px 0; border: 0; border-bottom: 1px solid var(--line); border-radius: 0; outline: none; background: transparent; color: var(--ink); }
textarea { resize: vertical; }
.full { grid-column: 1 / -1; }
.form-message { margin: 0; color: var(--rust); font-size: .75rem; }
footer { display: flex; align-items: center; justify-content: space-between; padding: 35px 8vw; color: white; background: #050505; }
footer p { color: rgba(255,255,255,.45); font-size: .7rem; }
footer div { display: flex; gap: 20px; font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; }
.footer-social { display: flex; gap: 18px; align-items: center; }
.footer-social a { display: flex; align-items: center; justify-content: center; width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); transition: background .2s, color .2s, transform .2s; }
.footer-social a:hover { background: var(--rust); color: #fff; transform: scale(1.12); }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; display: block; }

/* ── Scroll reveal ──────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.reveal.revealed { opacity: 1; transform: translateY(0); }

/* ── Logo stagger + glow ────────────────────────────────── */
.logo-cell { opacity: 0; transform: scale(0.9); transition: opacity 0.4s ease, transform 0.4s ease, box-shadow 0.3s ease; }
.logo-cell.logo-in { opacity: 1; transform: scale(1); }
.logo-cell.logo-glow { animation: logoPop 0.5s ease forwards; }
@keyframes logoPop { 0% { box-shadow: 0 0 0 0 rgba(237,174,54,.5); } 60% { box-shadow: 0 0 0 10px rgba(237,174,54,0); } 100% { box-shadow: 0 2px 12px rgba(0,0,0,.07); } }

/* ── Lightbox ───────────────────────────────────────────── */
.lightbox { position: fixed; inset: 0; z-index: 1000; background: rgba(0,0,0,.92); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-content { position: relative; max-width: 90vw; max-height: 88vh; display: flex; flex-direction: column; align-items: center; }
.lightbox-content img { max-width: 90vw; max-height: 80vh; object-fit: contain; display: block; border-radius: 4px; }
.lightbox-caption { margin-top: 14px; color: rgba(255,255,255,.65); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; }
.lb-close { position: fixed; top: 24px; right: 28px; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; opacity: .7; transition: opacity .2s; line-height: 1; }
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: white; font-size: 1.4rem; width: 48px; height: 48px; cursor: pointer; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: background .2s; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,.22); }
.lb-prev { left: 20px; }
.lb-next { right: 20px; }

/* ── Animated stars ─────────────────────────────────────── */
.star { display: inline-block; opacity: 0; transform: scale(0) rotate(-30deg); transition: opacity 0.35s ease, transform 0.35s ease; }
.star.lit { opacity: 1; transform: scale(1) rotate(0deg); }

/* ── Form focus underline ───────────────────────────────── */
label { position: relative; display: block; }
input, select, textarea { transition: border-color 0.25s ease; }
input:focus, select:focus, textarea:focus { border-bottom-color: var(--rust); }

/* ── Floating pill button ───────────────────────────────── */
.float-pill { position: fixed; bottom: 28px; right: 28px; z-index: 500; display: flex; align-items: center; border-radius: 100px; overflow: hidden; box-shadow: 0 6px 28px rgba(0,0,0,.35); }
.float-pill-expand { display: flex; align-items: center; max-width: 0; overflow: hidden; transition: max-width 0.45s cubic-bezier(0.4, 0, 0.2, 1); white-space: nowrap; }
.float-pill:hover .float-pill-expand { max-width: 420px; }
.float-call-link, .float-book-link { display: flex; align-items: center; gap: 9px; padding: 15px 20px; text-decoration: none; font-family: "Manrope", sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; white-space: nowrap; }
.float-call-link { background: var(--ink); color: #fff; }
.float-book-link { background: var(--rust); color: #111; }
.float-sep { width: 1px; height: 22px; background: rgba(255,255,255,.18); flex-shrink: 0; }
.float-pill-dot { display: flex; align-items: center; justify-content: center; width: 54px; height: 54px; background: var(--rust); color: #111; flex-shrink: 0; }
@media (max-width: 780px) {
  .float-pill { bottom: 18px; right: 16px; }
  .float-pill:hover .float-pill-expand,
  .float-pill.expanded .float-pill-expand { max-width: 380px; }
  .float-call-link, .float-book-link { padding: 14px 16px; font-size: .66rem; }
}


/* ── Interior pages ─────────────────────────────────────── */
.page-hero { background: var(--ink); color: white; min-height: 36vh; display: flex; flex-direction: column; justify-content: flex-end; padding: 9rem 8vw 4rem; }
.page-hero .eyebrow { color: var(--rust); }
.page-hero h1 { color: white; max-width: none; margin: 0; font-size: clamp(3rem, 7vw, 7rem); }
.page-hero p { max-width: 600px; margin: 20px 0 0; color: rgba(255,255,255,.65); line-height: 1.7; }

/* ── Clients page ───────────────────────────────────────── */
.creds-logos { background: var(--paper); }
.creds-logos h2 { margin-bottom: 16px; }
.creds-intro { max-width: 640px; margin: 0 0 40px; color: var(--muted); font-size: .95rem; line-height: 1.7; }
.logo-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; margin-top: 50px; }
.logo-cell { display: flex; align-items: center; justify-content: center; padding: 28px 20px; background: white; border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,.07); text-decoration: none; }
.logo-cell:hover { box-shadow: 0 6px 24px rgba(0,0,0,.13); }
.logo-cell img { width: 100%; max-width: 150px; max-height: 80px; object-fit: contain; }
.logo-cell span { font-size: .7rem; font-weight: 700; text-align: center; color: var(--muted); line-height: 1.5; padding: 0 8px; }
.logo-grid.venues .logo-cell { padding: 18px 14px; }
.logo-grid.venues .logo-cell img { max-width: 180px; max-height: 68px; }
.logo-grid.gs .logo-cell { transition: transform .25s ease, box-shadow .25s ease; }
.logo-grid.gs .logo-cell:hover { transform: translateY(-4px); box-shadow: 0 10px 28px rgba(0,0,0,.14); }
.logo-grid.gs .logo-cell img { filter: grayscale(1); opacity: .65; transition: filter .3s ease, opacity .3s ease; }
.logo-grid.gs .logo-cell:hover img { filter: grayscale(0); opacity: 1; }
.badges { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.badge { display: inline-flex; align-items: center; gap: 10px; padding: 14px 22px; border: 1px solid var(--line); background: var(--cream); font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--ink); }
.badge strong { color: var(--rust); }
.reviews-dark { background: #101010; color: white; }
.reviews-dark h2 { color: white; }
.reviews-dark .eyebrow { color: var(--rust); }
.stars { color: var(--rust); font-size: .85rem; margin-bottom: 16px; letter-spacing: 2px; }

/* ── Marquee reviews ───────────────────────────────────────── */
.reviews-marquee-section { padding: 100px 0 90px; }
.marquee-heading { padding: 0 8vw 52px; }
.marquee-hint { margin: 10px 0 0; color: rgba(255,255,255,.35); font-size: .65rem; letter-spacing: .18em; text-transform: uppercase; }

.marquee-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, #000 7%, #000 93%, transparent 100%);
}
.marquee-row { display: flex; overflow: hidden; }
.marquee-inner {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: marquee-left var(--dur, 45s) linear infinite;
}
.marquee-row.reverse .marquee-inner { animation-direction: reverse; }
.marquee-row:hover .marquee-inner { animation-play-state: paused; }
@keyframes marquee-left {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.marquee-card {
  width: 300px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  padding: 26px 24px;
  background: rgba(255,255,255,.06);
  border-top: 2px solid var(--rust);
  transition: background 0.2s ease;
  cursor: default;
}
.marquee-row:hover .marquee-card:hover { background: rgba(255,255,255,.11); }
.marquee-card .stars { font-size: .78rem; margin-bottom: 12px; letter-spacing: 3px; color: var(--rust); }
.marquee-card p { flex: 1; margin: 0 0 16px; color: rgba(255,255,255,.8); line-height: 1.75; font-size: .875rem; }
.marquee-card cite { display: block; font-style: normal; padding-top: 14px; border-top: 1px solid rgba(255,255,255,.08); }
.marquee-card cite strong { display: block; color: white; font-size: .75rem; letter-spacing: .06em; }

@media (max-width: 780px) {
  html, body { overflow-x: hidden; }
  .page-hero { padding: 7rem 22px 3rem; overflow: hidden; }
  .page-hero > .eyebrow, .page-hero > h1, .page-hero > p { max-width: 100%; width: 100%; min-width: 0; overflow-wrap: break-word; word-wrap: break-word; }
  .page-hero h1 { font-size: clamp(2.2rem, 9vw, 3rem); }
  .page-hero p { font-size: .92rem; }
  .site-header { padding: 14px 20px; }
  .site-header .logo { display: none; }
  .menu-button { z-index: 10; width: 44px; height: 38px; display: block; padding: 7px; margin-left: auto; background: rgba(0,0,0,.45); backdrop-filter: blur(8px); }
  nav { display: none; position: absolute; top: 66px; left: 20px; right: 20px; width: auto; flex-direction: column; padding: 25px; background: #101010; z-index: 200; }
  nav.open { display: flex; }
  .hero { min-height: 92svh; padding: 140px 22px 60px; }
  .hero-content { width: 100%; min-width: 0; max-width: 100%; }
  .hero-content .eyebrow { font-size: .62rem; letter-spacing: .16em; overflow-wrap: break-word; }
  .hero-wordmark { top: 80px; font-size: clamp(2rem, 10.5vw, 3.2rem); max-width: calc(100vw - 24px); }
  .hero-video { width: 100%; height: 100%; object-fit: cover; object-position: center; }
  .hero-youtube { width: 177.78svh; height: 100svh; min-width: 100vw; min-height: 56.25vw; }
  h1 { max-width: 310px; font-size: 2.7rem; line-height: .93; }
  .scroll-hint { display: none; }
  .section { padding: 75px 22px; }
  .gallery { padding-top: 35px; }
  .release, .about, .booking { grid-template-columns: 1fr; }
  .setlist-section { padding: 50px 22px; }
  .setlist-header { align-items: flex-start; flex-direction: column; gap: 16px; }
  .setlist-columns { grid-template-columns: 1fr; gap: 0; }
  .setlist-columns.setlist-columns--2 { grid-template-columns: 1fr; gap: 0; }
  .setlist-group + .setlist-group { margin-top: 32px; }
  .setlist-columns--2 .setlist-genre-label { font-size: .82rem; padding: 18px 0 14px; }
  .setlist-rows li { flex-direction: column; align-items: flex-start; gap: 2px; padding: 10px 0 10px 14px; }
  .setlist-rows li:hover { transform: none; }
  .sl-title { font-size: .95rem; white-space: normal; overflow: visible; text-overflow: clip; line-height: 1.3; }
  .sl-artist { font-size: .78rem; white-space: normal; }
  .sl-sep { display: none; }
  .release-art { min-height: 430px; }
  .album-title { top: 25px; left: 20px; font-size: 3.7rem; }
  .release-copy h2 { font-size: 4.4rem; }
  .release-actions { margin-bottom: 40px; }
  .section-label { display: none; }
  .stats { grid-template-columns: 1fr; }
  .section-heading { align-items: start; flex-direction: column; gap: 20px; }
  .music-note { align-items: start; flex-direction: column; gap: 7px; }
  .photo-grid { grid-template-columns: 1fr 1fr; grid-auto-rows: 210px; }
  .photo-grid .photo-wide { grid-column: span 2; }
  .photo-grid .photo-tall { grid-row: auto; }
  .video-grid { grid-template-columns: 1fr; }
  .video-grid h3 { font-size: 1.35rem; }
  .social-icon { width: 36px; height: 36px; }
  .show-list article { grid-template-columns: 55px 1fr; }
  .show-list a { display: none; }
  form { grid-template-columns: 1fr; }
  footer { align-items: start; flex-direction: column; gap: 18px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .logo-grid.venues .logo-cell:last-child { grid-column: auto; }
  .marquee-heading { padding: 0 22px 40px; }
  .marquee-card { width: 260px; padding: 22px 20px; }
  .video-cta { padding: 65px 22px; }
}

