/* =============================================================
   BROTHERS DUO
   Dark stage palette taken from the band's badge logo:
   near-black field, vermillion red, warm cream.
   ============================================================= */

/* ---------- 1. TOKENS ----------
   Palette lifted straight from the Brothers Duo badge:
   vermillion red, warm cream, near-black.                        */
:root{
  --bg:        #121110;
  --bg-2:      #1A1918;
  --bg-3:      #211F1D;
  --bg-4:      #292623;
  --line:      #332F2B;
  --line-soft: #252220;

  --text:      #F2E7CE;   /* badge cream */
  --dim:       #A79C88;
  --dim-2:     #7A7264;

  --accent:    #E5442A;   /* badge red */
  --accent-hi: #F4674B;   /* lighter, for hovers + small text */
  --accent-dk: #B62F1B;
  --blue:      #3E90AE;

  /* Ink used on top of accent fills. Near-black clears AA (4.7:1)
     on the badge red; cream would only reach 3.4:1. */
  --ink:       #14100E;

  /* channel lists, so rgba() tints track the palette */
  --bg-rgb:     18,17,16;
  --text-rgb:   242,231,206;
  --accent-rgb: 229,68,42;

  --font-display: "Barlow Condensed", "Oswald", "Arial Narrow", sans-serif;
  --font-body:    "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  --header-h: 86px;

  --wrap:  1180px;
  --gut:   clamp(20px, 5vw, 48px);
  --pad-y: clamp(72px, 10vw, 130px);
  --r:     4px;

  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- 2. RESET ---------- */
*,*::before,*::after{ box-sizing:border-box; }

html{
  -webkit-text-size-adjust:100%;
  scroll-behavior:smooth;
  scroll-padding-top:calc(var(--header-h) + 12px);
}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:var(--font-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  overflow-x:hidden;
}

/* Any explicit `display` on an element beats the UA's [hidden] rule,
   so make the attribute authoritative. */
[hidden]{ display:none !important; }

img{ display:block; max-width:100%; height:auto; }
button,input,select,textarea{ font:inherit; color:inherit; }
button{ cursor:pointer; background:none; border:0; }

a{ color:var(--accent); text-decoration:none; }
a:hover{ color:var(--accent-hi); }

h1,h2,h3,h4{
  font-family:var(--font-display);
  font-weight:700;
  line-height:1.02;
  letter-spacing:.005em;
  margin:0;
  text-transform:uppercase;
}

:focus-visible{
  outline:2px solid var(--accent);
  outline-offset:3px;
  border-radius:2px;
}

.sr-only{
  position:absolute; width:1px; height:1px;
  padding:0; margin:-1px; overflow:hidden;
  clip:rect(0 0 0 0); white-space:nowrap; border:0;
}

.skip-link{
  position:absolute; top:-100px; left:16px; z-index:200;
  background:var(--accent); color:#000;
  padding:10px 18px; font-weight:600; border-radius:var(--r);
  transition:top .2s;
}
.skip-link:focus{ top:12px; color:#000; }

/* ---------- 3. LAYOUT PRIMITIVES ---------- */
.wrap{
  width:100%;
  max-width:var(--wrap);
  margin-inline:auto;
  padding-inline:var(--gut);
}

.section{ padding-block:var(--pad-y); position:relative; }
.section-raise{
  background:var(--bg-2);
  border-block:1px solid var(--line-soft);
}

.section-head{ margin-bottom:clamp(36px,5vw,56px); max-width:62ch; }

.section-title{
  font-size:clamp(2.2rem, 6vw, 3.9rem);
  margin-bottom:.3em;
}

.section-sub{
  color:var(--dim);
  font-size:1.05rem;
  max-width:56ch;
  margin:0;
}

.eyebrow{
  display:flex; align-items:center; gap:12px;
  font-family:var(--font-display);
  font-size:.9rem; font-weight:600;
  letter-spacing:.22em; text-transform:uppercase;
  color:var(--accent);
  margin:0 0 14px;
}
.eyebrow-rule{
  width:38px; height:2px; flex:none;
  background:var(--accent);
}

/* ---------- 4. BUTTONS ---------- */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:.5em;
  font-family:var(--font-display);
  font-size:1.05rem; font-weight:600;
  letter-spacing:.09em; text-transform:uppercase;
  padding:15px 30px;
  border-radius:var(--r);
  border:1.5px solid transparent;
  transition:background .18s var(--ease), color .18s var(--ease),
             border-color .18s var(--ease), transform .18s var(--ease);
  white-space:nowrap;
}
.btn:active{ transform:translateY(1px); }

.btn-accent{
  background:var(--accent); color:var(--ink); border-color:var(--accent);
}
.btn-accent:hover{
  background:var(--accent-hi); border-color:var(--accent-hi); color:var(--ink);
}

.btn-ghost{
  border-color:#4A433D; color:var(--text);
}
.btn-ghost:hover{
  border-color:var(--text); color:var(--text); background:rgba(var(--text-rgb),.06);
}

.btn-sm{ padding:9px 20px; font-size:.95rem; }
.btn-block{ width:100%; }

/* ---------- 5. HEADER ---------- */
.site-header{
  position:fixed; inset:0 0 auto 0; z-index:100;
  transition:background .3s var(--ease), border-color .3s var(--ease),
             backdrop-filter .3s var(--ease);
  border-bottom:1px solid transparent;
}
.site-header.is-stuck{
  background:rgba(var(--bg-rgb),.9);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  border-bottom-color:var(--line);
}

.header-inner{
  display:flex; align-items:center; justify-content:space-between;
  gap:24px; height:var(--header-h);
}

.brand{
  display:flex; align-items:center; gap:10px;
  color:var(--text); flex:none;
}
.brand:hover{ color:var(--text); }

/* The badge is the wordmark, so give it enough height that the
   lettering inside it stays legible. */
.brand-logo{
  height:62px; width:auto;
  display:block;
}
.brand-fallback{ display:flex; align-items:center; gap:10px; }

.brand-mark{ width:26px; height:26px; fill:var(--accent); flex:none; }
.brand-text{
  font-family:var(--font-display);
  font-size:1.5rem; font-weight:700;
  letter-spacing:.05em; text-transform:uppercase;
  line-height:1;
}
.brand-text-accent{ color:var(--accent); margin-left:.28em; }

.nav{ display:flex; align-items:center; gap:6px; }

/* :not(.btn) keeps these off the "Book Us" button. Otherwise
   `.nav > a` (0,1,1) outranks `.btn-accent` (0,1,0) and the button
   inherits grey text on the badge red. */
.nav > a:not(.btn){
  font-family:var(--font-display);
  font-size:1.05rem; font-weight:500;
  letter-spacing:.1em; text-transform:uppercase;
  color:var(--dim);
  padding:9px 14px; border-radius:var(--r);
  transition:color .18s var(--ease);
}
.nav > a:not(.btn):hover{ color:var(--text); }
.nav > a:not(.btn).is-active{ color:var(--text); }
.nav > a:not(.btn).is-active::after{
  content:""; display:block; height:2px; margin-top:4px;
  background:var(--accent); border-radius:2px;
}
.nav-cta{ margin-left:10px; }

.nav-toggle{
  display:none; flex-direction:column; gap:5px;
  width:44px; height:44px; align-items:center; justify-content:center;
  margin-right:-10px;
}
.nav-toggle span{
  display:block; width:24px; height:2px; background:var(--text);
  border-radius:2px; transition:transform .25s var(--ease), opacity .2s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1){ transform:translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2){ opacity:0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3){ transform:translateY(-7px) rotate(-45deg); }

/* ---------- 6. HERO ---------- */
.hero{
  position:relative;
  min-height:min(94svh, 900px);
  display:flex; align-items:flex-end;
  padding-block:calc(var(--header-h) + 62px) clamp(72px,11vw,120px);
  overflow:hidden;
}

.hero-media{ position:absolute; inset:0; }
.hero-media img{
  width:100%; height:100%;
  object-fit:cover; object-position:center 42%;
}

.hero-scrim{
  position:absolute; inset:0;
  background:
    linear-gradient(to top, var(--bg) 2%, rgba(var(--bg-rgb),.55) 42%, rgba(var(--bg-rgb),.34) 72%),
    linear-gradient(to right, rgba(var(--bg-rgb),.86) 0%, rgba(var(--bg-rgb),.34) 58%, rgba(var(--bg-rgb),.5) 100%);
}

.hero-inner{ position:relative; z-index:2; }

.hero-title{
  font-size:clamp(3.6rem, 15vw, 10.5rem);
  line-height:.85;
  letter-spacing:-.012em;
  margin-bottom:.14em;
  text-shadow:0 6px 40px rgba(0,0,0,.6);
}
.hero-title span{ display:block; }
.hero-title-accent{ color:var(--accent); }

.hero-tagline{
  font-family:var(--font-display);
  font-size:clamp(1.15rem, 2.6vw, 1.7rem);
  font-weight:500; letter-spacing:.14em; text-transform:uppercase;
  color:var(--text);
  margin:0 0 20px;
}

.hero-blurb{
  max-width:50ch;
  color:#D6CFC6;
  font-size:1.06rem;
  margin:0 0 34px;
  text-shadow:0 2px 16px rgba(0,0,0,.55);
}

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

.hero-scroll{
  position:absolute; z-index:2;
  bottom:30px; left:50%; transform:translateX(-50%);
  width:40px; height:54px;
  display:flex; align-items:flex-end; justify-content:center;
}
.hero-scroll-line{
  width:1px; height:44px;
  background:linear-gradient(to bottom, transparent, var(--accent));
  animation:scrollPulse 2.4s var(--ease) infinite;
}
@keyframes scrollPulse{
  0%,100%{ opacity:.25; transform:scaleY(.55); transform-origin:bottom; }
  50%    { opacity:1;   transform:scaleY(1);   transform-origin:bottom; }
}

/* ---------- 7. MARQUEE ---------- */
.marquee{
  background:var(--bg-3);
  border-block:1px solid var(--line-soft);
  overflow:hidden;
  padding-block:18px;
  -webkit-mask-image:linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
          mask-image:linear-gradient(to right, transparent, #000 9%, #000 91%, transparent);
}
.marquee-track{
  display:flex; align-items:center; gap:0;
  width:max-content;
  animation:marquee 46s linear infinite;
}
.marquee-track span{
  font-family:var(--font-display);
  font-size:1.15rem; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--dim-2);
  padding-inline:26px;
  white-space:nowrap;
}
.marquee-track i{
  display:block; width:5px; height:5px; flex:none;
  background:var(--accent); border-radius:50%; opacity:.65;
}
@keyframes marquee{
  from{ transform:translateX(0); }
  to  { transform:translateX(-50%); }
}
.marquee:hover .marquee-track{ animation-play-state:paused; }

/* ---------- 8. SHOWS ---------- */
.shows{ list-style:none; margin:0; padding:0; }

.show{
  display:grid;
  grid-template-columns:112px 1fr auto;
  gap:clamp(20px,3.5vw,44px);
  align-items:center;
  padding-block:26px;
  border-top:1px solid var(--line);
  transition:background .2s var(--ease);
}
.show:last-child{ border-bottom:1px solid var(--line); }
.show:hover{ background:var(--bg-2); }

.show-date{
  text-align:center;
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:10px 6px 12px;
  background:var(--bg-2);
  flex:none;
}
.show-month{
  display:block;
  font-family:var(--font-display);
  font-size:.92rem; font-weight:600;
  letter-spacing:.2em; text-transform:uppercase;
  color:var(--accent);
}
.show-day{
  display:block;
  font-family:var(--font-display);
  font-size:2.3rem; font-weight:700; line-height:1;
  margin-top:2px;
}
.show-year{
  display:block;
  font-size:.72rem; letter-spacing:.14em;
  color:var(--dim-2); margin-top:4px;
}

.show-venue{
  font-family:var(--font-display);
  font-size:clamp(1.4rem,3vw,1.95rem);
  font-weight:700; line-height:1.1;
  text-transform:uppercase;
  margin:0 0 5px;
}
.show-venue a{ color:inherit; }
.show-venue a:hover{ color:var(--accent); }

.show-meta{
  display:flex; flex-wrap:wrap; align-items:center; gap:8px 14px;
  color:var(--dim); font-size:.95rem;
}
.show-meta .dot{ width:3px; height:3px; background:var(--dim-2); border-radius:50%; }

.show-badge{
  display:inline-block;
  font-family:var(--font-display);
  font-size:.8rem; font-weight:600;
  letter-spacing:.14em; text-transform:uppercase;
  color:var(--accent);
  border:1px solid rgba(var(--accent-rgb),.4);
  background:rgba(var(--accent-rgb),.09);
  border-radius:100px;
  padding:3px 11px;
}

.show-cta{ flex:none; }

.shows-empty,.songs-empty{
  color:var(--dim);
  text-align:center;
  padding:44px 0;
  border:1px dashed var(--line);
  border-radius:var(--r);
  margin:0;
}

/* ---------- 9. VIDEOS ---------- */
.videos{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(320px,1fr));
  gap:26px;
}
.video-card{
  border:1px solid var(--line);
  border-radius:var(--r);
  overflow:hidden;
  background:var(--bg-3);
}
.video-frame{
  position:relative;
  aspect-ratio:16/9;
  background:#000;
}
.video-frame iframe{
  position:absolute; inset:0;
  width:100%; height:100%; border:0;
}
.video-title{
  font-family:var(--font-display);
  font-size:1.2rem; font-weight:600;
  letter-spacing:.04em; text-transform:uppercase;
  padding:16px 18px;
  margin:0;
}

/* ---------- 10. SONG LIST ---------- */
.songs-controls{
  display:flex; flex-wrap:wrap; align-items:center;
  gap:16px 22px;
  margin-bottom:38px;
}

.search{ position:relative; flex:1 1 280px; max-width:380px; }
.search-icon{
  position:absolute; left:14px; top:50%; transform:translateY(-50%);
  width:18px; height:18px; pointer-events:none;
  fill:none; stroke:var(--dim-2); stroke-width:1.7;
  stroke-linecap:round;
}
.search input{
  width:100%;
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:13px 14px 13px 42px;
  color:var(--text);
  transition:border-color .18s var(--ease);
}
.search input::placeholder{ color:var(--dim-2); }
.search input:focus{ border-color:var(--accent); outline:none; }
.search input::-webkit-search-cancel-button{ filter:invert(.6); }

.chips{ display:flex; flex-wrap:wrap; gap:8px; }
.chip{
  font-family:var(--font-display);
  font-size:.98rem; font-weight:600;
  letter-spacing:.12em; text-transform:uppercase;
  color:var(--dim);
  border:1px solid var(--line);
  border-radius:100px;
  padding:8px 18px;
  transition:color .18s var(--ease), border-color .18s var(--ease),
             background .18s var(--ease);
}
.chip:hover{ color:var(--text); border-color:#4A433D; }
.chip.is-on{
  color:var(--ink); background:var(--accent); border-color:var(--accent);
}

.songs{ display:grid; gap:40px; }

.song-group-title{
  font-size:1.5rem;
  color:var(--dim);
  padding-bottom:12px;
  margin-bottom:18px;
  border-bottom:1px solid var(--line);
  display:flex; align-items:baseline; gap:12px;
}
.song-group-title .count{
  font-family:var(--font-body);
  font-size:.8rem; font-weight:500;
  letter-spacing:.1em;
  color:var(--dim-2);
  text-transform:none;
}

.song-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill, minmax(290px,1fr));
  gap:2px 26px;
}
.song{
  display:flex; align-items:baseline; gap:10px;
  padding:9px 12px;
  border-radius:var(--r);
  transition:background .16s var(--ease);
}
.song:hover{ background:var(--bg-3); }
.song-title{ font-weight:500; }
.song-artist{
  color:var(--dim); font-size:.9rem;
  margin-left:auto; padding-left:12px;
  text-align:right; flex:none; max-width:48%;
}
.song mark{
  background:rgba(var(--accent-rgb),.24);
  color:var(--accent-hi);
  border-radius:2px;
  padding:0 2px;
}

/* ---------- 11. GALLERY ---------- */
/* Uniform squares. The band's photos are all shot square, so tiles that
   span two rows would crop them to slivers. 8 photos fill two clean rows. */
.gallery{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(230px,1fr));
  gap:14px;
}
.gallery-item{
  position:relative;
  aspect-ratio:1;
  overflow:hidden;
  border-radius:var(--r);
  background:var(--bg-3);
  padding:0; display:block; width:100%;
}

.gallery-item img{
  width:100%; height:100%;
  object-fit:cover;
  transition:transform .55s var(--ease), filter .35s var(--ease);
  filter:saturate(.86);
}
.gallery-item::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(to top, rgba(var(--bg-rgb),.5), transparent 55%);
  opacity:0; transition:opacity .35s var(--ease);
}
.gallery-item:hover img{ transform:scale(1.05); filter:saturate(1.05); }
.gallery-item:hover::after{ opacity:1; }

@media (max-width:640px){
  .gallery{ grid-template-columns:repeat(2,1fr); gap:10px; }
}

/* ---------- 12. LIGHTBOX ---------- */
.lightbox{
  position:fixed; inset:0; z-index:300;
  background:rgba(var(--bg-rgb),.96);
  display:flex; align-items:center; justify-content:center;
  padding:clamp(16px,4vw,54px);
  animation:fade .22s var(--ease);
}
.lightbox[hidden]{ display:none; }
@keyframes fade{ from{opacity:0} to{opacity:1} }

.lb-figure{ margin:0; max-width:100%; max-height:100%; text-align:center; }
.lb-figure img{
  max-width:100%; max-height:82svh;
  width:auto; margin-inline:auto;
  border-radius:var(--r);
}
.lb-figure figcaption{
  color:var(--dim);
  font-size:.92rem;
  margin-top:16px;
}

.lb-close,.lb-nav{
  position:absolute; z-index:2;
  color:var(--text);
  width:52px; height:52px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%;
  background:rgba(var(--text-rgb),.07);
  transition:background .18s var(--ease);
  line-height:1;
}
.lb-close:hover,.lb-nav:hover{ background:rgba(var(--text-rgb),.18); }
.lb-close{ top:18px; right:18px; font-size:2rem; }
.lb-nav{ top:50%; transform:translateY(-50%); font-size:2.6rem; }
.lb-prev{ left:14px; }
.lb-next{ right:14px; }

/* ---------- 13. ABOUT ---------- */
.about-grid{
  display:grid;
  grid-template-columns:minmax(280px,.85fr) 1.15fr;
  gap:clamp(34px,6vw,80px);
  align-items:center;
}

.about-media{ position:relative; }
.about-media img{
  width:100%; aspect-ratio:4/5; object-fit:cover;
  border-radius:var(--r);
  filter:saturate(.9) contrast(1.03);
}
.about-media::before{
  content:""; position:absolute;
  inset:auto -14px -14px auto;
  width:62%; height:62%;
  border:1px solid var(--accent);
  border-radius:var(--r);
  opacity:.32; z-index:-1;
}

.about-media-badge{
  position:absolute; left:-16px; bottom:26px;
  background:var(--accent); color:var(--ink);
  border-radius:var(--r);
  padding:12px 18px;
  display:flex; align-items:center; gap:10px;
  box-shadow:0 14px 34px rgba(0,0,0,.45);
}
.about-media-badge-num{
  font-family:var(--font-display);
  font-size:2.6rem; font-weight:700; line-height:.85;
}
.about-media-badge-label{
  font-family:var(--font-display);
  font-size:.88rem; font-weight:600;
  letter-spacing:.13em; text-transform:uppercase;
  line-height:1.25;
}

.about-copy p{ color:var(--dim); }
.about-copy p:last-of-type{ margin-bottom:0; }

.about-facts{
  list-style:none; margin:32px 0 0; padding:0;
  display:grid; grid-template-columns:repeat(auto-fit,minmax(210px,1fr));
  gap:1px;
  background:var(--line);
  border:1px solid var(--line);
  border-radius:var(--r);
  overflow:hidden;
}
.about-facts li{
  background:var(--bg);
  padding:16px 18px;
  display:flex; flex-direction:column; gap:3px;
}
.about-facts strong{
  font-family:var(--font-display);
  font-size:.82rem; font-weight:600;
  letter-spacing:.18em; text-transform:uppercase;
  color:var(--accent);
}
.about-facts span{ color:var(--text); font-size:.95rem; }

@media (max-width:820px){
  .about-grid{ grid-template-columns:1fr; }
  .about-media{ max-width:420px; }
}

/* ---------- 14. BOOKING ---------- */
.section-booking{
  background:
    radial-gradient(120% 90% at 12% 0%, rgba(var(--accent-rgb),.09), transparent 62%),
    var(--bg-2);
  border-top:1px solid var(--line-soft);
}

.booking-grid{
  display:grid;
  grid-template-columns:1fr 1.1fr;
  gap:clamp(38px,6vw,76px);
  align-items:start;
}
@media (max-width:860px){ .booking-grid{ grid-template-columns:1fr; } }

.booking-contact{
  list-style:none; margin:32px 0 0; padding:0;
  display:grid; gap:10px;
}
.booking-contact li{ display:flex; align-items:center; gap:12px; }
.booking-contact svg{
  width:19px; height:19px; flex:none;
  fill:none; stroke:var(--accent); stroke-width:1.6;
  stroke-linecap:round; stroke-linejoin:round;
}
.booking-contact a{
  color:var(--text);
  border-bottom:1px solid rgba(var(--accent-rgb),.42);
  padding-bottom:1px;
}
.booking-contact a:hover{ color:var(--accent); border-bottom-color:var(--accent); }

.booking-form{
  background:var(--bg);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:clamp(24px,4vw,38px);
  display:grid; gap:18px;
}

.field{ display:grid; gap:7px; }
.field-row{ display:grid; grid-template-columns:1fr 1fr; gap:18px; }
@media (max-width:520px){ .field-row{ grid-template-columns:1fr; } }

.field label{
  font-family:var(--font-display);
  font-size:.92rem; font-weight:600;
  letter-spacing:.16em; text-transform:uppercase;
  color:var(--dim);
}
.field .opt{
  font-family:var(--font-body);
  font-size:.72rem; font-weight:400;
  letter-spacing:.04em; text-transform:none;
  color:var(--dim-2);
}

.field input,.field select,.field textarea{
  width:100%;
  background:var(--bg-3);
  border:1px solid var(--line);
  border-radius:var(--r);
  padding:12px 14px;
  color:var(--text);
  transition:border-color .18s var(--ease);
}
.field textarea{ resize:vertical; min-height:110px; }
.field input::placeholder,.field textarea::placeholder{ color:var(--dim-2); }
.field input:focus,.field select:focus,.field textarea:focus{
  border-color:var(--accent); outline:none;
}
.field input[aria-invalid="true"],
.field textarea[aria-invalid="true"]{ border-color:#C4553E; }
.field select{ appearance:none; cursor:pointer;
  background-image:linear-gradient(45deg,transparent 50%,var(--dim) 50%),
                   linear-gradient(135deg,var(--dim) 50%,transparent 50%);
  background-position:calc(100% - 19px) calc(50% + 1px), calc(100% - 14px) calc(50% + 1px);
  background-size:5px 5px, 5px 5px;
  background-repeat:no-repeat;
  padding-right:40px;
}
.field select option{ background:var(--bg-3); color:var(--text); }
.field input[type="date"]::-webkit-calendar-picker-indicator{ filter:invert(.62); cursor:pointer; }

.hp{ position:absolute; left:-9999px; width:1px; height:1px; overflow:hidden; }

.form-status{
  margin:0; font-size:.94rem; min-height:1.4em;
  text-align:center;
}
.form-status.ok  { color:#7CC08E; }
.form-status.err { color:#E08A72; }

/* ---------- 15. FOOTER ---------- */
.site-footer{
  background:var(--bg);
  border-top:1px solid var(--line);
  padding-top:clamp(48px,7vw,72px);
}
.footer-inner{
  display:flex; flex-wrap:wrap; justify-content:space-between;
  align-items:flex-start; gap:36px;
  padding-bottom:44px;
}
.footer-brand .brand-mark{ display:inline-block; vertical-align:-4px; margin-right:8px; }
.footer-logo{ height:96px; width:auto; display:block; }
.footer-tag{
  color:var(--dim-2);
  font-size:.9rem;
  margin:10px 0 0;
}

.footer-nav{ display:flex; flex-wrap:wrap; gap:8px 26px; }
.footer-nav a{
  font-family:var(--font-display);
  font-size:1rem; font-weight:500;
  letter-spacing:.11em; text-transform:uppercase;
  color:var(--dim);
}
.footer-nav a:hover{ color:var(--text); }

.socials{ list-style:none; display:flex; gap:10px; margin:0; padding:0; }
.socials a{
  width:42px; height:42px;
  display:flex; align-items:center; justify-content:center;
  border:1px solid var(--line);
  border-radius:50%;
  transition:border-color .18s var(--ease), background .18s var(--ease);
}
.socials a:hover{ border-color:var(--accent); background:rgba(var(--accent-rgb),.1); }
.socials svg{ width:18px; height:18px; fill:var(--dim); transition:fill .18s var(--ease); }
.socials a:hover svg{ fill:var(--accent); }

.footer-legal{
  border-top:1px solid var(--line-soft);
  padding-block:22px;
}
.footer-legal p{
  margin:0; color:var(--dim-2); font-size:.85rem;
}

/* ---------- 16. REVEAL ANIMATION ---------- */
[data-reveal]{
  opacity:0;
  transform:translateY(18px);
  transition:opacity .7s var(--ease), transform .7s var(--ease);
}
[data-reveal].is-in{ opacity:1; transform:none; }

/* ---------- 17. MOBILE NAV ---------- */
@media (max-width:900px){
  :root{ --header-h:74px; }
  .nav-toggle{ display:flex; }
  .brand-logo{ height:50px; }
  .footer-logo{ height:78px; }

  .nav{
    position:fixed; inset:var(--header-h) 0 auto 0;
    flex-direction:column; align-items:stretch;
    gap:0;
    background:rgba(var(--bg-rgb),.98);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    border-bottom:1px solid var(--line);
    padding:10px var(--gut) 26px;
    transform:translateY(-12px);
    opacity:0; visibility:hidden; pointer-events:none;
    transition:opacity .24s var(--ease), transform .24s var(--ease),
               visibility .24s;
  }
  .nav.is-open{
    opacity:1; visibility:visible; pointer-events:auto;
    transform:none;
  }
  .nav > a:not(.btn){
    font-size:1.35rem;
    padding:15px 4px;
    border-bottom:1px solid var(--line-soft);
  }
  .nav > a:not(.btn).is-active::after{ display:none; }
  .nav > a:not(.btn).is-active{ color:var(--accent); }
  .nav-cta{
    margin:20px 0 0;
    justify-content:center;
  }
  body.nav-open{ overflow:hidden; }
}

/* ---------- 17b. HERO ON NARROW SCREENS ----------
   The hero photo is a wide 3:2 shot with the two of them at opposite
   edges of the frame. Phone viewports are tall and narrow, so using it
   as a full-bleed background means object-fit:cover throws away ~two
   thirds of its width, and both players with it, leaving the empty
   middle of the stage.

   So below 900px the hero stops being a background and becomes a
   stacked layout: the photo runs full width at its own 3:2 ratio
   (nothing cropped), and the headline sits beneath it. */
@media (max-width:900px){
  .hero{
    display:block;
    min-height:0;
    padding-block:0 clamp(40px,9vw,64px);
  }

  .hero-media{
    position:relative;
    inset:auto;
    aspect-ratio:3/2;
    width:100%;
  }
  .hero-media img{ object-position:center 46%; }

  /* just a fade off the bottom of the photo into the page, so the
     picture meets the text without a hard seam */
  .hero-scrim{
    top:auto; bottom:0; height:38%;
    background:linear-gradient(to top, var(--bg) 4%, transparent 100%);
  }

  .hero-inner{ padding-top:clamp(26px,6vw,40px); }
  .hero-title{ text-shadow:none; }
  .hero-blurb{ text-shadow:none; }
  .hero-scroll{ display:none; }

  /* tighter tracking so the tagline breaks evenly instead of
     orphaning "2000s" onto a line of its own */
  .hero-tagline{ letter-spacing:.06em; }
}

/* ---------- 18. SHOWS ON SMALL SCREENS ---------- */
@media (max-width:760px){
  .show{
    grid-template-columns:76px 1fr;
    gap:18px;
    padding-block:22px;
  }
  .show-date{ padding:8px 4px 9px; }
  .show-day{ font-size:1.8rem; }
  .show-month{ font-size:.8rem; }
  .show-cta{ grid-column:2; margin-top:4px; }
  .song-artist{ max-width:52%; }
}

@media (max-width:420px){
  .hero-actions .btn{ width:100%; }
}

/* ---------- 19. MOTION PREFERENCE ---------- */
@media (prefers-reduced-motion:reduce){
  html{ scroll-behavior:auto; }
  *,*::before,*::after{
    animation-duration:.001ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.001ms !important;
  }
  [data-reveal]{ opacity:1; transform:none; }
  .marquee-track{ animation:none; }
}

/* ---------- 20. PRINT (venues print the song list) ---------- */
@media print{
  .site-header,.hero,.marquee,.section-booking,
  .site-footer,.songs-controls,.gallery,.videos,
  .hero-scroll,.lightbox{ display:none !important; }
  body{ background:#fff; color:#000; }
  .section{ padding-block:12px; }
  [data-reveal]{ opacity:1; transform:none; }
  .song-artist{ color:#555; }
  .song-group-title{ border-color:#ccc; color:#000; }
  a{ color:#000; }
}
