:root {
    /* Palette */
    --bg:        #f5efe6;
    --bg-2:      #faf5ef;
    --card:      #ffffff;
    --soft:      #fffaf3;
    --green:     #2f5a3a;
    --green-dark: #1e3d28;
    --graphite:  #141414;
    --text:      #2a2a2a;
    --muted:     #6e6e6e;
    --gold:      #d39a2c;
    --gold-soft: rgba(211, 154, 44, 0.13);
    --border:    rgba(0, 0, 0, 0.09);

    /* Shadows */
    --shadow:      0 20px 56px rgba(0, 0, 0, 0.08);
    --shadow-soft: 0 6px 22px rgba(0, 0, 0, 0.06);

    /* Border radius — 4-step scale */
    --radius-sm:   16px;   /* inputs, small chips */
    --radius-card: 24px;   /* cards */
    --radius:      32px;   /* panels, large containers */
    --radius-lg:   44px;   /* hero, CTA */

    /* Spacing */
    --gap:    24px;
    --gap-sm: 16px;

    /* Layout */
    --container: 1200px;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: 'Inter', system-ui, -apple-system, Arial, sans-serif;
    background:
        radial-gradient(circle at top left, rgba(211, 154, 44, 0.10), transparent 32%),
        linear-gradient(180deg, var(--bg), var(--bg-2));
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    color: inherit;
    text-decoration: none;
    -webkit-tap-highlight-color: transparent;
}

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

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 28px;
}

.section { padding: 96px 0; }

.section-soft { background: rgba(255, 255, 255, 0.42); }

.section-head {
    max-width: 680px;
    margin: 0 auto 52px;
    text-align: center;
}

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 14px;
    border-radius: 999px;
    background: var(--gold-soft);
    color: var(--green-dark);
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.section-head h2 {
    color: var(--graphite);
    font-size: clamp(28px, 3.5vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.6px;
    font-weight: 800;
    margin-bottom: 14px;
}

.section-head p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.65;
}

@media (max-width: 820px) {
    :root {
        --gap:    16px;
        --gap-sm: 12px;
    }

    body { padding-bottom: 72px; }

    .container { padding: 0 18px; }

    .section { padding: 56px 0; }

    .section-head {
        margin-bottom: 32px;
        text-align: left;
    }
}
