/* Type */
h1, h2, h3 {
    font-family: var(--head);
    font-weight: 700;
    line-height: 1.08;
    margin: 0 0 .45em;
    letter-spacing: -0.02em;
}
h1 {
    font-size: clamp(40px, 5vw, 66px);
}
h2 {
    font-size: clamp(30px, 3.1vw, 42px);
}
h3 {
    font-size: clamp(21px, 1.8vw, 25px);
    line-height: 1.25;
    letter-spacing: -0.01em;
}
h4 {
    font-family: var(--body);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--ink2);
    margin: 0 0 12px;
}
p {
    margin: 0 0 1em;
}
.lead {
    font-size: 21px;
    line-height: 1.5;
}
.muted {
    color: var(--ink2);
}
.small {
    font-size: 15px;
}
.list {
    margin: 6px 0 16px;
    padding-left: 22px;
}
.list li {
    margin: 6px 0;
}

@media (max-width: 600px) {
    h1 {
        font-size: 38px;
    }
}
