@font-face {
    font-family: 'Neue Montreal';
    src: url('../Neue Montreal/NeueMontreal-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../Neue Montreal/NeueMontreal-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Neue Montreal';
    src: url('../Neue Montreal/NeueMontreal-Bold.otf') format('opentype');
    font-weight: 700 900;
    font-style: normal;
    font-display: swap;
}

:root {
    --bg: #f5f5f2;
    --ink: #111;
    --muted: #6b6b66;
    --line: rgba(17, 17, 17, 0.14);
    --surface: #fff;
    --dark: #050505;
    --dark-text: #f4f1e8;
    --button-bg: #f5f3ed;
    --button-text: #000;
    --button-inverse-bg: #f5f3ed;
    --button-inverse-text: #000;
    --button-border: #d8d8d8;
}

body.dark-mode {
    --bg: #050505;
    --ink: #f4f1e8;
    --muted: #9a9a90;
    --line: rgba(255, 255, 255, 0.14);
    --surface: #101010;
    --button-bg: #111;
    --button-text: #fff;
    --button-inverse-bg: #111;
    --button-inverse-text: #fff;
    --button-border: #3a3a3a;
}

* {
    box-sizing: border-box;
}

html {
    scrollbar-width: none;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
    width: 0;
    height: 0;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--ink);
    font-family: 'Neue Montreal', sans-serif;
    overflow-x: hidden;
    scrollbar-width: none;
}

body.page-dragging {
    user-select: none;
}

.signature-loader {
    position: fixed;
    inset: 0;
    z-index: 2147483645;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
    opacity: 1;
    pointer-events: auto;
    transition: opacity 0.9s ease, visibility 0s linear 0.9s;
}

.signature-loader.loader-hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader-signature {
    width: min(360px, 62vw);
    height: auto;
}

.loader-signature-stage {
    position: relative;
    width: min(360px, 62vw);
    aspect-ratio: 1216 / 770;
}

.loader-signature-stage .loader-signature {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.loader-signature-m-svg,
.loader-signature-atheus-svg {
    overflow: visible;
}

.loader-signature-m-path,
.loader-signature-atheus-path {
    stroke-dasharray: 1;
    stroke-dashoffset: 1;
}

.loader-signature-m-path {
    animation: signatureDraw 2.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: 0.45s;
}

.loader-signature-atheus-path {
    animation: signatureDraw var(--draw-duration, 1.1s) cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: var(--draw-delay, 2.65s);
}

.loader-signature-atheus-path:nth-child(1) {
    --draw-delay: 2.65s;
    --draw-duration: 1.1s;
}

.loader-signature-atheus-path:nth-child(2) {
    --draw-delay: 3.15s;
    --draw-duration: 0.55s;
}

.loader-signature-atheus-path:nth-child(3) {
    --draw-delay: 3.45s;
    --draw-duration: 0.85s;
}

.loader-signature-atheus-path:nth-child(4) {
    --draw-delay: 3.9s;
    --draw-duration: 1.35s;
}

.loader-signature-atheus-path:nth-child(5) {
    --draw-delay: 5.05s;
    --draw-duration: 0.85s;
}

.loader-signature-atheus-path:nth-child(6) {
    --draw-delay: 5.55s;
    --draw-duration: 0.8s;
}

@keyframes signatureDraw {
    to {
        stroke-dashoffset: 0;
    }
}

.project-page .loader-signature-stage {
    width: min(180px, 42vw);
    height: 2px;
    aspect-ratio: auto;
    overflow: hidden;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
}

.project-page .loader-signature-stage::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 46%;
    border-radius: inherit;
    background: #fff;
    animation: projectLoader 0.9s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.project-page .loader-signature-stage .loader-signature {
    display: none;
}

@keyframes projectLoader {
    from {
        transform: translateX(-120%);
    }

    to {
        transform: translateX(340%);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    will-change: opacity, transform;
}

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

.hero-reveal {
    opacity: 0;
    transform: translateY(12px) scale(0.98);
    transition:
        opacity 0.9s ease-out,
        transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

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

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

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

.page-shell {
    width: min(100% - 32px, 1920px);
    margin: 16px auto;
}

.language-switch {
    position: fixed;
    bottom: 32px;
    right: 36px;
    z-index: 1000;
    pointer-events: none;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity 0.9s ease-out, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.language-switch.language--visible {
    opacity: 1;
    transform: translateY(0);
}

.language-glass {
    position: relative;
    pointer-events: auto;
    padding: 20px;
    border-radius: 12px;
    background: rgba(50, 50, 50, 0.15);
    border: 1px solid rgba(245, 243, 237, 0.13);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
}

.language-btn {
    padding: 16px 24px;
    background: var(--button-inverse-bg);
    color: var(--button-inverse-text);
    font-family: 'Neue Montreal', sans-serif;
    font-size: 0.7em;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: 1px solid var(--button-border);
    border-radius: 5px;
    cursor: default;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.35s ease, color 0.35s ease, opacity 0.6s ease-out, transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.language-btn i {
    font-size: 1.5em;
}

.language-wrapper {
    display: inline-flex;
    flex-direction: column;
    align-items: stretch;
}

.language-menu {
    position: absolute;
    bottom: calc(100% + 16px);
    left: 0;
    transform: translateY(12px);
    padding: 0;
    width: 100%;
    min-width: 100%;
    background: rgba(50, 50, 50, 0.18);
    border: 1px solid rgba(245, 243, 237, 0.18);
    backdrop-filter: blur(14px);
    border-radius: 12px;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition:
        opacity 0.45s ease,
        transform 0.55s cubic-bezier(0.22, 1, 0.36, 1),
        visibility 0s linear 0.45s;
}

.language-menu::after {
    content: "";
    position: absolute;
    bottom: -16px;
    left: 0;
    width: 100%;
    height: 16px;
}

.language-menu-inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.language-menu-inner .language-option {
    opacity: 0;
    transform: translateY(8px);
}

.language-glass:hover .language-menu,
.language-glass.menu-open .language-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
    transition-delay: 0s;
}

.language-glass:hover .language-menu-inner .language-option,
.language-glass.menu-open .language-menu-inner .language-option {
    opacity: 1;
    transform: translateY(0);
}

.language-glass:hover .language-menu-inner .language-option:nth-child(1),
.language-glass.menu-open .language-menu-inner .language-option:nth-child(1) {
    transition-delay: 0.06s;
}

.language-glass:hover .language-menu-inner .language-option:nth-child(2),
.language-glass.menu-open .language-menu-inner .language-option:nth-child(2) {
    transition-delay: 0.11s;
}

.language-glass:hover .language-menu-inner .language-option:nth-child(3),
.language-glass.menu-open .language-menu-inner .language-option:nth-child(3) {
    transition-delay: 0.16s;
}

.language-option {
    all: unset;
    width: 100%;
    padding: 16px 24px;
    background: var(--button-inverse-bg);
    color: var(--button-inverse-text);
    font-family: 'Neue Montreal', sans-serif;
    font-size: 0.7em;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 5px;
    border: 1px solid var(--button-border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-sizing: border-box;
    transition:
        opacity 0.35s ease,
        transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
        background-color 0.35s ease,
        color 0.35s ease,
        box-shadow 0.2s ease;
}

.language-option:hover {
    background-color: var(--button-inverse-bg);
}

/* =========================================================
   HEADER
========================================================= */

header {
    position: fixed;
    top: 32px;
    left: 0;
    width: 100%;

    display: flex;
    justify-content: center;

    z-index: 1000;
    pointer-events: none;

    opacity: 0;
    transform: translateY(-24px);

    transition:
        opacity 0.8s ease-out,
        transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.header-inner {
    width: 100%;
    padding: 26px 32px;
    display: flex;
    justify-content: center;
}

header.header--visible {
    opacity: 1;
}

header.header--hidden {
    transform: translateY(-140%);
    opacity: 0;
}

header nav {
    pointer-events: auto;
}

header .logo,
header nav ul a {
    opacity: 0;
    transform: translateY(-6px);
    transition:
        opacity 0.6s ease-out,
        transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

header.header--visible .logo {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.18s;
}

header.header--visible nav ul a {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.32s;
}

nav {
    width: 100%;
    padding: 20px 24px;
    border-radius: 12px;

    background: rgba(50, 50, 50, 0.15);
    border: 1px solid rgba(245, 243, 237, 0.13);

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

    position: relative;
    overflow: hidden;
}

nav::before {
    content: "";
    position: absolute;
    inset: 0;

    background: rgba(50, 50, 50, 0.15);
    backdrop-filter: blur(10px);

    opacity: 0;
    transition: opacity 0.8s ease-out;
    z-index: 0;
}

header.header--visible nav::before {
    opacity: 1;
}

nav>* {
    position: relative;
    z-index: 1;
}

.logo {
    line-height: 1;
    color: #fff;
    text-decoration: none;
    border: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
    margin-left: 3%;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
}

.logo-signature {
    position: relative;
    display: block;
    width: 132px;
    height: 38px;
    color: currentColor;
    overflow: visible;
    transform: translateY(3px);
}

.logo-signature svg {
    position: absolute;
    display: block;
    height: auto;
    pointer-events: none;
    user-select: none;
}

.logo-signature-m {
    width: 68px;
    left: -6px;
    top: -10px;
}

.logo-signature-m path {
    stroke-width: 26;
}

.logo-signature-atheus {
    width: 76px;
    left: 30px;
    top: 15px;
}

.logo-signature-t {
    width: 16px;
    left: 44px;
    top: 22px;
    transform: rotate(-7deg);
}

.logo:hover,
.logo:focus,
.logo:visited {
    color: #fff;
    text-decoration: none;
    border: 0;
    outline: 0;
    box-shadow: none;
    background: transparent;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 16px;
    margin: 0;
    padding: 0;
    align-items: center;
    flex-shrink: 0;
}

nav ul a,
.theme-toggle {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 0.7em;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;

    color: var(--button-inverse-text);
    background-color: var(--button-inverse-bg);

    font-weight: 600;
    padding: 16px 28px;
    border-radius: 5px;
    border: 1px solid var(--button-border);

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;

    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

nav ul a:hover {
    background-color: var(--button-inverse-bg);
    transform: none;
}

.theme-toggle {
    width: 52px;
    padding: 11px 0;
    cursor: pointer;
}

.theme-toggle img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.mobile-menu-toggle,
.mobile-menu-backdrop,
.mobile-menu-panel {
    display: none;
}

.project-intro {
    min-height: 560px;
    padding: 176px 60px 64px;
    border-radius: 18px 18px 0 0;
    background: var(--surface);
    color: var(--ink);
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(380px, 0.85fr);
    gap: clamp(48px, 10vw, 180px);
    align-items: end;
    position: relative;
    overflow: hidden;
}

.project-intro::after {
    display: none;
}

.intro-main {
    max-width: 760px;
}

.intro-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 56px;
}

.intro-tag {
    font-family: 'Neue Montreal', sans-serif;
    font-size: 0.7em;
    padding: 8px 12px;
    border-radius: 5px;
    background: rgba(240, 240, 240, 0.25);
    border: 1px solid rgba(17, 17, 17, 0.16);
    backdrop-filter: blur(15px);
    color: var(--ink);
    font-weight: 500;
}

body.dark-mode .intro-tag {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
}

.intro-eyebrow {
    display: none;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 0.74rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.intro-title {
    font-family: "Anton", sans-serif;
    max-width: 1260px;
    margin: 0;
    font-size: clamp(4rem, 7vw, 8.2rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.intro-summary {
    width: min(100%, 680px);
    margin: 24px 0 0;
    color: var(--muted);
    font-size: clamp(1.12rem, 1.25vw, 1.42rem);
    font-weight: 500;
    line-height: 1.12;
}

.intro-link {
    width: fit-content;
    margin-top: 0;
    padding: 14px 18px;
    border: none;
    border-radius: 0;
    background: transparent;
    color: #ff3b16;
    font-size: 0.92rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: none;
    justify-self: end;
}

.hero {
    min-height: calc(100vh - 32px);
    margin-top: 0;
    border-radius: 0 0 18px 18px;
    overflow: hidden;
    position: relative;
    background: var(--dark);
}

.hero::after {
    display: none;
}

        .hero img,
        .hero video {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
        }

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 48px 48px;
    color: #fff;
}

.hero-eyebrow {
    display: inline-flex;
    margin-bottom: 16px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.78;
}

.hero-title {
    font-family: "Anton", sans-serif;
    margin: 0;
    max-width: 1200px;
    font-size: clamp(4rem, 13vw, 13.5rem);
    font-weight: 400;
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.hero-summary {
    width: min(100%, 760px);
    margin: 28px 0 0;
    font-size: clamp(1.1rem, 1.6vw, 1.55rem);
    line-height: 1.25;
    color: rgba(255, 255, 255, 0.84);
}

.project-meta {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-top: 0;
    align-self: end;
}

.meta-card {
    min-height: 0;
    padding: 16px 0;
    border: none;
    border-top: 1px solid rgba(17, 17, 17, 0.72);
    border-radius: 0;
    background: transparent;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 24px;
    align-items: center;
}

.meta-card:last-child {
    border-bottom: 1px solid rgba(17, 17, 17, 0.72);
}

body.dark-mode .meta-card {
    border-top-color: rgba(255, 255, 255, 0.5);
}

body.dark-mode .meta-card:last-child {
    border-bottom-color: rgba(255, 255, 255, 0.5);
}

.meta-label {
    margin: 0;
    color: var(--ink);
    font-size: 0.92rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
}

.project-intro .meta-card {
    color: var(--ink);
}

.project-intro .meta-label {
    color: var(--ink);
}

.meta-value {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.28;
    text-align: right;
    text-transform: none;
}

.meta-value a {
    color: inherit;
    text-decoration: none;
    transition: color 0.25s ease;
}

.meta-value a:hover {
    color: #ff3b16;
}

.case-section {
    margin-top: 0;
}

.case-section.case-intro {
    margin: 64px 0;
}

.case-intro {
    display: grid;
    grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.6fr);
    gap: 12vw;
    align-items: start;
    padding: 0 32px;
}

.case-kicker {
    margin: 0;
    color: var(--muted);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
}

.case-copy h2 {
    font-family: "Anton", sans-serif;
    margin: 0 0 24px;
    max-width: 920px;
    font-size: clamp(2rem, 5.2vw, 5.8rem);
    font-weight: 400;
    line-height: 1.02;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

.case-copy p {
    max-width: 820px;
    margin: 0 0 18px;
    color: var(--muted);
    font-size: clamp(1.05rem, 1.25vw, 1.28rem);
    line-height: 1.5;
}

body.dark-mode .case-copy p {
    color: rgba(244, 241, 232, 0.78);
}

.flow-text-panel {
    margin: 64px 0;
}

.flow-text-panel .case-copy h2 {
    max-width: 1080px;
    font-size: clamp(1.8rem, 4.4vw, 4.9rem);
}

.image-block {
    margin-top: 16px;
    border-radius: 18px;
    overflow: hidden;
    background: #ddd;
}

        .image-block img,
        .image-block video {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center;
            display: block;
        }

        .top-lanches-motion {
            transform: scale(1.04);
        }

.image-block.large {
    height: min(840px, 78vw);
}

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

.image-grid .image-block {
    height: min(680px, 48vw);
    margin-top: 0;
}

.image-block + .image-block,
.image-block + .image-grid,
.image-grid + .image-block,
.image-grid + .image-grid {
    margin-top: 16px;
}

.image-grid .image-block + .image-block {
    margin-top: 0;
}

.post-showcase-box {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 1px solid rgba(245, 243, 237, 0.13);
    background: #fff;
}

body.dark-mode .post-showcase-box {
    background: #101010;
}

.post-showcase-box img {
    width: auto;
    max-width: 100%;
    height: 84%;
    object-fit: contain;
}

.quote-panel {
    margin-top: 16px;
    padding: clamp(32px, 6vw, 96px);
    border-radius: 18px;
    background: var(--dark);
    color: var(--dark-text);
}

body.dark-mode .quote-panel {
    background: var(--surface);
}

.quote-panel p {
    font-family: "Anton", sans-serif;
    max-width: 1180px;
    margin: 0;
    font-size: clamp(2.6rem, 7vw, 8rem);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    text-transform: uppercase;
}

[data-i18n="sealTitle"] {
    font-size: clamp(2.4rem, 6vw, 6.4rem);
}

.similar-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    margin-top: 64px;
    margin-bottom: 32px;
}

.similar-heading h2 {
    font-family: "Anton", sans-serif;
    margin: 0;
    font-size: 4.5em;
    font-weight: 400;
    line-height: 0.96;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    white-space: nowrap;
}

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

.similar-card {
    position: relative;
    display: block;
    min-height: 420px;
    border-radius: 18px;
    overflow: hidden;
    border: none;
    background: #ddd;
    color: #fff;
    text-decoration: none;
    transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.similar-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
    transition: background 0.45s ease;
}

.similar-card img {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
    transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.similar-card:hover img {
    transform: scale(1.035);
}

.similar-card:hover {
    transform: translateY(-4px);
}

.similar-card:hover::after {
    background: rgba(0, 0, 0, 0.32);
}

body.dark-mode .similar-card {
    border: none;
}

body.dark-mode .similar-card::after {
    background: rgba(0, 0, 0, 0.34);
}

body.dark-mode .similar-card:hover::after {
    background: rgba(0, 0, 0, 0.48);
}

.similar-card .card-info {
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 14px;
    color: #fff;
}

.similar-card .card-info h3 {
    position: relative;
    top: -15px;
    margin: 0;
    font-size: 1.08em;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.similar-card .card-subtitle {
    position: relative;
    top: -15px;
    margin: -6px 0 0;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1em;
    line-height: 1.5;
    word-break: break-word;
}

.similar-card .card-tags {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    margin-top: 4px;
}

.similar-card .card-tag,
.similar-card .card-year {
    padding: 8px 12px;
    border-radius: 5px;
    background: rgba(240, 240, 240, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.25);
    backdrop-filter: blur(15px);
    font-size: 0.7em;
    font-weight: 500;
}

.similar-card .card-year {
    margin-left: auto;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.image-block.large {
    position: relative;
    overflow: hidden;
}

.image-block.large video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.footer {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 32px 0 0;
    padding-bottom: 32px;
}

.footer-inner {
    width: 100%;
    padding: 0 16px;
    display: flex;
    justify-content: center;
}

.footer-content {
    width: 100%;
    padding: 20px 24px;
    border-radius: 12px;
    background: #000;
    border: 1px solid rgba(245, 243, 237, 0.13);
    backdrop-filter: blur(10px);
    transition: background-color 0.45s ease, border-color 0.45s ease;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

.footer-content p {
    margin: 0;
    color: #fff;
    font-size: 0.7em;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    opacity: 1;
}

.footer-left {
    max-width: 300px;
    grid-column: 2;
    text-align: center;
}

.footer-right {
    display: flex;
    gap: 6px;
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
}

.footer-right a {
    display: inline-flex;
    align-items: center;
    padding: 12px 12px;
    border-radius: 5px;
    background-color: #000;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

body.dark-mode .footer-right a:hover {
    background: #000;
    background-color: #000;
    color: #fff;
}

.contact-page {
    min-height: 100vh;
}

.contact-hero {
    min-height: calc(100vh - 32px);
    display: flex;
    align-items: flex-end;
    padding: clamp(140px, 18vh, 220px) 16px 32px;
}

.contact-shell {
    width: 100%;
    min-height: min(620px, calc(100vh - 64px));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: clamp(28px, 5vw, 72px);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--surface);
}

.contact-kicker {
    margin: 0;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
}

.contact-email-large {
    width: 100%;
    max-width: none;
    margin-top: auto;
    color: var(--ink);
    font-family: "Anton", sans-serif;
    font-size: clamp(1.35rem, 5.6vw, 9rem);
    line-height: 0.9;
    letter-spacing: 0;
    text-decoration: none;
    white-space: nowrap;
    overflow-wrap: normal;
    word-break: normal;
}

.contact-email-large:hover {
    color: var(--ink);
}

.contact-email-large .button-arrow {
    display: inline-block;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-email-large:hover .button-arrow {
    transform: translateX(10px);
}

.contact-email-local,
.contact-email-domain {
    display: inline;
}

.contact-note {
    max-width: 560px;
    margin: 32px 0 0;
    color: var(--muted);
    font-size: clamp(1rem, 1.35vw, 1.25rem);
    line-height: 1.35;
}

@media (max-width: 900px) {
    header {
        top: 0;
        transform: none;
    }

    header.header--visible {
        transform: none;
    }

    .header-inner {
        padding: 56px 32px;
    }

    .language-switch {
        right: 16px;
        bottom: 16px;
    }

    .hero-content {
        padding: 0 22px 28px;
    }

    .project-intro {
        min-height: auto;
        padding: 180px 20px 28px;
        grid-template-columns: 1fr;
        gap: 44px;
    }

    .project-meta,
    .case-intro,
    .image-grid,
    .similar-grid {
        grid-template-columns: 1fr;
    }

    .case-intro {
        gap: 28px;
        padding: 0 4px;
    }

    .image-block.large,
    .image-grid .image-block {
        height: auto;
    }

    .image-block img,
    .image-block video,
    .image-grid .image-block img,
    .image-grid .image-block video {
        height: auto;
    }

    .similar-heading {
        align-items: flex-start;
        flex-direction: column;
        padding: 0 4px;
    }

    .similar-card {
        min-height: 360px;
    }

    .footer-content {
        align-items: flex-start;
        flex-direction: column;
        display: flex;
        gap: 18px;
    }

    .footer-left,
    .footer-right {
        width: 100%;
    }

    .footer-left {
        max-width: none;
        order: 2;
    }

    .footer-right {
        justify-content: flex-start;
        order: 1;
    }

    .contact-hero {
        min-height: 82vh;
        padding: 120px 16px 16px;
    }

    .contact-shell {
        min-height: min(560px, calc(100vh - 32px));
        border-radius: 12px;
    }
}

@media (max-width: 560px) {
    .page-shell {
        width: calc(100% - 20px);
        margin: 10px auto;
    }

    .header-inner {
        padding: 24px;
    }

    nav {
        overflow: hidden;
        border-radius: 12px;
        align-items: center;
        flex-wrap: wrap;
        transition: min-height 0.35s cubic-bezier(0.22, 1, 0.36, 1), background-color 0.25s ease;
    }

    nav::before {
        border-radius: 12px;
    }

    nav ul,
    .language-switch {
        display: none;
    }

    .mobile-menu-toggle {
        width: 52px;
        height: 42px;
        padding: 0;
        border: 1px solid var(--button-border);
        border-radius: 5px;
        background: var(--button-inverse-bg);
        color: var(--button-inverse-text);
        display: inline-flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        pointer-events: auto;
        touch-action: manipulation;
        position: relative;
        z-index: 4;
    }

    .mobile-menu-toggle span {
        width: 18px;
        height: 2px;
        border-radius: 999px;
        background: currentColor;
        display: block;
        transition: transform 0.25s ease, opacity 0.25s ease;
    }

    nav.mobile-menu-open .mobile-menu-toggle span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }

    nav.mobile-menu-open .mobile-menu-toggle span:nth-child(2) {
        opacity: 0;
    }

    nav.mobile-menu-open .mobile-menu-toggle span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-menu-backdrop {
        display: none;
    }

    nav.mobile-menu-open .mobile-menu-backdrop {
        display: none;
    }

    .mobile-menu-panel {
        position: static;
        width: 100%;
        flex: 0 0 100%;
        margin-top: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        backdrop-filter: none;
        box-shadow: none;
        display: flex;
        flex-direction: column;
        gap: 18px;
        opacity: 0;
        pointer-events: none;
        transform: translateY(-10px);
        transition:
            opacity 0.28s ease,
            transform 0.28s ease,
            max-height 0.35s cubic-bezier(0.22, 1, 0.36, 1),
            margin-top 0.35s cubic-bezier(0.22, 1, 0.36, 1);
        z-index: 3;
        max-height: 0;
        overflow: hidden;
    }

    nav.mobile-menu-open .mobile-menu-panel {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
        margin-top: 34px;
        max-height: 320px;
    }

    nav.mobile-menu-open {
        min-height: 0;
        padding-bottom: 14px;
        align-content: flex-start;
    }

    .mobile-menu-languages {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .mobile-menu-links {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .mobile-menu-divider {
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.32);
    }

    body.dark-mode .mobile-menu-divider {
        background: rgba(245, 243, 237, 0.28);
    }

    .mobile-menu-title {
        margin: 0 0 14px;
        color: #fff;
        font-family: 'Neue Montreal', sans-serif;
        font-size: 0.68rem;
        font-weight: 700;
        letter-spacing: 0.14em;
        text-transform: uppercase;
    }

    .mobile-menu-language,
    .mobile-menu-item,
    .mobile-menu-theme {
        min-height: 0;
        padding: 0;
        border: 0;
        border-radius: 0;
        background: transparent;
        color: #fff;
        font-family: 'Neue Montreal', sans-serif;
        font-size: 0.82rem;
        font-weight: 700;
        letter-spacing: 0.08em;
        line-height: 1.2;
        text-transform: uppercase;
        text-decoration: none;
        display: inline-flex;
        align-items: center;
        justify-content: flex-start;
        transition: background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
    }

    .mobile-menu-theme {
        align-self: flex-start;
    }

    body.dark-mode .mobile-menu-language,
    body.dark-mode .mobile-menu-item,
    body.dark-mode .mobile-menu-theme {
        background: transparent;
        color: #fff;
    }

    .mobile-menu-language.active {
        color: rgba(255, 255, 255, 0.55);
    }

    body.dark-mode .mobile-menu-language.active {
        background: transparent;
        color: rgba(255, 255, 255, 0.55);
    }

    .hero {
        min-height: 82vh;
        border-radius: 12px;
    }

    .hero-title {
        font-size: clamp(3.2rem, 20vw, 6rem);
    }

    .similar-heading h2 {
        font-size: 10vw;
        margin-top: 32px;
        padding: 0;
        white-space: normal;
    }

    .similar-heading {
        padding: 0;
    }

    .quote-panel p,
    .case-copy h2,
    [data-i18n="sealTitle"] {
        font-size: 10vw;
    }

    main > .case-section,
    main > .quote-panel,
    .similar-heading,
    .similar-grid {
        margin-left: 5px;
        margin-right: 5px;
    }

    .case-section,
    .case-section.case-intro,
    .image-grid,
    .similar-heading,
    .similar-grid {
        margin-top: 5px;
        margin-bottom: 0;
    }

    .quote-panel {
        margin-top: 12px;
        margin-bottom: 12px;
    }

    .case-section > .image-block,
    .case-section > .image-grid {
        margin-top: 0;
        margin-left: 0;
        margin-right: 0;
    }

    .image-grid,
    .similar-grid {
        gap: 8px;
    }

    .image-block + .image-block,
    .image-block + .image-grid,
    .image-grid + .image-block,
    .image-grid + .image-grid {
        margin-top: 5px;
    }

    .project-meta {
        gap: 10px;
    }

    .image-block,
    .quote-panel,
    .similar-card,
    .footer-content {
        border-radius: 12px;
    }

    .image-block {
        padding: 0;
    }

    .footer-content {
        display: flex;
        justify-content: center;
        padding: 20px 24px;
    }

    .footer-right {
        display: none;
    }

    .footer-left {
        max-width: none;
        text-align: center;
    }

    .meta-card {
        border-radius: 0;
    }

    .similar-card .card-info {
        inset: 0;
        padding: 24px;
        justify-content: flex-end;
    }

    .similar-card .card-year {
        position: absolute;
        top: 16px;
        right: 16px;
        margin-left: 0;
        z-index: 3;
    }

    .contact-email-large {
        font-size: clamp(3.1rem, 14.5vw, 5.4rem);
        line-height: 0.92;
        white-space: normal;
        overflow-wrap: anywhere;
    }

    .contact-email-local,
    .contact-email-domain {
        display: block;
    }

    .contact-email-large .button-arrow {
        margin-top: 10px;
    }

    .case-section {
        margin-top: 8px;
    }

    .case-section.case-intro {
        margin-top: 32px;
    }
}
