/* ================================================================
   VALÉRIAN BESPOKE — Global Design Tokens & Reset
   ================================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  /* ── Colors ── */
  --dark: #0a0a0a;
  --dark-elevated: #141414;
  --ivory: #f1ece5;
  --warm: #e4dbd0;
  --gold: #c4a97d;
  --gold-dim: rgba(196, 169, 125, 0.4);
  --text-light: rgba(241, 236, 229, 0.92);
  --text-muted: rgba(241, 236, 229, 0.45);
  --text-dark: #1a1a1a;
  --text-dark-muted: rgba(26, 26, 26, 0.50);
  --border-light: rgba(255, 255, 255, 0.06);
  --border-dark: rgba(26, 26, 26, 0.08);

  /* ── Fonts ── */
  --serif: 'Cormorant Garamond', 'Georgia', serif;
  --sans: 'Inter', 'Helvetica Neue', sans-serif;

  /* ── Spacing ── */
  --space-xs: clamp(1rem, 2vw, 1.5rem);
  --space-sm: clamp(2rem, 4vw, 3rem);
  --space-md: clamp(3rem, 6vw, 5rem);
  --space-lg: clamp(5rem, 10vh, 8rem);
  --space-xl: clamp(6rem, 14vh, 12rem);
  --gutter: clamp(1.5rem, 3vw, 3rem);

  /* ── Easing ── */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
  --ease-expo: cubic-bezier(0.19, 1, 0.22, 1);
}

html {
  font-size: 16px;
  scroll-behavior: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  cursor: none;
}

body {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--text-light);
  background: var(--dark);
  overflow-x: hidden;
  line-height: 1.6;
  cursor: none;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: none;
}

button { cursor: none; }

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

/* ── Shared Section Label ── */
.section-label {
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-dark-muted);
  display: inline-block;
}
.section-label--light { color: var(--text-muted); }

/* ── Preloader ── */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
}
.preloader__inner { text-align: center; }
.preloader__text {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1rem, 3vw, 1.5rem);
  font-weight: 300;
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2rem;
  opacity: 0;
}
.preloader__line {
  width: 60px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto;
  transform-origin: left;
  transform: scaleX(0);
}
