@font-face {
    font-family: "Inter Local";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/fonts/font-5afd6099.woff2") format("woff2");
}

@font-face {
    font-family: "Inter Local";
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url("assets/fonts/font-cd48ba5f.woff2") format("woff2");
}

@font-face {
    font-family: "Inria Local";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/fonts/font-e69407ab.woff2") format("woff2");
}

@font-face {
    font-family: "Inria Local";
    font-style: italic;
    font-weight: 700;
    font-display: swap;
    src: url("assets/fonts/font-541d9e25.woff2") format("woff2");
}

@font-face {
    font-family: "Luxurious Script";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/fonts/font-59c7ed12.woff2") format("woff2");
}

@font-face {
    font-family: "Libre Baskerville Local";
    font-style: normal;
    font-weight: 400;
    font-display: swap;
    src: url("assets/fonts/font-fd7713d3.woff2") format("woff2");
}

:root {
    --ink: #080808;
    --paper: #ffffff;
    --sand: #e9e4dc;
    --orange: #f13b1c;
    --turquoise: #30a7a6;
    --muted: #77736f;
    --container: 1180px;
    --header-height: 64px;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--paper);
    color: var(--ink);
    font-family: "Inter Local", "DM Sans", Arial, sans-serif;
    font-size: 16px;
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    color: inherit;
    font: inherit;
}

.container {
    margin-inline: auto;
    max-width: var(--container);
    width: calc(100% - 80px);
}

.site-header {
    background: rgba(255, 255, 255, .97);
    height: var(--header-height);
    position: relative;
    z-index: 50;
}

.nav {
    align-items: center;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    height: 100%;
}

.nav-links {
    align-items: center;
    display: flex;
    gap: 48px;
}

.nav-links--right {
    justify-content: flex-end;
}

.nav a,
.language {
    background: none;
    border: 0;
    cursor: pointer;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.nav-links a {
    position: relative;
}

.nav-links a::after {
    background: var(--orange);
    bottom: -5px;
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .25s ease;
    width: 100%;
}

.nav-links a:hover::after {
    transform: scaleX(1);
}

.brand {
    display: block;
    height: 24px;
    position: relative;
    width: 130px;
}

.brand img {
    display: block;
    height: 100%;
    object-fit: contain;
    width: 100%;
}

.language {
    align-items: center;
    background: #f3f2ef !important;
    border: 1px solid rgba(0,0,0,.1) !important;
    border-radius: 999px;
    display: inline-flex;
    gap: 1px;
    padding: 3px !important;
}

.language span {
    border-radius: 999px;
    color: #8d8983;
    font-size: 9px;
    line-height: 1;
    padding: 6px 8px;
    transition: background-color .3s ease, color .3s ease;
}

.language span.is-active {
    background: #111;
    color: #fff;
}

.language i {
    color: #aaa59e;
    font-size: 8px;
    font-style: normal;
}

.menu-toggle {
    background: none;
    border: 0;
    cursor: pointer;
    display: none;
    height: 34px;
    position: relative;
    width: 34px;
}

.menu-toggle span {
    background: var(--ink);
    height: 1px;
    left: 4px;
    position: absolute;
    transition: transform .25s, top .25s;
    width: 24px;
}

.menu-toggle span:first-child { top: 12px; }
.menu-toggle span:last-child { top: 20px; }

.hero-media {
    height: min(43vw, 620px);
    min-height: 430px;
    overflow: hidden;
    position: relative;
}

.hero-slides,
.hero-slide {
    inset: 0;
    position: absolute;
}

.hero-slide {
    opacity: 1;
    transform: translateX(100%);
    z-index: 0;
}

.hero-slide.is-entering-next {
    transform: translateX(100%);
    z-index: 3;
}

.hero-slide.is-entering-prev {
    transform: translateX(-100%);
    z-index: 3;
}

.hero-slide.is-animating {
    transition: transform .95s cubic-bezier(.76, 0, .24, 1);
}

.hero-slide.is-active {
    transform: translateX(0);
    z-index: 2;
}

.hero-slide.is-leaving-next {
    transform: translateX(-100%);
}

.hero-slide.is-leaving-prev {
    transform: translateX(100%);
}

.hero-slide img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.hero-arrow {
    align-items: center;
    background: rgba(8, 8, 8, .7);
    border: 0;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    font-family: Arial, sans-serif;
    font-size: 22px;
    height: 44px;
    justify-content: center;
    opacity: .72;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    transition: opacity .25s, background .25s;
    width: 44px;
    z-index: 4;
}

.hero:hover .hero-arrow,
.hero-arrow:focus-visible {
    opacity: 1;
}

.hero-arrow:hover { background: var(--orange); }
.hero-arrow--prev { left: 24px; }
.hero-arrow--next { right: 24px; }

.hero-details {
    align-items: stretch;
    display: grid;
    grid-template-columns: 547px 1fr 90px;
    margin-left: max(0px, calc((100vw - 1032px) / 2));
    min-height: 151px;
}

.hero-details__identity {
    background: var(--turquoise);
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    padding: 0 38px 0 149px;
    position: relative;
}

.hero-location {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 14px;
}

.hero-title {
    font-family: "Inter Local", Arial, sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2;
    max-width: 380px;
    white-space: pre-line;
}

.hero-details__copy {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    justify-content: center;
    line-height: 1.5;
    overflow: hidden;
    padding: 0 36px;
    position: relative;
}

.hero-details__identity-layer,
.hero-details__copy-layer {
    display: flex;
    flex-direction: column;
    inset: 0;
    justify-content: center;
    padding: inherit;
    position: absolute;
    transition: transform .95s cubic-bezier(.76, 0, .24, 1);
    will-change: transform;
    z-index: 2;
}

.hero-details__identity-layer.from-top,
.hero-details__copy-layer.from-top {
    transform: translateY(-101%);
}

.hero-details__identity-layer.from-bottom,
.hero-details__copy-layer.from-bottom {
    transform: translateY(101%);
}

.hero-details__identity-layer {
    color: #fff;
}

.hero-details__copy-layer {
    background: #fff;
}

.hero-details__identity-layer.is-descending,
.hero-details__copy-layer.is-descending {
    transform: translateY(0);
}

.hero-description {
    white-space: pre-line;
}

.hero-details__copy p {
    max-width: 480px;
}

.hero-note {
    display: block;
    font-size: 13px;
    margin-top: 3px;
}

.hero-counter {
    align-items: center;
    display: flex;
    flex-direction: column;
    font-size: 9px;
    gap: 8px;
    justify-content: center;
}

.hero-counter__line {
    background: #cacaca;
    height: 34px;
    overflow: hidden;
    position: relative;
    width: 1px;
}

.hero-counter__line::before {
    animation: counterLine 6s linear infinite;
    background: var(--ink);
    content: "";
    inset: 0;
    position: absolute;
    transform-origin: top;
}

@keyframes counterLine {
    0% { transform: scaleY(0); }
    100% { transform: scaleY(1); }
}

.projects-section {
    min-height: 0;
    padding: clamp(48px, 5vw, 72px) 0 clamp(58px, 6vw, 88px);
}

.section-signature {
    align-items: baseline;
    color: var(--orange);
    display: flex;
    justify-content: center;
    line-height: 1;
    position: relative;
}

.section-signature span {
    font-family: "Inria Local", "Inria Serif", Georgia, serif;
    font-size: 41px;
}

.section-signature em {
    font-family: "Luxurious Script", cursive;
    font-size: 69px;
    font-style: normal;
    font-weight: 400;
    margin-left: 12px;
}

.legacy-statement {
    font-family: "Inria Local", "Inria Serif", Georgia, serif;
    font-size: clamp(20px, 2.2vw, 29px);
    line-height: 1.2;
    margin: 22px auto 0;
    max-width: 1050px;
    text-align: center;
}

.legacy-statement em {
    font-weight: 700;
}

.about {
    background: #fff;
    padding: 0;
}

.about-tunnel {
    isolation: isolate;
    overflow: hidden;
    position: relative;
}

.tunnel-stage {
    background: #fff;
    cursor: none;
    height: clamp(680px, 52vw, 900px);
    overflow: hidden;
    position: relative;
    touch-action: pan-y;
    width: 100%;
}

.tunnel-canvas {
    display: block;
    height: 100%;
    inset: 0;
    pointer-events: none;
    position: absolute;
    width: 100%;
    z-index: 1;
}

.tunnel-haze {
    background: radial-gradient(circle at center,
        rgba(255, 255, 255, .99) 0,
        rgba(255, 255, 255, .95) 15%,
        rgba(255, 255, 255, .76) 29%,
        rgba(255, 255, 255, .16) 57%,
        rgba(255, 255, 255, 0) 76%);
    inset: 0;
    pointer-events: none;
    position: absolute;
    z-index: 7;
}

.about-copy {
    left: 50%;
    max-width: 760px;
    padding: 60px 70px;
    pointer-events: none;
    position: absolute;
    text-align: center;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(90%, 760px);
    z-index: 10;
}

.about-copy h2 {
    font-family: "Inria Local", "Inria Serif", Georgia, serif;
    font-size: clamp(38px, 3.7vw, 58px);
    font-weight: 400;
    letter-spacing: -.025em;
    line-height: .98;
}

.about-word.is-accent {
    color: var(--orange);
    font-weight: 700;
}

.about-title {
    perspective: 900px;
    transform-style: preserve-3d;
}

.about-word {
    backface-visibility: hidden;
    display: inline-block;
    transform-origin: center 70%;
    will-change: transform, opacity, filter;
}

.tunnel-cursor {
    background: var(--orange);
    border-radius: 999px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    left: 0;
    opacity: 0;
    padding: 10px 16px;
    pointer-events: none;
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%) scale(.82);
    transition: opacity .18s ease, transform .18s ease;
    white-space: nowrap;
    z-index: 20;
}

.tunnel-stage.is-hovering .tunnel-cursor {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
}

.tunnel-stage.is-boosting .tunnel-cursor {
    transform: translate(-50%, -50%) scale(.86);
}

.off-section {
    background: #111;
    border-radius: 32px;
    clip-path: inset(0 round 32px);
    color: #fff;
    height: clamp(680px, 48vw, 760px);
    margin: clamp(48px, 5vw, 82px) auto;
    max-width: 1480px;
    min-height: 0;
    overflow: hidden;
    padding: 0;
    position: relative;
    isolation: isolate;
    transform: translateZ(0);
    width: calc(100% - clamp(48px, 7vw, 128px));
}

.off-section__background,
.off-section__overlay {
    height: 100%;
    inset: 0;
    position: absolute;
    width: 100%;
}

.off-section__background {
    backface-visibility: hidden;
    border-radius: inherit;
    clip-path: inset(0 round 32px);
    object-fit: cover;
    transform: scale(1.01);
    transition: opacity .42s ease;
}

.off-section__overlay {
    background:
        linear-gradient(90deg, rgba(0,0,0,.86) 0%, rgba(0,0,0,.5) 42%, rgba(0,0,0,.08) 82%),
        linear-gradient(0deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.18) 42%, transparent 72%);
}

.off-section__content {
    left: 50%;
    padding: 0;
    pointer-events: none;
    position: absolute;
    top: clamp(78px, 7vw, 108px);
    transform: translateX(-50%);
    z-index: 3;
}

.off-section__content h2 {
    font-family: "Libre Baskerville Local", Georgia, serif;
    font-size: clamp(48px, 4.4vw, 72px);
    font-weight: 400;
    line-height: 1.06;
    margin: 0;
    max-width: 760px;
}

.off-section .container {
    max-width: 1138px;
    width: calc(100% - clamp(64px, 9vw, 144px));
}

.off-section__content p {
    font-size: clamp(18px, 1.5vw, 24px);
    font-weight: 400;
    line-height: 1.35;
    margin: 18px 0 0;
    max-width: 660px;
}

.off-section__content p strong,
.off-word.is-strong {
    font-weight: 600;
}

.off-word {
    display: inline-block;
    will-change: opacity, transform;
}

.off-gallery {
    align-items: center;
    bottom: 82px;
    display: flex;
    gap: 14px;
    left: 50%;
    margin: 0;
    overflow-x: auto;
    padding: 12px 7px;
    position: absolute;
    scrollbar-width: none;
    transform: translateX(-50%);
    z-index: 3;
}

.off-gallery::-webkit-scrollbar {
    display: none;
}

.off-thumb {
    background: #111;
    border: 0;
    border-radius: 12px;
    clip-path: inset(0 round 12px);
    cursor: pointer;
    flex: 0 0 188px;
    height: 118px;
    opacity: .68;
    overflow: hidden;
    padding: 0;
    transform: translateZ(0) scale(1);
    transform-origin: center;
    transition: opacity .36s ease, transform .42s cubic-bezier(.22,1,.36,1), box-shadow .36s ease;
}

.off-thumb:hover {
    opacity: .88;
    transform: translateZ(0) scale(1.025);
}

.off-thumb.is-active {
    box-shadow: 0 12px 30px rgba(0,0,0,.3);
    opacity: 1;
    transform: translateZ(0) scale(1.055);
}

.off-thumb img {
    backface-visibility: hidden;
    border-radius: inherit;
    clip-path: inset(0 round 12px);
    display: block;
    height: 100%;
    object-fit: cover;
    transform: translateZ(0);
    width: 100%;
}

.off-meta {
    align-items: center;
    bottom: 30px;
    display: grid;
    font-size: 11px;
    font-weight: 600;
    gap: 24px;
    grid-template-columns: auto auto 1fr auto;
    left: 50%;
    margin: 0;
    position: absolute;
    transform: translateX(-50%);
    z-index: 3;
}

.off-meta i {
    background: rgba(255, 255, 255, .6);
    height: 1px;
}

.off-meta.is-without-status {
    grid-template-columns: auto auto 1fr;
}

.off-project-tabs {
    backdrop-filter: blur(12px);
    background: rgba(0,0,0,.34);
    border: 1px solid rgba(255,255,255,.28);
    border-radius: 999px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    isolation: isolate;
    padding: 4px;
    position: absolute;
    right: 28px;
    top: 24px;
    width: 270px;
    z-index: 5;
}

.off-project-tabs__indicator {
    background: #6f8862;
    border-radius: 999px;
    bottom: 4px;
    left: 4px;
    position: absolute;
    top: 4px;
    transform: translateX(0);
    transition: transform .48s cubic-bezier(.22,1,.36,1), background-color .48s ease, opacity .48s ease;
    width: calc(50% - 4px);
    z-index: -1;
}

.off-section.is-biografia .off-project-tabs__indicator {
    background: var(--orange);
    transform: translateX(100%);
}

.off-project-tabs button {
    background: transparent;
    border: 0;
    border-radius: 999px;
    color: rgba(255,255,255,.68);
    cursor: pointer;
    font: 600 11px/1 Arial, sans-serif;
    padding: 10px 11px;
    transition: color .35s ease;
}

.off-project-tabs button.is-active {
    color: #fff;
}

.news-feature {
    background: var(--sand);
    padding: 120px 0;
}

.news-feature__inner {
    align-items: center;
    display: grid;
    gap: 70px;
    grid-template-columns: 1fr 1fr;
    max-width: 940px;
}

.news-feature__copy {
    padding-left: 20px;
}

.news-logo {
    height: auto;
    margin-bottom: 30px;
    width: 190px;
}

.edition {
    color: var(--orange);
    font-size: 12px !important;
    margin-bottom: 20px;
}

.news-feature__copy p:last-child {
    color: #625f5a;
    font-size: 13px;
    line-height: 1.42;
    max-width: 390px;
}

.news-feature__image {
    height: 420px;
    overflow: hidden;
    position: relative;
}

.news-feature__image::before {
    background: var(--sand);
    content: "";
    height: 220px;
    position: absolute;
    right: 60px;
    top: -175px;
    transform: rotate(-20deg);
    width: 2px;
    z-index: 2;
}

.news-feature__image img {
    filter: grayscale(1);
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.news-grid-section {
    padding: 95px 0 115px;
}

.news-grid {
    display: grid;
    gap: 47px;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1066px;
}

.news-card a {
    display: block;
}

.news-card img {
    aspect-ratio: 1.48;
    object-fit: cover;
    transition: filter .25s, transform .5s;
    width: 100%;
}

.news-card:hover img {
    filter: brightness(.9);
    transform: translateY(-3px);
}

.news-card h3 {
    font-size: 14px;
    line-height: 1.04;
    margin: 17px 0 12px;
    text-transform: uppercase;
}

.news-card p {
    color: #9a9691;
    font-size: 9px;
    line-height: 1.4;
}

.site-footer {
    background: var(--sand);
    min-height: 0;
    padding: clamp(62px, 7vw, 96px) 0 26px;
    position: relative;
}

.footer-shell {
    max-width: 1240px;
}

.footer-intro {
    align-items: flex-end;
    border-bottom: 1px solid rgba(0,0,0,.18);
    display: flex;
    justify-content: space-between;
    padding-bottom: clamp(40px, 5vw, 62px);
}

.footer-brand-placeholder {
    display: block;
    width: clamp(230px, 26vw, 330px);
}

.footer-brand-placeholder img {
    display: block;
    height: auto;
    width: 100%;
}

.footer-intro p {
    font-family: "Inria Local", "Inria Serif", Georgia, serif;
    font-size: clamp(17px, 1.65vw, 22px);
    line-height: 1.25;
    margin: 0;
    max-width: 470px;
    text-align: right;
}

.footer-navigation {
    align-items: flex-start;
    display: grid;
    gap: 50px;
    grid-template-columns: 1fr auto;
    padding: 34px 0 clamp(58px, 7vw, 88px);
}

.footer-links__main,
.footer-links__social {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    font-size: 10px;
    font-weight: 500;
    gap: 18px 34px;
    text-transform: uppercase;
}

.footer-links__social {
    color: var(--orange);
    gap: 26px;
}

.footer-links__main > a,
.footer-links__social a,
.footer-contact summary {
    transition: color .25s ease;
}

.footer-links__main > a:hover,
.footer-links__social a:hover,
.footer-contact summary:hover {
    color: var(--orange);
}

.footer-links__main .is-strong { font-weight: 700; }

.footer-contact {
    position: relative;
}

.footer-contact summary {
    cursor: pointer;
    list-style: none;
    padding-right: 17px;
    position: relative;
}

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

.footer-contact summary::after {
    content: "+";
    font-size: 14px;
    line-height: 1;
    position: absolute;
    right: 0;
    top: -2px;
    transition: transform .3s ease;
}

.footer-contact[open] summary::after { transform: rotate(45deg); }

.footer-contact__panel {
    background: #111;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,.18);
    color: #fff;
    display: grid;
    gap: 9px;
    left: 0;
    min-width: 238px;
    padding: 16px 18px;
    position: absolute;
    top: calc(100% + 14px);
    z-index: 5;
}

.footer-contact__panel span {
    color: rgba(255,255,255,.55);
    font-size: 8px;
}

.footer-contact__panel a {
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    text-transform: none;
}

.footer-contact__panel a:hover { color: var(--orange); }

.footer-bottom {
    align-items: center;
    border-top: 1px solid rgba(0,0,0,.18);
    display: flex;
    font-size: 9px;
    font-weight: 500;
    justify-content: space-between;
    padding-top: 20px;
}

.copyright {
    align-items: center;
    display: flex;
    gap: 10px;
}

.copyright img {
    height: 17px;
    object-fit: contain;
    width: auto;
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .75s ease, transform .75s ease;
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1024px) {
    :root { --container: 900px; }
    .container { width: calc(100% - 48px); }
    .nav-links { gap: 25px; }
    .hero-details { grid-template-columns: 42% 1fr 70px; }
    .hero-details__identity { padding-inline: 28px; }
    .projects-section { min-height: 0; }
    .about-copy { margin-left: 0; }
    .news-feature__inner { gap: 60px; }
    .footer-links__main { flex-wrap: wrap; gap: 16px 25px; }
}

@media (max-width: 760px) {
    :root { --header-height: 60px; }
    .container { width: calc(100% - 36px); }
    .nav { grid-template-columns: 1fr auto 1fr; }
    .menu-toggle { display: block; justify-self: start; z-index: 3; }
    .nav-links--left {
        align-items: flex-start;
        background: #fff;
        flex-direction: column;
        gap: 28px;
        inset: 0;
        justify-content: center;
        opacity: 0;
        padding: 80px 38px;
        pointer-events: none;
        position: fixed;
        transform: translateY(-15px);
        transition: opacity .3s, transform .3s;
        z-index: 2;
    }
    .nav-links--left a { font-size: 26px; }
    .menu-open .nav-links--left { opacity: 1; pointer-events: auto; transform: translateY(0); }
    .menu-open .menu-toggle span:first-child { top: 16px; transform: rotate(45deg); }
    .menu-open .menu-toggle span:last-child { top: 16px; transform: rotate(-45deg); }
    .brand { font-size: 23px !important; position: relative; z-index: 3; }
    .language { font-size: 9px; position: relative; z-index: 3; }
    .hero-media { height: 58vh; min-height: 430px; }
    .hero-slide img { object-position: center; }
    .hero-arrow { opacity: 1; }
    .hero-details { grid-template-columns: 1fr; margin: 0; }
    .hero-details__identity,
    .hero-details__copy,
    .hero-details__identity-layer,
    .hero-details__copy-layer {
        align-items: center;
        text-align: center;
    }
    .hero-details__identity { min-height: 145px; padding: 27px 28px; }
    .hero-details__copy { min-height: 140px; padding: 27px 28px; }
    .hero-title,
    .hero-description,
    .hero-details__copy p { margin-inline: auto; }
    .hero-counter { display: none; }
    .projects-section { min-height: 0; padding: 48px 0 62px; }
    .section-signature span { font-size: 23px; }
    .section-signature em { font-size: 41px; }
    .legacy-statement { font-size: 20px; margin-top: 18px; padding-inline: 18px; }
    .legacy-statement br { display: none; }
    .about { padding: 0; }
    .tunnel-stage { cursor: default; height: 660px; }
    .about-copy { padding: 42px 20px; width: 96%; }
    .about-copy h2 { font-size: clamp(30px, 9vw, 42px); line-height: 1.01; }
    .tunnel-cursor { display: none; }
    .off-section {
        border-radius: 20px;
        clip-path: inset(0 round 20px);
        height: 720px;
        margin: 32px auto;
        width: calc(100% - 24px);
    }
    .off-section__background { clip-path: inset(0 round 20px); }
    .off-section .container { width: calc(100% - 36px); }
    .off-section__content { top: 106px; }
    .off-section__content h2 { font-size: clamp(40px, 12vw, 54px); line-height: 1.03; }
    .off-section__content p { font-size: 17px; margin-top: 14px; max-width: 92%; }
    .off-gallery { bottom: 88px; gap: 10px; padding: 10px 6px; }
    .off-thumb { flex-basis: 148px; height: 94px; }
    .off-meta {
        bottom: 16px;
        column-gap: 12px;
        font-size: 10px;
        grid-template-areas:
            "project location"
            "status status";
        grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
        line-height: 1.25;
        row-gap: 8px;
    }
    .off-meta i { display: none; }
    .off-meta [data-off-project] { grid-area: project; text-align: left; }
    .off-meta [data-off-location] { grid-area: location; text-align: right; white-space: nowrap; }
    .off-meta [data-off-status] { grid-area: status; justify-self: center; text-align: center; }
    .off-meta.is-without-status {
        grid-template-areas: "project location";
        grid-template-columns: minmax(0, .8fr) minmax(0, 1.2fr);
    }
    .off-project-tabs {
        left: 18px;
        right: auto;
        top: 18px;
        width: min(270px, calc(100% - 36px));
    }
    .news-feature { padding: 85px 0; }
    .news-feature__inner { grid-template-columns: 1fr; gap: 50px; }
    .news-feature__copy { padding-left: 0; }
    .news-feature__image { height: 390px; }
    .news-grid-section { padding: 65px 0 80px; }
    .news-grid { gap: 46px 18px; grid-template-columns: repeat(2, 1fr); }
    .site-footer { min-height: 0; padding: 52px 0 24px; }
    .footer-intro { align-items: flex-start; flex-direction: column; gap: 30px; padding-bottom: 40px; }
    .footer-brand-placeholder { width: min(250px, 78vw); }
    .footer-intro p { font-size: 18px; text-align: left; }
    .footer-navigation { gap: 34px; grid-template-columns: 1fr; padding: 30px 0 48px; }
    .footer-links__main { display: grid; gap: 21px 18px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .footer-links__social { gap: 24px; }
    .footer-contact__panel { margin-top: 12px; position: static; }
    .footer-bottom { align-items: flex-start; flex-direction: column; gap: 16px; line-height: 1.35; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}
