/* ============================================================
   ONE ELEVEN — BASE / RESET + ELEMENT DEFAULTS + HELPERS
   ============================================================ */

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

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

body {
  margin: 0;
  font: var(--text-base);
  color: var(--text-body);
  background: var(--surface-page);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  margin: 0 0 0.4em;
  color: var(--text-strong);
  letter-spacing: var(--ls-tight);
  text-wrap: balance;
}
h1 { font: var(--text-h1); }
h2 { font: var(--text-h2); }
h3 { font: var(--text-h3); }
h4 { font: var(--text-h4); }

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

a { color: var(--text-link); text-decoration: none; }
a:hover { text-decoration: underline; }

small { font: var(--text-small); }
code, kbd, samp { font-family: var(--font-mono); font-size: 0.92em; }

:focus-visible { outline: none; box-shadow: var(--ring); border-radius: var(--radius-xs); }

hr { border: none; border-top: 1px solid var(--border); margin: var(--space-6) 0; }

::selection { background: var(--coral-200); color: var(--navy-900); }

/* ---- Eyebrow / overline ---- a recurring brand device */
.oe-eyebrow {
  font-family: var(--font-brand);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-2xs);
  letter-spacing: var(--ls-wider);
  text-transform: uppercase;
  color: var(--accent-strong);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}
.oe-eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: var(--accent);
  display: inline-block;
}

/* ---- Layout container ---- */
.oe-container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
