/* ── TOKENS ────────────────────────────────────────────── */
:root {
  --0:   #000;
  --5:   #0d0d0d;
  --10:  #1a1a1a;
  --20:  #2a2a2a;
  --30:  #333;
  --40:  #555;
  --50:  #666;
  --60:  #888;
  --70:  #aaa;
  --80:  #ccc;
  --90:  #e0dbd3;
  --95:  #ede8df;
  --100: #fff;
  --red: #8B0000;
  --rb:  #b5001a;
}

/* ── RESET ─────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box }
html { scroll-behavior: smooth; scrollbar-width: thin; scrollbar-color: var(--30) var(--0) }
::-webkit-scrollbar { width: 2px }
::-webkit-scrollbar-thumb { background: var(--30) }
body { background: var(--0); color: var(--90); font-family: 'Barlow', sans-serif; font-weight: 300; overflow-x: hidden; cursor: none }
img { display: block; width: 100%; height: 100%; object-fit: cover }
a { text-decoration: none; color: inherit }

/* grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9000;
  pointer-events: none;
  opacity: .03;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E")
}

/* ── SECTION HELPERS ───────────────────────────────────── */
.sec-head { padding: 68px 60px 52px; display: flex; align-items: flex-end; justify-content: space-between; border-bottom: 1px solid var(--10) }
.sec-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(40px, 5.5vw, 76px); letter-spacing: .04em; text-transform: uppercase; line-height: .9; color: var(--100) }
.sec-sub { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: .3em; text-transform: uppercase; color: var(--40); padding-bottom: 6px }
.label { font-family: 'Barlow Condensed', sans-serif; font-size: 10px; letter-spacing: .35em; text-transform: uppercase; color: var(--rb); display: flex; align-items: center; gap: 10px }
.label::before { content: ''; width: 18px; height: 1px; background: var(--rb) }

/* ── BUTTONS ───────────────────────────────────────────── */
.btn { font-family: 'Barlow Condensed', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: .35em; text-transform: uppercase; padding: 13px 36px; display: inline-block; transition: all .2s }
.btn-solid { background: var(--100); color: var(--0) }
.btn-solid:hover { background: var(--90) }
.btn-out { border: 1px solid var(--30); color: var(--50) }
.btn-out:hover { border-color: var(--70); color: var(--90) }
