/* OWL Web Design — base.css
   Reset + design tokens. Per-site copy, not shared across mini-sites. */

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

html {
  scroll-behavior: smooth;
}

:root {
  /* Colors */
  --color-bg: #FAF9F6;
  --color-ink: #131317;
  --color-body: #6B6B76;
  --color-border: #EAE8E2;
  --color-indigo: #4B3BFF;
  --color-indigo-hover: #3527d6;
  --color-indigo-tint: #ECE9FF;
  --color-white: #FFFFFF;
  --color-dark-bg: #131317;
  --color-dark-text: #E9E7F5;
  --color-dark-muted: #A8A4C4;
  --color-dark-border: #2a2833;
  --color-dark-accent: #8f83ff;
  --color-input-bg: #FAF9F6;
  --color-input-border: #DFDCEF;

  /* Typography */
  --font-display: 'Bricolage Grotesque', sans-serif;
  --font-body: 'Hanken Grotesk', sans-serif;
  --font-mono: 'IBM Plex Mono', monospace;

  /* Radius */
  --radius-pill: 999px;
  --radius-card-sm: 0.6rem;
  --radius-card: 1.2rem;
  --radius-card-lg: 1.5rem;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 0.8rem;
  --space-md: 1.2rem;
  --space-lg: 2rem;
  --space-xl: 3rem;

  /* Layout */
  --container-max: 72rem;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: var(--color-bg);
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

p {
  margin: 0;
}

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

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}

a {
  color: var(--color-indigo);
  text-decoration: none;
}

a:hover {
  color: var(--color-indigo-hover);
}

input,
textarea {
  font: inherit;
}

.mono {
  font-family: var(--font-mono);
}

.disp {
  font-family: var(--font-display);
}

.wrap {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 48rem) {
  .wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}
