:root {
    color-scheme: light;
    --paper: #f0ebde;
    --ink: #111111;
    --green: #7aaa73;
    --line: rgba(17, 17, 17, 0.22);
    --muted: rgba(17, 17, 17, 0.66);
}

* {
    box-sizing: border-box;
}

html {
    background: var(--paper);
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
    font-size: 17px;
    line-height: 1.62;
}

a {
    color: inherit;
    text-decoration-thickness: 1.5px;
    text-underline-offset: 3px;
}

a:hover,
a:focus-visible {
    color: #477243;
}

.site-header,
main,
.site-footer {
    width: min(760px, calc(100% - 40px));
    margin-inline: auto;
}

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.wordmark {
    color: var(--ink);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.02em;
    text-decoration: none;
}

.site-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px 20px;
    font-size: 14px;
    font-weight: 700;
}

main {
    padding: 72px 0 80px;
}

.eyebrow {
    margin: 0 0 12px;
    color: #477243;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

h1,
h2,
h3 {
    margin-top: 0;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

h1 {
    max-width: 680px;
    margin-bottom: 22px;
    font-size: clamp(44px, 10vw, 76px);
    font-weight: 900;
}

h1 span {
    color: var(--green);
}

h2 {
    margin-bottom: 16px;
    font-size: clamp(27px, 5vw, 38px);
    font-weight: 850;
}

h3 {
    margin-bottom: 10px;
    font-size: 20px;
}

p,
ul {
    margin-top: 0;
}

.lede {
    max-width: 620px;
    color: var(--muted);
    font-size: clamp(19px, 3vw, 23px);
    line-height: 1.48;
}

.actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.button-link {
    display: inline-flex;
    min-height: 50px;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    border: 2px solid var(--ink);
    border-radius: 8px;
    background: var(--green);
    font-size: 14px;
    font-weight: 850;
    text-decoration: none;
}

.button-link.secondary {
    background: transparent;
}

.summary-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 72px;
    border-top: 1px solid var(--line);
    border-left: 1px solid var(--line);
}

.summary-item {
    min-height: 180px;
    padding: 24px;
    border-right: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.summary-item p {
    margin-bottom: 0;
    color: var(--muted);
}

.document-header {
    margin-bottom: 56px;
}

.document-header h1 {
    font-size: clamp(42px, 9vw, 68px);
}

.updated {
    color: var(--muted);
    font-size: 14px;
}

.policy-section {
    padding: 34px 0;
    border-top: 1px solid var(--line);
}

.policy-section p:last-child,
.policy-section ul:last-child {
    margin-bottom: 0;
}

li + li {
    margin-top: 8px;
}

.notice {
    margin: 36px 0;
    padding: 20px;
    border-left: 5px solid var(--green);
    background: rgba(122, 170, 115, 0.14);
}

.site-footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 16px;
    padding: 28px 0 40px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 13px;
}

.site-footer p {
    margin: 0;
}

@media (max-width: 600px) {
    .site-header {
        align-items: flex-start;
        flex-direction: column;
    }

    .site-nav {
        justify-content: flex-start;
    }

    main {
        padding-top: 52px;
    }

    .summary-grid {
        grid-template-columns: 1fr;
    }
}

@media (prefers-reduced-motion: no-preference) {
    a,
    .button-link {
        transition: color 140ms ease, background-color 140ms ease, transform 140ms ease;
    }

    .button-link:hover {
        transform: translateY(-2px);
    }
}
