html { scroll-behavior: smooth; }

:root {
    --pmv-primary: #003f8b;
    --pmv-primary-bright: #0055b8;
    --pmv-text: #191c1e;
    --pmv-muted: #5d636b;
    --pmv-soft: #f8f9fb;
    --pmv-soft-2: #f2f4f6;
    --pmv-line: #dfe4eb;
    --pmv-line-soft: rgba(115, 119, 132, .18);
    --pmv-white: #fff;
    --pmv-radius: 10px;
    --pmv-shadow: 0 18px 50px rgba(25, 28, 30, .07);
}

body {
    margin: 0;
    background: var(--pmv-soft);
    color: var(--pmv-text);
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: geometricPrecision;
}

a {
    color: inherit;
}

.material-symbols-outlined {
    font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

.icon-fill {
    font-variation-settings: 'FILL' 1;
}

.bg-blueprint {
    background-image: radial-gradient(#c2c6d5 1px, transparent 1px);
    background-size: 24px 24px;
    opacity: .15;
}

.shadow-precision {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.shadow-precision-hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, .08);
}

.precision-shadow {
    box-shadow: 0 4px 20px rgba(0, 0, 0, .05);
}

.skip-link {
    position: absolute;
    left: -999px;
    top: 12px;
    z-index: 9999;
    padding: 10px 14px;
    background: #191c1e;
    color: #fff;
}

.skip-link:focus {
    left: 12px;
}

.promavi-mobile-panel {
    display: none;
    margin: 0 20px 16px;
    padding: 8px;
    background: rgba(255, 255, 255, .96);
    border: 1px solid var(--pmv-line);
    border-radius: var(--pmv-radius);
    box-shadow: var(--pmv-shadow);
    flex-direction: column;
    gap: 2px;
}

.promavi-mobile-panel.is-open {
    display: flex;
}

.promavi-mobile-panel a {
    display: block;
    padding: 14px 16px;
    border-radius: 10px;
    color: var(--pmv-text);
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
}

.promavi-mobile-panel a:hover {
    background: #f2f4f6;
}

.form-notice {
    padding: 12px 14px;
    border-radius: 10px;
    font-weight: 600;
}

.form-notice-success {
    color: #14532d;
    background: #dcfce7;
}

.form-notice-error {
    color: #7f1d1d;
    background: #fee2e2;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.promavi-shell-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, .88);
    border-bottom: 1px solid var(--pmv-line);
    box-shadow: 0 1px 0 rgba(0, 0, 0, .02);
    backdrop-filter: blur(18px);
}

.promavi-shell-header-inner {
    width: min(1280px, calc(100% - 40px));
    min-height: 78px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 210px 1fr auto auto;
    align-items: center;
    gap: 24px;
}

.promavi-shell-logo {
    display: inline-flex;
    align-items: center;
    width: max-content;
    text-decoration: none;
}

.promavi-shell-logo img {
    display: block;
    width: auto;
    height: 46px;
    max-width: 190px;
    object-fit: contain;
}

.promavi-shell-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
}

.promavi-shell-nav-link {
    position: relative;
    color: var(--pmv-text);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    padding: 10px 0;
    transition: color .18s ease;
}

.promavi-shell-nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 2px;
    height: 2px;
    background: var(--pmv-primary);
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .18s ease;
}

.promavi-shell-nav-link:hover,
.promavi-shell-nav-link.is-active {
    color: var(--pmv-primary);
}

.promavi-shell-nav-link:hover::after,
.promavi-shell-nav-link.is-active::after {
    transform: scaleX(1);
}

.promavi-shell-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 22px;
    border-radius: var(--pmv-radius);
    background: var(--pmv-primary-bright);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 12px 28px rgba(0, 85, 184, .18);
    transition: transform .18s ease, background .18s ease, box-shadow .18s ease;
}

.promavi-shell-cta:hover {
    background: var(--pmv-primary);
    transform: translateY(-1px);
    box-shadow: 0 16px 34px rgba(0, 63, 139, .22);
}

.promavi-shell-menu-toggle {
    display: none;
    justify-self: end;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--pmv-line);
    border-radius: var(--pmv-radius);
    background: #fff;
    color: var(--pmv-primary);
}

.promavi-shell-menu-toggle .material-symbols-outlined {
    font-size: 26px;
}

.promavi-shell-footer {
    background: #e6ecef;
    border-top: 1px solid rgba(25, 28, 30, .05);
}

.promavi-shell-footer-inner {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0;
    display: grid;
    grid-template-columns: minmax(280px, 2fr) minmax(160px, 1fr) minmax(220px, 1fr);
    gap: 56px;
}

.promavi-shell-footer-brand,
.promavi-shell-footer-column {
    display: flex;
    flex-direction: column;
    gap: 13px;
}

.promavi-shell-footer p {
    max-width: 430px;
    margin: 0;
    color: var(--pmv-muted);
    font-size: 15px;
    line-height: 1.65;
}

.promavi-shell-footer h2 {
    margin: 0 0 8px;
    color: var(--pmv-text);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.promavi-shell-footer a {
    color: var(--pmv-muted);
    font-size: 15px;
    line-height: 1.45;
    text-decoration: none;
    transition: color .18s ease;
}

.promavi-shell-footer a:hover,
.promavi-shell-footer a.is-active {
    color: var(--pmv-primary);
}

.promavi-shell-footer-credit a {
    color: var(--pmv-primary);
    font-weight: 760;
}

.legal-page {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(to right, rgba(115, 119, 132, .035) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(115, 119, 132, .035) 1px, transparent 1px),
        var(--pmv-soft);
    background-size: 40px 40px;
}

.legal-hero,
.legal-layout {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.legal-hero {
    padding: 96px 0 56px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 56px;
    align-items: end;
}

.legal-kicker {
    display: inline-flex;
    width: max-content;
    margin-bottom: 20px;
    color: var(--pmv-primary);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 700;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.legal-hero h1 {
    max-width: 860px;
    margin: 0 0 22px;
    color: var(--pmv-text);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.04;
    font-weight: 750;
}

.legal-hero p {
    max-width: 760px;
    margin: 0;
    color: var(--pmv-muted);
    font-size: 19px;
    line-height: 1.7;
}

.legal-hero-panel {
    padding: 28px;
    border: 1px solid var(--pmv-line);
    border-radius: var(--pmv-radius);
    background: rgba(255, 255, 255, .84);
    box-shadow: var(--pmv-shadow);
    backdrop-filter: blur(18px);
}

.legal-hero-panel strong {
    display: block;
    margin-bottom: 10px;
    color: var(--pmv-text);
    font-size: 18px;
}

.legal-hero-panel span,
.legal-hero-panel a {
    display: block;
    color: var(--pmv-muted);
    font-size: 15px;
    line-height: 1.55;
    text-decoration: none;
}

.legal-hero-panel a {
    margin-top: 8px;
    color: var(--pmv-primary);
    font-weight: 700;
}

.legal-layout {
    padding: 0 0 112px;
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 32px;
    align-items: start;
}

.legal-sidebar {
    position: sticky;
    top: 116px;
    padding: 26px;
    border: 1px solid var(--pmv-line);
    border-radius: var(--pmv-radius);
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--pmv-shadow);
}

.legal-sidebar h2 {
    margin: 0 0 16px;
    color: var(--pmv-text);
    font-size: 22px;
    line-height: 1.25;
}

.legal-sidebar p {
    margin: 0 0 22px;
    color: var(--pmv-muted);
    font-size: 15px;
    line-height: 1.65;
}

.legal-sidebar a {
    display: inline-flex;
    color: var(--pmv-primary);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.legal-sidebar-list {
    margin: 22px 0 0;
    padding: 22px 0 0;
    border-top: 1px solid var(--pmv-line);
    display: grid;
    gap: 10px;
}

.legal-sidebar-list span {
    color: var(--pmv-muted);
    font-size: 14px;
    line-height: 1.5;
}

.legal-card {
    border: 1px solid var(--pmv-line);
    border-radius: var(--pmv-radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--pmv-shadow);
    overflow: hidden;
}

.legal-card-header {
    padding: 30px 34px;
    border-bottom: 1px solid var(--pmv-line);
    background: linear-gradient(135deg, rgba(0, 85, 184, .08), rgba(255, 255, 255, .3));
}

.legal-card-header h2 {
    margin: 0 0 10px;
    color: var(--pmv-text);
    font-size: 28px;
    line-height: 1.25;
}

.legal-card-header p {
    max-width: 740px;
    margin: 0;
    color: var(--pmv-muted);
    font-size: 16px;
    line-height: 1.7;
}

.legal-sections {
    display: grid;
}

.legal-section {
    display: grid;
    grid-template-columns: 68px minmax(0, 1fr);
    gap: 22px;
    padding: 30px 34px;
    border-bottom: 1px solid var(--pmv-line-soft);
}

.legal-section:last-child {
    border-bottom: 0;
}

.legal-number,
.legal-icon {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 85, 184, .1);
    color: var(--pmv-primary);
    font-size: 14px;
    font-weight: 800;
}

.legal-icon .material-symbols-outlined {
    font-size: 21px;
}

.legal-section h3 {
    margin: 0 0 10px;
    color: var(--pmv-text);
    font-size: 22px;
    line-height: 1.28;
    font-weight: 720;
}

.legal-section p {
    margin: 0;
    color: var(--pmv-muted);
    font-size: 16px;
    line-height: 1.75;
}

.legal-section a {
    color: var(--pmv-primary);
    font-weight: 700;
    text-decoration: none;
}

.legal-note {
    margin: 24px 34px 34px;
    padding: 22px 24px;
    border: 1px solid rgba(0, 85, 184, .2);
    border-radius: var(--pmv-radius);
    background: rgba(0, 85, 184, .06);
    color: var(--pmv-primary);
    font-size: 15px;
    line-height: 1.65;
}

.project-page {
    overflow: hidden;
    background:
        linear-gradient(to right, rgba(115, 119, 132, .032) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(115, 119, 132, .032) 1px, transparent 1px),
        var(--pmv-soft);
    background-size: 40px 40px;
}

.project-hero,
.project-story,
.project-process,
.project-gallery,
.project-extra,
.project-cta {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
}

.project-hero {
    padding: 72px 0 92px;
}

.project-hero-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    margin-bottom: 42px;
}

.project-back-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pmv-text);
    font-size: 15px;
    font-weight: 650;
    text-decoration: none;
    transition: color .18s ease, transform .18s ease;
}

.project-back-link:hover {
    color: var(--pmv-primary);
    transform: translateX(-2px);
}

.project-back-link .material-symbols-outlined {
    font-size: 20px;
}

.project-kicker,
.project-section-heading span,
.project-cta span {
    display: inline-flex;
    color: var(--pmv-primary);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.project-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 48px;
    align-items: end;
}

.project-hero-copy h1 {
    max-width: 900px;
    margin: 0 0 24px;
    color: var(--pmv-text);
    font-size: clamp(42px, 6vw, 76px);
    line-height: 1.04;
    font-weight: 780;
}

.project-hero-copy p {
    max-width: 760px;
    margin: 0;
    color: var(--pmv-muted);
    font-size: 19px;
    line-height: 1.72;
}

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

.project-button {
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 22px;
    border-radius: var(--pmv-radius);
    font-size: 15px;
    font-weight: 760;
    text-decoration: none;
    transition: transform .18s ease, background .18s ease, border-color .18s ease, color .18s ease, box-shadow .18s ease;
}

.project-button:hover {
    transform: translateY(-1px);
}

.project-button-primary {
    background: var(--pmv-primary-bright);
    color: #fff;
    box-shadow: 0 16px 34px rgba(0, 85, 184, .2);
}

.project-button-primary:hover {
    background: var(--pmv-primary);
}

.project-button-secondary {
    border: 1px solid var(--pmv-primary);
    background: rgba(255, 255, 255, .82);
    color: var(--pmv-primary);
}

.project-button-light {
    background: #fff;
    color: var(--pmv-primary);
    box-shadow: 0 18px 44px rgba(0, 0, 0, .12);
}

.project-scope-card {
    padding: 28px;
    border: 1px solid var(--pmv-line);
    border-radius: var(--pmv-radius);
    background: rgba(255, 255, 255, .9);
    box-shadow: var(--pmv-shadow);
    backdrop-filter: blur(18px);
}

.project-scope-card h2 {
    margin: 0 0 18px;
    color: var(--pmv-text);
    font-size: 22px;
    line-height: 1.25;
}

.project-scope-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.project-scope-tags span {
    padding: 10px 14px;
    border: 1px solid rgba(0, 85, 184, .18);
    border-radius: 999px;
    background: rgba(0, 85, 184, .07);
    color: var(--pmv-primary);
    font-size: 14px;
    font-weight: 700;
}

.project-facts {
    margin-top: 44px;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border: 1px solid var(--pmv-line);
    border-radius: var(--pmv-radius);
    background: rgba(255, 255, 255, .82);
    box-shadow: 0 12px 34px rgba(25, 28, 30, .04);
    overflow: hidden;
}

.project-fact {
    padding: 22px 24px;
    border-right: 1px solid var(--pmv-line);
}

.project-fact:last-child {
    border-right: 0;
}

.project-fact span,
.project-fact strong {
    display: block;
}

.project-fact span {
    margin-bottom: 6px;
    color: var(--pmv-muted);
    font-size: 13px;
    line-height: 1.4;
}

.project-fact strong {
    color: var(--pmv-text);
    font-size: 20px;
    line-height: 1.25;
}

.project-hero-image {
    position: relative;
    margin: 48px 0 0;
    border: 1px solid var(--pmv-line);
    border-radius: var(--pmv-radius);
    box-shadow: 0 28px 70px rgba(25, 28, 30, .1);
    overflow: hidden;
    background: #dbe3ea;
}

.project-hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .18), transparent 45%);
    pointer-events: none;
}

.project-hero-image img {
    width: 100%;
    height: min(58vw, 620px);
    min-height: 360px;
    display: block;
    object-fit: cover;
}

.project-story,
.project-process,
.project-gallery,
.project-extra {
    padding: 92px 0;
    border-top: 1px solid var(--pmv-line-soft);
}

.project-section-heading {
    max-width: 760px;
    margin-bottom: 42px;
}

.project-section-heading-compact {
    margin-bottom: 30px;
}

.project-section-heading h2 {
    margin: 14px 0 14px;
    color: var(--pmv-text);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 1.12;
    font-weight: 760;
}

.project-section-heading p {
    margin: 0;
    color: var(--pmv-muted);
    font-size: 18px;
    line-height: 1.7;
}

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

.project-story-card {
    padding: 32px;
    border: 1px solid var(--pmv-line);
    border-radius: var(--pmv-radius);
    background: rgba(255, 255, 255, .94);
    box-shadow: var(--pmv-shadow);
}

.project-story-card > .material-symbols-outlined {
    width: 46px;
    height: 46px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    background: rgba(0, 85, 184, .1);
    color: var(--pmv-primary);
    font-size: 23px;
}

.project-story-card h3 {
    margin: 0 0 12px;
    color: var(--pmv-text);
    font-size: 24px;
    line-height: 1.25;
}

.project-story-card p {
    margin: 0;
    color: var(--pmv-muted);
    font-size: 16px;
    line-height: 1.75;
}

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

.project-process-step {
    position: relative;
    padding: 28px;
    border: 1px solid var(--pmv-line);
    border-radius: var(--pmv-radius);
    background: rgba(255, 255, 255, .9);
}

.project-process-number {
    margin-bottom: 28px;
    color: var(--pmv-primary);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .08em;
}

.project-process-step h3 {
    margin: 0 0 10px;
    color: var(--pmv-text);
    font-size: 21px;
}

.project-process-step p {
    margin: 0;
    color: var(--pmv-muted);
    font-size: 15px;
    line-height: 1.7;
}

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

.project-gallery figure {
    margin: 0;
    border: 1px solid var(--pmv-line);
    border-radius: var(--pmv-radius);
    background: #fff;
    box-shadow: var(--pmv-shadow);
    overflow: hidden;
}

.project-gallery img {
    width: 100%;
    height: 260px;
    display: block;
    object-fit: cover;
}

.project-gallery figcaption {
    padding: 14px 16px;
    color: var(--pmv-muted);
    font-size: 14px;
    line-height: 1.5;
}

.project-extra article {
    max-width: 840px;
    padding: 34px;
    border: 1px solid var(--pmv-line);
    border-radius: var(--pmv-radius);
    background: #fff;
    box-shadow: var(--pmv-shadow);
    color: var(--pmv-muted);
    font-size: 17px;
    line-height: 1.75;
}

.project-extra h2,
.project-extra h3 {
    color: var(--pmv-text);
}

.project-cta {
    margin-bottom: 92px;
    padding: 54px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
    border-radius: var(--pmv-radius);
    background: var(--pmv-primary);
    color: #fff;
    box-shadow: 0 28px 70px rgba(0, 63, 139, .22);
}

.project-cta span {
    color: rgba(255, 255, 255, .76);
}

.project-cta h2 {
    max-width: 760px;
    margin: 12px 0 12px;
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
    line-height: 1.12;
}

.project-cta p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, .78);
    font-size: 17px;
    line-height: 1.7;
}

.project-overview-dynamic {
    width: min(1280px, calc(100% - 40px));
    margin: 0 auto;
    padding: 0 0 120px;
}

.project-overview-dynamic-inner {
    padding-top: 64px;
    border-top: 1px solid var(--pmv-line-soft);
}

.project-overview-dynamic-heading {
    max-width: 720px;
    margin-bottom: 38px;
}

.project-overview-dynamic-heading span {
    color: var(--pmv-primary);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .11em;
    text-transform: uppercase;
}

.project-overview-dynamic-heading h2 {
    margin: 14px 0 12px;
    color: var(--pmv-text);
    font-size: clamp(34px, 4vw, 50px);
    line-height: 1.08;
    font-weight: 780;
}

.project-overview-dynamic-heading p {
    margin: 0;
    color: var(--pmv-muted);
    font-size: 17px;
    line-height: 1.7;
}

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

.project-overview-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid var(--pmv-line);
    border-radius: var(--pmv-radius);
    background: #fff;
    box-shadow: var(--pmv-shadow);
    overflow: hidden;
    transition: transform .22s ease, box-shadow .22s ease;
}

.project-overview-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(23, 32, 42, .1);
}

.project-overview-card-image {
    position: relative;
    height: 240px;
    overflow: hidden;
    background: #dbe3ea;
}

.project-overview-card-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    transition: transform .7s ease;
}

.project-overview-card:hover .project-overview-card-image img {
    transform: scale(1.04);
}

.project-overview-card-image span {
    position: absolute;
    top: 16px;
    left: 16px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .9);
    color: var(--pmv-primary);
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.project-overview-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 24px;
    padding: 26px;
}

.project-overview-card h3 {
    margin: 0 0 12px;
    color: var(--pmv-text);
    font-size: 23px;
    line-height: 1.18;
    font-weight: 760;
}

.project-overview-card p {
    margin: 0;
    color: var(--pmv-muted);
    font-size: 15px;
    line-height: 1.7;
}

.project-overview-card a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pmv-primary);
    font-size: 14px;
    font-weight: 780;
    text-decoration: none;
}

.project-overview-card a:hover {
    color: var(--pmv-primary-bright);
}

[data-project-filter] {
    transition: background .2s ease, border-color .2s ease, color .2s ease, box-shadow .2s ease, transform .2s ease;
}

[data-project-filter]:hover {
    transform: translateY(-1px);
}

[data-project-filter][aria-pressed="true"] {
    border-color: var(--pmv-primary-bright) !important;
    background: var(--pmv-primary-bright) !important;
    color: #fff !important;
    box-shadow: 0 10px 24px rgba(0, 85, 184, .18);
}

[data-project-filter][aria-pressed="false"] {
    border-color: var(--pmv-line) !important;
    background: #fff !important;
    color: var(--pmv-text) !important;
    box-shadow: none;
}

[data-project-card] {
    transition: opacity .28s ease, transform .28s ease, filter .28s ease;
    will-change: opacity, transform, filter;
}

[data-project-card].is-filtered-out {
    opacity: 0;
    transform: translateY(14px) scale(.985);
    filter: blur(2px);
    pointer-events: none;
}

[data-project-card].is-filtered-in {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
}

[data-project-grid].is-filter-active [data-project-card] {
    grid-column: span 4 / span 4 !important;
    margin-top: 0 !important;
}

[data-project-grid].is-filter-active [data-project-card][hidden] {
    display: none !important;
}

.promavi-card-title-link {
    color: inherit;
    text-decoration: none;
}

.promavi-card-title-link:hover {
    color: var(--pmv-primary);
}

@media (max-width: 900px) {
    .promavi-shell-header-inner {
        min-height: 76px;
        grid-template-columns: 1fr auto;
    }

    [data-project-grid].is-filter-active [data-project-card] {
        grid-column: span 1 / span 1 !important;
    }

    .promavi-shell-nav,
    .promavi-shell-cta {
        display: none;
    }

    .promavi-shell-menu-toggle {
        display: inline-flex;
    }

    .promavi-shell-footer-inner,
    .legal-hero,
    .legal-layout {
        grid-template-columns: 1fr;
    }

    .legal-hero {
        padding: 72px 0 38px;
        gap: 28px;
    }

    .legal-layout {
        padding-bottom: 80px;
    }

    .legal-sidebar {
        position: static;
    }

    .project-hero-grid,
    .project-story-grid,
    .project-process-rail,
    .project-gallery-grid,
    .project-cta,
    .project-overview-dynamic-grid {
        grid-template-columns: 1fr;
    }

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

    .project-fact:nth-child(2n) {
        border-right: 0;
    }

    .project-cta {
        padding: 38px;
    }
}

@media (max-width: 640px) {
    .promavi-shell-header-inner,
    .promavi-shell-footer-inner,
    .legal-hero,
    .legal-layout {
        width: min(100% - 32px, 1280px);
    }

    .promavi-shell-logo img {
        height: 40px;
        max-width: 168px;
    }

    .legal-hero h1 {
        font-size: 38px;
    }

    .legal-hero p {
        font-size: 17px;
    }

    .legal-card-header,
    .legal-section {
        padding: 24px;
    }

    .legal-note {
        margin: 20px 24px 24px;
    }

    .legal-section {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .legal-number,
    .legal-icon {
        width: 38px;
        height: 38px;
    }

    .project-hero,
    .project-story,
    .project-process,
    .project-gallery,
    .project-extra,
    .project-cta,
    .project-overview-dynamic {
        width: min(100% - 32px, 1280px);
    }

    .project-hero {
        padding: 52px 0 70px;
    }

    .project-hero-top {
        align-items: flex-start;
        flex-direction: column;
        margin-bottom: 30px;
    }

    .project-hero-copy h1 {
        font-size: 38px;
    }

    .project-hero-copy p {
        font-size: 17px;
    }

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

    .project-fact {
        border-right: 0;
        border-bottom: 1px solid var(--pmv-line);
    }

    .project-fact:last-child {
        border-bottom: 0;
    }

    .project-hero-image img {
        height: 320px;
        min-height: 320px;
    }

    .project-story,
    .project-process,
    .project-gallery,
    .project-extra {
        padding: 68px 0;
    }

    .project-story-card,
    .project-process-step,
    .project-extra article {
        padding: 24px;
    }

    .project-cta {
        margin-bottom: 68px;
        padding: 30px 24px;
    }
}
