/* ===================================
   BASE — Variables, Reset, Lenis
   =================================== */

:root {
  --gold: #C4A265;
  --gold-light: #D4B87A;
  --gold-dark: #A68B52;
  --black: #0A0A0A;
  --dark: #111111;
  --dark-surface: #1A1A1A;
  --dark-border: #2A2A2A;
  --cream: #F5F0E8;
  --cream-dim: #D4CFC7;
  --text: #E8E3DB;
  --text-dim: #8A857D;
  --purple: #1E0A2E;
  --purple-light: #3D1A5C;
  --purple-glow: rgba(61, 26, 92, 0.4);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --copper-dark: #A0826D;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
  max-width: 100%;
}

body {
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--text);
  overflow-x: clip;
  max-width: 100%;
  position: relative;
  line-height: 1.6;
}

html.lenis,
html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

::selection {
  background: var(--gold);
  color: var(--black);
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== SECTION LABEL ===== */

.section-label {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.section-label--light {
  color: var(--gold-light);
}

/* ===== HORIZONTAL SCROLL WRAPPER ===== */

.horizontal-scroll {
  position: relative;
}

.h-scroll-sticky {
  position: relative;
  z-index: 1;
}

.horizontal-scroll-inner {
  display: block;
}
