/* =========================================
   BASE — Reset, Typography, Utilities
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  padding-bottom: 64px; /* mobile sticky bar */
}

h1, h2, h3, h4, h5 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  line-height: 1.05;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; }

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

/* Visible keyboard focus — site-wide */
:focus-visible {
  outline: none;
  box-shadow: var(--focus-ring);
  border-radius: 4px;
}

/* ---- Layout helpers ---- */
.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}

section { padding: 64px 0; position: relative; }

.section-head { margin-bottom: 34px; }
.section-head h2 { font-size: clamp(28px, 6vw, 42px); color: var(--ivory); }
.section-head p  { color: var(--ivory-dim); margin-top: 10px; max-width: 56ch; font-size: 15px; }

/* Alternating section backgrounds */
.bg-charcoal  { background: var(--charcoal); }
.bg-charcoal2 { background: var(--charcoal-2); }
.bg-felt      { background: linear-gradient(160deg, var(--felt), var(--black)); }

/* ---- Type helpers ---- */
.script {
  font-family: 'Caveat', cursive;
  font-weight: 700;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 10px;
}

.eyebrow-text {
  font-family: 'Oswald', sans-serif;
  font-size: 13px;
  letter-spacing: 0.18em;
  color: var(--gold-bright);
  text-transform: uppercase;
}

/* ---- Visually hidden (accessible) ---- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- Live badge ---- */
.badge-live {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--neon);
  color: #fff;
  font-family: 'Oswald', sans-serif;
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 3px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}
.badge-live::before {
  content: '';
  width: 6px; height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-dot 1.2s ease infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* ---- Desktop breakpoint (shared) ---- */
@media (min-width: 900px) {
  body { padding-bottom: 0; }
  section { padding: 88px 0; }
}
