/* =========================================================================
   Almirante Music Productions — stylesheet
   "Poster Wall" theme — bold, color-blocked, screen-print inspired.
   Re-skin: change the colour tokens in :root below.
   ========================================================================= */

:root {
  --blue:   #2733cf;
  --cream:  #f1e9d4;
  --red:    #e23b2c;
  --yellow: #ffc31f;
  --ink:    #15130f;

  --paper:    #faf5e6;   /* lighter cream — form fields */
  --cream-2:  #e7dcbb;   /* deeper cream — alt sections */
  --muted:    #6a6149;   /* muted ink — meta text on cream */
  --muted-cr: rgba(241,233,212,.72); /* muted cream — meta on dark */

  --f-display: 'Archivo Black', system-ui, sans-serif;
  --f-body:    'Bricolage Grotesque', system-ui, -apple-system, sans-serif;
  --f-mono:    'Space Mono', ui-monospace, monospace;

  --maxw:   1240px;
  --shadow: 8px 8px 0 var(--ink);
  --bd:     3px solid var(--ink);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  font-family: var(--f-body);
  background: var(--ink);
  color: var(--ink);
  line-height: 1.6;
  font-size: 17px;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: var(--f-display); font-weight: 400; line-height: .98;
  overflow-wrap: break-word; }
ul, ol { padding-left: 1.15rem; }

.display { font-family: var(--f-display); }
.mono    { font-family: var(--f-mono); }

::selection { background: var(--yellow); color: var(--ink); }
:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

.skip-link {
  position: absolute; left: -999px; top: 0;
  background: var(--yellow); color: var(--ink); padding: .6rem 1rem;
  z-index: 200; font-weight: 700; font-family: var(--f-mono);
}
.skip-link:focus { left: 0; }

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.container.narrow { max-width: 820px; }
.section { padding: 76px 0; background: var(--cream); color: var(--ink); }
.section-alt { background: var(--cream-2); }
.section-more { text-align: center; margin-top: 46px; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 80;
  background: var(--ink);
  border-bottom: 3px solid var(--cream);
}
.site-header.scrolled { box-shadow: 0 10px 0 -4px rgba(0,0,0,.35); }
.header-inner { display: flex; align-items: center; gap: 22px; height: 74px; }
.brand { display: flex; align-items: center; gap: 11px; flex-shrink: 0; color: var(--cream); }
.brand-mark { width: 42px; height: 42px; flex: none; }
.brand-word {
  font-family: var(--f-display); font-size: 1.55rem; text-transform: uppercase;
  letter-spacing: -.02em; line-height: 1;
}
.primary-nav { margin-left: auto; display: flex; gap: 6px; align-items: center; }
.primary-nav a {
  font-family: var(--f-mono); font-weight: 700; font-size: .72rem;
  text-transform: uppercase; letter-spacing: .07em;
  padding: 9px 14px; color: var(--cream);
  border: 2px solid rgba(241,233,212,.4);
}
.primary-nav a:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.primary-nav a.is-active { background: var(--cream); color: var(--ink); border-color: var(--cream); }
.primary-nav a:last-child { background: var(--red); border-color: var(--red); color: var(--cream); }
.primary-nav a:last-child:hover,
.primary-nav a:last-child.is-active { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }
.header-tools { display: flex; gap: 4px; align-items: center; }
.icon-btn {
  display: grid; place-items: center; width: 42px; height: 42px;
  background: transparent; border: 0; color: var(--cream); cursor: pointer;
}
.icon-btn:hover { color: var(--yellow); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; }
.nav-toggle span { width: 21px; height: 2.5px; background: currentColor; }

/* ---------- mobile nav + search overlay ---------- */
.mobile-nav[hidden], .search-overlay[hidden] { display: none; }
.mobile-nav {
  position: fixed; inset: 74px 0 0; z-index: 70;
  background: var(--ink); color: var(--cream); padding: 26px 32px;
  display: flex; flex-direction: column; animation: fade .2s ease;
}
.mobile-nav nav { display: flex; flex-direction: column; }
.mobile-nav a {
  font-family: var(--f-display); font-size: 1.7rem; text-transform: uppercase;
  padding: 16px 2px; border-bottom: 2px solid rgba(241,233,212,.22);
}
.mobile-nav a:hover { color: var(--yellow); }

.search-overlay {
  position: fixed; inset: 0; z-index: 120;
  background: rgba(21,19,15,.97);
  display: flex; align-items: center; justify-content: center;
  padding: 26px; animation: fade .2s ease;
}
.search-overlay form { display: flex; gap: 0; width: min(640px, 100%); }
.search-overlay input {
  flex: 1; background: var(--paper); border: 3px solid var(--cream);
  color: var(--ink); padding: 15px 18px; font-size: 1.05rem;
  font-family: var(--f-body); border-right: 0;
}
.search-overlay button {
  background: var(--red); color: var(--cream); border: 3px solid var(--cream);
  font-family: var(--f-display); text-transform: uppercase;
  padding: 0 24px; cursor: pointer;
}
.search-overlay button:hover { background: var(--yellow); color: var(--ink); }
.search-close {
  position: absolute; top: 22px; right: 30px;
  background: transparent; border: 0; color: var(--cream);
  font-size: 2.6rem; line-height: 1; cursor: pointer;
}
.search-close:hover { color: var(--yellow); }
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ---------- buttons ---------- */
.btn {
  display: inline-block; font-family: var(--f-display); font-size: .92rem;
  text-transform: uppercase; letter-spacing: .02em;
  padding: 15px 32px; cursor: pointer;
  border: var(--bd); box-shadow: 5px 5px 0 var(--ink);
  transition: transform .12s ease, box-shadow .12s ease, background .15s;
}
.btn:hover { transform: translate(-2px,-2px); box-shadow: 8px 8px 0 var(--ink); }
.btn:active { transform: translate(2px,2px); box-shadow: 2px 2px 0 var(--ink); }
.btn-primary { background: var(--red); color: var(--cream); }
.btn-primary:hover { background: var(--yellow); color: var(--ink); }
.btn-ghost { background: var(--yellow); color: var(--ink); }
.btn-ghost:hover { background: var(--cream); }

/* ---------- home: hero ---------- */
.home-hero {
  background: var(--blue); color: var(--cream);
  position: relative; overflow: hidden;
}
.home-hero::before {
  content: ""; position: absolute; right: -8%; top: -30%;
  width: 46vw; height: 46vw; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,195,31,.26), transparent);
}
.home-hero .container {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.22fr .9fr; gap: 50px;
  align-items: center; padding-top: 74px; padding-bottom: 86px;
}
.kicker {
  font-family: var(--f-mono); font-weight: 700; font-size: .76rem;
  letter-spacing: .2em; text-transform: uppercase; color: var(--yellow);
  margin-bottom: 22px;
}
.home-hero-title {
  font-size: clamp(58px, 9vw, 132px); text-transform: uppercase;
  letter-spacing: -.01em; line-height: .84;
}
.home-hero-title .yel {
  color: transparent; -webkit-text-stroke: 2.5px var(--cream);
}
.home-hero-title .yel.solid { color: var(--yellow); -webkit-text-stroke: 0; }
.home-hero-lead {
  margin-top: 26px; font-size: 1.12rem; max-width: 40ch;
  font-weight: 600; color: rgba(241,233,212,.92);
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 30px; }

.hero-covers { position: relative; min-height: 360px; display: flex; align-items: center; justify-content: center; }
.hero-covers .hc {
  position: relative; border: 5px solid var(--cream); display: block;
  box-shadow: 0 28px 44px -18px rgba(0,0,0,.65);
}
.hero-covers .hc1 { width: 55%; transform: rotate(7deg) translateY(-10px); z-index: 2; margin-right: -25%; }
.hero-covers .hc2 { width: 48%; transform: rotate(-11deg) translateY(20px); z-index: 1; }
.hero-sticker {
  position: absolute; z-index: 3; right: 30%; bottom: 12%;
  width: 116px; height: 116px; border-radius: 50%;
  background: var(--yellow); color: var(--ink); border: 3px solid var(--ink);
  display: grid; place-items: center; text-align: center;
  font-family: var(--f-display); font-size: 1rem; text-transform: uppercase;
  line-height: .95; transform: rotate(-15deg);
}

/* ---------- home: marquee ---------- */
.marquee {
  background: var(--yellow); color: var(--ink);
  border-top: 3px solid var(--ink); border-bottom: 3px solid var(--ink);
  overflow: hidden; white-space: nowrap; padding: 11px 0;
}
.marquee span {
  display: inline-block;
  font-family: var(--f-display); font-size: 1.25rem; text-transform: uppercase;
  letter-spacing: .03em;
  animation: marq 38s linear infinite;
}
@keyframes marq { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- home: colour-blocked sections ---------- */
.blk { padding: 78px 0; }
.blk-releases { background: var(--cream); color: var(--ink); }
.blk-artists  { background: var(--red);   color: var(--cream); }
.blk-news     { background: var(--yellow);color: var(--ink); }
.blk-about    { background: var(--ink);   color: var(--cream); }

/* ---------- section head ---------- */
.section-head { margin-bottom: 46px; }
.eyebrow {
  display: inline-block; font-family: var(--f-mono); font-weight: 700;
  text-transform: uppercase; letter-spacing: .12em;
  font-size: .74rem; margin-bottom: 12px; color: var(--red);
}
.section-head h2 {
  font-size: clamp(2.2rem, 5.4vw, 4.2rem); text-transform: uppercase;
  letter-spacing: -.01em;
}
.blk-artists .eyebrow { color: var(--yellow); }
.blk-news .eyebrow    { color: var(--blue); }
.blk-about .eyebrow   { color: var(--yellow); }

/* ---------- page head (inner pages) ---------- */
.page-head {
  background: var(--blue); color: var(--cream);
  border-bottom: 3px solid var(--ink);
  padding: 84px 0 72px;
}
.page-head .eyebrow { color: var(--yellow); }
.page-head h1 {
  font-size: clamp(2.6rem, 6vw, 4.6rem); text-transform: uppercase;
  letter-spacing: -.01em;
}
.page-head-text { color: rgba(241,233,212,.9); max-width: 620px; margin-top: 18px; font-weight: 600; }

/* ---------- grids ---------- */
.grid { display: grid; gap: 38px 34px; }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-artists { grid-template-columns: repeat(3, 1fr); }

/* ---------- cards ---------- */
.card {
  position: relative; background: var(--cream);
  border: var(--bd); box-shadow: var(--shadow);
  transition: transform .16s ease, box-shadow .16s ease;
}
.grid > *:nth-child(3n+1) .card,
.grid > *:nth-child(3n+1).card { transform: rotate(-2deg); }
.grid > *:nth-child(3n+2) .card,
.grid > *:nth-child(3n+2).card { transform: rotate(1.6deg); }
.grid > *:nth-child(3n) .card,
.grid > *:nth-child(3n).card { transform: rotate(-.8deg); }
.card:hover {
  transform: rotate(0) translate(-2px,-3px) !important;
  box-shadow: 11px 12px 0 var(--ink); z-index: 5;
}
.card-media { display: block; overflow: hidden; background: var(--cream-2);
  position: relative; border-bottom: var(--bd); }
.card-media.square { aspect-ratio: 1 / 1; }
.card-media.wide { aspect-ratio: 16 / 10; }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 16px 17px 20px; }
.card-title {
  font-size: 1.16rem; text-transform: uppercase; letter-spacing: -.01em;
}
.card-title a:hover { color: var(--red); }
.card-meta { margin-top: 7px; font-family: var(--f-mono); font-weight: 700;
  font-size: .74rem; text-transform: uppercase; letter-spacing: .04em; }
.card-meta a { color: var(--red); }
.card-meta a:hover { color: var(--blue); }
.card-meta.genres { color: var(--muted); }

/* release card — tape strip */
.release-card::before {
  content: ""; position: absolute; z-index: 4;
  top: -12px; left: 50%; transform: translateX(-50%) rotate(-6deg);
  width: 92px; height: 26px;
  background: rgba(255,195,31,.85); border: 1px dashed rgba(0,0,0,.4);
}

/* post card */
.post-card .badge {
  position: absolute; left: 12px; top: 12px;
  background: var(--red); color: var(--cream);
  font-family: var(--f-mono); font-size: .64rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; padding: 5px 9px;
  border: 2px solid var(--ink);
}
.post-date {
  font-family: var(--f-mono); font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; color: var(--muted);
  margin-bottom: 8px;
}
.card-excerpt { font-size: .95rem; margin-top: 9px; line-height: 1.5; }
.readmore {
  display: inline-block; margin-top: 14px; font-family: var(--f-mono);
  font-weight: 700; font-size: .76rem; text-transform: uppercase;
  letter-spacing: .06em; color: var(--ink);
  border-bottom: 3px solid var(--red); padding-bottom: 1px;
}
.readmore:hover { color: var(--red); }
.readmore::after { content: " \2192"; }

/* ---------- about + cta ---------- */
.section-about .section-head { margin-bottom: 22px; }
.lead { font-size: 1.12rem; font-weight: 600; max-width: 60ch; }
.cta-band {
  background: var(--blue); color: var(--cream);
  border-top: 3px solid var(--ink);
  text-align: center; padding: 90px 0;
}
.cta-band h2 { font-size: clamp(2.6rem, 8vw, 6rem); text-transform: uppercase; }
.cta-band p { margin: 16px auto 30px; max-width: 480px; font-weight: 600;
  color: rgba(241,233,212,.9); }

/* ---------- article / rich text ---------- */
.article h2 {
  font-family: var(--f-body); font-weight: 800; font-size: 1.7rem;
  text-transform: uppercase; letter-spacing: -.01em;
  margin: 40px 0 14px;
}
.article h2:first-child { margin-top: 0; }
.article h3 {
  font-family: var(--f-body); font-weight: 800; font-size: 1.22rem;
  margin: 28px 0 8px;
}
.article p { margin-bottom: 17px; }
.article p:last-child { margin-bottom: 0; }
.article a { color: var(--red); text-decoration: underline; text-underline-offset: 3px;
  font-weight: 700; }
.article a:hover { color: var(--blue); }

/* ---------- breadcrumb ---------- */
.breadcrumb {
  display: flex; gap: 9px; flex-wrap: wrap; align-items: center;
  font-family: var(--f-mono); font-size: .74rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .06em; margin-bottom: 24px;
}
.breadcrumb a { color: var(--red); }
.breadcrumb a:hover { color: var(--blue); }

/* ---------- release detail ---------- */
.detail { background: var(--cream); color: var(--ink); padding: 56px 0 88px; }
.release-top {
  display: grid; grid-template-columns: 400px 1fr; gap: 56px;
  align-items: start; margin-bottom: 24px;
}
.release-cover img {
  width: 100%; border: 5px solid var(--ink);
  box-shadow: 14px 14px 0 var(--red); transform: rotate(-2deg);
}
.release-info .eyebrow { color: var(--red); }
.release-info h1 {
  font-size: clamp(2.2rem, 4.6vw, 3.4rem); text-transform: uppercase;
  margin: 8px 0 22px;
}
.meta-list { margin-bottom: 26px; border-top: 2px solid rgba(21,19,15,.2); }
.meta-list div {
  display: flex; gap: 16px; padding: 11px 0;
  border-bottom: 2px solid rgba(21,19,15,.2);
}
.meta-list dt {
  width: 130px; flex-shrink: 0; font-family: var(--f-mono); font-weight: 700;
  text-transform: uppercase; font-size: .72rem; letter-spacing: .06em;
  color: var(--muted); padding-top: 2px;
}
.meta-list dd { font-weight: 700; }
.meta-list dd a { color: var(--red); }
.meta-list dd a:hover { color: var(--blue); }
.stream-label {
  font-family: var(--f-mono); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; font-size: .74rem; color: var(--muted); margin-bottom: 12px;
}
.stream-links { display: flex; flex-wrap: wrap; gap: 10px; }
.stream-btn {
  font-family: var(--f-mono); font-weight: 700; font-size: .78rem;
  text-transform: uppercase; padding: 9px 16px;
  background: var(--cream); border: 2.5px solid var(--ink);
  box-shadow: 3px 3px 0 var(--ink);
  transition: transform .12s, box-shadow .12s, background .14s;
}
.stream-btn:hover {
  background: var(--red); color: var(--cream);
  transform: translate(-1px,-1px); box-shadow: 5px 5px 0 var(--ink);
}
.detail-body { max-width: 820px; margin: 10px auto 0; }
.tracklist { list-style: none; padding: 0; counter-reset: trk; }
.tracklist li {
  counter-increment: trk; padding: 13px 0;
  border-bottom: 2px solid rgba(21,19,15,.18);
  display: flex; align-items: center; gap: 16px; font-weight: 700;
}
.tracklist li::before {
  content: counter(trk, decimal-leading-zero);
  font-family: var(--f-display); color: var(--red); font-size: 1rem;
}

/* ---------- artist detail ---------- */
.artist-hero {
  background: var(--blue); color: var(--cream);
  border-bottom: 3px solid var(--ink); padding: 50px 0 60px;
}
.artist-hero .breadcrumb a { color: var(--yellow); }
.artist-hero-inner {
  display: grid; grid-template-columns: 280px 1fr; gap: 46px; align-items: center;
}
.artist-photo img {
  width: 100%; aspect-ratio: 1/1; object-fit: cover;
  border: 5px solid var(--cream);
  box-shadow: 14px 14px 0 var(--red); transform: rotate(-2.5deg);
}
.artist-intro .eyebrow { color: var(--yellow); }
.artist-intro h1 {
  font-size: clamp(2.4rem, 5.5vw, 3.8rem); text-transform: uppercase;
  margin: 8px 0 12px;
}
.genres {
  font-family: var(--f-mono); font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; font-size: .82rem; color: var(--yellow);
}
.artist-tagline { font-style: italic; margin-top: 10px; font-weight: 600;
  color: rgba(241,233,212,.9); }
.social-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 22px; }
.social-row a {
  font-family: var(--f-mono); font-weight: 700; font-size: .76rem;
  text-transform: uppercase; padding: 8px 14px;
  border: 2px solid rgba(241,233,212,.5); color: var(--cream);
}
.social-row a:hover { background: var(--yellow); color: var(--ink); border-color: var(--yellow); }

/* ---------- post detail ---------- */
.post-head { background: var(--blue); color: var(--cream);
  border-bottom: 3px solid var(--ink); padding: 60px 0 40px; }
.post-head .breadcrumb a { color: var(--yellow); }
.post-head .badge {
  display: inline-block; background: var(--red); color: var(--cream);
  font-family: var(--f-mono); font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  padding: 6px 12px; border: 2px solid var(--ink); margin-bottom: 16px;
}
.post-head h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); text-transform: uppercase; }
.post-byline { font-family: var(--f-mono); font-size: .8rem; margin-top: 16px;
  color: rgba(241,233,212,.85); }
.post-image-wrapper {
  position: relative;
  width: 100%; max-height: 540px; aspect-ratio: 16/9;
  overflow: hidden; background: var(--ink);
  border: 5px solid var(--ink); box-shadow: var(--shadow); margin: 32px auto 0;
  display: flex; align-items: center; justify-content: center;
}
.post-image-bg {
  position: absolute; inset: -40px;
  background-size: cover; background-position: center;
  filter: blur(25px); opacity: 0.6; z-index: 1;
}
.post-image-contained {
  position: relative; z-index: 2;
  width: auto; height: 100%; max-width: 100%;
  object-fit: contain; box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.post-image {
  width: 100%; max-height: 540px; object-fit: cover;
  border: 5px solid var(--ink); box-shadow: var(--shadow); margin: 32px auto 0;
}
.post {  background: var(--cream); color: var(--ink); }
.post-body { padding-top: 44px; padding-bottom: 24px; }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr .9fr; gap: 48px; }
.contact-form .field { margin-bottom: 20px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.contact-form label {
  display: block; font-family: var(--f-mono); font-weight: 700;
  font-size: .78rem; text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: 8px;
}
.contact-form label span { color: var(--red); }
.contact-form input, .contact-form textarea {
  width: 100%; background: var(--paper); border: 3px solid var(--ink);
  color: var(--ink); padding: 13px 15px; font-family: var(--f-body);
  font-size: 1rem; font-weight: 500;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: var(--red); outline: none;
  box-shadow: 4px 4px 0 var(--red);
}
.contact-form textarea { resize: vertical; }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.field-submit { margin-top: 4px; }
.contact-aside img {
  border: 4px solid var(--ink); box-shadow: var(--shadow);
  margin-bottom: 30px;
}
.contact-details {
  background: var(--cream); border: var(--bd); box-shadow: var(--shadow);
  padding: 24px 26px;
}
.contact-details h2 { font-size: 1.4rem; text-transform: uppercase; margin-bottom: 16px; }
.contact-details p { display: flex; flex-direction: column; gap: 3px; margin-bottom: 14px; }
.contact-details p:last-child { margin-bottom: 0; }
.contact-details span {
  font-family: var(--f-mono); font-weight: 700; text-transform: uppercase;
  font-size: .68rem; letter-spacing: .08em; color: var(--muted);
}
.contact-details a { color: var(--red); font-weight: 700; }
.contact-details a:hover { color: var(--blue); }

/* ---------- search ---------- */
.search-inline { display: flex; gap: 0; max-width: 560px; margin: 26px auto 0; }
.search-inline input {
  flex: 1; background: var(--paper); border: 3px solid var(--ink);
  border-right: 0; color: var(--ink);
  padding: 12px 16px; font-family: var(--f-body); font-size: 1rem;
}
.search-inline .btn { box-shadow: none; }
.search-inline .btn:hover { transform: none; box-shadow: none; }
.search-group {
  font-family: var(--f-display); font-size: 1.7rem; text-transform: uppercase;
  margin: 44px 0 24px; padding-bottom: 10px; border-bottom: 3px solid var(--ink);
}
.search-group:first-child { margin-top: 0; }

/* ---------- flash / misc ---------- */
.flash {
  padding: 14px 18px; margin: 24px 0; font-weight: 600;
  border: 3px solid var(--ink); box-shadow: 5px 5px 0 var(--ink);
}
.flash ul { margin: 6px 0 0; }
.flash-success { background: #cdebc3; color: var(--ink); }
.flash-error   { background: #f4c7c1; color: var(--ink); }
.empty {
  text-align: center; color: var(--muted); padding: 48px 0;
  font-family: var(--f-mono); font-weight: 700; text-transform: uppercase;
  letter-spacing: .04em;
}

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: var(--cream); padding: 56px 0 26px;
  border-top: 3px solid var(--yellow); }
.footer-inner {
  display: flex; justify-content: space-between; align-items: center;
  gap: 32px; flex-wrap: wrap;
  padding-bottom: 32px; border-bottom: 2px solid rgba(241,233,212,.22);
}
.footer-logo { display: flex; align-items: center; gap: 14px; margin-bottom: 14px;
  color: var(--cream); }
.footer-mark { width: 56px; height: 56px; flex: none; }
.footer-word { font-family: var(--f-display); font-size: 1.7rem; text-transform: uppercase;
  letter-spacing: -.02em; line-height: .9; }
.footer-word .fw-name { display: block; }
.footer-word small { display: block; font-family: var(--f-mono); font-weight: 700;
  font-size: .58rem; letter-spacing: .12em; margin-top: 6px; color: var(--muted-cr);
  white-space: nowrap; }
.footer-brand p { color: var(--muted-cr); font-size: .9rem; max-width: 38ch; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; }
.footer-nav a {
  font-family: var(--f-mono); font-weight: 700; font-size: .76rem;
  text-transform: uppercase; letter-spacing: .04em; color: var(--cream);
}
.footer-nav a:hover { color: var(--yellow); }
.footer-bottom {
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  padding-top: 22px; font-family: var(--f-mono); font-size: .74rem;
  color: var(--muted-cr); text-transform: uppercase; letter-spacing: .04em;
}
.footer-bottom a:hover { color: var(--yellow); }

/* ---------- responsive ---------- */
@media (max-width: 1040px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-artists { grid-template-columns: repeat(2, 1fr); }
  .release-top { grid-template-columns: 320px 1fr; gap: 38px; }
}
@media (max-width: 880px) {
  .primary-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-tools { margin-left: auto; }
  .home-hero .container { grid-template-columns: 1fr; gap: 38px;
    padding-top: 56px; padding-bottom: 60px; }
  .hero-covers { min-height: 0; padding: 20px 0; }
  .hero-covers .hc { width: 60%; max-width: 320px; }
  .hero-covers .hc1 { transform: rotate(5deg); margin-right: -30%; }
  .hero-covers .hc2 { transform: rotate(-9deg) translateY(15px); }
  .hero-sticker { display: none; }
  .section, .blk { padding: 56px 0; }
  .contact-grid { grid-template-columns: 1fr; gap: 34px; }
  .artist-hero-inner { grid-template-columns: 200px 1fr; gap: 30px; }
  .release-top { grid-template-columns: 1fr; gap: 30px; }
  .release-cover { max-width: 360px; }
}
@media (max-width: 560px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .grid-4, .grid-3, .grid-artists { grid-template-columns: 1fr; }
  .grid { gap: 30px; }
  .field-row { grid-template-columns: 1fr; }
  .artist-hero-inner { grid-template-columns: 1fr; text-align: center; }
  .artist-photo { max-width: 240px; margin: 0 auto; }
  .social-row { justify-content: center; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .home-hero-title { font-size: clamp(32px, 11.5vw, 80px); }
  .brand-word { font-size: 1.28rem; }
  .brand-mark { width: 37px; height: 37px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; transition-duration: .01ms !important;
      scroll-behavior: auto; }
  .marquee span { animation: none; }
  .card, .grid > * .card { transform: none !important; }
}
