/* ============================================================
   DEATHMOTH — Site Stylesheet
   Structure:
     1.  Variables
     2.  Reset & Base
     3.  Layout
     4.  Topbar / Nav
     5.  Buttons
     6.  Homepage Hero
     7.  Band Hero
     8.  Sections
     9.  Features Grid
    10.  Partner Cards
    11.  Merch Grid
    12.  Contact Box & Links
    13.  Pricing
    14.  CTA Wide
    15.  Footer
    16.  Lightbox
    17.  Responsive
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;900&family=Oswald:wght@600;700&display=swap');

/* ── 1. VARIABLES ──────────────────────────────────────────── */
:root {
  --bg:           #070709;
  --panel:        rgba(14, 14, 18, .78);
  --panel2:       rgba(20, 20, 28, .68);
  --line:         rgba(255, 255, 255, .10);
  --line-accent:  rgba(155, 92, 255, .30);
  --text:         #f2f2ff;
  --muted:        rgba(242, 242, 255, .65);
  --a1:           #9b5cff;
  --a2:           #ff3d7f;
  --r:            18px;
  --font-display: 'Oswald', system-ui, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

/* ── 2. RESET & BASE ───────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
html {
  scroll-behavior: smooth;
}
html, body { height: 100%; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--text);
  background:
    radial-gradient(1400px 750px at 15% -5%, rgba(155, 92, 255, .34), transparent 60%),
    radial-gradient(1000px 620px at 92% 0%, rgba(255, 61, 127, .24), transparent 55%),
    radial-gradient(700px 500px at 50% 100%, rgba(100, 50, 200, .08), transparent 65%),
    var(--bg);
  background-attachment: fixed;
}
a   { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul  { list-style: none; padding: 0; margin: 0; }

/* ── 3. LAYOUT ─────────────────────────────────────────────── */
.wrap { max-width: 1120px; margin: 0 auto; padding: 0 24px; }

/* ── 4. TOPBAR / NAV ───────────────────────────────────────── */
.topbar {
  position: sticky; top: 0; z-index: 50;
  background: rgba(7, 7, 9, .80);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}
.topbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: .18em; flex-shrink: 0;
}
.brand-logo {
  width: 38px; height: 38px; border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(155, 92, 255, .35), 0 8px 24px rgba(0, 0, 0, .55);
}
.brand-name {
  font-size: 16px;
  background: linear-gradient(90deg, #fff 30%, rgba(242, 242, 255, .75));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

.nav { display: flex; gap: 4px; align-items: center; flex-wrap: wrap; }
.nav a {
  color: var(--muted); font-weight: 700; font-size: 13px;
  padding: 6px 10px; border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav a:hover { color: var(--text); background: rgba(255, 255, 255, .06); }
.nav a.active {
  color: var(--text);
  background: rgba(155, 92, 255, .18);
  border: 1px solid rgba(155, 92, 255, .30);
}

/* Contact Dropdown */
.contact-dropdown {
  position: relative;
  display: inline-block;
}
.contact-btn {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 8px 14px; border-radius: 10px; font-weight: 700;
  font-family: var(--font-body);
  border: 1px solid var(--a1);
  background: linear-gradient(180deg, rgba(155, 92, 255, .24), rgba(155, 92, 255, .07));
  color: var(--text); cursor: pointer;
  font-size: 13px; white-space: nowrap;
  transition: filter .15s, box-shadow .15s;
}
.contact-btn:hover {
  filter: brightness(1.12);
  box-shadow: 0 0 18px rgba(155, 92, 255, .28);
}
.contact-dropdown-content {
  display: none; position: absolute;
  background: rgba(12, 11, 18, .98);
  min-width: 220px;
  box-shadow: 0 14px 50px rgba(0, 0, 0, .60);
  border-radius: 14px; z-index: 1000;
  right: 0; top: calc(100% + 8px); padding: 8px 0;
  border: 1px solid var(--line);
}
.contact-dropdown.show .contact-dropdown-content { display: block; }
.contact-dropdown-content button,
.contact-dropdown-content a {
  width: 100%; background: none; border: none; color: var(--text);
  text-align: left; padding: 10px 18px; font-size: 13px; font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: background .12s;
}
.contact-dropdown-content button:hover,
.contact-dropdown-content a:hover { background: rgba(255, 255, 255, .06); }
.contact-copied { color: var(--a1); font-size: 11px; margin-left: 4px; }

/* ── 5. BUTTONS ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 13px 26px; border-radius: 12px;
  font-family: var(--font-body);
  font-weight: 900; font-size: 14px; letter-spacing: .02em;
  border: 1px solid rgba(155, 92, 255, .45);
  background: linear-gradient(160deg, rgba(155, 92, 255, .30), rgba(155, 92, 255, .08));
  box-shadow: 0 0 0 0 rgba(155, 92, 255, 0), 0 10px 32px rgba(0, 0, 0, .30);
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  color: var(--text);
}
.btn:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
  box-shadow: 0 0 28px rgba(155, 92, 255, .30), 0 12px 36px rgba(0, 0, 0, .35);
}
.btn2,
.btn--accent {
  border-color: rgba(255, 61, 127, .45);
  background: linear-gradient(160deg, rgba(255, 61, 127, .26), rgba(255, 61, 127, .06));
}
.btn--accent:hover {
  box-shadow: 0 0 28px rgba(255, 61, 127, .28), 0 12px 36px rgba(0, 0, 0, .35);
}
.btn--solid {
  background: linear-gradient(155deg, #a86fff 0%, #7b3de0 100%);
  border-color: rgba(155, 92, 255, .80);
  box-shadow: 0 10px 36px rgba(155, 92, 255, .40);
  color: #fff;
}
.btn--solid:hover {
  filter: brightness(1.08);
  box-shadow: 0 0 52px rgba(155, 92, 255, .55), 0 14px 44px rgba(0, 0, 0, .40);
}

/* ── 6. HOMEPAGE HERO ──────────────────────────────────────── */
.hero {
  padding: 96px 0 64px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; inset: 0; z-index: 0; pointer-events: none;
  background-image: radial-gradient(circle, rgba(155, 92, 255, .14) 1px, transparent 1px);
  background-size: 30px 30px;
  mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, rgba(0,0,0,.55) 0%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 90% 80% at 50% 0%, rgba(0,0,0,.55) 0%, transparent 70%);
}
.hero > .wrap { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 32px; align-items: center;
}
.kicker {
  letter-spacing: .26em; text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 900; font-size: 11px;
  color: var(--a1);
  margin: 0 0 14px;
  display: flex; align-items: center; gap: 8px;
}
.kicker::before {
  content: '';
  display: inline-block; width: 28px; height: 2px;
  background: linear-gradient(90deg, var(--a1), var(--a2));
  border-radius: 2px; flex-shrink: 0;
}
.headline {
  font-family: var(--font-display);
  font-weight: 700; line-height: .98;
  font-size: clamp(44px, 6vw, 80px);
  margin: 0 0 20px;
  text-shadow: 0 4px 16px rgba(0, 0, 0, .45), 0 28px 90px rgba(0, 0, 0, .85);
  letter-spacing: .01em;
}
.headline span {
  background: linear-gradient(95deg, var(--a1), var(--a2) 70%);
  -webkit-background-clip: text; background-clip: text;
  color: transparent;
}
.subhead {
  font-size: 17px; color: rgba(242, 242, 255, .90);
  max-width: 56ch; line-height: 1.70; margin: 0 0 24px;
}
.cta   { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 24px; }
.pills { display: flex; gap: 8px; flex-wrap: wrap; }
.pills span {
  border: 1px solid rgba(155, 92, 255, .20);
  background: rgba(155, 92, 255, .07);
  border-radius: 999px; padding: 6px 14px;
  color: var(--muted); font-weight: 700; font-size: 12px;
}
.hero-card {
  border: 1px solid rgba(155, 92, 255, .20);
  background: linear-gradient(160deg, rgba(18, 16, 26, .95), rgba(10, 10, 13, .85));
  border-radius: var(--r); padding: 20px;
  box-shadow:
    0 0 0 1px rgba(155, 92, 255, .10),
    0 24px 80px rgba(0, 0, 0, .55);
}
.hero-card-inner {
  border-radius: 14px; border: 1px solid rgba(155, 92, 255, .34);
  background:
    radial-gradient(500px 280px at 15% 5%, rgba(155, 92, 255, .30), transparent 58%),
    radial-gradient(480px 260px at 85% 10%, rgba(255, 61, 127, .24), transparent 55%),
    rgba(8, 7, 13, .88);
  padding: 24px;
  display: flex; align-items: center; justify-content: center;
  min-height: 320px;
}
.hero-logo {
  width: 100%; max-width: 300px; border-radius: 14px;
  object-fit: cover;
  box-shadow:
    0 24px 80px rgba(0, 0, 0, .82),
    0 0 0 1px rgba(255, 255, 255, .10),
    0 0 160px rgba(155, 92, 255, .28);
}
.hero-note { margin: 16px 0 0; color: var(--muted); font-weight: 700; font-size: 13px; line-height: 1.6; }

/* ── 7. BAND HERO ──────────────────────────────────────────── */
.band-hero { padding: 64px 0 36px; }
.band-hero-inner {
  display: flex; gap: 40px; align-items: center;
  border: 1px solid rgba(155, 92, 255, .18);
  background:
    radial-gradient(600px 320px at 0% 50%, rgba(155, 92, 255, .14), transparent 60%),
    radial-gradient(500px 280px at 100% 50%, rgba(255, 61, 127, .10), transparent 55%),
    linear-gradient(180deg, rgba(16, 14, 22, .95), rgba(10, 10, 13, .88));
  border-radius: var(--r); padding: 36px 40px;
  box-shadow:
    0 0 0 1px rgba(155, 92, 255, .08),
    0 24px 80px rgba(0, 0, 0, .50);
}
.band-hero-logo {
  width: 150px; height: 150px; border-radius: 16px;
  object-fit: contain; flex-shrink: 0;
  background: rgba(14, 12, 22, .80); padding: 14px;
  border: 1px solid rgba(155, 92, 255, .22);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .50), 0 0 0 1px rgba(255, 255, 255, .05);
}
.band-hero-text h1 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(30px, 4.5vw, 52px);
  font-weight: 700; letter-spacing: .02em;
}
.band-hero-text .band-tagline {
  margin: 0 0 24px; color: var(--muted);
  font-size: 15px; line-height: 1.70; max-width: 50ch;
}

/* ── 8. SECTIONS ───────────────────────────────────────────── */
.section { padding: 48px 0 80px; }
.section-head {
  margin-bottom: 36px; padding-bottom: 0;
}
.eyebrow {
  display: block;
  letter-spacing: .22em; text-transform: uppercase;
  font-family: var(--font-body);
  font-weight: 900; font-size: 11px; color: var(--a1);
  margin: 0 0 8px;
}
.section-head h2 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 30px); font-weight: 700; letter-spacing: .02em;
}
.section-head p  {
  margin: 0; color: var(--muted); font-size: 14px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.section--cta {
  padding-top: 80px;
  border-top: 1px solid var(--line);
  background:
    radial-gradient(1000px 500px at 50% 0%, rgba(155, 92, 255, .13), transparent 70%);
}
.closing-cta {
  text-align: center;
  max-width: 660px; margin: 0 auto; padding: 12px 0 8px;
}
.closing-cta h2 {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 52px); font-weight: 700;
  margin: 0 0 18px; letter-spacing: .01em;
}
.closing-cta p {
  color: var(--muted); font-size: 16px; line-height: 1.75;
  max-width: 56ch; margin: 0 auto 32px;
}
.closing-cta-btns {
  display: flex; gap: 12px; justify-content: center; flex-wrap: wrap;
}
.section--raised {
  background: rgba(16, 14, 24, .52);
}

/* ── 9. FEATURES GRID ──────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.feature-card {
  border: 1px solid var(--line);
  background: rgba(14, 14, 18, .55);
  border-radius: 14px; padding: 22px 20px;
  transition: border-color .22s, transform .22s cubic-bezier(.25,.46,.45,.94), background .22s, box-shadow .22s;
  will-change: transform;
}
.feature-card:hover {
  border-color: rgba(155, 92, 255, .44);
  background: rgba(155, 92, 255, .08);
  transform: translateY(-3px);
  box-shadow: 0 10px 36px rgba(0, 0, 0, .40);
}
.feature-card h3 {
  margin: 0 0 10px; font-size: 14px; font-weight: 900; color: var(--a1);
}
.feature-card p  { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.70; }

/* ── 10. PARTNER CARDS ─────────────────────────────────────── */
.grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.card {
  border: 1px solid var(--line);
  background: rgba(14, 14, 18, .72);
  border-radius: 16px; overflow: hidden;
  position: relative;
  transition: transform .24s cubic-bezier(.25,.46,.45,.94), border-color .24s, box-shadow .24s;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .32);
  will-change: transform;
}
.card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px; z-index: 2;
  background: linear-gradient(90deg, var(--a1), var(--a2));
  transform: scaleX(0);
  transition: transform .30s cubic-bezier(.25,.46,.45,.94);
}
.card:hover::before { transform: scaleX(1); }
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(155, 92, 255, .55);
  box-shadow: 0 0 42px rgba(155, 92, 255, .24), 0 24px 70px rgba(0, 0, 0, .52);
}
.card-top {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  background:
    radial-gradient(300px 200px at 15% 10%, rgba(155, 92, 255, .30), transparent 60%),
    radial-gradient(280px 180px at 85% 20%, rgba(255, 61, 127, .22), transparent 55%),
    linear-gradient(180deg, rgba(20, 17, 30, .97), rgba(13, 11, 21, .93));
  border-bottom: 1px solid rgba(155, 92, 255, .15); padding: 18px;
}
.band-logo, .hero-logo, .brand-logo {
  max-width: 100%; max-height: 130px;
  object-fit: contain;
  filter: drop-shadow(0 14px 28px rgba(0, 0, 0, .65));
  transition: transform .20s, filter .20s;
}
.card:hover .band-logo {
  transform: scale(1.05);
  filter: drop-shadow(0 18px 36px rgba(0, 0, 0, .70));
}
.card--photo .card-top {
  padding: 0;
  overflow: hidden;
}
.card--photo .band-logo {
  width: 100%; height: 100%; max-height: none;
  object-fit: cover; object-position: center;
  filter: none;
}
.card--photo:hover .band-logo {
  transform: scale(1.04);
  filter: none;
}
.hero-logo { max-height: none; filter: none; }
.brand-logo { width: 38px; height: 38px; max-height: 38px; filter: none; border-radius: 10px; }
.card-body { padding: 16px 14px; }
.card-body h3 {
  margin: 0 0 6px;
  font-family: var(--font-display);
  font-size: 16px; font-weight: 700; letter-spacing: .03em;
}
.card-body p  { margin: 0; color: var(--muted); font-size: 12px; font-weight: 600; }

/* ── 11. MERCH GRID ────────────────────────────────────────── */
.merch-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.merch-item {
  border: 1px solid var(--line);
  background: rgba(14, 14, 18, .70);
  border-radius: 14px; overflow: hidden;
  padding: 14px;
  display: flex; align-items: center; justify-content: center;
  min-height: 210px;
  transition: border-color .22s, transform .22s cubic-bezier(.25,.46,.45,.94), box-shadow .22s;
  will-change: transform;
}
.merch-item:hover {
  border-color: rgba(155, 92, 255, .45);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .40);
}
.merch-item img {
  max-width: 100%; max-height: 200px;
  object-fit: contain; cursor: pointer;
  border-radius: 6px;
  transition: transform .20s;
}
.merch-item:hover img { transform: scale(1.03); }

/* ── 12. CONTACT BOX & LINKS ───────────────────────────────── */
.contact-box {
  border: 1px solid var(--line);
  background: rgba(14, 14, 18, .72);
  border-radius: var(--r); padding: 28px 32px;
  box-shadow: 0 16px 50px rgba(0, 0, 0, .30);
}
.contact-box h3 { margin: 0 0 18px; font-size: 18px; font-weight: 900; }
.contact-box ul { display: flex; flex-direction: column; gap: 12px; }
.contact-box li { font-size: 15px; font-weight: 700; }
.contact-link {
  background: none; color: var(--text);
  border: none; font: inherit; padding: 0; margin: 0;
  cursor: pointer; text-align: left; text-decoration: underline;
}
.contact-link:hover { color: var(--a1); }
.contact-link:focus { outline: 2px solid var(--a1); border-radius: 4px; }

/* ── 13. PRICING ───────────────────────────────────────────── */
.pricing-intro {
  font-size: 16px; line-height: 1.80; color: var(--muted);
  max-width: 72ch; margin: 0 0 32px;
}
.pricing-intro strong { color: var(--text); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 40px;
}
.service-card {
  border: 1px solid var(--line);
  background: rgba(14, 14, 18, .65);
  border-radius: 14px; padding: 24px;
  transition: border-color .18s, background .18s, transform .18s;
}
.service-card:hover {
  border-color: rgba(155, 92, 255, .38);
  background: rgba(155, 92, 255, .05);
  transform: translateY(-2px);
}
.service-card h3 { margin: 0 0 10px; font-size: 15px; font-weight: 900; color: var(--a1); }
.service-card p  { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.75; }
.pricing-cta {
  padding: 36px 32px;
  border: 1px solid rgba(155, 92, 255, .28);
  background:
    radial-gradient(600px 300px at 50% 50%, rgba(155, 92, 255, .10), transparent 70%),
    linear-gradient(180deg, rgba(155, 92, 255, .08), rgba(155, 92, 255, .02));
  border-radius: var(--r); text-align: center;
  box-shadow: 0 0 0 1px rgba(155, 92, 255, .06), 0 20px 60px rgba(0, 0, 0, .30);
}
.pricing-cta h3 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 28px); font-weight: 700;
}
.pricing-cta p  { margin: 0 auto 20px; color: var(--muted); font-size: 15px; max-width: 52ch; }

/* ── 14. CTA WIDE ──────────────────────────────────────────── */
.cta-wide {
  margin-top: 24px;
  border: 1px solid rgba(155, 92, 255, .22);
  background:
    radial-gradient(600px 200px at 0% 50%, rgba(155, 92, 255, .10), transparent 60%),
    rgba(14, 14, 18, .65);
  border-radius: var(--r);
  box-shadow: 0 0 0 1px rgba(155, 92, 255, .06), 0 16px 50px rgba(0, 0, 0, .28);
}
.cta-wide-inner {
  padding: 24px 28px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}
.cta-wide-inner h3 {
  margin: 0 0 5px;
  font-family: var(--font-display);
  font-size: 18px; font-weight: 700; letter-spacing: .02em;
}
.cta-wide-inner p  { margin: 0; color: var(--muted); font-size: 13px; }

/* ── 15. FOOTER ────────────────────────────────────────────── */
.footer {
  position: relative;
  padding: 52px 0 64px;
  color: var(--muted); font-size: 13px;
  margin-top: 48px;
  background:
    radial-gradient(1200px 500px at 50% 100%, rgba(155, 92, 255, .12), transparent 70%),
    linear-gradient(to bottom, rgba(5, 4, 8, .96), rgba(3, 3, 5, 1));
}
.footer::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(155, 92, 255, .70) 25%,
    rgba(255, 61, 127, .55) 75%,
    transparent 100%
  );
}
.footer-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.footer-brand {
  font-family: var(--font-display);
  font-weight: 700; letter-spacing: .16em;
  font-size: 20px; color: var(--text);
  text-shadow: 0 0 40px rgba(155, 92, 255, .40);
}
.footer-tagline { color: rgba(242,242,255,.58); font-size: 13px; margin-top: 5px; }
.footer-links   { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { color: var(--muted); font-weight: 700; font-size: 12px; transition: color .15s; }
.footer-links a:hover { color: var(--text); }

/* ── 16. LIGHTBOX ──────────────────────────────────────────── */
.lightbox-modal {
  display: none; position: fixed; z-index: 9999;
  left: 0; top: 0; width: 100vw; height: 100vh;
  background: rgba(0, 0, 0, .93);
  align-items: center; justify-content: center;
}
.lightbox-modal.active { display: flex; }
.lightbox-modal img {
  max-width: 90vw; max-height: 90vh;
  border-radius: 14px;
  box-shadow: 0 8px 60px rgba(0, 0, 0, .70);
}
.lightbox-modal .close-btn {
  position: absolute; top: 28px; right: 40px;
  font-size: 2.2rem; color: #fff;
  background: none; border: none; cursor: pointer; z-index: 10000;
  opacity: .70; transition: opacity .15s;
}
.lightbox-modal .close-btn:hover { opacity: 1; }

/* ── 17. RESPONSIVE ────────────────────────────────────────── */
@media (max-width: 980px) {
  .hero-grid       { grid-template-columns: 1fr; }
  .grid            { grid-template-columns: repeat(2, 1fr); }
  .features-grid   { grid-template-columns: repeat(2, 1fr); }
  .services-grid   { grid-template-columns: repeat(2, 1fr); }
  .band-hero-inner { flex-direction: column; text-align: center; }
  .band-hero-logo  { width: 120px; height: 120px; }
}
@media (max-width: 680px) {
  .nav             { gap: 4px; }
  .nav a           { font-size: 12px; padding: 5px 8px; }
  .brand-name      { display: none; }
  .services-grid   { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid           { grid-template-columns: 1fr; }
  .features-grid  { grid-template-columns: 1fr; }
  .merch-grid     { grid-template-columns: 1fr 1fr; }
  .hero           { padding: 48px 0 24px; }
  .contact-box    { padding: 20px; }
  .band-hero-inner { padding: 22px; gap: 24px; }
  .closing-cta h2 { font-size: clamp(26px, 8vw, 36px); }
}


