/* Astonish Entertainment — dark, tight, image-first */
:root {
  --bg: #0a0a0b;
  --bg-2: #111113;
  --bg-3: #19191c;
  --line: #26262b;
  --line-2: #333339;
  --text: #f4f4f5;
  --muted: #a1a1aa;
  --muted-2: #71717a;
  --accent: #ff3b1f;
  --accent-2: #ff6a3d;
  --accent-ink: #120503;
  --display: "Saira", "Arial Narrow", Impact, sans-serif;
  --body: "Montserrat", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --wrap: 1440px;
  --gap: 12px;
  --r: 8px;
  --shadow: 0 10px 30px rgba(0, 0, 0, .45);
  --ease: cubic-bezier(.2, .7, .2, 1);
}
* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body { margin: 0; background: var(--bg); color: var(--text); font: 400 16px/1.65 var(--body); -webkit-font-smoothing: antialiased; }
img, svg, video, iframe { max-width: 100%; }
img { display: block; height: auto; }
a { color: inherit; text-decoration: none; }
a:hover { color: #fff; }
p { margin: 0 0 1em; }
h1, h2, h3, h4 { font-family: var(--display); text-transform: uppercase; letter-spacing: .01em; line-height: 1.02; margin: 0 0 .5em; font-weight: 800; }
h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); font-weight: 900; }
h2 { font-size: clamp(1.9rem, 3.6vw, 3rem); }
h3 { font-size: 1.15rem; }
.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.wrap.narrow { max-width: 860px; }
.skip { position: absolute; left: -999px; top: 8px; background: var(--accent); color: #000; padding: 8px 12px; z-index: 100; }
.skip:focus { left: 8px; }
.ico, .ico svg, .btn svg, .link svg, .social svg, .card-meta svg, .m-social svg, .share svg, .follow-row svg, .yt-play svg, .play-badge svg, .menu-btn svg, .has-menu > a svg, .m-toggle svg, .lb-close svg, .lb-prev svg, .lb-next svg { width: 1.1em; height: 1.1em; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; vertical-align: -.2em; flex: none; }
.eyebrow { font-family: var(--display); text-transform: uppercase; letter-spacing: .18em; font-size: .8rem; color: var(--accent); font-weight: 700; margin: 0 0 .6rem; }
.eyebrow strong { color: var(--text); }
.lead { font-size: 1.08rem; color: #d4d4d8; }
.fine { font-size: .78rem; color: var(--muted); line-height: 1.5; }
.fine a { text-decoration: underline; }
.req { color: var(--accent); margin-left: 2px; }

/* buttons + links */
.btn { display: inline-flex; align-items: center; gap: .5em; padding: 14px 22px; border-radius: 999px; font-family: var(--display); text-transform: uppercase; letter-spacing: .08em; font-weight: 800; font-size: .95rem; line-height: 1; border: 1px solid transparent; cursor: pointer; transition: transform .25s var(--ease), background .25s, border-color .25s, color .25s; white-space: nowrap; }
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--accent-ink); }
.btn-accent:hover { background: var(--accent-2); color: #000; }
.btn-ghost { background: transparent; border-color: var(--line-2); color: var(--text); }
.btn-ghost:hover { border-color: #fff; }
.btn-sm { padding: 10px 16px; font-size: .82rem; }
.link { display: inline-flex; align-items: center; gap: .4em; font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; font-size: .85rem; color: var(--accent); }
.link:hover { color: var(--accent-2); }
.link svg { transition: transform .25s var(--ease); }
.link:hover svg { transform: translateX(3px); }
.cta-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.4rem; }
.cta-row.center { justify-content: center; }

/* header */
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(10, 10, 11, .82); backdrop-filter: saturate(140%) blur(12px); -webkit-backdrop-filter: saturate(140%) blur(12px); border-bottom: 1px solid var(--line); }
.site-header .wrap { display: flex; align-items: center; gap: 24px; height: 84px; }
.brand img, .brand .brand-mark { height: 62px; width: auto; display: block; }
.nav { margin-left: auto; }
.nav ul, .mobile-nav ul, .foot-col ul, .foot-bottom ul, .pillars, .sitemap ul, .mega ul { list-style: none; margin: 0; padding: 0; }
.nav > ul { display: flex; gap: 4px; align-items: center; }
.nav > ul > li > a { display: inline-flex; align-items: center; gap: .3em; padding: 10px 14px; font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; font-size: .9rem; color: #d4d4d8; border-radius: 6px; }
.nav > ul > li > a:hover, .nav > ul > li.active > a { color: #fff; background: rgba(255, 255, 255, .06); }
.nav > ul > li.active > a { box-shadow: inset 0 -2px 0 var(--accent); }
.has-menu { position: relative; }
.has-menu > a svg { width: .9em; height: .9em; transition: transform .2s; }
.has-menu.open > a svg, .has-menu:hover > a svg { transform: rotate(180deg); }
.mega { pointer-events: none; position: absolute; top: calc(100% + 8px); left: 50%; transform: translateX(-50%) translateY(6px); width: min(900px, calc(100vw - 40px)); background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 12px; box-shadow: var(--shadow); opacity: 0; visibility: hidden; transition: opacity .2s, transform .2s var(--ease), visibility .2s; padding: 22px; }
.has-menu:hover .mega, .has-menu.open .mega, .has-menu:focus-within .mega { pointer-events: auto; opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-in { display: grid; grid-template-columns: 1fr 260px; gap: 24px; }
.mega-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px 20px; }
.mega-cols a { display: block; padding: 7px 8px; border-radius: 6px; font-size: .92rem; color: #d4d4d8; }
.mega-cols a:hover { background: rgba(255, 255, 255, .06); color: #fff; }
.mega-side { border-left: 1px solid var(--line); padding-left: 24px; display: flex; flex-direction: column; gap: 10px; }
.mega-side p { margin: 0; font-size: .9rem; color: var(--muted); }
.mega-side .btn { align-self: flex-start; }
.header-actions { display: flex; align-items: center; gap: 10px; }
.menu-btn { display: none; background: none; border: 1px solid var(--line-2); color: #fff; border-radius: 8px; width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer; }
.menu-btn svg { width: 22px; height: 22px; }
.mobile-nav { border-top: 1px solid var(--line); background: var(--bg); max-height: calc(100vh - 84px); overflow: auto; }
.mobile-nav > ul > li { border-bottom: 1px solid var(--line); }
.mobile-nav a { display: block; padding: 16px 20px; font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; }
.m-sync { display: grid; grid-template-columns: 1fr auto; align-items: center; }
.m-toggle { background: none; border: 0; color: #fff; padding: 16px 20px; cursor: pointer; }
.m-toggle svg { width: 20px; height: 20px; transition: transform .2s; }
.m-toggle[aria-expanded="true"] svg { transform: rotate(180deg); }
.m-sub { grid-column: 1 / -1; display: none; background: var(--bg-2); padding: 6px 0; }
.m-sub.open { display: block; }
.m-sub a { padding: 10px 32px; font-family: var(--body); text-transform: none; letter-spacing: 0; font-weight: 500; font-size: .95rem; color: #d4d4d8; }
.m-social { display: flex; gap: 8px; padding: 16px 20px; }
.m-social a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-2); border-radius: 50%; }
.m-social svg { width: 18px; height: 18px; }

/* hero */
.hero, .genre-hero { position: relative; min-height: min(86vh, 820px); display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.genre-hero { min-height: min(52vh, 520px); }
.hero-media { position: absolute; inset: 0; z-index: -1; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
@media (max-width: 640px) { .hero-media img { object-position: 60% center; } }
.hero-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10, 10, 11, .25) 0%, rgba(10, 10, 11, .1) 35%, rgba(10, 10, 11, .92) 100%); }
.hero-in { padding: 120px 0 64px; flex: 0 1 auto; min-width: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.hero h1 { max-width: 14ch; text-shadow: 0 6px 30px rgba(0, 0, 0, .5); }
/* Home hero over the roster mosaic: a heavier left-hand scrim so the headline owns its side of the wall */
.hero-roster .hero-media::after { background: linear-gradient(90deg, rgba(10,10,11,.94) 0%, rgba(10,10,11,.78) 34%, rgba(10,10,11,.25) 68%, rgba(10,10,11,.15) 100%), linear-gradient(180deg, rgba(10,10,11,.35) 0%, rgba(10,10,11,0) 30%, rgba(10,10,11,.9) 100%); }
.hero-roster h1 { max-width: none; font-size: clamp(2.4rem, 5.6vw, 5rem); line-height: .98; }
.hero-roster h1 span { display: block; }
.hero-roster h1 span + span { color: var(--accent); }
@media (max-width: 640px) { .hero-roster .hero-media::after { background: linear-gradient(180deg, rgba(10,10,11,.45) 0%, rgba(10,10,11,.55) 40%, rgba(10,10,11,.95) 100%); } }
.pillars { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 18px 0 8px; }
.pillars li { font-family: var(--display); text-transform: uppercase; letter-spacing: .2em; font-weight: 800; font-size: .95rem; color: #fff; display: flex; align-items: center; gap: 10px; }
.pillars li::before { content: ""; width: 10px; height: 10px; background: var(--accent); transform: rotate(45deg); }
.crumbs { font-size: .82rem; color: var(--muted); margin: 0 0 .8rem; }
.crumbs a:hover { color: #fff; }

/* sections */
.sec { padding: 64px 0; }
.sec-alt { background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.sec-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 16px; margin-bottom: 22px; }
.sec-head h2 { margin: 0; position: relative; padding-left: 18px; }
.sec-head h2::before { content: ""; position: absolute; left: 0; top: .15em; bottom: .15em; width: 6px; background: var(--accent); border-radius: 2px; }
.page-head { padding: 64px 0 24px; }
.page-head.center { text-align: center; padding: 96px 0 48px; }
.page-head.center .lead { margin-inline: auto; max-width: 48ch; }
.page-head h1 { margin-bottom: .3em; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
.two-col > *, .grid > *, .sync-layout > * { min-width: 0; }
.two-col.rev > :first-child { order: 2; }
.two-col .media img, .media-link img, .sub-media img { border-radius: var(--r); width: 100%; object-fit: cover; }
.media-link { display: block; border-radius: var(--r); overflow: hidden; }
.media-link img { transition: transform .5s var(--ease); }
.media-link:hover img { transform: scale(1.03); }

/* grids + cards */
.grid { display: grid; gap: var(--gap); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
.card { display: flex; flex-direction: column; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; color: inherit; text-align: left; padding: 0; font: inherit; cursor: pointer; transition: border-color .25s, transform .3s var(--ease); }
.card:hover { border-color: var(--line-2); transform: translateY(-3px); }
div.card { cursor: default; }
.card-media { position: relative; display: block; overflow: hidden; aspect-ratio: 4 / 3; background: var(--bg-3); }
.card-media.square { aspect-ratio: 1; }
.card-media.wide-media { aspect-ratio: 16 / 9; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease), opacity .3s; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 4px; }
.card-body h3 { margin: 0; font-size: 1.05rem; }
.card-body h3 a:hover { color: var(--accent-2); }
.card-meta { font-size: .78rem; color: var(--muted); display: inline-flex; align-items: center; gap: .3em; }
.card-date { font-size: .78rem; color: var(--muted); margin: 0 0 2px; text-transform: uppercase; letter-spacing: .08em; font-family: var(--display); font-weight: 700; }
.excerpt { color: var(--muted); font-size: .92rem; margin: 4px 0 8px; }
.bio-source { font-size: .82rem; color: var(--muted); font-style: italic; margin-top: 1.6rem; }
.artist-card .card-media { aspect-ratio: 1; }
.artist-card.wide .card-media { aspect-ratio: 16 / 9; }
.artist-card .card-body h3 { font-size: 1.3rem; }
.rel-tag { align-self: flex-start; font-family: var(--display); font-size: .66rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); line-height: 1; }
.rel-tag.rel-label { color: var(--accent); }
.card-title { display: flex; flex-direction: column; gap: 6px; }
.artist-card.wide .card-title { flex: 0 0 auto; }
.artist-card.wide .card-body { flex-direction: row; justify-content: space-between; align-items: flex-end; gap: 1.4rem; padding: 14px 16px 16px; }
.artist-card.wide .card-body h3 { flex: 0 0 auto; }
.artist-card.wide .card-meta { font-size: .9rem; color: #d4d4d8; text-align: right; display: block; }

/* Homepage roster */
.roster .lead { max-width: 62ch; margin: -.4rem 0 1.8rem; }
.roster .artist-card .card-body { min-height: 66px; justify-content: center; }
.roster .artist-card .card-body h3 { font-size: 1.15rem; line-height: 1.15; }
.album-card .card-body { padding: 10px 12px 12px; }
.album-card .card-body h3 { font-size: .95rem; }
.video-card { width: 100%; }
.play-badge, .yt-play { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); width: 58px; height: 58px; border-radius: 50%; background: rgba(10, 10, 11, .7); border: 1px solid rgba(255, 255, 255, .35); display: flex; align-items: center; justify-content: center; color: #fff; transition: background .25s, transform .25s var(--ease); backdrop-filter: blur(6px); cursor: pointer; }
.play-badge svg, .yt-play svg { width: 26px; height: 26px; fill: currentColor; stroke: none; margin-left: 3px; }
.card:hover .play-badge, .yt:hover .yt-play { background: var(--accent); color: #000; transform: translate(-50%, -50%) scale(1.08); }
.genre-card .card-media { aspect-ratio: 16 / 10; }
.genre-card .card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,11,0) 30%, rgba(10,10,11,.55) 62%, rgba(10,10,11,.94) 100%); }
.genre-card .card-body { margin-top: -46px; position: relative; z-index: 1; padding-top: 0; }
.genre-card h3 { font-size: 1.35rem; text-shadow: 0 2px 12px rgba(0, 0, 0, .9); }
.genre-card .card-meta { color: #d4d4d8; text-shadow: 0 1px 8px rgba(0, 0, 0, .9); }
.genre-strip { display: flex; flex-wrap: wrap; gap: 8px; }
.chip { display: inline-block; padding: 9px 14px; border: 1px solid var(--line-2); border-radius: 999px; font-size: .88rem; font-weight: 500; color: #d4d4d8; transition: border-color .2s, background .2s; }
.chip:hover { border-color: var(--accent); background: rgba(255, 59, 31, .1); color: #fff; }
.panel { background: var(--bg-3); border: 1px solid var(--line); border-radius: var(--r); padding: 24px; }
.panel h3 { font-size: 1.4rem; }

/* youtube facade */
.yt { position: relative; aspect-ratio: 16 / 9; background: #000; border-radius: var(--r); overflow: hidden; margin: 0 0 1.4rem; }
.yt img { width: 100%; height: 100%; object-fit: cover; }
.yt iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.embed { position: relative; aspect-ratio: 16 / 9; margin: 0 0 1.4rem; }
.embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; border-radius: var(--r); }

/* sync */
.sync-layout { align-items: start; grid-template-columns: minmax(0, 1fr) 320px; }
.disco { border-radius: var(--r); overflow: hidden; border: 1px solid var(--line); background: var(--bg-2); }
.disco iframe { display: block; width: 100%; height: 600px; border: 0; }
.contact-card { position: sticky; top: 92px; background: var(--bg-2); border: 1px solid var(--line-2); border-radius: 12px; padding: 24px; display: flex; flex-direction: column; gap: 6px; }
.contact-card .big { font-family: var(--display); text-transform: uppercase; font-weight: 800; font-size: 1.4rem; margin: 0; }
.contact-card p { margin: 0; }
.contact-card a { display: inline-flex; align-items: center; gap: .5em; color: #d4d4d8; min-width: 0; }
.contact-card p { min-width: 0; }
.contact-card a:not(.btn) { font-size: .92rem; overflow-wrap: break-word; }
.contact-card .btn { white-space: normal; text-align: center; justify-content: center; max-width: 100%; }
.contact-card a:hover { color: #fff; }
.contact-card .btn { margin-top: 12px; justify-content: center; }

/* subscribe form */
.subscribe { background: var(--bg-2); border-top: 1px solid var(--line); }
.form { display: flex; flex-direction: column; gap: 12px; max-width: 560px; }
.form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form label { display: flex; flex-direction: column; gap: 6px; font-size: .82rem; font-weight: 600; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }
.form input[type="text"], .form input[type="email"], .form input[type="tel"] { background: var(--bg); border: 1px solid var(--line-2); color: #fff; border-radius: 8px; padding: 13px 14px; font: 500 1rem var(--body); transition: border-color .2s; }
.form input:focus { outline: none; border-color: var(--accent); }
.form .check { flex-direction: row; align-items: flex-start; gap: 10px; text-transform: none; letter-spacing: 0; font-weight: 500; color: #d4d4d8; font-size: .9rem; }
.form .check input { width: 18px; height: 18px; margin-top: 2px; accent-color: var(--accent); }
.form .check a { color: var(--accent); text-decoration: underline; }
.form .btn { align-self: flex-start; }
.form .hp { position: absolute; left: -9999px; }
.form-msg { margin: 0; font-size: .9rem; color: var(--accent-2); min-height: 1.4em; }
.sub-media img { aspect-ratio: 4 / 5; }

/* prose */
.prose { font-size: 1.02rem; }
.prose h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); margin-top: 2rem; }
.prose h3 { font-size: 1.3rem; margin-top: 1.6rem; }
.prose h4 { font-size: 1.05rem; margin-top: 1.4rem; }
.prose a { color: var(--accent-2); text-decoration: underline; text-decoration-color: rgba(255, 106, 61, .5); }
.prose a:hover { color: #fff; }
.prose img { border-radius: var(--r); margin: 1.2rem 0; }
.prose ul, .prose ol { padding-left: 1.4em; }
.prose li { margin-bottom: .4em; }
.prose blockquote { border-left: 4px solid var(--accent); margin: 1.4rem 0; padding: .2rem 0 .2rem 1.2rem; color: #d4d4d8; }
.prose table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.prose td, .prose th { border: 1px solid var(--line-2); padding: 8px 10px; text-align: left; }
.legal h2 { font-size: 1.6rem; }
.legal p:first-child { margin-top: 0; }

/* post */
.post-head { padding: 56px 0 24px; }
.post-head h1 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
.post-meta { color: var(--muted); font-size: .9rem; }
.post-meta a { color: var(--accent-2); }
.post-body p:first-child br:first-child { display: none; }
.post-foot { padding: 24px 0 56px; display: flex; flex-direction: column; gap: 22px; }
.tags { display: flex; flex-wrap: wrap; gap: 6px; }
.tag { font-size: .78rem; padding: 5px 10px; border-radius: 999px; background: var(--bg-3); border: 1px solid var(--line); color: var(--muted); }
.tag:hover { color: #fff; border-color: var(--line-2); }
.share { display: flex; align-items: center; gap: 8px; color: var(--muted); font-size: .85rem; text-transform: uppercase; letter-spacing: .1em; font-family: var(--display); font-weight: 700; }
.share a { width: 38px; height: 38px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-2); border-radius: 50%; color: #fff; }
.share a:hover { border-color: var(--accent); color: var(--accent); }
.post-nav { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; border-top: 1px solid var(--line); padding-top: 22px; }
.post-nav a { display: flex; flex-direction: column; gap: 4px; font-weight: 600; font-size: .95rem; }
.post-nav a span { font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); font-family: var(--display); }
.post-nav a.r { text-align: right; }
.post-nav a:hover { color: var(--accent-2); }
.pagination { display: flex; justify-content: space-between; align-items: center; margin-top: 28px; font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-weight: 700; color: var(--muted); }
.pagination a { color: var(--accent); }

/* gallery */
.masonry { columns: 4; column-gap: var(--gap); }
.m-item { display: block; break-inside: avoid; margin-bottom: var(--gap); border-radius: var(--r); overflow: hidden; background: var(--bg-3); }
.m-item img { transition: transform .5s var(--ease), opacity .3s; }
.m-item:hover img { transform: scale(1.03); opacity: .9; }

/* news + follow */
.news-list { display: flex; flex-direction: column; gap: var(--gap); }
.news-item { display: grid; grid-template-columns: 380px 1fr; gap: 24px; background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; align-items: center; }
.news-item.no-media { grid-template-columns: 1fr; }
.news-media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 16 / 9; }
.news-body { padding: 22px 24px 22px 0; }
.news-item.no-media .news-body { padding: 22px 24px; }
.news-body h2 { font-size: 1.35rem; }
.byline { color: var(--muted); font-size: .85rem; }
.follow-list { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.follow-row { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 14px; padding: 12px 16px; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg-2); transition: border-color .2s; }
.follow-row:hover { border-color: var(--accent); }
.follow-row > svg { width: 24px; height: 24px; }
.follow-row span { display: flex; flex-direction: column; }
.follow-row em { font-style: normal; color: var(--muted); font-size: .85rem; }
.social { display: flex; align-items: center; gap: 8px; margin-top: 12px; }
.social.inline { margin-top: 4px; }
.social-label { font-family: var(--display); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; font-weight: 700; color: var(--muted); margin-right: 6px; }
.social a { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid var(--line-2); border-radius: 50%; color: #fff; transition: border-color .2s, color .2s; }
.social a:hover { border-color: var(--accent); color: var(--accent); }
.social svg { width: 18px; height: 18px; }
.sitemap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.sitemap h2 { font-size: 1.3rem; }
.sitemap li { margin-bottom: 6px; font-size: .92rem; }
.sitemap a:hover { color: var(--accent-2); }

/* footer */
.site-footer { border-top: 1px solid var(--line); background: #060607; padding: 56px 0 28px; color: #d4d4d8; }
.foot-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.foot-brand img, .foot-brand .brand-mark { height: 110px; width: auto; display: block; }
.foot-tag { font-family: var(--display); text-transform: uppercase; letter-spacing: .2em; font-weight: 800; color: var(--accent); margin: 12px 0 14px; font-size: .85rem; }
.foot-contact { font-size: .95rem; }
.foot-contact span { font-family: var(--display); text-transform: uppercase; letter-spacing: .12em; font-size: .78rem; color: var(--muted); }
.foot-col h3 { font-size: .85rem; letter-spacing: .14em; color: var(--muted); margin-bottom: 14px; }
.foot-col li { margin-bottom: 9px; font-size: .95rem; }
.foot-col a:hover { color: var(--accent-2); }
.foot-bottom { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; border-top: 1px solid var(--line); margin-top: 40px; padding-top: 22px; font-size: .82rem; color: var(--muted); }
.foot-bottom p { margin: 0; }
.foot-bottom ul { display: flex; gap: 18px; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 100; background: rgba(0, 0, 0, .92); display: flex; align-items: center; justify-content: center; padding: 56px 24px; }
.lb-body { width: min(1200px, 100%); max-height: 100%; display: flex; align-items: center; justify-content: center; }
.lb-body img { max-height: calc(100vh - 112px); width: auto; max-width: 100%; border-radius: var(--r); box-shadow: var(--shadow); }
.lb-body .lb-video { width: 100%; aspect-ratio: 16 / 9; }
.lb-body iframe { width: 100%; height: 100%; border: 0; border-radius: var(--r); }
.lb-close, .lb-prev, .lb-next { position: absolute; background: rgba(255, 255, 255, .08); border: 1px solid rgba(255, 255, 255, .2); color: #fff; width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; }
.lb-close { top: 16px; right: 16px; }
.lb-prev, .lb-next { top: 50%; transform: translateY(-50%); }
.lb-prev { left: 12px; }
.lb-prev svg { transform: rotate(90deg); }
.lb-next { right: 12px; }
.lb-next svg { transform: rotate(-90deg); }
.lb-close svg, .lb-prev svg, .lb-next svg { width: 22px; height: 22px; }
.lightbox[data-mode="video"] .lb-prev, .lightbox[data-mode="video"] .lb-next { display: none; }
body.lb-open { overflow: hidden; }

/* reveal */
@media (prefers-reduced-motion: no-preference) {
  .card, .sec-head, .two-col > * { opacity: 0; transform: translateY(14px); transition: opacity .6s var(--ease), transform .6s var(--ease), border-color .25s; }
  .card.in, .sec-head.in, .two-col > .in, .no-js .card, .no-js .sec-head, .no-js .two-col > * { opacity: 1; transform: none; }
  .card.in:hover { transform: translateY(-3px); }
}

/* responsive */
@media (max-width: 1200px) {
  .grid-5 { grid-template-columns: repeat(4, 1fr); }
  .foot-grid { grid-template-columns: 1.4fr 1fr 1fr; }
}
@media (max-width: 1000px) {
  .nav, .header-actions .btn { display: none; }
  .header-actions { margin-left: auto; }
  .menu-btn { display: inline-flex; }
  .grid-4, .grid-5 { grid-template-columns: repeat(3, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .two-col, .sync-layout { grid-template-columns: 1fr; }
  .two-col.rev > :first-child { order: 0; }
  .contact-card { position: static; }
  .masonry { columns: 3; }
  .news-item { grid-template-columns: 1fr; }
  .news-body { padding: 0 24px 22px; }
  .sitemap { grid-template-columns: 1fr 1fr; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, var(--wrap)); }
  .site-header .wrap { height: 70px; }
  .brand img, .brand .brand-mark { height: 50px; }
  .hero-in { padding: 100px 0 40px; }
  .hero { min-height: min(72vh, 640px); }
  .pillars li { font-size: .8rem; letter-spacing: .14em; }
  .sec { padding: 44px 0; }
  .grid-2, .grid-3, .grid-4, .grid-5 { grid-template-columns: repeat(2, 1fr); }
  .grid-3.posts, .grid-2 { grid-template-columns: 1fr; }
  .grid-2 .artist-card.wide .card-body h3 { font-size: 1.3rem; }
  .card-body { padding: 10px; }
  .album-card .card-body h3 { font-size: .85rem; }
  .form .row { grid-template-columns: 1fr; }
  .btn { white-space: normal; text-align: center; }
  .contact-card .btn { justify-content: center; }
  .masonry { columns: 2; }
  .sitemap, .foot-grid { grid-template-columns: 1fr; }
  .post-nav { grid-template-columns: 1fr; }
  .post-nav a.r { text-align: left; }
  .sec-head { flex-direction: column; align-items: flex-start; gap: 8px; }
  .disco iframe { height: 520px; }
  .lightbox { padding: 64px 8px; }
  .lb-prev, .lb-next { display: none; }
}

/* ============================================================
   Sync-first additions: mega menus, catalog, supervisor pages
   ============================================================ */

/* mega menu variants */
.mega-in.wide { grid-template-columns: 220px 1fr 250px; }
.mega-group { min-width: 0; }
.mega-head { font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 700; color: var(--muted); margin: 0 0 8px; }
.mega-head.mt { margin-top: 18px; }
.mega-group > ul a { display: block; padding: 7px 8px; border-radius: 6px; font-size: .92rem; color: #d4d4d8; }
.mega-group > ul a:hover { background: rgba(255, 255, 255, .06); color: #fff; }
.mega-group > ul a span { display: block; font-size: .76rem; color: var(--muted-2); margin-top: 1px; }
.mega-group .link { margin-top: 10px; }
.mega-side .btn { align-self: flex-start; }
.mega-music { width: min(680px, calc(100vw - 40px)); }
.mega-label { width: min(660px, calc(100vw - 40px)); }
.mega-sync { width: min(1040px, calc(100vw - 40px)); }

/* hero + lede */
.wide-lead { max-width: 68ch; }
.reel-lede { max-width: 70ch; }
.sec-head > div { min-width: 0; }
.sec-head .eyebrow { margin-bottom: .3rem; }

/* the sync reel */
.reel .disco iframe { height: 520px; }
.reel .cta-row { margin-top: 18px; }

/* why supervisors call us */
.pitch-grid .panel { padding: 20px; }
.pitch-item h3 { font-size: 1.05rem; color: var(--accent); }
.pitch-item p { margin: 0; color: #d4d4d8; font-size: .95rem; }

/* stats band */
.stats-band { padding: 40px 0; background: var(--bg-2); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stats { display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); gap: var(--gap) 20px; }
.stat { border-left: 3px solid var(--accent); padding: 6px 0 6px 16px; }
.stat strong { display: block; font-family: var(--display); font-size: clamp(1.5rem, 2.6vw, 2.2rem); font-weight: 900; text-transform: uppercase; line-height: 1; }
.stat span { display: block; margin-top: 6px; font-size: .85rem; color: var(--muted); }

/* contact band */
.contact-band { background: linear-gradient(180deg, var(--bg-2), var(--bg)); border-top: 1px solid var(--line); }
.contact-band-in { display: grid; grid-template-columns: 1fr auto; gap: 32px; align-items: center; }
.contact-band h2 { margin-bottom: .3em; }
.contact-band .lead { margin: 0; max-width: 52ch; }
.contact-band-actions { display: flex; flex-direction: column; gap: 10px; align-items: stretch; min-width: 280px; }
.contact-band-actions .btn { justify-content: center; }

/* track list */
.track-list { display: flex; flex-direction: column; gap: 8px; }
.track-card { flex-direction: row; align-items: center; gap: 16px; padding: 12px 16px; cursor: default; }
.track-card:hover { transform: none; border-color: var(--line-2); }
.track-play { flex: none; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line-2); background: var(--bg-3); color: #fff; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background .2s, color .2s, border-color .2s; }
.track-play svg { width: 20px; height: 20px; fill: currentColor; stroke: none; margin-left: 2px; }
.track-play:hover { background: var(--accent); color: #000; border-color: var(--accent); }
.track-main { flex: 1 1 auto; min-width: 0; }
.track-main h3 { margin: 0 0 2px; font-size: 1.05rem; }
.track-meta { margin: 0 0 6px; font-size: .82rem; color: var(--muted); overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.track-tags { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 5px; }
.track-tags li { font-size: .7rem; letter-spacing: .06em; text-transform: uppercase; font-weight: 600; padding: 3px 8px; border-radius: 999px; background: var(--bg-3); border: 1px solid var(--line); color: var(--muted); }
.track-tags .is-onestop { color: var(--accent); border-color: rgba(255, 59, 31, .45); background: rgba(255, 59, 31, .08); }
.track-actions { flex: none; display: flex; align-items: center; gap: 14px; }

/* catalog filters */
.filters { background: var(--bg-2); border: 1px solid var(--line); border-radius: 12px; padding: 18px 20px; margin-bottom: 20px; display: flex; flex-direction: column; gap: 12px; }
.filters .search input { width: 100%; background: var(--bg); border: 1px solid var(--line-2); color: #fff; border-radius: 8px; padding: 13px 14px; font: 500 1rem var(--body); }
.filters .search input:focus { outline: none; border-color: var(--accent); }
.filter-row { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.filter-label { font-family: var(--display); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 700; color: var(--muted); width: 68px; flex: none; }
.filter-chip { font: 600 .82rem var(--body); padding: 7px 13px; border-radius: 999px; border: 1px solid var(--line-2); background: transparent; color: #d4d4d8; cursor: pointer; transition: border-color .2s, background .2s, color .2s; }
.filter-chip:hover { border-color: #fff; color: #fff; }
.filter-chip.on { background: var(--accent); border-color: var(--accent); color: var(--accent-ink); }
.filter-chip.clear { margin-left: auto; color: var(--muted); border-style: dashed; }
.track-tags .is-onestop { color: var(--accent); border-color: rgba(255, 59, 31, .5); }
.track-tags .is-easysync { color: #f5c542; border-color: rgba(245, 197, 66, .45); }
.track-tags .is-cover { color: #9fc7ff; border-color: rgba(159, 199, 255, .45); }
.track-tags .is-stems { color: #8fd6a8; border-color: rgba(143, 214, 168, .45); }
.clearance-key { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 18px 0 0; }
.clearance-key div { display: flex; align-items: baseline; gap: 8px; max-width: 42ch; }
.clearance-key dt { font: 800 .74rem/1 var(--display); letter-spacing: .12em; text-transform: uppercase; white-space: nowrap; }
.clearance-key dd { margin: 0; font-size: .84rem; color: var(--muted); }
.clearance-key .is-onestop { color: var(--accent); }
.clearance-key .is-easysync { color: #f5c542; }
.clearance-key .is-cover { color: #9fc7ff; }
.filter-count { margin: 0; font-size: .82rem; color: var(--muted); }
.filter-count span { color: #fff; font-weight: 700; }
.empty-state { color: var(--muted); padding: 28px 0; }
.empty-state a, .link-btn { color: var(--accent); text-decoration: underline; }
.link-btn { background: none; border: 0; padding: 0; font: inherit; cursor: pointer; }

/* supervisor facts + process */
.fact-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.fact { background: var(--bg-2); border: 1px solid var(--line); border-left: 3px solid var(--accent); border-radius: var(--r); padding: 20px; }
.fact-label { font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--muted); margin: 0 0 6px; }
.fact-value { font-family: var(--display); text-transform: uppercase; font-weight: 800; font-size: 1.3rem; margin: 0 0 8px; }
.fact-detail { margin: 0; font-size: .9rem; color: #d4d4d8; }
.step { position: relative; padding-top: 26px; }
.step-n { position: absolute; top: 18px; right: 20px; font-family: var(--display); font-size: 2.6rem; font-weight: 900; color: rgba(255, 255, 255, .07); line-height: 1; }
.step h3 { font-size: 1.05rem; }
.step p { margin: 0; font-size: .92rem; color: #d4d4d8; }

/* faq */
.faq details { border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; padding: 16px 30px 16px 0; position: relative; font-family: var(--display); text-transform: uppercase; letter-spacing: .02em; font-weight: 700; font-size: 1.02rem; list-style: none; }
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 4px; top: 50%; transform: translateY(-50%); font-size: 1.4rem; color: var(--accent); line-height: 1; }
.faq details[open] summary::after { content: "–"; }
.faq summary:hover { color: #fff; }
.faq details > div { padding: 0 0 18px; color: #d4d4d8; }
.faq details > div p { margin: 0; }

/* wider forms */
.form-wide { max-width: none; }
.form .row-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.form select, .form textarea { background: var(--bg); border: 1px solid var(--line-2); color: #fff; border-radius: 8px; padding: 13px 14px; font: 500 1rem var(--body); }
.form select:focus, .form textarea:focus { outline: none; border-color: var(--accent); }
.form textarea { resize: vertical; }

/* split subscribe */
.sub-grid { display: grid; grid-template-columns: 1fr 1fr; gap: var(--gap); }
.sub-panel { background: var(--bg-3); border: 1px solid var(--line); border-radius: 12px; padding: 26px; }
.sub-panel.industry { border-color: rgba(255, 59, 31, .4); }
.sub-panel h3 { font-size: 1.4rem; }
.sub-panel .lead { font-size: .98rem; }
.sub-panel .form { max-width: none; }

/* artist + album detail */
.artist-hero { position: relative; min-height: min(62vh, 620px); display: flex; align-items: flex-end; overflow: hidden; isolation: isolate; }
.artist-hero .hero-in { padding: 140px 0 48px; }
.artist-hero .hero-media::after { background: linear-gradient(180deg, rgba(10,10,11,.55) 0%, rgba(10,10,11,.2) 30%, rgba(10,10,11,.95) 92%), linear-gradient(90deg, rgba(10,10,11,.75), rgba(10,10,11,0) 62%); }
.artist-hero .lead { max-width: 60ch; }
.artist-hero h1 { font-size: clamp(2.4rem, 5.5vw, 4.6rem); }
.album-top { align-items: start; grid-template-columns: 380px 1fr; }
.album-cover img { border-radius: var(--r); box-shadow: var(--shadow); width: 100%; }
.album-detail h1 { font-size: clamp(2rem, 4vw, 3.4rem); }
.album-detail .crumbs { margin-bottom: 28px; }
.album-detail { padding-top: 40px; }
.empty-panel { display: flex; flex-direction: column; align-items: flex-start; gap: 14px; }
.empty-panel p { margin: 0; color: var(--muted); }
.meta-list { margin: 22px 0 0; display: flex; flex-direction: column; gap: 10px; }
.meta-list > div { display: grid; grid-template-columns: 110px 1fr; gap: 14px; align-items: baseline; border-top: 1px solid var(--line); padding-top: 10px; }
.meta-list dt { font-family: var(--display); text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; color: var(--muted); }
.meta-list dd { margin: 0; font-size: .94rem; color: #d4d4d8; }
.meta-list dd a { color: var(--accent-2); text-decoration: underline; }
.sticky-media { position: sticky; top: 92px; }
.center-block { text-align: center; }
.person h3 { font-size: 1.3rem; margin-bottom: 2px; }
.person .eyebrow { margin-bottom: .8rem; }
.person-contact { display: flex; flex-wrap: wrap; gap: 16px; margin: 14px 0 0; }
.person-contact a { display: inline-flex; align-items: center; gap: .45em; color: #d4d4d8; font-size: .92rem; }
.person-contact a:hover { color: var(--accent-2); }
.submissions { text-align: left; }
.submissions h2 { font-size: 1.6rem; }

/* placements */
.credits { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--gap); }
.credit { background: var(--bg-2); border: 1px solid var(--line); border-radius: var(--r); padding: 20px; }
.credit-kind { font-family: var(--display); text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; color: var(--accent); margin: 0 0 6px; }
.credit h3 { font-size: 1.1rem; }
.credit p { margin: 0; font-size: .92rem; color: #d4d4d8; }
.quote { margin: 0; }
.quote p { font-size: 1.02rem; color: #e4e4e7; }
.quote cite { font-style: normal; font-size: .85rem; color: var(--muted); }
.press-card .card-body h3 { font-size: 1.02rem; }

@media (max-width: 1200px) {
  .mega-in.wide { grid-template-columns: 200px 1fr 220px; }
  .fact-grid { grid-template-columns: repeat(2, 1fr); }
  .credits { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1000px) {
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stat strong { font-size: 1.5rem; }
  .contact-band-in { grid-template-columns: 1fr; }
  .contact-band-actions { min-width: 0; }
  .sub-grid { grid-template-columns: 1fr; }
  .album-top { grid-template-columns: 1fr; }
  .album-cover { max-width: 380px; }
  .sticky-media { position: static; }
  .reel .disco iframe { height: 460px; }
}
@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr; gap: 10px; }
  .fact-grid, .credits { grid-template-columns: 1fr; }
  .form .row-3 { grid-template-columns: 1fr; }
  .track-card { flex-wrap: wrap; gap: 12px; padding: 12px; }
  .track-main { flex-basis: calc(100% - 62px); }
  .track-actions { flex-basis: 100%; justify-content: space-between; border-top: 1px solid var(--line); padding-top: 10px; }
  .track-meta { white-space: normal; }
  .filter-label { width: 100%; }
  .filter-chip.clear { margin-left: 0; }
  .filters { padding: 14px; }
  .reel .disco iframe { height: 420px; }
  .meta-list > div { grid-template-columns: 1fr; gap: 2px; }
}

/* works table */
.table-scroll { overflow-x: auto; border: 1px solid var(--line); border-radius: var(--r); background: var(--bg); }
.works-table { width: 100%; border-collapse: collapse; font-size: .88rem; min-width: 720px; }
.works-table th { text-align: left; font-family: var(--display); text-transform: uppercase; letter-spacing: .1em; font-size: .72rem; color: var(--muted); padding: 12px 14px; border-bottom: 1px solid var(--line-2); position: sticky; top: 0; background: var(--bg-2); }
.works-table td { padding: 11px 14px; border-bottom: 1px solid var(--line); color: #d4d4d8; vertical-align: top; }
.works-table tr:last-child td { border-bottom: 0; }
.works-table tbody tr:hover td { background: rgba(255, 255, 255, .03); color: #fff; }
.works-table td:first-child { font-weight: 600; color: #fff; white-space: nowrap; }
.works-table .mono { font-variant-numeric: tabular-nums; color: var(--muted); white-space: nowrap; }
