/* Breathe Music Records - Static v1 (Cloudflare Pages)
   Design: nocturnal greenhouse (botanical + underground)
   Notes: small radius, no pill buttons, no orange+green gradients.
*/

:root{
  --hero-image: none;
  --hero-pos: 50% 40%;
  --hero-opacity: .78;
  --bg: #0b0d12;
  --panel: #0f121a;
  --panel2: #111522;
  --ink: #e9eef7;
  --muted: #97a5b6;
  --line: rgba(255,255,255,.08);
  --edge: 1px solid var(--line);
  --accent: #e6c45a;       /* brass/gold */
  --accent2: #b15cff;      /* violet */
  --accent-rgb: 230,196,90;
  --accent2-rgb: 177,92,255;
  --shadow: 0 18px 40px rgba(0,0,0,.45);
  --radius: 8px;
  --wrap: min(1140px, 92vw);
  --mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: var(--sans);
  color:var(--ink);
    background: var(--bg);
  overflow-x:hidden;
}


/* Mobile sanity (global) */
img, video, canvas {max-width:100%; height:auto;}
iframe{max-width:100%;}
/* Prevent long strings from forcing horizontal scroll */
p, a, li, code, pre {overflow-wrap:anywhere; word-break:break-word;}
.embed{display:block;}


/* Subtle grain */
body:before{
  content:"";
  position:fixed; inset:0;
  background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.06'/%3E%3C/svg%3E");
  pointer-events:none;
  mix-blend-mode:overlay;
  opacity:.55;
}

/* Botanical linework (very faint) */
.bg-botanical{
  position:fixed; inset:-20vh -10vw;
  pointer-events:none;
  opacity:.10;
  transform: rotate(-7deg);
  background-image:url("data:image/svg+xml,%3Csvg%20xmlns%3D%27http%3A//www.w3.org/2000/svg%27%20width%3D%271400%27%20height%3D%27900%27%20viewBox%3D%270%200%201400%20900%27%3E%0A%3Cg%20fill%3D%27none%27%20stroke%3D%27rgba%28230%2C196%2C90%2C0.22%29%27%20stroke-width%3D%271%27%3E%0A%3Cpath%20d%3D%27M70%20720c140-190%20290-290%20470-330%20180-40%20360-10%20540%2090%20110%2060%20210%20140%20300%20240%27/%3E%0A%3Cpath%20d%3D%27M210%20830c130-150%20270-230%20430-250%20170-20%20350%2020%20540%20120%27/%3E%0A%3Cpath%20d%3D%27M120%20260c120%20140%20260%20210%20420%20210%20180%200%20360-80%20540-240%2080-70%20150-150%20210-240%27/%3E%0A%3Cpath%20d%3D%27M340%20120c60%2090%20130%20150%20210%20180%2090%2034%20200%2034%20330%200%20120-32%20230-86%20330-160%27/%3E%0A%3C/g%3E%0A%3C/svg%3E");
  background-repeat:no-repeat;
  background-size: cover;
}


a{color:inherit; text-decoration:none}
a:hover{color:var(--ink)}
small{color:var(--muted)}
.wrap{width:var(--wrap); margin:0 auto}
.topbar{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,13,18,.55);
  border-bottom: var(--edge);
}
.topbar .inner{
  display:flex; align-items:center; justify-content:space-between;
  padding:14px 0;
  gap:16px;
}

.topbar.scrolled{
  background: rgba(11,13,18,.78);
}
.topbar.scrolled .inner{padding:10px 0;}
@media (max-width: 900px){
  .topbar.scrolled .inner{padding:8px 0;}
}

.brand{
  display:flex; align-items:center; gap:10px;
}
.brand .mark{
  width:34px; height:34px; border-radius:10px;
  border: var(--edge);
  display:grid; place-items:center;
    background: rgba(255,255,255,.02);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
}
.brand .mark svg{width:18px; height:18px}
.brand .name{font-weight:650; letter-spacing:.2px}
.nav{
  display:flex; flex-wrap:wrap;
  gap:10px;
  align-items:center;
  justify-content:flex-end;
}
.nav a{
  padding:8px 10px;
  border-radius:8px;
  border:1px solid transparent;
  color:var(--muted);
  font-size:14px;
}
.nav a:hover{
  border-color: var(--line);
  color: var(--ink);
  background: rgba(255,255,255,.02);
}
.nav .cta{
  color: var(--ink);
  border-color: rgba(var(--accent-rgb),.30);
  background: rgba(var(--accent-rgb),.08);
}
.nav .cta.ghost{
  border-color: rgba(233,238,247,.15);
  background: rgba(255,255,255,.03);
}


/* Hero imagery (rotating via JS) */
.hero, .profile-hero{
  position: relative;
  overflow: hidden;
}
.hero.has-hero::before,
.profile-hero.has-hero::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--hero-image);
  background-size: cover;
  background-position: var(--hero-pos);
  transform: scale(1.04);
  filter: saturate(1.08) contrast(1.06);
  opacity: var(--hero-opacity);
}
.hero.has-hero::after,
.profile-hero.has-hero::after{
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(900px 500px at 20% 10%, rgba(0,0,0,.08), rgba(0,0,0,.55) 55%, rgba(0,0,0,.78) 100%),
    linear-gradient(180deg, rgba(11,13,18,.36), rgba(11,13,18,.92) 70%);
  pointer-events:none;
}
.hero .wrap,
.profile-hero .wrap{position:relative; z-index:1}
.hero{
  padding: 84px 0 34px;
  min-height: clamp(420px, 52vh, 560px);
  display:flex;
  align-items:flex-end;
}
.profile-hero{
  padding: 54px 0 18px;
  min-height: clamp(220px, 32vh, 320px);
  display:flex;
  align-items:flex-end;
}
@media (max-width: 900px){
  .hero{padding: 72px 0 28px}
  .profile-hero{padding: 48px 0 16px}
}
.kicker{
  font-family: var(--mono);
  color: rgba(var(--accent-rgb),.92);
  font-size:12px;
  letter-spacing:.14em;
  text-transform:uppercase;
}
.h1{
  margin:10px 0 10px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1.03;
  letter-spacing: -0.02em;
}
.lede{
  max-width: 62ch;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}
.actions{
  display:flex; flex-wrap:wrap; gap:10px;
  margin-top:18px;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  padding:11px 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color: var(--ink);
  font-weight: 600;
  font-size:14px;
  box-shadow: none;
}
.btn:hover{
  border-color: rgba(var(--accent-rgb),.35);
  background: rgba(var(--accent-rgb),.06);
}
.btn.primary{
  border-color: rgba(var(--accent-rgb),.38);
  background: rgba(var(--accent-rgb),.09);
}
.badges{
  margin-top:14px;
  display:flex; flex-wrap:wrap; gap:8px;
}
.badge{
  font-family: var(--mono);
  font-size:12px;
  color: rgba(233,238,247,.88);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,18,26,.65);
  padding:6px 10px;
  border-radius: 12px; /* badges can be rounded; not buttons */
}
.section{padding:18px 0 42px}
.grid{
  display:grid;
  grid-template-columns: repeat(12, 1fr);
  gap:14px;
}
.card{
  border: var(--edge);
  background: rgba(15,18,26,.72);
  box-shadow: var(--shadow);
  border-radius: 14px;
  overflow:hidden;
}
.card .head{
  padding:14px 14px 0;
}
.card .body{
  padding: 14px;
}
.card .title{
  font-size:16px;
  font-weight:650;
  margin:0;
}
.card .meta{
  margin-top:6px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.5;
}
.hr{height:1px; background: var(--line); margin:14px 0}

.event-card{
  grid-column: span 12;
  position:relative;
}
.event-card:after{
  content:"";
  position:absolute; inset:0;
  pointer-events:none;
  background:
    radial-gradient(600px 220px at 30% 0%, rgba(var(--accent-rgb),.12), transparent 60%),
    radial-gradient(520px 260px at 90% 20%, rgba(var(--accent2-rgb),.10), transparent 62%);
}
.event-card .inner{
  position:relative;
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:14px;
}
@media (max-width: 900px){
  .event-card .inner{grid-template-columns: 1fr}
}
.timetable{
  font-family: var(--mono);
  font-size: 12.5px;
  color: rgba(233,238,247,.90);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(11,13,18,.35);
  border-radius: 12px;
  padding: 10px 12px;
}
.timetable .row{
  display:flex; justify-content:space-between;
  gap:10px;
  padding:6px 0;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.timetable .row:last-child{border-bottom:0}
.timetable .time{color: rgba(var(--accent-rgb),.82)}
.timetable .act{color: rgba(233,238,247,.95)}

.col-7{grid-column: span 7}
.col-5{grid-column: span 5}
.col-6{grid-column: span 6}
.col-4{grid-column: span 4}
.col-12{grid-column: span 12}
@media (max-width: 900px){
  .col-7,.col-5,.col-6,.col-4{grid-column: span 12}
}

.embed{
  width:100%;
  border: 1px solid rgba(255,255,255,.10);
  border-radius: 14px;
  overflow:hidden;
  background: rgba(0,0,0,.25);
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 900px){
  .split{grid-template-columns: 1fr}
}

.h2{
  font-size: clamp(22px, 2.6vw, 32px);
  margin: 10px 0 8px;
}
.tags{
  display:flex; flex-wrap:wrap; gap:8px;
  margin-top:10px;
}
.tag{
  font-family: var(--mono);
  font-size:12px;
  color: rgba(233,238,247,.86);
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  padding: 6px 10px;
  border-radius: 12px;
}

details{
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(11,13,18,.28);
  border-radius: 14px;
  padding: 10px 12px;
}
details summary{
  cursor:pointer;
  list-style:none;
  font-weight:650;
  color: rgba(233,238,247,.92);
}
details summary::-webkit-details-marker{display:none}
details .content{
  margin-top:10px;
  color: var(--muted);
  line-height: 1.6;
}
.content h3{
  margin: 18px 0 8px;
  color: rgba(233,238,247,.92);
  font-size: 14.5px;
}
.content p{margin:8px 0}

.footer{
  padding: 28px 0 38px;
  border-top: var(--edge);
  background: rgba(11,13,18,.55);
}
.footer .cols{
  display:grid; grid-template-columns: 1.2fr .8fr;
  gap:14px;
}
@media (max-width: 900px){
  .footer .cols{grid-template-columns: 1fr}
}
.footer a{color: var(--muted)}
.footer a:hover{color: var(--ink)}
.note{
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.5;
}


/* Featured sets (homepage) */
.set-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:14px;
}
@media (max-width: 900px){
  .set-grid{grid-template-columns: 1fr}
}
.set{
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(11,13,18,.18);
  border-radius: 14px;
  padding: 12px;
}
.set-head{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin-bottom:10px;
}
.set-title{
  font-weight:650;
  letter-spacing:.2px;
}
.set-meta{
  font-family: var(--mono);
  font-size: 12px;
  color: rgba(233,238,247,.72);
}

.embed-fallback{color: var(--muted); font-size: 14px; padding: 14px 12px; border: 1px solid rgba(255,255,255,.08); border-radius: 10px; background: rgba(255,255,255,.02);}
.embed-fallback a{color: var(--ink); text-decoration: underline;}



/* Waffle button (BQA trigger) */
.topbar .left{display:flex; align-items:center; gap:10px;}
.waffle{
  width:38px; height:38px;
  border-radius:10px;
  border: var(--edge);
  background: rgba(255,255,255,.02);
  display:grid; place-items:center;
  cursor:pointer;
}
.waffle:hover{
  background: rgba(var(--accent-rgb),.08);
  border-color: rgba(var(--accent-rgb),.30);
}
.waffle svg{width:18px; height:18px;}
.waffle .dot{fill: rgba(233,238,247,.85);}
.waffle:hover .dot{fill: rgba(233,238,247,.95);}

/* BQA Modal (iframe) */
html.modal-open{overflow:hidden;}
.bqa-modal{
  position:fixed; inset:0;
  z-index:999;
}
.bqa-modal__backdrop{
  position:absolute; inset:0;
  background: rgba(0,0,0,.65);
  backdrop-filter: blur(8px);
}
.bqa-modal__panel{
  position:absolute;
  inset: 12px;
  max-width: 1180px;
  margin: 0 auto;
  left: 0; right: 0;
  border: var(--edge);
  border-radius: 14px;
  background: rgba(15,18,26,.92);
  box-shadow: 0 20px 70px rgba(0,0,0,.55);
  overflow:hidden;
  display:flex;
  flex-direction:column;
}
@media (min-width: 900px){
  .bqa-modal__panel{ inset: 24px; }
}
.bqa-modal__head{
  display:flex; align-items:center; justify-content:space-between;
  padding: 12px 14px;
  border-bottom: var(--edge);
  background: rgba(17,21,34,.6);
}
.bqa-modal__title{
  font-weight:650;
  letter-spacing:.2px;
}
.bqa-modal__close{
  width:36px; height:36px;
  border-radius:10px;
  border: var(--edge);
  background: rgba(255,255,255,.02);
  cursor:pointer;
  display:grid; place-items:center;
  color: var(--ink);
}
.bqa-modal__close:hover{
  background: rgba(255,255,255,.05);
  border-color: rgba(233,238,247,.18);
}
.bqa-modal__frame{
  flex: 1;
  width: 100%;
  border: 0;
  background: #0b0d12;
}
.bqa-modal__foot{
  padding: 10px 14px;
  border-top: var(--edge);
  display:flex;
  gap: 10px;
  align-items:center;
  justify-content:space-between;
  color: var(--muted);
  font-size: 13px;
}
.bqa-modal__foot a{
  color: var(--ink);
  border-bottom: 1px solid rgba(var(--accent-rgb),.35);
}
.embed-fallback-note{
  margin-top: 8px;
  font-size: 13px;
  color: var(--muted);
}

/* Imprints (homepage) */
.section-head{margin-bottom:12px}
.imprint-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 900px){
  .imprint-grid{grid-template-columns: 1fr}
}
.imprint-card{
  position:relative;
  border: var(--edge);
  border-radius: 16px;
  overflow:hidden;
  background: rgba(15,18,26,.68);
  box-shadow: var(--shadow);
  min-height: 210px;
  padding: 16px;
}
.imprint-card::before{
  content:"";
  position:absolute; inset:0;
  background-image: var(--card-bg);
  background-size: cover;
  background-position: 50% 45%;
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.06);
  opacity: .70;
}
.imprint-card::after{
  content:"";
  position:absolute; inset:0;
    background: rgba(11,13,18,.42);
}
.imprint-card .inner{position:relative; z-index:1}
.imprint-card .label{
  font-family: var(--mono);
  letter-spacing:.14em;
  text-transform:uppercase;
  font-size:11px;
  color: rgba(var(--accent-rgb),.92);
}
.imprint-card .name{
  font-size: 20px;
  font-weight: 720;
  margin-top: 10px;
  letter-spacing: -0.01em;
}
.imprint-card .desc{
  margin-top: 8px;
  color: rgba(233,238,247,.84);
  max-width: 44ch;
  line-height: 1.5;
  font-size: 13.5px;
}
.imprint-card .pillrow{
  margin-top: 12px;
  display:flex; flex-wrap:wrap; gap:8px;
}
.imprint-card .pill{
  font-family: var(--mono);
  font-size: 12px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
  color: rgba(233,238,247,.88);
  padding: 6px 10px;
  border-radius: 12px;
}

/* Event gallery */
.gallery-note{margin:-8px 0 14px;color:var(--muted);font-size:14px}
.gallery-grid{display:grid;gap:14px;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));align-items:stretch}
.gallery-item{position:relative;display:block;border-radius:var(--radius);overflow:hidden;border:1px solid var(--line);background:var(--panel-2);aspect-ratio:4/3;box-shadow:0 10px 30px rgba(0,0,0,.18)}
.gallery-item img{width:100%;height:100%;object-fit:cover;display:block;filter:saturate(1.05) contrast(1.05);transform:scale(1.001);transition:transform .25s ease,filter .25s ease}
.gallery-item:hover img{transform:scale(1.04);filter:saturate(1.15) contrast(1.1)}
.gallery-item:focus-visible{outline:2px solid var(--brand-2);outline-offset:2px}
.gallery-item--wide{aspect-ratio:16/9}
@media (min-width: 900px){.gallery-item--wide{grid-column:span 2}}


/* Overrides: remove hero shading overlays for extra vibrancy */
.hero.has-hero::after,
.profile-hero.has-hero::after{content:none !important;}

.event-card:after{content:none !important;}

.bg-botanical{display:none !important;}


/* Volna-inspired shell */
.layout{
  display:grid;
  grid-template-columns: 280px 1fr;
  min-height: 100vh;
}
.has-sidenav .wrap{ width: min(1120px, 92vw); }

.sidenav{
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  overscroll-behavior: contain;
  border-right: 1px solid rgba(255,255,255,.08);
  background: rgba(11,13,18,.92);
  backdrop-filter: blur(10px);
  display:flex;
  flex-direction: column;
}
.sidenav .side-inner{padding: 16px 14px; display:flex; flex-direction:column; gap:14px; min-height:100%;}
.sidenav .side-brand{display:flex; align-items:center; gap:10px; text-decoration:none; color:var(--ink);}
.sidenav .side-brand .mark{width:32px; height:32px; border-radius: 10px; border: 1px solid rgba(255,255,255,.10); background: rgba(255,255,255,.02); display:grid; place-items:center;}
.sidenav .side-brand .label{font-weight:740; letter-spacing:-0.01em;}
.sidenav .side-links{display:flex; flex-direction:column; gap:6px;}
.sidenav .side-links a{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  padding: 10px 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  color: rgba(233,238,247,.86);
  text-decoration:none;
  background: rgba(255,255,255,.00);
}
.sidenav .side-links a:hover{background: rgba(255,255,255,.03); border-color: rgba(255,255,255,.08);}
.sidenav .side-links a[aria-current="page"]{background: rgba(var(--accent-rgb),.10); border-color: rgba(var(--accent-rgb),.22); color: rgba(233,238,247,.95);}

.sidenav .side-cta{margin-top: 2px; display:grid; gap:8px;}
.sidenav .side-cta a{display:block; text-align:center;}

.sidenav .side-player{
  margin-top: auto;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(15,18,26,.65);
  border-radius: 14px;
  padding: 12px;
}
.sidenav .side-player .title{font-size: 12px; color: var(--muted); margin:0;}
.sidenav .side-player .track{margin:8px 0 10px; font-weight:650; line-height:1.2;}
.sidenav .side-player .controls{display:flex; gap:8px;}
.sidenav .side-player .controls .btn{flex:1; justify-content:center; padding:10px 10px;}

.maincol{min-width:0;}

/* Sticky header stays, but slim it down on desktop where sidebar is primary */
@media (min-width: 900px){
  .has-sidenav .topbar .nav{display:none !important;}
  .has-sidenav .nav-toggle{display:none;}
  .topbar{backdrop-filter: blur(10px);}
}

/* Mobile: sidebar becomes slide-out */
@media (max-width: 900px){
  .has-sidenav .topbar .nav{display:none !important;}
  .layout{grid-template-columns: 1fr;}
  .sidenav{position:fixed; left:0; top:0; bottom:0; width: 84vw; max-width: 340px; transform: translateX(-102%); transition: transform .25s ease; z-index: 90;}
  html.nav-open .sidenav{transform: translateX(0);}
  html.nav-open .nav-backdrop{opacity:1; pointer-events:auto;}
}
.nav-backdrop{position:fixed; inset:0; background: rgba(0,0,0,.55); opacity:0; pointer-events:none; transition: opacity .2s ease; z-index: 80;}
html.nav-open{overflow:hidden;}

.nav-toggle{
  width: 38px; height: 38px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.02);
  color: rgba(233,238,247,.92);
  display:grid; place-items:center;
  cursor:pointer;
}
.nav-toggle:hover{border-color: rgba(255,255,255,.16); background: rgba(255,255,255,.04);}


@media (max-width: 900px){
  .topbar .inner{padding: 10px 0;}
  .topbar .left{gap:8px;}
  .brand{min-width:0;}
  .brand .name{
    max-width: 44vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 420px){
  .brand .name{display:none;}
}

@media (max-width: 520px){
  .hero{min-height: 360px; padding: 64px 0 24px;}
  .profile-hero{min-height: 200px;}
}

/* Home hero carousel */
.hero-carousel{position:relative; overflow:hidden;}
.hero-carousel__slides{position:absolute; inset:0;}
.hero-carousel__slide{
  position:absolute; inset:0;
  background-position: 50% 38%;
  background-size: cover;
  opacity:0;
  transition: opacity .9s ease;
  filter: saturate(1.15) contrast(1.08);
}
.hero-carousel__slide.is-active{opacity:.92;}
.hero-carousel .wrap{position:relative; z-index:1;}
.hero-carousel__dots{position:absolute; left:50%; transform:translateX(-50%); bottom:16px; display:flex; gap:8px; z-index:2;}
.hero-carousel__dots .dot{
  width: 10px; height: 10px; border-radius: 10px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.04);
  cursor:pointer;
}
.hero-carousel__dots .dot.is-active{background: rgba(var(--accent-rgb),.72); border-color: rgba(var(--accent-rgb),.82);}
.hero .h1{ text-shadow: 0 14px 40px rgba(0,0,0,.55); }
.hero .lede{ text-shadow: 0 12px 30px rgba(0,0,0,.55); }

/* Parallax bands */
.parallax-band{
  height: 240px;
  background-image: var(--parallax-image);
  background-size: cover;
  background-position: 50% 45%;
  background-repeat:no-repeat;
  filter: saturate(1.12) contrast(1.05);
  border-top: 1px solid rgba(255,255,255,.08);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
@media (min-width: 900px){
  .parallax-band{background-attachment: fixed;}
}

/* Event flyer hero */
.event-flyer-hero{
  height: min(92vh, 980px);
  display:grid;
  place-items:center;
  background: var(--bg);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.event-flyer-hero__img{
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Reveal animations */
.reveal{opacity:0; transform: translateY(18px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.9,.2,1); transition-delay: var(--reveal-delay,0ms);}
.reveal.reveal--left{transform: translateX(-18px);}
.reveal.reveal--right{transform: translateX(18px);}
.reveal.reveal--zoom{transform: scale(.97);}
.reveal.is-in{opacity:1; transform: none;}

@media (prefers-reduced-motion: reduce){
  .reveal{opacity:1 !important; transform:none !important; transition:none !important;}
  .hero-carousel__slide{transition:none !important;}
  .sidenav{transition:none !important;}
  .nav-backdrop{transition:none !important;}
}

/* Readability without overlays */
.profile-hero .h1{ text-shadow: 0 14px 40px rgba(0,0,0,.55); }
.profile-hero .lede{ text-shadow: 0 12px 30px rgba(0,0,0,.55); }

/* Releases catalog grid */
.release-grid{display:grid;gap:14px;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));align-items:stretch}
.release-card{
  display:flex; flex-direction:column;
  border:1px solid var(--line); background:var(--panel-2);
  border-radius:var(--radius); overflow:hidden;
  color:inherit; text-decoration:none;
  transition: transform .2s ease, border-color .2s ease;
}
.release-card:hover{ transform: translateY(-2px); border-color: rgba(var(--accent-rgb), .48); }
.release-card__cover{
  aspect-ratio: 1 / 1; background-size:cover; background-position:center;
  background-color:#0b0d12;
}
.release-card__cover--placeholder{
  background-image: linear-gradient(135deg, rgba(var(--accent-rgb),.18), rgba(255,255,255,.04));
}
.release-card__body{ padding: 12px 14px 14px; display:flex; flex-direction:column; gap:4px; }
.release-card__title{ margin:0; font-weight:650; font-size:15px; }
.release-card__artist{ margin:0; color:var(--muted); font-size:13px; }
.release-card__meta{ margin-top:4px; display:flex; gap:6px; flex-wrap:wrap; }

.release-cover{ width:100%; height:auto; border-radius: var(--radius); display:block; }

/* Posts (Journal) grid */
.post-grid{display:grid;gap:14px;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));align-items:stretch}
.post-card{
  display:flex; flex-direction:column;
  border:1px solid var(--line); background:var(--panel-2);
  border-radius:var(--radius); overflow:hidden;
  color:inherit; text-decoration:none;
  transition: transform .2s ease, border-color .2s ease;
}
.post-card:hover{ transform: translateY(-2px); border-color: rgba(var(--accent-rgb), .48); }
.post-card__cover{
  aspect-ratio: 16 / 9; background-size:cover; background-position:center;
  background-color:#0b0d12;
}
.post-card__body{ padding: 14px 16px 16px; display:flex; flex-direction:column; gap:6px; }
.post-card__title{ margin:0; font-size:18px; line-height:1.25; }

/* Prose (post body html) — keep modest, dark-theme-friendly */
.prose{ line-height:1.6; }
.prose p{ margin: 0 0 1em; }
.prose h2{ margin: 1.6em 0 .5em; font-size:22px; }
.prose h3{ margin: 1.4em 0 .4em; font-size:18px; }
.prose ul, .prose ol{ margin: 0 0 1em 1.2em; }
.prose li{ margin: .25em 0; }
.prose code{ background: rgba(255,255,255,.06); padding: 1px 5px; border-radius: 4px; font-size: .92em; }
.prose pre{ background:#0b0d12; border:1px solid var(--line); padding:12px; border-radius:6px; overflow:auto; }
.prose blockquote{ margin: 0 0 1em; padding: 8px 14px; border-left: 3px solid rgba(var(--accent-rgb),.6); color: var(--muted); }
.prose a{ color: var(--accent); }
