:root {
  --black: #0c0a08;
  --black-2: #16120e;
  --black-3: #211c16;
  --ink: #14110e;
  --gold: #c9a24a;
  --gold-soft: #e6c97a;
  --gold-deep: #9a7530;
  --red: var(--gold);
  --cream: #f4efe6;
  --cream-2: #ebe3d6;
  --soft: #f7f3ea;
  --muted: #8a8173;
  --muted-light: #b7ae9f;
  --text: #1c1814;
  --line: rgba(201, 162, 74, .22);
  --line-light: rgba(28, 24, 20, .1);
  --shadow: 0 24px 60px rgba(12, 8, 4, .28);
  --shadow-soft: 0 12px 36px rgba(12, 8, 4, .12);
  --radius: 14px;
  --radius-sm: 10px;
  --font: Outfit, system-ui, sans-serif;
  --display: "Cormorant Garamond", Georgia, serif;
  --ease: cubic-bezier(.22, 1, .36, 1);
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font);
  color: var(--text);
  background:
    radial-gradient(ellipse at 20% 0%, rgba(201,162,74,.08), transparent 42%),
    linear-gradient(180deg, #f8f4ec 0%, var(--cream) 40%, #f1ebe1 100%);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; transition: color .2s var(--ease), opacity .2s var(--ease); }
.wrap { width: min(1160px, 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(105deg, #8d6a28, #c9a24a 40%, #e6c97a 68%, #b8923f);
  color: #1a1408;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.top-strip-inner {
  min-height: 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.top-strip a { margin-left: 14px; opacity: .9; }
.top-strip a:hover { opacity: 1; text-decoration: underline; text-underline-offset: 3px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(12, 10, 8, .88);
  backdrop-filter: blur(18px) saturate(1.2);
  border-bottom: 1px solid rgba(201,162,74,.18);
}
.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand { display: flex; align-items: center; gap: 14px; color: #fff; }
.brand img {
  width: 48px; height: 48px;
  border-radius: 50%;
  object-fit: cover;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(201,162,74,.35);
}
.brand strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .01em;
}
.brand small {
  display: block;
  color: var(--muted-light);
  font-size: .68rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
}
.menu { display: flex; align-items: center; gap: 2px; }
.menu a {
  color: rgba(255,255,255,.82);
  padding: 10px 12px;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.menu a:hover { color: var(--gold-soft); }
.nav-cta {
  margin-left: 8px;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1408 !important;
  border-radius: 999px;
  padding: 11px 18px !important;
  box-shadow: 0 8px 24px rgba(201,162,74,.25);
}
.nav-toggle {
  display: none;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1408;
  border: 0;
  border-radius: 999px;
  padding: 10px 16px;
  font: inherit;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.mf-hero {
  position: relative;
  min-height: min(88vh, 820px);
  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: .55;
  transform: scale(1.04);
  animation: heroZoom 18s var(--ease) infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.02); }
  to { transform: scale(1.08); }
}
.hero-overlay {
  background:
    radial-gradient(ellipse at 78% 30%, rgba(201,162,74,.28), transparent 38%),
    linear-gradient(105deg, rgba(12,10,8,.96) 0%, rgba(12,10,8,.72) 48%, rgba(12,10,8,.35) 100%),
    linear-gradient(180deg, transparent 55%, rgba(12,10,8,.95) 100%);
}
.hero-layout {
  position: relative;
  z-index: 2;
  min-height: inherit;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 48px;
  align-items: center;
  padding: 72px 0 64px;
}
.eyebrow {
  margin: 0 0 16px;
  color: var(--gold-soft);
  font-size: .74rem;
  font-weight: 600;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.eyebrow.red { color: var(--gold-deep); }
h1, h2, h3, p { margin-top: 0; }
h1 {
  margin: 0 0 22px;
  font-family: var(--display);
  font-size: clamp(4.2rem, 10vw, 8.2rem);
  line-height: .88;
  font-weight: 600;
  letter-spacing: -.02em;
}
h2 {
  margin: 0 0 14px;
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.6rem);
  line-height: 1.05;
  font-weight: 600;
}
.lead {
  max-width: 34ch;
  color: rgba(255,255,255,.78);
  font-size: 1.08rem;
  margin-bottom: 0;
  font-weight: 400;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 50px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font: inherit;
  font-size: .84rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform .25s var(--ease), background .25s var(--ease), color .25s var(--ease), box-shadow .25s var(--ease);
}
.btn:hover { transform: translateY(-2px); }
.btn-red {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold) 55%, var(--gold-deep));
  color: #1a1408;
  box-shadow: 0 12px 30px rgba(201,162,74,.28);
}
.btn-red:hover { box-shadow: 0 16px 36px rgba(201,162,74,.38); }
.btn-line {
  color: #fff;
  border-color: rgba(255,255,255,.28);
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(8px);
}
.btn-line:hover {
  border-color: var(--gold);
  background: rgba(201,162,74,.12);
}
.hero-event-card {
  justify-self: end;
  align-self: end;
  width: min(100%, 400px);
  margin-bottom: 20px;
  padding: 28px;
  background: rgba(22, 18, 14, .72);
  border: 1px solid rgba(201,162,74,.28);
  border-radius: var(--radius);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  animation: riseIn .9s var(--ease) both;
}
@keyframes riseIn {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: none; }
}
.hero-copy { animation: riseIn .8s var(--ease) both; }
.event-label {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1408;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero-event-card h2 { font-size: clamp(1.8rem, 3vw, 2.5rem); }
.hero-event-card p { color: var(--muted-light); margin-bottom: 18px; }
.countdown { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.countdown div {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  padding: 14px 10px;
  text-align: center;
  border-radius: var(--radius-sm);
}
.countdown strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
  color: var(--gold-deep);
}
.countdown span { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); }

.music-player {
  background: linear-gradient(105deg, #8d6a28, #c9a24a 42%, #e6c97a 72%, #b8923f);
  color: #1a1408;
  box-shadow: 0 18px 40px rgba(154,117,48,.25);
}
.player-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto auto minmax(180px, 1fr) 1.2fr auto;
  gap: 16px;
  align-items: center;
}
.play-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  border: 0;
  background: #1a1408;
  color: var(--gold-soft);
  font-size: 1rem;
  cursor: pointer;
  transition: transform .2s var(--ease);
}
.play-btn:hover { transform: scale(1.06); }
.player-cover {
  width: 52px; height: 52px;
  border-radius: 10px;
  background: #fff center/cover;
  box-shadow: 0 0 0 2px rgba(26,20,8,.18);
}
.player-meta span {
  display: block;
  font-size: .66rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: .7;
}
.player-meta strong {
  font-family: var(--display);
  font-size: 1.35rem;
  font-weight: 600;
  color: #1a1408;
}
.wave { display: flex; align-items: center; gap: 4px; height: 34px; }
.wave i {
  display: block;
  width: 4px;
  height: 16px;
  border-radius: 999px;
  background: rgba(26,20,8,.45);
  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: 32px; } }
.player-link { font-weight: 700; font-size: .78rem; letter-spacing: .1em; text-transform: uppercase; color: #1a1408; }

.section { padding: 96px 0; }
.artist-intro { background: transparent; }
.intro-grid {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
.intro-poster {
  position: relative;
  padding: 16px;
  background: var(--black);
  border-radius: var(--radius);
}
.intro-poster::after {
  content: "";
  position: absolute;
  inset: 28px -14px -14px 28px;
  border: 2px solid var(--gold);
  border-radius: var(--radius);
  z-index: -1;
  opacity: .7;
}
.intro-poster img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: calc(var(--radius) - 4px);
}
.prose { color: var(--muted); font-size: 1.05rem; }
.prose strong { color: var(--ink); }
.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}
.stat-row div {
  background: var(--black);
  color: #fff;
  padding: 18px 16px;
  border-radius: var(--radius-sm);
  border-top: 3px solid var(--gold);
}
.stat-row strong {
  display: block;
  font-family: var(--display);
  font-size: 2.1rem;
  line-height: 1;
  color: var(--gold-soft);
}
.stat-row span {
  color: var(--muted-light);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.dark-section {
  background:
    linear-gradient(180deg, rgba(12,10,8,.94), rgba(12,10,8,.97)),
    url("/assets/img/hero-stage.jpg") center/cover fixed;
  color: #fff;
  position: relative;
}
.dark-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(201,162,74,.12), transparent 50%);
  pointer-events: none;
}
.section-head { margin-bottom: 44px; position: relative; }
.centered { text-align: center; max-width: 680px; margin-inline: auto; }
.section-head p { color: var(--muted); margin-bottom: 0; }
.dark-section .section-head p { color: var(--muted-light); }
.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: 32px;
  align-items: center;
  transition: opacity .8s var(--ease);
}
.hero-slide.is-active { opacity: 1; pointer-events: auto; }
.hero-slide a { display: contents; }
.hero-slide img {
  width: min(400px, 100%);
  aspect-ratio: 1;
  object-fit: cover;
  justify-self: end;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-slide-cap {
  padding: 32px;
  background: rgba(22, 18, 14, .82);
  border: 1px solid rgba(201,162,74,.25);
  border-radius: var(--radius);
  backdrop-filter: blur(12px);
}
.hero-slide-cap span {
  color: var(--gold-soft);
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-size: .72rem;
}
.hero-slide-cap strong {
  display: block;
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.8rem);
  line-height: .95;
  font-weight: 600;
}
.slider-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 42px;
}
.slider-dots button {
  width: 8px; height: 8px;
  border: 0;
  border-radius: 50%;
  padding: 0;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: width .25s var(--ease), background .25s var(--ease);
}
.slider-dots button.is-active {
  width: 28px;
  border-radius: 999px;
  background: var(--gold-soft);
}

.album-grid, .store-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.album-tile, .store-card {
  position: relative;
  display: block;
  background: rgba(22,18,14,.9);
  overflow: hidden;
  border: 1px solid rgba(201,162,74,.18);
  border-radius: var(--radius);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.album-tile:hover, .store-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,.35);
  border-color: rgba(201,162,74,.45);
}
.album-tile img, .store-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .55s var(--ease);
}
.album-tile:hover img, .store-card:hover img { transform: scale(1.05); }
.album-tile-info, .store-card-body {
  padding: 16px;
  background: linear-gradient(180deg, transparent, rgba(12,10,8,.96) 28%);
}
.album-tile-info h3,
.store-card h3 {
  margin: 6px 0 0;
  font-family: var(--display);
  color: #fff;
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
}
.album-tile-info h3 a { color: #fff; }
.album-platforms {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}
.album-platforms a {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #1a1408 !important;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  padding: 6px 9px;
  border-radius: 999px;
}
.album-tile-info span, .store-card span {
  color: var(--gold-soft);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.track-section { background: rgba(255,255,255,.45); }
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; }
.filter-bar button {
  border: 1px solid var(--line-light);
  background: rgba(255,255,255,.8);
  padding: 9px 14px;
  font: inherit;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 999px;
  transition: background .2s var(--ease), color .2s var(--ease);
}
.filter-bar button.is-active {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: transparent;
  color: #1a1408;
}
.track-list { display: grid; gap: 10px; }
.work-card {
  display: grid;
  grid-template-columns: 84px 1fr auto;
  align-items: center;
  gap: 16px;
  background: rgba(255,255,255,.82);
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  padding: 10px 16px 10px 10px;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.work-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-soft);
}
.work-card img {
  width: 84px; height: 84px;
  object-fit: cover;
  border-radius: 10px;
}
.work-card .type {
  color: var(--gold-deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.work-card h3 {
  margin: 4px 0 2px;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 600;
}
.work-card p { margin: 0; color: var(--muted); font-size: .9rem; }
.work-card .track-actions { display: flex; gap: 10px; align-items: center; }
.work-card a.listen, .work-card a.detail {
  color: var(--ink);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
}
.seo-keywords {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.seo-keywords a {
  background: rgba(255,255,255,.7);
  border: 1px solid var(--line-light);
  color: var(--muted);
  padding: 6px 12px;
  font-size: .74rem;
  font-weight: 600;
  border-radius: 999px;
}

.events-section { background: transparent; }
.event-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.event-grid article {
  padding: 28px;
  min-height: 250px;
  background: var(--black);
  color: #fff;
  border-radius: var(--radius);
  border-bottom: 3px solid var(--gold);
  transition: transform .3s var(--ease);
}
.event-grid article:hover { transform: translateY(-4px); }
.event-grid span {
  display: block;
  font-family: var(--display);
  color: var(--gold-soft);
  font-size: 2rem;
  margin-bottom: 14px;
}
.event-grid h3 { font-family: var(--display); font-size: 1.7rem; font-weight: 600; }
.event-grid p { color: var(--muted-light); }
.event-grid a {
  color: #fff;
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--gold);
}

.store-section { background: rgba(255,255,255,.4); }
.store-card p { margin: 8px 0 12px; color: var(--muted-light); font-size: .9rem; }
.store-card a { color: var(--gold-soft); font-weight: 700; font-size: .78rem; letter-spacing: .06em; text-transform: uppercase; }
.video-grid, .news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.video-card, .news-card {
  background: rgba(22,18,14,.92);
  border: 1px solid rgba(201,162,74,.18);
  color: #fff;
  overflow: hidden;
  border-radius: var(--radius);
  transition: transform .3s var(--ease);
}
.video-card:hover, .news-card:hover { transform: translateY(-4px); }
.news-section { background: transparent; }
.news-card {
  background: rgba(255,255,255,.85);
  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);
  font-size: 1.4rem;
  font-weight: 600;
}
.video-card a, .news-card a {
  color: var(--gold-deep);
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.video-card a { color: var(--gold-soft); }
.platform-row { display: flex; flex-wrap: wrap; gap: 8px; }
.platform-row a {
  color: #fff;
  border: 1px solid rgba(201,162,74,.28);
  padding: 9px 14px;
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  border-radius: 999px;
}
.platform-row a:hover { border-color: var(--gold); color: var(--gold-soft); }

.booking-section {
  background:
    linear-gradient(rgba(12,10,8,.88), rgba(12,10,8,.92)),
    url("/assets/img/hero-stage.jpg") center/cover;
  color: #fff;
}
.booking-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.booking-layout .prose { color: var(--muted-light); }
.contact-stack { display: grid; gap: 10px; margin: 26px 0; }
.contact-stack a {
  display: block;
  background: rgba(255,255,255,.05);
  border-left: 3px solid var(--gold);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 14px 16px;
  color: #fff;
  font-weight: 600;
}
.faq-grid { display: grid; gap: 10px; }
.faq-grid details {
  border: 1px solid rgba(201,162,74,.2);
  background: rgba(255,255,255,.04);
  border-radius: var(--radius-sm);
  padding: 0 14px;
}
.faq-grid summary { cursor: pointer; padding: 14px 0; font-weight: 700; }
.faq-grid p { color: var(--muted-light); margin: 0 0 14px; }
.booking-form {
  display: grid;
  gap: 12px;
  background: rgba(22,18,14,.9);
  border: 1px solid rgba(201,162,74,.25);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
label {
  display: grid;
  gap: 7px;
  color: #fff;
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}
input, select, textarea {
  width: 100%;
  border: 1px solid rgba(201,162,74,.22);
  background: rgba(0,0,0,.35);
  color: #fff;
  padding: 13px 14px;
  font: inherit;
  border-radius: var(--radius-sm);
}
.form-note { color: var(--muted-light); margin: 0; font-size: .85rem; }

.site-footer {
  background: #080706;
  color: var(--muted-light);
  padding: 52px 0 28px;
}
.footer-cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 28px;
}
.footer-brand { display: flex; gap: 14px; align-items: start; }
.footer-brand img {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 0 2px rgba(201,162,74,.3);
}
.footer-brand strong {
  display: block;
  color: #fff;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
}
.footer-cols > div > strong {
  display: block;
  color: var(--gold-soft);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 12px;
}
.footer-cols a { display: block; margin-top: 8px; }
.footer-cols a:hover { color: var(--gold-soft); }
.footer-bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid rgba(201,162,74,.15);
  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;
  border: 1px solid rgba(201,162,74,.25);
  background: #120f0c;
  border-radius: 999px;
  overflow: hidden;
}
.footer-search input {
  border: 0;
  background: transparent;
  color: #fff;
  padding: 14px 18px;
  font: inherit;
  min-width: 0;
  border-radius: 0;
}
.footer-search button,
.footer-wa {
  border: 0;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  color: #1a1408;
  font: inherit;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 0 20px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}
.footer-wa {
  min-width: 140px;
  border-radius: 999px;
}
.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: 12px; right: 12px; bottom: 12px;
  z-index: 80;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: rgba(12,10,8,.94);
  border: 1px solid rgba(201,162,74,.25);
  border-radius: 999px;
  overflow: hidden;
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
}
.dock-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  font: inherit;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: .8rem;
  border: 0;
  color: #fff;
  cursor: pointer;
  text-decoration: none;
}
.dock-search { background: transparent; color: var(--gold-soft); }
.dock-wa { background: linear-gradient(135deg, var(--gold-soft), var(--gold)); color: #1a1408; }

.search-sheet {
  position: fixed;
  inset: 0;
  z-index: 90;
  background: rgba(0,0,0,.7);
  display: grid;
  align-items: end;
}
.search-sheet[hidden] { display: none !important; }
.search-sheet-panel {
  background: #16120e;
  color: #fff;
  border-top: 3px solid var(--gold);
  border-radius: 24px 24px 0 0;
  padding: 20px 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);
  font-size: 1.6rem;
  font-weight: 600;
}
.search-sheet-head button {
  width: 40px; height: 40px;
  border: 1px solid rgba(201,162,74,.25);
  background: transparent;
  color: #fff;
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
}
.search-sheet-panel > input {
  width: 100%;
  border: 1px solid rgba(201,162,74,.25);
  background: #0c0a08;
  color: #fff;
  padding: 14px;
  font: inherit;
  border-radius: var(--radius-sm);
  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 rgba(201,162,74,.18);
  background: #120f0c;
  color: #fff;
  border-radius: var(--radius-sm);
}
.search-hit img { width: 56px; height: 56px; object-fit: cover; border-radius: 8px; }
.search-hit strong { display: block; font-family: var(--display); font-size: 1.15rem; font-weight: 600; }
.search-hit span { color: var(--muted-light); font-size: .78rem; }
.search-empty { color: var(--muted-light); padding: 12px 0; }

.contact-band {
  background: var(--black);
  color: #fff;
  position: relative;
}
.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(201,162,74,.12), transparent 55%);
  pointer-events: none;
}
.contact-band .light-text h2,
.contact-band .light-text p { color: #fff; }
.contact-band .section-head p { color: var(--muted-light); }
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 28px;
  position: relative;
}
.contact-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(201,162,74,.2);
  border-radius: var(--radius);
  padding: 24px;
  transition: transform .3s var(--ease), border-color .3s var(--ease);
}
.contact-card:hover {
  transform: translateY(-4px);
  border-color: rgba(201,162,74,.45);
}
.contact-card span {
  display: block;
  color: var(--gold-soft);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contact-card strong {
  display: block;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.contact-card strong a { color: #fff; }
.contact-card p { margin: 0; color: var(--muted-light); font-size: .92rem; }
.social-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  position: relative;
}
.social-grid a {
  padding: 12px 18px;
  border: 1px solid rgba(201,162,74,.25);
  background: rgba(255,255,255,.03);
  color: #fff;
  font-weight: 700;
  font-size: .76rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  border-radius: 999px;
}
.social-grid a:hover {
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  border-color: transparent;
  color: #1a1408;
}

.page-work { background: var(--cream); }
.work-page { padding: 48px 0 90px; }
.breadcrumb { margin-bottom: 28px; color: var(--muted); 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);
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}
.work-detail img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius-sm);
}
.work-detail h1 {
  color: var(--ink);
  font-size: clamp(2.4rem, 5vw, 4.2rem);
}
.page-work .btn.ghost {
  color: var(--ink);
  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: 78px; left: 20px; right: 20px;
    display: none;
    flex-direction: column;
    background: var(--black);
    border: 1px solid rgba(201,162,74,.25);
    border-radius: var(--radius);
    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: 64px 0; }
  .hero-event-card { justify-self: stretch; 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, 1160px); }
  .section { padding: 68px 0; }
  h1 { font-size: clamp(3.6rem, 16vw, 5.4rem); }
  .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: 96px; }
  body { padding-bottom: 72px; }
}
