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

* {
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--color-ink);
    background: var(--color-parchment);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul, ol {
    list-style: none;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
    outline: 2px solid var(--color-brass);
    outline-offset: 2px;
}
h1, h2, h3, h4 {
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.12;
    text-wrap: balance;
}

.font-display {
    font-family: var(--font-display);
    font-weight: 500;
    letter-spacing: -0.015em;
    line-height: 1.12;
    text-wrap: balance;
}

h1 { font-size: var(--text-hero); }
h2 { font-size: var(--text-3xl); }

/* Heavier than h1/h2 — at this small size, 500 weight reads thin. */
h3 {
    font-size: var(--text-lg);
    font-weight: 600;
}

h1, h2 { font-optical-sizing: auto; }

h1 em, h2 em, h3 em {
    font-style: italic;
    font-weight: 400;
}

p {
    color: var(--color-ink-soft);
    text-wrap: pretty;
}

.measure { max-width: 62ch; }

.label {
    font-family: var(--font-mono);
    font-size: var(--text-sm);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
}

.eyebrow-ruby { color: var(--color-ruby); }
.eyebrow-brass { color: var(--color-brass); }
.eyebrow-sage { color: var(--color-sage); }
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding-left: var(--space-6);
    padding-right: var(--space-6);
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-6);
}

.flex {
    display: flex;
    align-items: center;
}

.flex-between {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}
.section {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: var(--space-9) var(--space-6);
}

.section--tight {
    padding-top: var(--space-7);
    padding-bottom: var(--space-7);
}

.section-band {
    background: var(--color-parchment-dim);
}

.section-band--dark {
    background: var(--color-forest);
    color: var(--color-parchment);
}

.section-band--dark p {
    color: var(--color-on-dark);
}

.section-band--dark h1,
.section-band--dark h2,
.section-band--dark h3 {
    color: var(--color-parchment);
}

.section-head {
    max-width: 560px;
    margin-bottom: var(--space-8);
}

.section-head .label {
    margin-bottom: var(--space-3);
}

.section-head p {
    margin-top: var(--space-3);
}

.section-head--inline {
    margin-bottom: 0;
}

.subhead {
    display: flex;
    align-items: baseline;
    gap: var(--space-3);
    margin-bottom: var(--space-5);
}

.subhead h3 {
    font-size: var(--text-xl);
    white-space: nowrap;
}

.subhead::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.subhead + .grid-3,
.subhead + .grid-2 {
    margin-bottom: var(--space-8);
}
.split {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: var(--space-8);
    align-items: center;
}
.text-center { text-align: center; }
.mt-1 { margin-top: var(--space-1); }
.mt-2 { margin-top: var(--space-2); }
.mt-4 { margin-top: var(--space-4); }
.mt-6 { margin-top: var(--space-6); }
.mt-8 { margin-top: var(--space-8); }
.mb-2 { margin-bottom: var(--space-2); }
.mb-4 { margin-bottom: var(--space-4); }
.mb-6 { margin-bottom: var(--space-6); }
.mb-8 { margin-bottom: var(--space-8); }
.hidden { display: none; }
@media (max-width: 860px) {
    .grid-3,
    .grid-2,
    .split {
        grid-template-columns: 1fr;
        gap: var(--space-6);
    }

    .section { padding-left: var(--space-5); padding-right: var(--space-5); }
}
