/* ═══════════════════════════════════════════════════════════════
   BASE — Custom Properties · Reset · Typography · Layout
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. Custom Properties ───────────────────────────────────── */
:root {
  --font-heading: "Spectral", serif;
  --font-body: "IBM Plex Sans", sans-serif;
  --background: #000000;
  --accent: #9F0505;
  --text: #F2F1EE;
  --text-dark: #1F1F1F;
  --margin: calc((100vw - 1200px) / 2);
}


/* ── 2. Reset ───────────────────────────────────────────────── */
html {
  margin-top: 0 !important;
}

*,
*::before,
*::after {
  padding: 0;
  appearance: none;
  margin: 0;
  background: none;
  border: none;
  outline: transparent;
  list-style: none;
  box-sizing: border-box;
  font-family: var(--font-body);
  color: var(--text);
  text-decoration: none;
}

body {
  background: var(--background);
  overflow-x: hidden;
}

/* ── 3. Layout ──────────────────────────────────────────────── */
.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}

.title-2 {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 56px;
  line-height: 100%;
}

@media (max-width: 1080px) {
  .container { padding: 0 20px; }

  .title-2 {
    font-size: 32px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 10px; }
}

