/* ─── Reset & base ─────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Ensure [hidden] always wins over component display rules */
[hidden] { display: none !important; }

:root {
  --bg:           #FAF8F3;
  --surface:      #F2EDE4;
  --surface2:     #EAE5DA;
  --border:       #D8D1C6;
  --accent:       #8B1527;
  --accent-dim:   rgba(139, 21, 39, 0.08);
  --text:         #1A1612;
  --text-muted:   #7A6D62;
  --text-dim:     #B5ACA4;
  --pill-bg:      #EDE7DC;
  --pill-text:    #3A2E24;
  --row-hover:    rgba(0, 0, 0, 0.03);
  --row-alt:      rgba(0, 0, 0, 0.018);
  --surface-card: #FFFFFF;
  --input-bg:     rgba(255, 255, 255, 0.7);
  --glass-bg:     rgba(250, 248, 243, 0.65);
  --glass-inset:  rgba(255, 255, 255, 0.55);
  --clear-border: rgba(0, 0, 0, 0.12);
  --radius:       4px;
  --font:         'Satoshi', 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif:   'Playfair Display', Georgia, 'Times New Roman', serif;
}

[data-theme="dark"] {
  --bg:           #0F0C0A;
  --surface:      #181410;
  --surface2:     #201C18;
  --border:       #2C2420;
  --accent:       #D4516A;
  --accent-dim:   rgba(212, 81, 106, 0.14);
  --text:         #F0EBE3;
  --text-muted:   #8A7A72;
  --text-dim:     #504640;
  --pill-bg:      #231E1A;
  --pill-text:    #C8BCB4;
  --row-hover:    rgba(255, 255, 255, 0.04);
  --row-alt:      rgba(255, 255, 255, 0.02);
  --surface-card: #181410;
  --input-bg:     rgba(255, 255, 255, 0.06);
  --glass-bg:     rgba(12, 9, 7, 0.80);
  --glass-inset:  rgba(255, 255, 255, 0.04);
  --clear-border: rgba(255, 255, 255, 0.12);
}

html { font-size: 15px; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font);
  min-height: 100vh;
  line-height: 1.5;
  transition: background-color 0.25s, color 0.25s;
}

a { color: inherit; text-decoration: none; }

/* ── Ambient background blobs ──────────────────────────────────────────────── */
.bg-blobs {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  will-change: transform;
}

/* Light mode */
.blob-1 { width: 520px; height: 520px; top: -10%;   left: -8%;  background: rgba(210,90,120,0.32);  animation: drift1 20s ease-in-out infinite alternate; }
.blob-2 { width: 460px; height: 460px; top: -5%;    right: -6%; background: rgba(130,90,210,0.28);  animation: drift2 25s ease-in-out infinite alternate; }
.blob-3 { width: 400px; height: 400px; bottom: 5%;  left: 5%;   background: rgba(240,150,80,0.28);  animation: drift3 18s ease-in-out infinite alternate; }
.blob-4 { width: 480px; height: 480px; bottom: -8%; right: 2%;  background: rgba(60,170,180,0.22);  animation: drift4 22s ease-in-out infinite alternate; }
.blob-5 { width: 350px; height: 350px; top: 35%;    left: 35%;  background: rgba(225,120,160,0.20); animation: drift5 28s ease-in-out infinite alternate; }

/* Dark mode overrides */
[data-theme="dark"] .blob-1 { background: rgba(200,55,85,0.30); }
[data-theme="dark"] .blob-2 { background: rgba(130,45,70,0.24); }
[data-theme="dark"] .blob-3 { background: rgba(190,90,35,0.22); }
[data-theme="dark"] .blob-4 { background: rgba(120,50,100,0.20); }
[data-theme="dark"] .blob-5 { background: rgba(170,45,65,0.18); }

@keyframes drift1 { from { transform: translate(0,0) scale(1);    } to { transform: translate(60px,80px) scale(1.1);    } }
@keyframes drift2 { from { transform: translate(0,0) scale(1.05); } to { transform: translate(-70px,50px) scale(0.95); } }
@keyframes drift3 { from { transform: translate(0,0) scale(0.95); } to { transform: translate(50px,-60px) scale(1.1);  } }
@keyframes drift4 { from { transform: translate(0,0) scale(1);    } to { transform: translate(-50px,-70px) scale(1.05);} }
@keyframes drift5 { from { transform: translate(0,0) scale(1.1);  } to { transform: translate(40px,60px) scale(0.9);   } }

/* ─── Nav ──────────────────────────────────────────────────────────────────── */
nav {
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 52px;
  display: flex;
  align-items: center;
  gap: 2rem;
  position: sticky;
  top: 0;
  z-index: 10;
  background: var(--bg);
  transition: background-color 0.25s, border-color 0.25s;
}

.nav-logo {
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
  flex-shrink: 0;
}

.nav-links {
  display: flex;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.15s, background 0.15s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--accent);
  background: var(--accent-dim);
}

.nav-mini-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--text);
  opacity: 0;
  pointer-events: none;
  white-space: nowrap;
}

.theme-toggle {
  margin-left: auto;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-muted);
  padding: 0.4rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s, background 0.15s;
  flex-shrink: 0;
  line-height: 0;
}

.theme-toggle:hover {
  color: var(--text);
  background: var(--accent-dim);
}

/* ─── Hero ─────────────────────────────────────────────────────────────────── */
.hero {
  padding: 3.5rem 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--text);
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: 0.85rem;
}

.hero-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ─── Main layout ──────────────────────────────────────────────────────────── */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 4rem;
  position: relative;
  z-index: 1;
}

/* ─── Filters ──────────────────────────────────────────────────────────────── */
.filters {
  display: flex;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  background: var(--glass-bg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.07), 0 1px 0 var(--glass-inset) inset;
  padding: 1.5rem;
  transition: background-color 0.25s;
}

/* Filter toggle — mobile only */
.filter-toggle {
  display: none;
}

/* Filter body — transparent on desktop, toggled on mobile */
.filter-body {
  display: contents;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.filter-group label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.filter-group input[type="text"],
.filter-group input[type="date"],
.filter-group select {
  background: var(--input-bg);
  border: 1px solid rgba(0, 0, 0, 0.09);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.85rem;
  padding: 0.45rem 1rem;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s, background-color 0.25s;
  height: 36px;
}

[data-theme="dark"] .filter-group input[type="text"],
[data-theme="dark"] .filter-group input[type="date"],
[data-theme="dark"] .filter-group select {
  border-color: rgba(255, 255, 255, 0.1);
}

#searchDJ { width: 200px; }
#filterVenue { width: 180px; cursor: pointer; }
#dateFrom, #dateTo { width: 148px; }

input[type="date"]::-webkit-calendar-picker-indicator {
  filter: opacity(0.35);
  cursor: pointer;
}

[data-theme="dark"] input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8) opacity(0.5);
}

.filter-group input:focus,
.filter-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--accent-dim);
}

/* Weekend shortcut buttons */
.weekend-btns {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.weekend-btns-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.weekend-btns-row {
  display: flex;
  gap: 0.4rem;
}

.weekend-btn {
  height: 36px;
  padding: 0 1rem;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  border-radius: 999px;
  color: var(--accent);
  font-family: var(--font);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.weekend-btn:hover,
.weekend-btn.active {
  background: var(--accent);
  color: white;
}

.clear-btn {
  height: 36px;
  padding: 0 1.1rem;
  background: transparent;
  border: 1px solid var(--border);
  border-radius: 999px;
  color: var(--text);
  font-family: var(--font);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
  white-space: nowrap;
  align-self: flex-end;
}

.clear-btn:hover {
  border-color: var(--text-muted);
  background: var(--row-hover);
  color: var(--text);
}

/* ─── Results meta ─────────────────────────────────────────────────────────── */
.results-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.75rem;
  min-height: 1.2em;
}

/* ─── Table ────────────────────────────────────────────────────────────────── */
.table-wrapper {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 6px;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  background: var(--surface-card);
  transition: background-color 0.25s, border-color 0.25s;
}

table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

thead th {
  background: var(--surface2);
  padding: 0.65rem 1rem;
  text-align: left;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  border-bottom: 2px solid var(--border);
  white-space: nowrap;
}

thead th[data-sort] {
  cursor: pointer;
  user-select: none;
  transition: color 0.15s;
}

thead th[data-sort]:hover { color: var(--text); }

thead th[data-sort]::after {
  content: '';
  display: inline-block;
  margin-left: 0.35rem;
  opacity: 0;
  font-size: 0.6rem;
  vertical-align: middle;
}

thead th[data-sort].sort-asc::after  { content: '▲'; opacity: 0.7; }
thead th[data-sort].sort-desc::after { content: '▼'; opacity: 0.7; }

thead th[data-sort].sort-asc,
thead th[data-sort].sort-desc { color: var(--accent); }

tbody tr {
  border-bottom: 1px solid var(--border);
  transition: background 0.1s;
}

tbody tr:last-child { border-bottom: none; }
tbody tr:nth-child(odd) { background: var(--row-alt); }
tbody tr:hover { background: var(--row-hover); }

tbody td {
  padding: 0.9rem 1rem;
  vertical-align: top;
}

.col-date    { width: 110px; }
.col-event   { min-width: 200px; }
.col-venue   { width: 180px; }
.col-djs     { min-width: 220px; }
.col-tickets { width: 120px; text-align: right; }

/* Date cell */
.date-cell {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.date-day {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.date-full {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

tr.is-weekend .date-full {
  color: var(--accent);
  font-weight: 600;
}

/* Event title */
.event-title { font-weight: 500; color: var(--text); line-height: 1.35; }

/* Venue */
.venue-name { color: var(--text-muted); }

/* DJ pills */
.lineup { display: flex; flex-wrap: wrap; gap: 0.3rem; }

.dj-pill {
  background: var(--pill-bg);
  color: var(--pill-text);
  font-size: 0.72rem;
  font-weight: 500;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  white-space: nowrap;
  cursor: pointer;
  border: 1px solid var(--border);
  transition: border-color 0.1s, color 0.1s, background 0.1s;
  text-decoration: none;
  display: inline-block;
}

.dj-pill:hover,
a.dj-pill:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

/* Lineup expand toggle */
.lineup-more {
  background: transparent;
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 500;
  font-family: inherit;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  border: 1px dashed var(--border);
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.15s, color 0.15s, background 0.15s;
}

.lineup-more:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}

.lineup-more[aria-expanded="true"] {
  border-style: solid;
}

.lineup-extra {
  display: contents;
}

/* View event link */
.ticket-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--accent);
  text-decoration: none;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--accent);
  border-radius: 999px;
  transition: background 0.15s, color 0.15s;
  white-space: nowrap;
}

.ticket-link:hover {
  background: var(--accent);
  color: white;
}

.no-tickets { font-size: 0.75rem; color: var(--text-dim); }

/* Loading / empty rows */
.loading-row td,
.no-results-row td {
  color: var(--text-muted);
  text-align: center;
  padding: 3rem 1rem;
  font-size: 0.85rem;
}

/* ─── Empty state ──────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--text-muted);
}
.empty-state p { margin-bottom: 1.2rem; font-size: 0.9rem; }

/* ─── Mobile event cards ───────────────────────────────────────────────────── */
.mobile-cards { display: none; }

/* ─── Page header (for inner pages) ───────────────────────────────────────── */
.page-header {
  margin-bottom: 2rem;
  padding-top: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}

.page-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.page-header p {
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* ─── DJ Grid (djs.html) ───────────────────────────────────────────────────── */
.dj-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.dj-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.25rem;
  text-decoration: none;
  color: var(--text);
  transition: border-color 0.15s, box-shadow 0.15s, background-color 0.25s;
  display: block;
}

.dj-card:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 12px var(--accent-dim);
}

.dj-card-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.2rem;
}

.dj-card-meta {
  font-size: 0.72rem;
  color: var(--text-muted);
}

/* ─── About page ───────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 3rem;
  align-items: start;
}

.about-main {
  text-align: left;
}

.about-aside {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.support-card,
.contact-card {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  transition: background-color 0.25s;
}

.support-card h3,
.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.5rem;
  color: var(--text);
}

.support-card p,
.contact-card p {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin: 0 0 1rem;
}

.contribute-btn {
  display: inline-block;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  font-family: inherit;
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity 0.15s, transform 0.15s;
}

.contribute-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.about-block {
  margin-bottom: 2.5rem;
}

.about-block p {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
  margin-bottom: 0.75rem;
}

.linkedin-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 0.5rem;
  padding: 0.45rem 1rem;
  border-radius: 999px;
  background: #0A66C2;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.15s;
}

.linkedin-btn:hover {
  opacity: 0.85;
}

@media (max-width: 880px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .about-aside {
    position: static;
  }
}

.request-form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.request-form input,
.request-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-family: var(--font);
  font-size: 0.85rem;
  padding: 0.6rem 0.85rem;
  outline: none;
  transition: border-color 0.15s;
  resize: vertical;
}

.request-form input:focus,
.request-form textarea:focus {
  border-color: var(--accent);
}

.request-form input::placeholder,
.request-form textarea::placeholder { color: var(--text-dim); }

.submit-btn {
  position: relative;
  height: 38px;
  min-width: 110px;
  padding: 0 1.25rem;
  background: var(--accent);
  border: none;
  border-radius: 999px;
  color: white;
  font-family: var(--font);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  overflow: hidden;
  transition: opacity 0.18s ease, transform 0.18s ease, background-color 0.25s ease;
}

.submit-btn:hover { opacity: 0.9; }

.submit-btn:disabled { cursor: default; }

.submit-btn .btn-label {
  display: inline-block;
  transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Three-dot sending indicator */
.submit-btn .btn-dots {
  display: none;
  align-items: center;
  gap: 3px;
  height: 100%;
}

.submit-btn .btn-dots .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.4;
  animation: dot-pulse 1s infinite ease-in-out;
}

.submit-btn .btn-dots .dot:nth-child(2) { animation-delay: 0.15s; }
.submit-btn .btn-dots .dot:nth-child(3) { animation-delay: 0.3s; }

/* Check icon — only visible in success state */
.submit-btn .btn-check {
  display: none;
  align-items: center;
  justify-content: center;
}

@keyframes dot-pulse {
  0%, 100% { opacity: 0.35; transform: translateY(0); }
  50%      { opacity: 1;    transform: translateY(-1px); }
}

/* Sending state */
.submit-btn.is-sending {
  opacity: 0.92;
  transform: scale(0.98);
}
.submit-btn.is-sending .btn-dots { display: inline-flex; }

/* Success state */
.submit-btn.is-success {
  background: #1f7a4a; /* soft confirmation green */
  animation: pop-success 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.submit-btn.is-success .btn-dots { display: none; }
.submit-btn.is-success .btn-check { display: inline-flex; }

@keyframes pop-success {
  0%   { transform: scale(0.98); }
  55%  { transform: scale(1.06); }
  100% { transform: scale(1); }
}

/* Error state — gentle horizontal shake */
.submit-btn.is-error {
  animation: btn-shake 0.45s cubic-bezier(0.36, 0.07, 0.19, 0.97);
}

@keyframes btn-shake {
  0%, 100%       { transform: translateX(0); }
  15%            { transform: translateX(-5px); }
  30%, 60%       { transform: translateX(4px); }
  45%, 75%       { transform: translateX(-3px); }
  90%            { transform: translateX(2px); }
}

/* Form / confirmation crossfade */
.contact-form-wrapper {
  position: relative;
}

.request-form {
  transition: opacity 0.28s ease, transform 0.28s ease, max-height 0.32s ease;
  max-height: 400px;
  overflow: hidden;
}

.request-form.is-leaving {
  opacity: 0;
  transform: translateY(-8px);
  max-height: 0;
  pointer-events: none;
}

.contact-confirm {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(31, 122, 74, 0.08);
  border: 1px solid rgba(31, 122, 74, 0.2);
  color: var(--text);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.32s ease, transform 0.32s ease;
}

.contact-confirm.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.contact-confirm p {
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.5;
  color: var(--text);
}

.confirm-tick {
  flex-shrink: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #1f7a4a;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: tick-in 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes tick-in {
  0%   { transform: scale(0); opacity: 0; }
  60%  { transform: scale(1.15); opacity: 1; }
  100% { transform: scale(1); }
}

/* Error message under the form */
.contact-error {
  margin-top: 0.75rem;
  font-size: 0.8rem;
  color: var(--accent);
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .submit-btn,
  .submit-btn .btn-label,
  .submit-btn.is-success,
  .submit-btn.is-error,
  .submit-btn .btn-dots .dot,
  .request-form,
  .contact-confirm,
  .confirm-tick {
    animation: none !important;
    transition: none !important;
  }
}

/* ─── DJ Profile (dj.html) ─────────────────────────────────────────────────── */
.dj-profile {
  max-width: 760px;
  padding-top: 2rem;
}

.dj-profile-header {
  margin-bottom: 1.75rem;
}

.dj-profile-name {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}

.dj-profile-blurb {
  font-size: 1rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1rem;
}

.dj-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.social-link {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.3rem 0.75rem;
  text-decoration: none;
  transition: border-color 0.15s, color 0.15s;
}

.social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.dj-profile-bio {
  background: var(--surface-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.75;
  white-space: pre-wrap;
  transition: background-color 0.25s;
}

.section-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--border);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 0.35rem 0.9rem;
  margin-top: 1.75rem;
  margin-bottom: 2.5rem;
  transition: color 0.15s, border-color 0.15s, background 0.15s;
}

.back-link:hover {
  color: var(--accent);
  border-color: var(--accent);
  background: var(--accent-dim);
}

/* ─── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 700px) {
  nav { padding: 0 1rem; }
  main { padding: 0 1rem 3rem; }

  .hero { padding: 1.25rem 0; }
  .hero-title { font-size: 2rem; }

  .filters { gap: 0; padding: 0; }

  .filter-toggle {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.9rem 1.25rem;
    background: none;
    border: none;
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-muted);
    cursor: pointer;
    gap: 0.4rem;
  }

  .filter-count { color: var(--accent); }

  .filter-arrow {
    margin-left: auto;
    font-size: 0.75rem;
    transition: transform 0.2s;
  }

  .filters.is-open .filter-arrow { transform: rotate(180deg); }

  .filter-body {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    box-sizing: border-box;
    padding: 0 1.25rem 1.25rem;
  }

  .filters.is-open .filter-body { display: flex; }

  #searchDJ, #filterVenue, #dateFrom, #dateTo {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }
  .filter-group { width: 100%; }
  .weekend-btns { width: 100%; }
  .weekend-btns-row { width: 100%; }
  .weekend-btn { flex: 1; }

  .table-wrapper { display: none; }

  .mobile-cards {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .event-card {
    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: 6px;
    padding: 1rem 1.25rem;
    transition: background-color 0.25s;
  }

  .event-card-date {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    margin-bottom: 0.35rem;
  }

  .event-card-date.is-weekend { color: var(--accent); }

  .event-card-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
    line-height: 1.3;
  }

  .event-card-venue {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-bottom: 0.65rem;
  }

  .event-card-lineup {
    display: flex;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-bottom: 0.85rem;
  }

  .event-card-footer {
    display: flex;
    justify-content: flex-end;
  }

  .dj-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); }
}
