/* =========================================================
   Base · tokens, reset, typography
   ========================================================= */

:root {
  /* Brand colors */
  --bg-deep: #120608;
  --bg-dark: #1c0a0e;
  --bg-elev: #2a0f14;
  --bg-card: #ffffff;
  --bg-card-alt: #faf3f4;

  --primary: #b8233a;
  --primary-600: #a01a30;
  --primary-700: #821527;
  --primary-100: #f7d9de;
  --primary-50: #fdf2f4;

  --accent-gold: #e8b842;
  --accent-red: #d6332a;
  --accent-green: #2bb673;

  /* Text */
  --text: #1a0a0e;
  --text-muted: #6d4a51;
  --text-soft: #9a7d83;
  --text-on-dark: #ffffff;
  --text-on-dark-muted: rgba(255, 255, 255, 0.72);

  /* Borders */
  --border: #ecd9dc;
  --border-strong: #d4b8bd;
  --border-dark: rgba(255, 255, 255, 0.08);

  /* Radii */
  --r-sm: 6px;
  --r-md: 10px;
  --r-lg: 14px;
  --r-xl: 20px;
  --r-pill: 999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 4px 14px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 12px 32px rgba(15, 23, 42, 0.12);
  --shadow-card: 0 2px 6px rgba(15, 23, 42, 0.05), 0 8px 24px rgba(15, 23, 42, 0.06);

  /* Layout */
  --container: 1240px;
  --container-narrow: 1080px;
  --header-h: 76px;
}

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

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Inter", "Helvetica Neue", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

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

button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  margin: 0;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.2rem, 3.4vw, 3.25rem); line-height: 1.1; }
h2 { font-size: clamp(1.65rem, 2.1vw, 2.15rem); line-height: 1.2; }
h3 { font-size: 1.15rem; line-height: 1.3; }

p { margin: 0; text-wrap: pretty; }

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

.container-narrow {
  width: 100%;
  max-width: var(--container-narrow);
  margin-inline: auto;
  padding-inline: 24px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
}

.eyebrow::before {
  content: "";
  width: 24px;
  height: 1px;
  background: currentColor;
}

.text-muted { color: var(--text-muted); }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
