/* ============================================================
   WIJF — shared styles (index + shop)
   Page-specific rules live in each page's inline <style>.
   ============================================================ */

/* ---------- TOKENS ---------- */
:root {
  --accent: #FF1F8F;
}
:root[data-theme="light"] {
  --bg: #F3F1EC;
  --surface: #FFFFFF;
  --surface-2: #E9E6DE;
  --border: #D9D4C8;
  --text: #0A0A0A;
  --text-dim: #4A4A4A;
  --text-mute: #8C8C82;
}
:root[data-theme="dark"] {
  --bg: #0A0A0A;
  --surface: #161616;
  --surface-2: #1F1F1F;
  --border: #2A2A2A;
  --text: #FFFFFF;
  --text-dim: #A3A3A3;
  --text-mute: #6B6B6B;
}

/* ---------- RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; -webkit-font-smoothing: antialiased; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Inter', sans-serif;
  min-height: 100vh;
}
a { color: inherit; }
img, iframe { max-width: 100%; }

@keyframes wijfPulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition: none !important; }
}

.page { max-width: 1440px; margin: 0 auto; }

/* ---------- TOP STRIP ---------- */
.strip {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 48px; border-bottom: 1px solid var(--border); gap: 16px;
}
.strip-live { display: flex; align-items: center; gap: 10px; min-width: 0; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); animation: wijfPulse 1.4s infinite; flex: none; }
.mono { font-family: 'JetBrains Mono', monospace; font-weight: 800; text-transform: uppercase; }
.strip-live .mono { font-size: 11px; letter-spacing: 0.22em; color: var(--accent); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a { font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text); text-decoration: none; transition: color .15s ease; }
.nav a:hover { color: var(--accent); }
.nav a.active { color: var(--accent); }
.theme-toggle {
  display: flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 100px;
  background: transparent; border: 1px solid var(--border); color: var(--text);
  font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase;
  cursor: pointer; transition: border-color .15s ease;
}
.theme-toggle:hover { border-color: var(--accent); }
.theme-toggle .swatch { width: 9px; height: 9px; border-radius: 50%; background: var(--text); }

/* ---------- SHARED GUTTER LABEL ---------- */
.gutter { display: block; font-family: 'JetBrains Mono', monospace; font-size: 11px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-mute); margin-bottom: 18px; }

/* ---------- FOOTER ---------- */
.footer { padding: 48px 48px 36px; display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; }
.footer-mark { font-family: 'Archivo Black', sans-serif; font-size: 44px; letter-spacing: -0.04em; line-height: 1; color: var(--text); text-transform: uppercase; }
.footer-meta { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 800; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); margin-top: 10px; line-height: 1.7; }
.footer-label { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 800; letter-spacing: 0.22em; text-transform: uppercase; color: var(--text-mute); }
.footer-links { display: flex; flex-direction: column; gap: 6px; margin-top: 12px; }
.footer-link { font-family: 'Bebas Neue', sans-serif; font-size: 30px; letter-spacing: 0.03em; color: var(--text); text-decoration: none; transition: color .15s ease; }
.footer-link:hover { color: var(--accent); }
.footer-sub { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 800; letter-spacing: 0.18em; text-transform: uppercase; color: var(--text-mute); }
.footer-email { display: block; font-family: 'Archivo Black', sans-serif; font-size: 20px; letter-spacing: -0.02em; color: var(--text); text-decoration: none; margin-top: 4px; transition: color .15s ease; }
.footer-email:hover { color: var(--accent); }
.bookings-block + .bookings-block { margin-top: 16px; }
.colophon {
  display: flex; align-items: center; justify-content: space-between;
  padding: 28px 48px; border-top: 1px solid var(--border); background: var(--surface-2);
  gap: 16px; flex-wrap: wrap;
}
.colophon .mono { font-family: 'JetBrains Mono', monospace; font-size: 10px; font-weight: 700; letter-spacing: 0.2em; text-transform: uppercase; color: var(--text-mute); }

/* ---------- SHARED RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .strip, .footer, .colophon { padding-left: 32px; padding-right: 32px; }
  .footer { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .strip, .footer, .colophon { padding-left: 20px; padding-right: 20px; }
  .strip { flex-direction: column; align-items: stretch; gap: 14px; }
  .strip-live { justify-content: flex-start; }
  .nav { width: 100%; justify-content: space-between; gap: 8px; flex-wrap: wrap; }
  .footer { grid-template-columns: 1fr; }
  .footer-mark { font-size: 36px; }
  .footer-link { font-size: 24px; }
}
