:root {
    --charcoal: #11110f;
    --ink: #1b1a17;
    --linen: #f5f0e8;
    --paper: #fffaf1;
    --gold: #b89b5e;
    --gold-soft: #d9c693;
    --clay: #9b7658;
}

/* 2026-06-15 mobile polish and carousel stability */
.hero-nav,
.project-work-nav {
    pointer-events: none;
    position: absolute;
    z-index: 8;
    display: flex;
    gap: .65rem;
}

.hero-nav {
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
}

.project-work-nav {
    right: 0;
    top: -4.6rem;
}

.hero-nav button,
.project-work-nav button {
    pointer-events: auto;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.34);
    background: rgba(9,9,9,.28);
    color: #fff;
    font-size: 1.45rem;
    line-height: 1;
    backdrop-filter: blur(14px);
    transition: background .25s ease, border-color .25s ease, color .25s ease, opacity .25s ease, transform .25s ease;
}

.project-work-nav button {
    border-color: rgba(17,17,15,.18);
    background: rgba(255,250,241,.82);
    color: var(--charcoal);
}

.hero-nav button:hover,
.project-work-nav button:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-1px);
}

.hero-nav button.swiper-button-disabled,
.project-work-nav button.swiper-button-disabled {
    opacity: .34;
    cursor: default;
}

.project-work-slide .image-reveal::after {
    display: none;
}

.project-work-slide .image-reveal,
.project-work-slide .image-reveal > img,
.project-card-mark,
.project-card-mark::before,
.project-card-mark img,
.project-card-mark span {
    backface-visibility: hidden;
    transform: translateZ(0);
}

.project-card-mark,
.project-card-mark::before {
    will-change: opacity;
}

.project-card-mark img {
    transform: translateZ(0) !important;
}

@media (max-width: 1023px) {
    .mobile-nav {
        font-size: clamp(1.55rem, 7vw, 2.15rem) !important;
        line-height: 1.05;
    }

    .mobile-link {
        padding-top: .55rem;
        padding-bottom: .55rem;
    }

    .mobile-nav > .mobile-link::before,
    .mobile-nav > button.mobile-link::before {
        top: .72rem;
        font-size: .66rem;
    }
}

@media (max-width: 767px) {
    .hero-swiper,
    .hero-swiper .swiper-slide,
    .hero-media,
    .hero-content {
        min-height: 100svh;
    }

    .hero-content {
        justify-content: flex-end;
        padding: 7rem 1.15rem 7.25rem;
    }

    .hero-kicker,
    .hero-content p:not(.hero-kicker) {
        display: none;
    }

    .hero-content h1 {
        max-width: 11ch;
        font-size: clamp(2.55rem, 13vw, 4.45rem) !important;
        line-height: .95;
    }

    .hero-actions {
        margin-top: 1.35rem;
    }

    .hero-proof {
        display: none;
    }

    .hero-overlay {
        opacity: min(var(--hero-overlay-opacity, .42), .5);
    }

    .hero-media::after {
        background:
            linear-gradient(90deg, rgba(0,0,0,.24), rgba(0,0,0,.04) 70%),
            linear-gradient(0deg, rgba(0,0,0,.46), rgba(0,0,0,.06) 54%, rgba(0,0,0,.08)) !important;
    }

    .hero-pagination.swiper-pagination {
        left: 1.15rem;
        right: auto;
        bottom: 2.05rem;
    }

    .hero-nav {
        right: 1rem;
        top: auto;
        bottom: 1.55rem;
        transform: none;
        flex-direction: row;
    }

    .hero-nav button,
    .project-work-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .project-work-swiper {
        padding-bottom: 3.5rem;
    }

    .project-work-nav {
        top: auto;
        right: 0;
        bottom: 0;
    }

    .page-hero-overlay {
        background:
            linear-gradient(90deg, rgba(0,0,0,.24), rgba(0,0,0,.08) 62%, rgba(0,0,0,.02)),
            linear-gradient(0deg, rgba(0,0,0,.24), rgba(0,0,0,.04) 50%) !important;
    }

    .project-detail-overlay {
        background:
            linear-gradient(90deg, rgba(0,0,0,.24), rgba(0,0,0,.08) 60%, rgba(0,0,0,.03)),
            linear-gradient(0deg, rgba(0,0,0,.26), rgba(0,0,0,.04) 50%) !important;
    }
}

.has-project-info-modal {
    overflow: hidden;
}

.project-info-modal[hidden] {
    display: none !important;
}

.project-info-modal {
    position: fixed;
    inset: 0;
    z-index: 130;
    display: grid;
    place-items: center;
    padding: 1.25rem;
}

.project-info-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9,9,9,.72);
    backdrop-filter: blur(12px);
}

.project-info-modal-panel {
    position: relative;
    z-index: 1;
    display: grid;
    width: min(920px, 100%);
    max-height: min(86svh, 760px);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,.14);
    background: var(--linen);
    box-shadow: 0 34px 90px rgba(0,0,0,.34);
}

@media (min-width: 768px) {
    .project-info-modal-panel {
        grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
    }
}

.project-info-modal-panel figure {
    min-height: 280px;
    background: #111;
}

.project-info-modal-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-info-modal-body {
    padding: clamp(1.4rem, 4vw, 3rem);
    color: var(--charcoal);
}

.project-info-modal-body h2 {
    margin-top: .75rem;
    font-size: clamp(2rem, 4vw, 3.6rem);
    font-weight: 650;
    line-height: .98;
}

.project-info-modal-body dl {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(17,17,15,.12);
    padding-top: 1.25rem;
}

.project-info-modal-body dl > div {
    display: grid;
    gap: .35rem;
}

.project-info-modal-body dt {
    font-size: .7rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(17,17,15,.45);
}

.project-info-modal-body dd,
.project-info-modal-body a {
    color: var(--charcoal);
    font-size: 1.05rem;
}

.project-info-modal-body a {
    text-decoration: underline;
    text-underline-offset: .25em;
}

.project-info-modal-close {
    position: absolute;
    right: .9rem;
    top: .9rem;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(9,9,9,.58);
    color: white;
    backdrop-filter: blur(10px);
}

@media (max-width: 767px) {
    .project-info-modal {
        align-items: end;
        padding: .8rem;
    }

    .project-info-modal-panel {
        max-height: 88svh;
        overflow-y: auto;
    }

    .project-info-modal-panel figure {
        min-height: 240px;
        aspect-ratio: 4 / 3;
    }
}

@media (min-width: 1024px) {
    .page-hero,
    .project-detail-hero {
        min-height: 75svh !important;
    }
}

/* Lighter inner-page breadcrumb/page hero overlay for banner.jpg and banner2.jpg. */
.page-hero-overlay {
    background:
        linear-gradient(90deg, rgba(0,0,0,.52), rgba(0,0,0,.28) 52%, rgba(0,0,0,.12)),
        linear-gradient(0deg, rgba(0,0,0,.34), rgba(0,0,0,.12)) !important;
}

@media (max-width: 767px) {
    .page-hero-overlay {
        background:
            linear-gradient(90deg, rgba(0,0,0,.3), rgba(0,0,0,.12) 62%, rgba(0,0,0,.04)),
            linear-gradient(0deg, rgba(0,0,0,.28), rgba(0,0,0,.06) 50%) !important;
    }

    .page-hero .eyebrow,
    .page-hero p:not(.eyebrow),
    .project-detail-hero .eyebrow,
    .project-detail-hero .detail-pill {
        display: none !important;
    }

    .page-hero > .relative,
    .project-detail-hero > .relative {
        display: flex;
        min-height: inherit;
        flex-direction: column;
        justify-content: flex-end;
        padding-top: 6rem !important;
        padding-bottom: 2.35rem !important;
    }

    .page-hero h1,
    .project-detail-hero h1 {
        max-width: 11ch;
        text-shadow: 0 14px 30px rgba(0,0,0,.32);
    }
}

.gallery-manager-page {
    min-height: 100svh;
}

.gallery-manager-panel,
.gallery-upload-card,
.gallery-sort-head {
    border: 1px solid rgba(17,17,15,.1);
    background: rgba(255,250,241,.78);
}

.gallery-manager-panel {
    align-self: start;
    padding: clamp(1.25rem, 3vw, 2rem);
}

.gallery-manager-panel h2,
.gallery-upload-card h2,
.gallery-sort-head h2 {
    font-size: clamp(1.35rem, 2vw, 1.9rem);
    font-weight: 600;
    color: var(--charcoal);
}

.gallery-current-category {
    display: block;
    margin-top: .4rem;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(17,17,15,.52);
}

.gallery-category-form {
    margin-top: 1.5rem;
}

.gallery-category-form label {
    display: block;
    margin-bottom: .55rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: rgba(17,17,15,.58);
}

.gallery-category-form-row {
    display: flex;
    gap: .5rem;
}

.gallery-category-form-row input {
    min-width: 0;
    flex: 1;
    border: 1px solid rgba(17,17,15,.14);
    background: white;
    padding: .82rem .9rem;
    color: var(--charcoal);
}

.gallery-category-form-row button {
    border: 1px solid var(--charcoal);
    background: var(--charcoal);
    padding: .82rem 1rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: white;
}

.gallery-category-list {
    display: grid;
    gap: .55rem;
    margin-top: 1.5rem;
}

.gallery-category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .65rem;
    border: 1px solid rgba(17,17,15,.1);
    background: rgba(255,255,255,.68);
    padding: .42rem .55rem .42rem .85rem;
    text-align: left;
    color: var(--charcoal);
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.gallery-category-select {
    min-width: 0;
    flex: 1;
    padding: .48rem 0;
    text-align: left;
}

.gallery-category-select span {
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.gallery-category-delete {
    display: grid;
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(17,17,15,.1);
    background: rgba(255,255,255,.62);
    color: rgba(17,17,15,.5);
    transition: background .2s ease, border-color .2s ease, color .2s ease;
}

.gallery-category-delete:hover {
    border-color: rgba(159,29,29,.35);
    background: rgba(159,29,29,.1);
    color: #9f1d1d;
}

.gallery-category-item.is-active {
    border-color: var(--gold);
    background: var(--charcoal);
    color: white;
}

.gallery-category-item.is-active .gallery-category-delete {
    border-color: rgba(255,255,255,.14);
    background: rgba(255,255,255,.08);
    color: rgba(255,255,255,.64);
}

.gallery-category-item.is-active .gallery-category-delete:hover {
    border-color: rgba(255,255,255,.24);
    background: rgba(159,29,29,.72);
    color: white;
}

.gallery-category-item i,
.gallery-manager-item i {
    color: var(--gold);
    cursor: grab;
}

.gallery-category-handle {
    flex: 0 0 auto;
    padding: .45rem .2rem;
}

.gallery-manager-main {
    min-width: 0;
}

.gallery-upload-card {
    padding: clamp(1.25rem, 3vw, 2rem);
}

.gallery-dropzone {
    margin-top: 1.5rem;
    min-height: 210px;
    border: 1px dashed rgba(17,17,15,.28) !important;
    background: rgba(255,255,255,.58) !important;
    display: grid;
    place-items: center;
}

.gallery-dropzone .dz-message {
    margin: 0;
    color: var(--charcoal);
}

.gallery-dropzone .dz-message strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 700;
}

.gallery-dropzone .dz-message span {
    display: block;
    margin-top: .35rem;
    color: rgba(17,17,15,.58);
}

.gallery-manager-status {
    min-height: 1.4rem;
    margin-top: .9rem;
    font-size: .9rem;
    color: rgba(17,17,15,.62);
}

.gallery-manager-status.is-error {
    color: #9f1d1d;
}

.gallery-sort-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-top: 1.5rem;
    padding: 1.15rem clamp(1.25rem, 3vw, 2rem);
    box-shadow: 0 18px 42px rgba(17,17,15,.06);
}

.gallery-save-order-btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: .65rem;
    border: 1px solid var(--charcoal);
    background: var(--charcoal);
    padding: 0 1.15rem;
    color: #fff;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    box-shadow: 0 16px 34px rgba(17,17,15,.18);
    transition: transform .22s ease, background .22s ease, border-color .22s ease, color .22s ease, box-shadow .22s ease;
}

.gallery-save-order-btn i {
    color: var(--gold);
    font-size: 1rem;
}

.gallery-save-order-btn:hover {
    transform: translateY(-2px);
    border-color: var(--gold);
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: 0 18px 38px rgba(184,155,94,.28);
}

.gallery-save-order-btn:hover i {
    color: var(--charcoal);
}

.gallery-manager-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.gallery-manager-item {
    position: relative;
    border: 1px solid rgba(17,17,15,.1);
    background: rgba(255,250,241,.78);
    cursor: grab;
}

.gallery-manager-item img {
    aspect-ratio: 4 / 3;
    width: 100%;
    object-fit: cover;
}

.gallery-image-delete {
    position: absolute;
    right: .65rem;
    top: .65rem;
    z-index: 2;
    display: grid;
    width: 38px;
    height: 38px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(9,9,9,.58);
    color: #fff;
    backdrop-filter: blur(12px);
    transition: background .2s ease, border-color .2s ease, color .2s ease, transform .2s ease;
}

.gallery-image-delete:hover {
    transform: translateY(-1px);
    border-color: rgba(255,255,255,.36);
    background: #9f1d1d;
    color: #fff;
}

.gallery-manager-item div {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
    padding: .85rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(17,17,15,.68);
}

.gallery-empty-note {
    margin: 0;
    border: 1px dashed rgba(17,17,15,.18);
    padding: 1rem;
    color: rgba(17,17,15,.58);
}

.gallery-manager-item.sortable-ghost,
.gallery-category-item.sortable-ghost {
    opacity: .42;
}

.gallery-manager-item[hidden],
.gallery-empty-note[hidden] {
    display: none !important;
}

@media (max-width: 900px) {
    .gallery-manager-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .gallery-sort-head,
    .gallery-category-form-row {
        align-items: stretch;
        flex-direction: column;
    }

    .gallery-manager-grid {
        grid-template-columns: 1fr;
    }
}

.reference-table-wrap {
    overflow-x: auto;
    border: 1px solid rgba(17,17,15,.08);
    background: rgba(255,250,241,.62);
}

.reference-table {
    width: 100%;
    border-collapse: collapse;
    color: var(--charcoal);
}

.reference-table th,
.reference-table td {
    border-bottom: 1px solid rgba(17,17,15,.08);
    padding: 1.1rem 1.25rem;
    text-align: left;
}

.reference-table th {
    font-size: .72rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(17,17,15,.46);
}

.reference-table td {
    font-size: 1rem;
    line-height: 1.5;
}

.reference-table td:first-child {
    font-weight: 650;
}

.reference-table tr:last-child td {
    border-bottom: 0;
}

.reference-table tbody tr {
    transition: background .2s ease;
}

.reference-table tbody tr:hover {
    background: rgba(184,155,94,.07);
}

@media (max-width: 767px) {
    .projects-index-section nav[aria-label="Proje filtreleri"] {
        display: grid;
        grid-template-columns: 1fr;
        gap: .45rem;
        margin-bottom: 2rem;
    }

    .projects-index-section .filter-chip {
        width: 100%;
        min-height: 40px;
        padding: .68rem .85rem;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: .68rem;
        letter-spacing: .16em;
        line-height: 1.2;
        text-align: center;
    }

    .reference-table-wrap {
        overflow: visible;
        border-color: rgba(17,17,15,.1);
        background: transparent;
    }

    .reference-table,
    .reference-table tbody,
    .reference-table tr,
    .reference-table td {
        display: block;
        width: 100%;
    }

    .reference-table thead {
        display: none;
    }

    .reference-table tr {
        border: 1px solid rgba(17,17,15,.08);
        background: rgba(255,250,241,.72);
    }

    .reference-table tr + tr {
        margin-top: .7rem;
    }

    .reference-table td {
        display: flex;
        justify-content: space-between;
        gap: 1rem;
        border-bottom: 1px solid rgba(17,17,15,.07);
        padding: .78rem .9rem;
        font-size: .93rem;
    }

    .reference-table td::before {
        content: attr(data-label);
        flex: 0 0 auto;
        font-size: .66rem;
        font-weight: 900;
        letter-spacing: .16em;
        text-transform: uppercase;
        color: rgba(17,17,15,.44);
    }

.reference-table td:last-child {
    border-bottom: 0;
}
}

/* Compact reference index */
.references-inner {
    max-width: 1160px;
}

.references-intro {
    max-width: 1080px;
}

.reference-table-wrap {
    max-width: 1120px;
}

.reference-table {
    table-layout: fixed;
}

.reference-table th,
.reference-table td {
    padding-top: .82rem;
    padding-bottom: .82rem;
}

.reference-table th:nth-child(1),
.reference-table td:nth-child(1) {
    width: 50%;
}

.reference-table th:nth-child(2),
.reference-table td:nth-child(2) {
    width: 34%;
}

.reference-table th:nth-child(3),
.reference-table td:nth-child(3) {
    width: 16%;
    text-align: right;
}

@media (max-width: 767px) {
    .references-inner,
    .references-intro,
    .reference-table-wrap {
        max-width: none;
    }

    .reference-table th,
    .reference-table td {
        width: 100% !important;
        text-align: right;
    }
}

html { background: var(--linen); }
body {
    letter-spacing: 0;
    text-rendering: optimizeLegibility;
}
body::before {
    content: "";
    position: fixed;
    inset: 0;
    z-index: 120;
    pointer-events: none;
    opacity: .045;
    background-image:
        linear-gradient(0deg, rgba(17,17,15,.7), rgba(17,17,15,.7)),
        repeating-linear-gradient(90deg, transparent 0 2px, rgba(255,255,255,.85) 2px 3px);
    mix-blend-mode: multiply;
}
[x-cloak] { display: none !important; }

.skip-link {
    position: absolute;
    left: 1rem;
    top: -4rem;
    z-index: 100;
    background: white;
    color: var(--charcoal);
    padding: .75rem 1rem;
}
.skip-link:focus { top: 1rem; }

.site-header {
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 80;
    height: 86px;
    transition: background .35s ease, border-color .35s ease, backdrop-filter .35s ease, transform .35s ease, height .35s ease;
}
.site-header.is-inner,
.site-header.is-scrolled {
    height: 78px;
    background: rgba(17, 17, 15, .9);
    border-bottom: 1px solid rgba(255,255,255,.1);
    backdrop-filter: blur(18px);
}
.brand-mark {
    display: inline-grid;
    place-items: center;
    width: 54px;
    height: 54px;
    border: 1px solid rgba(184,155,94,.55);
    color: white;
    font-weight: 900;
}
.site-logo-dark {
    display: none;
}
.site-header.is-inner .site-logo-light,
.site-header.is-scrolled .site-logo-light {
    display: none;
}
.site-header.is-inner .site-logo-dark,
.site-header.is-scrolled .site-logo-dark {
    display: block;
}
.nav-link { position: relative; padding-bottom: 3px; transition: color .25s ease; }
.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -7px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .3s ease;
}
.nav-link:hover { color: var(--gold); }
.nav-link:hover::after { transform: scaleX(1); transform-origin: left; }
.nav-caret {
    display: inline-flex;
    width: .78rem;
    height: .78rem;
    align-items: center;
    justify-content: center;
    font-size: .68rem;
    line-height: 1;
    transform-origin: center;
    transition: transform .25s ease;
}
.group:hover .nav-caret { transform: rotate(180deg); }
.dropdown-link {
    display: block;
    padding: .85rem 1rem;
    color: rgba(255,255,255,.72);
    transition: background .25s ease, color .25s ease, transform .25s ease;
}
.dropdown-link:hover { background: rgba(255,255,255,.06); color: white; transform: translateX(4px); }
.hamburger {
    width: 48px;
    height: 48px;
    border: 1px solid rgba(255,255,255,.22);
    background: rgba(255,255,255,.06);
    backdrop-filter: blur(12px);
}
.hamburger span {
    position: absolute;
    left: 13px;
    width: 20px;
    height: 2px;
    background: white;
    transition: transform .28s ease, top .28s ease, opacity .28s ease;
}
.hamburger span:nth-child(1) { top: 15px; }
.hamburger span:nth-child(2) { top: 23px; }
.hamburger span:nth-child(3) { top: 31px; }
.hamburger.is-active span:nth-child(1) { top: 23px; transform: rotate(45deg); }
.hamburger.is-active span:nth-child(2) { opacity: 0; }
.hamburger.is-active span:nth-child(3) { top: 23px; transform: rotate(-45deg); }
.mobile-panel {
    position: fixed;
    inset: 0;
    z-index: 40;
    background:
        linear-gradient(135deg, rgba(255,255,255,.045), transparent 32%),
        radial-gradient(circle at 82% 18%, rgba(184,155,94,.2), transparent 35%),
        rgba(17,17,15,.985);
}
.mobile-panel::before {
    content: "";
    position: absolute;
    inset: 76px 1.25rem auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(184,155,94,.65), transparent);
}
.mobile-link {
    display: block;
    padding: .62rem 0;
    line-height: 1.08;
    border-bottom: 1px solid rgba(255,255,255,.075);
}
.mobile-nav { counter-reset: mobile-nav; }
.mobile-nav > .mobile-link,
.mobile-nav > button.mobile-link {
    position: relative;
    padding-left: 2.7rem;
}
.mobile-nav > .mobile-link::before,
.mobile-nav > button.mobile-link::before {
    counter-increment: mobile-nav;
    content: "0" counter(mobile-nav);
    position: absolute;
    left: 0;
    top: .9rem;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .18em;
    color: var(--gold);
}
.mobile-contact {
    background: rgba(255,255,255,.04);
    margin-inline: -0.25rem;
    padding: 1.25rem;
}

.hero-swiper,
.hero-swiper .swiper-slide,
.hero-media {
    position: relative;
    min-height: 100svh;
}
.hero-media { position: absolute; inset: 0; }
.hero-overlay {
    background: #000;
    opacity: var(--hero-overlay-opacity, .6);
}
.hero-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(10,10,8,.34) 0%, rgba(10,10,8,.16) 42%, rgba(10,10,8,.04) 100%),
        linear-gradient(0deg, rgba(10,10,8,.24) 0%, transparent 46%, rgba(10,10,8,.14) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 100svh;
    max-width: 1280px;
    margin: 0 auto;
    flex-direction: column;
    justify-content: center;
    padding: 8rem 1.25rem 4rem;
    color: white;
}
.hero-copy {
    position: relative;
    max-width: 980px;
}
.hero-copy::before {
    content: "";
    position: absolute;
    left: -1.5rem;
    top: .25rem;
    width: 1px;
    height: 86%;
    background: linear-gradient(var(--gold), transparent);
}
.hero-content h1 {
    max-width: 920px;
    font-size: clamp(3.45rem, 8.6vw, 8.6rem);
    font-weight: 900;
    line-height: .88;
}
.hero-content p:not(.hero-kicker) {
    margin-top: 1.6rem;
    max-width: 650px;
    font-size: clamp(1.05rem, 2.5vw, 1.45rem);
    line-height: 1.55;
    color: rgba(255,255,255,.72);
}
.hero-proof {
    position: absolute;
    right: 1.25rem;
    bottom: 2.25rem;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: min(520px, calc(100% - 2.5rem));
    border: 1px solid rgba(255,255,255,.16);
    background: rgba(17,17,15,.42);
    backdrop-filter: blur(18px);
}
.hero-proof div {
    padding: 1rem 1.1rem;
}
.hero-proof div + div { border-left: 1px solid rgba(255,255,255,.12); }
.hero-proof strong {
    display: block;
    color: white;
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    line-height: 1;
}
.hero-proof span {
    display: block;
    margin-top: .4rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.52);
}
.hero-kicker,
.eyebrow {
    font-size: .78rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .22em;
}
.hero-pagination.swiper-pagination {
    left: auto;
    right: 1.25rem;
    bottom: 2rem;
    width: auto;
}
.swiper-pagination-bullet {
    width: 34px;
    height: 2px;
    border-radius: 0;
    background: rgba(255,255,255,.5);
    opacity: 1;
}
.swiper-pagination-bullet-active { background: var(--gold); }

.btn {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 0 1.35rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: .78rem;
    border-radius: 0;
    transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-gold { background: var(--gold); color: var(--charcoal); box-shadow: 0 18px 42px rgba(184,155,94,.22); }
.btn-gold:hover { background: var(--gold-soft); }
.btn-dark { background: var(--charcoal); color: white; box-shadow: 0 18px 38px rgba(17,17,15,.18); }
.btn-ghost { border: 1px solid rgba(255,255,255,.32); color: white; }
.btn-ghost:hover { border-color: white; }

.page-hero,
.project-detail-hero {
    position: relative;
    min-height: 58svh;
    overflow: hidden;
}
.project-detail-hero { min-height: 72svh; }
.project-detail-overlay {
    background:
        linear-gradient(90deg, rgba(0,0,0,.36), rgba(0,0,0,.18) 54%, rgba(0,0,0,.08)),
        linear-gradient(0deg, rgba(0,0,0,.34), rgba(0,0,0,.06) 48%);
}
.section-heading { max-width: 780px; }
.home-projects {
    position: relative;
    background:
        linear-gradient(90deg, rgba(17,17,15,.06) 1px, transparent 1px),
        var(--linen);
    background-size: 96px 96px;
}
.home-projects::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(17,17,15,.16), transparent);
}
.project-grid-featured {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 768px) {
    .project-grid-featured { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (min-width: 1024px) {
    .project-grid-featured { grid-template-columns: repeat(3, minmax(0, 1fr)); align-items: start; }
    .project-grid-featured .project-card:nth-child(2) { margin-top: 3.5rem; }
    .project-grid-featured .project-card:nth-child(3) { margin-top: 1.25rem; }
}
.project-card {
    position: relative;
    transition: transform .35s ease;
}
.project-card::before {
    content: "";
    position: absolute;
    inset: 10px -10px -10px 10px;
    z-index: 0;
    border: 1px solid rgba(184,155,94,.22);
    opacity: 0;
    transition: opacity .35s ease, transform .35s ease;
}
.project-card > a,
.project-card > button { position: relative; z-index: 1; }
.project-card-body {
    border: 1px solid rgba(17,17,15,.1);
    border-top: 0;
    background: rgba(255,255,255,.82);
    padding: 1.35rem;
    box-shadow: 0 18px 50px rgba(17,17,15,.065);
}
.project-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    font-size: .72rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--clay);
}
.project-arrow {
    color: var(--gold);
    transition: transform .28s ease;
}

.project-map {
    height: clamp(340px, 42vw, 520px);
    min-height: 0;
    width: 100%;
    border: 1px solid rgba(21,21,21,.12);
    background: #e8e3d9;
    z-index: 1;
}

.project-gallery-section .section-heading h2,
.project-gallery-section .section-heading p {
    color: var(--text-dark) !important;
}

.project-gallery-section {
    overflow-x: clip;
}

.project-gallery-section .section-heading p:not(.eyebrow) {
    color: var(--text-muted) !important;
    opacity: 1;
}

.project-gallery-shell {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(21,21,21,.12);
    background: #111;
}

.project-gallery {
    overflow: hidden;
}

.project-gallery .swiper-slide {
    display: grid;
    aspect-ratio: 16 / 10;
    place-items: center;
    background: #111;
}

.project-gallery .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-gallery .gallery-pagination.swiper-pagination {
    position: absolute;
    left: 50%;
    right: auto;
    bottom: 18px;
    z-index: 6;
    display: inline-flex;
    width: auto !important;
    transform: translateX(-50%);
    gap: .55rem;
    border: 1px solid rgba(255,255,255,.18);
    background: rgba(9,9,9,.52);
    padding: .45rem .6rem;
    backdrop-filter: blur(12px);
}

.project-gallery .swiper-pagination-bullet {
    width: 7px;
    height: 7px;
    margin: 0 !important;
    background: rgba(255,255,255,.55);
    opacity: 1;
}

.project-gallery .swiper-pagination-bullet-active {
    background: #fff;
}

.project-gallery-section .gallery-button {
    position: absolute;
    top: 50%;
    z-index: 7;
    width: 54px;
    height: 54px;
    transform: translateY(-50%);
    border-color: rgba(255,255,255,.3);
    color: #fff;
    background: rgba(9,9,9,.48);
    backdrop-filter: blur(12px);
}

.project-gallery-section .gallery-button:hover {
    border-color: rgba(255,255,255,.72);
    background: rgba(255,255,255,.94);
    color: var(--text-dark);
}

.project-gallery-section .gallery-prev {
    left: 18px;
}

.project-gallery-section .gallery-next {
    right: 18px;
}

@media (max-width: 767px) {
    .project-gallery .swiper-slide {
        aspect-ratio: 4 / 5;
    }

    .project-gallery-section .gallery-button {
        top: auto;
        bottom: 16px;
        width: 46px;
        height: 46px;
        transform: none;
    }

    .project-gallery-section .gallery-prev {
        left: 16px;
    }

    .project-gallery-section .gallery-next {
        right: 16px;
    }

    .project-gallery .gallery-pagination.swiper-pagination {
        bottom: 20px;
    }
}
@media (hover: hover) {
    .project-card:hover { transform: translateY(-8px); }
    .project-card:hover::before { opacity: 1; transform: translate(6px, 6px); }
    .project-card:hover .project-arrow { transform: translateX(5px); }
}
.home-corporate {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(17,17,15,.98), rgba(24,23,20,.96)),
        var(--charcoal);
}
.home-corporate::after {
    content: "";
    position: absolute;
    right: -8vw;
    top: 8%;
    width: 34vw;
    height: 70%;
    border: 1px solid rgba(184,155,94,.12);
    transform: rotate(8deg);
}
.metric {
    border: 1px solid rgba(255,255,255,.13);
    background: rgba(255,255,255,.035);
    padding: 1.25rem;
}
.metric strong { display: block; font-size: 2.5rem; line-height: 1; color: var(--gold); }
.metric span { display: block; margin-top: .45rem; color: rgba(255,255,255,.58); }
.showcase-section {
    background:
        linear-gradient(rgba(27,26,23,.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(27,26,23,.045) 1px, transparent 1px),
        var(--linen);
    background-size: 42px 42px;
}
.showcase-grid {
    display: grid;
    gap: 1.5rem;
}
@media (min-width: 1024px) {
    .showcase-grid {
        grid-template-columns: repeat(12, minmax(0, 1fr));
        align-items: end;
    }
    .showcase-note {
        grid-column: span 5 / span 5;
        margin-bottom: 2rem;
        padding: 2.5rem;
        background: rgba(255,250,241,.82);
        border: 1px solid rgba(17,17,15,.08);
        box-shadow: 0 24px 70px rgba(17,17,15,.08);
    }
}
.cta-band {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(120deg, rgba(17,17,15,.96), rgba(45,40,32,.94)),
        var(--charcoal);
}
.cta-band::before {
    content: "";
    position: absolute;
    inset: 1.25rem;
    border: 1px solid rgba(255,255,255,.08);
    pointer-events: none;
}
.cta-band::after {
    content: "";
    position: absolute;
    right: 8%;
    top: -30%;
    width: 24rem;
    height: 24rem;
    border: 1px solid rgba(184,155,94,.18);
    transform: rotate(18deg);
}
.premium-panel,
.contact-card,
.partner-card {
    border: 1px solid rgba(17,17,15,.1);
    background: rgba(255,255,255,.72);
    padding: clamp(1.5rem, 4vw, 3rem);
}
.partner-card {
    display: flex;
    min-height: 176px;
    flex-direction: column;
    gap: 1.15rem;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    transition: transform .25s ease, border-color .25s ease, background .25s ease;
}
.partner-card:hover { transform: translateY(-4px); border-color: rgba(184,155,94,.5); background: white; }
.partner-logo-frame {
    display: flex;
    width: 100%;
    height: 4.75rem;
    align-items: center;
    justify-content: center;
}
.partner-logo-frame img {
    max-width: min(12rem, 82%);
    max-height: 3.75rem;
    object-fit: contain;
}
.partner-logo-frame span {
    max-width: 90%;
    font-size: 1.15rem;
    font-weight: 800;
    line-height: 1.15;
    color: var(--text-dark);
}
.partner-description {
    max-width: 18rem;
    font-size: .9rem;
    line-height: 1.6;
    min-height: 1.45em;
}
.corporate-page-copy p {
    margin-top: 1.25rem;
}
.corporate-page-copy p:first-child {
    margin-top: 0;
}
.contact-card span {
    display: block;
    font-size: .78rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--clay);
}
.contact-card strong {
    display: block;
    margin-top: .5rem;
    font-size: clamp(1.25rem, 3vw, 1.8rem);
    color: var(--charcoal);
    overflow-wrap: anywhere;
}
.filter-chip,
.detail-pill,
.social-chip {
    border: 1px solid rgba(17,17,15,.14);
    padding: .8rem 1rem;
    font-size: .75rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--charcoal);
    background: rgba(255,255,255,.55);
}
.filter-chip.is-active,
.filter-chip:hover { background: var(--charcoal); color: white; }
.detail-pill { border-color: rgba(255,255,255,.22); color: white; background: rgba(255,255,255,.08); }
.social-chip { border-color: rgba(255,255,255,.16); color: rgba(255,255,255,.72); background: transparent; }
.site-footer {
    position: relative;
    overflow: hidden;
    background:
        linear-gradient(180deg, #11110f, #090908),
        var(--charcoal);
}
.site-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px);
    background-size: 86px 86px;
    mask-image: linear-gradient(180deg, transparent, #000 20%, #000 80%, transparent);
    pointer-events: none;
}
.site-footer > * { position: relative; }
.footer-title {
    font-size: .8rem;
    font-weight: 900;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--gold);
}
.gallery-button {
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.22);
    color: white;
}
.form-placeholder {
    border: 1px solid rgba(17,17,15,.12);
    background: white;
    padding: 1rem;
    color: rgba(17,17,15,.45);
}

.image-reveal { position: relative; }
.image-reveal::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 2;
    background: linear-gradient(180deg, var(--linen), #e7dac7);
    transform-origin: top;
    pointer-events: none;
    transition: transform 1.05s cubic-bezier(.77,0,.18,1);
}
.bg-charcoal .image-reveal::after,
.home-corporate .image-reveal::after { background: linear-gradient(180deg, #25231f, #11110f); }
.image-reveal.is-revealed::after { transform: scaleY(0); }
.architectural-mask {
    clip-path: polygon(0 0, 88% 0, 100% 100%, 0 100%);
}

@media (max-width: 767px) {
    .site-header,
    .site-header.is-scrolled { height: 76px; }
    .hero-content {
        /*justify-content: flex-end;*/
        padding: 7rem 1.25rem 12.5rem;
    }
    .hero-copy::before { left: -0.75rem; }
    .hero-content h1 {
        font-size: clamp(3rem, 15vw, 4.55rem);
        line-height: .9;
    }
    .hero-proof {
        right: 1.25rem;
        bottom: 1rem;
        grid-template-columns: 1fr;
    }
    .hero-proof div {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 1rem;
        padding: .78rem .9rem;
    }
    .hero-proof div + div {
        border-left: 0;
        border-top: 1px solid rgba(255,255,255,.12);
    }
    .hero-proof span {
        margin-top: 0;
        text-align: right;
    }
    .btn { width: 100%; }
    .project-card-body { padding: 1.1rem; }
    .project-meta { align-items: flex-start; flex-direction: column; gap: .35rem; }
    .architectural-mask { clip-path: none; }
    .cta-band::before { inset: .75rem; }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: .001ms !important;
        transition-duration: .001ms !important;
        scroll-behavior: auto !important;
    }
    .image-reveal::after { display: none; }
}

/* Architecture studio visual direction */
body {
    background: #f7f5f0;
    color: #151515;
    font-family: "Urbanist", ui-sans-serif, system-ui, sans-serif !important;
    font-weight: 400;
}

body::before {
    display: none;
}

.site-header {
    height: 72px;
}

.site-header.is-inner,
.site-header.is-scrolled {
    height: 68px;
    background: rgba(247, 245, 240, .88);
    border-bottom: 1px solid rgba(21, 21, 21, .1);
    backdrop-filter: blur(18px);
}

.site-header.is-inner .nav-link,
.site-header.is-scrolled .nav-link,
.site-header.is-inner .hidden.text-sm,
.site-header.is-scrolled .hidden.text-sm {
    color: rgba(21, 21, 21, .72);
}

.site-header.is-inner .brand-mark,
.site-header.is-scrolled .brand-mark {
    color: #151515;
    border-color: rgba(21, 21, 21, .22);
}

.nav-link {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
}

.nav-link::after {
    bottom: -9px;
    background: #151515;
}

.dropdown-link {
    color: rgba(21, 21, 21, .68);
}

.group .absolute.bg-charcoal\/95 {
    background: rgba(247,245,240,.96);
    border-color: rgba(21,21,21,.1);
}

.hamburger {
    border-color: rgba(255,255,255,.38);
    background: rgba(255,255,255,.08);
}

.site-header.is-inner .hamburger,
.site-header.is-scrolled .hamburger {
    border-color: rgba(21,21,21,.18);
    background: rgba(21,21,21,.03);
}

.site-header.is-inner .hamburger span,
.site-header.is-scrolled .hamburger span {
    background: #151515;
}

.mobile-panel {
    background: #111;
}

.mobile-panel::before {
    background: rgba(255,255,255,.14);
}

.mobile-link {
    border-bottom-color: rgba(255,255,255,.1);
    font-weight: 500;
}

.mobile-nav > .mobile-link::before,
.mobile-nav > button.mobile-link::before {
    color: rgba(255,255,255,.42);
}

.hero-swiper,
.hero-swiper .swiper-slide,
.hero-media {
    min-height: 92svh;
}

.hero-content {
    min-height: 92svh;
    padding-top: 7rem;
    padding-bottom: 3.75rem;
}

.hero-media::after {
    background:
        linear-gradient(90deg, rgba(0,0,0,.42), rgba(0,0,0,.08) 62%),
        linear-gradient(0deg, rgba(0,0,0,.35), transparent 44%);
}

.hero-copy::before {
    display: none;
}

.hero-kicker,
.eyebrow {
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .18em;
}

.hero-content h1 {
    max-width: 760px;
    font-size: clamp(3.1rem, 7vw, 6.4rem);
    font-weight: 600;
    line-height: .98;
}

.hero-content p:not(.hero-kicker) {
    max-width: 560px;
    font-size: clamp(1rem, 1.6vw, 1.2rem);
    color: rgba(255,255,255,.76);
}

.hero-proof {
    right: auto;
    left: 1.25rem;
    bottom: 2rem;
    width: min(560px, calc(100% - 2.5rem));
    border: 0;
    background: transparent;
    backdrop-filter: none;
}

.hero-proof div {
    padding: .85rem 0;
    border-top: 1px solid rgba(255,255,255,.38);
}

.hero-proof div + div {
    border-left: 0;
    margin-left: 1.25rem;
}

.hero-proof strong {
    font-size: 1.05rem;
    font-weight: 600;
}

.hero-proof span {
    font-size: .62rem;
    color: var(--text-light) !important;
}

.swiper-pagination-bullet {
    width: 24px;
    background: rgba(255,255,255,.52);
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.btn,
.cta-link {
    min-height: auto;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
    color: currentColor;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
}

.btn-gold,
.btn-dark {
    background: transparent;
    color: inherit;
    box-shadow: none;
}

.btn-gold::after,
.btn-dark::after,
.btn-ghost::after,
.cta-link::after {
    content: "";
    display: block;
    height: 1px;
    margin-top: .45rem;
    background: currentColor;
    transform: scaleX(.4);
    transform-origin: left;
    transition: transform .25s ease;
}

.btn:hover,
.cta-link:hover {
    transform: none;
}

.btn:hover::after,
.cta-link:hover::after {
    transform: scaleX(1);
}

.btn-ghost {
    border: 0;
}

.editorial-intro,
.service-strip,
.home-projects,
.process-section,
.minimal-stats,
.showcase-section {
    background: #f7f5f0;
}

.home-projects {
    background: #f7f5f0;
}

.home-projects::before,
.home-corporate::after,
.cta-band::before,
.cta-band::after {
    display: none;
}

.section-heading h2,
.showcase-note h2,
.process-section h2 {
    font-weight: 600;
    letter-spacing: 0;
}

.section-heading p,
.process-section p,
.showcase-note p {
    color: rgba(21,21,21,.58);
}

.service-cell {
    min-height: 190px;
    background: #f7f5f0;
    padding: 1.5rem;
}

.service-cell span {
    display: block;
    margin-bottom: 2rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .16em;
    color: rgba(21,21,21,.38);
}

.service-cell h3 {
    font-size: 1.05rem;
    font-weight: 600;
}

.service-cell p {
    margin-top: .85rem;
    max-width: 23rem;
    font-size: .92rem;
    line-height: 1.65;
    color: rgba(21,21,21,.58);
}

.project-grid-featured {
    gap: 1rem;
}

@media (min-width: 1024px) {
    .project-grid-featured .project-card:nth-child(2),
    .project-grid-featured .project-card:nth-child(3) {
        margin-top: 0;
    }
}

.project-card::before {
    display: none;
}

.project-card {
    transform: none;
}

.project-card-body {
    border: 0;
    background: transparent;
    padding: 1rem 0 0;
    box-shadow: none;
}

.project-meta {
    justify-content: flex-start;
    gap: .65rem;
    font-size: .62rem;
    letter-spacing: .13em;
    color: rgba(21,21,21,.42);
}

.project-meta span + span::before {
    content: "/";
    margin-right: .65rem;
    color: rgba(21,21,21,.24);
}

.project-card h3 {
    font-weight: 600;
}

.project-arrow {
    color: rgba(21,21,21,.58);
}

@media (hover: hover) {
    .project-card:hover {
        transform: none;
    }
    .project-card .image-reveal > img {
        transition: transform 1.1s cubic-bezier(.22,1,.36,1);
    }
    .project-card:hover .image-reveal > img {
        transform: scale(1.035);
    }
}

.process-list {
    border-top: 1px solid rgba(21,21,21,.12);
}

.process-list div {
    display: grid;
    gap: .75rem;
    padding: 1.15rem 0;
    border-bottom: 1px solid rgba(21,21,21,.12);
}

.process-list strong {
    font-weight: 600;
}

.process-list span {
    color: rgba(21,21,21,.55);
    line-height: 1.65;
}

.technical-drawing {
    background: #efebe2;
    border: 1px solid rgba(21,21,21,.08);
}

.technical-drawing img {
    opacity: .78;
    filter: saturate(.45) contrast(.9);
}

.cinematic-banner {
    position: relative;
    min-height: 62svh;
    overflow: hidden;
    background: #111;
}

.cinematic-banner img,
.cta-band > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cinematic-banner::after,
.cta-band::after {
    content: "";
    display: none;
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0,0,0,.52), rgba(0,0,0,.08));
}

.cinematic-content {
    position: absolute;
    left: max(1.25rem, calc((100vw - 1280px) / 2));
    right: 1.25rem;
    bottom: 2.25rem;
    z-index: 2;
    color: white;
}

.cinematic-content h2 {
    margin-top: .9rem;
    max-width: 640px;
    font-size: clamp(2.5rem, 5vw, 5.2rem);
    font-weight: 600;
    line-height: .98;
}

.cinematic-content a {
    display: inline-block;
    margin-top: 1.5rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.minimal-stats > div > div {
    background: #f7f5f0;
    padding: 1.5rem 0;
}

.minimal-stats strong {
    display: block;
    font-size: 1.45rem;
    font-weight: 600;
}

.minimal-stats span {
    display: block;
    margin-top: .35rem;
    font-size: .68rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(21,21,21,.45);
}

.home-corporate {
    background: #050505;
}

.home-corporate h2 {
    font-weight: 600;
}

.showcase-section {
    background: #f7f5f0;
}

.showcase-note {
    border: 0;
    box-shadow: none;
    background: transparent;
}

.cta-band {
    min-height: 48svh;
    background: #111;
}

.cta-band > div {
    position: relative;
    z-index: 2;
    min-height: 48svh;
    align-content: end;
}

.cta-link {
    color: white;
    text-transform: uppercase;
}

.site-footer {
    background: #f7f5f0;
    color: #151515;
    border-top: 1px solid rgba(21,21,21,.1);
}

.site-footer::before {
    display: none;
}

.site-footer .brand-mark {
    color: #151515;
    border-color: rgba(21,21,21,.18);
}

.site-footer p,
.site-footer .text-white\/68,
.site-footer .text-white\/45 {
    color: rgba(21,21,21,.56);
}

.site-footer .border-white\/10 {
    border-color: rgba(21,21,21,.1);
}

.footer-title {
    color: rgba(21,21,21,.42);
}

.social-chip {
    border-color: rgba(21,21,21,.12);
    color: rgba(21,21,21,.6);
}

.image-reveal::after {
    background: #f7f5f0;
}

@media (max-width: 767px) {
    .hero-swiper,
    .hero-swiper .swiper-slide,
    .hero-media,
    .hero-content {
        min-height: 90svh;
    }

    .hero-content {
        padding: 6rem 1.25rem 11rem;
    }

    .hero-content h1 {
        font-size: clamp(2.8rem, 13vw, 4.2rem);
    }

    .hero-proof {
        bottom: 1rem;
        grid-template-columns: 1fr;
    }

    .hero-proof div + div {
        margin-left: 0;
    }

    .service-cell {
        min-height: auto;
    }

    .cinematic-banner,
    .cta-band,
    .cta-band > div {
        min-height: 54svh;
    }

    .minimal-stats > div > div {
        padding: 1.25rem;
    }
}

/* Contrast and readability hardening */
:root {
    --text-dark: #151515;
    --text-muted: #4a4a4a;
    --surface-light: #f7f5f0;
    --surface-light-2: #faf8f3;
    --surface-dark: #090909;
    --surface-dark-2: #111111;
    --text-light: #f7f5f0;
    --accent-gold: #b99a5f;
}

.site-wide {
    width: min(100% - 48px, 1728px);
}

body {
    background: var(--surface-light);
    color: var(--text-dark);
}

a,
button {
    color: inherit;
}

main section:not(.home-corporate):not(.cinematic-banner):not(.cta-band):not(.project-detail-hero):not(.page-hero):not(.hero-swiper):not(.bg-charcoal),
.premium-panel,
.contact-card,
.partner-card,
.project-card-body {
    color: var(--text-dark);
}

[class*="text-charcoal/"],
[class*="text-black/"],
.section-heading p,
.editorial-intro p:not(.eyebrow),
.service-cell p,
.process-list span,
.showcase-note p,
.project-card p,
.project-meta,
.filter-chip,
.contact-card,
.partner-card {
    color: var(--text-muted) !important;
}

h1,
h2,
h3,
h4,
.project-card h3,
.contact-card strong,
.premium-panel h2,
.service-cell h3,
.process-list strong {
    color: var(--text-dark);
}

.home-corporate,
.cinematic-banner,
.cta-band,
.project-detail-hero,
.page-hero,
.hero-swiper,
.bg-charcoal {
    color: var(--text-light);
}

.home-corporate h1,
.home-corporate h2,
.home-corporate h3,
.cinematic-banner h1,
.cinematic-banner h2,
.cinematic-banner h3,
.cta-band h1,
.cta-band h2,
.cta-band h3,
.project-detail-hero h1,
.page-hero h1,
.hero-swiper h1,
.bg-charcoal h1,
.bg-charcoal h2,
.bg-charcoal h3 {
    color: #ffffff !important;
}

.home-corporate p,
.home-corporate div,
.cinematic-banner p,
.cta-band p,
.project-detail-hero p,
.page-hero p,
.hero-swiper p,
.bg-charcoal p,
.bg-charcoal .section-heading p,
[class*="text-white/"] {
    color: var(--text-light) !important;
}

.eyebrow,
.hero-kicker,
.footer-title,
.project-meta,
.minimal-stats span,
.service-cell span {
    color: var(--text-muted) !important;
}

.home-corporate .eyebrow,
.cinematic-banner .eyebrow,
.cta-band .eyebrow,
.project-detail-hero .eyebrow,
.page-hero .eyebrow,
.hero-swiper .eyebrow,
.hero-swiper .hero-kicker,
.bg-charcoal .eyebrow,
.section-heading .text-stonegold,
.text-stonegold {
    color: var(--accent-gold) !important;
}

.hero-media::after {
    background:
        linear-gradient(90deg, rgba(0,0,0,.78) 0%, rgba(0,0,0,.48) 44%, rgba(0,0,0,.22) 100%),
        linear-gradient(0deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.2) 55%, rgba(0,0,0,.45) 100%);
}

.page-hero-overlay {
    background:
        linear-gradient(90deg, rgba(0,0,0,.78), rgba(0,0,0,.48) 52%, rgba(0,0,0,.28)),
        linear-gradient(0deg, rgba(0,0,0,.58), rgba(0,0,0,.22));
}

.cinematic-banner::after,
.cta-band::after {
    background:
        linear-gradient(90deg, rgba(0,0,0,.76), rgba(0,0,0,.42) 58%, rgba(0,0,0,.3)),
        linear-gradient(0deg, rgba(0,0,0,.72), rgba(0,0,0,.18));
}

.site-header.is-home:not(.is-scrolled) {
    background: linear-gradient(180deg, rgba(0,0,0,.34), rgba(0,0,0,0));
}

.site-header.is-home:not(.is-scrolled) .nav-link,
.site-header.is-home:not(.is-scrolled) .hidden.text-sm {
    color: #ffffff !important;
}

.site-header.is-home:not(.is-scrolled) .brand-mark {
    color: #ffffff;
    border-color: rgba(255,255,255,.62);
}

.site-header.is-inner,
.site-header.is-scrolled {
    background: rgba(250, 248, 243, .94);
    border-bottom-color: rgba(21,21,21,.14);
}

.site-header.is-inner .nav-link,
.site-header.is-scrolled .nav-link {
    color: var(--text-dark) !important;
}

.group .absolute.bg-charcoal\/95 {
    background: var(--surface-light-2);
    border-color: rgba(21,21,21,.16);
    box-shadow: 0 24px 80px rgba(0,0,0,.16);
}

.dropdown-link {
    color: var(--text-dark) !important;
}

.dropdown-link:hover {
    background: #ece7dc;
    color: var(--text-dark) !important;
}

.mobile-panel {
    background: var(--surface-dark);
    color: var(--text-light);
}

.mobile-link,
.mobile-panel a,
.mobile-panel button {
    color: var(--text-light) !important;
}

.mobile-nav > .mobile-link::before,
.mobile-nav > button.mobile-link::before {
    color: var(--accent-gold);
}

.mobile-contact {
    background: #171717;
    color: var(--text-light) !important;
}

.btn-gold,
.btn-dark,
.btn-ghost,
.cta-link {
    color: inherit !important;
}

.hero-swiper .btn,
.cta-band .cta-link,
.cinematic-banner a {
    color: #ffffff !important;
}

.filter-chip {
    background: var(--surface-light-2);
    border-color: rgba(21,21,21,.24);
    color: var(--text-dark) !important;
}

.filter-chip.is-active,
.filter-chip:hover {
    background: var(--text-dark);
    color: #ffffff !important;
}

.detail-pill {
    border-color: rgba(255,255,255,.72);
    background: rgba(0,0,0,.28);
    color: #ffffff !important;
}

.gallery-button {
    border-color: rgba(247,245,240,.7);
    color: var(--text-light);
}

.form-placeholder {
    color: var(--text-muted);
}

.contact-form-panel {
    display: grid;
    gap: clamp(2rem, 5vw, 5rem);
    border: 1px solid rgba(17,17,15,.12);
    background:
        linear-gradient(135deg, rgba(255,255,255,.86), rgba(250,248,243,.74)),
        var(--surface-light-2);
    padding: clamp(1.5rem, 4vw, 4rem);
}

@media (min-width: 1024px) {
    .contact-form-panel {
        grid-template-columns: .75fr 1.25fr;
        align-items: start;
    }
}

.contact-form-intro h2 {
    margin-top: 1rem;
    max-width: 520px;
    font-size: clamp(30px, 3.2vw, 48px) !important;
    font-weight: 600;
    line-height: 1.06;
    color: var(--text-dark);
}

.contact-form-intro p:not(.eyebrow) {
    margin-top: 1.25rem;
    max-width: 520px;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.contact-form {
    border-left: 1px solid rgba(17,17,15,.1);
    padding-left: clamp(0rem, 4vw, 3rem);
}

.form-grid {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.contact-form label {
    display: grid;
    gap: .55rem;
}

.contact-form label > span {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--text-dark);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    border: 1px solid rgba(17,17,15,.14);
    border-radius: 0;
    background: rgba(255,255,255,.78);
    padding: 1rem 1.05rem;
    font: inherit;
    color: var(--text-dark);
    outline: none;
    transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(21,21,21,.42);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: rgba(185,154,95,.85);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(185,154,95,.12);
}

.form-full {
    grid-column: 1 / -1;
}

.form-footer {
    margin-top: 1.25rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    border-top: 1px solid rgba(17,17,15,.1);
    padding-top: 1.25rem;
}

.form-consent {
    display: flex !important;
    max-width: 520px;
    grid-template-columns: auto 1fr;
    align-items: flex-start;
    gap: .75rem !important;
    color: var(--text-muted);
}

.form-consent input {
    margin-top: .2rem;
    width: 18px;
    height: 18px;
    accent-color: var(--gold);
}

.form-consent span {
    font-size: .95rem !important;
    font-weight: 400 !important;
    letter-spacing: 0 !important;
    line-height: 1.6 !important;
    text-transform: none !important;
    color: var(--text-muted) !important;
}

.form-submit {
    min-height: 52px;
    border: 1px solid var(--text-dark);
    background: var(--text-dark);
    padding: .95rem 1.35rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease;
}

.form-submit:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--text-dark);
    transform: translateY(-1px);
}

.contact-map-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.contact-map-actions a {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(21,21,21,.18);
    background: rgba(255,255,255,.76);
    padding: .8rem 1rem;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
    color: var(--text-dark) !important;
    transition: border-color .2s ease, background .2s ease, color .2s ease;
}

.contact-map-actions a:hover {
    border-color: var(--gold);
    background: var(--text-dark);
    color: #fff !important;
}

.contact-card {
    padding: clamp(1.1rem, 2.2vw, 1.65rem) !important;
}

.contact-card span {
    font-size: 11px !important;
    letter-spacing: 1.8px !important;
}

.contact-card strong {
    margin-top: .4rem;
    font-size: clamp(1rem, 1.45vw, 1.22rem) !important;
    font-weight: 650;
    line-height: 1.35;
}

@media (max-width: 1023px) {
    .site-header.is-home:not(.is-scrolled),
    .site-header {
        background: rgba(9,9,9,.92);
        border-bottom: 1px solid rgba(247,245,240,.13);
        backdrop-filter: blur(18px);
    }

    .site-header .hamburger {
        border-color: rgba(247,245,240,.34);
        background: rgba(247,245,240,.07);
    }

    .site-header .hamburger span {
        background: var(--text-light);
    }

    .mobile-panel {
        z-index: 70;
        background:
            linear-gradient(180deg, rgba(9,9,9,.98), rgba(17,17,17,.985)),
            var(--surface-dark);
        color: var(--text-light);
    }

    .mobile-panel > div {
        padding-top: 6.75rem !important;
    }

    .mobile-nav {
        font-size: clamp(2rem, 9vw, 3rem) !important;
        font-weight: 600 !important;
    }

    .mobile-link {
        border-bottom-color: rgba(247,245,240,.13);
    }

    .mobile-contact {
        border-color: rgba(247,245,240,.16) !important;
        background: rgba(247,245,240,.055);
    }
}

@media (max-width: 1023px) {
    .contact-form {
        border-left: 0;
        border-top: 1px solid rgba(17,17,15,.1);
        padding-left: 0;
        padding-top: 1.75rem;
    }
}

@media (max-width: 640px) {
    .form-footer,
    .form-submit {
        width: 100%;
    }
}

.site-footer {
    background: var(--surface-light-2);
    color: var(--text-dark);
}

.site-footer a,
.site-footer p,
.site-footer span,
.site-footer .text-white\/68,
.site-footer .text-white\/45 {
    color: var(--text-muted) !important;
}

.site-footer strong,
.site-footer .footer-title {
    color: var(--text-dark) !important;
}

.social-chip {
    color: var(--text-dark) !important;
}

.project-arrow {
    color: var(--text-dark) !important;
}

.minimal-stats strong {
    color: var(--text-dark);
}

@media (max-width: 767px) {
    .site-header.is-home:not(.is-scrolled) {
        background: linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,0));
    }

    .hero-proof span {
        color: var(--text-light) !important;
    }
}

/* Final premium editorial refinement */
@media (min-width: 768px) {
    .hero-swiper,
    .hero-swiper .swiper-slide,
    .hero-media,
    .hero-content {
        min-height: 100svh;
    }
}

.hero-content {
    /*justify-content: flex-end;*/
    padding-bottom: clamp(8.5rem, 15vh, 11.5rem);
}

.hero-content h1 {
    max-width: 780px;
    font-size: clamp(48px, 5.8vw, 78px);
    line-height: .96;
    letter-spacing: -0.012em;
}

.hero-kicker {
    margin-bottom: .9rem;
}

.hero-media::after {
    background:
        linear-gradient(90deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.36) 42%, rgba(0,0,0,.08) 100%),
        linear-gradient(0deg, rgba(0,0,0,.5) 0%, rgba(0,0,0,.12) 52%, rgba(0,0,0,.28) 100%);
}

.hero-actions {
    display: flex;
    gap: 1.6rem;
    /*margin-top: 2rem;*/
    color: #ffffff;
}

.hero-actions .btn {
    width: auto;
    display: inline-flex;
}

.hero-proof {
    bottom: 2rem;
}

.site-header.is-inner,
.site-header.is-scrolled {
    background: rgba(9, 9, 9, .84);
    border-bottom-color: rgba(247,245,240,.14);
    backdrop-filter: blur(18px);
}

.site-header.is-inner .nav-link,
.site-header.is-scrolled .nav-link,
.site-header.is-inner .hidden.text-sm,
.site-header.is-scrolled .hidden.text-sm {
    color: var(--text-light) !important;
}

.site-header.is-inner .brand-mark,
.site-header.is-scrolled .brand-mark {
    color: #ffffff;
    border-color: rgba(255,255,255,.44);
}

.site-header.is-inner .hamburger,
.site-header.is-scrolled .hamburger {
    border-color: rgba(247,245,240,.34);
    background: rgba(247,245,240,.06);
}

.site-header.is-inner .hamburger span,
.site-header.is-scrolled .hamburger span {
    background: var(--text-light);
}

.site-header.is-inner .site-logo-light,
.site-header.is-scrolled .site-logo-light {
    display: block;
}

.site-header.is-inner .site-logo-dark,
.site-header.is-scrolled .site-logo-dark {
    display: none;
}

.editorial-intro {
    padding-top: clamp(4.5rem, 7vw, 6.5rem);
    padding-bottom: clamp(3.5rem, 5vw, 5rem);
}

.editorial-intro h2,
.section-heading h2,
.process-section h2,
.showcase-note h2 {
    font-size: clamp(32px, 4vw, 56px);
    line-height: 1.02;
    letter-spacing: -0.01em;
}

.service-strip {
    padding-bottom: clamp(4.5rem, 6vw, 6rem);
}

.service-cell {
    min-height: 220px;
    padding: clamp(1.5rem, 3vw, 2.4rem);
}

.home-projects,
.process-section,
.showcase-section {
    padding-top: clamp(4.75rem, 7vw, 6.75rem);
    padding-bottom: clamp(4.75rem, 7vw, 6.75rem);
}

.project-grid-featured {
    gap: clamp(1rem, 2.2vw, 2rem);
}

.project-card .image-reveal {
    aspect-ratio: 4 / 5;
    background: #111;
}

.project-card .image-reveal > img {
    filter: saturate(.9) contrast(.98);
}

.project-card-body {
    padding-top: 1.25rem;
}

.project-meta {
    margin-bottom: .35rem;
    font-size: .7rem;
}

.project-card h3 {
    font-size: clamp(1.25rem, 2vw, 1.65rem);
    line-height: 1.08;
}

.project-card p {
    font-size: .95rem;
    line-height: 1.65;
}

.process-section .grid {
    grid-template-columns: minmax(0, .88fr) minmax(0, 1.12fr);
}

.process-list {
    counter-reset: process;
}

.process-list div {
    grid-template-columns: 3.25rem 1fr;
    column-gap: 1.25rem;
    align-items: start;
    padding: 1.45rem 0;
}

.process-list div::before {
    counter-increment: process;
    content: "0" counter(process);
    color: var(--accent-gold);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .16em;
}

.process-list strong,
.process-list span {
    grid-column: 2;
}

.process-list span {
    margin-top: -.35rem;
}

.technical-drawing {
    border: 0;
    background: transparent;
}

.technical-drawing img {
    opacity: 1;
    filter: saturate(.82) contrast(.96);
}

.cinematic-banner {
    min-height: 58svh;
}

.cinematic-content {
    bottom: clamp(3rem, 7vh, 5rem);
}

.cinematic-content h2 {
    max-width: 760px;
    font-size: clamp(40px, 4.8vw, 68px);
    line-height: .98;
}

.minimal-stats {
    padding-top: 0;
    padding-bottom: 0;
}

.minimal-stats > div > div {
    padding: 1.35rem 0;
}

.home-corporate > div {
    padding-top: clamp(5rem, 7vw, 7rem);
    padding-bottom: clamp(5rem, 7vw, 7rem);
}

.home-corporate h2 {
    font-size: clamp(38px, 4.8vw, 66px);
    line-height: .98;
}

.home-corporate p,
.home-corporate .border-l {
    max-width: 620px;
}

.showcase-grid {
    gap: clamp(2rem, 5vw, 5rem);
}

.cta-band {
    min-height: 430px;
    height: min(86svh, 770px);
}

.cta-band h2 {
    font-size: clamp(36px, 4vw, 58px);
    line-height: 1;
}

.cta-band .cta-inner {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 0;
    align-items: end;
    padding-top: 0;
    padding-bottom: clamp(2.25rem, 4vw, 3.4rem);
}

.cta-band .cta-link {
    display: inline-flex;
    min-height: 54px;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    background: #ffffff;
    color: #090909 !important;
    font-size: .82rem;
    letter-spacing: 0;
    text-transform: none;
}

.cta-band .cta-link::after {
    width: 100%;
    background: #090909;
    transform: scaleX(.72);
}

.site-footer > div:first-child {
    padding-top: clamp(4rem, 6vw, 5.5rem);
    padding-bottom: clamp(3rem, 5vw, 4.5rem);
}

.timeline-section {
    background: var(--surface-light);
    padding-top: clamp(4.25rem, 6vw, 6rem);
    padding-bottom: clamp(4.5rem, 7vw, 6.5rem);
}

.timeline-title {
    margin-top: .75rem;
    font-size: clamp(34px, 4vw, 54px);
    font-weight: 500;
    line-height: 1.05;
    color: var(--text-dark);
}

.timeline-nav {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    margin-top: clamp(2.5rem, 5vw, 4.25rem);
    border-top: 1px solid rgba(21,21,21,.18);
}

.timeline-nav button {
    position: relative;
    padding-top: 1.25rem;
    text-align: center;
    font-size: .9rem;
    color: var(--text-muted);
    transition: color .25s ease;
}

.timeline-nav button::before {
    content: "";
    position: absolute;
    left: 50%;
    top: -5px;
    width: 10px;
    height: 10px;
    transform: translateX(-50%);
    border: 1px solid rgba(21,21,21,.2);
    border-radius: 999px;
    background: var(--surface-light);
    transition: background .25s ease, border-color .25s ease, transform .25s ease;
}

.timeline-nav button.is-active {
    color: var(--text-dark);
    font-weight: 600;
}

.timeline-nav button.is-active::before {
    background: var(--text-dark);
    border-color: var(--text-dark);
    transform: translateX(-50%) scale(1.1);
}

.timeline-content {
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(320px, .72fr);
    gap: clamp(2rem, 6vw, 6rem);
    align-items: center;
    margin-top: clamp(2.75rem, 5vw, 4.5rem);
}

.timeline-copy {
    max-width: 760px;
}

.timeline-meta {
    font-size: 1rem;
    color: var(--text-muted);
}

.timeline-copy h3 {
    margin-top: .65rem;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 500;
    line-height: 1.12;
    color: var(--text-dark);
}

.timeline-copy p:last-child {
    margin-top: 1.65rem;
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-muted);
}

.timeline-image {
    overflow: hidden;
}

.timeline-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.site-footer a:hover {
    color: var(--text-dark) !important;
}

@media (max-width: 767px) {
    .hero-swiper,
    .hero-swiper .swiper-slide,
    .hero-media,
    .hero-content {
        min-height: 74svh;
    }

    .hero-content {
        justify-content: flex-end;
        padding: 5.8rem 1.25rem 3.5rem;
    }

    .hero-content h1 {
        font-size: clamp(38px, 10.5vw, 54px);
        line-height: .98;
    }

    .hero-content p:not(.hero-kicker) {
        margin-top: 1rem;
        font-size: .98rem;
        line-height: 1.55;
    }

    .hero-content .mt-9 {
        margin-top: 1.35rem;
        gap: .75rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: .65rem;
        margin-top: 1.25rem;
    }

    .hero-actions .btn {
        width: auto;
    }

    .hero-proof {
        display: none;
    }

    .editorial-intro,
    .service-strip,
    .home-projects,
    .process-section,
    .showcase-section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .editorial-intro h2,
    .section-heading h2,
    .process-section h2,
    .showcase-note h2,
    .home-corporate h2,
    .cta-band h2 {
        font-size: clamp(30px, 8.6vw, 40px);
        line-height: 1.04;
    }

    .process-section .grid {
        grid-template-columns: 1fr;
    }

    .process-list div {
        grid-template-columns: 2.7rem 1fr;
    }

    .cinematic-banner {
        min-height: 48svh;
    }

    .cinematic-content h2 {
        font-size: clamp(38px, 11vw, 56px);
    }

    .home-corporate > div {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .cta-band {
        min-height: 360px;
        height: 46svh;
    }

    .cta-band .cta-inner {
        grid-template-columns: 1fr;
        align-content: end;
        align-items: end;
        padding-bottom: 2rem;
    }

    .cta-band .cta-link {
        width: max-content;
        min-height: 48px;
        padding-inline: 1.4rem;
    }

    .timeline-section {
        padding-top: 4.5rem;
        padding-bottom: 4.5rem;
    }

    .timeline-nav {
        grid-template-columns: repeat(4, minmax(72px, 1fr));
        overflow-x: auto;
        padding-bottom: .25rem;
    }

    .timeline-nav button {
        font-size: .82rem;
    }

    .timeline-content {
        grid-template-columns: 1fr;
        gap: 1.75rem;
        margin-top: 2.75rem;
    }

    .timeline-image {
        order: -1;
    }
}

/* Compact homepage rhythm after visual review */
@media (min-width: 768px) {
    .editorial-intro,
    .home-projects,
    .process-section,
    .showcase-section,
    .timeline-section {
        padding-top: clamp(3.75rem, 5vw, 5rem);
        padding-bottom: clamp(3.75rem, 5vw, 5rem);
    }

    .service-strip {
        padding-bottom: clamp(3.75rem, 5vw, 5rem);
    }

    .home-corporate > div {
        padding-top: clamp(4rem, 5.5vw, 5.75rem);
        padding-bottom: clamp(4rem, 5.5vw, 5.75rem);
    }

    .cinematic-banner {
        min-height: 50svh;
    }

    .cta-band {
        min-height: 390px;
        height: min(48svh, 520px);
    }
}

@media (max-width: 767px) {
    .editorial-intro,
    .service-strip,
    .home-projects,
    .process-section,
    .showcase-section,
    .timeline-section {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }

    .home-corporate > div {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }

    .cta-band {
        min-height: 330px;
        height: 42svh;
    }
}

/* Editorial density pass */
.editorial-intro h2 {
    max-width: 860px;
}

.editorial-intro p:not(.eyebrow) {
    font-size: clamp(1rem, 1.35vw, 1.18rem);
}

.service-cell {
    min-height: 180px;
    transition: background .25s ease, border-color .25s ease;
}

.service-cell:hover {
    background: #faf8f3;
}

.service-cell span {
    margin-bottom: 1.35rem;
}

.service-cell h3 {
    font-size: 1.15rem;
}

.service-cell p {
    margin-top: .75rem;
}

.home-projects .section-heading {
    max-width: 680px;
}

.projects-heading {
    border-bottom: 0;
    padding-bottom: 0;
}

.projects-heading h2 {
    margin-top: .45rem;
    font-size: clamp(32px, 3.2vw, 54px);
    font-weight: 500;
    line-height: 1;
    color: var(--text-dark);
}

.home-projects {
    overflow-x: clip;
}

.project-work-swiper {
    overflow: visible;
}

.project-work-pagination.swiper-pagination {
    position: relative;
    inset: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    margin-top: 1.35rem;
    width: 100%;
}

.project-work-pagination .swiper-pagination-bullet {
    width: 28px;
    height: 2px;
    margin: 0 !important;
    border-radius: 0;
    background: rgba(17,17,15,.22);
    opacity: 1;
    transition: width .28s ease, background .28s ease;
}

.project-work-pagination .swiper-pagination-bullet-active {
    width: 46px;
    background: var(--gold);
}

@media (max-width: 767px) {
    .project-work-pagination.swiper-pagination {
        justify-content: flex-start;
        margin-top: 1rem;
        padding-right: 5.8rem;
    }

    .project-work-pagination .swiper-pagination-bullet {
        width: 22px;
    }

    .project-work-pagination .swiper-pagination-bullet-active {
        width: 36px;
    }
}

.projects-index-section {
    overflow-x: clip;
}

.project-work-slide .image-reveal {
    aspect-ratio: 4 / 5;
    width: 100%;
    isolation: isolate;
}

.project-card-mark {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: grid;
    place-items: center;
    padding: clamp(1.25rem, 3vw, 2.5rem);
    text-align: center;
    pointer-events: none;
}

.project-card-mark::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(circle at center, rgba(0,0,0,.62), rgba(0,0,0,.26) 46%, rgba(0,0,0,.1) 72%),
        linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.34));
    opacity: .94;
    transition: opacity .35s ease, background .35s ease;
}

.project-card-mark img {
    position: relative;
    z-index: 1;
    width: min(68%, 280px);
    height: auto;
    max-height: 145px;
    object-fit: contain;
    filter: drop-shadow(0 18px 28px rgba(0,0,0,.45));
    transform: none !important;
    transition: filter .3s ease, opacity .3s ease;
}

.project-card-mark span {
    position: relative;
    z-index: 1;
    max-width: 78%;
    color: #fff;
    font-size: clamp(1.05rem, 2.2vw, 1.8rem);
    font-weight: 700;
    letter-spacing: .14em;
    line-height: 1.18;
    text-transform: uppercase;
    text-shadow: 0 18px 28px rgba(0,0,0,.45);
}

.project-card-mark.has-logo > img,
.project-card-mark.has-logo > span {
    grid-area: 1 / 1;
}

.project-work-slide a:hover .project-card-mark::before,
.project-work-slide button:hover .project-card-mark::before,
.project-card a:hover .project-card-mark::before {
    opacity: 1;
}

.project-work-slide .image-reveal::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, transparent 48%, rgba(0,0,0,.5)),
        linear-gradient(90deg, rgba(0,0,0,.18), transparent 58%);
    opacity: 0;
    transition: opacity .45s ease;
    pointer-events: none;
}

.project-work-slide .image-reveal > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(.96) contrast(.98);
    transition: transform 1.1s cubic-bezier(.22,1,.36,1), filter .45s ease;
}

.project-work-slide a:hover .image-reveal > img,
.project-work-slide button:hover .image-reveal > img {
    transform: scale(1.055);
    filter: saturate(1.05) contrast(1.04);
}

.project-work-slide a:hover .image-reveal::before,
.project-work-slide button:hover .image-reveal::before {
    opacity: 1;
}

.project-work-slide h3 {
    margin-top: 1.25rem;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--text-dark);
    transition: color .25s ease, transform .35s cubic-bezier(.22,1,.36,1);
}

.project-work-slide h3::after {
    content: "";
    display: block;
    width: 0;
    height: 1px;
    margin-top: .7rem;
    background: var(--gold);
    transition: width .38s cubic-bezier(.22,1,.36,1);
}

.project-work-slide a:hover h3 {
    color: var(--gold);
    transform: translateY(-2px);
}

.project-work-slide a:hover h3::after {
    width: 44px;
}

/* Global title scale: keep the editorial feel, but avoid oversized headings. */
.hero-content h1 {
    font-size: clamp(42px, 5.4vw, 88px) !important;
    line-height: .98 !important;
}

.page-hero h1,
.project-detail-hero h1 {
    max-width: 920px;
    font-size: clamp(36px, 4.8vw, 68px) !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

main section h2,
.projects-heading h2,
.premium-panel h2,
.showcase-note h2 {
    font-size: clamp(28px, 2.9vw, 46px) !important;
    font-weight: 600 !important;
    line-height: 1.08 !important;
}

.home-corporate h2 {
    font-size: clamp(36px, 4.3vw, 64px) !important;
    line-height: 1 !important;
}

blockquote {
    font-size: clamp(30px, 3.4vw, 52px) !important;
    font-weight: 600 !important;
    line-height: 1.08 !important;
}

.page-hero .relative {
    padding-top: clamp(8.5rem, 13vw, 11rem);
    padding-bottom: clamp(4.5rem, 8vw, 7rem);
}

.project-card .image-reveal {
    aspect-ratio: 3 / 4;
}

@media (min-width: 1024px) {
    .project-grid-featured {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: clamp(1.5rem, 2vw, 2rem);
    }

    .project-grid-featured .project-card:nth-child(2) {
        margin-top: 0;
    }
}

.project-grid-featured .project-card .image-reveal,
.projects-list-grid .project-card .image-reveal {
    aspect-ratio: 4 / 5;
}

.project-card-body {
    padding-top: 1.15rem;
}

.project-card p {
    max-width: 92%;
}

.process-section .grid {
    gap: clamp(2rem, 4vw, 4rem);
}

.process-section h2 {
    max-width: 680px;
}

.process-list {
    margin-top: 2rem;
}

.process-list div {
    padding: 1rem 0;
}

.technical-drawing img {
    aspect-ratio: 5 / 3.6;
}

.cinematic-banner {
    min-height: 52svh;
}

.cinematic-content {
    bottom: clamp(2.5rem, 5vh, 3.8rem);
}

.heritage-section {
    background: var(--surface-light);
}

.heritage-section h2 {
    margin-top: .9rem;
    max-width: 620px;
    font-size: clamp(30px, 3.8vw, 52px);
    font-weight: 500;
    line-height: 1.04;
    color: var(--text-dark);
}

.heritage-section p:not(.eyebrow) {
    margin-top: 1.25rem;
    max-width: 600px;
    font-size: 1.05rem;
    line-height: 1.75;
    color: var(--text-muted);
}

.heritage-stats {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border: 1px solid rgba(21,21,21,.12);
}

.heritage-stats div {
    padding: clamp(1.2rem, 2.5vw, 2rem);
}

.heritage-stats div + div {
    border-left: 1px solid rgba(21,21,21,.12);
}

.heritage-stats strong {
    display: block;
    font-size: clamp(1.55rem, 3vw, 2.8rem);
    font-weight: 500;
    line-height: 1;
    color: var(--text-dark);
}

.heritage-stats span {
    display: block;
    margin-top: .55rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.home-corporate > div {
    gap: clamp(2rem, 5vw, 5rem);
}

.home-corporate p {
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.showcase-grid {
    align-items: center;
}

.showcase-note {
    padding-block: 1rem;
}

.cta-band {
    height: min(44svh, 480px);
}

@media (min-width: 768px) {
    .editorial-intro,
    .home-projects,
    .process-section,
    .showcase-section {
        padding-top: clamp(2.375rem, 3.25vw, 3.125rem);
        padding-bottom: clamp(2.375rem, 3.25vw, 3.125rem);
    }

    .service-strip,
    .heritage-section {
        padding-top: clamp(3.75rem, 5vw, 4.75rem);
        padding-bottom: clamp(3.75rem, 5vw, 4.75rem);
    }
}

@media (max-width: 767px) {
    .site-wide {
        width: min(100% - 32px, 1728px);
    }

    .project-work-swiper {
        overflow: hidden;
    }

    .service-cell {
        min-height: 0;
    }

    .project-card .image-reveal {
        aspect-ratio: 4 / 5;
    }

    .heritage-section {
        padding-top: 3.75rem;
        padding-bottom: 3.75rem;
    }

    .heritage-stats {
        grid-template-columns: 1fr;
    }

    .heritage-stats div + div {
        border-left: 0;
        border-top: 1px solid rgba(21,21,21,.12);
    }
}

@media (max-width: 1023px) {
    .site-header.is-home:not(.is-scrolled),
    .site-header.is-inner,
    .site-header.is-scrolled,
    .site-header {
        background: rgba(9, 9, 9, .94) !important;
        background-image: none !important;
        border-bottom: 1px solid rgba(247,245,240,.14) !important;
        backdrop-filter: blur(18px);
    }

    .site-header .hamburger,
    .site-header.is-inner .hamburger,
    .site-header.is-scrolled .hamburger {
        border-color: rgba(247,245,240,.34) !important;
        background: rgba(247,245,240,.07) !important;
    }

    .site-header .hamburger span,
    .site-header.is-inner .hamburger span,
    .site-header.is-scrolled .hamburger span {
        background: var(--text-light) !important;
    }
}

/* Project detail content system */
.project-detail-hero {
    display: flex;
    min-height: 100svh !important;
    align-items: flex-end;
}

.project-detail-hero > .relative {
    width: 100%;
}

.project-detail-section,
.project-features-section,
.project-nearby-section,
.project-map-section,
.project-video-section,
.project-floorplans-section,
.project-gallery-section {
    overflow-x: clip;
}

.project-info-card {
    display: grid;
    gap: 0;
    align-self: start;
    border: 1px solid rgba(21,21,21,.12);
    background: rgba(255,255,255,.34);
}

.project-info-card div {
    display: grid;
    gap: .45rem;
    padding: 1.05rem 1.2rem;
}

.project-info-card div + div {
    border-top: 1px solid rgba(21,21,21,.1);
}

.project-info-card strong {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
}

.project-info-card span,
.project-info-card a {
    color: var(--text-dark);
    font-size: 1rem;
    line-height: 1.45;
}

.project-info-card a {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
}

.project-detail-copy {
    max-width: 820px;
}

.project-short {
    max-width: 760px;
    font-size: clamp(1.08rem, 1.45vw, 1.32rem);
    font-weight: 500;
    line-height: 1.65;
    color: var(--text-dark);
}

.project-long {
    margin-top: 1.6rem;
    color: var(--text-muted);
}

.project-long p {
    margin: 0;
    font-size: 1.02rem;
    line-height: 1.82;
}

.project-long p + p {
    margin-top: 1rem;
}

.project-feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    border-top: 1px solid rgba(21,21,21,.12);
    border-left: 1px solid rgba(21,21,21,.12);
}

.project-feature-card {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: 1rem;
    min-height: 166px;
    padding: clamp(1.1rem, 2vw, 1.55rem);
    border-right: 1px solid rgba(21,21,21,.12);
    border-bottom: 1px solid rgba(21,21,21,.12);
    background: rgba(255,255,255,.2);
    transition: background .25s ease, transform .25s ease;
}

.project-feature-card:hover {
    background: #faf8f3;
}

.project-feature-card i {
    position: relative;
    display: grid;
    width: 2.5rem;
    height: 2.5rem;
    place-items: center;
    border: 1px solid rgba(184,155,94,.35);
    color: var(--gold);
    font-size: 1.45rem;
}

.project-feature-card i::after {
    content: "";
    position: absolute;
    right: -4px;
    bottom: -4px;
    width: 9px;
    height: 9px;
    background: var(--gold);
}

.project-feature-card h3 {
    margin: 0;
    font-size: .9rem;
    font-weight: 800;
    letter-spacing: .12em;
    line-height: 1.35;
    text-transform: uppercase;
    color: var(--text-dark);
}

.project-feature-card p {
    margin-top: .65rem;
    font-size: .94rem;
    line-height: 1.58;
    color: var(--text-muted);
}

.nearby-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(21,21,21,.12);
    border-left: 1px solid rgba(21,21,21,.12);
}

.nearby-item {
    display: flex;
    min-height: 104px;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem;
    border-right: 1px solid rgba(21,21,21,.12);
    border-bottom: 1px solid rgba(21,21,21,.12);
}

.nearby-item span {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.nearby-item strong {
    white-space: nowrap;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--gold);
}

.map-link {
    display: inline-flex;
    min-height: 46px;
    align-items: center;
    border: 1px solid rgba(21,21,21,.16);
    padding: 0 1rem;
    font-size: .76rem;
    font-weight: 900;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-dark);
}

.map-link:hover {
    border-color: var(--text-dark);
    background: var(--text-dark);
    color: var(--text-light);
}

.project-video-frame {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    background: #090909;
}

.project-video-frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.floor-plan-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.floor-plan-card {
    display: grid;
    gap: 1rem;
    color: var(--text-dark);
}

.floor-plan-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border: 1px solid rgba(21,21,21,.12);
    background: #e8e3d9;
    transition: transform .55s cubic-bezier(.22,1,.36,1), filter .35s ease;
}

.floor-plan-card:hover img {
    transform: translateY(-4px);
    filter: contrast(1.04);
}

.floor-plan-card span {
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.gallery-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem;
}

.project-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1rem, 2vw, 1.5rem);
}

.project-gallery-item {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #111;
}

.project-gallery-item a {
    position: relative;
    display: block;
    color: inherit;
}

.project-gallery-item a::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, transparent 46%, rgba(0,0,0,.46)),
        linear-gradient(90deg, rgba(0,0,0,.18), transparent 60%);
    opacity: 0;
    transition: opacity .35s ease;
}

.project-gallery-item a::after {
    content: "+";
    position: absolute;
    right: 18px;
    bottom: 16px;
    z-index: 2;
    display: grid;
    width: 42px;
    height: 42px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.55);
    color: #fff;
    font-size: 1.35rem;
    font-weight: 300;
    line-height: 1;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity .35s ease, transform .35s ease, background .35s ease, color .35s ease;
}

.project-gallery-item img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform .8s cubic-bezier(.22,1,.36,1), filter .35s ease;
}

.project-gallery-item:hover a::before,
.project-gallery-item:hover a::after {
    opacity: 1;
}

.project-gallery-item:hover a::after {
    transform: translateY(0);
}

.project-gallery-item:hover a::after {
    background: rgba(255,255,255,.94);
    color: var(--text-dark);
}

.project-gallery-item:hover img {
    transform: scale(1.045);
    filter: saturate(1.04) contrast(1.03);
}

.project-gallery-item[hidden] {
    display: none !important;
}

.has-project-lightbox {
    overflow: hidden;
}

.project-lightbox {
    position: fixed;
    inset: 0;
    z-index: 140;
    display: grid;
    place-items: center;
    padding: clamp(1rem, 4vw, 3rem);
    background: rgba(5,5,5,.92);
    opacity: 0;
    pointer-events: none;
    transition: opacity .28s ease;
}

.project-lightbox.is-open {
    opacity: 1;
    pointer-events: auto;
}

.project-lightbox img {
    max-width: min(1180px, 100%);
    max-height: min(78svh, 820px);
    object-fit: contain;
    box-shadow: 0 28px 90px rgba(0,0,0,.45);
}

.project-lightbox p {
    margin-top: 1rem;
    color: rgba(247,245,240,.72);
    font-size: .86rem;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.project-lightbox-close {
    position: fixed;
    top: 1.25rem;
    right: 1.25rem;
    display: grid;
    width: 48px;
    height: 48px;
    place-items: center;
    border: 1px solid rgba(247,245,240,.28);
    color: #fff;
    font-size: 2rem;
    line-height: 1;
    background: rgba(255,255,255,.06);
}

.project-lightbox-close:hover {
    background: #fff;
    color: #090909;
}

.hero-media::after {
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(10,10,8,.28) 0%, rgba(10,10,8,.12) 44%, rgba(10,10,8,.03) 100%),
        linear-gradient(0deg, rgba(10,10,8,.2) 0%, transparent 50%, rgba(10,10,8,.12) 100%) !important;
}

/* Homepage intro/timeline density */
.editorial-intro {
    padding-top: clamp(3rem, 4.2vw, 4.5rem) !important;
    padding-bottom: clamp(2.5rem, 3.6vw, 3.75rem) !important;
}

.editorial-intro > div {
    padding-bottom: clamp(2.5rem, 4vw, 3.75rem);
}

.intro-side {
    display: grid;
    gap: clamp(1.4rem, 3vw, 2.5rem);
}

.intro-facts {
    display: grid;
    max-width: 420px;
    border-top: 1px solid rgba(21,21,21,.12);
}

.intro-facts div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.25rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(21,21,21,.12);
}

.intro-facts strong {
    font-size: clamp(1.35rem, 2.2vw, 2rem);
    font-weight: 500;
    color: var(--text-dark);
}

.intro-facts span {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--text-muted);
}

.intro-copy {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(1.25rem, 3vw, 2.5rem);
    margin-top: clamp(1.5rem, 2.5vw, 2.25rem);
    max-width: 860px;
}

.intro-copy p {
    margin: 0;
    font-size: clamp(1rem, 1.25vw, 1.12rem) !important;
    line-height: 1.75;
    color: var(--text-muted);
}

.timeline-section.service-strip {
    padding-top: clamp(2.5rem, 4vw, 4rem) !important;
    padding-bottom: clamp(3.25rem, 5vw, 5rem) !important;
}

.timeline-section .site-wide {
    border-bottom: 1px solid rgba(21,21,21,.1);
    padding-bottom: clamp(2.5rem, 4vw, 4rem);
}

.timeline-title {
    font-size: clamp(32px, 3.2vw, 48px) !important;
    font-weight: 500 !important;
}

.timeline-section .timeline-nav {
    margin-top: clamp(2rem, 4vw, 3.25rem);
}

.timeline-section .timeline-content {
    grid-template-columns: minmax(0, 1fr) minmax(260px, .45fr);
    gap: clamp(2rem, 5vw, 4.5rem);
    margin-top: clamp(2rem, 4vw, 3.25rem);
}

.timeline-section .timeline-copy h3 {
    max-width: 740px;
}

.timeline-section .timeline-copy p:last-child {
    max-width: 920px;
}

.timeline-section .timeline-image img {
    aspect-ratio: 4 / 3;
}

@media (max-width: 767px) {
    .intro-copy {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-section .timeline-content {
        grid-template-columns: 1fr;
    }

    .timeline-section .timeline-image {
        order: -1;
    }
}

@media (min-width: 768px) {
    .project-detail-hero {
        min-height: 100svh;
    }
}

@media (max-width: 1023px) {
    .mobile-panel {
        z-index: 90;
        width: 100vw;
        height: 100svh !important;
        min-height: 100svh;
        background: #090909 !important;
        background-image:
            linear-gradient(180deg, rgba(184,155,94,.12), transparent 34%),
            linear-gradient(135deg, rgba(255,255,255,.045), transparent 42%) !important;
        color: var(--text-light);
        backdrop-filter: blur(20px);
        overflow-y: auto;
    }

    .mobile-panel .mobile-link,
    .mobile-panel a,
    .mobile-panel button {
        color: var(--text-light) !important;
    }

    .mobile-panel .text-white\/72,
    .mobile-contact {
        color: rgba(247,245,240,.72) !important;
    }
}

@media (max-width: 900px) {
    .project-feature-grid,
    .nearby-grid,
    .floor-plan-grid,
    .project-gallery-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 767px) {
    .project-detail-hero {
        min-height: 100svh;
    }

    .project-detail-hero .relative {
        padding-top: 7.5rem;
        padding-bottom: 5rem;
    }

    .project-detail-section > div,
    .project-features-section > div,
    .project-nearby-section > div,
    .project-map-section > div,
    .project-video-section > div,
    .project-floorplans-section > div,
    .project-gallery-section > div {
        padding-top: 3.25rem;
        padding-bottom: 3.25rem;
    }

    .project-feature-grid,
    .nearby-grid,
    .floor-plan-grid,
    .project-gallery-grid {
        grid-template-columns: 1fr;
    }

    .project-feature-card {
        min-height: 0;
    }

    .nearby-item {
        min-height: 86px;
    }

    .gallery-filter-bar {
        gap: .5rem;
    }

    .gallery-filter-bar .filter-chip {
        padding: .72rem .82rem;
        font-size: .68rem;
        letter-spacing: .11em;
    }
}

/* Final mobile polish overrides: keep these after legacy responsive rules. */
.hero-nav,
.project-work-nav {
    pointer-events: none;
    position: absolute;
    z-index: 8;
    display: flex;
    gap: .65rem;
}

.hero-nav {
    right: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
}

.project-work-nav {
    right: 0;
    top: -4.6rem;
}

.hero-nav button,
.project-work-nav button {
    pointer-events: auto;
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(255,255,255,.34);
    background: rgba(9,9,9,.28);
    color: #fff;
    font-size: 1.45rem;
    line-height: 1;
    backdrop-filter: blur(14px);
    transition: background .25s ease, border-color .25s ease, color .25s ease, opacity .25s ease, transform .25s ease;
}

.project-work-nav button {
    border-color: rgba(17,17,15,.18);
    background: rgba(255,250,241,.82);
    color: var(--charcoal);
}

.hero-nav button:hover,
.project-work-nav button:hover {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--charcoal);
    transform: translateY(-1px);
}

.hero-nav button.swiper-button-disabled,
.project-work-nav button.swiper-button-disabled {
    opacity: .34;
    cursor: default;
}

.project-work-slide .image-reveal::after {
    display: none;
}

.project-work-slide .image-reveal,
.project-work-slide .image-reveal > img,
.project-card-mark,
.project-card-mark::before,
.project-card-mark img,
.project-card-mark span {
    backface-visibility: hidden;
    transform: translateZ(0);
}

.project-card-mark,
.project-card-mark::before {
    will-change: opacity;
}

.project-card-mark img {
    transform: translateZ(0) !important;
}

@media (max-width: 1023px) {
    .mobile-nav {
        font-size: clamp(1.55rem, 7vw, 2.15rem) !important;
        line-height: 1.05;
    }

    .mobile-link {
        padding-top: .55rem;
        padding-bottom: .55rem;
    }

    .mobile-nav > .mobile-link::before,
    .mobile-nav > button.mobile-link::before {
        top: .72rem;
        font-size: .66rem;
    }
}

@media (max-width: 767px) {
    .hero-swiper,
    .hero-swiper .swiper-slide,
    .hero-media,
    .hero-content {
        min-height: 100svh;
    }

    .hero-content {
        justify-content: flex-end;
        padding: 7rem 1.15rem 7.25rem;
    }

    .hero-kicker,
    .hero-content p:not(.hero-kicker) {
        display: none;
    }

    .hero-content h1 {
        max-width: 11ch;
        font-size: clamp(2.55rem, 13vw, 4.45rem) !important;
        line-height: .95;
    }

    .hero-actions {
        margin-top: 1.35rem;
    }

    .hero-proof {
        display: none;
    }

    .hero-overlay {
        opacity: min(var(--hero-overlay-opacity, .42), .5);
    }

    .hero-media::after {
        background:
            linear-gradient(90deg, rgba(0,0,0,.24), rgba(0,0,0,.04) 70%),
            linear-gradient(0deg, rgba(0,0,0,.46), rgba(0,0,0,.06) 54%, rgba(0,0,0,.08)) !important;
    }

    .hero-pagination.swiper-pagination {
        left: 1.15rem;
        right: auto;
        bottom: 2.05rem;
    }

    .hero-nav {
        right: 1rem;
        top: auto;
        bottom: 1.55rem;
        transform: none;
        flex-direction: row;
    }

    .hero-nav button,
    .project-work-nav button {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .project-work-swiper {
        padding-bottom: 3.5rem;
    }

    .project-work-nav {
        top: auto;
        right: 0;
        bottom: 0;
    }

    .page-hero-overlay {
        background:
            linear-gradient(90deg, rgba(0,0,0,.24), rgba(0,0,0,.08) 62%, rgba(0,0,0,.02)),
            linear-gradient(0deg, rgba(0,0,0,.24), rgba(0,0,0,.04) 50%) !important;
    }

    .project-detail-overlay {
        background:
            linear-gradient(90deg, rgba(0,0,0,.24), rgba(0,0,0,.08) 60%, rgba(0,0,0,.03)),
            linear-gradient(0deg, rgba(0,0,0,.26), rgba(0,0,0,.04) 50%) !important;
    }
}
