/* ============================================================
   Blue Heron Records — styles
   Palette taken from the logo: deep navy, moonlight cream,
   slate-blue heron, warm taupe.  (grey + shades of blue)
   ============================================================ */
:root {
  --bg:        #070b1c;   /* deep navy (logo background ~#000120, lifted) */
  --bg-2:      #0b1228;
  --bg-3:      #0f1838;
  --bg-4:      #16224a;   /* raised / hover */
  --line:      #1d2a4d;
  --line-2:    #2a3b66;

  --heron:     #6f93b0;   /* slate-blue heron */
  --heron-deep:#44617d;
  --heron-light:#a8c4d8;

  --moon:      #f3f7ef;   /* moonlight cream (logo moon) */
  --cream:     #eef3f7;   /* primary text */
  --soft:      #c4d2de;
  --muted:     #93a6bb;
  --muted-2:   #828fa6;   /* lifted for WCAG AA on dark panels (was #6c7f96) */

  --taupe:     #5a4a44;   /* warm band ("RECORDS") */
  --sand:      #cdbcae;   /* warm accent text */

  --radius:    16px;
  --radius-sm: 10px;
  --radius-lg: 24px;
  --shadow:    0 18px 40px -22px rgba(0,0,0,.75);
  --shadow-lg: 0 40px 80px -28px rgba(0,0,0,.85);
  --maxw:      1160px;
  --ease:      cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  color: var(--soft);
  background: var(--bg);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
body::before {
  content: ""; position: fixed; inset: 0; z-index: 1; pointer-events: none; opacity: .03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1, h2, h3, h4 {
  font-family: "Fraunces", Georgia, "Times New Roman", serif;
  line-height: 1.1; color: var(--cream); margin: 0 0 .5em; letter-spacing: -.01em; font-weight: 600;
}
p { margin: 0 0 1rem; }
a { color: var(--heron-light); text-decoration: none; }
img { max-width: 100%; display: block; }
strong { color: var(--cream); font-weight: 600; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }
.section { padding: clamp(58px, 8vw, 108px) 0; position: relative; z-index: 2; }

.eyebrow {
  text-transform: uppercase; letter-spacing: .24em; font-size: .74rem; font-weight: 600;
  color: var(--sand); margin: 0 0 1rem; font-family: "Inter", sans-serif;
}
.section-head { max-width: 700px; margin: 0 auto clamp(38px, 5vw, 58px); text-align: center; }
.section-head h2 { font-size: clamp(2rem, 4.6vw, 3.1rem); }
.section-lead { color: var(--muted); font-size: 1.08rem; margin-bottom: 0; }

/* ---------- Heron mark (cropped logo) ---------- */
.brand-mark { display: block; border-radius: 50%; object-fit: cover; background: var(--bg-3); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-family: "Inter", sans-serif; font-weight: 600; font-size: .96rem; line-height: 1;
  padding: .85em 1.6em; border-radius: 999px; border: 1.5px solid transparent; cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.btn .ico { width: 1.15em; height: 1.15em; }
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #ffffff 0%, var(--moon) 45%, #cdd9d2 100%);
  color: #0c1630; box-shadow: 0 14px 32px -14px rgba(243,247,239,.45);
}
.btn-primary:hover { box-shadow: 0 20px 42px -14px rgba(243,247,239,.6); }
.btn-outline { background: transparent; color: var(--cream); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--heron); color: var(--heron-light); background: rgba(111,147,176,.1); }
.btn-heron { background: linear-gradient(135deg, var(--heron) 0%, var(--heron-deep) 100%); color: #06101f; }
.btn-heron:hover { box-shadow: 0 18px 36px -14px rgba(111,147,176,.6); }
.btn-sm { font-size: .86rem; padding: .62em 1.15em; }
.btn-lg { font-size: 1.04rem; padding: 1em 1.9em; }
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header { position: fixed; inset: 0 0 auto 0; z-index: 50; padding: 16px 0; transition: background .3s var(--ease), box-shadow .3s var(--ease), padding .3s var(--ease); }
.site-header.scrolled { background: rgba(6,9,20,.9); backdrop-filter: blur(12px); box-shadow: 0 8px 30px -18px rgba(0,0,0,.9); padding: 9px 0; border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: inline-flex; align-items: center; gap: .6em; }
.brand .brand-mark { width: 40px; height: 40px; border: 1px solid var(--line-2); }
.brand-text { font-family: "Fraunces", serif; font-weight: 600; font-size: 1.22rem; color: var(--cream); display: flex; flex-direction: column; line-height: 1; }
.brand-text strong { font-family: "Inter", sans-serif; font-weight: 600; font-size: .5em; letter-spacing: .34em; text-transform: uppercase; color: var(--sand); margin-top: .4em; }
.nav { display: flex; gap: 26px; }
.nav a { color: var(--soft); font-weight: 500; font-size: .95rem; position: relative; padding: 4px 0; font-family: "Inter", sans-serif; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0; background: var(--heron); transition: width .25s var(--ease); }
.nav a:hover { color: var(--cream); }
.nav a:hover::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 12px; }
.nav-toggle { display: none; flex-direction: column; align-items: center; justify-content: center; gap: 5px; width: 44px; height: 44px; background: none; border: 0; cursor: pointer; padding: 0; border-radius: 8px; }
.nav-toggle span { width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: .25s 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); }

/* ---------- Hero ---------- */
.hero { position: relative; min-height: 100svh; display: flex; align-items: center; overflow: hidden; background: radial-gradient(120% 90% at 50% 8%, #0e1838 0%, var(--bg) 60%); text-align: center; }
.hero-glow { position: absolute; inset: 0; background: radial-gradient(60% 45% at 50% 30%, rgba(168,196,216,.14), transparent 70%); z-index: 1; }
.hero-content { position: relative; z-index: 3; max-width: 820px; margin: 0 auto; padding: 120px 0 96px; }
.hero-logo { width: min(500px, 84vw); height: auto; margin: 0 auto 4px; filter: drop-shadow(0 24px 60px rgba(0,0,0,.55)); }
.hero-disc { position: relative; width: min(400px, 72vw); aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin: 0 auto 8px; background: #eef2ec; filter: drop-shadow(0 22px 56px rgba(0,0,0,.62)); }
.hero-disc video, .hero-disc img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-disc::after { content: ""; position: absolute; inset: 0; border-radius: 50%; pointer-events: none; box-shadow: inset 0 0 0 6px rgba(255,255,255,.6), 0 0 0 1px rgba(168,196,216,.45); }
.hero .eyebrow { color: var(--sand); margin-top: 26px; }
.hero h1 { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }  /* logo carries the name; keep h1 for a11y */
.hero-sub { font-size: clamp(1.08rem, 2.1vw, 1.3rem); max-width: 600px; margin: 0 auto 2rem; color: var(--cream); opacity: .92; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero-tag { margin: 1.7rem 0 0; font-family: "Inter", sans-serif; text-transform: uppercase; letter-spacing: .3em; font-size: .76rem; color: var(--heron-light); font-weight: 600; }
.scroll-cue { position: absolute; left: 50%; bottom: 24px; transform: translateX(-50%); width: 26px; height: 42px; border: 2px solid rgba(255,255,255,.35); border-radius: 14px; z-index: 3; }
.scroll-cue span { position: absolute; left: 50%; top: 8px; width: 4px; height: 8px; margin-left: -2px; background: var(--moon); border-radius: 2px; animation: scrollDot 1.8s infinite; }
@keyframes scrollDot { 0% { opacity: 0; transform: translateY(0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translateY(12px); } 100% { opacity: 0; } }

/* ---------- Quick facts ---------- */
.facts { background: var(--bg-3); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: clamp(32px, 4.5vw, 50px) 0; }
.facts-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.fact { padding: 4px; position: relative; }
.fact-num { display: block; font-family: "Fraunces", serif; font-weight: 600; font-size: clamp(1.7rem, 3.4vw, 2.5rem); line-height: 1; color: var(--moon); }
.fact-label { display: block; margin-top: 10px; color: var(--muted); font-size: .9rem; }
@media (min-width: 721px) { .facts-grid .fact:not(:last-child)::after { content: ""; position: absolute; right: -12px; top: 14%; height: 72%; width: 1px; background: var(--line-2); } }

/* ---------- Split media sections (Get to Know Us / Our Home) ---------- */
.split { }
.split-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.split.reverse .split-grid { grid-template-columns: 1fr 1.05fr; }
.split.reverse .split-media { order: 2; }
.split-media { position: relative; }
.split-media img, .split-media video { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; display: block; object-fit: cover; border: 1px solid var(--line); }
.split-media img.studio-shot { aspect-ratio: 3 / 2; height: auto; }
.split-media::after { content: ""; position: absolute; inset: auto auto -18px -18px; width: 55%; height: 55%; border-radius: var(--radius); background: linear-gradient(135deg, var(--heron-deep), var(--taupe)); z-index: -1; opacity: .55; }
.split-text h2 { font-size: clamp(1.9rem, 3.8vw, 2.7rem); }
.split-text p { color: var(--soft); }
.callout { margin-top: 1.4rem; padding: 18px 20px; border-left: 3px solid var(--heron); background: var(--bg-2); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; color: var(--muted); }
.gtku { background: var(--bg-2); }
.home { background: var(--bg); }

/* ---------- Founder spotlight ---------- */
.founder { background: radial-gradient(110% 90% at 18% 8%, #10193a 0%, var(--bg) 60%); }
.founder-grid { display: grid; grid-template-columns: 1fr 360px; gap: clamp(32px, 5vw, 64px); align-items: center; }
.founder-text h2 { font-size: clamp(2.2rem, 4.8vw, 3.3rem); margin-bottom: .08em; }
.founder-role { color: var(--sand); text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; font-weight: 600; margin: 0 0 1.2rem; font-family: "Inter", sans-serif; }
.founder-text p { color: var(--soft); font-size: 1.05rem; }
.founder-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 1.6rem; }
.founder-media { position: relative; }
.founder-media img { width: 100%; border-radius: var(--radius); border: 1px solid var(--line-2); box-shadow: var(--shadow-lg); }
.founder-media::after { content: ""; position: absolute; inset: auto auto -16px -16px; width: 52%; height: 52%; border-radius: var(--radius); background: linear-gradient(135deg, var(--heron-deep), var(--taupe)); z-index: -1; opacity: .5; }
@media (max-width: 820px) {
  .founder-grid { grid-template-columns: 1fr; }
  .founder-media { order: -1; max-width: 300px; margin: 0 auto; }
}

/* ---------- Story ---------- */
.story { background: var(--bg-2); }
.story-body { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 56px); max-width: 980px; margin: 0 auto; }
.story-col p { color: var(--soft); font-size: 1.05rem; }
.story-col:first-child p:first-child::first-letter { font-family: "Fraunces", serif; font-size: 3.4rem; font-weight: 600; line-height: .8; float: left; margin: .08em .12em 0 0; color: var(--heron-light); }
.story-thanks { color: var(--muted) !important; font-size: .98rem !important; font-style: italic; }

/* ---------- Services ---------- */
.services { background: var(--bg); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 28px; transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s, background .3s; }
.card:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow); background: var(--bg-3); }
.card-ico { width: 54px; height: 54px; border-radius: 14px; display: grid; place-items: center; margin-bottom: 20px; background: linear-gradient(135deg, rgba(111,147,176,.2), rgba(68,97,125,.1)); border: 1px solid var(--line-2); }
.card-ico svg { width: 28px; height: 28px; fill: none; stroke: var(--heron-light); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card h3 { font-size: 1.28rem; }
.card p { color: var(--muted); margin: 0; font-size: .98rem; }
.card-cta { background: linear-gradient(150deg, var(--bg-3), var(--bg-4)); border-color: var(--line-2); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.card-cta h3 { color: var(--cream); }
.card-cta p { margin-bottom: 18px; color: var(--soft); }

/* ---------- Artists ---------- */
.artists { background: var(--bg-2); }
.subhead { text-align: center; font-size: 1.35rem; color: var(--cream); margin: 8px 0 24px; }
.subhead:not(:first-child) { margin-top: 56px; }
.artist-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.artist-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.artist-card { display: flex; flex-direction: column; background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; color: inherit; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.artist-card:hover { transform: translateY(-5px); border-color: var(--heron-deep); box-shadow: var(--shadow); }
.artist-photo { aspect-ratio: 4 / 3; background: var(--bg-3); display: block; overflow: hidden; }
.artist-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.artist-card:hover .artist-photo img { transform: scale(1.05); }
.artist-photo.placeholder { display: grid; place-items: center; background: radial-gradient(120% 120% at 50% 15%, var(--bg-4), var(--bg-3)); }
.artist-photo.placeholder img { width: 64%; height: auto; aspect-ratio: auto; opacity: .92; transform: none; }
.artist-body { padding: 18px 20px 20px; flex: 1; display: flex; flex-direction: column; }
.artist-body h3 { font-size: 1.22rem; margin-bottom: .12em; }
.artist-role { color: var(--sand); font-size: .76rem; text-transform: uppercase; letter-spacing: .12em; font-weight: 600; margin: 0 0 .6rem; font-family: "Inter", sans-serif; }
.artist-body p { color: var(--muted); margin: 0 0 14px; font-size: .94rem; }
.artist-link { margin-top: auto; color: var(--heron-light); font-weight: 600; font-family: "Inter", sans-serif; font-size: .9rem; }
.artist-card:hover .artist-link { color: var(--moon); }

/* ---------- House Band ---------- */
.houseband { background: var(--bg); }
.houseband-intro { max-width: 760px; margin: 0 auto clamp(34px,4vw,48px); text-align: center; color: var(--soft); }
.band-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.band { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 22px 20px; transition: transform .3s var(--ease), border-color .3s, background .3s; }
.band:hover { transform: translateY(-4px); border-color: var(--line-2); background: var(--bg-3); }
.band h4 { font-size: 1.06rem; margin-bottom: .25em; color: var(--cream); }
.band p { margin: 0; color: var(--muted); font-size: .9rem; }
.band-free { display: inline-block; margin-top: 10px; font-family: "Inter", sans-serif; font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--heron-light); background: rgba(111,147,176,.14); border: 1px solid rgba(111,147,176,.3); padding: .25em .6em; border-radius: 999px; }
.houseband-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 40px; }

/* ---------- Shows ---------- */
.shows { background: var(--bg-2); }
.shows-inner { max-width: 760px; margin: 0 auto; }
.show-row { display: flex; align-items: center; gap: 20px; padding: 18px 20px; border: 1px solid var(--line); border-radius: var(--radius-sm); background: var(--bg); margin-bottom: 12px; }
.show-date { font-family: "Fraunces", serif; color: var(--heron-light); font-weight: 600; min-width: 92px; text-align: center; line-height: 1.1; }
.show-date span { display: block; font-family: "Inter", sans-serif; font-size: .72rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted-2); }
.show-info { flex: 1; }
.show-info h4 { margin: 0 0 .15em; font-size: 1.05rem; }
.show-info p { margin: 0; color: var(--muted); font-size: .92rem; }
.shows-empty { text-align: center; color: var(--muted); padding: 24px; border: 1px dashed var(--line-2); border-radius: var(--radius); }
.shows-list { display: grid; gap: 12px; margin-bottom: 22px; }
.shows-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 18px; }
.show-ticket { align-self: center; flex: none; font-family: "Inter", sans-serif; font-weight: 600; font-size: .85rem; color: var(--heron-light); border: 1px solid var(--line-2); padding: .6em 1.1em; border-radius: 999px; white-space: nowrap; text-decoration: none; }
.show-ticket:hover { border-color: var(--heron); color: var(--moon); }

/* ---------- Studio Tour ---------- */
.studio { background: var(--bg); }
.rooms { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.room { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; transition: transform .3s var(--ease), border-color .3s, box-shadow .3s; }
.room:hover { transform: translateY(-5px); border-color: var(--line-2); box-shadow: var(--shadow); }
.room-media { padding: 0; border: 0; background: var(--bg-3); cursor: pointer; aspect-ratio: 4 / 3; overflow: hidden; position: relative; display: block; }
.room-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.room-media::after { content: "\\2922"; position: absolute; right: 12px; bottom: 10px; width: 32px; height: 32px; border-radius: 50%; background: rgba(6,9,20,.7); color: var(--cream); display: grid; place-items: center; font-size: 1rem; opacity: 0; transition: opacity .25s; }
.room:hover .room-media img { transform: scale(1.06); }
.room:hover .room-media::after { opacity: 1; }
.room-media:focus-visible { outline: 3px solid var(--heron-light); outline-offset: -3px; }
.room-text { padding: 20px 22px 24px; }
.room-text h3 { font-size: 1.2rem; display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; }
.room-size { font-family: "Inter", sans-serif; font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--sand); background: rgba(205,188,174,.1); border: 1px solid rgba(205,188,174,.28); padding: .2em .6em; border-radius: 999px; }
.room-text p { color: var(--muted); margin: 0; font-size: .95rem; }

/* ---------- Gear ---------- */
.gear { background: var(--bg-2); }
.gear-layout { display: grid; grid-template-columns: 1fr 300px; gap: clamp(28px, 4vw, 52px); align-items: start; }
.gear-group-title { display: flex; align-items: center; gap: 12px; font-size: 1.5rem; margin: 0 0 16px; color: var(--cream); }
.gear-group-title:not(:first-child) { margin-top: 40px; }
.gear-ico { width: 26px; height: 26px; fill: none; stroke: var(--heron-light); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }
.gear-acc { display: grid; gap: 10px; }
.gear-acc details { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius-sm); padding: 0 20px; }
.gear-acc summary { cursor: pointer; list-style: none; padding: 16px 0; font-family: "Fraunces", serif; font-weight: 600; font-size: 1.08rem; color: var(--cream); display: flex; justify-content: space-between; align-items: center; gap: 14px; }
.gear-acc summary::-webkit-details-marker { display: none; }
.gear-acc summary::after { content: "+"; font-size: 1.5rem; color: var(--heron-light); line-height: 1; flex: none; transition: transform .25s var(--ease); }
.gear-acc details[open] summary::after { transform: rotate(45deg); }
.gear-acc ul { margin: 0 0 18px; padding: 0; list-style: none; display: grid; gap: 10px; }
.gear-acc li { color: var(--muted); font-size: .96rem; padding-left: 20px; position: relative; line-height: 1.55; }
.gear-acc li::before { content: ""; position: absolute; left: 2px; top: .62em; width: 7px; height: 7px; border-radius: 50%; background: var(--heron-deep); }
.gear-aside { position: sticky; top: 90px; display: grid; gap: 16px; }
.gear-aside img { border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow); width: 100%; }

/* ---------- Listen ---------- */
.listen { background: var(--bg); }
.listen-card { max-width: 880px; margin: 0 auto; display: grid; grid-template-columns: 150px 1fr; gap: clamp(20px, 3vw, 40px); align-items: center; background: linear-gradient(135deg, var(--bg-3), var(--bg-2)); border: 1px solid var(--line-2); border-radius: var(--radius-lg); padding: clamp(24px, 3.5vw, 40px); }
.listen-art { aspect-ratio: 1; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); }
.listen-art img { width: 100%; height: 100%; object-fit: cover; }
.listen-record { border-radius: 50%; border-color: var(--line-2); background: radial-gradient(circle at 50% 50%, #17263f 0%, #0a1326 58%, #060a16 100%); position: relative; }
.listen-record img { object-fit: contain; padding: 5%; animation: bhrspin 16s linear infinite; }
.listen-record::after { content: ""; position: absolute; left: 50%; top: 50%; width: 9%; height: 9%; transform: translate(-50%, -50%); border-radius: 50%; background: #0a1326; border: 1px solid var(--line-2); }
@keyframes bhrspin { to { transform: rotate(360deg); } }
.listen-label { color: var(--sand); font-size: .76rem; text-transform: uppercase; letter-spacing: .18em; font-weight: 600; margin-bottom: .5rem; }
.listen-body h3 { font-size: clamp(1.4rem, 3vw, 1.9rem); margin-bottom: .3em; }
.listen-body p { color: var(--muted); }
.listen-player { width: 100%; margin: 14px 0 16px; }
.listen-soon { display: flex; align-items: center; gap: .5em; width: 100%; margin: 14px 0 16px; padding: .85em 1.1em; border: 1px dashed var(--line-2); border-radius: var(--radius-sm); background: var(--bg-2); color: var(--muted); font-size: .92rem; }
.listen-soon span { color: var(--heron-light); font-size: 1.1em; }
.listen-links { display: flex; flex-wrap: wrap; gap: 10px; }
.chip { display: inline-flex; align-items: center; justify-content: center; gap: .4em; min-height: 40px; font-family: "Inter", sans-serif; font-size: .82rem; font-weight: 600; color: var(--heron-light); background: rgba(111,147,176,.12); border: 1px solid rgba(111,147,176,.3); padding: .5em 1.1em; border-radius: 999px; }
.chip:hover { background: rgba(111,147,176,.2); color: var(--moon); }

/* ---------- Partners ---------- */
.partners { background: var(--bg-2); }
.partner-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.partner { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; transition: transform .3s var(--ease), border-color .3s; }
.partner:hover { transform: translateY(-4px); border-color: var(--line-2); }
.partner h3 { font-size: 1.2rem; margin-bottom: .1em; }
.partner .partner-where { color: var(--muted-2); font-size: .8rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: .7rem; font-family: "Inter", sans-serif; }
.partner p { color: var(--muted); font-size: .94rem; margin-bottom: 14px; }
.partner a.partner-link { color: var(--heron-light); font-weight: 600; font-family: "Inter", sans-serif; font-size: .9rem; }

/* ---------- Musical Family ---------- */
.family { background: var(--bg); }
.owner { display: grid; grid-template-columns: 220px 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; max-width: 920px; margin: 0 auto 56px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: clamp(24px, 3vw, 40px); }
.owner-photo { aspect-ratio: 1; border-radius: 50%; overflow: hidden; border: 2px solid var(--line-2); }
.owner-photo img { width: 100%; height: 100%; object-fit: cover; }
.owner-photo.placeholder { display: grid; place-items: center; background: radial-gradient(120% 120% at 50% 15%, var(--bg-4), var(--bg-3)); }
.owner-photo.placeholder img { width: 78%; height: auto; border-radius: 0; }
.owner-role { color: var(--sand); font-size: .78rem; text-transform: uppercase; letter-spacing: .16em; font-weight: 600; margin-bottom: .3rem; }
.owner-text h3 { font-size: clamp(1.7rem, 3.4vw, 2.3rem); margin-bottom: .4em; }
.owner-text p { color: var(--soft); margin: 0; }
.team-sub { text-align: center; font-size: 1.35rem; color: var(--cream); margin: 0 0 28px; }
.freelancers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.freelancer { text-align: center; }
.freelancer-photo { aspect-ratio: 1; border-radius: 50%; overflow: hidden; margin: 0 auto 16px; max-width: 150px; border: 2px solid var(--line); background: var(--bg-3); }
.freelancer-photo img { width: 100%; height: 100%; object-fit: cover; }
.freelancer-photo.placeholder { display: grid; place-items: center; }
.freelancer-photo.placeholder img { width: 74%; height: auto; border-radius: 0; }
.freelancer h4 { font-size: 1.1rem; margin-bottom: .15em; color: var(--cream); }
.freelancer p { color: var(--muted); font-size: .88rem; margin: 0; line-height: 1.45; }

/* ---------- Education ---------- */
.education { background: var(--bg-2); }
.edu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 980px; margin: 0 auto; }
.edu-card { background: var(--bg); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px 30px; }
.edu-card p { color: var(--soft); }
.edu-link { display: inline-block; margin-top: 8px; color: var(--heron-light); font-weight: 600; font-family: "Inter", sans-serif; font-size: .95rem; }
.edu-link:hover { color: var(--moon); }

/* ---------- Community ---------- */
.community { background: linear-gradient(160deg, var(--bg-3) 0%, var(--bg-2) 60%, var(--bg) 120%); }
.community-inner { max-width: 760px; margin: 0 auto; text-align: center; }
.community-inner h2 { font-size: clamp(1.9rem, 4vw, 2.8rem); }
.community-inner p { color: var(--soft); font-size: 1.1rem; margin-bottom: 2rem; }

/* ---------- Posts ---------- */
.posts { background: var(--bg); }
.post-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.post-card { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--radius); padding: 28px 26px; transition: transform .3s var(--ease), border-color .3s; }
.post-card:hover { transform: translateY(-5px); border-color: var(--line-2); }
.post-tag { display: inline-block; font-family: "Inter", sans-serif; font-size: .72rem; font-weight: 600; text-transform: uppercase; letter-spacing: .12em; color: var(--heron-light); background: rgba(111,147,176,.14); border: 1px solid rgba(111,147,176,.3); padding: .25em .7em; border-radius: 999px; margin-bottom: 14px; }
.post-card h3 { font-size: 1.24rem; margin-bottom: .3em; }
.post-card p { color: var(--muted); margin: 0; font-size: .96rem; }
.posts-note { text-align: center; color: var(--muted-2); margin: 34px 0 0; font-style: italic; }

/* ---------- Special Thanks ---------- */
.thanks { background: var(--bg-2); }
.thanks-list { max-width: 820px; margin: 0 auto; display: grid; gap: 4px; }
.thanks-list p { color: var(--soft); padding: 16px 0; border-bottom: 1px solid var(--line); font-size: 1.02rem; }
.thanks-list p:last-child { border-bottom: 0; }

/* ---------- Contact ---------- */
.contact { background: linear-gradient(165deg, var(--bg-3) 0%, var(--bg-2) 55%, var(--bg) 120%); border-top: 1px solid var(--line); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(36px, 5vw, 64px); align-items: start; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.contact-lead { color: var(--soft); font-size: 1.08rem; max-width: 460px; }
.contact-actions { display: flex; flex-direction: column; gap: 12px; max-width: 420px; margin: 28px 0; }
.contact-meta { display: grid; gap: 13px; margin: 8px 0 0; }
.contact-meta div { display: flex; gap: 16px; align-items: baseline; }
.contact-meta dt { color: var(--sand); font-weight: 600; min-width: 78px; font-size: .74rem; text-transform: uppercase; letter-spacing: .1em; font-family: "Inter", sans-serif; }
.contact-meta dd { margin: 0; color: var(--cream); font-weight: 500; }
.contact-meta a { color: var(--cream); border-bottom: 1px solid var(--line-2); }
.contact-meta a:hover { border-color: var(--heron); color: var(--heron-light); }
.contact-form { background: var(--bg); border: 1px solid var(--line-2); border-radius: var(--radius); padding: clamp(24px, 3vw, 36px); box-shadow: var(--shadow-lg); }
.field { margin-bottom: 16px; }
.field label { display: block; font-size: .84rem; font-weight: 600; color: var(--cream); margin-bottom: 6px; font-family: "Inter", sans-serif; }
.field .req { color: var(--heron-light); font-weight: 700; }
.field .opt { color: var(--muted-2); font-weight: 400; }
.field input, .field select, .field textarea { width: 100%; padding: .82em .95em; border: 1.5px solid var(--line-2); border-radius: var(--radius-sm); font: inherit; color: var(--cream); background: var(--bg-2); transition: border-color .2s, box-shadow .2s; }
.field input::placeholder, .field textarea::placeholder { color: var(--muted-2); }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--heron); box-shadow: 0 0 0 3px rgba(111,147,176,.22); background: var(--bg-3); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none' stroke='%2393a6bb' stroke-width='2'%3E%3Cpath d='M1 1l5 5 5-5'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1em center; padding-right: 2.4em; }
.field textarea { resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted-2); text-align: center; margin: 12px 0 0; }
.form-status { margin: 14px 0 0; padding: 14px 16px; border-radius: var(--radius-sm); background: var(--bg-3); border: 1px solid var(--line-2); color: var(--soft); font-size: .92rem; line-height: 1.55; }
.form-status[hidden] { display: none; }
.form-status a { color: var(--heron-light); font-weight: 600; text-decoration: underline; }
.form-status strong { color: var(--cream); }

/* ---------- Footer ---------- */
.site-footer { background: #050813; color: var(--muted); padding: 58px 0 26px; border-top: 1px solid var(--line); position: relative; z-index: 2; }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 36px; border-bottom: 1px solid var(--line); }
.footer-brand .brand { margin-bottom: 14px; }
.footer-brand p { max-width: 320px; font-size: .94rem; color: var(--muted); }
.footer-sig { color: var(--sand) !important; font-family: "Fraunces", serif; font-style: italic; font-size: .98rem !important; margin-top: 6px; }
.footer-col h4 { color: var(--cream); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; margin-bottom: 14px; font-family: "Inter", sans-serif; }
.footer-col a, .footer-col span { display: block; color: var(--muted); margin-bottom: 9px; font-size: .94rem; }
.footer-col a:hover { color: var(--heron-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 22px; font-size: .85rem; flex-wrap: wrap; gap: 10px; color: var(--muted-2); }
.to-top { color: var(--muted); }
.to-top:hover { color: var(--heron-light); }

/* ---------- Lightbox ---------- */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(3,5,12,.96); display: flex; align-items: center; justify-content: center; padding: 24px; opacity: 0; animation: fadeIn .25s var(--ease) forwards; }
.lightbox[hidden] { display: none; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 10px; box-shadow: var(--shadow-lg); }
.lb-close { position: absolute; top: 18px; right: 24px; font-size: 2.4rem; line-height: 1; color: var(--cream); background: none; border: 0; cursor: pointer; }
.lb-nav { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2.4rem; color: var(--cream); background: rgba(255,255,255,.1); border: 0; cursor: pointer; width: 52px; height: 52px; border-radius: 50%; display: grid; place-items: center; transition: background .2s; }
.lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-prev { left: 18px; } .lb-next { right: 18px; }
@keyframes fadeIn { to { opacity: 1; } }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }

/* ---------- Accessibility ---------- */
.skip-link { position: absolute; left: -999px; top: 0; z-index: 200; background: var(--moon); color: #0c1630; padding: 10px 16px; border-radius: 0 0 8px 0; font-weight: 700; }
.skip-link:focus { left: 0; }
:focus-visible { outline: 3px solid var(--heron-light); outline-offset: 2px; }
.btn:focus-visible { outline-offset: 4px; }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .gear-layout { grid-template-columns: 1fr; }
  .gear-aside { position: static; grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .artist-grid { grid-template-columns: repeat(2, 1fr); }
  .band-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 920px) {
  .cards, .rooms, .post-grid, .partner-grid, .artist-grid.cols-3 { grid-template-columns: repeat(2, 1fr); }
  .split-grid, .split.reverse .split-grid, .story-body, .edu-grid, .contact-grid { grid-template-columns: 1fr; }
  .split.reverse .split-media { order: 0; }
  .freelancers { grid-template-columns: repeat(2, 1fr); }
  .owner { grid-template-columns: 1fr; text-align: center; }
  .owner-photo { max-width: 200px; margin: 0 auto; }
  .listen-card { grid-template-columns: 1fr; text-align: center; }
  .listen-art { max-width: 180px; margin: 0 auto; }
  .listen-links { justify-content: center; }
}
@media (max-width: 880px) {
  .nav { position: fixed; inset: 0 0 auto 0; top: 0; flex-direction: column; gap: 0; background: var(--bg-2); padding: 86px 24px 28px; box-shadow: var(--shadow-lg); transform: translateY(-110%); align-items: stretch; border-bottom: 1px solid var(--line); visibility: hidden; transition: transform .35s var(--ease), visibility 0s .35s; }
  .nav.open { transform: translateY(0); visibility: visible; transition: transform .35s var(--ease), visibility 0s 0s; }
  .nav a { color: var(--cream); padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 1.1rem; }
  .nav a::after { display: none; }
  .nav-toggle { display: flex; }
}
@media (max-width: 720px) {
  .facts-grid { grid-template-columns: repeat(2, 1fr); gap: 28px 18px; }
  .cards, .rooms, .post-grid, .partner-grid, .artist-grid, .artist-grid.cols-3, .band-grid { grid-template-columns: 1fr; }
  .freelancers { grid-template-columns: repeat(2, 1fr); }
  .hero-actions .btn { flex: 1; }
  .houseband-actions .btn { flex: 1 1 auto; }
  .footer-col a, .footer-col span { padding: 6px 0; margin-bottom: 2px; }
  .lb-nav { width: 44px; height: 44px; font-size: 2rem; }
  .show-row { flex-direction: column; align-items: flex-start; gap: 8px; }
}
@media (max-width: 440px) {
  .freelancers { grid-template-columns: 1fr; }
  .header-cta .btn { display: none; }
}
@media (max-height: 540px) and (orientation: landscape) {
  .hero { min-height: auto; }
  .hero-content { padding: 100px 0 48px; }
  .scroll-cue { display: none; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .scroll-cue span { animation: none; }
  * { animation-duration: .01ms !important; transition-duration: .01ms !important; }
}
