* {
    box-sizing: border-box;
}

:root {
    --ink: #1f211d;
    --charcoal: #202821;
    --paper: #fff;
    --white: #fff;
    --moss: #40594c;
    --teal: #607f72;
    --teal-light: #7f9b8d;
    --teal-bright: #9dbfae;
    --copper: #b2774f;
    --clay: #9e5c45;
    --mist: #e5dfd2;
    --stone: #756f66;
    --dark: #111411;
    --dark2: #171c18;
    --line: rgba(31, 33, 29, 0.14);
    --font-everett: "TMK Everett", "TWK Everett", "Everett", sans-serif;
}

@font-face {
    font-family: "TMK Everett";
    src: local("TMK Everett"), local("TWK Everett"), local("Everett"), local("Everett Regular");
    font-weight: 300 800;
    font-style: normal;
    font-display: swap;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--font-everett);
    font-weight: 300;
    letter-spacing: 0;
}

body *:not(code):not(pre) {
    font-family: var(--font-everett);
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}

.site-header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 22px clamp(20px, 4vw, 56px);
    color: var(--paper);
    border-bottom: 1px solid transparent;
    transition: background 0.25s ease, border-color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open,
.site-header.is-menu-open {
    background: rgba(32, 40, 33, 0.94);
    border-color: rgba(157, 191, 174, 0.22);
    backdrop-filter: blur(10px);
}

.site-header.is-menu-open .side-menu,
.side-menu-dropdown[open] .side-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    min-width: 210px;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 38px;
    height: 38px;
    border: 0;
    font-family: var(--font-everett);
    font-size: 25px;
}

.brand-mark img {
    width: 42px;
    height: 42px;
    filter: none;
}

.brand strong,
.brand small {
    display: block;
}

.brand strong {
    font-family: var(--font-everett);
    font-size: 0;
    font-weight: 600;
}

.brand small {
    margin-top: 0;
    color: var(--paper);
    font-size: 0;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2.5vw, 34px);
    width: min(1240px, calc(100vw - 220px));
    justify-content: space-around;
    font-size: 11px;
    letter-spacing: 0.12em;
    font-weight: 400;
    text-transform: uppercase;
}

.site-nav a {
    color: rgba(244, 241, 235, 0.72);
}

.site-nav a:hover {
    color: var(--teal-bright);
}

.site-nav a.admin-nav-access {
    border: 1px solid currentColor;
    padding: 8px 12px;
    white-space: nowrap;
}

.nav-action {
    padding: 10px 16px;
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.nav-search::before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    margin-right: 8px;
    border: 1.5px solid var(--teal-bright);
    border-radius: 50%;
    vertical-align: -4px;
}

.nav-search::after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 2px;
    margin-left: -3px;
    background: var(--teal-bright);
    rotate: -45deg;
    transform-origin: left center;
}

.side-menu-dropdown {
    flex: 0 0 auto;
}

.side-menu-dropdown summary {
    list-style: none;
}

.side-menu-dropdown summary::-webkit-details-marker {
    display: none;
}

.menu-toggle {
    width: 64px;
    height: 42px;
    flex: 0 0 auto;
    display: grid;
    align-content: center;
    gap: 6px;
    color: currentColor;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.menu-toggle:focus {
    outline: none;
}

.menu-toggle:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 6px;
}

.menu-toggle span {
    display: block;
    width: 64px;
    height: 6px;
    background: currentColor;
}

.side-menu {
    position: absolute;
    left: clamp(20px, 4vw, 56px);
    top: 86px;
    z-index: 110;
    display: grid;
    gap: 10px;
    min-width: 190px;
    padding: 12px 0;
    color: rgba(244, 241, 235, 0.72);
    background: transparent;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.side-menu a {
    width: max-content;
    color: inherit;
    font-size: 21px;
    font-weight: 300;
    line-height: 1.08;
    text-transform: uppercase;
}

.side-menu a:hover {
    color: var(--teal-bright);
}

.big-header {
    align-items: flex-start;
    padding-top: 18px;
    background: var(--charcoal);
    border-bottom: 0;
}

.big-header .brand {
    min-width: 112px;
    gap: 0;
}

.big-header .brand-mark {
    width: 68px;
    height: 38px;
}

.big-index {
    min-height: 100svh;
    padding: 118px clamp(18px, 3vw, 44px) 72px;
    background: var(--paper);
}

.big-category-panel {
    position: fixed;
    left: clamp(18px, 3vw, 44px);
    top: 86px;
    z-index: 80;
    width: 260px;
    display: none;
    background: var(--charcoal);
    border: 1px solid rgba(157, 191, 174, 0.24);
    box-shadow: 0 18px 60px rgba(31, 33, 29, 0.18);
}

.big-category-panel.is-open {
    display: block;
}

.big-category-panel > div {
    display: none;
    padding: 22px;
}

.big-category-panel > div.is-active {
    display: grid;
    gap: 11px;
}

.big-category-panel h2 {
    margin: 0 0 8px;
    color: var(--paper);
    font-size: 16px;
    font-weight: 400;
}

.big-category-panel a {
    color: rgba(244, 241, 235, 0.68);
    font-size: 12px;
}

.big-project-list {
    width: min(740px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 36px;
}

.big-project-row {
    display: grid;
    grid-template-columns: 240px 430px;
    gap: 54px;
    align-items: start;
    color: var(--ink);
}

.big-project-info {
    padding-top: 0;
    text-align: right;
}

.big-project-icon {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 0 22px;
    background: var(--charcoal);
}

.big-project-icon img {
    width: 44px;
    height: 44px;
    filter: invert(1);
}

.big-project-info h2 {
    margin: 0;
    font-family: var(--font-everett);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.2;
}

.big-project-info p {
    margin: 8px 0 0;
    color: var(--stone);
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.big-project-image {
    width: 430px;
    height: 260px;
    object-fit: contain;
    justify-self: start;
    background: transparent;
}

.big-project-row:nth-child(2n) .big-project-image {
    height: 260px;
}

.big-info-band {
    display: grid;
    grid-template-columns: 0.8fr 1fr;
    gap: 42px;
    padding: 72px clamp(18px, 4vw, 72px);
    border-top: 1px solid rgba(42, 85, 69, 0.16);
    background: var(--charcoal);
    color: var(--paper);
}

.big-info-band p {
    margin: 0;
    color: rgba(244, 241, 235, 0.68);
    line-height: 1.65;
}

.big-info-band h1 {
    margin: 8px 0 0;
    font-family: var(--font-everett);
    font-size: clamp(26px, 4vw, 48px);
    font-weight: 400;
    letter-spacing: 0;
}

.archive-big-index {
    padding-top: 120px;
}

.archive-big-index .archive-filters {
    width: min(860px, 100%);
    margin: 0 auto 42px;
}

.project-horizontal-page {
    overflow: auto;
    background: var(--paper);
    scroll-snap-type: y proximity;
}

.project-horizontal-page .footer {
    display: none;
}

.project-horizontal-page .big-header {
    display: flex;
}

.horizontal-project-stack {
    padding-top: 86px;
}

.horizontal-project {
    height: calc(100svh - 86px);
    min-height: 640px;
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    background: var(--paper);
    scroll-snap-align: start;
}

.horizontal-project-sidebar {
    height: calc(100svh - 86px);
    min-height: 640px;
    padding: 22px 22px 24px;
    display: grid;
    grid-template-rows: auto auto 1fr auto;
    align-items: start;
    text-align: center;
    background: var(--paper);
    border-right: 1px solid rgba(42, 85, 69, 0.14);
}

.horizontal-logo {
    display: grid;
    justify-items: center;
    gap: 8px;
    margin-bottom: 18px;
}

.horizontal-logo img {
    width: 34px;
    height: 34px;
}

.horizontal-logo strong {
    color: var(--ink);
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.18em;
}

.horizontal-project-heading {
    display: grid;
    justify-items: center;
    margin-top: 6px;
}

.horizontal-project-heading .big-project-icon {
    margin-bottom: 18px;
}

.horizontal-project-heading h1 {
    margin: 0;
    font-family: var(--font-everett);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.18;
}

.horizontal-project-heading p {
    margin: 12px 0 0;
    color: var(--stone);
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
}

.horizontal-facts {
    align-self: center;
    display: grid;
    gap: 13px;
    margin: 20px 0;
}

.horizontal-facts dt {
    color: var(--stone);
    font-size: 10px;
    text-transform: uppercase;
}

.horizontal-facts dd {
    margin: -10px 0 0;
    color: var(--ink);
    font-size: 13px;
    line-height: 1.15;
    text-transform: uppercase;
}

.horizontal-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px;
}

.horizontal-actions span {
    flex-basis: 100%;
    color: var(--stone);
    font-size: 10px;
    text-transform: uppercase;
}

.horizontal-actions button,
.horizontal-actions a {
    min-height: 28px;
    border: 1px solid var(--moss);
    background: var(--moss);
    color: var(--paper);
    padding: 4px 7px;
    font-size: 10px;
    text-transform: uppercase;
}

.horizontal-track {
    height: calc(100svh - 86px);
    min-height: 640px;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--moss) var(--mist);
}

.horizontal-panel {
    height: calc(100svh - 86px);
    min-height: 640px;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.horizontal-image-panel {
    width: min(76vw, 1180px);
    padding: 28px;
}

.horizontal-image-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.horizontal-text-panel {
    width: 340px;
    padding: 28px 26px;
    display: flex;
    align-items: flex-start;
}

.horizontal-text-panel span,
.horizontal-chapter-panel span,
.horizontal-credits-panel span,
.horizontal-more-panel span {
    display: block;
    margin-bottom: 18px;
    color: var(--stone);
    font-size: 10px;
    text-transform: uppercase;
}

.horizontal-text-panel p {
    margin: 0;
    font-size: 14px;
    line-height: 1.35;
}

.horizontal-chapter-panel {
    width: min(88vw, 1320px);
    display: grid;
    grid-template-columns: minmax(520px, 1fr) 310px;
    gap: 28px;
    padding: 28px;
}

.horizontal-chapter-panel button {
    border: 0;
    padding: 0;
    background: transparent;
}

.horizontal-chapter-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.horizontal-chapter-panel div {
    padding-top: 0;
}

.horizontal-chapter-panel h2,
.horizontal-credits-panel h2,
.horizontal-more-panel h2 {
    margin: 0 0 18px;
    font-family: var(--font-everett);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.08;
}

.horizontal-chapter-panel p,
.horizontal-credits-panel p {
    margin: 0 0 18px;
    font-size: 14px;
    line-height: 1.35;
}

.horizontal-credits-panel,
.horizontal-more-panel {
    width: 380px;
    padding: 28px 26px;
}

.horizontal-credits-panel strong {
    display: block;
    margin-bottom: 4px;
    color: var(--stone);
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
}

.horizontal-more-panel > div {
    display: grid;
    gap: 18px;
}

.horizontal-more-panel a {
    display: grid;
    gap: 8px;
}

.horizontal-more-panel img {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.horizontal-more-panel strong {
    font-size: 15px;
    font-weight: 400;
}

.horizontal-more-panel small {
    color: var(--stone);
    font-size: 11px;
    text-transform: uppercase;
}

.wia-projects-app-page {
    background: var(--dark);
    overflow: hidden;
}

.wia-projects-app-page .footer {
    display: none;
}

.wia-projects-app-page .big-header {
    background: rgba(32, 40, 33, 0.97);
}

.wia-projects-app {
    position: fixed;
    inset: 64px 0 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--dark);
}

.wia-list-view {
    flex: 1 1 auto;
    min-height: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: flex-basis 0.55s cubic-bezier(.77, 0, .175, 1), flex-grow 0.55s cubic-bezier(.77, 0, .175, 1);
}

.wia-list-view.shrunk {
    flex: 0 0 56px;
}

.filter-bar {
    height: 56px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 1.45rem;
    padding: 0 2.8rem;
    background: var(--dark2);
    border-bottom: 1px solid rgba(255,255,255,.05);
}

.filter-lbl {
    font-size: 7.5px;
    letter-spacing: .38em;
    color: rgba(255,255,255,.22);
}

.f-btn {
    border: 0;
    border-bottom: 1px solid transparent;
    padding: 4px 0;
    background: transparent;
    color: rgba(255,255,255,.42);
    font-size: 9px;
    font-weight: 300;
    letter-spacing: .2em;
}

.f-btn:hover,
.f-btn.on {
    color: var(--teal-bright);
    border-bottom-color: var(--teal-bright);
}

.pcount {
    margin-left: auto;
    color: rgba(255,255,255,.22);
    font-size: 8.5px;
    letter-spacing: .2em;
}

.rows {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
}

.rows::-webkit-scrollbar {
    width: 2px;
}

.rows::-webkit-scrollbar-thumb {
    background: rgba(90,171,138,.3);
}

.row {
    width: 100%;
    display: grid;
    grid-template-columns: 380px minmax(0, 1fr);
    height: calc((100vh - 64px - 56px) / 3);
    min-height: 124px;
    max-height: 240px;
    border: 0;
    border-bottom: 1px solid rgba(255,255,255,.05);
    padding: 0;
    background: transparent;
    text-align: left;
    color: var(--white);
    overflow: hidden;
    transition: background .25s;
}

.row:hover {
    background: rgba(255,255,255,.025);
}

.row.active {
    background: rgba(42,85,69,.2);
    box-shadow: inset 2px 0 0 var(--teal-bright);
}

.row[hidden] {
    display: none;
}

.row-meta {
    min-width: 0;
    padding: 1.55rem 2.2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-right: 1px solid rgba(255,255,255,.05);
}

.row-icon-wrap {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    margin-bottom: .9rem;
    background: rgba(255,255,255,.04);
}

.row-icon-wrap img {
    width: 27px;
    height: 27px;
}

.row-num {
    margin-bottom: .35rem;
    color: rgba(255,255,255,.22);
    font-size: 7.5px;
    letter-spacing: .3em;
}

.row-name {
    margin-bottom: .28rem;
    color: rgba(255,255,255,.84);
    font-family: var(--font-everett);
    font-size: 19px;
    line-height: 1.1;
}

.row.active .row-name {
    color: var(--teal-bright);
}

.row-loc {
    color: rgba(255,255,255,.34);
    font-size: 9px;
    letter-spacing: .1em;
}

.row-pill {
    align-self: flex-start;
    margin-top: .65rem;
    border: 1px solid rgba(255,255,255,.1);
    padding: 3px 9px;
    color: rgba(255,255,255,.3);
    font-size: 7.5px;
    letter-spacing: .14em;
}

.row-img {
    position: relative;
    overflow: hidden;
}

.row-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}

.row:hover .row-img img {
    transform: scale(1.04);
}

.row-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(18,28,24,.72), transparent 42%);
    pointer-events: none;
}

.wia-detail-view {
    flex: 0 0 0;
    min-height: 0;
    display: flex;
    overflow: hidden;
    background: var(--dark);
    transition: flex-basis 0.55s cubic-bezier(.77, 0, .175, 1), flex-grow 0.55s cubic-bezier(.77, 0, .175, 1);
}

.wia-detail-view.open {
    flex: 1 1 auto;
}

.detail-inner {
    width: 100%;
    height: 100%;
    display: flex;
    overflow: hidden;
}

.d-sidebar {
    width: 300px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    padding: 2.1rem 2rem 1.8rem;
    background: var(--dark);
    border-right: 1px solid rgba(255,255,255,.07);
}

.d-sb-icon {
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    margin-bottom: .65rem;
    background: var(--teal);
}

.d-sb-icon img {
    width: 33px;
    height: 33px;
}

.d-sb-brand {
    margin: 0 0 1rem;
    color: rgba(255,255,255,.42);
    font-size: 8px;
    letter-spacing: .28em;
    text-transform: uppercase;
}

.d-sb-name {
    margin: 0 0 .3rem;
    color: var(--white);
    font-family: var(--font-everett);
    font-size: 19px;
    line-height: 1.18;
}

.d-sb-loc {
    margin: 0 0 1.5rem;
    color: rgba(255,255,255,.38);
    font-size: 8.5px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.d-sb-divider {
    height: 1px;
    margin-bottom: 1.4rem;
    background: rgba(255,255,255,.07);
}

.meta-row {
    margin-bottom: 1.05rem;
}

.meta-lbl {
    display: block;
    margin-bottom: .3rem;
    color: rgba(255,255,255,.28);
    font-size: 7.5px;
    letter-spacing: .32em;
    text-transform: uppercase;
}

.meta-val {
    color: rgba(255,255,255,.8);
    font-size: 12px;
    line-height: 1.4;
}

.d-sb-bottom {
    margin-top: auto;
}

.share-lbl {
    display: block;
    margin-bottom: .75rem;
    color: rgba(255,255,255,.28);
    font-size: 7.5px;
    letter-spacing: .32em;
}

.share-row {
    display: flex;
    gap: .55rem;
}

.share-btn {
    min-width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255,255,255,.12);
    background: transparent;
    color: rgba(255,255,255,.46);
    padding: 0 7px;
    font-size: 9px;
    text-decoration: none;
}

.share-btn:hover {
    border-color: var(--teal-bright);
    color: var(--teal-bright);
}

.close-btn {
    display: flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1.1rem;
    border: 0;
    padding: 0;
    background: transparent;
    color: rgba(255,255,255,.36);
    font-size: 8.5px;
    letter-spacing: .22em;
}

.close-btn:hover {
    color: var(--teal-bright);
}

.d-hscroll {
    position: relative;
    flex: 1;
    overflow: hidden;
}

.h-track {
    position: absolute;
    inset: 0 auto 0 0;
    height: 100%;
    display: flex;
    will-change: transform;
    transition: transform .55s cubic-bezier(.77,0,.175,1);
}

.h-track.dragging {
    transition: none;
}

.h-panel {
    height: 100%;
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.h-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.h-panel-hero {
    width: min(980px, calc(100vw - 340px));
}

.h-panel-text {
    width: 360px;
    padding: 2rem;
    background: var(--cream);
    color: var(--dark);
}

.panel-eyebrow,
.panel-caption {
    display: block;
    margin-bottom: 1rem;
    color: var(--stone);
    font-size: 7.5px;
    letter-spacing: .32em;
    text-transform: uppercase;
}

.h-panel-text h2,
.h-panel-credits h2 {
    margin: 0 0 1rem;
    color: var(--dark);
    font-family: var(--font-everett);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.05;
}

.h-panel-text p,
.h-panel-credits p {
    margin: 0 0 1rem;
    color: var(--dark);
    font-size: 13px;
    line-height: 1.5;
}

.h-panel-chapter {
    width: min(760px, calc(100vw - 360px));
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    background: var(--cream);
}

.h-panel-chapter figure {
    margin: 0;
    min-width: 0;
}

.h-panel-chapter div {
    padding: 2rem;
    align-self: start;
}

.h-panel-chapter h3 {
    margin: 0 0 .8rem;
    color: var(--dark);
    font-family: var(--font-everett);
    font-size: 22px;
    font-weight: 400;
}

.h-panel-chapter p {
    margin: 0;
    color: var(--dark);
    font-size: 12.5px;
    line-height: 1.48;
}

.h-panel-credits {
    width: 420px;
    padding: 2rem;
    background: var(--cream2);
}

.h-panel-credits strong {
    display: block;
    color: var(--stone);
    font-size: 8px;
    letter-spacing: .2em;
    text-transform: uppercase;
}

.h-arrow {
    position: absolute;
    top: 50%;
    z-index: 4;
    min-width: 40px;
    height: 40px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(18,28,24,.72);
    color: var(--teal-bright);
    font-size: 8px;
    letter-spacing: .16em;
    transform: translateY(-50%);
}

.left-arr {
    left: 18px;
}

.right-arr {
    right: 18px;
}

.h-arrow.gone {
    opacity: 0;
    pointer-events: none;
}

.h-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    z-index: 5;
    width: 0%;
    height: 2px;
    background: var(--teal-bright);
}

.drag-hint {
    position: absolute;
    left: 50%;
    bottom: 26px;
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,.34);
    font-size: 8px;
    letter-spacing: .28em;
    transform: translateX(-50%);
    transition: opacity .25s;
}

.drag-hint span {
    width: 34px;
    height: 1px;
    background: rgba(255,255,255,.18);
}

.drag-hint.fade {
    opacity: 0;
}

.big-white-page {
    background: var(--white);
    color: var(--ink);
    overflow: auto;
    cursor: auto;
}

.big-white-page .footer {
    display: none;
}

.big-white-page .big-header {
    position: sticky;
    top: 0;
    background: var(--white);
    color: var(--ink);
    border-bottom: 0;
    padding: 26px 42px 12px;
}

.big-white-page .site-header.is-menu-open {
    background: var(--white);
    border-color: transparent;
    backdrop-filter: none;
}

.big-white-page .big-header .brand {
    display: none;
}

.big-white-page .brand-mark img {
    filter: invert(1);
}

.big-white-page .menu-toggle {
    width: 64px;
    height: 42px;
}

.big-white-page .menu-toggle span {
    width: 64px;
    height: 6px;
    background: var(--ink);
}

.big-white-page .side-menu {
    left: 42px;
    top: 82px;
    gap: 9px;
    color: var(--stone);
}

.big-white-page .side-menu a {
    color: inherit;
    font-family: var(--font-everett);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.08;
}

.big-white-page .side-menu a:hover {
    color: var(--ink);
}

.big-white-page .site-nav {
    color: var(--ink);
    font-size: 14px;
    letter-spacing: .04em;
}

.big-white-page .site-nav a {
    color: var(--stone);
}

.big-white-page .site-nav a:hover {
    color: var(--ink);
}

.big-white-page .nav-search::before {
    border-color: var(--ink);
}

.big-white-page .nav-search::after {
    background: var(--ink);
}

.big-subnav {
    position: sticky;
    top: 76px;
    z-index: 90;
    display: flex;
    justify-content: center;
    gap: clamp(20px, 3vw, 54px);
    padding: 4px 42px 28px;
    background: #fff;
}

.big-subnav a {
    position: relative;
    color: #111;
    font-size: 14px;
    font-weight: 300;
}

.big-subnav a.active::before {
    content: "";
    position: absolute;
    left: -14px;
    top: 50%;
    width: 6px;
    height: 6px;
    background: #111;
    transform: translateY(-50%);
}

.big-list-page {
    padding: 34px 42px 80px;
    background: #fff;
}

.big-white-page .big-project-list,
.big-next-list {
    width: min(900px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 44px;
}

.big-white-page .big-project-row {
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 64px;
    align-items: start;
    color: #111;
}

.big-white-page .big-project-info {
    text-align: right;
}

.big-white-page .big-project-icon {
    display: inline-grid;
    place-items: center;
    width: 58px;
    height: 58px;
    margin: 0 0 22px;
    background: #000;
}

.big-white-page .big-project-icon img {
    width: 42px;
    height: 42px;
}

.big-white-page .big-project-info h2 {
    margin: 0;
    font-family: var(--font-everett);
    font-size: 18px;
    font-weight: 400;
    line-height: 1.2;
}

.big-white-page .big-project-info p {
    margin: 8px 0 0;
    color: #777;
    font-size: 13px;
    font-weight: 500;
    text-transform: uppercase;
}

.big-white-page .big-project-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}

.big-project-wide {
    position: relative;
    display: grid;
    grid-template-columns: 262px minmax(0, 1fr);
    gap: 0;
    min-height: calc(100svh - 90px);
    padding: 34px 0 96px;
    background: #fff;
    overflow: visible;
}

.big-project-sidebar {
    position: sticky;
    top: 82px;
    width: 262px;
    height: calc(100svh - 116px);
    padding: 0 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.big-project-sidebar .big-project-icon {
    margin-bottom: 28px;
}

.big-project-sidebar h1 {
    margin: 0;
    font-family: var(--font-everett);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.18;
}

.big-project-sidebar .project-place {
    margin: 14px 0 54px;
    color: #7e7e7e;
    font-size: 18px;
    text-transform: uppercase;
}

.big-project-sidebar dl {
    margin: 0;
    display: grid;
    gap: 20px;
}

.big-project-sidebar dt {
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
}

.big-project-sidebar dd {
    margin: -14px 0 0;
    color: #111;
    font-size: 16px;
    line-height: 1.18;
    text-transform: uppercase;
}

.big-share {
    margin-top: auto;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.big-share span {
    flex-basis: 100%;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
}

.big-share button,
.big-share a {
    border: 0;
    background: #111;
    color: #fff;
    padding: 7px 8px;
    font-size: 10px;
    text-transform: uppercase;
}

.big-wide-track {
    display: grid;
    align-items: start;
    gap: 86px;
    min-width: 0;
    width: min(1260px, 100%);
    height: auto;
    min-height: 0;
    overflow: visible;
    scroll-snap-type: none;
    scroll-behavior: auto;
    scrollbar-width: none;
    cursor: default;
    padding: 0 clamp(28px, 5vw, 76px) 0 0;
    touch-action: pan-y pan-x;
}

.big-wide-track::-webkit-scrollbar {
    display: none;
}

.project-slide {
    width: min(1080px, 100%);
    min-height: min(760px, calc(100svh - 160px));
    display: grid;
    grid-template-columns: minmax(420px, 760px) minmax(240px, 330px);
    gap: clamp(28px, 4vw, 58px);
    align-items: start;
    opacity: 0.72;
    transform: translateY(18px);
    transform-origin: center center;
    transition: opacity 0.58s ease, transform 0.58s ease;
}

.project-slide.is-active,
.project-slide:first-child {
    opacity: 1;
    transform: translateY(0);
}

.project-slide:hover {
    opacity: 0.9;
}

.project-slide-copy,
.project-slide-facts,
.project-slide-credits {
    width: min(700px, 100%);
    grid-template-columns: minmax(320px, 620px);
    min-height: min(540px, 70svh);
}

.project-slide-copy .wide-copy,
.project-slide-facts .wide-copy,
.project-slide-credits .wide-credits {
    align-self: start;
}

.project-slide-controls {
    display: none;
}

.project-slide-controls button {
    min-height: 30px;
    border: 1px solid #111;
    background: #111;
    color: #fff;
    padding: 6px 9px;
    font-size: 10px;
    text-transform: uppercase;
    cursor: pointer;
}

.project-slide-controls strong {
    color: #777;
    font-size: 11px;
    font-weight: 400;
    white-space: nowrap;
}

.project-slide-progress {
    display: none;
}

.project-back-link {
    display: inline-flex;
    align-items: center;
    width: max-content;
    min-height: 32px;
    margin-bottom: 28px;
    color: #111;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.project-back-link::before {
    content: "";
    width: 18px;
    height: 1px;
    margin-right: 8px;
    background: currentColor;
}

.project-return {
    width: min(1080px, calc(100% - 40px));
    margin: 0 auto;
    padding: 24px 0 90px;
}

.wide-media {
    margin: 0;
    width: 100%;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    flex: 1 1 auto;
    background: var(--mist);
    overflow: hidden;
}

.wide-hero {
    width: min(70vw, 1280px);
}

.wide-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.002);
    transition: transform 0.7s ease;
}

.wide-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1);
}

.project-slide.is-active .wide-media img,
.project-slide:hover .wide-media img {
    transform: scale(1.018);
}

.wide-copy {
    width: 100%;
    min-width: 0;
    padding: 0;
}

.wide-copy p {
    margin: 0;
    color: #111;
    font-family: var(--font-everett);
    font-size: 22px;
    line-height: 1.16;
}

.wide-copy.small {
    width: 100%;
    flex-basis: auto;
    align-self: start;
}

.wide-copy.small span,
.wide-credits span {
    display: block;
    margin-bottom: 14px;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
}

.wide-copy h2,
.wide-credits h2 {
    margin: 0 0 18px;
    color: #111;
    font-size: clamp(22px, 3vw, 36px);
    font-weight: 400;
    line-height: 1.08;
}

.wide-copy.small p {
    font-size: 18px;
}

.project-facts-slide dl {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 14px 20px;
    margin: 24px 0 0;
}

dl.project-facts-slide {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr);
    gap: 14px 20px;
    margin: 0;
}

.project-facts-slide dt,
dl.project-facts-slide dt {
    color: #888;
    font-size: 11px;
    text-transform: uppercase;
}

.project-facts-slide dd,
dl.project-facts-slide dd {
    min-width: 0;
    margin: 0;
    color: #111;
    font-size: 15px;
    line-height: 1.3;
    overflow-wrap: anywhere;
}

.wide-credits {
    width: min(540px, 100%);
    flex: 0 0 auto;
    padding: 0;
}

.wide-credits p {
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    gap: 22px;
    align-items: baseline;
    margin: 0 0 14px;
    color: #111;
    font-size: 20px;
    line-height: 1.25;
}

.wide-credits strong {
    display: inline;
    color: #9a9a9a;
    font-size: 12px;
    font-weight: 300;
    text-transform: uppercase;
}

.big-next-list {
    padding: 60px 42px 100px;
}

.hero {
    min-height: 100svh;
    position: relative;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--white);
    background: var(--charcoal);
}

.hero-media,
.hero-media img,
.project-hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-media img,
.project-hero img {
    object-fit: cover;
}

.hero-shade,
.project-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(18, 22, 20, 0.84), rgba(18, 22, 20, 0.34) 52%, rgba(18, 22, 20, 0.58)),
        linear-gradient(0deg, rgba(18, 22, 20, 0.8), rgba(18, 22, 20, 0.04) 55%);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(920px, 100%);
    padding: 0 clamp(20px, 4vw, 56px) clamp(80px, 10vw, 120px);
}

.eyebrow {
    margin: 0 0 22px;
    color: var(--clay);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero h1,
.project-title-block h1,
.archive-hero h1 {
    margin: 0;
    font-family: var(--font-everett);
    font-size: clamp(64px, 12vw, 156px);
    font-weight: 300;
    line-height: 0.92;
}

.hero-copy {
    width: min(620px, 100%);
    margin: 28px 0 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: clamp(17px, 2vw, 23px);
    line-height: 1.55;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 34px;
}

.hero-actions a,
form button,
.text-link {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 12px 18px;
    border: 1px solid currentColor;
    background: var(--moss);
    color: var(--white);
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 500;
}

.hero-actions a + a,
.text-link {
    background: transparent;
}

.hero-facts {
    position: absolute;
    right: clamp(20px, 4vw, 56px);
    bottom: clamp(22px, 5vw, 64px);
    z-index: 2;
    display: grid;
    grid-template-columns: repeat(3, minmax(84px, 1fr));
    border: 1px solid rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(12px);
}

.hero-facts div,
.project-meta div,
.stats div,
.admin-metrics div {
    padding: 18px;
}

.hero-facts span,
.project-meta span,
.stats span,
.service-card span,
.process-grid span,
.credit-list span,
.archive-row span,
.footer span,
.admin-metrics span {
    display: block;
    color: var(--stone);
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-facts strong,
.project-meta strong,
.stats strong,
.admin-metrics strong {
    display: block;
    margin-top: 7px;
    font-size: 16px;
    font-weight: 500;
}

.ticker {
    overflow: hidden;
    background: var(--moss);
    color: var(--white);
}

.ticker div {
    display: flex;
    width: max-content;
    gap: 36px;
    padding: 14px 0;
    animation: ticker 34s linear infinite;
}

.ticker span {
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

@keyframes ticker {
    to {
        transform: translateX(-50%);
    }
}

.section,
.studio-band,
.process,
.contact,
.project-meta,
.project-intro,
.chapters,
.quote,
.credits,
.more-projects,
.archive-list,
.admin {
    padding: clamp(56px, 8vw, 110px) clamp(20px, 4vw, 56px);
}

.section-head {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 24px;
    align-items: end;
    margin-bottom: 34px;
}

.section-head .eyebrow {
    grid-column: 1 / -1;
    margin-bottom: 0;
}

.section-head h2,
.studio-band h2,
.contact h2,
.credits h2,
.admin h1 {
    margin: 0;
    max-width: 760px;
    font-family: var(--font-everett);
    font-size: clamp(30px, 4.8vw, 54px);
    font-weight: 300;
    line-height: 1;
}

.section-head a {
    align-self: center;
    color: var(--moss);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2px;
}

.project-grid.three {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-card {
    position: relative;
    min-height: 360px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    padding: 26px;
    background: var(--charcoal);
    color: var(--white);
}

.project-card.large {
    min-height: 640px;
    grid-row: span 2;
}

.project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.78;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.project-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(18, 22, 20, 0.9), rgba(18, 22, 20, 0.12));
}

.project-card:hover img {
    opacity: 1;
    transform: scale(1.045);
}

.project-card h3,
.project-card p,
.project-card span {
    position: relative;
    z-index: 1;
}

.project-card h3 {
    margin: 10px 0 4px;
    font-family: var(--font-everett);
    font-size: clamp(30px, 4vw, 48px);
    font-weight: 300;
    line-height: 1;
}

.project-card p {
    margin: 0;
    color: rgba(255, 255, 255, 0.72);
}

.studio-band {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 460px);
    gap: 56px;
    align-items: end;
    background: var(--charcoal);
    color: var(--white);
}

.brand-system {
    padding: clamp(56px, 8vw, 110px) clamp(20px, 4vw, 56px);
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1.1fr);
    gap: 1px;
    background: rgba(42, 85, 69, 0.16);
}

.brand-system-main,
.brand-system-cards article {
    background: var(--paper);
}

.brand-system-main {
    display: grid;
    grid-template-columns: 160px minmax(0, 1fr);
    gap: 34px;
    align-items: center;
    padding: clamp(28px, 5vw, 58px);
}

.brand-system-main img {
    width: 150px;
    height: 150px;
}

.brand-system-main h2 {
    margin: 0;
    font-family: var(--font-everett);
    font-size: clamp(30px, 4.8vw, 52px);
    font-weight: 300;
}

.brand-system-main a,
.project-tools a,
.project-tools button,
.archive-filters button {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 10px 14px;
    border: 1px solid var(--line);
    background: transparent;
    color: var(--moss);
    text-transform: uppercase;
    font-size: 11px;
    font-weight: 600;
}

.brand-system-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
}

.brand-system-cards article {
    padding: 28px;
}

.brand-system-cards strong {
    display: block;
    margin-top: 12px;
    font-family: var(--font-everett);
    font-size: 22px;
    font-weight: 400;
}

.studio-band p:not(.eyebrow) {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 20px;
    line-height: 1.6;
}

.stats {
    display: grid;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

.stats div + div {
    border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.stats strong {
    font-family: var(--font-everett);
    font-size: 56px;
    font-weight: 300;
}

.service-grid,
.process-grid,
.admin-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--line);
}

.service-card,
.process-grid article,
.admin-metrics div {
    background: var(--paper);
    padding: 28px;
}

.service-card h3,
.process-grid h3 {
    margin: 18px 0 10px;
    font-family: var(--font-everett);
    font-size: 24px;
    font-weight: 400;
}

.service-card p,
.process-grid p,
.contact p,
.project-intro p,
.chapter p,
.quote p,
.footer p {
    color: var(--stone);
    line-height: 1.65;
}

.process {
    background: var(--mist);
}

.contact {
    display: grid;
    grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
    gap: 56px;
    background: var(--charcoal);
    color: var(--white);
}

.contact dl {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 14px 22px;
    margin-top: 34px;
}

.contact dt {
    color: rgba(255, 255, 255, 0.38);
    font-size: 11px;
    text-transform: uppercase;
}

.contact dd {
    margin: 0;
}

form {
    display: grid;
    gap: 18px;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

label {
    display: grid;
    gap: 8px;
    color: rgba(255, 255, 255, 0.58);
    font-size: 11px;
    font-weight: 500;
    text-transform: uppercase;
}

input,
select,
textarea {
    width: 100%;
    min-height: 48px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    background: rgba(255, 255, 255, 0.06);
    color: var(--white);
    padding: 12px 14px;
    outline: none;
}

textarea {
    resize: vertical;
}

select option {
    color: var(--ink);
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--clay);
}

form button {
    justify-content: center;
    border-color: var(--moss);
}

.notice {
    margin: 0;
    padding: 12px 14px;
    background: rgba(47, 91, 72, 0.24);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--white);
}

.notice.error {
    background: rgba(197, 111, 82, 0.22);
}

.project-hero {
    position: relative;
    min-height: 92svh;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--white);
}

.project-title-block {
    position: relative;
    z-index: 2;
    padding: 0 clamp(20px, 4vw, 56px) clamp(68px, 9vw, 110px);
}

.project-meta {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 1px;
    padding-top: 0;
    padding-bottom: 0;
    background: var(--line);
}

.project-tools {
    position: sticky;
    top: 83px;
    z-index: 20;
    display: flex;
    flex-wrap: wrap;
    gap: 1px;
    padding: 0 clamp(20px, 4vw, 56px);
    background: rgba(244, 241, 235, 0.92);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(12px);
}

.project-tools a,
.project-tools button {
    min-height: 52px;
    border-color: transparent;
}

.project-meta > * {
    background: var(--paper);
}

.project-meta button {
    border: 0;
    background: var(--moss);
    color: var(--white);
    text-transform: uppercase;
    font-size: 12px;
}

.project-intro p {
    width: min(980px, 100%);
    margin: 0;
    color: var(--ink);
    font-family: var(--font-everett);
    font-size: clamp(32px, 5vw, 62px);
    line-height: 1.08;
}

.project-snapshot {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.6fr);
    gap: 1px;
    padding: 0 clamp(20px, 4vw, 56px) clamp(56px, 8vw, 110px);
    background: var(--line);
}

.project-snapshot article {
    background: var(--white);
    padding: clamp(28px, 5vw, 56px);
}

.project-snapshot h2 {
    margin: 12px 0;
    font-family: var(--font-everett);
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 300;
    line-height: 1;
}

.project-snapshot ul {
    margin: 16px 0 0;
    padding-left: 18px;
    color: var(--stone);
    line-height: 1.8;
}

.chapters {
    display: grid;
    gap: 2px;
    padding-top: 0;
}

.chapter {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
    min-height: 520px;
    background: var(--white);
}

.chapter:nth-child(even) {
    grid-template-columns: minmax(300px, 0.8fr) minmax(0, 1.2fr);
}

.chapter:nth-child(even) .chapter-image {
    grid-column: 2;
}

.chapter:nth-child(even) div {
    grid-column: 1;
    grid-row: 1;
}

.chapter-image {
    position: relative;
    border: 0;
    padding: 0;
    background: var(--charcoal);
    color: var(--white);
    overflow: hidden;
}

.chapter-image span {
    position: absolute;
    right: 18px;
    bottom: 18px;
    z-index: 1;
    padding: 10px 12px;
    background: rgba(18, 22, 20, 0.78);
    font-size: 11px;
    text-transform: uppercase;
}

.chapter-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.chapter-image:hover img {
    transform: scale(1.035);
}

.chapter div {
    align-self: center;
    padding: clamp(28px, 6vw, 76px);
}

.chapter h2 {
    margin: 14px 0;
    font-family: var(--font-everett);
    font-size: clamp(40px, 6vw, 78px);
    font-weight: 300;
}

.quote {
    background: var(--moss);
    color: var(--white);
}

.quote blockquote {
    width: min(980px, 100%);
    margin: 0;
    font-family: var(--font-everett);
    font-size: clamp(34px, 6vw, 74px);
    line-height: 1.08;
}

.quote p {
    margin-top: 26px;
    color: rgba(255, 255, 255, 0.68);
}

.credits {
    display: grid;
    grid-template-columns: minmax(0, 0.8fr) minmax(320px, 1fr);
    gap: 56px;
}

.credit-list {
    border-top: 1px solid var(--line);
}

.credit-list p {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 24px;
    margin: 0;
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
}

.archive-hero {
    padding: 170px clamp(20px, 4vw, 56px) 70px;
    background: var(--charcoal);
    color: var(--white);
}

.archive-hero h1 {
    width: min(980px, 100%);
    font-size: clamp(46px, 8vw, 104px);
}

.archive-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 34px;
}

.archive-filters button {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.24);
}

.archive-filters button.is-active {
    background: var(--moss);
    border-color: var(--moss);
}

.archive-list {
    display: grid;
    gap: 1px;
    padding-top: 0;
    background: var(--line);
}

.archive-row {
    display: grid;
    grid-template-columns: 150px 80px minmax(220px, 1fr) minmax(160px, 0.6fr) 140px;
    gap: 24px;
    align-items: center;
    min-height: 130px;
    padding: 18px;
    background: var(--paper);
}

.archive-row:hover {
    background: var(--white);
}

.archive-row img {
    width: 150px;
    height: 96px;
    object-fit: cover;
}

.archive-row h2 {
    margin: 0;
    font-family: var(--font-everett);
    font-size: 34px;
    font-weight: 300;
}

.archive-row p,
.archive-row strong {
    margin: 0;
    color: var(--stone);
    font-size: 13px;
    font-weight: 400;
}

.more-projects {
    padding-top: 0;
}

.gallery-dialog {
    width: min(1100px, calc(100vw - 36px));
    max-height: calc(100svh - 36px);
    border: 0;
    padding: 0;
    background: var(--dark);
    color: var(--white);
}

.gallery-dialog::backdrop {
    background: rgba(0, 0, 0, 0.78);
}

.gallery-dialog img {
    width: 100%;
    max-height: calc(100svh - 110px);
    object-fit: contain;
    background: var(--dark);
}

.gallery-dialog p {
    margin: 0;
    padding: 16px 20px;
    color: rgba(255, 255, 255, 0.72);
}

.gallery-close {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 2;
    min-height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(18, 22, 20, 0.78);
    color: var(--white);
    text-transform: uppercase;
    font-size: 11px;
}

.admin {
    padding-top: 170px;
}

.admin-topbar {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
}

.admin-topbar form {
    display: block;
}

.admin-topbar-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.admin-client-link {
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 1px solid rgba(42, 85, 69, 0.34);
    color: var(--moss);
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.admin-client-link span {
    font-size: 18px;
    line-height: 1;
}

.admin-topbar button,
.admin-login-form button {
    min-height: 40px;
    border: 1px solid var(--moss);
    background: var(--moss);
    color: var(--white);
    padding: 10px 14px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.admin-login {
    min-height: 76svh;
}

.admin-login-form {
    width: min(430px, 100%);
    margin-top: 34px;
    padding: 28px;
    background: var(--charcoal);
}

.admin-login-form label {
    color: rgba(255, 255, 255, 0.66);
}

.admin-login-form .admin-remember {
    display: flex;
    grid-template-columns: none;
    align-items: center;
    gap: 10px;
    text-transform: none;
    letter-spacing: 0;
}

.admin-login-form .admin-remember input {
    width: auto;
    min-height: 0;
}

.admin-auth-switch {
    width: min(430px, 100%);
    margin: 16px 0 0;
    color: rgba(255, 255, 255, 0.64);
    font-size: 13px;
}

.admin-auth-switch a {
    color: var(--teal-bright);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.admin h2 {
    margin: 48px 0 18px;
    font-family: var(--font-everett);
    font-size: 42px;
    font-weight: 300;
}

.admin .notice {
    width: min(760px, 100%);
    margin: 18px 0 0;
}

.admin-editor-list {
    display: grid;
    gap: 12px;
}

.admin-editor {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.36);
}

.admin-editor summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 20px;
    cursor: pointer;
    list-style: none;
}

.admin-editor summary::-webkit-details-marker {
    display: none;
}

.admin-editor summary span {
    color: var(--ink);
    font-size: 18px;
    font-weight: 500;
}

.admin-editor summary small {
    color: var(--stone);
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-editor form {
    display: grid;
    gap: 16px;
    padding: 0 20px 22px;
}

.admin-form-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.admin-form-grid.service-grid {
    grid-template-columns: minmax(0, 1fr) 140px;
}

.admin-form-grid.news-grid {
    grid-template-columns: minmax(0, 1.4fr) 150px 150px minmax(0, 1fr);
}

.admin-form-grid.source-grid {
    grid-template-columns: 220px minmax(0, 1fr);
}

.admin-form-grid.about-grid-admin {
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.admin-editor label {
    color: var(--stone);
}

.admin-editor input,
.admin-editor select,
.admin-editor textarea {
    width: 100%;
    min-height: 40px;
    border: 1px solid rgba(18, 22, 20, 0.14);
    background: #fff;
    color: var(--ink);
    padding: 9px 10px;
    outline: none;
}

.admin-editor textarea {
    resize: vertical;
}

.admin-editor input:focus,
.admin-editor select:focus,
.admin-editor textarea:focus {
    border-color: var(--moss);
}

.admin-check {
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: none;
    letter-spacing: 0;
}

.admin-check input {
    width: auto;
    min-height: 0;
}

.admin-editor button {
    justify-self: start;
    min-height: 40px;
    border: 1px solid var(--moss);
    background: var(--moss);
    color: #fff;
    padding: 10px 16px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.admin-delete-form {
    padding: 0 20px 24px;
}

.admin-editor .admin-danger-button {
    border-color: var(--clay);
    background: var(--clay);
}

.admin-project-preview {
    display: grid;
    grid-template-columns: minmax(220px, 320px) minmax(0, 640px);
    gap: clamp(24px, 4vw, 54px);
    align-items: center;
    padding: 24px 20px 8px;
    background: rgba(244, 241, 235, 0.74);
}

.admin-project-preview-info {
    text-align: center;
}

.admin-project-preview-info .pl-mark {
    margin: 0 auto 18px;
}

.admin-project-preview-info h3 {
    margin: 0;
    color: var(--ink);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.admin-project-preview-info p {
    margin: 12px 0 0;
    color: var(--stone);
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.admin-project-preview-info small {
    display: block;
    margin-top: 18px;
    color: var(--moss);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.admin-project-preview-image {
    position: relative;
    display: block;
    margin: 0;
    aspect-ratio: 16 / 9;
    background: var(--mist);
    overflow: hidden;
    color: inherit;
}

.admin-project-preview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.admin-project-preview-image span {
    position: absolute;
    right: 12px;
    bottom: 12px;
    background: rgba(18, 22, 20, 0.78);
    color: #fff;
    padding: 7px 10px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-empty-project-preview .admin-project-preview-image {
    display: grid;
    place-items: center;
    border: 1px dashed rgba(18, 22, 20, 0.22);
}

.admin-empty-project-preview .admin-project-preview-image span {
    position: static;
    background: transparent;
    color: var(--stone);
}

.admin-chapter-manager {
    display: grid;
    gap: 12px;
    padding: 2px 20px 22px;
}

.admin-chapter-head {
    margin-top: 6px;
}

.admin-chapter-head h3 {
    margin: 0;
    color: var(--ink);
    font-size: 18px;
    font-weight: 500;
}

.admin-chapter-head p {
    max-width: 620px;
    margin: 6px 0 0;
    color: var(--stone);
    font-size: 14px;
}

.admin-slide-strip {
    display: flex;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-snap-type: none;
    padding: 4px 2px 16px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
    cursor: grab;
    touch-action: pan-y pan-x;
}

.admin-slide-strip::-webkit-scrollbar {
    display: none;
}

.admin-slide-strip:active,
.admin-slide-strip.is-dragging {
    cursor: grabbing;
}

.admin-slide-panel {
    flex: 0 0 min(640px, 76vw);
    min-height: 0;
    aspect-ratio: 16 / 9;
    border: 1px solid rgba(18, 22, 20, 0.12);
    background: #fff;
    color: var(--ink);
    overflow: hidden;
}

.admin-slide-hero {
    position: relative;
}

.admin-slide-hero img,
.admin-slide-plan img,
.admin-slide-plan iframe {
    width: 100%;
    height: 100%;
    border: 0;
    object-fit: cover;
}

.admin-slide-plan iframe {
    filter: grayscale(1);
}

.admin-slide-hero span {
    position: absolute;
    left: 14px;
    bottom: 14px;
    background: rgba(18, 22, 20, 0.76);
    color: #fff;
    padding: 6px 9px;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.admin-slide-copy,
.admin-slide-empty {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 28px;
}

.admin-slide-copy span,
.admin-slide-plan span {
    color: var(--stone);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.admin-slide-panel h4 {
    margin: 12px 0;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.2;
}

.admin-slide-panel p {
    margin: 0;
    color: var(--stone);
    font-size: 15px;
    line-height: 1.55;
}

.admin-slide-plan {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(220px, 0.85fr);
}

.admin-slide-plan figure {
    margin: 0;
    min-height: 0;
    aspect-ratio: 16 / 9;
}

.admin-slide-plan div {
    padding: 24px;
}

.admin-slide-empty {
    align-items: flex-start;
    border-style: dashed;
    background: rgba(244, 241, 235, 0.76);
}

.admin-slide-empty > span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--moss);
    color: var(--moss);
    font-size: 28px;
    line-height: 1;
}

.admin-sub-editor {
    border: 1px solid rgba(18, 22, 20, 0.12);
    background: rgba(255, 255, 255, 0.5);
}

.admin-sub-editor summary {
    padding: 14px 16px;
}

.admin-sub-editor summary span {
    font-size: 15px;
}

.admin-sub-editor form {
    display: grid;
    gap: 14px;
    padding: 0 16px 16px;
}

.admin-form-grid.chapter-grid {
    grid-template-columns: 100px 220px minmax(0, 1fr);
}

.admin-table {
    display: grid;
    gap: 1px;
    background: var(--line);
}

.admin-table article,
.admin-table > p {
    background: var(--paper);
    padding: 20px;
}

.admin-table strong,
.admin-table span,
.admin-table small {
    display: block;
}

.admin-table span,
.admin-table small {
    color: var(--stone);
}

.news-page {
    background: #fff;
    color: #111;
}

.news-index {
    min-height: 100svh;
    padding: 72px 28px 96px;
    background: #fff;
    color: #111;
}

.news-index h1 {
    margin: 0 0 92px 118px;
    font-family: var(--font-everett);
    font-size: clamp(72px, 8vw, 138px);
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: 0;
}

.news-layout {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 52px;
}

.news-cats {
    position: sticky;
    top: 92px;
    align-self: start;
    display: grid;
    gap: 22px;
    padding-top: 6px;
}

.news-cats a {
    color: #888;
    font-size: 16px;
    font-weight: 400;
    text-transform: uppercase;
}

.news-cats a.active {
    color: #111;
}

.news-cats a.active::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    margin-right: 7px;
    background: #111;
    vertical-align: 1px;
}

.news-list {
    display: grid;
    gap: 88px;
}

.news-item {
    display: grid;
    grid-template-columns: 96px minmax(340px, 600px) minmax(280px, 560px);
    gap: 32px;
    align-items: start;
}

.news-item time {
    color: #888;
    font-size: 16px;
}

.news-item figure {
    min-height: 320px;
    margin: 0;
    display: grid;
    place-items: center;
    background: var(--mist);
    overflow: hidden;
}

.news-item figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item figure span {
    color: var(--stone);
    font-size: 44px;
    letter-spacing: 0.08em;
}

.news-copy h2 {
    margin: 0 0 32px;
    font-family: var(--font-everett);
    font-size: 21px;
    font-weight: 400;
    line-height: 1.42;
    text-transform: uppercase;
}

.news-copy p {
    margin: 0 0 32px;
    color: var(--stone);
    font-size: 21px;
    line-height: 1.43;
}

.news-copy a,
.news-copy span {
    color: #111;
    font-size: 18px;
    font-weight: 500;
}

.news-empty {
    margin: 0;
    color: #888;
    font-size: 20px;
}

.contact-index {
    min-height: 100svh;
    padding: 72px clamp(28px, 7vw, 150px) 96px;
    background: var(--white);
    color: var(--ink);
}

.contact-index h1 {
    margin: 0 0 92px;
    font-family: var(--font-everett);
    font-size: clamp(72px, 8vw, 138px);
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: 0;
}

.contact-index-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1px;
    background: var(--mist);
}

.contact-index-grid article {
    min-height: 240px;
    padding: 34px;
    background: var(--white);
}

.contact-index-grid span {
    display: block;
    margin-bottom: 28px;
    color: #888;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.contact-index-grid a,
.contact-index-grid p {
    margin: 0;
    color: #111;
    font-size: clamp(24px, 2.6vw, 42px);
    line-height: 1.15;
}

.footer {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 1.2fr);
    gap: 56px;
    padding: 56px clamp(20px, 4vw, 56px);
    background: var(--dark);
    color: var(--white);
}

.footer h2 {
    margin: 0 0 12px;
    font-family: var(--font-everett);
    font-size: 46px;
    font-weight: 300;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.footer a,
.footer p {
    display: block;
    margin: 9px 0;
    color: rgba(255, 255, 255, 0.68);
}

@media (max-width: 920px) {
    .menu-toggle {
        display: grid;
    }

    .site-nav {
        position: absolute;
        left: 20px;
        right: 20px;
        top: 74px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        background: rgba(18, 22, 20, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .side-menu {
        left: 20px;
        right: 20px;
        top: 74px;
        width: auto;
        padding: 16px 18px;
        background: rgba(18, 22, 20, 0.96);
        border: 1px solid rgba(255, 255, 255, 0.12);
    }

    .side-menu a {
        width: 100%;
        font-size: 16px;
    }

    .big-header {
        align-items: center;
        padding-top: 16px;
    }

    .site-nav {
        background: var(--white);
        border-color: var(--line);
    }

    .site-nav a {
        color: var(--ink);
    }

    .big-white-page .side-menu {
        left: 20px;
        right: 20px;
        top: 74px;
        background: var(--white);
        border-color: var(--line);
    }

    .big-category-panel {
        display: none !important;
    }

    .big-index {
        padding-top: 110px;
    }

    .big-project-list {
        width: min(640px, 100%);
        gap: 38px;
    }

    .big-project-row {
        grid-template-columns: 150px minmax(0, 430px);
        gap: 28px;
    }

    .big-project-info h2 {
        font-size: 18px;
    }

    .big-project-info p {
        font-size: 13px;
    }

    .big-project-image,
    .big-project-row:nth-child(2n) .big-project-image {
        width: min(100%, 430px);
        height: 260px;
    }

    .big-info-band {
        grid-template-columns: 1fr;
    }

    .big-project-wide {
        grid-template-columns: 1fr;
        min-height: 0;
        padding: 24px 20px 58px;
        overflow: visible;
    }

    .big-project-sidebar {
        position: static;
        top: auto;
        align-self: auto;
        width: 100%;
        height: auto;
        min-height: 0;
        padding: 0 0 22px;
        display: block;
        text-align: left;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .big-subnav {
        position: static;
        top: auto;
        z-index: auto;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .big-project-sidebar .project-place {
        margin-bottom: 28px;
    }

    .big-project-sidebar dl {
        width: min(520px, 100%);
        grid-template-columns: 110px 1fr;
        gap: 12px 18px;
        text-align: left;
    }

    .big-project-sidebar dd {
        margin: 0;
    }

    .big-share {
        margin-top: 28px;
    }

    .project-slide-controls,
    .project-slide-progress {
        display: none;
    }

    .big-wide-track {
        height: auto;
        min-height: 0;
        display: grid;
        gap: 34px;
        overflow: visible;
        scroll-snap-type: none;
        padding-top: 28px;
    }

    .project-slide,
    .project-slide-copy,
    .project-slide-facts,
    .project-slide-credits {
        width: 100%;
        min-width: 0;
        min-height: 0;
        height: auto;
        display: grid;
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 0;
        opacity: 1;
        transform: none;
    }

    .wide-media {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .wide-copy,
    .wide-copy.small,
    .wide-credits {
        width: 100%;
    }

    .wide-copy p,
    .wide-copy.small p {
        font-size: 16px;
        line-height: 1.38;
    }

    .wide-copy h2,
    .wide-credits h2 {
        font-size: 24px;
        line-height: 1.14;
    }

    .project-facts-slide dl,
    dl.project-facts-slide {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .project-facts-slide dt,
    dl.project-facts-slide dt {
        margin-top: 10px;
    }

    .wide-credits p {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .project-horizontal-page {
        overflow: auto;
    }

    .horizontal-project {
        height: auto;
        min-height: 100svh;
        grid-template-columns: 1fr;
    }

    .horizontal-project-sidebar {
        height: auto;
        position: relative;
        grid-template-rows: auto;
        gap: 24px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .horizontal-facts {
        align-self: auto;
    }

    .horizontal-track {
        height: auto;
        display: grid;
        overflow: visible;
        scroll-snap-type: none;
    }

    .horizontal-panel,
    .horizontal-image-panel,
    .horizontal-text-panel,
    .horizontal-chapter-panel,
    .horizontal-credits-panel,
    .horizontal-more-panel {
        width: 100%;
        height: auto;
        min-height: 0;
    }

    .horizontal-image-panel,
    .horizontal-text-panel,
    .horizontal-chapter-panel,
    .horizontal-credits-panel,
    .horizontal-more-panel {
        padding: 20px;
    }

    .horizontal-image-panel img,
    .horizontal-chapter-panel img {
        height: auto;
        aspect-ratio: 16 / 9;
    }

    .horizontal-chapter-panel {
        grid-template-columns: 1fr;
    }

    .site-header.is-open .site-nav {
        display: flex;
    }

    .site-nav a {
        padding: 15px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-action {
        border: 0;
    }

    .hero-facts,
    .project-meta,
    .service-grid,
    .process-grid,
    .admin-metrics,
    .project-grid,
    .project-grid.three,
    .studio-band,
    .brand-system,
    .brand-system-cards,
    .contact,
    .credits,
    .project-snapshot,
    .footer,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-facts {
        left: 20px;
        right: 20px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .hero-content {
        padding-bottom: 190px;
    }

    .project-card,
    .project-card.large {
        min-height: 420px;
    }

    .chapter,
    .chapter:nth-child(even) {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .chapter-image,
    .chapter:nth-child(even) .chapter-image {
        grid-column: auto;
        height: 360px;
    }

    .chapter:nth-child(even) div {
        grid-column: auto;
        grid-row: auto;
    }

    .archive-row {
        grid-template-columns: 110px 1fr;
    }

    .archive-row img {
        width: 110px;
        height: 86px;
        grid-row: span 4;
    }
}

@media (max-width: 620px) {
    .site-header {
        padding: 16px 18px;
    }

    .brand {
        min-width: 0;
    }

    .brand small {
        display: none;
    }

    .big-project-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .big-project-info {
        text-align: left;
        display: grid;
        grid-template-columns: 54px 1fr;
        gap: 14px;
        align-items: center;
    }

    .big-project-icon {
        width: 48px;
        height: 48px;
        margin: 0;
        grid-row: span 2;
    }

    .big-project-icon img {
        width: 36px;
        height: 36px;
    }

    .big-project-info p {
        margin-top: 2px;
    }

    .big-project-image,
    .big-project-row:nth-child(2n) .big-project-image {
        width: 100%;
        height: 220px;
    }

    .hero h1,
    .project-title-block h1 {
        font-size: clamp(58px, 22vw, 92px);
    }

    .hero-facts {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-bottom: 260px;
    }

    .section-head,
    .form-row,
    .contact dl,
    .credit-list p {
        grid-template-columns: 1fr;
    }

    .archive-row {
        grid-template-columns: 1fr;
        padding: 0;
    }

    .archive-row img {
        width: 100%;
        height: 220px;
        grid-row: auto;
    }

    .archive-row span,
    .archive-row h2,
    .archive-row p,
    .archive-row strong {
        padding-left: 18px;
        padding-right: 18px;
    }

    .archive-row strong {
        padding-bottom: 18px;
    }
}

.wia-index {
    padding: 118px clamp(18px, 3vw, 44px) 80px;
    background: var(--paper);
}

.wia-project-list {
    width: min(980px, 100%);
    margin: 0 auto;
    display: grid;
    gap: 0;
}

.wia-project-row {
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 0 52px;
    align-items: start;
    padding: 44px 0;
    border-bottom: 1px solid var(--line);
    color: var(--ink);
    text-decoration: none;
    transition: background 0.2s ease;
}

.wia-project-row:first-child {
    border-top: 1px solid var(--line);
}

.wia-project-row:hover .wia-project-fig img {
    transform: scale(1.024);
    opacity: 0.92;
}

.wia-project-meta {
    text-align: right;
    padding-top: 4px;
}

.wia-project-mark {
    display: inline-grid;
    place-items: center;
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
    background: var(--charcoal);
}

.wia-project-mark img {
    width: 38px;
    height: 38px;
    filter: invert(1);
}

.wia-project-title {
    margin: 0;
    font-family: var(--font-everett);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
    color: var(--ink);
}

.wia-project-loc {
    margin: 7px 0 0;
    color: var(--stone);
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.wia-project-fig {
    margin: 0;
    width: min(62vw, 740px);
    overflow: hidden;
}

.wia-project-fig img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background: var(--mist);
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94),
        opacity 0.55s ease;
}

.wia-project-row:nth-child(2n) .wia-project-fig img {
    aspect-ratio: 16 / 9;
}

@media (max-width: 860px) {
    .wia-index {
        padding-top: 110px;
    }

    .wia-project-row {
        grid-template-columns: 150px minmax(0, 1fr);
        gap: 0 28px;
        padding: 32px 0;
    }

    .wia-project-fig {
        width: 100%;
    }

    .wia-project-title {
        font-size: 13px;
    }
}

@media (max-width: 560px) {
    .wia-project-row {
        grid-template-columns: 1fr;
        gap: 16px 0;
        padding: 28px 0;
    }

    .wia-project-meta {
        text-align: left;
        display: grid;
        grid-template-columns: 46px 1fr;
        gap: 0 12px;
        align-items: center;
    }

    .wia-project-mark {
        width: 46px;
        height: 46px;
        margin-bottom: 0;
        grid-row: span 2;
    }

    .wia-project-title {
        font-size: 14px;
        align-self: end;
    }

    .wia-project-loc {
        margin: 0;
        align-self: start;
    }

    .wia-project-fig {
        width: 100%;
    }
}

.wia-index-page {
    background: #fff;
    color: #111;
    font-size: 13px;
    line-height: 1.5;
}

.wia-index-page .site-header.big-header,
.wia-index-page .subnav,
.wia-index-page .filter-bar,
.wia-index-page .pl {
    transition:
        opacity 0.72s cubic-bezier(0.77, 0, 0.175, 1),
        transform 0.92s cubic-bezier(0.77, 0, 0.175, 1);
}

.wia-index-page.wia-intro-active .site-header.big-header,
.wia-index-page.wia-intro-active .subnav,
.wia-index-page.wia-intro-active .filter-bar,
.wia-index-page.wia-intro-active .pl {
    opacity: 0;
    transform: translateX(24px);
    pointer-events: none;
}

.wia-splash {
    --wia-intro-x: 36px;
    --wia-intro-y: 28px;
    position: fixed;
    inset: 0;
    z-index: 1000;
    background: #000;
    color: #fff;
    will-change: opacity, visibility;
    transition:
        opacity 0.7s cubic-bezier(0.77, 0, 0.175, 1),
        visibility 0.7s;
}

.wia-splash span {
    position: fixed;
    left: 50%;
    top: 50%;
    font-family: var(--font-everett);
    font-size: clamp(38px, 5vw, 68px);
    font-weight: 700;
    letter-spacing: 0.03em;
    line-height: 1;
    transform: translate(-50%, -50%);
    transform-origin: left center;
    will-change: transform, font-size;
    transition:
        transform 1.05s cubic-bezier(0.77, 0, 0.175, 1),
        font-size 1.05s cubic-bezier(0.77, 0, 0.175, 1),
        letter-spacing 1.05s cubic-bezier(0.77, 0, 0.175, 1),
        color 0.36s ease 0.48s;
}

.wia-splash span::after {
    content: "";
    position: absolute;
    left: 0;
    top: 1px;
    width: 26px;
    height: 2px;
    background: #fff;
    box-shadow:
        0 7px 0 #fff,
        0 14px 0 #fff;
    opacity: 0;
    transform: scaleX(0.4);
    transform-origin: left center;
    transition:
        opacity 0.28s ease 0.5s,
        transform 0.42s cubic-bezier(0.77, 0, 0.175, 1) 0.5s;
}

.wia-splash.is-settling span {
    color: transparent;
    font-size: 18px;
    letter-spacing: 0.04em;
    transform: translate(calc(-50vw + var(--wia-intro-x)), calc(-50vh + var(--wia-intro-y)));
}

.wia-splash.is-settling span::after {
    opacity: 1;
    transform: scaleX(1);
}

.wia-splash.is-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.wia-index-page .site-header.big-header {
    position: sticky;
    top: 0;
    z-index: 110;
    height: 56px;
    align-items: center;
    padding: 0 36px;
    background: var(--white);
    color: var(--ink);
    border-bottom: 0;
}

.wia-index-page .site-header.is-menu-open {
    background: var(--white);
    border-color: transparent;
    backdrop-filter: none;
}

.wia-index-page .side-menu-dropdown {
    width: 26px;
    flex: 0 0 26px;
    order: 1;
    margin-left: 0;
}

.wia-index-page .menu-toggle {
    position: relative;
    width: 26px;
    height: 20px;
    gap: 5px;
    opacity: 0.72;
    transition: opacity 0.2s, transform 0.2s;
}

.wia-index-page .menu-toggle::before {
    content: "WIA";
    position: absolute;
    left: 0;
    top: 50%;
    color: var(--ink);
    font-family: var(--font-everett);
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 0.04em;
    line-height: 1;
    opacity: 0;
    transform: translateY(calc(-50% + 5px));
    transition:
        opacity 0.28s ease,
        transform 0.34s cubic-bezier(0.77, 0, 0.175, 1);
}

.wia-index-page .menu-toggle span,
.wia-index-page .menu-toggle span {
    width: 26px;
    height: 2px;
    background: currentColor;
    transition:
        transform 0.34s cubic-bezier(0.77, 0, 0.175, 1),
        opacity 0.24s ease;
}

.wia-index-page .menu-toggle:hover,
.wia-index-page .side-menu-dropdown[open] .menu-toggle {
    opacity: 1;
}

.wia-index-page .menu-toggle:hover::before,
.wia-index-page .menu-toggle:focus-visible::before,
.wia-index-page .site-header.is-brand-peek .menu-toggle::before {
    opacity: 1;
    transform: translateY(-50%);
}

.wia-index-page .menu-toggle:hover span,
.wia-index-page .menu-toggle:focus-visible span,
.wia-index-page .site-header.is-brand-peek .menu-toggle span {
    opacity: 0;
    transform: translateX(-4px);
}

.wia-index-page .side-menu-dropdown[open] .menu-toggle::before {
    opacity: 0;
    transform: translateY(calc(-50% - 5px));
}

.wia-index-page .side-menu-dropdown[open] .menu-toggle span:nth-child(1) {
    opacity: 1;
    transform: translateY(7px) rotate(45deg);
}

.wia-index-page .side-menu-dropdown[open] .menu-toggle span:nth-child(2) {
    opacity: 0;
}

.wia-index-page .side-menu-dropdown[open] .menu-toggle span:nth-child(3) {
    opacity: 1;
    transform: translateY(-7px) rotate(-45deg);
}

.wia-index-page .big-header .brand {
    display: none;
    min-width: 0;
    order: 2;
    margin-left: 0;
    margin-right: auto;
}

.wia-index-page .brand-mark {
    display: none;
}

.wia-index-page .brand strong {
    display: block;
    color: transparent;
    font-family: var(--font-everett);
    font-size: 0;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.04em;
    transition: transform 0.22s ease, opacity 0.22s ease;
}

.wia-index-page .brand strong::before {
    content: "WIA";
    color: var(--ink);
    font-size: 18px;
}

.wia-index-page .site-header:has(.side-menu-dropdown[open]) .brand strong {
    opacity: 0.28;
    transform: translateX(8px);
}

.wia-index-page .brand small {
    display: none;
}

.wia-index-page .site-nav {
    position: absolute;
    left: 280px;
    right: 42px;
    width: auto;
    display: flex;
    gap: clamp(18px, 3vw, 52px);
    justify-content: space-between;
    transform: none;
    font-size: 10.5px;
    letter-spacing: 0.14em;
}

.wia-index-page .site-nav a {
    color: rgba(31, 33, 29, 0.58);
}

.wia-index-page .site-nav a:hover,
.wia-index-page .site-nav a.active {
    color: var(--ink);
}

.wia-index-page .site-nav a.admin-nav-access {
    color: var(--moss);
    border-color: rgba(64, 89, 76, 0.34);
    background: rgba(64, 89, 76, 0.08);
    padding: 9px 13px;
}

.wia-index-page .site-nav a.active {
    position: relative;
}

.wia-index-page .site-nav a.active::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -4px;
    height: 1px;
    background: var(--teal-bright);
}

.wia-index-page .nav-search {
    position: fixed;
    right: 36px;
    top: 19px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: rgba(31, 33, 29, 0.58);
}

.wia-index-page .nav-search::before {
    width: 13px;
    height: 13px;
    margin-right: 0;
    border-color: var(--teal-bright);
    vertical-align: 0;
}

.wia-index-page .nav-search::after {
    display: none;
}

.wia-index-page .side-menu {
    position: fixed;
    left: 0;
    top: 56px;
    z-index: 200;
    width: 260px;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 28px 32px 32px;
    background: var(--white);
    border-right: 1px solid rgba(31, 33, 29, 0.09);
    border-bottom: 1px solid rgba(31, 33, 29, 0.09);
    color: rgba(31, 33, 29, 0.62);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.18s, transform 0.18s;
}

.wia-index-page .side-menu-dropdown[open] .side-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
}

.wia-index-page .side-menu a {
    width: 100%;
    padding: 7px 0;
    color: inherit;
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.1em;
    line-height: 1.5;
}

.wia-index-page .side-menu a:hover {
    color: var(--ink);
}

.filter-bar {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 14px 36px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.filter-bar.visible {
    display: flex;
}

.filter-bar span {
    color: var(--stone);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.filter-bar strong {
    color: #111;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.filter-clear {
    border-bottom: 1px solid var(--stone);
    padding-bottom: 1px;
    color: var(--stone);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.subnav {
    display: none;
    align-items: center;
    justify-content: center;
    gap: 48px;
    height: 40px;
    background: var(--paper);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.subnav.visible {
    display: flex;
}

.subnav a {
    position: relative;
    color: rgba(0, 0, 0, 0.45);
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.06em;
}

.subnav a:hover,
.subnav a.active {
    color: #111;
}

.subnav a.active::before {
    content: "";
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 5px;
    background: #111;
    vertical-align: 1px;
}

body.pl-detail-active {
    overflow: visible;
}

.pl {
    background: #fff;
}

.pl-row {
    display: grid;
    grid-template-columns: minmax(220px, 320px) 32px 430px;
    align-items: start;
    width: min(calc(100vw - 72px), 980px);
    margin: 0 auto;
    padding: 48px 0;
    color: #111;
    max-height: 560px;
    overflow: hidden;
    scroll-margin-top: 88px;
    transition:
        opacity 0.42s cubic-bezier(.77, 0, .175, 1),
        max-height 0.62s cubic-bezier(.77, 0, .175, 1),
        padding 0.62s cubic-bezier(.77, 0, .175, 1);
}

.pl-row.hidden {
    display: none;
}

.pl-row.is-expanded {
    max-height: 0;
    padding-top: 0;
    padding-bottom: 0;
    opacity: 0;
    pointer-events: none;
}

.pl-row:hover .pl-img img {
    transform: none;
}

.pl-info {
    grid-column: 1;
    text-align: right;
}

.pl-mark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 14px;
    background: var(--charcoal);
}

.pl-mark img {
    width: 30px;
    height: 30px;
    filter: invert(1);
}

.pl-name {
    margin: 0;
    color: #111;
    font-family: var(--font-everett);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.pl-place {
    margin: 5px 0 0;
    color: var(--stone);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pl-tag {
    display: inline-block;
    margin-top: 10px;
    color: var(--teal-bright);
    font-size: 8.5px;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.pl-img {
    grid-column: 3;
    margin: 0;
    width: 430px;
    height: 260px;
    overflow: hidden;
    background: transparent;
}

.pl-img img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: auto;
    object-fit: cover;
    background: var(--mist);
    transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.wia-index-page .footer {
    display: none;
}

.wia-index-page .footer h2 {
    margin: 0 0 5px;
    color: rgba(255, 255, 255, 0.6);
    font-family: var(--font-everett);
    font-size: 20px;
    font-weight: 300;
}

.wia-index-page .footer p {
    margin: 0;
    color: rgba(255, 255, 255, 0.38);
    font-size: 11px;
    line-height: 1.7;
}

.wia-index-page .footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.wia-index-page .footer span {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.2);
    font-size: 8.5px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.wia-index-page .footer a {
    display: block;
    margin: 0 0 7px;
    color: rgba(255, 255, 255, 0.38);
    font-size: 11px;
    transition: color 0.15s;
}

.wia-index-page .footer a:hover {
    color: var(--teal-bright);
}

.pl-row:nth-child(even) .pl-img img {
    aspect-ratio: auto;
}

.about-studio {
    padding: 72px clamp(28px, 7vw, 150px) 92px;
    background: #fff;
    color: #111;
}

.about-kicker {
    margin: 0 0 52px;
    color: #777;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.about-studio h1 {
    margin: 0 0 96px;
    font-family: var(--font-everett);
    font-size: clamp(72px, 8vw, 138px);
    font-weight: 400;
    line-height: 0.86;
    letter-spacing: 0;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: clamp(42px, 9vw, 160px);
    margin-bottom: 72px;
}

.about-grid p {
    margin: 0 0 30px;
    font-size: clamp(20px, 1.6vw, 25px);
    line-height: 1.35;
}

.about-signature {
    margin-top: 42px;
}

.about-media {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 28px;
    margin: 0 0 72px;
}

.about-media figure {
    min-height: 360px;
    margin: 0;
    background: var(--mist);
    overflow: hidden;
}

.about-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-practice {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    border-top: 1px solid rgba(0, 0, 0, 0.14);
    border-left: 1px solid rgba(0, 0, 0, 0.14);
}

.about-practice article {
    min-height: 260px;
    padding: 24px;
    border-right: 1px solid rgba(0, 0, 0, 0.14);
    border-bottom: 1px solid rgba(0, 0, 0, 0.14);
}

.about-practice span {
    display: block;
    margin-bottom: 28px;
    color: #888;
    font-size: 12px;
}

.about-practice h2 {
    margin: 0 0 18px;
    font-family: var(--font-everett);
    font-size: 19px;
    font-weight: 400;
}

.about-practice p {
    margin: 0;
    color: #747474;
    font-size: 15px;
    line-height: 1.5;
}

.pl-detail {
    --pl-detail-image-width: 860px;
    --pl-detail-image-height: 560px;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    width: min(1720px, calc(100vw - 40px));
    height: auto;
    min-height: calc(var(--pl-detail-image-height) + 72px);
    margin: 28px auto 72px;
    padding: clamp(20px, 3vw, 36px);
    background: #fff;
    color: #111;
    box-sizing: border-box;
    overflow-y: visible;
    overscroll-behavior: auto;
    opacity: 0;
    visibility: visible;
    pointer-events: none;
    clip-path: inset(0 100% 0 0);
    transform: translateY(12px);
    transition:
        opacity 0.52s cubic-bezier(.77, 0, .175, 1),
        clip-path 0.78s cubic-bezier(.77, 0, .175, 1),
        transform 0.78s cubic-bezier(.77, 0, .175, 1);
}

.pl-detail.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    clip-path: inset(0);
    transform: translateY(0);
    transition:
        opacity 0.52s cubic-bezier(.77, 0, .175, 1),
        clip-path 0.78s cubic-bezier(.77, 0, .175, 1),
        transform 0.78s cubic-bezier(.77, 0, .175, 1);
}

.pl-detail.is-closing {
    opacity: 0;
    pointer-events: none;
    clip-path: inset(0 100% 0 0);
    transform: translateY(-12px);
}

.pl-detail-progress {
    display: none;
}

.pl-detail-side {
    align-self: start;
    min-height: 0;
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    justify-items: start;
    text-align: left;
    padding-top: 0;
}

.pl-detail-side .pl-mark {
    margin: 0 0 28px;
}

.pl-detail-side h2 {
    margin: 0;
    font-family: var(--font-everett);
    font-size: 22px;
    font-weight: 400;
    line-height: 1.16;
}

.pl-detail-side > p {
    margin: 12px 0 54px;
    color: #777;
    font-size: 15px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pl-detail-side dl {
    width: 100%;
    margin: 0;
    display: grid;
    gap: 12px 18px;
}

.pl-detail-side dt {
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
}

.pl-detail-side dd {
    margin: -8px 0 0;
    color: #111;
    font-size: 15px;
    line-height: 1.18;
    text-transform: uppercase;
}

.pl-detail-actions {
    align-self: end;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 42px;
}

.pl-detail-actions span {
    flex-basis: 100%;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
}

.pl-detail-actions button,
.pl-detail-actions a {
    min-height: 28px;
    border: 0;
    background: #111;
    color: #fff;
    padding: 7px 8px;
    font-size: 10px;
    text-transform: uppercase;
}

.pl-view-all-projects {
    display: none;
}

.pl-detail-main {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: auto;
    min-height: var(--pl-detail-image-height);
    display: flex;
    align-items: flex-start;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: none;
    scroll-behavior: auto;
    scroll-padding-inline: 0;
    padding: 0;
    overscroll-behavior-inline: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    cursor: grab;
    touch-action: pan-y pan-x;
}

.pl-detail-main::-webkit-scrollbar {
    display: none;
}

.pl-detail-main:active,
.pl-detail-main.is-dragging {
    cursor: grabbing;
}

.big-wide-track.is-dragging *,
.admin-slide-strip.is-dragging *,
.pl-detail-main.is-dragging * {
    user-select: none;
}

.pl-detail-main figure {
    margin: 0;
    background: var(--mist);
    overflow: hidden;
}

.pl-detail-main img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transform: none;
    transition: transform 0.7s ease;
}

.pl-detail-panel:hover img {
    transform: none;
}

.pl-detail-panel {
    --pl-detail-image-width: 860px;
    --pl-detail-image-height: 560px;
    flex: 0 0 auto;
    width: max-content;
    max-width: none;
    height: auto;
    display: flex;
    align-items: start;
    justify-content: center;
    padding: 0 clamp(14px, 2vw, 32px);
    box-sizing: border-box;
}

.pl-detail-image-copy {
    height: 100%;
    display: grid;
    grid-template-columns: minmax(0, 920px) minmax(240px, 360px);
    gap: clamp(24px, 2.4vw, 40px);
    align-items: start;
    margin: 0 auto;
}

.pl-detail-panel-hero {
    width: max-content;
    height: auto;
    display: grid;
    grid-template-columns: minmax(180px, 240px) var(--pl-detail-image-width) minmax(220px, 340px);
    gap: clamp(24px, 2.4vw, 40px);
    align-items: start;
    margin: 0 auto;
}

.pl-detail-hero {
    width: var(--pl-detail-image-width);
    height: var(--pl-detail-image-height);
    align-self: start;
}

.pl-detail-image {
    width: var(--pl-detail-image-width);
    height: var(--pl-detail-image-height);
    align-self: start;
}

.pl-detail-copy {
    align-self: start;
    max-height: 100%;
    overflow: hidden;
    padding-right: 0;
}

.pl-detail-story {
    width: max-content;
    height: auto;
    display: grid;
    grid-template-columns: minmax(240px, 360px) var(--pl-detail-image-width);
    gap: clamp(24px, 2.4vw, 40px);
    align-items: start;
    margin: 0 auto;
}

.pl-detail-map-panel {
    display: grid;
    grid-template-columns: minmax(240px, 360px) var(--pl-detail-image-width);
    gap: clamp(24px, 2.4vw, 40px);
    align-items: start;
}

.pl-detail-map {
    width: var(--pl-detail-image-width);
    height: var(--pl-detail-image-height);
    background: var(--mist);
}

.pl-detail-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1);
}

.pl-detail-credits-panel {
    width: min(920px, calc(100vw - 96px));
    justify-content: flex-start;
}

.pl-detail-credits {
    width: min(860px, 100%);
    padding: 8px 0;
}

.pl-detail-credits h2 {
    margin: 0 0 32px;
    font-family: var(--font-everett);
    font-size: 22px;
    font-weight: 400;
}

.pl-detail-credits dl {
    margin: 0;
    display: grid;
    gap: 12px;
}

.pl-detail-credits div {
    display: grid;
    grid-template-columns: minmax(150px, 220px) minmax(0, 1fr);
    gap: 22px;
    align-items: baseline;
    margin: 0;
}

.pl-detail-credits dt {
    margin: 0;
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
}

.pl-detail-credits dd {
    margin: 0;
    color: #111;
    font-size: 18px;
    line-height: 1.38;
}

.pl-detail-story > article {
    align-self: start;
    max-height: 100%;
    overflow: hidden;
}

.pl-detail-copy span,
.pl-detail-story span,
.pl-detail-map-panel span,
.pl-detail-credits span {
    display: block;
    margin-bottom: 18px;
    color: #888;
    font-size: 11px;
    text-transform: uppercase;
}

.pl-detail-copy p,
.pl-detail-story p,
.pl-detail-map-panel p,
.pl-detail-credits p {
    margin: 0;
    font-family: var(--font-everett);
    font-size: 16px;
    line-height: 1.45;
}

.pl-viewer-open {
    overflow: hidden;
}

.pl-image-viewer {
    position: fixed;
    inset: 0;
    z-index: 500;
    display: none;
    background: #fff;
    color: #111;
}

.pl-image-viewer.open {
    display: block;
}

.pl-viewer-close {
    position: fixed;
    right: 32px;
    top: 24px;
    z-index: 3;
    min-height: 32px;
    border: 0;
    background: #111;
    color: #fff;
    padding: 8px 12px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pl-viewer-track {
    height: 100svh;
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
}

.pl-viewer-track::-webkit-scrollbar {
    display: none;
}

.pl-viewer-panel {
    height: 100svh;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.pl-viewer-hero-panel {
    width: max(1320px, 100vw);
    display: grid;
    grid-template-columns: 300px minmax(720px, 1fr) 360px;
    gap: 64px;
    padding: 56px 0 28px 0;
    background: #fff;
}

.pl-viewer-side {
    display: grid;
    grid-template-rows: auto auto auto 1fr auto;
    justify-items: center;
    text-align: center;
    padding: 0 28px 0 36px;
}

.pl-viewer-side .pl-mark {
    margin-bottom: 36px;
}

.pl-viewer-side h2 {
    margin: 0;
    font-family: var(--font-everett);
    font-size: 24px;
    font-weight: 400;
    line-height: 1.15;
}

.pl-viewer-side > p {
    margin: 14px 0 72px;
    color: #777;
    font-size: 17px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.pl-viewer-side dl {
    display: grid;
    gap: 21px;
    margin: 0;
}

.pl-viewer-side dt {
    color: #888;
    font-size: 13px;
    text-transform: uppercase;
}

.pl-viewer-side dd {
    margin: -14px 0 0;
    color: #111;
    font-size: 16px;
    line-height: 1.18;
    text-transform: uppercase;
}

.pl-viewer-share {
    align-self: end;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
}

.pl-viewer-share span {
    flex-basis: 100%;
    color: #888;
    font-size: 12px;
    text-transform: uppercase;
}

.pl-viewer-share button {
    min-height: 28px;
    border: 0;
    background: #111;
    color: #fff;
    padding: 7px 8px;
    font-size: 10px;
    text-transform: uppercase;
}

.pl-viewer-hero-image,
.pl-viewer-story-image {
    margin: 0;
    overflow: hidden;
    background: var(--mist);
}

.pl-viewer-hero-image img,
.pl-viewer-story-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.pl-viewer-intro {
    overflow: hidden;
    padding: 0 36px 0 0;
}

.pl-viewer-intro p,
.pl-viewer-story-copy p {
    margin: 0;
    font-family: var(--font-everett);
    font-size: 22px;
    line-height: 1.1;
}

.pl-viewer-story {
    width: max(1160px, 76vw);
    display: grid;
    grid-template-columns: 340px minmax(620px, 1fr);
    gap: 64px;
    padding: 46px 56px;
    background: #fff;
}

.pl-viewer-story-copy {
    align-self: start;
}

.pl-viewer-story-copy span,
.pl-viewer-info span {
    margin-bottom: 18px;
    color: #888;
    font-size: 10px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.pl-viewer-story-copy span {
    display: block;
}

.pl-viewer-story-image {
    aspect-ratio: 16 / 9;
    height: auto;
}

.pl-viewer-info {
    width: min(520px, 88vw);
    flex-basis: min(520px, 88vw);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 72px 44px;
    background: #fff;
    border-left: 1px solid rgba(0, 0, 0, 0.08);
}

.pl-viewer-info span {
    display: block;
}

.pl-viewer-info h2 {
    margin: 0 0 20px;
    font-family: var(--font-everett);
    font-size: 30px;
    font-weight: 400;
    line-height: 1.1;
}

.pl-viewer-info p {
    margin: 0 0 34px;
    color: #333;
    font-size: 16px;
    line-height: 1.55;
}

.pl-viewer-info dl {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 13px 18px;
    margin: 0 0 34px;
}

.pl-viewer-info dt {
    color: #888;
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.pl-viewer-info dd {
    margin: 0;
    color: #111;
    font-size: 13px;
    line-height: 1.25;
    text-transform: uppercase;
}

.pl-viewer-info a {
    width: max-content;
    border-bottom: 1px solid #111;
    padding-bottom: 2px;
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.pl-viewer-progress {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 4;
    width: 0;
    height: 3px;
    background: var(--teal-bright);
}

.pl-empty {
    display: none;
    padding: 80px 36px;
    text-align: center;
    color: var(--stone);
    font-size: 12px;
    letter-spacing: 0.08em;
}

.pl-empty.visible {
    display: block;
}

.home-contact-drawer {
    min-height: 380px;
    display: grid;
    grid-template-columns: repeat(4, minmax(140px, 1fr));
    align-items: start;
    gap: clamp(28px, 6vw, 86px);
    padding: 42px clamp(28px, 19vw, 420px) 120px;
    background: #fff;
    color: #111;
}

.home-contact-group {
    min-width: 0;
}

.home-contact-group summary {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    width: max-content;
    color: #777;
    cursor: pointer;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.home-contact-group summary::-webkit-details-marker {
    display: none;
}

.home-contact-group summary span {
    color: #777;
    font-size: 14px;
    line-height: 1;
}

.home-contact-group[open] summary span {
    transform: rotate(45deg);
}

.home-contact-group div {
    display: grid;
    gap: 11px;
    margin-top: 18px;
}

.home-contact-group a,
.home-contact-group p {
    display: grid;
    gap: 3px;
    margin: 0;
    color: #111;
    font-size: 13px;
    line-height: 1.35;
}

.home-contact-group a:hover {
    color: var(--teal);
}

.home-contact-group a span,
.home-contact-group p span {
    color: #999;
    font-size: 10px;
    text-transform: uppercase;
}

.home-contact-group strong {
    min-width: 0;
    font-weight: 400;
    overflow-wrap: anywhere;
}

.whatsapp-float {
    position: fixed;
    right: clamp(18px, 3vw, 34px);
    bottom: clamp(18px, 3vw, 34px);
    z-index: 450;
    display: block;
    width: 68px;
    height: 68px;
    border-radius: 50%;
    overflow: hidden;
    background: #25d366;
    box-shadow: 0 14px 34px rgba(17, 17, 17, 0.28);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.whatsapp-float:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 42px rgba(17, 17, 17, 0.34);
}

.whatsapp-float img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.band {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    padding: 60px 36px;
    background: var(--charcoal);
    color: #fff;
    border-top: 1px solid rgba(157, 191, 174, 0.14);
}

.band-eye,
.id-eye,
.sec-eye,
.ct-eye {
    color: rgba(255, 255, 255, 0.3);
    font-size: 9px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.band-eye {
    margin-bottom: 8px;
}

.band h1 {
    margin: 0;
    font-family: var(--font-everett);
    font-size: 20px;
    font-weight: 400;
    line-height: 1.25;
}

.band p {
    margin: 6px 0 0;
    color: rgba(255, 255, 255, 0.48);
    font-size: 12px;
    line-height: 1.85;
}

.identity {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.id-left {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 48px 36px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.id-left img {
    width: 68px;
    height: 68px;
    flex-shrink: 0;
}

.id-eye {
    margin-bottom: 6px;
    color: var(--stone);
}

.id-txt h2,
.sec-hd h2,
.contact h2 {
    margin: 0;
    font-family: var(--font-everett);
    font-weight: 300;
    line-height: 1.1;
}

.id-txt h2 {
    font-size: 24px;
}

.id-txt .sub {
    margin: 4px 0 12px;
    color: var(--stone);
    font-size: 11px;
}

.id-txt a {
    border-bottom: 1px solid var(--moss);
    padding-bottom: 1px;
    color: var(--moss);
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.id-right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.id-card {
    padding: 36px 28px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
}

.id-card:last-child {
    border-right: 0;
}

.id-num {
    color: var(--stone);
    font-size: 9px;
}

.id-card strong {
    display: block;
    margin: 8px 0 5px;
    font-family: var(--font-everett);
    font-size: 17px;
    font-weight: 400;
}

.id-card p,
.svc-card p {
    margin: 0;
    color: var(--stone);
    font-size: 11.5px;
    line-height: 1.65;
}

.services {
    padding: 56px 36px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.sec-hd {
    display: flex;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 28px;
}

.sec-eye {
    color: var(--stone);
}

.sec-hd h2 {
    font-size: 24px;
}

.svc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 0;
}

.svc-card {
    padding: 24px 22px;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.svc-card:nth-child(3n) {
    border-right: 0;
}

.svc-num {
    color: var(--stone);
    font-size: 9px;
}

.svc-card h3 {
    margin: 7px 0 5px;
    font-family: var(--font-everett);
    font-size: 16px;
    font-weight: 400;
}

.contact .ct-eye {
    margin-bottom: 10px;
}

.contact h2 {
    margin-bottom: 8px;
    font-size: 26px;
}

.contact .desc {
    color: rgba(255, 255, 255, 0.46);
    font-size: 12px;
    line-height: 1.8;
}

.ct-dl {
    display: grid;
    grid-template-columns: 64px 1fr;
    gap: 9px 14px;
    margin-top: 24px;
}

.ct-dl dt {
    color: rgba(255, 255, 255, 0.24);
    font-size: 9px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.ct-dl dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.65);
    font-size: 12px;
}

.ct-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 38px;
    border: 1px solid var(--moss);
    background: var(--moss);
    color: #fff;
    padding: 0 20px;
    font-size: 9.5px;
    font-weight: 500;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

@media (max-width: 1100px) {
    .wia-index-page .site-nav {
        display: none;
    }

    .pl-row {
        grid-template-columns: 220px 20px 430px;
        width: min(calc(100vw - 56px), 860px);
        padding: 40px 28px;
    }

    .pl-img {
        width: 430px;
        height: 260px;
    }

    .pl-detail {
        width: calc(100vw - 32px);
        min-height: calc(var(--pl-detail-image-height) + 48px);
        height: auto;
        max-height: none;
        padding: 24px 16px;
    }

    .pl-detail-story {
        --pl-detail-image-width: 700px;
        --pl-detail-image-height: 520px;
        width: max-content;
        grid-template-columns: minmax(190px, 250px) var(--pl-detail-image-width);
        gap: 24px;
    }

    .pl-detail-map-panel {
        --pl-detail-image-width: 700px;
        --pl-detail-image-height: 520px;
        grid-template-columns: minmax(190px, 250px) var(--pl-detail-image-width);
        gap: 24px;
    }

    .pl-detail-image-copy {
        width: min(1040px, 100%);
        grid-template-columns: minmax(0, 620px) minmax(190px, 250px);
        gap: 24px;
    }

    .pl-detail-panel-hero {
        --pl-detail-image-width: 700px;
        --pl-detail-image-height: 520px;
        width: max-content;
        grid-template-columns: minmax(150px, 190px) var(--pl-detail-image-width) minmax(190px, 220px);
        gap: 22px;
    }

    .filter-bar,
    .pl-empty {
        padding-left: 28px;
        padding-right: 28px;
    }

    .band,
    .services,
    .contact {
        padding-left: 28px;
        padding-right: 28px;
    }

    .identity {
        grid-template-columns: 1fr;
    }

    .id-left {
        padding: 40px 28px;
        border-right: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    }

    .band,
    .contact {
        grid-template-columns: 1fr;
    }

    .home-contact-drawer {
        grid-template-columns: repeat(2, minmax(140px, 1fr));
        min-height: 300px;
        padding-left: 28px;
        padding-right: 28px;
    }

    .svc-grid {
        grid-template-columns: 1fr 1fr;
    }

    .wia-index-page .footer {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
        padding: 36px 28px;
    }

    .admin-form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-form-grid.news-grid,
    .admin-form-grid.source-grid,
    .admin-form-grid.about-grid-admin,
    .admin-form-grid.chapter-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .admin-project-preview {
        grid-template-columns: 220px minmax(0, 1fr);
        gap: 24px;
    }

    .about-grid,
    .about-media {
        grid-template-columns: 1fr;
    }

    .about-practice {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .news-index h1 {
        margin-left: 0;
        margin-bottom: 56px;
    }

    .news-layout {
        grid-template-columns: 120px minmax(0, 1fr);
        gap: 28px;
    }

    .news-item {
        grid-template-columns: 82px minmax(260px, 1fr);
    }

    .news-copy {
        grid-column: 2;
    }

    .contact-index-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .big-project-detail-page .big-header {
        position: static;
    }

    .big-project-detail-page .big-subnav {
        position: static;
        top: auto;
        height: auto;
        padding: 12px 20px;
    }

    .big-project-detail-page .big-project-wide {
        padding-top: 18px;
    }

    .wia-splash {
        --wia-intro-x: 20px;
        --wia-intro-y: 26px;
    }

    .wia-index-page .site-header.big-header {
        padding-left: 20px;
        padding-right: 20px;
    }

    .wia-index-page .nav-search {
        right: 20px;
        font-size: 0;
    }

    .pl {
        box-sizing: border-box;
        width: 100%;
        min-width: 0;
        min-height: calc(100svh - 56px);
        display: grid;
        gap: 0;
        overflow-x: hidden;
        overflow-y: visible;
        padding: 22px 12px 34px;
        scroll-snap-type: none;
        scrollbar-width: none;
        touch-action: pan-y;
    }

    .pl.has-open-detail {
        display: grid;
        overflow: visible;
        touch-action: pan-y;
    }

    .pl::-webkit-scrollbar {
        display: none;
    }

    .pl-row {
        grid-template-columns: minmax(92px, 124px) 10px minmax(0, 1fr);
        gap: 0;
        align-items: start;
        width: 100%;
        max-width: 520px;
        max-height: none;
        margin: 0 auto;
        padding: 24px 0;
        scroll-snap-align: none;
    }

    .pl-info {
        grid-column: 1;
        text-align: right;
        display: block;
    }

    .pl-mark {
        width: 36px;
        height: 36px;
        margin-bottom: 10px;
    }

    .pl-mark img {
        width: 25px;
        height: 25px;
    }

    .pl-name {
        font-size: 12px;
        line-height: 1.18;
    }

    .pl-place {
        font-size: 8.5px;
        line-height: 1.25;
    }

    .pl-tag {
        display: inline-block;
        margin-top: 8px;
        font-size: 7.5px;
    }

    .pl-img {
        grid-column: 3;
        width: 100%;
        aspect-ratio: 43 / 26;
        height: auto;
    }

    .pl-img img {
        height: 100%;
        min-height: 100%;
        aspect-ratio: auto;
        object-fit: cover;
    }

    .pl-row:nth-child(even) .pl-img img {
        aspect-ratio: auto;
    }

    .pl-row.is-expanded {
        max-height: 0;
        padding-top: 0;
        padding-bottom: 0;
        opacity: 0;
        pointer-events: none;
    }

    .pl.has-open-detail .pl-row:not(.is-expanded) {
        display: grid;
    }

    .pl-detail {
        flex: none;
        width: calc(100vw - 24px);
        height: auto;
        min-height: 0;
        margin: 0 auto 34px;
        padding: 20px 0;
    }

    .pl-detail-side {
        position: relative;
        top: auto;
        min-height: 0;
        justify-items: start;
        text-align: left;
    }

    .pl-detail-side dl {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 12px 18px;
    }

    .pl-detail-side dd {
        margin: 0;
    }

    .pl-detail-actions {
        justify-content: flex-start;
    }

    .pl-detail-progress {
        display: none;
    }

    .pl-detail-main {
        height: auto;
        min-height: 420px;
        display: flex;
        overflow-x: auto;
        overflow-y: hidden;
        padding: 0;
        touch-action: pan-x pan-y;
    }

    .pl-view-all-projects {
        display: none;
        align-items: center;
        justify-content: center;
        width: min(100%, 430px);
        min-height: 42px;
        margin: 18px auto 0;
        border: 0;
        background: #111;
        color: #fff;
        padding: 0 18px;
        font-size: 12px;
        text-transform: uppercase;
    }

    .pl-detail-panel,
    .pl-detail-image-copy,
    .pl-detail-panel-hero,
    .pl-detail-story,
    .pl-detail-map-panel,
    .pl-detail-credits-panel {
        flex: 0 0 auto;
        width: max-content;
        min-width: 0;
        gap: 16px;
        height: auto;
        min-height: 520px;
        padding-inline: 14px;
    }

    .pl-detail-image-copy {
        grid-template-columns: var(--pl-detail-image-width) minmax(170px, 210px);
    }

    .pl-detail-panel-hero {
        --pl-detail-image-width: min(84vw, 430px);
        --pl-detail-image-height: clamp(500px, 72svh, 620px);
        grid-template-columns: minmax(118px, 148px) var(--pl-detail-image-width) minmax(160px, 200px);
    }

    .pl-detail-story,
    .pl-detail-map-panel {
        --pl-detail-image-width: min(84vw, 430px);
        --pl-detail-image-height: clamp(500px, 72svh, 620px);
        grid-template-columns: minmax(160px, 210px) var(--pl-detail-image-width);
    }

    .pl-detail-credits-panel {
        width: min(520px, calc(100vw - 40px));
        min-width: min(520px, calc(100vw - 40px));
    }

    .pl-detail-hero,
    .pl-detail-image,
    .pl-detail-map {
        width: var(--pl-detail-image-width);
        height: var(--pl-detail-image-height);
    }

    .pl-detail-credits dl {
        display: grid;
    }

    .pl-detail-credits div,
    .wide-credits p {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .pl-viewer-panel {
        flex-basis: 100vw;
    }

    .pl-viewer-hero-panel,
    .pl-viewer-story {
        width: 100vw;
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 58px 18px 44px;
    }

    .pl-viewer-side {
        display: block;
        text-align: left;
        padding: 0;
    }

    .pl-viewer-side .pl-mark {
        margin-bottom: 18px;
    }

    .pl-viewer-side > p {
        margin-bottom: 22px;
    }

    .pl-viewer-side dl {
        grid-template-columns: 96px 1fr;
        gap: 8px 14px;
    }

    .pl-viewer-side dd {
        margin: 0;
    }

    .pl-viewer-share {
        justify-content: flex-start;
        margin: 18px 0 0;
    }

    .pl-viewer-hero-image,
    .pl-viewer-story-image {
        aspect-ratio: 16 / 9;
    }

    .pl-viewer-intro {
        padding: 0;
    }

    .pl-viewer-intro p,
    .pl-viewer-story-copy p {
        font-size: 18px;
        line-height: 1.25;
    }

    .pl-viewer-media {
        padding: 58px 18px 44px;
    }

    .pl-viewer-media figcaption {
        left: 18px;
        right: 18px;
    }

    .pl-viewer-info {
        width: 100vw;
        flex-basis: 100vw;
        padding: 64px 22px;
    }

    .pl-viewer-info dl {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .filter-bar,
    .pl-empty {
        padding-left: 20px;
        padding-right: 20px;
    }

    .band,
    .services,
    .contact {
        padding-left: 20px;
        padding-right: 20px;
    }

    .home-contact-drawer {
        grid-template-columns: 1fr;
        gap: 24px;
        min-height: 260px;
        padding: 36px 20px 96px;
    }

    .whatsapp-float {
        right: 18px;
        bottom: 18px;
        width: 60px;
        height: 60px;
    }

    .whatsapp-float img {
        width: 100%;
        height: 100%;
    }

    .id-left {
        padding: 32px 20px;
    }

    .id-right,
    .svc-grid,
    .form-row,
    .wia-index-page .footer,
    .wia-index-page .footer-grid {
        grid-template-columns: 1fr;
    }

    .admin-form-grid,
    .admin-form-grid.service-grid,
    .admin-form-grid.news-grid,
    .admin-form-grid.source-grid,
    .admin-form-grid.about-grid-admin,
    .admin-form-grid.chapter-grid {
        grid-template-columns: 1fr;
    }

    .admin-project-preview {
        grid-template-columns: 1fr;
        padding: 18px 16px 8px;
    }

    .admin-slide-panel {
        flex-basis: min(360px, 86vw);
    }

    .admin-slide-plan {
        grid-template-columns: 1fr;
    }

    .admin-slide-plan figure {
        min-height: 0;
    }

    .admin-project-preview-info {
        text-align: left;
        display: grid;
        grid-template-columns: 54px 1fr;
        gap: 6px 12px;
        align-items: center;
    }

    .admin-project-preview-info .pl-mark {
        margin: 0;
        grid-row: span 3;
    }

    .admin-project-preview-info p,
    .admin-project-preview-info small {
        margin-top: 0;
    }

    .about-studio {
        padding: 48px 20px 68px;
    }

    .about-studio h1 {
        margin-bottom: 46px;
    }

    .about-grid p {
        font-size: 18px;
    }

    .about-media figure {
        min-height: 240px;
    }

    .about-practice {
        grid-template-columns: 1fr;
    }

    .news-index {
        padding: 48px 20px 76px;
    }

    .news-layout {
        grid-template-columns: 1fr;
    }

    .news-cats {
        position: static;
        display: flex;
        gap: 18px;
        overflow-x: auto;
        padding-bottom: 12px;
    }

    .news-cats a {
        flex: 0 0 auto;
        font-size: 13px;
    }

    .news-list {
        gap: 54px;
    }

    .contact-index {
        padding: 48px 20px 76px;
    }

    .contact-index h1 {
        margin-bottom: 56px;
    }

    .contact-index-grid article {
        min-height: 180px;
        padding: 24px;
    }

    .news-item {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .news-copy {
        grid-column: auto;
    }

    .news-item figure {
        min-height: 240px;
    }

    .news-copy h2,
    .news-copy p {
        font-size: 18px;
    }
}
