/* =========================================================
   Tokens
   ========================================================= */
:root {
    --green-900: #2E4F21;
    --green-300: #A0F1BD;
    --green-200: #D2F8DC;
    --gray-50: rgba(249, 249, 249, 0.4);
    --text: #2E4F21;
    --text-light: #fff;
    --radius-20: 20px;
    --radius-12: 12px;
    --radius-8: 8px;
    --shadow: 0 2px 6px rgba(0,0,0,.08);
    --maxw: 1200px;
    --pad: 24px;

}

/* =========================================================
   Reset / Base
   ========================================================= */
* {
    box-sizing: border-box;
}

html,
body {
    font-family: "Epunda Slab", serif;
    margin: 0;
    padding: 0;
    font-optical-sizing: auto;
    font-style: normal;
}

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

a {
    color: inherit;
    text-decoration: none;
}

body {
    /*font-family: system-ui, -apple-system, Segoe UI, Roboto, "Work Sans", sans-serif;*/
    color: var(--text);
    background: #fff;
    line-height: 1.5;
}

h1,
h2,
h3 {
    line-height: 1.1;
    margin: 0;
}

h1 {
    font-weight: 400;
    font-size: clamp(40px, 6vw, 65px);
    letter-spacing: -0.02em;
}

h2 {
    font-weight: 400;
    font-size: clamp(32px, 4.5vw, 60px);
    letter-spacing: -0.02em;
}

h3 {
    font-weight: 400;
    font-size: clamp(22px, 3vw, 30px);
    letter-spacing: -0.01em;
}

p.lead {
    font-size: 25px;
    opacity: .95;
    @media (max-width: 760px) {
        font-size: 20px;
    }

}

/* helper */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
}

/* =========================================================
   Layout Utilities
   ========================================================= */
.container {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.mt-20 {
    margin-top: 20px;
}

.mb-16 {
    margin-bottom: 16px;
}

.spacer-20 {
    height: 20px;
}

.actions {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.actions--left {
    justify-content: center;
}

