:root {
  --black: #0a0907;
  --black-2: #15120e;
  --black-3: #1c1812;
  --red: #c9a24a;
  --red-dark: #9a7a2f;
  --gold: #d4aa53;
  --gold-soft: #e8c97a;
  --gold-deep: #a67c2d;
  --white: #ffffff;
  --soft: #f7f3ea;
  --muted: #a89f8e;
  --text: #1f1a12;
  --line: rgba(212, 170, 83, .22);
  --line-light: rgba(166, 124, 45, .16);
  --shadow: 0 28px 80px rgba(20, 14, 6, .4);
  --font: Roboto, system-ui, sans-serif;
  --display: Oswald, Impact, sans-serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 8px; z-index: 99; background: #fff; color: #000; padding: 8px; }
.skip-link:focus { left: 8px; }

.top-strip {
  background: linear-gradient(90deg, #9a7a2f, #d4aa53 45%, #e8c97a 70%, #c9a24a);
  color: #1a1408;
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.top-strip-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-strip a { margin-left: 16px; }
.top-strip a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(7,7,9,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; background: #fff; }
.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  line-height: 1;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.brand small {
  display: block;
  color: var(--muted);
  font-size: .68rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}
.menu { display: flex; align-items: center; gap: 2px; }
.menu a {
  color: #f2f2f3;
  padding: 12px 12px;
  font-size: .84rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .04em;
}
.menu a:hover { color: var(--red); }
.nav-cta { background: linear-gradient(135deg, #e8c97a, #c9a24a); color: #1a1408 !important; margin-left: 8px; }
.nav-toggle {
  display: none;
  background: linear-gradient(135deg, #e8c97a, #c9a24a);
  color: #1a1408;
  border: 0;
  padding: 10px 14px;
  font: inherit;
  font-weight: 800;
  text-transform: uppercase;
}

.mf-hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  background: var(--black);
  color: #fff;
}
.hero-bg, .hero-overlay { position: absolute; inset: 0; }
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .58;
  filter: saturate(1.08) contrast(1.08);
}
.hero-overlay {
  background:
    radial-gradient(circle at 75% 35%, rgba(212,170,83,.35), transparent 34%),
    linear-gradient(90deg, rgba(7,7,9,.95) 0%, rgba(7,7,9,.74) 45%, rgba(7,7,9,.45) 100%),
    linear-gradient(180deg, transparent 0%, var(--black) 100%);
}
.hero-layout {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-family: var(--display);
  font-size: .9rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.eyebrow.red { color: var(--red); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(4.8rem, 11vw, 9.6rem);
  line-height: .82;
  text-transform: uppercase;
  letter-spacing: -.04em;
}
h2 {
  margin: 0 0 16px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: .95;
  text-transform: uppercase;
}
.lead {
  max-width: 620px;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  margin-bottom: 0;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 13px 22px;
  border: 1px solid transparent;
  font: inherit;
  font-size: .86rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-red { background: linear-gradient(135deg, #e8c97a, #c9a24a 55%, #a67c2d); color: #1a1408; }
.btn-red:hover { background: #fff; color: #a67c2d; }
.btn-line { color: #fff; border-color: rgba(255,255,255,.4); background: rgba(255,255,255,.04); }
.btn-line:hover { border-color: var(--red); color: #fff; background: var(--red); }
.hero-event-card {
  align-self: end;
  margin-bottom: 70px;
  background: rgba(16,16,20,.84);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 28px;
  max-width: 420px;
  justify-self: end;
}
.event-label {
  display: inline-block;
  background: linear-gradient(135deg, #e8c97a, #c9a24a);
  color: #1a1408;
  padding: 7px 12px;
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 16px;
}
.hero-event-card h2 { font-size: clamp(1.8rem, 3vw, 2.8rem); }
.hero-event-card p { color: var(--muted); }
.countdown { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 18px; }
.countdown div { background: #fff; color: var(--black); padding: 14px 10px; text-align: center; }
.countdown strong { display: block; font-family: var(--display); font-size: 2rem; line-height: 1; color: var(--red); }
.countdown span { font-size: .7rem; font-weight: 900; text-transform: uppercase; }

.music-player {
  background: linear-gradient(90deg, #9a7a2f, #c9a24a 40%, #d4aa53 70%, #a67c2d);
  color: #1a1408;
  transform: translateY(-1px);
}
.player-inner {
  min-height: 86px;
  display: grid;
  grid-template-columns: auto auto minmax(180px, 1fr) 1.2fr auto;
  gap: 16px;
  align-items: center;
}
.play-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: #1a1408;
  color: #e8c97a;
  font-size: 1.1rem;
  cursor: pointer;
}
.player-cover { width: 54px; height: 54px; background: #fff center/cover; border: 2px solid rgba(26,20,8,.25); }
.player-meta span {
  display: block;
  font-size: .68rem;
  text-transform: uppercase;
  letter-spacing: .12em;
  opacity: .78;
  font-weight: 900;
}
.player-meta strong { font-family: var(--display); font-size: 1.25rem; text-transform: uppercase; color: #1a1408; }
.wave { display: flex; align-items: center; gap: 5px; height: 34px; }
.wave i {
  display: block;
  width: 5px;
  height: 18px;
  background: rgba(26,20,8,.55);
  animation: wave 1.1s ease-in-out infinite;
}
.wave i:nth-child(2) { animation-delay: .1s; }
.wave i:nth-child(3) { animation-delay: .2s; }
.wave i:nth-child(4) { animation-delay: .3s; }
.wave i:nth-child(5) { animation-delay: .4s; }
.wave i:nth-child(6) { animation-delay: .5s; }
.wave i:nth-child(7) { animation-delay: .6s; }
@keyframes wave { 50% { height: 34px; } }
.player-link { font-weight: 900; text-transform: uppercase; font-size: .82rem; color: #1a1408; }

.section { padding: 92px 0; }
.artist-intro { background: #fff; }
.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: center;
}
.intro-poster {
  position: relative;
  padding: 18px;
  background: var(--black);
}
.intro-poster::after {
  content: "";
  position: absolute;
  inset: 34px -18px -18px 34px;
  border: 6px solid var(--red);
  z-index: -1;
}
.intro-poster img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.prose { color: #666b78; font-size: 1.04rem; }
.prose strong { color: var(--black); }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}
.stat-row div {
  background: var(--black);
  color: #fff;
  padding: 18px;
  border-left: 5px solid var(--red);
}
.stat-row strong { display: block; font-family: var(--display); font-size: 2.2rem; line-height: 1; }
.stat-row span { color: var(--muted); font-size: .75rem; font-weight: 900; text-transform: uppercase; }

.dark-section {
  background:
    linear-gradient(rgba(7,7,9,.94), rgba(7,7,9,.94)),
    url("/assets/img/hero-stage.jpg") center/cover fixed;
  color: #fff;
}
.section-head { margin-bottom: 44px; }
.centered { text-align: center; max-width: 760px; margin-inline: auto; }
.section-head p { color: #747681; margin-bottom: 0; }
.dark-section .section-head p { color: var(--muted); }
.split-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
}

.album-carousel {
  position: relative;
  min-height: 420px;
  margin-bottom: 18px;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 28px;
  align-items: center;
  transition: opacity .7s ease;
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide a { display: contents; }
.hero-slide img {
  width: min(420px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  justify-self: end;
  box-shadow: var(--shadow);
}
.hero-slide-cap {
  padding: 32px;
  background: rgba(16,16,20,.9);
  border: 1px solid var(--line);
}
.hero-slide-cap span {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
}
.hero-slide-cap strong {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: .9;
  text-transform: uppercase;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 42px;
}
.slider-dots button {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255,255,255,.32);
  cursor: pointer;
}
.slider-dots button.is-active { width: 30px; border-radius: 999px; background: var(--red); }
.album-grid, .store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.album-tile, .store-card {
  position: relative;
  display: block;
  background: var(--black-2);
  overflow: hidden;
  border: 1px solid var(--line);
}
.album-tile img, .store-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .35s ease, opacity .35s ease;
}
.album-tile:hover img, .store-card:hover img { transform: scale(1.06); opacity: .75; }
.album-tile-info, .store-card-body {
  padding: 16px;
  background: var(--black-2);
}
.album-tile-info h3, .store-card h3 {
  margin: 6px 0 0;
  font-family: var(--display);
  text-transform: uppercase;
  color: #fff;
  font-size: 1.25rem;
}
.album-tile-info span, .store-card span {
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.track-section { background: #f6f6f7; }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-bar button {
  border: 1px solid var(--line-light);
  background: #fff;
  padding: 9px 14px;
  font: inherit;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}
.filter-bar button.is-active { background: linear-gradient(135deg, #e8c97a, #c9a24a); border-color: #c9a24a; color: #1a1408; }
.track-list { display: grid; gap: 10px; }
.work-card {
  display: grid;
  grid-template-columns: 88px 1fr auto;
  align-items: center;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--line-light);
  padding: 10px 16px 10px 10px;
  transition: transform .18s ease, box-shadow .18s ease;
}
.work-card:hover { transform: translateY(-2px); box-shadow: 0 16px 38px rgba(0,0,0,.08); }
.work-card img { width: 88px; height: 88px; object-fit: cover; }
.work-card .type { color: var(--red); font-size: .72rem; font-weight: 900; text-transform: uppercase; }
.work-card h3 { margin: 4px 0 2px; font-family: var(--display); text-transform: uppercase; font-size: 1.45rem; }
.work-card p { margin: 0; color: #757985; font-size: .9rem; }
.work-card .track-actions { display: flex; gap: 8px; align-items: center; }
.work-card a.listen, .work-card a.detail {
  color: var(--black);
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
}
.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.seo-keywords a {
  background: #fff;
  border: 1px solid var(--line-light);
  color: #777b86;
  padding: 6px 10px;
  font-size: .76rem;
  font-weight: 700;
}

.events-section { background: #fff; }
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.event-grid article {
  padding: 26px;
  min-height: 260px;
  background: var(--black);
  color: #fff;
  border-bottom: 6px solid var(--red);
}
.event-grid span {
  display: block;
  font-family: var(--display);
  color: var(--red);
  font-size: 2.2rem;
  margin-bottom: 16px;
}
.event-grid h3 { font-family: var(--display); font-size: 1.8rem; text-transform: uppercase; }
.event-grid p { color: var(--muted); }
.event-grid a { color: #fff; font-weight: 900; text-transform: uppercase; border-bottom: 2px solid var(--red); }

.store-section { background: #f6f6f7; }
.store-card p { margin: 8px 0 12px; color: var(--muted); font-size: .9rem; }
.store-card a { color: #fff; font-weight: 900; font-size: .8rem; text-transform: uppercase; }
.video-grid, .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.video-card, .news-card {
  background: var(--black-2);
  border: 1px solid var(--line);
  color: #fff;
  overflow: hidden;
}
.news-section { background: #fff; }
.news-card { background: #fff; color: var(--text); border-color: var(--line-light); }
.video-card img, .news-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.video-card-body, .news-card-body { padding: 18px; }
.video-card h3, .news-card h3 {
  margin: 0 0 10px;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.4rem;
}
.video-card a, .news-card a { color: var(--red); font-weight: 900; text-transform: uppercase; font-size: .8rem; }
.platform-row { display: flex; flex-wrap: wrap; gap: 8px; }
.platform-row a {
  color: #fff;
  border: 1px solid var(--line);
  padding: 9px 12px;
  font-size: .78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.booking-section {
  background:
    linear-gradient(rgba(7,7,9,.88), rgba(7,7,9,.9)),
    url("/assets/img/hero-stage.jpg") center/cover;
  color: #fff;
}
.booking-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 52px;
  align-items: start;
}
.booking-layout .prose { color: var(--muted); }
.contact-stack { display: grid; gap: 10px; margin: 26px 0; }
.contact-stack a {
  display: block;
  background: rgba(255,255,255,.06);
  border-left: 5px solid var(--red);
  padding: 14px 16px;
  color: #fff;
  font-weight: 900;
}
.faq-grid { display: grid; gap: 10px; }
.faq-grid details {
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  padding: 0 14px;
}
.faq-grid summary { cursor: pointer; padding: 13px 0; font-weight: 900; }
.faq-grid p { color: var(--muted); margin: 0 0 14px; }
.booking-form {
  display: grid;
  gap: 12px;
  background: rgba(16,16,20,.92);
  border: 1px solid var(--line);
  padding: 28px;
  box-shadow: var(--shadow);
}
label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #0b0b0f;
  color: #fff;
  padding: 13px;
  font: inherit;
}
.form-note { color: var(--muted); margin: 0; font-size: .85rem; }

.site-footer {
  background: #030304;
  color: var(--muted);
  padding: 48px 0 24px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.footer-brand { display: flex; gap: 12px; align-items: start; }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; background: #fff; }
.footer-brand strong { display: block; color: #fff; font-family: var(--display); font-size: 1.5rem; text-transform: uppercase; }
.footer-cols > div > strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 12px;
}
.footer-cols a { display: block; margin-top: 8px; }
.footer-cols a:hover { color: var(--red); }
.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 16px;
  font-size: .85rem;
}

.footer-tools {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: stretch;
  margin-top: 28px;
}
.footer-search {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0;
  border: 1px solid var(--line);
  background: #0d0d12;
}
.footer-search input {
  border: 0;
  background: transparent;
  color: #fff;
  padding: 14px 16px;
  font: inherit;
  min-width: 0;
}
.footer-search button,
.footer-wa {
  border: 0;
  background: linear-gradient(135deg, #e8c97a, #c9a24a);
  color: #1a1408;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 0 18px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.footer-wa {
  background: linear-gradient(135deg, #e8c97a, #a67c2d);
  min-width: 140px;
  color: #1a1408;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

.mobile-dock {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 80;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(7,7,9,.96);
  border-top: 1px solid var(--line);
  padding: 0;
  padding-bottom: env(safe-area-inset-bottom);
  backdrop-filter: blur(12px);
}
.dock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .84rem;
  border: 0;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}
.dock-search { background: #15120e; color: #e8c97a; }
.dock-wa { background: linear-gradient(135deg, #e8c97a, #c9a24a); color: #1a1408; }

.search-sheet {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0,0,0,.72);
  display: grid;
  align-items: end;
}
.search-sheet[hidden] { display: none !important; }
.search-sheet-panel {
  background: #111116;
  color: #fff;
  border-top: 4px solid var(--red);
  padding: 18px 18px calc(18px + env(safe-area-inset-bottom));
  max-height: 78vh;
  overflow: auto;
}
.search-sheet-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}
.search-sheet-head strong {
  font-family: var(--display);
  text-transform: uppercase;
  font-size: 1.4rem;
}
.search-sheet-head button {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}
.search-sheet-panel > input {
  width: 100%;
  border: 1px solid var(--line);
  background: #0b0b0f;
  color: #fff;
  padding: 14px;
  font: inherit;
  margin-bottom: 12px;
}
.search-results { display: grid; gap: 8px; }
.search-hit {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  padding: 8px;
  border: 1px solid var(--line);
  background: #0d0d12;
  color: #fff;
}
.search-hit img { width: 56px; height: 56px; object-fit: cover; }
.search-hit strong { display: block; font-family: var(--display); text-transform: uppercase; }
.search-hit span { color: var(--muted); font-size: .78rem; }
.search-empty { color: var(--muted); padding: 12px 0; }

.contact-band {
  background: var(--black);
  color: #fff;
}
.contact-band .light-text h2,
.contact-band .light-text p { color: #fff; }
.contact-band .section-head p { color: var(--muted); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-bottom: 28px;
}
.contact-card {
  background: var(--black-2);
  border: 1px solid var(--line);
  padding: 24px;
  border-left: 5px solid var(--red);
}
.contact-card span {
  display: block;
  color: var(--red);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.contact-card strong a { color: #fff; }
.contact-card p { margin: 0; color: var(--muted); font-size: .92rem; }
.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}
.social-grid a {
  padding: 12px 18px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.04);
  color: #fff;
  font-weight: 900;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .06em;
}
.social-grid a:hover { background: linear-gradient(135deg, #e8c97a, #c9a24a); border-color: #c9a24a; color: #1a1408; }

.page-work { background: #f6f6f7; }
.work-page { padding: 48px 0 90px; }
.breadcrumb { margin-bottom: 28px; color: #737783; font-size: .86rem; }
.work-detail {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 42px;
  background: #fff;
  padding: 28px;
  border: 1px solid var(--line-light);
}
.work-detail img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.work-detail h1 { color: var(--black); font-size: clamp(2.6rem, 6vw, 5rem); }
.page-work .btn.ghost { color: var(--black); border-color: var(--line-light); }

@media (max-width: 980px) {
  .top-strip-inner { flex-direction: column; align-items: flex-start; padding: 10px 0; }
  .nav-toggle { display: inline-flex; }
  .menu {
    position: absolute;
    top: 82px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    background: var(--black);
    border: 1px solid var(--line);
    padding: 12px;
  }
  .menu.open { display: flex; }
  .nav-cta { margin-left: 0; text-align: center; }
  .hero-layout, .intro-grid, .booking-layout, .work-detail, .hero-slide, .split-head {
    grid-template-columns: 1fr;
    display: grid;
  }
  .hero-layout, .mf-hero { min-height: auto; }
  .hero-layout { padding: 72px 0; }
  .hero-event-card { justify-self: stretch; margin-bottom: 0; max-width: none; }
  .player-inner { grid-template-columns: auto auto 1fr; padding: 14px 0; }
  .wave, .player-link { display: none; }
  .album-grid, .store-grid, .event-grid, .video-grid, .news-grid, .footer-cols, .contact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .album-carousel { min-height: 680px; }
  .hero-slide img { justify-self: start; }
}
@media (max-width: 640px) {
  .wrap { width: min(100% - 28px, 1180px); }
  .section { padding: 64px 0; }
  h1 { font-size: clamp(4rem, 18vw, 6rem); }
  .album-grid, .store-grid, .event-grid, .video-grid, .news-grid, .footer-cols, .stat-row, .contact-grid {
    grid-template-columns: 1fr;
  }
  .work-card { grid-template-columns: 72px 1fr; }
  .work-card img { width: 72px; height: 72px; }
  .work-card .track-actions { grid-column: 2; }
  .hero-actions .btn, .booking-form .btn { width: 100%; }
  .footer-bottom { flex-direction: column; }
  .footer-tools { grid-template-columns: 1fr; }
  .footer-wa { min-height: 48px; }
  .mobile-dock { display: grid; }
  .site-footer { padding-bottom: 88px; }
  body { padding-bottom: 56px; }
}
