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

:root {
  --orange: #ee4d2d;
  --orange-dark: #d73d20;
  --orange-deep: #b42d13;
  --orange-light: #f06d4e;
  --orange-pale: #fff1ee;
  --yellow: #FFDE00;
  --navy: #1A1A2E;
  --bg: #FFF4E0;
  --surface: #FFFFFF;
  --glass: #FFFFFF;
  --glass-border: #000000;
  --text: #000000;
  --muted: #444444;
  --dark-text: #000000;
  --radius: 8px;
  --radius-sm: 4px;
  --border-thick: 3px solid #000;
  --border-thin: 2px solid #000;
  --shadow-sm: 2px 2px 0px #000;
  --shadow-md: 4px 4px 0px #000;
  --shadow-lg: 8px 8px 0px #000;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

/* ── BACKGROUND ── */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: radial-gradient(#000 1.5px, transparent 1.5px);
  background-size: 24px 24px;
  opacity: 0.08;
  pointer-events: none;
  z-index: 0;
}

/* ── DIAGONAL PATTERN ── */
body::after {
  display: none;
}

section,
header,
footer {
  position: relative;
  z-index: 1;
}