/* ========================================================================
   DJ Services — Peter Carlstedt
   Art direction: black field, acid-lime accent, widely tracked uppercase,
   geometric heavy display, retro vinyl/speaker graphics.
   ======================================================================== */

:root {
  /* Color */
  --black: #0a0a0a;
  --ink: #050505;
  --surface: #111110;
  --surface-2: #161614;
  --line: #1f1f1d;
  --line-2: #2a2a27;
  --text: #e9e9e6;
  --text-muted: #8b8b86;
  --text-faint: #5a5a55;
  --gray-card: #2a2a27;
  --lime: #c5e400;
  --lime-hover: #d6f221;
  --lime-deep: #9bb800;
  /* Type */
  --font-display: 'Archivo Black', 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
  --font-head: 'Cabinet Grotesk', 'Inter', system-ui, sans-serif;
  --font-body: 'Satoshi', 'Inter', system-ui, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, Menlo, monospace;
  /* Layout */
  --container: 1240px;
  --container-pad: clamp(20px, 4vw, 48px);
  --section-pad-y: clamp(72px, 10vw, 140px);
  --radius: 4px;
  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ----- reset ----- */
*,
*::before,
*::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
img, svg { display: block; max-width: 100%; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }
input, select, textarea, button { font: inherit; color: inherit; }
::selection { background: var(--lime); color: var(--black); }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  font-feature-settings: 'ss01', 'cv11';
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--lime); color: var(--black);
  padding: 8px 16px; font-weight: 700;
}
.skip-link:focus { left: 8px; top: 8px; z-index: 100; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

/* ============================ TYPE ============================ */
.eyebrow {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--lime);
  margin: 0 0 20px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--lime);
  display: inline-block;
}

.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(32px, 5.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 24px;
  color: var(--text);
}
.section-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--lime);
}

.section-lede {
  max-width: 60ch;
  color: var(--text-muted);
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.6;
  margin: 0;
}

/* ============================ NAV ============================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 280ms var(--ease), background 280ms var(--ease);
}
.site-header.is-scrolled {
  background: rgba(10, 10, 10, 0.92);
  border-bottom-color: var(--line);
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding-block: 18px;
}
.brand {
  display: flex; align-items: center; gap: 12px;
  color: var(--lime);
}
.brand-mark { width: 44px; height: auto; flex-shrink: 0; }
.brand-text { display: flex; align-items: baseline; gap: 8px; line-height: 1; }
.brand-dj {
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.02em;
  color: var(--lime);
}
.brand-sub {
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color 200ms var(--ease);
  padding: 8px 0;
}
.nav-links a:hover, .nav-links a:focus-visible { color: var(--lime); }
.nav-cta {
  color: var(--black) !important;
  background: var(--lime);
  padding: 10px 18px !important;
  border-radius: 999px;
}
.nav-cta:hover { background: var(--lime-hover); color: var(--black) !important; }

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  flex-direction: column; align-items: center; justify-content: center;
  gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2px; background: var(--text);
  transition: transform 220ms var(--ease), opacity 220ms var(--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); }

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 12px var(--container-pad) 28px;
  border-top: 1px solid var(--line);
  background: rgba(10, 10, 10, 0.96);
}
.mobile-menu[hidden] { display: none; }
.mobile-menu a {
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text);
}
.mobile-menu a:last-child { color: var(--lime); }

@media (max-width: 880px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .mobile-menu.is-open { display: flex; }
}

/* ============================ BUTTONS ============================ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 26px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 500;
  border-radius: 999px;
  transition: transform 200ms var(--ease), background 200ms var(--ease), color 200ms var(--ease), border-color 200ms var(--ease);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }
.btn-primary {
  background: var(--lime);
  color: var(--black);
}
.btn-primary:hover { background: var(--lime-hover); }
.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--line-2);
}
.btn-ghost:hover { border-color: var(--lime); color: var(--lime); }
.btn-dot {
  width: 8px; height: 8px; border-radius: 999px;
  background: var(--lime);
  box-shadow: 0 0 0 4px rgba(197, 228, 0, 0.18);
  animation: pulse 2.4s var(--ease) infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(197, 228, 0, 0.18); }
  50% { box-shadow: 0 0 0 8px rgba(197, 228, 0, 0.04); }
}

/* ============================ HERO ============================ */
.hero {
  position: relative;
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 80% 50% at 20% 0%, rgba(197, 228, 0, 0.08), transparent 60%),
    radial-gradient(ellipse 70% 60% at 100% 30%, rgba(197, 228, 0, 0.04), transparent 60%),
    var(--black);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(32px, 5vw, 80px);
  align-items: center;
  padding-bottom: clamp(56px, 8vw, 96px);
}
.hero-copy { min-width: 0; }
.hero-title {
  font-family: var(--font-display);
  font-weight: 900;
  line-height: 0.88;
  letter-spacing: -0.03em;
  margin: 8px 0 28px;
  color: var(--text);
}
.hero-dj {
  display: block;
  font-size: clamp(96px, 18vw, 220px);
  color: var(--lime);
  line-height: 0.92;
  letter-spacing: -0.04em;
  padding-bottom: 0.06em;
}
.hero-dj-j {
  position: relative;
  display: inline-block;
}
.hero-headphones {
  position: absolute;
  top: -0.18em;
  left: 50%;
  width: 0.78em;
  transform: translateX(-50%);
  color: var(--text-muted);
}
.hero-services {
  display: block;
  font-family: var(--font-head);
  font-weight: 500;
  font-size: clamp(28px, 4.5vw, 56px);
  color: var(--text-muted);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  padding-top: 14px;
  margin-top: 14px;
  border-top: 1px dotted var(--line-2);
}

.hero-lede {
  max-width: 52ch;
  font-size: clamp(17px, 1.4vw, 20px);
  color: var(--text-muted);
  margin: 0 0 32px;
  line-height: 1.55;
}
.hero-cta { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }

.hero-meta {
  display: flex; flex-wrap: wrap; gap: 24px 36px;
  list-style: none; margin: 0; padding: 24px 0 0;
  border-top: 1px solid var(--line);
}
.hero-meta li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-faint);
  position: relative;
  padding-left: 16px;
}
.hero-meta li::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 6px; height: 6px;
  background: var(--lime);
  transform: translateY(-50%);
  border-radius: 999px;
}

/* ---- Speaker art ---- */
.hero-art {
  position: relative;
  aspect-ratio: 3 / 4;
  max-width: 500px;
  margin-inline: auto;
  width: 100%;
}
.speaker {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 10%, rgba(255, 255, 255, 0.11), transparent 34%),
    radial-gradient(ellipse at 50% 86%, rgba(197, 228, 0, 0.08), transparent 42%),
    linear-gradient(155deg, #343431 0%, #252522 46%, #171715 100%) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(197, 228, 0, 0.36) 46%, rgba(255, 255, 255, 0.08)) border-box;
  border: 1px solid rgba(197, 228, 0, 0.2);
  border-radius: 12px;
  padding: 14% 14% 12%;
  display: grid;
  grid-template-rows: 1fr 1.4fr;
  gap: 6%;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    inset 0 -34px 58px rgba(0, 0, 0, 0.38),
    0 28px 70px rgba(0, 0, 0, 0.52),
    0 0 70px rgba(197, 228, 0, 0.08);
}
.speaker-driver {
  position: relative;
  margin: auto;
  aspect-ratio: 1;
  width: 100%;
  max-width: 220px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 50% 38%, #3e3e38 0%, #181817 42%, #050505 74%),
    radial-gradient(circle at 50% 50%, rgba(197, 228, 0, 0.12), transparent 58%);
  box-shadow:
    inset 0 0 24px rgba(0, 0, 0, 0.72),
    inset 0 3px 0 rgba(255, 255, 255, 0.1),
    0 7px 20px rgba(0, 0, 0, 0.5),
    0 0 0 10px rgba(0, 0, 0, 0.24);
}
.speaker-driver--top { width: 56%; }
.speaker-driver--bottom { width: 92%; }
.speaker-driver .ring {
  position: absolute; inset: 0;
  border-radius: 50%;
  border: 1px solid rgba(197, 228, 0, 0.26);
  pointer-events: none;
}
.speaker-driver .r1 { inset: 8%; border-color: rgba(255, 255, 255, 0.14); }
.speaker-driver .r2 { inset: 16%; border-color: rgba(197, 228, 0, 0.36); }
.speaker-driver .r3 { inset: 24%; border-color: rgba(255, 255, 255, 0.12); }
.speaker-driver .r4 { inset: 32%; border-color: rgba(197, 228, 0, 0.5); }
.speaker-driver .r5 { inset: 40%; border-color: rgba(255, 255, 255, 0.12); }
.speaker-driver .r6 { inset: 48%; border-color: rgba(197, 228, 0, 0.68); }
.speaker-driver .dot {
  position: absolute; top: 50%; left: 50%;
  width: 10%; height: 10%;
  background: var(--lime);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  box-shadow:
    0 0 18px rgba(197, 228, 0, 0.9),
    0 0 38px rgba(197, 228, 0, 0.46),
    inset 0 -2px 4px rgba(0, 0, 0, 0.3);
}

.speaker-driver--top { animation: hum 5.5s ease-in-out infinite; }
.speaker-driver--bottom { animation: hum 7s ease-in-out infinite reverse; }
@keyframes hum {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.012); }
}
@media (prefers-reduced-motion: reduce) {
  .speaker-driver--top, .speaker-driver--bottom { animation: none; }
}

/* ---- Genre ticker ---- */
.ticker {
  border-block: 1px solid var(--line);
  background: var(--ink);
  overflow: hidden;
  padding: 18px 0;
  margin-top: 0;
}
.ticker-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  width: max-content;
  animation: ticker 60s linear infinite;
}
.ticker-track span {
  font-family: var(--font-display);
  font-size: clamp(22px, 3vw, 36px);
  letter-spacing: 0.04em;
  color: var(--text-faint);
  -webkit-text-stroke: 1px var(--lime);
  color: transparent;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) { .ticker-track { animation: none; } }

@media (max-width: 880px) {
  .hero-grid { grid-template-columns: 1fr; padding-bottom: 64px; }
  .hero-art { max-width: 360px; }
}

/* ============================ SECTIONS ============================ */
.section {
  padding-block: var(--section-pad-y);
  position: relative;
}
.section--dark {
  background: var(--ink);
  border-block: 1px solid var(--line);
}

.section-head {
  max-width: 820px;
  margin-bottom: clamp(40px, 6vw, 72px);
}

/* ---- Services ---- */
.service-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--black);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--black);
  padding: 40px 32px 36px;
  transition: background 280ms var(--ease);
  position: relative;
}
.service-card:hover { background: var(--surface-2); }
.service-num {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--lime);
  margin-bottom: 28px;
}
.service-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--text);
}
.service-card p {
  color: var(--text-muted);
  margin: 0 0 22px;
  font-size: 15.5px;
  line-height: 1.6;
}
.service-meta {
  list-style: none; margin: 0; padding: 16px 0 0;
  border-top: 1px dotted var(--line-2);
  display: flex; flex-direction: column; gap: 6px;
}
.service-meta li {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.service-meta li::before {
  content: '+ ';
  color: var(--lime);
}

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .service-grid { grid-template-columns: 1fr; }
}

/* ---- About / Why ---- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: start;
}
.why-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column;
}
.why-list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}
.why-list li:last-child { border-bottom: 1px solid var(--line); }
.why-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.22em;
  color: var(--lime);
}
.why-list h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 19px;
  margin: 0 0 6px;
  color: var(--text);
}
.why-list p { margin: 0; color: var(--text-muted); font-size: 15.5px; }
@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ---- Vinyl / Sound ---- */
.vinyl {
  background:
    radial-gradient(ellipse at 0% 50%, rgba(197, 228, 0, 0.05), transparent 50%),
    var(--black);
}
.vinyl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.vinyl-art {
  position: relative;
  aspect-ratio: 1;
  max-width: 520px;
  width: 100%;
  margin-inline: auto;
}
.record {
  position: absolute; inset: 0;
  animation: spin 1.8s linear infinite;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.6));
}
.record-svg { width: 100%; height: 100%; }
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) { .record { animation: none; } }

.vinyl-copy p {
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.65;
  max-width: 56ch;
  margin: 0 0 18px;
}
.genre-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-top: 28px;
}
.genre-chips span {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 8px 14px;
  border: 1px solid var(--line-2);
  border-radius: 999px;
}
.genre-chips span:hover { border-color: var(--lime); color: var(--lime); }
@media (max-width: 880px) {
  .vinyl-grid { grid-template-columns: 1fr; }
  .vinyl-art { max-width: 360px; }
}

/* ---- Testimonials ---- */
.testi-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.testi-card {
  border: 1px solid var(--line);
  padding: 36px 32px 28px;
  background: var(--surface);
  position: relative;
}
.testi-card::before {
  content: '"';
  position: absolute;
  top: 8px; left: 24px;
  font-family: var(--font-display);
  font-size: 84px;
  line-height: 1;
  color: var(--lime);
  opacity: 0.7;
}
.quote {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text);
  margin: 32px 0 24px;
  letter-spacing: -0.005em;
}
.testi-meta {
  display: flex; gap: 14px; flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-top: 18px;
  border-top: 1px dotted var(--line-2);
}
.testi-meta span:first-child { color: var(--lime); }
@media (max-width: 760px) {
  .testi-grid { grid-template-columns: 1fr; }
}

/* ---- Booking ---- */
.booking-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.contact-list {
  list-style: none; margin: 36px 0 0; padding: 0;
  display: flex; flex-direction: column;
  border-top: 1px solid var(--line);
}
.contact-list li {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: baseline;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
}
.contact-list .label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
}
.contact-list a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: -0.01em;
  color: var(--lime);
  transition: color 200ms var(--ease);
}
.contact-list a:hover { color: var(--lime-hover); }

.booking-form {
  display: grid; gap: 14px;
  padding: clamp(28px, 4vw, 44px);
  background: var(--surface);
  border: 1px solid var(--line);
  position: relative;
}
.booking-form::before {
  content: '';
  position: absolute; top: -1px; left: -1px;
  width: 80px; height: 2px;
  background: var(--lime);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.booking-form label {
  display: flex; flex-direction: column; gap: 8px;
  min-width: 0;
}
.booking-form label.full { grid-column: 1 / -1; }
.field-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.field-label em { color: var(--lime); font-style: normal; }

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  background: var(--black);
  border: 1px solid var(--line-2);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--text);
  border-radius: 2px;
  transition: border-color 180ms var(--ease), background 180ms var(--ease);
}
.booking-form textarea { resize: vertical; min-height: 120px; line-height: 1.5; }
.booking-form input::placeholder,
.booking-form textarea::placeholder { color: var(--text-faint); }
.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: none;
  border-color: var(--lime);
  background: var(--surface-2);
}
.booking-form input:user-invalid,
.booking-form select:user-invalid,
.booking-form textarea:user-invalid {
  border-color: #c14a4a;
}
.booking-form select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 8' fill='none' stroke='%23c5e400' stroke-width='1.6'><path d='M1 1l5 5 5-5'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-size: 12px;
  padding-right: 40px;
}

.form-actions {
  display: flex; flex-wrap: wrap; align-items: center; gap: 18px;
  margin-top: 8px;
}
.form-note { margin: 0; font-size: 13px; color: var(--text-faint); max-width: 38ch; }
.form-status {
  margin-top: 6px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  min-height: 18px;
}
.form-status.is-success { color: var(--lime); }
.form-status.is-error { color: #e57a7a; }

@media (max-width: 880px) {
  .booking-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================ FOOTER ============================ */
.site-footer {
  background: var(--ink);
  border-top: 1px solid var(--line);
  padding: 56px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.footer-brand {
  display: flex; align-items: center; gap: 16px;
  color: var(--lime);
}
.footer-dj {
  font-family: var(--font-display);
  color: var(--lime);
  font-size: 22px;
  line-height: 1;
}
.footer-name {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}
.footer-contact {
  display: flex; flex-direction: column; gap: 8px;
}
.footer-contact a {
  font-family: var(--font-head);
  font-weight: 500;
  font-size: 18px;
  color: var(--text);
  transition: color 200ms var(--ease);
}
.footer-contact a:hover { color: var(--lime); }
.footer-meta {
  display: flex; flex-direction: column; gap: 12px;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: right;
}
.footer-meta .copy { color: var(--text-faint); }
@media (max-width: 760px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-meta { text-align: left; }
}

/* ============================ FOCUS ============================ */
:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
  border-radius: 2px;
}
.btn:focus-visible { outline-offset: 4px; }

/* ============================ REVEAL ============================ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}
