/* Global reset, design tokens, and base typography */

:root {
  --color-white: #ffffff;
  --color-black: #111111;
  --color-text: #222222;
  --color-muted: #666666;
  --color-border: #e6e6e6;
  --color-section-light: #f5f5f5;
  --color-footer: #26263f;
  --color-footer-text: #f3f3f7;
  --color-primary: #d00000;
  --color-primary-hover: #ff0000;
  --color-accent-peach: #f2c6a5;
  --color-accent-gold: #f4a11f;
  --color-accent-red-dark: #8f1118;

  --font-family-base: 'Oxygen';
  /* --font-family-base: 'Oxygen', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif; */

  --text-xs: 12px;
  --text-sm: 13px;
  --text-md: 14px;
  --text-lg: 16px;
  --text-xl: 18px;
  --text-2xl: 22px;
  --text-3xl: 28px;
  --text-4xl: 36px;

  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;

  --radius-sm: 2px;
  --radius-md: 4px;
  --radius-lg: 8px;

  --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.12);

  --bp-sm: 576px;
  --bp-md: 768px;
  --bp-lg: 992px;
  --bp-xl: 1200px;
  --bp-xxl: 1400px;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-family-base);
  font-size: var(--text-md);
  line-height: 1.5;
  color: var(--color-text);
  background: var(--color-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

input,
button,
textarea,
select {
  font: inherit;
}

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

button {
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--color-black);
  line-height: 1.2;
  font-weight: 600;
}

h1 {
  font-size: var(--text-4xl);
}

h2 {
  font-size: var(--text-3xl);
}

h3 {
  font-size: var(--text-2xl);
}

p {
  color: var(--color-muted);
}

.reveal-item {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
  will-change: transform, opacity;
}

.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}

.reveal-item--delay-1 {
  transition-delay: 0.07s;
}

.reveal-item--delay-2 {
  transition-delay: 0.14s;
}

.reveal-item--delay-3 {
  transition-delay: 0.21s;
}

@media (prefers-reduced-motion: reduce) {
  .reveal-item {
    opacity: 1;
    transform: none;
    transition: none;
    will-change: auto;
  }
}

