/* ============================================================
   DJ Chaco — styles
   Tokens pulled from the hi-fi design (Claude Design handoff)
   ============================================================ */

:root {
  --bg: #0E0E14;
  --ink: #14141B;
  --surface: #16161F;
  --surface-2: #1E1E29;
  --border: #23232E;
  --border-2: #2c2c38;
  --cream: #F4ECD9;
  --muted: #C7C2B5;
  --faint: #8E897C;
  --dim: #5f5b51;
  --gold: #C8A24C;
  --gold-light: #E4C77A;
  --gold-dark: #5a4a1e;
  --cyan: #36E6E6;
  --orange: #E2693C;
  --font-display: 'Unbounded', cursive;
  --font-body: 'Space Grotesk', system-ui, sans-serif;
  --font-mono: 'Space Mono', monospace;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  color: var(--cream);
}

::selection { background: var(--gold); color: var(--ink); }

a { color: inherit; }

button { font-family: inherit; }

img { max-width: 100%; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.gold { color: var(--gold); }
.gold-light { color: var(--gold-light); }
.orange { color: var(--orange); }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 100;
  background: var(--gold); color: var(--ink);
  padding: 10px 18px; border-radius: 0 0 10px 0;
  font-family: var(--font-mono); font-size: 13px; font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { left: 0; }

/* ---------- animations ---------- */

@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes spin { from { transform: rotate(0); } to { transform: rotate(360deg); } }
@keyframes eq { 0%, 100% { transform: scaleY(.35); } 50% { transform: scaleY(1); } }
@keyframes floatup { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }

.chipbtn {
  cursor: pointer;
  transition: transform .12s ease, background .15s ease, border-color .15s ease, color .15s ease;
}
.chipbtn:hover { transform: translateY(-2px); }

.lift { transition: transform .15s ease, box-shadow .15s ease; }
.lift:hover { transform: translateY(-4px); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .vinyl-disc, .vinyl-mini, .ticker-track, .eq span, .book-vinyl { animation: none !important; }
  .chipbtn, .lift { transition: none; }
}

/* ---------- buttons ---------- */

.btn-gold {
  font-family: var(--font-mono); font-weight: 700; font-size: 13px;
  background: var(--gold); color: var(--ink);
  padding: 10px 18px; border-radius: 30px; text-decoration: none;
  display: inline-block;
}
.btn-lg {
  font-size: 15px; padding: 15px 26px; border-radius: 34px;
  box-shadow: 0 10px 30px rgba(200, 162, 76, .28);
}
.btn-ghost {
  font-family: var(--font-mono); font-weight: 700; font-size: 15px;
  color: var(--cream); padding: 15px 26px; border-radius: 34px;
  text-decoration: none; border: 1.5px solid rgba(244, 236, 217, .28);
  display: inline-flex; align-items: center; gap: 9px;
  box-shadow: none;
}

/* ---------- nav ---------- */

.site-nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: 22px 0; position: sticky; top: 0; z-index: 50;
  background: linear-gradient(var(--bg) 72%, rgba(14, 14, 20, 0));
}

.brand { display: flex; align-items: center; gap: 11px; text-decoration: none; }
.brand-name {
  font-family: var(--font-display); font-weight: 700; font-size: 19px;
  letter-spacing: -.01em;
}

.vinyl-mini {
  width: 34px; height: 34px; border-radius: 50%; flex: none;
  background: radial-gradient(circle at 50% 50%, var(--gold-light) 0 5px, var(--ink) 5px 7px, #3a3a47 7px 9px, var(--ink) 9px 11px, #3a3a47 11px 13px, var(--ink) 13px 15px, #2a2a35 15px 100%);
  box-shadow: 0 0 0 1px var(--border-2), 0 4px 14px rgba(200, 162, 76, .25);
  animation: spin 14s linear infinite;
}
.vinyl-mini-static {
  width: 30px; height: 30px; animation: none;
  background: radial-gradient(circle, var(--gold-light) 0 4px, var(--ink) 4px 6px, #3a3a47 6px 8px, var(--ink) 8px 10px, #2a2a35 10px 100%);
  box-shadow: none;
}

.nav-links { display: flex; align-items: center; gap: 28px; }
.nav-links a {
  font-size: 14px; color: var(--muted); text-decoration: none; font-weight: 500;
}
.nav-links a.btn-nav { color: var(--ink); }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 44px; height: 44px; padding: 10px;
  background: none; border: 1px solid var(--border-2); border-radius: 12px;
  cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; border-radius: 2px; background: var(--cream);
  transition: transform .2s ease, opacity .2s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- hero ---------- */

.hero { padding: 56px 0 30px; position: relative; }
.hero-inner { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.hero-copy { flex: 1; min-width: 330px; }

.kicker {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .26em;
  color: var(--gold); text-transform: uppercase;
}

.hero-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(48px, 7vw, 96px); line-height: .92; letter-spacing: -.025em;
  margin-top: 18px;
}
.hero-title span { display: block; }
.line-cream { color: var(--cream); }
.line-stroke { color: transparent; -webkit-text-stroke: 2px var(--gold); }
.line-gold { color: var(--gold); }

.hero-sub {
  font-size: 19px; line-height: 1.55; color: var(--muted);
  max-width: 46ch; margin-top: 26px;
}
.hero-sub em { color: var(--gold-light); font-style: normal; }

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 34px; }

.hero-stats {
  display: flex; gap: 26px; flex-wrap: wrap; margin-top: 42px; align-items: center;
}
.stat-num {
  font-family: var(--font-display); font-weight: 700; font-size: 26px; color: var(--cream);
}
.stat-label {
  font-size: 12px; color: var(--faint); font-family: var(--font-mono); letter-spacing: .04em;
}
.stat-divider { width: 1px; height: 34px; background: var(--border-2); }

/* ---------- vinyl record ---------- */

.vinyl {
  flex: none; width: clamp(280px, 33vw, 460px); aspect-ratio: 1;
  margin: 0 auto; position: relative;
}
.vinyl-disc {
  position: absolute; inset: 0; border-radius: 50%;
  animation: spin 12s linear infinite;
  background:
    repeating-radial-gradient(circle at 50% 50%, #0b0b10 0 1px, #191921 1px 3px),
    radial-gradient(circle at 50% 50%, #20202a 0 33%, #0a0a0e 33% 100%);
  box-shadow: 0 34px 80px rgba(0, 0, 0, .62), inset 0 0 0 1px #2a2a34;
}
.vinyl-sheen {
  position: absolute; inset: 0; border-radius: 50%;
  background: linear-gradient(125deg, rgba(255, 255, 255, .12) 0%, transparent 32%, transparent 66%, rgba(200, 162, 76, .16) 100%);
}
.vinyl-label {
  position: absolute; inset: 33%; border-radius: 50%;
  background: radial-gradient(circle at 50% 38%, #E8CD83, var(--gold) 72%, #a9842f);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .25), inset 0 6px 16px rgba(255, 255, 255, .18);
}
.vinyl-label-top {
  position: absolute; top: 13%; left: 0; right: 0; text-align: center;
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(13px, 1.6vw, 18px); color: var(--ink);
  line-height: 1; letter-spacing: .02em;
}
.vinyl-label-bottom {
  position: absolute; bottom: 15%; left: 0; right: 0; text-align: center;
  font-family: var(--font-mono); font-size: clamp(6px, .8vw, 9px);
  letter-spacing: .18em; color: var(--gold-dark);
}
.vinyl-hole {
  position: absolute; width: 13%; aspect-ratio: 1; border-radius: 50%;
  background: var(--ink); left: 50%; top: 50%; transform: translate(-50%, -50%);
  box-shadow: inset 0 0 4px #000, 0 0 0 1px rgba(0, 0, 0, .35);
}
.vinyl-glint {
  position: absolute; inset: 0; border-radius: 50%; pointer-events: none;
  background: radial-gradient(120px 220px at 30% 18%, rgba(255, 255, 255, .10), transparent 60%);
}

/* ---------- ticker ---------- */

.ticker {
  background: var(--gold); color: var(--ink);
  overflow: hidden; white-space: nowrap; padding: 13px 0; margin-top: 24px;
  border-top: 1px solid var(--ink); border-bottom: 1px solid var(--ink);
}
.ticker-track {
  display: inline-block; animation: ticker 26s linear infinite;
  font-family: var(--font-display); font-weight: 700; font-size: 15px; letter-spacing: .02em;
}

/* ---------- sections ---------- */

.section { padding: 90px 0 20px; }

.eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .2em;
  color: var(--faint); text-transform: uppercase;
}

.section-title {
  font-family: var(--font-display); font-weight: 700;
  font-size: clamp(32px, 5vw, 52px); line-height: 1; letter-spacing: -.02em;
  margin-top: 12px;
}

.section-head {
  display: flex; align-items: flex-end; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.section-blurb {
  font-size: 16px; color: var(--muted); max-width: 36ch; line-height: 1.55;
}
.blurb-left { max-width: 52ch; margin-top: 14px; }

/* ---------- mixes ---------- */

.mix-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px; margin-top: 36px;
}
.mix-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 20px;
}
.mix-top { display: flex; align-items: center; justify-content: space-between; }
.play-btn {
  width: 46px; height: 46px; border-radius: 50%; border: none;
  color: var(--ink); display: flex; align-items: center; justify-content: center;
  font-size: 17px; cursor: pointer;
}
.play-gold { background: var(--gold); }
.play-cyan { background: var(--cyan); }
.play-orange { background: var(--orange); }
.mix-length { font-family: var(--font-mono); font-size: 11px; color: var(--faint); }

.eq { display: flex; align-items: flex-end; gap: 3px; height: 42px; margin-top: 18px; }
.eq span {
  flex: 1; border-radius: 2px; transform-origin: bottom;
  animation-name: eq; animation-timing-function: ease-in-out; animation-iteration-count: infinite;
}
.eq-gold { background: var(--gold); }
.eq-cyan { background: var(--cyan); }
.eq-orange { background: var(--orange); }

.mix-name {
  font-family: var(--font-display); font-weight: 600; font-size: 18px; margin-top: 18px;
}
.mix-genres { font-size: 13px; color: var(--faint); margin-top: 4px; }

/* ---------- packages ---------- */

.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px; margin-top: 38px; align-items: stretch;
}

.price-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  display: flex; flex-direction: column;
}

.price-card-featured {
  background: linear-gradient(160deg, #1d1a12, var(--surface) 55%);
  border-color: #3a3320; position: relative;
}
.price-card-featured::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  border-radius: 20px 20px 0 0; background: var(--gold);
}

.price-flag {
  position: absolute; top: -12px; left: 28px;
  background: var(--gold); color: var(--ink);
  font-family: var(--font-mono); font-weight: 700; font-size: 10px;
  letter-spacing: .08em; padding: 4px 11px; border-radius: 20px; white-space: nowrap;
}

.price-name { font-family: var(--font-display); font-weight: 600; font-size: 20px; }
.price-name-gold { color: var(--gold-light); }
.price-sub { font-size: 12px; color: var(--faint); margin-top: 4px; font-family: var(--font-mono); }
.price-sub-gold { color: #A99868; }

.price-amount {
  display: flex; align-items: baseline; gap: 7px; margin-top: 18px;
  font-family: var(--font-display); font-weight: 700; font-size: 32px; color: var(--cream);
}
.price-amount span {
  font-family: var(--font-mono); font-weight: 400; font-size: 11px;
  color: var(--faint); text-transform: uppercase; letter-spacing: .08em;
}
.price-time { font-size: 13px; color: var(--faint); margin-top: 4px; }

.price-features { list-style: none; margin-top: 22px; flex: 1; display: flex; flex-direction: column; gap: 12px; }
.price-features li {
  font-size: 14px; color: var(--muted); line-height: 1.4; padding-left: 22px; position: relative;
}
.price-features li::before {
  content: '●'; position: absolute; left: 0; top: 0; color: var(--gold); font-size: 10px; line-height: 1.6;
}
.price-card-featured .price-features li::before { color: var(--gold-light); }

.btn-outline-card {
  display: block; margin-top: 26px; text-align: center; text-decoration: none;
  border: 1.5px solid var(--border-2); color: var(--cream); box-sizing: border-box;
  font-family: var(--font-mono); font-weight: 700; font-size: 14px;
  padding: 13px 18px; border-radius: 30px;
}
.price-card-btn { display: block; width: 100%; box-sizing: border-box; margin-top: 26px; text-align: center; }

.pkg-footnote {
  font-family: var(--font-mono); font-size: 12px; color: var(--faint);
  margin-top: 18px; text-align: center;
}

/* ---------- builder ---------- */

.builder-intro { text-align: center; max-width: 640px; margin: 0 auto; }
.builder-title { font-size: clamp(32px, 5.4vw, 56px); }
.builder-blurb { font-size: 17px; color: var(--muted); line-height: 1.55; margin-top: 16px; }

.crate {
  margin-top: 40px; background: var(--surface);
  border: 1px solid var(--border); border-radius: 20px; padding: 22px;
}
.crate-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap;
}
.crate-label {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .14em;
  color: var(--faint); text-transform: uppercase;
}

.crate-legend {
  display: flex; gap: 14px; font-family: var(--font-mono); font-size: 11px; color: var(--faint);
}
.crate-legend > span { display: inline-flex; align-items: center; gap: 6px; }

.dot { width: 8px; height: 8px; border-radius: 50%; flex: none; display: inline-block; }
.dot-cyan { background: var(--cyan); }
.dot-gold { background: var(--gold-light); }
.dot-orange { background: var(--orange); }
.dot-cream { background: var(--cream); }

.crate-chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 18px; min-height: 44px; }

.chip {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--surface-2); border: 1px solid #2c2c3a; border-radius: 30px;
  padding: 8px 7px 8px 15px; user-select: none;
  -webkit-user-select: none; touch-action: manipulation;
}
.chip-label { font-size: 14px; font-weight: 500; color: var(--cream); white-space: nowrap; }
.chip-actions { display: flex; gap: 4px; }
.chip-act {
  width: 30px; height: 30px; border-radius: 50%; border: none;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; cursor: pointer; line-height: 1; padding: 0;
}
.chip-act-must { background: #23231b; color: var(--gold-light); font-size: 14px; }
.chip-act-not { background: #241a16; color: var(--orange); font-size: 15px; }

.crate-empty { font-size: 14px; color: var(--dim); font-style: italic; padding: 10px 4px; }

.zones { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-top: 18px; }

.zone {
  border-radius: 20px; padding: 22px; min-height: 260px;
  border: 2px solid var(--border); background: var(--surface);
}

.zone-head { display: flex; align-items: center; justify-content: space-between; }
.zone-title { display: flex; align-items: center; gap: 10px; }
.zone-icon {
  width: 30px; height: 30px; border-radius: 50%; color: var(--ink);
  display: flex; align-items: center; justify-content: center; font-size: 15px;
}
.zone-icon-must { background: var(--gold-light); }
.zone-icon-not { background: var(--orange); }
.zone-name { font-family: var(--font-display); font-weight: 600; font-size: 19px; }
.zone-count { font-family: var(--font-mono); font-size: 13px; }
.zone-count-must { color: #A99868; }
.zone-count-not { color: #C77A55; }

.zone-list { display: flex; flex-direction: column; gap: 9px; margin-top: 18px; }

.zone-item {
  display: flex; align-items: center; gap: 10px;
  border-radius: 12px; padding: 11px 13px; animation: floatup .25s ease;
}
.zone-must .zone-item { background: #211d12; border: 1px solid #3a3320; }
.zone-not .zone-item { background: #22150f; border: 1px solid #3d251a; }
.zone-item-label { flex: 1; font-size: 14px; font-weight: 500; }
.zone-not .zone-item-label { text-decoration: line-through; text-decoration-color: #6b4332; }
.zone-item-tag { font-family: var(--font-mono); font-size: 10px; text-transform: uppercase; }
.zone-must .zone-item-tag { color: #A99868; }
.zone-not .zone-item-tag { color: #C77A55; }
.zone-item-remove {
  background: none; border: none; color: var(--faint);
  cursor: pointer; font-size: 16px; line-height: 1;
  min-width: 28px; min-height: 28px;
  display: flex; align-items: center; justify-content: center;
}

.zone-placeholder {
  border: 1.5px dashed #3a3320; border-radius: 12px; padding: 26px 16px;
  text-align: center; color: #6f6a4e; font-size: 14px;
}
.zone-not .zone-placeholder { border-color: #3d251a; color: #6f5046; }

.zone-add { display: flex; gap: 8px; margin-top: 14px; }
.zone-add input {
  flex: 1; min-width: 0; background: var(--ink); border: 1px solid #3a3320;
  border-radius: 10px; padding: 11px 13px; color: var(--cream);
  font-family: var(--font-body); font-size: 14px; outline: none;
}
.zone-not .zone-add input { border-color: #3d251a; }
.zone-add input:focus { border-color: var(--gold); }
.zone-not .zone-add input:focus { border-color: var(--orange); }
.zone-add-btn {
  border: none; border-radius: 10px; padding: 0 16px;
  font-weight: 700; font-size: 18px; cursor: pointer; color: var(--ink);
}
.zone-add-must { background: var(--gold-light); }
.zone-add-not { background: var(--orange); }

/* ---------- lead capture ---------- */

.leadbar {
  margin-top: 18px; background: linear-gradient(120deg, #1d1a12, var(--surface));
  border: 1px solid #2c2820; border-radius: 20px; padding: 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
}
.leadbar-copy { min-width: 220px; flex: 1; }
.leadbar-headline { font-family: var(--font-display); font-weight: 600; font-size: 20px; }
.leadbar-sub { font-size: 14px; color: #A39E90; margin-top: 4px; }

.leadbar-form { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.leadbar-form input {
  background: var(--ink); border: 1px solid #3a3320; border-radius: 30px;
  padding: 14px 20px; color: var(--cream);
  font-family: var(--font-body); font-size: 15px; outline: none; min-width: 220px;
}
.leadbar-form input:focus { border-color: var(--gold); }
.leadbar-btn {
  background: var(--gold); color: var(--ink); border: none; border-radius: 30px;
  padding: 14px 24px; font-family: var(--font-mono); font-weight: 700;
  font-size: 14px; cursor: pointer; white-space: nowrap;
}
.leadbar-btn.saved { background: var(--cyan); }

/* ---------- reviews ---------- */

.reviews-head { margin-top: 12px; }
.reviews-score { text-align: right; }
.stars { font-size: 20px; letter-spacing: 3px; color: var(--gold); }
.reviews-meta {
  font-family: var(--font-mono); font-size: 12px; color: var(--faint); margin-top: 4px;
}

.review-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 16px; margin-top: 36px;
}
.review-card {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: 18px; padding: 24px;
}
.stars-sm { font-size: 15px; letter-spacing: 2px; color: var(--gold); }
.review-card blockquote {
  font-size: 18px; line-height: 1.5; margin-top: 14px; color: var(--cream); border: none;
}
.review-card blockquote em { font-style: normal; color: var(--gold-light); }
.review-who { display: flex; align-items: center; gap: 11px; margin-top: 18px; }
.review-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--border); flex: none; }
.review-name { font-weight: 600; font-size: 14px; }
.review-venue { font-size: 12px; color: var(--faint); }

/* ---------- book ---------- */

.section-book { padding: 80px 0 30px; }

.book-card {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 28px; padding: clamp(34px, 5vw, 60px);
  position: relative; overflow: hidden;
}
.book-vinyl {
  position: absolute; right: -60px; top: -60px; width: 240px; height: 240px;
  border-radius: 50%; opacity: .18; animation: spin 20s linear infinite;
  background: radial-gradient(circle, var(--ink) 0 20px, transparent 20px 26px, var(--ink) 26px 32px, transparent 32px 38px, var(--ink) 38px 44px, transparent 44px 100%);
}
.book-inner { position: relative; }
.book-eyebrow {
  font-family: var(--font-mono); font-size: 12px; letter-spacing: .24em;
  color: var(--gold-dark); text-transform: uppercase;
}
.book-title {
  font-family: var(--font-display); font-weight: 800;
  font-size: clamp(34px, 5.6vw, 60px); line-height: .96; letter-spacing: -.025em;
  margin-top: 14px; color: var(--ink); max-width: 18ch;
}
.book-sub {
  font-size: 17px; color: #3a3015; line-height: 1.5; margin-top: 16px; max-width: 46ch;
}
.book-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 28px; align-items: center; }

.book-date { display: flex; gap: 8px; background: var(--ink); padding: 8px; border-radius: 16px; }
.book-date input {
  background: transparent; border: none; color: var(--cream);
  font-family: var(--font-mono); font-size: 15px; padding: 10px 14px;
  outline: none; color-scheme: dark;
}

.btn-dark {
  background: var(--ink); color: var(--gold);
  font-family: var(--font-mono); font-weight: 700; font-size: 15px;
  padding: 16px 28px; border-radius: 30px; text-decoration: none; display: inline-block;
  border: none; appearance: none; -webkit-appearance: none;
}
.btn-outline-dark {
  border: 1.5px solid var(--ink); color: var(--ink);
  font-family: var(--font-mono); font-weight: 700; font-size: 15px;
  padding: 16px 28px; border-radius: 30px; text-decoration: none; display: inline-block;
}

/* ---------- footer ---------- */

.site-footer {
  padding: 50px 0 70px; border-top: 1px solid #1c1c26; margin-top: 30px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-name { font-family: var(--font-display); font-weight: 700; font-size: 17px; }
.footer-tag { font-size: 12px; color: var(--faint); font-family: var(--font-mono); }

.footer-links { display: flex; gap: 22px; font-size: 13px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: var(--faint); }
.footer-links a.gold { color: var(--gold); }

.footer-copy { font-family: var(--font-mono); font-size: 12px; color: var(--dim); }

/* ============================================================
   Responsive
   ============================================================ */

@media (max-width: 860px) {
  .section { padding: 70px 0 16px; }
  .hero { padding: 36px 0 24px; }
  .hero-inner { gap: 32px; }
  .vinyl { width: min(72vw, 340px); }
  .reviews-score { text-align: left; }
  .pricing-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav-toggle { display: flex; }
  .site-nav { flex-wrap: wrap; background: var(--bg); }
  .nav-links {
    display: none;
    flex-direction: column; align-items: flex-start; gap: 4px;
    width: 100%; padding: 14px 0 6px;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    font-size: 16px; padding: 12px 4px; width: 100%;
  }
  .nav-links a.btn-nav {
    width: auto; margin-top: 8px; padding: 12px 22px; font-size: 14px;
  }

  .zones { grid-template-columns: 1fr; }

  .leadbar { flex-direction: column; align-items: stretch; }
  .leadbar-form { flex-direction: column; align-items: stretch; }
  .leadbar-form input { min-width: 0; }
  .leadbar-btn { white-space: normal; }
}

@media (max-width: 560px) {
  .container { padding: 0 18px; }
  .hero-sub { font-size: 17px; }
  .hero-ctas a { width: 100%; text-align: center; justify-content: center; }
  .hero-stats { gap: 18px; }
  .builder-blurb { font-size: 16px; }
  .crate { padding: 18px; }
  .zone { padding: 18px; min-height: 0; }
  .book-ctas { align-items: stretch; flex-direction: column; }
  .book-date { justify-content: center; }
  .book-date input { width: 100%; text-align: center; }
  .btn-dark, .btn-outline-dark { text-align: center; }
  .ticker-track { font-size: 13px; }
}
