/* ─── 0. FONTS ─────────────────────────────────────────────── */
@font-face {
  font-family: 'Studio Feixen Sans';
  src: url('./fonts/STUDIOFEIXENSANS-BOOK.OTF') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Studio Feixen Sans';
  src: url('./fonts/STUDIOFEIXENSANS-BOLD.OTF') format('opentype');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ─── 1. TOKENS ─────────────────────────────────────────────── */
:root {
  --primary-color: #A09ED8;
  --dark-color:    #000000;
  --white-color:   #ffffff;
  --light-text:    #EAE7E5;

  --font-base:  'Studio Feixen Sans', sans-serif;
  --fw-regular: 400;
  --fw-bold:    700;

  --nav-h:      72px;
  --container:  1200px;
  --gap:        clamp(1.5rem, 4vw, 3rem);
  --radius:     2rem;
}

/* ─── 2. RESET ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-base);
  font-weight: var(--fw-regular);
  font-size: clamp(0.9rem, 1.5vw, 1rem);
  color: var(--dark-color);
  background: var(--white-color);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─── 3. LAYOUT HELPERS ─────────────────────────────────────── */
.container {
  width: min(var(--container), 100% - 3rem);
  margin-inline: auto;
}