/* =====================================================
   RIFF SHOP ENTERTAINMENT — v2 stylesheet
   Matched to existing Squarespace design language:
   navy + magenta gradient, Helvetica Neue 900, curved dividers.
   Mobile-first.
   ===================================================== */

*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body {
  margin: 0;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  background: var(--navy);
  color: var(--text);
  font-size: 17px;
  line-height: 1.55;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font: inherit; cursor: pointer; border: 0; background: transparent; color: inherit; }

/* -- Tokens ----------------------------------------- */
:root {
  --navy: #171D3A;
  --navy-deep: #0F1430;
  --navy-soft: #1F2647;
  --cream: #FFFFFF;
  --paper: #F8F8FA;
  --paper-muted: #EFEFF3;
  --text: #FFFFFF;
  --text-on-paper: #171D3A;
  --text-mute-on-dark: rgba(255,255,255,0.78);
  --text-mute-on-paper: rgba(23,29,58,0.7);
  --pink: #F2A8C0;
  --pink-deep: #E14B8A;
  --magenta: #B23A8E;
  --purple: #5E2D8C;

  --grad-hero: linear-gradient(105deg, rgba(94,45,140,0.85) 0%, rgba(178,58,142,0.7) 35%, rgba(225,75,138,0.45) 60%, rgba(23,29,58,0.95) 100%);
  --grad-cta:  linear-gradient(90deg, var(--pink) 0%, var(--pink-deep) 100%);

  --line-on-dark: rgba(255,255,255,0.12);
  --line-on-paper: rgba(23,29,58,0.12);

  --container: 1240px;
  --ease: cubic-bezier(.22,.8,.22,1);
}

/* -- Type system ------------------------------------ */
.display {
  font-weight: 900;
  font-size: clamp(2.6rem, 9vw, 5.6rem);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin: 0;
}
.display-md {
  font-weight: 900;
  font-size: clamp(2rem, 5.5vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  margin: 0;
}
.display-sm {
  font-weight: 900;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0;
}
.lede {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.6;
  margin: 1.25rem 0 0;
}
.eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink);
  margin-bottom: 1.5rem;
}
.section-label {
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--text-mute-on-dark);
  text-align: center;
  margin: 0 0 2rem;
}
.gradient-text {
  background: linear-gradient(95deg, var(--pink) 0%, var(--pink-deep) 50%, var(--magenta) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* -- Layout ----------------------------------------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}
.container.narrow { max-width: 820px; }
section { padding: clamp(4rem, 9vw, 7rem) 0; position: relative; }
section.dark { background: var(--navy); color: var(--text); }
section.paper { background: var(--paper); color: var(--text-on-paper); }
section.paper .lede { color: var(--text-mute-on-paper); }
section.paper .eyebrow { color: var(--magenta); }
section.paper .section-label { color: var(--text-mute-on-paper); }

/* -- Curved dividers (signature move) --------------- */
.curve {
  display: block;
  width: 100%;
  height: clamp(40px, 6vw, 90px);
  position: relative;
  margin: 0;
  pointer-events: none;
}
.curve svg { display: block; width: 100%; height: 100%; }

/* -- Buttons ---------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-radius: 999px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease);
  white-space: nowrap;
  min-height: 48px;
}
.btn-primary {
  background: var(--grad-cta);
  color: #fff;
  box-shadow: 0 8px 24px rgba(225,75,138,0.32);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 32px rgba(225,75,138,0.45); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: var(--pink); transform: translateY(-2px); }
.btn-dark {
  background: var(--navy);
  color: #fff;
}
.btn-dark:hover { background: var(--magenta); transform: translateY(-2px); }
.btn-lg { padding: 1.1rem 2rem; font-size: 0.95rem; }

/* -- Header / Nav ----------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1rem 0;
  background: linear-gradient(180deg, rgba(15,20,48,0.85) 0%, rgba(15,20,48,0) 100%);
  transition: background 0.4s var(--ease), padding 0.4s var(--ease), backdrop-filter 0.4s var(--ease);
}
.site-header.scrolled {
  padding: 0.6rem 0;
  background: rgba(15,20,48,0.95);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line-on-dark);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
}
.brand-logo {
  width: 52px; height: 52px;
  filter: brightness(0) invert(1);
  transition: transform 0.4s var(--ease);
}
.brand:hover .brand-logo { transform: rotate(-12deg); }
.brand-word {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
}
.brand-word em {
  font-style: normal;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  margin-top: 1px;
}
.primary-nav {
  display: flex;
  gap: 1.75rem;
  align-items: center;
}
.primary-nav a {
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  color: rgba(255,255,255,0.85);
  transition: color 0.25s var(--ease);
  padding: 0.5rem 0;
}
.primary-nav a:hover { color: var(--pink); }
.primary-nav a.nav-cta {
  background: var(--grad-cta);
  color: #fff;
  padding: 0.7rem 1.25rem;
  border-radius: 999px;
  letter-spacing: 0.14em;
}
.primary-nav a.nav-cta:hover { color: #fff; transform: translateY(-1px); }
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: #fff;
  transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.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); }

@media (max-width: 880px) {
  .primary-nav {
    position: fixed;
    inset: 0;
    background: rgba(15,20,48,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    gap: 1.75rem;
    transform: translateY(-100%);
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition: transform 0.5s var(--ease), opacity 0.3s var(--ease), visibility 0s 0.5s;
    z-index: 99;
  }
  .primary-nav.open { transform: translateY(0); visibility: visible; opacity: 1; pointer-events: auto; transition: transform 0.5s var(--ease), opacity 0.3s var(--ease); }
  .primary-nav a { font-size: 1.4rem; letter-spacing: 0.12em; }
  .primary-nav a.nav-cta { font-size: 0.95rem; padding: 1rem 2rem; }
  .nav-toggle { display: flex; z-index: 101; }
}

/* -- Hero ------------------------------------------- */
.hero {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 7rem 0 5rem;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero-bg img,
.hero-bg video {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(15,20,48,0.78) 0%, rgba(15,20,48,0.45) 45%, rgba(15,20,48,0.25) 70%, rgba(23,29,58,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero h1 {
  max-width: 13ch;
  color: #fff;
}
.hero-sub {
  margin-top: 1.5rem;
  font-size: clamp(1.05rem, 1.6vw, 1.3rem);
  line-height: 1.5;
  color: rgba(255,255,255,0.92);
  font-weight: 400;
  max-width: 38ch;
}
.hero-actions {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.scroll-cue {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  width: 28px; height: 46px;
  border: 1.5px solid rgba(255,255,255,0.35);
  border-radius: 999px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
.scroll-cue span {
  width: 3px; height: 7px;
  background: var(--pink);
  border-radius: 999px;
  animation: scrollCue 1.6s var(--ease) infinite;
}
@keyframes scrollCue {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(18px); opacity: 0; }
}

/* -- About / Who we are ----------------------------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}
.about-grid h2 { color: var(--text-on-paper); max-width: 12ch; }
.about-grid p { font-size: 1.05rem; color: var(--text-mute-on-paper); line-height: 1.7; }
@media (min-width: 880px) { .about-grid { grid-template-columns: 1fr 1.5fr; gap: 4rem; } }

/* -- Trust strip ------------------------------------ */
.trust { background: var(--navy); padding: 3.5rem 0; }
.trust h3 {
  text-align: center;
  font-weight: 900;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  margin: 0 0 2.5rem;
  letter-spacing: -0.01em;
}
.trust h3 .accent { color: var(--pink); }
.logo-wall {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem 1.75rem;
  align-items: center;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
}
@media (min-width: 600px) { .logo-wall { grid-template-columns: repeat(5, 1fr); } .logo-wall img { max-height: 68px; max-width: 160px; } }
@media (min-width: 880px) { .logo-wall { grid-template-columns: repeat(9, 1fr); gap: 1.5rem 2rem; } }
.logo-wall img {
  max-height: 64px;
  max-width: min(150px, 90%);
  width: auto;
  opacity: 1;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s var(--ease);
}
.logo-wall img:hover { opacity: 1; transform: scale(1.05); }

/* -- What sets us apart ----------------------------- */
.pillars-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 600px) { .pillars-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .pillars-grid { grid-template-columns: repeat(4, 1fr); } }
.pillar {
  padding: 2rem 1.75rem;
  background: var(--cream);
  border-radius: 12px;
  border: 1px solid var(--line-on-paper);
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 20px 40px rgba(23,29,58,0.08); }
.pillar-num {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.75rem;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.pillar h4 { font-weight: 900; font-size: 1.15rem; margin: 0 0 0.6rem; color: var(--text-on-paper); letter-spacing: -0.01em; }
.pillar p { margin: 0; font-size: 0.95rem; line-height: 1.55; color: var(--text-mute-on-paper); }

/* -- Roster (Bands) --------------------------------- */
.roster .section-head { text-align: center; margin-bottom: 3rem; }
.roster h2 { color: #fff; }
.roster h2 .accent { color: var(--pink); }
.band-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 600px) { .band-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .band-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; } }
.band-card {
  position: relative;
  display: block;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--navy-soft);
  isolation: isolate;
  transition: transform 0.4s var(--ease);
}
.band-card:active { transform: scale(0.98); }
.band-card-img { position: absolute; inset: 0; }
.band-card-img img,
.band-card-img video { width: 100%; height: 100%; object-fit: cover; transition: transform 0.7s var(--ease); }
.band-card:hover .band-card-img img,
.band-card:hover .band-card-img video { transform: scale(1.04); }
.band-card-meta {
  position: absolute;
  inset: 0;
  z-index: 2;
  padding: 1.5rem 1.25rem 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, rgba(15,20,48,0) 35%, rgba(15,20,48,0.95) 100%);
}
.band-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--grad-cta);
  color: #fff;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
}
.band-card h3 {
  font-weight: 900;
  font-size: 1.4rem;
  margin: 0;
  letter-spacing: -0.01em;
  line-height: 1;
  color: #fff;
}
.band-card p {
  margin: 0.35rem 0 0;
  color: rgba(255,255,255,0.78);
  font-size: 0.85rem;
  line-height: 1.4;
}
.band-link {
  margin-top: 0.85rem;
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--pink);
  display: inline-flex;
  gap: 0.4rem;
  align-items: center;
  transition: gap 0.3s var(--ease);
}
.band-card:hover .band-link { gap: 0.8rem; }

/* -- Services bar ----------------------------------- */
.services-bar {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-top: 3rem;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--line-on-paper);
  background: var(--cream);
}
@media (min-width: 700px) { .services-bar { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .services-bar { grid-template-columns: repeat(4, 1fr); } }
.service { padding: 2rem 1.75rem; border-bottom: 1px solid var(--line-on-paper); }
@media (min-width: 700px) {
  .service:nth-child(odd) { border-right: 1px solid var(--line-on-paper); }
  .service:nth-child(n+3) { border-bottom: 0; }
}
@media (min-width: 980px) {
  .service { border-right: 1px solid var(--line-on-paper); border-bottom: 0; }
  .service:last-child { border-right: 0; }
}
.service-num {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  background: var(--grad-cta);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.service h3 { font-weight: 900; font-size: 1.2rem; margin: 0 0 0.5rem; letter-spacing: -0.01em; color: var(--text-on-paper); }
.service p { margin: 0; color: var(--text-mute-on-paper); font-size: 0.95rem; line-height: 1.5; }

/* -- Testimonials ----------------------------------- */
.testimonials { background: var(--navy); position: relative; overflow: hidden; }
.testimonials::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 0% 30%, rgba(225,75,138,0.18) 0%, transparent 50%),
    radial-gradient(ellipse at 100% 70%, rgba(94,45,140,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.testimonials .section-head { text-align: center; margin-bottom: 3rem; position: relative; z-index: 1; }
.testimonials h2 { color: #fff; }
.testimonials h2 .accent { color: var(--pink); }
.testi-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 880px) { .testi-grid { grid-template-columns: repeat(2, 1fr); } }
.testi-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line-on-dark);
  border-radius: 14px;
  padding: 2rem 1.75rem;
  backdrop-filter: blur(8px);
}
.testi-card blockquote { margin: 0; font-size: 1.05rem; line-height: 1.55; color: rgba(255,255,255,0.92); font-weight: 400; }
.testi-card blockquote::before {
  content: '"';
  font-size: 3rem;
  line-height: 0;
  position: relative;
  top: 0.4em;
  color: var(--pink);
  margin-right: 0.1em;
}
.testi-card cite { display: block; margin-top: 1.25rem; font-style: normal; font-size: 0.85rem; font-weight: 700; color: #fff; }
.testi-card cite span { display: block; margin-top: 0.15rem; font-weight: 400; font-size: 0.75rem; color: rgba(255,255,255,0.6); letter-spacing: 0.05em; }

/* -- Final CTA -------------------------------------- */
.final-cta {
  background: linear-gradient(135deg, var(--purple) 0%, var(--magenta) 50%, var(--pink-deep) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(255,255,255,0.1) 0%, transparent 60%);
}
.final-cta .container { position: relative; z-index: 1; }
.final-cta h2 { color: #fff; }
.final-cta p { color: rgba(255,255,255,0.92); }
.final-cta .btn { background: #fff; color: var(--magenta); margin-top: 2rem; }
.final-cta .btn:hover { background: var(--navy); color: #fff; }

/* -- Footer ----------------------------------------- */
.site-footer {
  background: var(--navy-deep);
  color: rgba(255,255,255,0.75);
  padding: 4rem 0 2rem;
  font-size: 0.9rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width: 600px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 880px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }
.footer-brand img { width: 56px; height: auto; margin-bottom: 0.85rem; filter: brightness(0) invert(1); }
.footer-brand p { color: rgba(255,255,255,0.6); margin: 0; line-height: 1.5; }
.site-footer h5 { font-size: 0.7rem; font-weight: 700; letter-spacing: 0.25em; text-transform: uppercase; margin: 0 0 1.1rem; color: var(--pink); }
.site-footer ul li { margin-bottom: 0.7rem; }
.site-footer ul a { color: rgba(255,255,255,0.65); transition: color 0.25s var(--ease); }
.site-footer ul a:hover { color: #fff; }
.footer-base {
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line-on-dark);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
}

/* -- Reveal animation ------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* -- Contact form ----------------------------------- */
.page-hero {
  padding: 8rem 0 3rem;
  text-align: center;
  background: var(--navy);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center top, rgba(178,58,142,0.25) 0%, transparent 60%);
  pointer-events: none;
}
.page-hero h1 { color: #fff; margin: 0 auto; max-width: 18ch; position: relative; }
.page-hero h1 .accent { color: var(--pink); }
.page-hero .lede { color: rgba(255,255,255,0.85); margin: 1.5rem auto 0; max-width: 50ch; position: relative; }
.form-section { background: var(--paper); padding: 4rem 0 6rem; color: var(--text-on-paper); }
.form-wrap { max-width: 720px; margin: 0 auto; padding: 0 clamp(1.25rem, 4vw, 2.5rem); }
.form-grid { display: grid; grid-template-columns: 1fr; gap: 1.1rem; }
@media (min-width: 600px) { .form-grid { grid-template-columns: 1fr 1fr; } }
.form-grid .full { grid-column: 1 / -1; }
.form-grid label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--magenta);
  font-weight: 700;
  margin-bottom: 0.45rem;
}
.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--line-on-paper);
  color: var(--text-on-paper);
  padding: 0.95rem 1rem;
  border-radius: 8px;
  font: inherit;
  font-size: 1rem;
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
  min-height: 48px;
}
.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline: none;
  border-color: var(--magenta);
  box-shadow: 0 0 0 3px rgba(178,58,142,0.15);
}
.form-grid textarea { min-height: 140px; resize: vertical; }
.form-actions { grid-column: 1 / -1; display: flex; justify-content: flex-end; margin-top: 0.5rem; }
.form-note { grid-column: 1 / -1; font-size: 0.8rem; color: var(--text-mute-on-paper); margin: 0; }
.contact-direct { text-align: center; padding: 1rem 1.5rem 4rem; color: var(--text-mute-on-paper); background: var(--paper); }
.contact-direct a { color: var(--magenta); font-weight: 700; }

/* =====================================================
   v2.1 additions — band pages, weddings landing, news
   ===================================================== */

/* Band hero */
.band-hero { position: relative; min-height: 72vh; display: flex; align-items: flex-end; padding: 7rem 0 3.5rem; overflow: hidden; }
.band-hero-bg { position: absolute; inset: 0; }
.band-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.band-hero-bg::after { content: ""; position: absolute; inset: 0; background: var(--grad-hero); mix-blend-mode: multiply; }
.band-hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(15,20,48,0.92) 0%, rgba(15,20,48,0.25) 45%, rgba(15,20,48,0.15) 100%); }
.band-hero-content { position: relative; z-index: 2; }
.band-hero .hero-sub { max-width: 34rem; }

/* Chips */
.chips { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.chip { display: inline-block; padding: 0.35rem 0.85rem; border-radius: 999px; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.02em; background: rgba(178,58,142,0.1); color: var(--magenta); border: 1px solid rgba(178,58,142,0.25); }
.lineup-line { margin-top: 1.2rem; font-size: 0.92rem; color: var(--text-mute-on-paper); }
.fine { font-size: 0.88rem; color: var(--text-mute-on-paper); border-top: 1px solid var(--line-on-paper); padding-top: 1rem; margin-top: 1.4rem; }

/* Stats */
.stat-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 3rem; }
.stat { text-align: center; padding: 1.6rem 1rem; border-radius: 16px; background: #fff; border: 1px solid var(--line-on-paper); }
.stat strong { display: block; font-size: 2.4rem; font-weight: 900; background: linear-gradient(90deg, var(--purple), var(--pink-deep)); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; }
.stat span { font-size: 0.85rem; color: var(--text-mute-on-paper); }
@media (min-width: 720px) { .stat-row { grid-template-columns: repeat(4, 1fr); } }

/* FAQ */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq { border-bottom: 1px solid var(--line-on-paper); }
.faq summary { cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 1rem; padding: 1.1rem 0; font-weight: 800; color: var(--text-on-paper); font-size: 1.02rem; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; font-size: 1.4rem; font-weight: 400; color: var(--magenta); transition: transform 0.25s var(--ease); flex-shrink: 0; }
.faq[open] summary::after { transform: rotate(45deg); }
.faq p { margin: 0 0 1.2rem; color: var(--text-mute-on-paper); line-height: 1.6; }

/* News */
.news-list { display: flex; flex-direction: column; gap: 0.5rem; }
.news-item { display: grid; grid-template-columns: 5.5rem 1fr; gap: 1rem; padding: 1.4rem 0; border-bottom: 1px solid var(--line-on-dark); }
.news-year { font-weight: 900; color: var(--pink); font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; padding-top: 0.2rem; }
.news-item h3 { margin: 0 0 0.4rem; font-size: 1.2rem; font-weight: 900; }
.news-item p { margin: 0; color: var(--text-mute-on-dark); font-size: 0.95rem; line-height: 1.55; }

/* Video fallback layering: img underlay shows until the video paints */
.hero-bg img, .hero-bg video, .band-hero-bg img, .band-hero-bg video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.band-card-img img, .band-card-img video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero-bg video, .band-hero-bg video, .band-card-img video { z-index: 1; }
.hero-bg::after { z-index: 2; }
