@font-face {
    font-family: "IBM Plex Sans";
    src: url("/brand/explorations/corporate-70s/fonts/ibmplexsans.ttf") format("truetype");
    font-style: normal;
    font-weight: 100 900;
    font-display: swap;
}

:root {
    color-scheme: dark;
    --paper: #f5ebd6;
    --ink: #183c32;
    --yellow: #e9b72f;
    font-family: "IBM Plex Sans", Arial, sans-serif;
    color: var(--paper);
    background: var(--ink);
    font-synthesis: none;
}

* { box-sizing: border-box; }
body, h1 { margin: 0; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--yellow); }
a:focus-visible { outline: 2px solid var(--yellow); outline-offset: 6px; }
.page {
    min-height: 100svh;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "identity field" "projects field" "contact field";
}
.identity { grid-area: identity; margin: 64px 56px 0; }
.agency-wordmark { display: block; width: 100%; aspect-ratio: 581.457 / 140; background: var(--yellow); mask: url("/brand/logo/wordmark.svg") center / contain no-repeat; }
.projects { grid-area: projects; align-self: center; display: grid; gap: 8px; padding: 56px; }
.projects a { display: flex; justify-content: space-between; gap: 24px; padding-block: 12px; font-size: clamp(30px, 3.4vw, 52px); line-height: 1.2; letter-spacing: -.025em; }
.projects a span { font-weight: 300; }
.contact { grid-area: contact; padding: 0 56px 48px; }
.email { display: inline-block; font-size: 19px; padding-block: 10px; }
.socials { display: flex; flex-wrap: wrap; gap: 0 20px; margin-top: 20px; max-width: 450px; }
.socials a { padding-block: 10px; font-size: 14px; }
.living-field {
    grid-area: field;
    position: relative;
    min-width: 0;
    min-height: 100%;
    overflow: hidden;
    background: #1d6651 url("/brand/explorations/corporate-70s/dist/pattern-forest-living-field.svg") center / cover;
    touch-action: pan-y;
}
.living-field[data-ready] { cursor: pointer; }
.living-field > svg { position: absolute; inset: 0; display: block; width: 100%; height: 100%; }
.living-field:focus-visible { outline: 3px solid var(--yellow); outline-offset: -6px; }
.living-field [data-focus] { visibility: hidden; pointer-events: none; }
.living-field:focus-visible [data-selected] [data-focus] { visibility: visible; }

@media (min-width: 1600px) {
    .identity { margin: 80px 80px 0; }
    .projects { padding: 80px; }
    .contact { padding: 0 80px 64px; }
}
@media (max-width: 900px) {
    .identity { margin: 40px 32px 0; }
    .projects { padding: 40px 32px; }
    .contact { padding: 0 32px 32px; }
}
@media (max-width: 600px) {
    .page { grid-template-columns: 1fr; grid-template-rows: auto auto minmax(280px, 42svh) auto; grid-template-areas: "identity" "projects" "field" "contact"; }
    .identity { margin: 32px 24px 0; }
    .projects { padding: 32px 24px; gap: 0; }
    .projects a { font-size: 32px; }
    .contact { padding: 24px; }
    .socials { margin-top: 12px; }
}
@media (forced-colors: active) {
    .agency-wordmark { background: CanvasText; }
}
