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

html {
  font-size: 16px;
}

body {
  background-color: var(--color-cream);
  color: var(--color-black);
  font-family: var(--font-secondary); /* Inter — body text */
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── ALL HEADINGS: Paytone One, heavy neo-brutalist ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-primary); /* Paytone One */
  font-weight: 400; /* Paytone One is a display font — 400 is its only weight */
  line-height: 1.1;
  margin-bottom: 0.5em;
  color: var(--color-brown-dark);
  letter-spacing: -0.5px;
}

.ooe-heading-2 {
  font-size: var(--font-size-h2);
  color: inherit;
}

.ooe-subheading {
  font-family: var(--font-secondary);
  font-weight: 600;
  font-size: clamp(16px, 2vw, 20px);
  color: inherit;
  opacity: 0.85;
}

/* Screen-reader only utility */
.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;
}

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

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

video {
  display: block;
}

/* ── UTILITIES ── */
.ooe-center {
  text-align: center;
}

.ooe-mt-60 {
  margin-top: 60px;
}

/* Brand text selection */
::selection {
  background: var(--color-brown-dark);
  color: var(--color-white);
}
