:root {
    --ivory: #f4f1e9;
    --ink: #171714;
    --muted: #6e6b64;
    --line: #c9c4b9;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--ivory);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
}

header {
    min-height: 90px;
    padding: 0 4vw;
    border-bottom: 1px solid var(--ink);

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

header p {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    color: var(--ink);
    text-decoration: none;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

main section:first-child {
    min-height: 78vh;
    padding: 8vh 4vw 6vh;

    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

main section:first-child > p:first-child {
    margin: 0;
    font-size: 11px;
    letter-spacing: 0.16em;
}

h1 {
    max-width: 1100px;
    margin: 8vh 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(70px, 10vw, 160px);
    font-weight: 400;
    line-height: 0.88;
    letter-spacing: -0.055em;
}

main section:first-child > p:last-child {
    width: min(520px, 100%);
    margin: 0 0 0 auto;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 22px;
    line-height: 1.4;
}

main section:nth-child(2) {
    padding: 30px 4vw 10vh;
    border-top: 1px solid var(--ink);
}

main section:nth-child(2) > p {
    margin: 0 0 60px;
    font-size: 11px;
    letter-spacing: 0.16em;
}

article {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
}

article > p:first-child {
    margin: 8px 0 0;
    font-size: 11px;
    letter-spacing: 0.1em;
}

h2 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(48px, 6vw, 90px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.045em;
}

article > p:last-child {
    margin: 8px 0 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: 20px;
    line-height: 1.35;
}

footer {
    padding: 35px 4vw;
    border-top: 1px solid var(--ink);

    display: flex;
    justify-content: space-between;

    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

footer p {
    margin: 0;
}

@media (max-width: 700px) {
    header {
        min-height: 70px;
    }

    h1 {
        font-size: 18vw;
    }

    main section:first-child {
        min-height: 75vh;
    }

    main section:first-child > p:last-child {
        margin-left: 0;
        font-size: 18px;
    }

    article {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    footer {
        gap: 20px;
        flex-direction: column;
    }
}