:root {
    --ink: #172019;
    --ink-2: #29322b;
    --muted: #667067;
    --paper: #fffaf3;
    --cream: #f3efe7;
    --white: #ffffff;
    --line: #daddd6;
    --line-strong: #c7cbc3;
    --lime: #c6f25b;
    --red: #f4383e;
    --red-dark: #d92d33;
    --soft-red: #fff0ed;
    --success: #517a2d;
    --max: 1240px;
    --reading: 68ch;
    --gutter: clamp(18px, 3vw, 32px);
    --section-space: clamp(72px, 8vw, 116px);
    --radius-small: 8px;
    --radius-medium: 14px;
    --radius-large: 24px;
    --radius-pill: 999px;
    --shadow-floating: 0 18px 45px rgba(23, 32, 25, 0.14);
    --font-body: "DM Sans", sans-serif;
    --font-display: "Manrope", sans-serif;
}

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

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

body {
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
    font: inherit;
}

img,
svg,
video {
    display: block;
}

::selection {
    background: var(--lime);
    color: var(--ink);
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
