/* ─────────────────────────────────
   BASE
   Global html, body, cursor, shared utilities
───────────────────────────────── */

html {
  background: var(--bg);
  color: var(--fg);
  font-family: var(--font-sans);
  overflow-x: hidden;
  scroll-behavior: smooth;
  cursor: none;
}

body {
  background: var(--bg);
  min-height: 100vh;
}

/* ── Custom cursor dots ── */
.cursor {
  position: fixed;
  width: 10px;
  height: 10px;
  background: var(--accent);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.2s, height 0.2s;
  mix-blend-mode: difference;
}

.cursor-follower {
  position: fixed;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(200, 255, 0, 0.35);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.25s, height 0.25s;
}

/* ── Shared section label (e.g. "01 Selected Work") ── */
.section {
  padding: var(--section-padding);
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--fg-muted);
  text-transform: uppercase;
  margin-bottom: 4rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  color: rgba(255, 255, 255, 0.8);
}

.section-label::before {
  content: '';
  display: inline-block;
  width: 3rem;
  height: 1px;
  background: var(--fg-muted);
  vertical-align: middle;
  margin-right: 1rem;
}
/* ── Scroll reveal base state ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s ease, transform 0.85s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
