:root {
  --c-bg-deep: #050604;
  --c-bg-warm: #070806;
  --c-green: #245f1e;
  --c-green-light: #3f8a35;
  --c-orange: #f07a16;
  --c-red: #d83a2e;
  --c-cream: #f2ead8;
  --c-gray: #b9b09f;
  --c-surface-a: rgba(12, 16, 10, 0.72);
  --c-surface-b: rgba(22, 28, 18, 0.64);
  --c-border-green: rgba(36, 95, 30, 0.25);
  --c-border-orange: rgba(240, 122, 22, 0.2);
  --c-border-red: rgba(216, 58, 46, 0.18);

  --ff-display: 'Cormorant Garamond', 'Georgia', serif;
  --ff-body: 'Inter', system-ui, -apple-system, sans-serif;
  --ff-mono: ui-monospace, 'SFMono-Regular', 'Cascadia Code', 'Consolas', monospace;

  --fs-hero: clamp(2.6rem, 5.2vw, 5rem);
  --fs-h1: clamp(2rem, 3.6vw, 3.6rem);
  --fs-h2: clamp(1.6rem, 2.8vw, 2.8rem);
  --fs-h3: clamp(1.15rem, 1.6vw, 1.5rem);
  --fs-body: clamp(0.95rem, 1.1vw, 1.1rem);
  --fs-small: clamp(0.78rem, 0.9vw, 0.88rem);
  --fs-meta: clamp(0.65rem, 0.75vw, 0.76rem);

  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 9rem;

  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;

  --shadow-card: 0 2px 12px rgba(0, 0, 0, 0.35);
  --shadow-hover: 0 4px 24px rgba(0, 0, 0, 0.45);

  --transition-base: 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-slow: 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);

  --nav-height: 200px;
  --content-max: 1200px;
  --content-narrow: 820px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  line-height: 1.7;
  color: var(--c-cream);
  background-color: var(--c-bg-deep);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  font-weight: var(--fw-semibold);
  line-height: 1.2;
  color: var(--c-cream);
}

h1 em, h2 em, h3 em {
  font-style: italic;
  color: var(--c-orange);
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-base);
}

a:hover {
  color: var(--c-orange);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul, ol {
  list-style: none;
}

button, input, textarea {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
  outline: none;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 2px solid var(--c-orange);
  outline-offset: 3px;
  border-radius: var(--radius-xs);
}

::selection {
  background: var(--c-green);
  color: var(--c-cream);
}
