/* ISEKAI STAGE — cyan HUD / isekai-portal identity.
   Design language from the band's ring emblem + HUD panel sheets.
   Two faces only: Gugi (display) + IBM Plex Mono (all else). Flat dark bg. No purple. */

:root {
  --ink:      #05080c;
  --panel:    #0d141c;
  --panel-2:  #111a24;
  --line:     #1c2836;
  --cyan:     #2ce5f6;   /* brand turquoise, from logo */
  --cyan-dim: #1892a0;
  --steel:    #2e6e8e;
  --amber:    #ff7a1a;   /* lone warm accent, used sparingly */
  --fg:       #dce7ec;
  --muted:    #7c8b96;

  --disp: "Gugi", system-ui, sans-serif;
  --mono: "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --wrap: 1200px;
  --gutter: clamp(1.1rem, 4vw, 4rem);
  --cut: polygon(0 14px, 14px 0, 100% 0, 100% calc(100% - 14px), calc(100% - 14px) 100%, 0 100%);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  background: var(--ink);
  color: var(--fg);
  font-family: var(--mono);
  font-size: 15.5px;
  line-height: 1.7;
  letter-spacing: .01em;
  overflow-x: hidden;
  /* flat: one soft cyan bloom up top + a deep vignette. No tiles, no imagery. */
  background-image:
    radial-gradient(90% 55% at 50% -8%, rgba(44,229,246,.09), transparent 62%),
    radial-gradient(120% 90% at 50% 120%, rgba(46,110,142,.08), transparent 60%);
  background-attachment: fixed;
}
::selection { background: var(--cyan); color: var(--ink); }

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
strong { color: var(--cyan); font-weight: 600; }
em { font-style: normal; color: var(--cyan); }
:focus-visible { outline: 2px solid var(--cyan); outline-offset: 3px; }

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

/* ---------- HUD panel: cut corners + traced edge ---------- */
.hud {
  position: relative;
  background: var(--panel);
  clip-path: var(--cut);
  filter: drop-shadow(.6px .6px 0 var(--cyan-dim)) drop-shadow(-.6px -.6px 0 var(--cyan-dim));
}
.hud--node::before,
.hud--node::after {
  content: ""; position: absolute; width: 6px; height: 6px; border-radius: 50%;
  background: var(--cyan); box-shadow: 0 0 8px var(--cyan); z-index: 2;
}
.hud--node::before { top: 8px; right: 20px; }
.hud--node::after  { bottom: 8px; left: 20px; }

/* ---------- shared type ---------- */
.eyebrow { font-size: .72rem; letter-spacing: .26em; text-transform: uppercase; color: var(--cyan); display: inline-flex; align-items: center; gap: .6rem; }
.eyebrow__tick { width: 26px; height: 1px; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); animation: tick-pulse 2.6s ease-in-out infinite; }
@keyframes tick-pulse { 0%, 100% { opacity: .35; } 50% { opacity: 1; } }
.lead { font-size: 1.05rem; color: #b9c7d0; }
.micro { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }
.micro code { color: var(--cyan); }

/* ================= BOOT LOADER ================= */
.boot {
  position: fixed; inset: 0; z-index: 999;
  background: radial-gradient(60% 60% at 50% 45%, #071018, var(--ink) 75%);
  display: grid; place-content: center; justify-items: center; gap: 1.6rem;
  padding: 2rem; text-align: center;
  transition: opacity .6s ease, visibility .6s ease;
}
.boot.done { opacity: 0; visibility: hidden; pointer-events: none; }
.boot__stage { width: 150px; height: 150px; }
.boot__ring { width: 100%; height: 100%; object-fit: contain; animation: spin 6s linear infinite; filter: drop-shadow(0 0 14px rgba(44,229,246,.5)); }
.boot__status { font-size: .82rem; letter-spacing: .2em; text-transform: uppercase; color: var(--fg); }
.boot__bar { width: min(340px, 76vw); height: 3px; background: var(--line); overflow: hidden; }
.boot__fill { display: block; height: 100%; width: 0; background: var(--cyan); box-shadow: 0 0 12px var(--cyan); transition: width .18s linear; }
.boot__meta { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--cyan-dim); }

/* ---------- scanlines ---------- */
.scanlines { position: fixed; inset: 0; z-index: 900; pointer-events: none;
  background: repeating-linear-gradient(to bottom, rgba(255,255,255,.02) 0 1px, transparent 1px 3px);
  mix-blend-mode: overlay; opacity: .45; animation: scan-drift 7s linear infinite; }
@keyframes scan-drift { to { background-position: 0 3px; } }

/* portal charge: scroll progress hairline across the very top */
.charge { position: fixed; top: 0; left: 0; height: 2px; width: 0; z-index: 700;
  background: var(--cyan); box-shadow: 0 0 10px var(--cyan); transition: width .1s linear; }

/* ================= NAV ================= */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  display: flex; align-items: center; justify-content: space-between;
  padding: .7rem var(--gutter);
  background: rgba(5,8,12,.55); border-bottom: 1px solid transparent;
  -webkit-backdrop-filter: blur(9px); backdrop-filter: blur(9px);
  transition: background .3s, border-color .3s;
}
.nav.scrolled { background: rgba(5,8,12,.92); border-color: var(--line); }
.nav__logo { height: 34px; width: auto; }
.nav__links { display: flex; align-items: center; gap: 1.6rem; }
.nav__links a { font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; color: var(--cyan-dim); transition: color .2s, text-shadow .2s; }
.nav__links a:hover { color: var(--cyan); text-shadow: 0 0 10px rgba(44,229,246,.45); }
.nav__cta { color: var(--cyan) !important; border: 1px solid var(--cyan-dim); padding: .5rem .9rem; }
.nav__cta:hover { background: var(--cyan); color: var(--ink) !important; box-shadow: 0 0 18px rgba(44,229,246,.4); }
.nav__links a.active { color: var(--cyan); text-shadow: 0 0 10px rgba(44,229,246,.5); }
.nav__toggle { display: none; background: none; border: 0; cursor: pointer; width: 40px; height: 40px; padding: 8px; }
.nav__toggle span { display: block; height: 2px; background: var(--cyan); margin: 5px 0; transition: transform .3s, opacity .3s; }
.nav__social { display: flex; align-items: center; gap: 1rem; list-style: none; }
.nav__social a { color: var(--muted); display: grid; place-items: center; transition: color .2s, transform .2s; }
.nav__social a:hover { color: var(--cyan); transform: translateY(-1px); }
.nav__social svg { display: block; }

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--mono); font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; font-weight: 500;
  padding: .8rem 1.4rem; cursor: pointer; border: 1px solid var(--cyan-dim);
  transition: all .2s; min-height: 44px; clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px);
}
.btn--solid { background: var(--cyan); color: var(--ink); border-color: var(--cyan); font-weight: 600; }
.btn--solid:hover { box-shadow: 0 0 24px rgba(44,229,246,.45); transform: translateY(-2px); }
.btn--ghost { background: transparent; color: var(--cyan); }
.btn--ghost:hover { border-color: var(--cyan); background: rgba(44,229,246,.08); }

/* ================= HERO ================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; padding: 7rem var(--gutter) 3rem; overflow: hidden; }
.hero__grid { width: 100%; max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(2rem, 5vw, 4rem); align-items: center; }
.hero__logo { display: block; width: 100%; max-width: 600px; height: auto; margin: .2rem 0 1.4rem -1.5%; filter: drop-shadow(0 0 34px rgba(44,229,246,.22)); }
.hero__next { display: inline-flex; align-items: center; gap: .7rem; margin-bottom: 2rem; padding-left: .8rem; border-left: 2px solid var(--cyan); min-height: 1.5rem; }
.hero__next-link { display: inline-flex; align-items: center; gap: .7rem; }
.hero__next-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--cyan); box-shadow: 0 0 10px var(--cyan); animation: tick-pulse 1.8s ease-in-out infinite; flex: none; }
.hero__next-dot--off { background: var(--muted); box-shadow: none; animation: none; }
.hero__next-lbl { font-size: .6rem; letter-spacing: .22em; text-transform: uppercase; color: var(--cyan); flex: none; }
.hero__next-val { font-family: var(--disp); font-size: clamp(.95rem, 2.4vw, 1.2rem); color: var(--fg); }
.hero__next-go { color: var(--cyan); }
.hero__next-link:hover .hero__next-val { color: var(--cyan); }
.hero__actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero__figure { margin: 0; }

/* framed photo w/ HUD corners + credit (shared: hero + about) */
.frame { position: relative; }
.frame img { width: 100%; display: block; }
.hero__figure .frame img { aspect-ratio: 4/5; object-fit: cover; object-position: 50% 22%; }
.frame__corner { position: absolute; width: 20px; height: 20px; border: 2px solid var(--cyan); z-index: 3; }
.frame__corner--tl { top: 8px; left: 8px; border-right: 0; border-bottom: 0; }
.frame__corner--br { bottom: 8px; right: 8px; border-left: 0; border-top: 0; }
.frame__cap { position: absolute; bottom: 0; left: 0; right: 0; display: flex; justify-content: space-between; font-size: .62rem; letter-spacing: .18em; color: var(--cyan); padding: .5rem .8rem; background: linear-gradient(transparent, rgba(5,8,12,.9)); z-index: 3; }

@keyframes spin { to { transform: rotate(360deg); } }

/* ================= SECTION SHELL ================= */
.section { max-width: var(--wrap); margin: 0 auto; padding: clamp(4rem, 9vw, 7rem) var(--gutter); }
.sechead { display: flex; align-items: center; gap: 1rem; margin-bottom: 2.6rem; }
.secmark { width: 30px; height: 30px; object-fit: contain; opacity: .9; filter: drop-shadow(0 0 8px rgba(44,229,246,.5)); flex: none; transform: rotate(-120deg); transition: transform .9s ease; }
.reveal.in .secmark { transform: rotate(0); }
.sectitle { font-family: var(--disp); font-size: clamp(1.9rem, 5vw, 3.1rem); font-weight: 400; letter-spacing: .01em; }
.secline { flex: 1; height: 1px; background: linear-gradient(90deg, var(--line), transparent); position: relative; transform: scaleX(0); transform-origin: left; transition: transform .8s ease .12s; }
.reveal.in .secline { transform: scaleX(1); }
.secline::before { content: ""; position: absolute; right: 0; top: -2px; width: 5px; height: 5px; background: var(--cyan); box-shadow: 0 0 8px var(--cyan); }

/* ================= ABOUT ================= */
.about__grid { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(1.6rem, 5vw, 4rem); align-items: center; }
.about__img { margin: 0; }
.about__img img { width: 100%; height: auto; object-fit: contain; }   /* full picture, uncropped */
.about__body p { margin-bottom: 1.1rem; color: #c4d0d8; }
.about__body .lead { color: #b9c7d0; }
.members { list-style: none; display: grid; gap: .1rem; margin: 1.8rem 0 0; border-top: 1px solid var(--line); }
.members li { display: flex; justify-content: space-between; align-items: baseline; padding: .8rem 0; border-bottom: 1px solid var(--line); }
.members__name { font-family: var(--disp); font-size: 1.15rem; color: var(--cyan); }
.members__role { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); }

/* ================= MUSIC ================= */
.single { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; flex-wrap: wrap; padding: 1.6rem clamp(1.3rem, 3vw, 2.2rem); margin-bottom: 2.4rem; }
.single__tag { font-size: .68rem; letter-spacing: .2em; text-transform: uppercase; color: var(--amber); }
.single__title { font-family: var(--disp); font-size: clamp(1.8rem, 5vw, 2.8rem); color: var(--fg); line-height: 1; margin: .3rem 0 .5rem; }
.single__sub { font-size: .82rem; color: var(--muted); max-width: 46ch; }
.music__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(1.5rem, 4vw, 3rem); align-items: start; }
.music__player iframe { border-radius: 10px; display: block; }
.music__player .micro { margin-top: .7rem; }
.releases { list-style: none; border-top: 1px solid var(--line); }
.rel { display: grid; grid-template-columns: auto 1fr auto; gap: .15rem 1rem; align-items: center; padding: 1.1rem .4rem; border-bottom: 1px solid var(--line); }
.rel__mark { color: var(--cyan-dim); grid-row: 1 / span 2; align-self: center; }
.rel__title { font-family: var(--disp); font-size: 1.15rem; grid-column: 2; color: var(--cyan); text-shadow: 0 0 12px rgba(44,229,246,.35); }
.rel__meta { grid-column: 2; grid-row: 2; font-size: .74rem; color: var(--muted); }
.rel__tag { grid-column: 3; grid-row: 1 / span 2; align-self: center; font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); border: 1px solid var(--amber); padding: .15rem .5rem; }
.rel__tag--live { color: var(--cyan); border-color: var(--cyan-dim); }

/* ================= WATCH ================= */
.videos { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.3rem; }
.vcard { margin: 0; transition: transform .2s; }
.vcard:hover { transform: translateY(-3px); }
.vcard::after { content: ""; position: absolute; inset: 0; z-index: 4; pointer-events: none; opacity: 0;
  background: linear-gradient(transparent, rgba(44,229,246,.16), transparent); transform: translateY(-100%); }
.vcard:target::after { animation: vscan 1.1s ease 1; }
@keyframes vscan { 0% { transform: translateY(-100%); opacity: 1; } 100% { transform: translateY(120%); opacity: 0; } }
.vplay { position: relative; display: block; width: 100%; aspect-ratio: 16/9; padding: 0; border: 0; background: #000; cursor: pointer; overflow: hidden; }
.vplay img { width: 100%; height: 100%; object-fit: cover; opacity: .82; transition: opacity .2s, transform .3s; }
.vplay:hover img { opacity: 1; transform: scale(1.04); }
.vplay__btn { position: absolute; inset: 0; margin: auto; width: 54px; height: 54px; display: grid; place-items: center; padding-left: 3px; color: var(--ink); background: var(--cyan); box-shadow: 0 0 22px rgba(44,229,246,.5); clip-path: polygon(8px 0, 100% 0, 100% calc(100% - 8px), calc(100% - 8px) 100%, 0 100%, 0 8px); transition: transform .2s; }
.vplay:hover .vplay__btn { transform: scale(1.08); }
.vcard iframe { width: 100%; aspect-ratio: 16/9; border: 0; display: block; background: #000; }
.vcard figcaption { padding: .9rem 1rem 1.1rem; display: grid; gap: .2rem; }
.vcard figcaption strong { font-family: var(--disp); font-weight: 400; font-size: 1.02rem; color: var(--fg); }
.vcard figcaption span { font-size: .76rem; color: var(--muted); }

/* ================= SHOWS ================= */
.shows__eyebrow { font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; color: var(--cyan); margin-bottom: 1.2rem; }
.shows__empty { padding: clamp(1.6rem, 3vw, 2.4rem); display: flex; align-items: center; justify-content: space-between; gap: 1.4rem 2.2rem; flex-wrap: wrap; }
.shows__empty-copy { flex: 1 1 340px; }
.shows__empty p { color: var(--muted); max-width: 62ch; }
.shows__empty .btn { flex: none; }
.shows__list { display: grid; gap: .8rem; }
.show { display: grid; grid-template-columns: 8.5rem 1fr auto; align-items: center; gap: 1rem 1.4rem; padding: 1rem 1.3rem; }
.show__when { display: flex; flex-direction: column; }
.show__date { font-family: var(--disp); font-size: 1.15rem; color: var(--cyan); text-shadow: 0 0 10px rgba(44,229,246,.3); }
.show__time { font-size: .7rem; color: var(--muted); letter-spacing: .08em; }
.show__where { display: flex; flex-direction: column; }
.show__venue { font-size: .98rem; color: var(--fg); }
.show__city { font-size: .76rem; color: var(--muted); letter-spacing: .06em; }
.show__cta { font-size: .7rem; letter-spacing: .14em; text-transform: uppercase; color: var(--cyan); border: 1px solid var(--cyan-dim); padding: .55rem .9rem; white-space: nowrap; transition: all .2s; clip-path: polygon(6px 0, 100% 0, 100% calc(100% - 6px), calc(100% - 6px) 100%, 0 100%, 0 6px); }
a.show__cta:hover { background: var(--cyan); color: var(--ink); box-shadow: 0 0 16px rgba(44,229,246,.4); }
.show__cta--tba { color: var(--muted); border-color: var(--line); cursor: default; }

/* ================= LOCAL SHOWS ADMIN (only visible when opened from your machine) ================= */
.admin { position: fixed; inset: auto 0 0 0; z-index: 1000; max-height: 82vh; overflow: auto; background: #070d14; border-top: 2px solid var(--cyan); box-shadow: 0 -10px 40px rgba(0,0,0,.6); transform: translateY(100%); transition: transform .3s; padding-bottom: 1rem; font-family: var(--mono); }
.admin.show { transform: none; }
.admin__bar { display: flex; align-items: center; flex-wrap: wrap; gap: .8rem; padding: .8rem 1.2rem; border-bottom: 1px solid var(--line); position: sticky; top: 0; background: #070d14; z-index: 1; }
.admin__tabs { display: flex; gap: .3rem; margin-left: 1rem; }
.admin__tab { background: none; border: 1px solid var(--line); color: var(--muted); padding: .4rem .9rem; font-family: var(--mono); font-size: .68rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.admin__tab:hover { color: var(--cyan); }
.admin__tab.is-active { color: var(--cyan); border-color: var(--cyan-dim); background: var(--panel); }
.admin__bar strong { color: var(--cyan); letter-spacing: .16em; font-size: .8rem; }
.admin__hint { font-size: .62rem; color: var(--muted); letter-spacing: .14em; text-transform: uppercase; }
.admin__x { margin-left: auto; background: none; border: 0; color: var(--muted); font-size: 1rem; cursor: pointer; }
.admin__sec { border-top: 1px solid var(--line); }
.admin__sechead { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .9rem 1.2rem .2rem; }
.admin__sechead strong { color: var(--cyan); letter-spacing: .1em; font-size: .72rem; text-transform: uppercase; }
.admin__rows { display: grid; gap: .5rem; padding: .6rem 1.2rem 1rem; }
.admin__row { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; }
.admin__row input, .admin__row select { flex: 1 1 120px; }
.admin input, .admin select { background: var(--panel); border: 1px solid var(--line); color: var(--fg); padding: .5rem .6rem; font-family: var(--mono); font-size: .8rem; min-width: 0; }
.admin__feat { display: inline-flex; align-items: center; gap: .35rem; font-size: .66rem; color: var(--muted); letter-spacing: .08em; white-space: nowrap; flex: 0 0 auto; }
.admin__feat input { accent-color: var(--cyan); }
.admin__btn--sm { padding: .35rem .7rem; font-size: .64rem; }
.admin input:focus { border-color: var(--cyan); outline: none; }
.admin__del { background: none; border: 1px solid var(--line); color: var(--muted); cursor: pointer; padding: .45rem .6rem; }
.admin__del:hover { color: var(--amber); border-color: var(--amber); }
.admin__foot { display: flex; flex-wrap: wrap; gap: .6rem; padding: 0 1.2rem; }
.admin__btn { background: var(--panel); border: 1px solid var(--cyan-dim); color: var(--cyan); padding: .55rem .9rem; font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; cursor: pointer; }
.admin__btn--go { background: var(--cyan); color: var(--ink); border-color: var(--cyan); font-weight: 600; }
.admin__btn:hover { box-shadow: 0 0 14px rgba(44,229,246,.35); }
.admin__note { padding: .8rem 1.2rem 0; font-size: .68rem; color: var(--muted); line-height: 1.6; }
.admin__note code { color: var(--cyan); }
@media (max-width: 760px) { .admin__row input, .admin__row select { flex-basis: 100%; } }

/* ================= STORE ================= */
.store__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.3rem; }
.merch { display: block; transition: transform .2s; }
.merch:hover { transform: translateY(-3px); }
.merch__art { aspect-ratio: 1; display: grid; place-items: center; background: radial-gradient(circle at 50% 40%, var(--panel-2), var(--ink)); overflow: hidden; }
.merch__art img { width: 62%; object-fit: contain; }
.merch__art--anim img { width: 72%; }
.merch__art:not(.merch__art--logo):not(.merch__art--anim) img { width: 100%; height: 100%; object-fit: cover; }
.merch__row { display: flex; justify-content: space-between; align-items: center; padding: .9rem 1rem; }
.merch__soon { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--amber); border: 1px solid var(--amber); padding: .15rem .5rem; }
.merch__price { font-size: .82rem; color: var(--cyan); text-shadow: 0 0 10px rgba(44,229,246,.3); }
.merch__art img { background: var(--panel-2); }
.store__note { margin-top: 1.5rem; }
.store__all { margin-top: 2rem; }

/* ================= CONTACT ================= */
.contact__grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(1.6rem, 5vw, 4rem); }
.contact__h { font-family: var(--disp); font-weight: 400; font-size: 1.4rem; margin-bottom: .7rem; }
.contact__col > p { color: var(--muted); margin-bottom: 1.4rem; }
.contact__mail { display: inline-block; margin-top: 1.6rem; color: var(--cyan); letter-spacing: .04em; border-bottom: 1px solid var(--cyan-dim); }
.socials { list-style: none; display: grid; gap: .1rem; border-top: 1px solid var(--line); }
.socials a { display: flex; justify-content: space-between; align-items: center; padding: .95rem .3rem; border-bottom: 1px solid var(--line); font-size: .85rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); transition: color .2s, padding .2s, background .2s; }
.socials a:hover { color: var(--cyan); padding-left: .8rem; background: var(--panel); }
.socials a span { color: var(--cyan); }

/* ================= FOOTER ================= */
.foot { border-top: 1px solid var(--line); text-align: center; padding: 3.5rem var(--gutter); display: grid; gap: 1.2rem; justify-items: center; }
.foot__logo { height: 52px; width: auto; opacity: .9; }
.foot__copy { font-size: .72rem; color: var(--muted); letter-spacing: .06em; }

/* ================= REVEAL ================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ================= RESPONSIVE ================= */
@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 2rem; }
  .hero__logo { max-width: 520px; margin-left: 0; }
  .hero__figure { max-width: 440px; }
  .about__grid, .music__grid, .contact__grid { grid-template-columns: 1fr; }
  .videos, .store__grid { grid-template-columns: repeat(2, 1fr); }
  .about__img { max-width: 560px; }
}
/* nav collapses to hamburger early so the social icons never crowd the links */
@media (max-width: 980px) {
  .nav__links { position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; align-items: flex-start; gap: 0; padding: 5rem var(--gutter) 2rem; background: rgba(5,8,12,.98); height: 100svh; transform: translateX(100%); transition: transform .35s ease; border-left: 1px solid var(--line); }
  .nav__links.open { transform: none; }
  .nav__links a { font-size: 1.1rem; padding: 1rem 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav__cta { border: 1px solid var(--cyan-dim); margin-top: 1rem; }
  .nav__social { margin-left: auto; margin-right: .4rem; }
  .nav__toggle { display: block; z-index: 600; }
  .nav__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav__toggle.open span:nth-child(2) { opacity: 0; }
  .nav__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

@media (max-width: 640px) {
  body { font-size: 15px; }
  .nav__social { gap: .75rem; }
  .videos, .store__grid { grid-template-columns: 1fr; }
  .single { flex-direction: column; align-items: flex-start; }
  .hero { padding-top: 6rem; }
  .show { grid-template-columns: 1fr; gap: .5rem; }
  .show__cta { justify-self: start; }
}

/* ================= REDUCED MOTION ================= */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto; }
  .boot__ring { animation: none; }
  .reveal { opacity: 1; transform: none; }
}
