:root {
    --ink: #171717;
    --muted: #777;
    --line: #dedbd6;
    --paper: #f7f6f3;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    min-height: 100vh;
    background: var(--paper);
    color: var(--ink);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

a {
    color: inherit;
}

.page {
    width: min(1120px, calc(100% - 48px));
    margin: 0 auto;
    padding: 54px 0 34px;
}

.brand-mark {
    font-family: Baskerville, "Iowan Old Style", "Palatino Linotype",
                 "Book Antiqua", Palatino, Georgia, serif;
    font-size: 64px;
    line-height: .7;
    font-weight: 600;
    letter-spacing: -.12em;
    display: inline-block;
    transform: scaleX(.92);
    transform-origin: left center;
}

.hero {
    margin-top: clamp(100px, 15vh, 180px);
    max-width: 1020px;
}

.eyebrow,
.section-label {
    margin: 0 0 22px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .22em;
    color: var(--muted);
}

h1,
h2 {
    font-family: Baskerville, "Iowan Old Style", "Palatino Linotype",
                 "Book Antiqua", Palatino, Georgia, serif;
}

h1 {
    margin: 0;
    font-size: clamp(42px, 6.5vw, 88px);
    line-height: .9;
    font-weight: 500;
    letter-spacing: -.035em;
}

h2 {
    margin: 0;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1;
    font-weight: 600;
}

.intro {
    max-width: 560px;
    margin: 34px 0 0;
    font-size: 15px;
    line-height: 1.8;
    color: #555;
}

.grid,
.block {
    margin-top: clamp(90px, 13vh, 150px);
    padding-top: 30px;
    border-top: 1px solid var(--line);
}

.grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact a,
.contact p {
    margin: 0 0 10px;
    font-size: 14px;
    line-height: 1.7;
    text-decoration: none;
}

.contact a {
    border-bottom: 1px solid var(--line);
}

.contact a:hover {
    border-color: var(--ink);
}

.facts {
    margin: 46px 0 0;
}

.facts > div {
    display: grid;
    grid-template-columns: minmax(180px, 32%) 1fr;
    gap: 30px;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.facts dt {
    color: var(--muted);
    font-size: 12px;
    line-height: 1.6;
}

.facts dd {
    margin: 0;
    font-size: 14px;
    line-height: 1.7;
}

footer {
    margin-top: 120px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    font-size: 9px;
    letter-spacing: .12em;
    color: #999;
}

@media (max-width: 700px) {
    .page {
        width: min(100% - 36px, 1120px);
        padding-top: 34px;
    }

    .brand-mark {
        font-size: 56px;
    }

    .hero {
        margin-top: 100px;
    }

    h1 {
        font-size: clamp(39px, 12vw, 68px);
        line-height: .92;
    }

    .grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .facts > div {
        grid-template-columns: 1fr;
        gap: 7px;
    }

    .grid,
    .block {
        margin-top: 90px;
    }

    footer {
        margin-top: 80px;
    }
}
