/* ===== DJ Musha — Huddersfield Mobile DJ ===== */
:root {
  --bg: #0a0710;
  --text: #f4f1f8;
  --muted: #9b94a8;
  --muted-2: #837c93;
  --magenta: #e23bce;
  --grad: linear-gradient(95deg, #f43fce 0%, #b14aef 48%, #8e8cf6 100%);
  --panel: rgba(255, 255, 255, 0.025);
  --panel-brd: rgba(255, 255, 255, 0.08);
  --maxw: 1024px;
  --radius: 20px;
  --font: 'Inter', ui-sans-serif, system-ui, sans-serif;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; }

.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.grad-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.ic { width: 18px; height: 18px; flex: none; }
.ic--mag { color: var(--magenta); }

/* ===== Buttons ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 600; font-size: 15px; line-height: 1;
  padding: 13px 22px; border-radius: 999px;
  border: 1px solid transparent; cursor: pointer;
  transition: transform .18s ease, box-shadow .25s ease, background .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.btn--lg { padding: 16px 30px; font-size: 16px; }
.btn--grad {
  background: var(--grad); color: #faf6ff; font-weight: 700;
  box-shadow: 0 10px 34px rgba(177, 74, 239, .38);
}
.btn--grad:hover { transform: translateY(-2px); box-shadow: 0 14px 42px rgba(244, 63, 206, .5); }
.btn--glass {
  background: rgba(255,255,255,.04); color: var(--text);
  border-color: var(--panel-brd); backdrop-filter: blur(8px);
}
.btn--glass:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.07); }

/* ===== Nav ===== */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  background: rgba(10, 7, 16, .55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,.05);
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { font-weight: 800; letter-spacing: .16em; font-size: 16px; }
.brand__accent { background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.nav__cta { font-size: 14px; padding: 10px 22px; }

/* ===== Hero ===== */
.hero { position: relative; overflow: hidden; min-height: 100vh; display: flex; align-items: flex-end; }
.hero__bg {
  position: absolute; inset: 0;
  background: url('/assets/dj-hero.jpg') center 28% / cover no-repeat;
}
.hero__bg::after {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 50% 5%, rgba(142,140,246,.35), transparent 70%),
    linear-gradient(180deg, rgba(10,7,16,.45) 0%, rgba(10,7,16,.25) 30%, rgba(10,7,16,.85) 80%, var(--bg) 100%);
}
.hero__inner { position: relative; z-index: 2; padding: 120px 24px 90px; }
.badges { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 26px; }
.badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12.5px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: #e7e3ef;
  background: rgba(12, 8, 20, .5); border: 1px solid var(--panel-brd);
  padding: 8px 15px; border-radius: 999px; backdrop-filter: blur(6px);
}
.badge .ic { width: 15px; height: 15px; }
.hero__title {
  font-size: clamp(2.7rem, 8.5vw, 5.7rem);
  font-weight: 800; line-height: .98; letter-spacing: -.035em;
  margin-bottom: 22px;
}
.hero__sub { max-width: 520px; color: #cbc5d8; font-size: clamp(1rem, 2.4vw, 1.15rem); }
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* ===== Sections ===== */
.section { padding: 84px 0; position: relative; }
.eyebrow {
  display: block; font-size: 13px; font-weight: 700; letter-spacing: .22em; text-transform: uppercase;
  color: var(--magenta); margin-bottom: 14px;
}
.eyebrow--center { text-align: center; }
.section__title { font-size: clamp(2.1rem, 5.2vw, 3.3rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.05; }
.section__lead { color: var(--muted); margin-top: 16px; display: flex; align-items: center; gap: 9px; }

/* ===== Services / stacked rows ===== */
.rows { display: flex; flex-direction: column; gap: 18px; margin-top: 40px; }
.row {
  background: var(--panel); border: 1px solid var(--panel-brd);
  border-radius: var(--radius); padding: 30px 34px;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}
.row:hover { border-color: rgba(226,59,206,.4); background: rgba(226,59,206,.045); transform: translateY(-2px); }
.row__icon { color: var(--magenta); margin-bottom: 16px; }
.row__icon svg { width: 30px; height: 30px; }
.row h3 { font-size: 23px; font-weight: 700; letter-spacing: -.01em; margin-bottom: 9px; }
.row p { color: var(--muted); font-size: 15.5px; max-width: 70ch; }

/* ===== About ===== */
.about { position: relative; border-radius: 26px; overflow: hidden; border: 1px solid var(--panel-brd); margin-top: 8px; }
.about__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(50% 80% at 88% 12%, rgba(177,74,239,.22), transparent 70%),
    radial-gradient(45% 70% at 5% 95%, rgba(244,63,206,.16), transparent 70%),
    linear-gradient(160deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}
.about__inner { position: relative; z-index: 2; padding: 48px 44px; }
.about__bio { color: #cdc7da; margin-top: 18px; max-width: 90ch; font-size: 16px; }
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 40px; }
.stat { display: flex; flex-direction: column; gap: 4px; }
.stat__num { font-size: 2.7rem; font-weight: 800; letter-spacing: -.02em; color: var(--magenta); line-height: 1; }
.stat__star { color: var(--magenta); }
.stat__label { color: var(--muted-2); font-weight: 600; font-size: 13px; letter-spacing: .14em; text-transform: uppercase; }

/* ===== Reviews ===== */
.reviews { display: flex; flex-direction: column; gap: 18px; margin-top: 36px; }
.review {
  background: var(--panel); border: 1px solid var(--panel-brd);
  border-radius: var(--radius); padding: 28px 32px;
}
.review__head { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.stars { color: var(--magenta); letter-spacing: 2px; font-size: 15px; }
.stars--sm { font-size: 13px; }
.review__src { font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--muted-2); }
.review blockquote { color: #ded9ea; font-size: 16px; line-height: 1.6; }
.review figcaption { margin-top: 18px; display: flex; flex-direction: column; gap: 3px; }
.review figcaption strong { font-size: 14.5px; font-weight: 700; }
.review figcaption span { color: var(--muted-2); font-size: 12px; letter-spacing: .1em; text-transform: uppercase; }

/* ===== FAQ ===== */
.faq { margin-top: 38px; display: flex; flex-direction: column; gap: 14px; }
.faq__item {
  background: var(--panel); border: 1px solid var(--panel-brd); border-radius: 16px;
  overflow: hidden; transition: border-color .2s, background .2s;
}
.faq__item[open] { border-color: rgba(226,59,206,.35); background: rgba(226,59,206,.03); }
.faq__item summary {
  list-style: none; cursor: pointer; padding: 22px 28px;
  font-weight: 700; font-size: 18px; letter-spacing: -.01em;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__item summary::after { content: '+'; font-size: 26px; font-weight: 400; color: var(--magenta); transition: transform .25s; line-height: 1; }
.faq__item[open] summary::after { transform: rotate(45deg); }
.faq__body { padding: 0 28px 24px; color: var(--muted); font-size: 15.5px; }

/* ===== Book ===== */
.book { position: relative; border-radius: 26px; overflow: hidden; border: 1px solid var(--panel-brd); text-align: center; }
.book__glow {
  position: absolute; inset: 0;
  background:
    radial-gradient(55% 60% at 50% 0%, rgba(177,74,239,.28), transparent 70%),
    radial-gradient(50% 60% at 50% 100%, rgba(244,63,206,.16), transparent 70%),
    linear-gradient(160deg, rgba(255,255,255,.03), rgba(255,255,255,0));
}
.book__inner { position: relative; z-index: 2; padding: 54px 40px; max-width: 660px; margin: 0 auto; }
.book__lead { color: var(--muted); margin: 14px auto 0; max-width: 460px; }
.book__actions { display: flex; flex-direction: column; gap: 14px; margin: 36px 0 22px; }
.cbtn {
  display: flex; align-items: center; justify-content: center; gap: 11px;
  width: 100%; padding: 17px 24px; border-radius: 999px;
  font-weight: 600; font-size: 16px;
  background: rgba(255,255,255,.035); border: 1px solid var(--panel-brd); color: var(--text);
  transition: transform .18s ease, background .2s, border-color .2s, box-shadow .25s;
}
.cbtn:hover { transform: translateY(-2px); border-color: rgba(255,255,255,.22); background: rgba(255,255,255,.06); }
.cbtn--grad {
  background: var(--grad); border-color: transparent; color: #faf6ff; font-weight: 700;
  box-shadow: 0 10px 34px rgba(177,74,239,.38);
}
.cbtn--grad:hover { box-shadow: 0 14px 42px rgba(244,63,206,.5); }
.book__note { margin-top: 16px; font-size: 13px; color: var(--muted-2); letter-spacing: .04em; }

/* ===== Footer ===== */
.footer { border-top: 1px solid rgba(255,255,255,.06); padding: 48px 0; }
.footer__inner { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.brand--footer { display: inline-flex; align-items: center; gap: 9px; }
.brand--footer .ic { width: 18px; height: 18px; }
.footer p { color: var(--muted); font-size: 14px; }
.footer__copy { font-size: 13px; color: var(--muted-2); }

/* ===== Responsive ===== */
@media (max-width: 720px) {
  .section { padding: 60px 0; }
  .hero__inner { padding: 110px 24px 64px; }
  .row { padding: 26px 24px; }
  .row h3 { font-size: 21px; }
  .about__inner { padding: 36px 26px; }
  .stats { grid-template-columns: 1fr; gap: 24px; }
  .review { padding: 24px 24px; }
  .book__inner { padding: 44px 24px; }
  .hero__cta .btn { flex: 1 1 auto; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

/* ===== Footer extras (areas + internal links) ===== */
.footer__links { display: flex; flex-wrap: wrap; gap: 6px 18px; justify-content: center; margin-top: 6px; }
.footer__links a { color: var(--muted); font-size: 13.5px; font-weight: 500; }
.footer__links a:hover { color: var(--text); }
.footer__areas { color: var(--muted-2); font-size: 12.5px; max-width: 540px; line-height: 1.5; }

/* ===== Local landing pages (town x service) ===== */
.pagehead { position: relative; padding: 124px 0 8px; }
.pagehead .eyebrow { color: var(--magenta); }
.pagehead h1 { font-size: clamp(2.1rem, 5.5vw, 3.4rem); font-weight: 800; letter-spacing: -.03em; line-height: 1.04; margin-bottom: 18px; }
.pagehead .lead { color: #d2cce0; font-size: clamp(1.02rem, 2.2vw, 1.18rem); max-width: 60ch; }
.pagehead .hero__cta { margin-top: 28px; }
.prose { padding-top: 8px; }
.prose h2 { font-size: clamp(1.45rem, 3.6vw, 2rem); font-weight: 800; letter-spacing: -.02em; margin-top: 44px; line-height: 1.12; }
.prose p { color: #cdc7da; font-size: 16px; margin-top: 16px; max-width: 70ch; }
.prose ul { margin-top: 18px; list-style: none; display: flex; flex-direction: column; gap: 11px; max-width: 70ch; }
.prose li { color: #cdc7da; font-size: 16px; padding-left: 26px; position: relative; }
.prose li::before { content: ''; position: absolute; left: 0; top: 9px; width: 8px; height: 8px; border-radius: 50%; background: var(--grad); }
.prose strong { color: var(--text); }
.backlinks { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 8px 20px; }
.backlinks a { color: var(--magenta); font-size: 14.5px; font-weight: 600; }
.backlinks a:hover { text-decoration: underline; }

/* ===== Press / as-featured strip ===== */
.press { border-bottom: 1px solid rgba(255,255,255,.06); padding: 22px 0; background: rgba(255,255,255,.012); }
.press__inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 10px 18px; }
.press__label { color: var(--muted-2); font-size: 12px; text-transform: uppercase; letter-spacing: .18em; font-weight: 600; }
.press__item { color: var(--text); font-weight: 700; font-size: 15px; }
a.press__item:hover { color: var(--magenta); }
.press__dot { width: 4px; height: 4px; border-radius: 50%; background: var(--muted-2); }
