/* ═══════════════════════════════════════════════════════════════════
   Cronac Give  ·  css/core/reset.css
   Global reset and base element rules — shared across all shells.
   ═══════════════════════════════════════════════════════════════════ */

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

/* ── Document ────────────────────────────────────────────────────── */
html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

/* ── Body ────────────────────────────────────────────────────────── */
body {
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: var(--font-normal);
  line-height: var(--leading-normal);
  color: var(--color-text);
  background-color: var(--color-surface);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

main {
  flex: 1;
}

/* ── Media ───────────────────────────────────────────────────────── */
img, svg {
  display: block;
  max-width: 100%;
}

/* ── Links ───────────────────────────────────────────────────────── */
a {
  color: var(--org-primary);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--org-primary-dark);
}

a:focus-visible {
  outline: 3px solid var(--org-primary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

/* ── Lists ───────────────────────────────────────────────────────── */
ul, ol {
  list-style: none;
}

/* ── Interactive elements ────────────────────────────────────────── */
button {
  font-family: inherit;
  cursor: pointer;
}

input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
}

/* ── Headings ────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: var(--font-semi);
  line-height: var(--leading-tight);
  color: var(--color-text);
}

/* ── Paragraphs ──────────────────────────────────────────────────── */
p {
  margin: 0;
}

/* ── Global focus-visible ────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--org-primary);
  outline-offset: 2px;
}
