/* ── Garden Swap — Base Element Styles (Potting Shed) ────────
   Warm defaults: kraft-paper background, ink text, serif headings,
   grotesque body. A faint botanical paper texture on the page.
   ──────────────────────────────────────────────────────────── */

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

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

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    line-height: var(--leading-normal);
    background-color: var(--surface-page);
    color: var(--text-body);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: var(--weight-medium);
    color: var(--text-body);
    line-height: var(--leading-tight);
    letter-spacing: var(--tracking-tight);
}

p { line-height: var(--leading-normal); }

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

::selection { background: var(--mint-200); color: var(--pine-900); }

input, button, select, textarea { font-family: var(--font-body); font-size: inherit; }

:focus-visible { outline: 2px solid var(--focus-ring); outline-offset: 2px; }

/* Eyebrow / overline helper */
.gs-eyebrow {
    font-family: var(--font-sans);
    font-size: var(--text-xs);
    font-weight: var(--weight-semibold);
    text-transform: uppercase;
    letter-spacing: var(--tracking-caps);
    color: var(--text-subtle);
}
