:root {
  --ink: #0b0c10;
  --muted: #69707d;
  --line: #ded6c6;
  --paper: #f4f0e8;
  --panel: #ffffff;
  --gold: #d8b46b;
  --gold-deep: #8a6a2f;
  --teal: #006f6c;
  --coral: #cc4f3f;
  --plum: #341f4f;
  --night: #0b0c10;
  --charcoal: #15171f;
  --shadow: 0 28px 80px rgba(10, 11, 15, .18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(255,255,255,.86), rgba(244,240,232,.72)),
    radial-gradient(circle at 18% 8%, rgba(216,180,107,.22), transparent 30%),
    var(--paper);
  letter-spacing: 0;
}
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 54px);
  background: rgba(11, 12, 16, .86);
  color: #fff;
  backdrop-filter: blur(22px);
  border-bottom: 1px solid rgba(216, 180, 107, .22);
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.brand img { width: 218px; display: block; }
.nav { display: flex; align-items: center; gap: 18px; color: rgba(255,255,255,.74); font-weight: 750; }
.nav a, .link-button {
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  padding: 8px 0;
}
.nav > .button.small {
  min-height: 40px;
  padding: 0 15px;
  color: #101115;
  background-color: #d8b46b;
  background-image: linear-gradient(135deg, #f0d28b, #b78a3a 55%, #785729);
  border: 1px solid rgba(216,180,107,.78);
  box-shadow: 0 10px 26px rgba(138,106,47,.24);
}
.nav .is-active { color: #fff; }
.nav-toggle { display: none; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border: 1px solid rgba(216,180,107,.78);
  border-radius: 8px;
  background-color: #d8b46b;
  background-image: linear-gradient(135deg, #f0d28b, #b78a3a 55%, #785729);
  color: #101115;
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 12px 30px rgba(138,106,47,.28);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-1px); box-shadow: 0 18px 42px rgba(138,106,47,.35); }
.button.small { min-height: 36px; padding: 0 13px; font-size: 14px; }
.button.ghost { background: rgba(255,255,255,.04); color: var(--ink); border-color: rgba(16,17,21,.22); box-shadow: none; }
.button.danger { background: var(--coral); border-color: var(--coral); color: #fff; }

.hero {
  position: relative;
  min-height: calc(100vh - 74px);
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(18px, 5vw, 72px) clamp(56px, 7vw, 90px);
  background:
    linear-gradient(100deg, rgba(8,9,12,.97), rgba(10,12,18,.83) 46%, rgba(52,31,79,.48)),
    url("/assets/dj-hero-premium.png") center/cover;
  color: #fff;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 180px;
  background: linear-gradient(180deg, transparent, rgba(244,240,232,.98));
  pointer-events: none;
}
.hero-copy, .hero-panel, .hero-stage-card { position: relative; z-index: 1; }
.hero h1, .page-hero h1 {
  margin: 10px 0 16px;
  font-size: clamp(58px, 9vw, 126px);
  line-height: .86;
  max-width: 860px;
}
.hero p, .page-hero p { color: rgba(255,255,255,.82); font-size: clamp(18px, 2vw, 24px); max-width: 760px; line-height: 1.45; }
.eyebrow { color: var(--gold-deep); font-weight: 950; text-transform: uppercase; letter-spacing: 0; font-size: 12px; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; }
.hero .eyebrow, .page-hero .eyebrow, .band .eyebrow, .showcase-card .eyebrow { color: var(--gold); }
.hero .button.ghost, .page-hero .button.ghost, .band .button.ghost, .showcase-card .button.ghost {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
}
.hero-trust { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 34px; color: rgba(255,255,255,.72); }
.hero-trust span { border: 1px solid rgba(255,255,255,.18); border-radius: 999px; padding: 8px 12px; background: rgba(255,255,255,.06); backdrop-filter: blur(10px); }
.hero-stage-card {
  min-height: 620px;
  border: 1px solid rgba(216,180,107,.38);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 35px 100px rgba(0,0,0,.45);
  background: #111;
}
.hero-stage-card img {
  width: 100%;
  height: 100%;
  min-height: 620px;
  object-fit: cover;
  display: block;
  filter: saturate(1.08) contrast(1.04);
}
.hero-stage-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 30%, rgba(8,9,12,.82)), linear-gradient(90deg, rgba(8,9,12,.05), rgba(8,9,12,.42));
}
.hero-booking-card {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 22px;
  z-index: 2;
  display: grid;
  gap: 5px;
  padding: 18px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  background: rgba(11,12,16,.74);
  backdrop-filter: blur(18px);
  box-shadow: 0 0 0 1px rgba(216,180,107,.08), 0 22px 70px rgba(0,0,0,.4);
}
.hero-booking-card::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 14px;
  background:
    radial-gradient(circle at 18% 50%, rgba(216,180,107,.52), transparent 34%),
    radial-gradient(circle at 82% 50%, rgba(34,197,194,.34), transparent 36%);
  filter: blur(18px);
  opacity: .42;
  animation: requestGlow 2.6s ease-in-out infinite;
}
.hero-booking-card::after {
  content: "";
  position: absolute;
  inset: -1px;
  border-radius: 8px;
  border: 1px solid rgba(216,180,107,.46);
  opacity: .75;
  pointer-events: none;
  animation: requestBorder 2.6s ease-in-out infinite;
}
.hero-booking-card span, .hero-booking-card small { color: rgba(255,255,255,.68); }
.hero-booking-card strong { font-size: 24px; }
.sound-bars {
  position: absolute;
  top: 24px;
  right: 24px;
  z-index: 2;
  height: 58px;
  display: flex;
  align-items: end;
  gap: 5px;
  padding: 12px;
  border-radius: 8px;
  background: rgba(11,12,16,.6);
  border: 1px solid rgba(255,255,255,.14);
}
.sound-bars span {
  width: 7px;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--gold), var(--teal));
  animation: meter 1.1s ease-in-out infinite;
}
.sound-bars span:nth-child(1) { height: 24px; animation-delay: .1s; }
.sound-bars span:nth-child(2) { height: 42px; animation-delay: .35s; }
.sound-bars span:nth-child(3) { height: 31px; animation-delay: .2s; }
.sound-bars span:nth-child(4) { height: 48px; animation-delay: .5s; }
.sound-bars span:nth-child(5) { height: 28px; animation-delay: .15s; }
@keyframes meter {
  0%, 100% { transform: scaleY(.55); opacity: .72; }
  50% { transform: scaleY(1); opacity: 1; }
}
@keyframes requestGlow {
  0%, 100% { opacity: .28; transform: scale(.985); }
  50% { opacity: .72; transform: scale(1.015); }
}
@keyframes requestBorder {
  0%, 100% { border-color: rgba(216,180,107,.28); box-shadow: 0 0 0 rgba(216,180,107,0); }
  50% { border-color: rgba(216,180,107,.84); box-shadow: 0 0 34px rgba(216,180,107,.28); }
}
.hero-panel {
  display: grid;
  gap: 14px;
  padding: 24px;
  border: 1px solid rgba(216,180,107,.35);
  border-radius: 8px;
  background: linear-gradient(145deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
  box-shadow: var(--shadow);
  backdrop-filter: blur(24px);
}
.panel-header, .metric, .match-card { display: flex; justify-content: space-between; align-items: center; gap: 18px; padding: 16px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; background: rgba(8,9,12,.35); }
.panel-header strong { width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%; color: var(--ink); background: var(--gold); }
.hero-panel span { color: rgba(255,255,255,.68); }
.hero-panel strong { font-size: 30px; }
.match-card { display: grid; align-items: start; }
.match-card strong { font-size: 17px; color: #fff; }

.genre-rail {
  display: flex;
  gap: 12px;
  overflow: hidden;
  padding: 16px 0;
  background: #090a0d;
  color: #fff;
  border-top: 1px solid rgba(216,180,107,.25);
  border-bottom: 1px solid rgba(216,180,107,.25);
}
.genre-rail span {
  flex: 0 0 auto;
  min-width: 140px;
  text-align: center;
  padding: 11px 16px;
  color: #f4e6c8;
  border: 1px solid rgba(216,180,107,.2);
  border-radius: 999px;
  background: rgba(255,255,255,.06);
  font-weight: 900;
  animation: rail 28s linear infinite;
}
@keyframes rail {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 12px)); }
}


.section, .band, .filters, .page-hero, .auth-shell {
  padding: clamp(42px, 6vw, 88px) clamp(18px, 5vw, 72px);
}
.section h2, .band h2 { font-size: clamp(34px, 5vw, 68px); line-height: .98; margin: 0 0 18px; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 28px; }
.platform-intro { display: grid; grid-template-columns: .8fr 1.2fr; gap: 42px; align-items: start; }
.artist-spotlight {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(360px, 1.1fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  background:
    radial-gradient(circle at 92% 20%, rgba(0,111,108,.18), transparent 32%),
    linear-gradient(180deg, #fff, rgba(255,255,255,.68));
}
.spotlight-copy p { color: var(--muted); line-height: 1.7; font-size: 18px; max-width: 640px; }
.spotlight-stack {
  display: grid;
  gap: 18px;
}
.mini-artist {
  position: relative;
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 18px;
  align-items: end;
  min-height: 210px;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(216,180,107,.32);
  border-radius: 8px;
  background: #101115;
  color: #fff;
  box-shadow: 0 28px 80px rgba(16,17,21,.16);
}
.mini-artist.is-featured {
  transform: none;
  margin-left: 0;
}
.mini-artist img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
}
.mini-artist::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10,11,15,.95), rgba(10,11,15,.36) 60%, rgba(10,11,15,.76));
}
.mini-artist div { position: relative; z-index: 1; grid-column: 2; }
.mini-artist span { color: var(--gold); font-size: 12px; font-weight: 950; text-transform: uppercase; }
.mini-artist strong { display: block; margin: 6px 0; font-size: 34px; line-height: 1; }
.mini-artist p { margin: 0; color: rgba(255,255,255,.75); }
.intro-copy p { font-size: 18px; line-height: 1.65; color: var(--muted); }
.feature-matrix, .ops-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
.feature-matrix article, .ops-grid article, .showcase-card {
  min-height: 190px;
  padding: 24px;
  border: 1px solid rgba(222,214,198,.9);
  border-radius: 8px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 18px 55px rgba(16,17,21,.08);
}
.feature-matrix strong { color: var(--gold-deep); font-size: 13px; }
.feature-matrix h3, .ops-grid h3 { margin: 10px 0; font-size: 23px; }
.feature-matrix p, .ops-grid p, .showcase-card p { color: var(--muted); line-height: 1.6; }
.split-showcase { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.showcase-card { min-height: 430px; display: flex; flex-direction: column; justify-content: space-between; color: #fff; }
.showcase-card.booker { background: linear-gradient(145deg, rgba(11,12,16,.94), rgba(0,111,108,.84)), url("/assets/hero-stage.svg") center/cover; }
.showcase-card.dj { background: linear-gradient(145deg, rgba(11,12,16,.94), rgba(52,31,79,.86)), url("/assets/hero-stage.svg") center/cover; }
.showcase-card h2, .showcase-card p, .showcase-card li { color: #fff; }
.showcase-card p { color: rgba(255,255,255,.82); }
.showcase-card ul { margin: 18px 0 0; padding: 0; display: grid; gap: 10px; list-style: none; }
.showcase-card li { padding: 12px 14px; border: 1px solid rgba(255,255,255,.16); border-radius: 8px; background: rgba(255,255,255,.08); }
.section-head { display: flex; align-items: center; justify-content: space-between; gap: 18px; margin-bottom: 22px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 360px), 1fr)); gap: 18px; }
.card, .panel, .stat {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 22px 55px rgba(16,17,21,.08);
}
.card { padding: 20px; min-height: 100%; transition: transform .18s ease, box-shadow .18s ease; }
.card:hover { transform: translateY(-3px); box-shadow: 0 28px 75px rgba(16,17,21,.14); }
.card h3 { margin: 12px 0 8px; font-size: 22px; }
.card p { color: var(--muted); line-height: 1.55; }
.card-top, .meta { display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.status { color: #fff; background: var(--teal); border-radius: 999px; padding: 5px 10px; font-size: 12px; font-weight: 900; }
.tags { display: flex; flex-wrap: wrap; gap: 7px; margin: 14px 0; }
.tags span { padding: 6px 9px; border: 1px solid var(--line); border-radius: 999px; background: #f6f3ec; font-size: 13px; color: var(--muted); }
.request-card {
  display: flex;
  flex-direction: column;
  min-height: 360px;
  padding: 24px;
}
.request-card .card-top {
  margin-bottom: 18px;
}
.request-region {
  color: var(--ink);
  font-weight: 850;
  text-align: right;
}
.request-card-body {
  display: grid;
  gap: 14px;
}
.request-card-body h3 {
  min-height: 62px;
  margin: 0;
  font-size: clamp(23px, 2vw, 30px);
  line-height: 1.16;
}
.request-card-body p {
  min-height: 52px;
  margin: 0;
  font-size: 18px;
}
.request-card .tags {
  min-height: 44px;
  align-content: start;
  margin: 0;
}
.request-card-footer {
  display: grid;
  gap: 16px;
  margin-top: auto;
  padding-top: 20px;
  border-top: 1px solid rgba(217,209,193,.78);
}
.request-card-meta {
  display: grid;
  grid-template-columns: 1fr .75fr 1.1fr;
  gap: 12px;
  align-items: start;
}
.request-card-meta div {
  min-width: 0;
}
.request-card-meta span {
  display: block;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}
.request-card-meta strong {
  display: block;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}
.request-card-footer .button {
  justify-self: start;
}
.dj-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  overflow: hidden;
}
.dj-banner { height: 240px; margin: 0; border-radius: 8px 8px 0 0; background: #111; position: relative; overflow: hidden; }
.dj-banner img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .28s ease; }
.dj-card:hover .dj-banner img { transform: scale(1.05); }
.dj-banner::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(11,12,16,.1), rgba(11,12,16,.24) 48%, rgba(11,12,16,.74)); }
.dj-banner span { position: absolute; left: 14px; top: 14px; z-index: 1; color: #101115; background: var(--gold); border-radius: 999px; padding: 7px 11px; font-size: 12px; font-weight: 950; }
.avatar {
  position: absolute;
  left: 18px;
  bottom: 16px;
  z-index: 1;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.32);
  border-radius: 8px;
  background: rgba(11,12,16,.82);
  color: #fff;
  font-weight: 950;
  backdrop-filter: blur(12px);
}
.dj-card-body {
  display: grid;
  gap: 12px;
  padding: 24px 24px 16px;
}
.dj-card-body h3 {
  margin: 0;
  font-size: 26px;
}
.dj-card-body p {
  margin: 0;
  min-height: 64px;
}
.dj-card .tags {
  margin: 0;
}
.rating { color: var(--gold-deep); font-weight: 900; margin: 0; }
.rating span { color: var(--muted); font-weight: 700; }
.rating.no-rating {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 34px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f5ef;
  color: var(--muted);
  font-size: 14px;
}
.rating.no-rating span {
  color: inherit;
  font-weight: 850;
}
.dj-card-footer {
  margin-top: auto;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 24px 24px;
  border-top: 1px solid var(--line);
  background: linear-gradient(180deg, #fff, #faf7ef);
}
.dj-card-footer .meta {
  display: grid;
  gap: 4px;
  align-items: start;
  justify-content: start;
}
.dj-card-footer .meta strong {
  font-size: 18px;
}
.dj-card-footer .meta span {
  color: var(--muted);
  font-weight: 700;
}

.dj-profile-hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: #0b0c10;
  color: #fff;
}
.request-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 380px);
  gap: 28px;
  align-items: end;
  padding: clamp(54px, 7vw, 100px) clamp(18px, 5vw, 72px);
  background:
    radial-gradient(circle at 82% 20%, rgba(216,180,107,.28), transparent 34%),
    linear-gradient(135deg, #0b0c10, #182223 56%, #21152e);
  color: #fff;
}
.request-detail-hero h1 {
  margin: 10px 0 16px;
  max-width: 920px;
  font-size: clamp(46px, 7vw, 96px);
  line-height: .92;
}
.request-detail-hero p {
  max-width: 780px;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}
.request-detail-hero .eyebrow { color: var(--gold); }
.request-detail-hero .button.ghost {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
}
.request-brief {
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 8px;
  padding: 24px;
  background: rgba(12,13,18,.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.request-brief span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.request-brief strong {
  display: block;
  margin: 8px 0;
  color: #fff;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1;
}
.request-brief p { margin: 0; font-size: 16px; }
.request-detail-shell {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 22px;
  align-items: start;
}
.request-summary-card {
  position: sticky;
  top: 98px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(16,17,21,.08);
}
.request-summary-card h2 { margin: 6px 0 0; font-size: 32px; }
.summary-head {
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 8px;
}
.summary-list {
  display: grid;
}
.summary-row {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(217,209,193,.7);
}
.summary-row:last-child { border-bottom: 0; }
.summary-row span {
  color: var(--muted);
  font-weight: 850;
}
.summary-row strong {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}
.status-badge {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  background: #edf8f0;
  color: #1e6b38;
  font-size: 13px;
  font-weight: 950;
  text-transform: uppercase;
}
.request-main { display: grid; gap: 18px; }
.request-info-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.request-info-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 20px 55px rgba(16,17,21,.06);
}
.request-info-grid span {
  display: block;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.request-info-grid strong {
  display: block;
  font-size: 20px;
  line-height: 1.15;
  margin-bottom: 10px;
}
.request-info-grid p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.dj-profile-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .78;
}
.dj-profile-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,9,12,.96), rgba(8,9,12,.62) 48%, rgba(8,9,12,.22)), linear-gradient(180deg, transparent 55%, rgba(8,9,12,.94));
}
.dj-profile-overlay {
  position: relative;
  z-index: 1;
  max-width: 840px;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px);
}
.back-link {
  display: inline-flex;
  margin-bottom: 18px;
  color: rgba(255,255,255,.78);
  font-weight: 850;
}
.dj-profile-overlay .eyebrow {
  display: block;
  color: var(--gold);
}
.dj-profile-actions .button.ghost {
  color: #fff;
  border-color: rgba(255,255,255,.42);
  background: rgba(255,255,255,.08);
}
.dj-profile-overlay h1 {
  margin: 8px 0 16px;
  font-size: clamp(54px, 8vw, 118px);
  line-height: .88;
}
.dj-profile-overlay p {
  color: rgba(255,255,255,.82);
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}
.dj-profile-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.dj-profile-shell {
  display: grid;
  grid-template-columns: minmax(280px, 360px) 1fr;
  gap: 22px;
  align-items: start;
}
.profile-summary,
.profile-panel,
.profile-grid article,
.equipment-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 55px rgba(16,17,21,.08);
}
.profile-summary {
  position: sticky;
  top: 96px;
  display: grid;
  gap: 12px;
  padding: 24px;
}
.profile-avatar {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #101115;
  color: #fff;
  font-size: 22px;
  font-weight: 950;
}
.profile-summary h2 {
  margin: 6px 0 0;
  font-size: 28px;
}
.profile-summary p {
  margin: 0;
  color: var(--muted);
  font-weight: 750;
}
.profile-main {
  display: grid;
  gap: 18px;
}
.profile-panel {
  padding: 26px;
}
.profile-panel h2 {
  margin: 8px 0 12px;
  font-size: clamp(28px, 4vw, 48px);
}
.profile-panel p {
  color: var(--muted);
  line-height: 1.7;
  font-size: 18px;
}
.profile-grid,
.equipment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.profile-grid article,
.equipment-grid article {
  padding: 18px;
}
.profile-grid span,
.equipment-grid span {
  display: block;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.profile-grid strong,
.equipment-grid strong {
  font-size: 18px;
}
.equipment-grid article {
  background: #f7f3ea;
}
.equipment-grid article.is-available {
  background: #eef8f5;
  border-color: rgba(0,111,108,.28);
}
.profile-contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.band { background: radial-gradient(circle at 80% 0, rgba(216,180,107,.22), transparent 34%), linear-gradient(135deg, #0b0c10, #171923 56%, #251a33); color: #fff; }
.benefits { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.benefits article { min-height: 220px; border: 1px solid rgba(255,255,255,.14); border-radius: 8px; padding: 22px; background: rgba(255,255,255,.06); }
.benefits strong { font-size: 24px; }
.band h2, .band strong, .band p, .benefits p, .benefits strong { color: #fff; }
.benefits p, .band p { color: rgba(255,255,255,.78); }
.faq details { border-top: 1px solid var(--line); padding: 18px 0; }
.faq summary { cursor: pointer; font-weight: 900; font-size: 18px; }
.seo-links-section {
  background: #fff;
}
.seo-keyword-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.seo-keyword-grid a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f3ea;
  color: var(--ink);
  font-weight: 850;
  box-shadow: 0 10px 24px rgba(16,17,21,.04);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.seo-keyword-grid a:hover {
  transform: translateY(-1px);
  border-color: rgba(216,180,107,.78);
  background: #fff9ec;
}

.page-hero {
  background: radial-gradient(circle at 76% 20%, rgba(216,180,107,.28), transparent 30%), linear-gradient(135deg, #0b0c10, #182223 55%, #21152e);
  color: #fff;
}
.page-hero h1, .page-hero p, .page-hero a { color: #fff; }
.page-hero h1 { font-size: clamp(42px, 6vw, 78px); }

.legal-page {
  display: grid;
  gap: 18px;
  max-width: 1120px;
  margin: 0 auto;
}
.legal-notice,
.legal-article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 20px 60px rgba(16,17,21,.07);
}
.legal-notice {
  padding: 22px;
  border-color: rgba(216,180,107,.55);
  background: #fff9ec;
}
.legal-notice.muted {
  border-color: var(--line);
  background: #f7f5ef;
}
.legal-notice strong {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}
.legal-notice p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
}
.legal-articles {
  display: grid;
  gap: 12px;
}
.legal-article {
  padding: 22px;
}
.legal-article h2 {
  margin: 0 0 10px;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.1;
}
.legal-article p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}
.legal-article a {
  color: var(--gold-deep);
  font-weight: 850;
}

.how-hero {
  min-height: 560px;
  display: grid;
  align-content: center;
  background:
    linear-gradient(110deg, rgba(8,9,12,.94), rgba(8,9,12,.74), rgba(0,111,108,.34)),
    url("/assets/dj-hero-premium.png") center/cover;
}
.concept-section,
.responsibility-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .75fr);
  gap: clamp(22px, 4vw, 56px);
  align-items: start;
}
.concept-copy p,
.responsibility-panel p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}
.independence-card,
.responsibility-list,
.path-card,
.detail-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 55px rgba(16,17,21,.08);
}
.independence-card,
.responsibility-list {
  padding: 26px;
}
.independence-card strong {
  display: block;
  font-size: 28px;
  margin-bottom: 10px;
}
.independence-card p,
.responsibility-list p,
.path-card p,
.detail-grid p {
  color: var(--muted);
  line-height: 1.6;
}
.independence-card ul,
.responsibility-list ul {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
  display: grid;
  gap: 10px;
}
.independence-card li,
.responsibility-list li {
  padding: 12px 14px;
  border-radius: 8px;
  background: #f7f3ea;
  color: var(--ink);
  font-weight: 800;
}
.path-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.path-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
}
.path-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}
.path-card.dj-path::before {
  background: linear-gradient(90deg, var(--plum), var(--gold));
}
.role-label {
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.path-card h3 {
  margin: 12px 0;
  font-size: clamp(28px, 3vw, 42px);
}
.steps {
  margin: 20px 0 0;
  padding: 0;
  counter-reset: step;
  list-style: none;
  display: grid;
  gap: 12px;
}
.steps li {
  counter-increment: step;
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  color: var(--ink);
  font-weight: 800;
}
.steps li::before {
  content: counter(step);
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #101115;
  color: #fff;
  font-weight: 950;
}
.control-band .benefits article {
  min-height: 260px;
}
.platform-details {
  display: grid;
  gap: 28px;
}
.detail-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.detail-grid article {
  padding: 22px;
}
.detail-grid strong {
  display: block;
  font-size: 22px;
  margin-bottom: 10px;
}
.responsibility-panel {
  padding-right: clamp(0px, 3vw, 40px);
}
.responsibility-list h3 {
  margin: 0 0 16px;
  font-size: 24px;
}
.filters {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  background: rgba(255,255,255,.92);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 18px 50px rgba(16,17,21,.06);
}
label { display: grid; gap: 7px; font-weight: 800; color: var(--muted); }
input, select, textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid #d3c7b5;
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
  padding: 10px 12px;
}
input:focus, select:focus, textarea:focus { outline: 2px solid rgba(216,180,107,.42); border-color: var(--gold); }
textarea { min-height: 130px; resize: vertical; }
.check-field {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: var(--ink);
}
.check-field input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--gold-deep);
}
.check-field span { line-height: 1.2; }
.form { display: grid; gap: 12px; max-width: 780px; }
.form-wrap { display: grid; place-items: start; }
.success { background: #e8f6ef; border: 1px solid #acd9bf; padding: 13px 16px; border-radius: 8px; margin-bottom: 14px; }

.contact-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, .55fr);
  gap: 28px;
  align-items: end;
  padding: clamp(56px, 7vw, 100px) clamp(18px, 5vw, 72px);
  background:
    linear-gradient(90deg, rgba(11,12,16,.92), rgba(11,12,16,.62)),
    url("/assets/dj-hero-premium.png") center/cover;
  color: #fff;
}
.contact-hero h1 {
  margin: 10px 0 18px;
  max-width: 920px;
  font-size: clamp(46px, 7vw, 96px);
  line-height: .92;
}
.contact-hero p {
  max-width: 780px;
  color: rgba(255,255,255,.78);
  font-size: clamp(18px, 2vw, 23px);
  line-height: 1.48;
}
.contact-hero-panel {
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 8px;
  padding: 24px;
  background: rgba(12,13,18,.72);
  backdrop-filter: blur(14px);
  box-shadow: 0 28px 70px rgba(0,0,0,.28);
}
.contact-hero-panel span,
.contact-side span {
  display: block;
  margin-bottom: 8px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.contact-hero-panel a {
  display: block;
  color: #fff;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 950;
  line-height: 1.1;
}
.contact-hero-panel p { margin-bottom: 0; font-size: 16px; }
.contact-routes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.contact-routes article,
.contact-form-card,
.contact-side article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255,255,255,.86);
  box-shadow: 0 24px 70px rgba(16,17,21,.08);
}
.contact-routes article { padding: 24px; }
.contact-routes strong {
  display: block;
  margin-bottom: 10px;
  font-size: 22px;
}
.contact-routes p,
.contact-form-card p,
.contact-side p,
.contact-side li {
  color: var(--muted);
  line-height: 1.58;
}
.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(310px, .42fr);
  gap: 22px;
  align-items: start;
}
.contact-form-card { padding: clamp(24px, 4vw, 42px); }
.contact-form-card h2 {
  margin: 8px 0 10px;
  font-size: clamp(32px, 4vw, 54px);
  line-height: 1;
}
.contact-form { margin-top: 22px; max-width: none; }
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.contact-form button { justify-self: start; margin-top: 6px; }
.contact-side {
  display: grid;
  gap: 14px;
}
.contact-side article { padding: 22px; }
.contact-side strong {
  display: block;
  margin-bottom: 8px;
  font-size: 24px;
  line-height: 1.1;
}
.contact-side ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.auth-shell {
  min-height: 72vh;
  display: grid;
  grid-template-columns: 1fr minmax(300px, 480px);
  align-items: center;
  gap: 42px;
}
.auth-shell h1 { font-size: clamp(40px, 6vw, 76px); margin: 0 0 12px; }
.auth-form, .panel { padding: 22px; }
.register-shell {
  grid-template-columns: minmax(0, .85fr) minmax(420px, 1fr);
  align-items: start;
}
.auth-intro {
  position: sticky;
  top: 110px;
}
.register-benefits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.register-benefits span,
.auth-note {
  color: var(--muted);
}
.register-benefits span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255,255,255,.72);
  font-weight: 850;
}
.register-form {
  max-width: none;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 28px 90px rgba(16,17,21,.11);
}
.role-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.role-choice {
  position: relative;
  display: grid;
  align-content: start;
  gap: 8px;
  min-height: 210px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #faf8f2;
  cursor: pointer;
}
.role-choice input {
  position: absolute;
  right: 16px;
  top: 16px;
  width: 22px;
  height: 22px;
  accent-color: var(--gold-deep);
}
.role-choice strong {
  display: block;
  max-width: 80%;
  font-size: 26px;
  line-height: 1.05;
}
.role-choice small {
  color: var(--muted);
  line-height: 1.45;
  font-size: 15px;
}
.role-choice em {
  margin-top: auto;
  color: #fff;
  background: #111217;
  border-radius: 8px;
  padding: 10px 12px;
  font-style: normal;
  font-weight: 850;
  line-height: 1.35;
}
.role-choice:has(input:checked) {
  border-color: rgba(164,116,33,.9);
  background: #fff9ec;
  box-shadow: inset 0 0 0 2px rgba(216,180,107,.22);
}
.role-choice-dj {
  background: linear-gradient(145deg, #1b1720, #2b2432);
  border-color: rgba(216,180,107,.34);
  color: #fff;
}
.role-choice-dj small { color: rgba(255,255,255,.72); }
.role-choice-dj .role-label { color: var(--gold); }
.role-choice-dj:has(input:checked) {
  background: linear-gradient(145deg, #17141d, #3a2e3f);
}
.dj-payment-note {
  border: 1px solid rgba(164,116,33,.28);
  border-radius: 8px;
  background: #fff8ea;
  padding: 14px 16px;
}
.register-form:has(input[value="boeker"]:checked) .dj-payment-note {
  display: none;
}
.dj-payment-note strong {
  display: block;
  margin-bottom: 4px;
  font-size: 18px;
}
.dj-payment-note p,
.auth-note {
  margin: 0;
  line-height: 1.45;
}
.auth-note a { font-weight: 900; color: var(--gold-deep); }

.dashboard {
  display: grid;
  grid-template-columns: 300px 1fr;
  min-height: calc(100vh - 78px);
  background: #f5f2eb;
}
.dashboard-sidebar {
  position: sticky;
  top: 78px;
  height: calc(100vh - 78px);
  background: radial-gradient(circle at 10% 0, rgba(216,180,107,.22), transparent 34%), #090a0d;
  color: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.dashboard-logo img { width: 190px; max-width: 100%; }
.dashboard-user {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 8px;
  background: rgba(255,255,255,.06);
}
.dashboard-user > span {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #101115;
  font-weight: 950;
}
.dashboard-user strong { display: block; }
.dashboard-user small { color: rgba(255,255,255,.62); text-transform: uppercase; font-weight: 850; }
.dashboard-nav {
  display: grid;
  gap: 8px;
}
.dashboard-nav a {
  color: rgba(255,255,255,.78);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 8px;
  padding: 12px 14px;
  background: rgba(255,255,255,.04);
  font-weight: 850;
}
.dashboard-nav a:hover {
  color: #fff;
  border-color: rgba(216,180,107,.55);
  background: rgba(216,180,107,.12);
}
.dashboard-sidebar form { margin-top: auto; }
.dashboard-sidebar .button.ghost {
  width: 100%;
  color: #fff;
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}
.dashboard-main {
  min-width: 0;
  padding: clamp(18px, 4vw, 42px);
  display: grid;
  gap: 20px;
  align-content: start;
}
.dashboard-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.dashboard-topbar h1 {
  margin: 6px 0 0;
  font-size: clamp(36px, 5vw, 68px);
  line-height: .95;
}
.stats { display: grid; grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 14px; }
.stat {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(16,17,21,.07);
}
.stat span, .stat small { color: var(--muted); }
.stat strong {
  display: block;
  margin: 8px 0 4px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}
.dashboard-hero {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: end;
  padding: clamp(24px, 4vw, 42px);
  border-radius: 8px;
  background:
    radial-gradient(circle at 80% 0, rgba(216,180,107,.24), transparent 30%),
    linear-gradient(135deg, #101115, #20242b);
  color: #fff;
  box-shadow: 0 24px 70px rgba(16,17,21,.18);
}
.dashboard-hero .eyebrow { color: var(--gold); }
.dashboard-hero h2 {
  max-width: 920px;
  margin: 8px 0 0;
  font-size: clamp(28px, 4vw, 54px);
  line-height: 1;
}
.dashboard-hero-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
.dashboard-card.wide { grid-column: span 2; }
.panel-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}
.panel-head h2 {
  margin: 6px 0 0;
  font-size: clamp(26px, 3vw, 40px);
  line-height: 1;
}
.panel-head a, .panel-head small { color: var(--muted); font-weight: 850; }
.dashboard-form {
  max-width: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.dashboard-form textarea,
.dashboard-form button { grid-column: 1 / -1; }
.action-list, .mini-list {
  display: grid;
  gap: 10px;
}
.action-list a, .mini-list a {
  display: grid;
  gap: 4px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #f9f7f1;
}
.action-list a:hover, .mini-list a:hover {
  border-color: rgba(216,180,107,.7);
  background: #fff;
}
.action-list span, .mini-list span, .empty-state {
  color: var(--muted);
}
.profile-progress {
  height: 10px;
  border-radius: 999px;
  overflow: hidden;
  background: #ede8dc;
  margin: 14px 0;
}
.profile-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), var(--teal));
}
.pill {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #101115;
  color: #fff;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.admin-command {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}
.admin-command article {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(16,17,21,.07);
}
.admin-command strong {
  display: block;
  margin: 8px 0 4px;
  font-size: 42px;
  line-height: 1;
}
.admin-command p { color: var(--muted); margin: 0; }
.admin-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.admin-grid > div { display: contents; }
.management-panel { min-width: 0; }
.table { display: grid; gap: 10px; }
.table div {
  display: grid;
  grid-template-columns: minmax(160px, 1fr) minmax(120px, auto) auto auto auto;
  gap: 8px;
  align-items: center;
  padding: 11px;
  background: #f7f5ef;
  border-radius: 8px;
}
.table button {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  font-weight: 850;
}

.chat-app { padding: 0; overflow: hidden; }
.chat-layout {
  display: grid;
  grid-template-columns: minmax(260px, .34fr) minmax(0, 1fr);
  min-height: 640px;
}
.chat-list {
  border-right: 1px solid var(--line);
  background: #f4f1ea;
  padding: 18px;
  display: grid;
  gap: 10px;
  align-content: start;
}
.chat-list-head {
  display: grid;
  gap: 4px;
  padding: 4px 2px 10px;
}
.chat-list-head strong { font-size: 24px; }
.chat-thread {
  width: 100%;
  min-height: 76px;
  display: grid;
  grid-template-columns: 46px 1fr auto;
  gap: 11px;
  align-items: center;
  padding: 11px;
  border: 1px solid transparent;
  border-radius: 8px;
  background: transparent;
  text-align: left;
  cursor: pointer;
}
.chat-thread:hover,
.chat-thread.is-active {
  background: #fff;
  border-color: rgba(216,180,107,.58);
  box-shadow: 0 14px 34px rgba(16,17,21,.08);
}
.thread-avatar {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: #101115;
  color: #fff;
  font-weight: 950;
}
.thread-avatar.large {
  width: 58px;
  height: 58px;
  background: linear-gradient(135deg, #101115, #2b2534);
  border: 1px solid rgba(216,180,107,.55);
}
.thread-copy {
  min-width: 0;
  display: grid;
  gap: 4px;
}
.thread-copy strong,
.thread-copy small {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.thread-copy small { color: var(--muted); }
.thread-unread {
  min-width: 25px;
  height: 25px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--gold);
  color: #101115;
  font-size: 12px;
  font-weight: 950;
}
.chat-window {
  display: grid;
  grid-template-rows: auto 1fr auto auto;
  min-width: 0;
  background: #fbfaf7;
}
.chat-header {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.chat-header h2 {
  margin: 2px 0 4px;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1;
}
.chat-header p {
  margin: 0;
  color: var(--muted);
}
.chat .messages {
  min-height: 420px;
  max-height: 560px;
  overflow: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(244,241,234,.9)),
    #f7f5ef;
}
.message {
  max-width: min(72%, 720px);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  box-shadow: 0 10px 24px rgba(16,17,21,.05);
}
.message.theirs {
  align-self: flex-start;
  background: #fff;
}
.message.mine {
  align-self: flex-end;
  background: #101115;
  color: #fff;
  border-color: #101115;
}
.message-author {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-deep);
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
}
.message.mine .message-author { color: var(--gold); }
.message p { margin: 0 0 7px; line-height: 1.5; }
.message time,
.message small,
.note {
  color: var(--muted);
  font-size: 13px;
}
.message.mine time,
.message.mine small { color: rgba(255,255,255,.62); }
.chat-composer {
  display: grid;
  grid-template-columns: 1fr 220px auto;
  gap: 10px;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.chat .note {
  margin: 0;
  padding: 0 22px 18px;
  background: #fff;
}
.chat-empty p { color: var(--muted); }

.footer {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 28px;
  padding: 42px clamp(18px, 5vw, 72px);
  background: #07080b;
  color: #fff;
}
.footer p, .footer span, .footer a { color: rgba(255,255,255,.78); }
.footer div { display: flex; flex-direction: column; gap: 9px; }
.footer-logo { width: 210px; }

.cookiebar {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: grid;
  grid-template-columns: minmax(280px, 1fr) auto auto;
  align-items: center;
  gap: 18px;
  padding: 18px;
  background: rgba(12,13,17,.96);
  color: #fff;
  border: 1px solid rgba(216,180,107,.34);
  border-radius: 8px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(22px);
}
.cookiebar[hidden] { display: none !important; }
.cookie-copy { display: grid; gap: 5px; }
.cookie-kicker { color: var(--gold); font-size: 12px; font-weight: 950; text-transform: uppercase; }
.cookiebar p { margin: 0; color: rgba(255,255,255,.68); }
.cookiebar a { color: var(--gold); font-weight: 800; }
.cookie-options { display: flex; gap: 12px; flex-wrap: wrap; }
.cookie-options label { color: rgba(255,255,255,.78); display: flex; grid-template-columns: none; align-items: center; gap: 8px; white-space: nowrap; min-height: 42px; padding: 0 10px; border: 1px solid rgba(255,255,255,.12); border-radius: 8px; background: rgba(255,255,255,.06); }
.cookie-options input { width: auto; min-height: auto; accent-color: var(--gold); }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; justify-content: flex-end; }
.cookie-actions button { border: 1px solid rgba(255,255,255,.18); border-radius: 8px; min-height: 42px; padding: 0 13px; background: rgba(255,255,255,.08); color: #fff; font-weight: 850; cursor: pointer; }
.cookie-actions .button {
  color: #101115;
  border-color: rgba(216,180,107,.78);
  background-color: #d8b46b;
  background-image: linear-gradient(135deg, #f0d28b, #b78a3a 55%, #785729);
}

@media (max-width: 980px) {
  .nav-toggle { display: inline-grid; gap: 5px; place-content: center; border: 1px solid rgba(255,255,255,.18); background: rgba(255,255,255,.08); border-radius: 8px; width: 44px; min-height: 40px; padding: 0; }
  .nav-toggle span { display: block; width: 18px; height: 2px; background: #fff; }
  .nav {
    display: none;
    position: absolute;
    left: 18px;
    right: 18px;
    top: 70px;
    flex-direction: column;
    align-items: stretch;
    background: #111219;
    border: 1px solid rgba(216,180,107,.24);
    border-radius: 8px;
    padding: 14px;
    box-shadow: var(--shadow);
  }
  .nav.is-open { display: flex; }
  .hero, .two-col, .auth-shell, .dashboard, .platform-intro, .split-showcase, .artist-spotlight, .concept-section, .responsibility-section, .path-grid, .dj-profile-shell, .request-detail-hero, .request-detail-shell, .contact-hero, .contact-routes, .contact-shell, .dashboard-hero, .dashboard-grid, .admin-command, .admin-grid { grid-template-columns: 1fr; }
  .role-choice-grid { grid-template-columns: 1fr; }
  .auth-intro { position: static; }
  .hero { min-height: auto; }
  .hero-stage-card, .hero-stage-card img { min-height: 520px; }
  .mini-artist, .mini-artist.is-featured { transform: none; grid-template-columns: 1fr; }
  .mini-artist div { grid-column: auto; }
  .grid, .benefits, .footer { grid-template-columns: 1fr; }
  .request-card-meta { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .detail-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-summary { position: static; }
  .request-summary-card { position: static; }
  .profile-grid, .equipment-grid, .request-info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .profile-contact-panel { align-items: stretch; flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .filters { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .stats { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .dashboard-sidebar { position: static; height: auto; }
  .dashboard-card.wide { grid-column: auto; }
  .dashboard-form { grid-template-columns: 1fr; }
  .dashboard-topbar, .panel-head { align-items: stretch; flex-direction: column; }
  .dashboard-hero-actions { justify-content: flex-start; }
  .table div { grid-template-columns: 1fr; }
  .chat-layout, .chat-composer { grid-template-columns: 1fr; }
  .chat-list { border-right: 0; border-bottom: 1px solid var(--line); }
  .message { max-width: 88%; }
  .cookiebar { grid-template-columns: 1fr; }
  .cookie-actions { justify-content: stretch; }
  .cookie-actions button { flex: 1 1 160px; }
}

@media (max-width: 560px) {
  .brand img { width: 154px; }
  .hero h1, .page-hero h1 { font-size: 44px; }
  .hero-stage-card, .hero-stage-card img { min-height: 420px; }
  .hero-booking-card { left: 12px; right: 12px; bottom: 12px; }
  .mini-artist { min-height: 240px; }
  .mini-artist strong { font-size: 28px; }
  .filters { grid-template-columns: 1fr; }
  .request-card { min-height: 0; }
  .request-card-body h3,
  .request-card-body p,
  .request-card .tags { min-height: 0; }
  .request-card-meta { grid-template-columns: 1fr; }
  .detail-grid { grid-template-columns: 1fr; }
  .profile-grid, .equipment-grid, .request-info-grid { grid-template-columns: 1fr; }
  .summary-row { grid-template-columns: 1fr; gap: 5px; }
  .dj-profile-hero { min-height: 520px; }
  .path-card, .independence-card, .responsibility-list { padding: 20px; }
  .steps li { grid-template-columns: 34px 1fr; }
  .steps li::before { width: 34px; height: 34px; }
  .stats { grid-template-columns: 1fr; }
  .section-head { align-items: flex-start; flex-direction: column; }
  .table div { grid-template-columns: 1fr; }
  .cookie-options, .cookie-actions { display: grid; grid-template-columns: 1fr; }
  .cookie-actions button { width: 100%; }
}
