:root {
    --dark: #171815;
    --dark-soft: #24251f;
    --light: #f4f0e8;
    --white: #ffffff;
    --accent: #b8905c;
    --accent-dark: #8d6a3e;
    --text: #22231f;
    --muted: #6f716b;
    --line: rgba(23, 24, 21, .13);
    --radius: 28px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--text);
    background: #fff;
    font-family: "Manrope", sans-serif;
}

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

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

.section-space { padding: 110px 0; }

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    color: var(--accent-dark);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .18em;
    text-transform: uppercase;
}

.section-label::before {
    width: 42px;
    height: 1px;
    content: "";
    background: currentColor;
}

.section-title {
    max-width: 850px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(36px, 4.7vw, 67px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -.05em;
}

.section-text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.9;
}

/* HEADER */
.navbar-shell {
    position: absolute;
    z-index: 30;
    top: 0;
    right: 0;
    left: 0;
    padding: 22px 0;
}

.navbar {
    min-height: 78px;
    padding: 0 24px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 18px;
    background: rgba(17,18,15,.50);
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: #fff;
}

.brand-mark {
    display: grid;
    width: 44px;
    height: 44px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.35);
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.brand-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.brand-text strong {
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
}

.brand-text small {
    margin-top: 7px;
    color: rgba(255,255,255,.58);
    font-size: 9px;
    letter-spacing: .24em;
    text-transform: uppercase;
}

.navbar-nav .nav-link {
    position: relative;
    margin: 0 8px;
    padding: 30px 4px !important;
    color: rgba(255,255,255,.76);
    font-size: 13px;
    font-weight: 600;
}

.navbar-nav .nav-link::after {
    position: absolute;
    right: 50%;
    bottom: 20px;
    left: 50%;
    height: 1px;
    content: "";
    background: var(--accent);
    transition: .3s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: #fff;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    right: 4px;
    left: 4px;
}

.header-cta {
    display: inline-flex;
    min-height: 48px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.30);
    border-radius: 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .3s ease;
}

.header-cta:hover {
    border-color: var(--accent);
    color: var(--dark);
    background: var(--accent);
}

.navbar-toggler {
    border: 0;
    box-shadow: none !important;
}

.navbar-toggler span {
    display: block;
    width: 26px;
    height: 1px;
    margin: 6px 0;
    background: #fff;
}

/* HERO */
.project-hero {
    position: relative;
    min-height: 880px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: #fff;
    background: var(--dark);
}

.project-hero__image {
    position: absolute;
    inset: 0;
}

.project-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.project-hero__image::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(15,16,13,.94) 0%, rgba(15,16,13,.55) 48%, rgba(15,16,13,.16) 100%),
        linear-gradient(0deg, rgba(15,16,13,.90) 0%, rgba(15,16,13,.18) 62%, transparent 100%);
}

.project-hero__grid {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: .34;
    background-image:
        linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
    background-size: 90px 90px;
    mask-image: linear-gradient(to right, #000, transparent 82%);
}

.project-hero__content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 210px 0 76px;
}

.breadcrumb-custom {
    display: flex;
    margin: 0 0 34px;
    padding: 0;
    align-items: center;
    gap: 13px;
    list-style: none;
    color: rgba(255,255,255,.55);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.breadcrumb-custom li + li::before {
    margin-right: 13px;
    color: var(--accent);
    content: "/";
}

.project-hero__status {
    display: inline-flex;
    margin-bottom: 22px;
    padding: 10px 14px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 999px;
    color: #fff;
    background: rgba(17,18,15,.40);
    backdrop-filter: blur(10px);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.project-hero h1 {
    max-width: 980px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(56px, 7.4vw, 108px);
    font-weight: 600;
    line-height: .92;
    letter-spacing: -.065em;
}

.project-hero h1 span {
    display: block;
    color: var(--accent);
}

.project-hero__bottom {
    margin-top: 52px;
}

.project-hero__description {
    max-width: 650px;
    margin: 0;
    color: rgba(255,255,255,.68);
    font-size: 16px;
    line-height: 1.9;
}

.project-hero__quick {
    display: flex;
    justify-content: flex-end;
    gap: 28px;
}

.project-hero__quick-item {
    min-width: 120px;
    padding-left: 18px;
    border-left: 1px solid rgba(255,255,255,.18);
}

.project-hero__quick-item span {
    display: block;
    margin-bottom: 8px;
    color: rgba(255,255,255,.42);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.project-hero__quick-item strong {
    font-family: "Montserrat", sans-serif;
    font-size: 17px;
    font-weight: 600;
}

/* SUMMARY */
.project-summary {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at 90% 8%, rgba(184,144,92,.10), transparent 24%),
        linear-gradient(180deg, #ffffff 0%, #f5f1e9 100%);
}

.project-summary::before {
    position: absolute;
    top: 110px;
    left: -170px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(141,106,62,.12);
    border-radius: 50%;
    content: "";
}

.project-summary__inner {
    position: relative;
    z-index: 2;
}

.project-summary__layout {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 70px;
    align-items: start;
}

.project-summary__lead {
    position: relative;
    margin: 34px 0 28px;
    padding-left: 28px;
    color: var(--text);
    font-size: 19px;
    font-weight: 600;
    line-height: 1.75;
}

.project-summary__lead::before {
    position: absolute;
    top: 6px;
    bottom: 6px;
    left: 0;
    width: 3px;
    border-radius: 10px;
    content: "";
    background: var(--accent);
}

.project-summary__text {
    color: var(--muted);
    font-size: 16px;
    line-height: 1.95;
}

.project-summary__text p:last-child {
    margin-bottom: 0;
}

.project-info-card {
    position: sticky;
    top: 28px;
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(255,255,255,.88);
    box-shadow: 0 24px 65px rgba(31,29,24,.07);
}

.project-info-card__title {
    margin: 0 0 26px;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: -.03em;
}

.project-info-list {
    margin: 0;
    padding: 0;
    list-style: none;
    border-top: 1px solid var(--line);
}

.project-info-list li {
    display: flex;
    padding: 18px 0;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-bottom: 1px solid var(--line);
}

.project-info-list span {
    color: var(--muted);
    font-size: 12px;
}

.project-info-list strong {
    color: var(--text);
    font-size: 13px;
    text-align: right;
}

.project-info-button {
    display: inline-flex;
    width: 100%;
    min-height: 56px;
    margin-top: 26px;
    padding: 0 20px;
    align-items: center;
    justify-content: center;
    gap: 14px;
    border-radius: 13px;
    color: #fff;
    background: var(--dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .09em;
    text-transform: uppercase;
    transition: .3s ease;
}

.project-info-button:hover {
    color: var(--dark);
    background: var(--accent);
    transform: translateY(-2px);
}

/* GALLERY */
.project-gallery {
    color: #fff;
    background: var(--dark);
}

.project-gallery .section-label {
    color: var(--accent);
}

.project-gallery .section-title {
    color: #fff;
}

.project-gallery__head {
    margin-bottom: 54px;
}

.project-gallery__intro {
    max-width: 500px;
    margin: 0 0 8px auto;
    color: rgba(255,255,255,.52);
    font-size: 15px;
    line-height: 1.9;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1.3fr .7fr;
    gap: 20px;
}

.gallery-main {
    position: relative;
    min-height: 650px;
    overflow: hidden;
    border-radius: var(--radius);
}

.gallery-side {
    display: grid;
    gap: 20px;
}

.gallery-side__item {
    position: relative;
    min-height: 315px;
    overflow: hidden;
    border-radius: 22px;
}

.gallery-main img,
.gallery-side__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s ease;
}

.gallery-main:hover img,
.gallery-side__item:hover img {
    transform: scale(1.035);
}

.gallery-count {
    position: absolute;
    right: 24px;
    bottom: 24px;
    padding: 11px 15px;
    border: 1px solid rgba(255,255,255,.20);
    border-radius: 999px;
    color: #fff;
    background: rgba(17,18,15,.45);
    backdrop-filter: blur(10px);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

/* FEATURES */
.project-features {
    background: #fff;
}

.project-features__head {
    margin-bottom: 56px;
}

.project-features__intro {
    max-width: 500px;
    margin: 0 0 8px auto;
    color: var(--muted);
    font-size: 15px;
    line-height: 1.9;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.feature-card {
    position: relative;
    min-height: 250px;
    padding: 28px;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--light);
    transition: .35s ease;
}

.feature-card::after {
    position: absolute;
    right: -52px;
    bottom: -52px;
    width: 130px;
    height: 130px;
    border: 1px solid rgba(141,106,62,.14);
    border-radius: 50%;
    content: "";
    transition: .35s ease;
}

.feature-card:hover {
    border-color: rgba(184,144,92,.42);
    background: #fff;
    transform: translateY(-6px);
    box-shadow: 0 22px 50px rgba(31,29,24,.08);
}

.feature-card:hover::after {
    width: 175px;
    height: 175px;
    border-color: rgba(184,144,92,.28);
}

.feature-card__number {
    display: block;
    margin-bottom: 54px;
    color: var(--accent-dark);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
}

.feature-card h3 {
    margin: 0 0 13px;
    font-family: "Montserrat", sans-serif;
    font-size: 24px;
    font-weight: 600;
    line-height: 1.2;
    letter-spacing: -.03em;
}

.feature-card p {
    max-width: 300px;
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

/* PROCESS */
.project-process {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--dark-soft);
}

.project-process::before {
    position: absolute;
    inset: 0;
    opacity: .38;
    content: "";
    background-image:
        linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
    background-size: 86px 86px;
}

.project-process__inner {
    position: relative;
    z-index: 2;
}

.project-process .section-label {
    color: var(--accent);
}

.project-process .section-title {
    color: #fff;
}

.project-process__head {
    margin-bottom: 60px;
}

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

.process-item {
    display: grid;
    min-height: 155px;
    padding: 30px 0;
    grid-template-columns: 100px 1fr 1.2fr;
    align-items: center;
    gap: 40px;
    border-bottom: 1px solid rgba(255,255,255,.12);
    transition: .35s ease;
}

.process-item:hover {
    padding-right: 22px;
    padding-left: 22px;
    background: linear-gradient(90deg, rgba(184,144,92,.12), transparent);
}

.process-item__number {
    color: var(--accent);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .16em;
}

.process-item h3 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -.03em;
}

.process-item p {
    margin: 0;
    color: rgba(255,255,255,.5);
    font-size: 14px;
    line-height: 1.8;
}

/* LOCATION */
.project-location {
    background: #fff;
}

.project-location__head {
    margin-bottom: 48px;
}

.project-location__intro {
    max-width: 500px;
    margin-left: auto;
}

.location-map {
    position: relative;
    min-height: 520px;
    overflow: hidden;
    border-radius: var(--radius);
    background: #ddd;
}

.location-map iframe {
    width: 100%;
    height: 520px;
    border: 0;
    filter: grayscale(1) contrast(.92);
}

.location-card {
    position: absolute;
    z-index: 2;
    left: 28px;
    bottom: 28px;
    max-width: 380px;
    padding: 26px;
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 20px;
    color: #fff;
    background: rgba(23,24,21,.84);
    backdrop-filter: blur(16px);
}

.location-card span {
    display: block;
    margin-bottom: 13px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .15em;
    text-transform: uppercase;
}

.location-card h3 {
    margin: 0 0 12px;
    font-family: "Montserrat", sans-serif;
    font-size: 23px;
    font-weight: 600;
}

.location-card p {
    margin: 0;
    color: rgba(255,255,255,.58);
    font-size: 13px;
    line-height: 1.8;
}

/* OTHER PROJECTS */
.other-projects {
    background: var(--light);
}

.other-projects__head {
    margin-bottom: 48px;
}

.other-projects__link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: var(--accent-dark);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: .10em;
    text-transform: uppercase;
}

.other-projects__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.other-project-card {
    position: relative;
    display: block;
    min-height: 430px;
    overflow: hidden;
    border-radius: 24px;
    background: var(--dark);
}

.other-project-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .7s ease;
}

.other-project-card::after {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(180deg, rgba(17,18,15,.06) 30%, rgba(17,18,15,.88) 100%);
}

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

.other-project-card__content {
    position: absolute;
    z-index: 2;
    right: 26px;
    bottom: 26px;
    left: 26px;
    color: #fff;
}

.other-project-card__content span {
    display: block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .13em;
    text-transform: uppercase;
}

.other-project-card h3 {
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: 34px;
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -.04em;
}

/* CTA */
.contact-cta {
    position: relative;
    overflow: hidden;
    color: #fff;
    background: var(--accent-dark);
}

.contact-cta::before {
    position: absolute;
    top: -170px;
    right: -120px;
    width: 430px;
    height: 430px;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 50%;
    content: "";
}

.contact-cta__inner {
    position: relative;
    z-index: 2;
    display: flex;
    min-height: 350px;
    padding: 60px 0;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.contact-cta h2 {
    max-width: 800px;
    margin: 0;
    font-family: "Montserrat", sans-serif;
    font-size: clamp(38px, 5.1vw, 72px);
    font-weight: 600;
    line-height: 1.02;
    letter-spacing: -.05em;
}

.contact-circle {
    display: grid;
    min-width: 150px;
    height: 150px;
    place-items: center;
    border: 1px solid rgba(255,255,255,.40);
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    transition: .35s ease;
}

.contact-circle:hover {
    color: var(--dark);
    background: #fff;
    transform: rotate(-8deg);
}

/* FOOTER */
footer {
    padding: 76px 0 28px;
    color: #fff;
    background: #10110f;
}

.footer-brand .brand {
    margin-bottom: 28px;
}

.footer-brand p {
    max-width: 390px;
    color: rgba(255,255,255,.48);
    font-size: 14px;
    line-height: 1.85;
}

.footer-title {
    margin-bottom: 22px;
    color: rgba(255,255,255,.38);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 13px;
}

.footer-links a {
    color: rgba(255,255,255,.72);
    font-size: 14px;
    transition: .25s ease;
}

.footer-links a:hover {
    color: var(--accent);
}

.footer-bottom {
    margin-top: 56px;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,.09);
    color: rgba(255,255,255,.35);
    font-size: 11px;
}

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

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

@media (max-width: 1199px) {
    .navbar {
        padding: 0 16px;
    }

    .navbar-collapse {
        margin: 12px -16px 0;
        padding: 12px 22px 22px;
        border-top: 1px solid rgba(255,255,255,.1);
        background: rgba(17,18,15,.96);
    }

    .navbar-nav .nav-link {
        padding: 14px 0 !important;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .header-cta {
        margin-top: 14px;
    }
}

@media (max-width: 991px) {
    .section-space {
        padding: 82px 0;
    }

    .project-hero {
        min-height: 760px;
    }

    .project-hero__quick {
        margin-top: 32px;
        justify-content: flex-start;
    }

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

    .project-info-card {
        position: relative;
        top: auto;
    }

    .project-gallery__intro,
    .project-features__intro,
    .project-location__intro {
        margin: 28px 0 0;
    }

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

    .gallery-main {
        min-height: 520px;
    }

    .gallery-side {
        grid-template-columns: repeat(2, 1fr);
    }

    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process-item {
        grid-template-columns: 70px 1fr;
    }

    .process-item p {
        grid-column: 2;
    }

    .contact-cta__inner {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 767px) {
    .navbar-shell {
        padding: 14px 0;
    }

    .navbar {
        min-height: 66px;
    }

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

    .brand-text strong {
        font-size: 15px;
    }

    .brand-text small {
        font-size: 7px;
    }

    .project-hero {
        min-height: 720px;
    }

    .project-hero__content {
        padding: 155px 0 48px;
    }

    .project-hero h1 {
        font-size: clamp(48px, 15vw, 74px);
    }

    .project-hero__bottom {
        margin-top: 32px;
    }

    .project-hero__quick {
        flex-wrap: wrap;
        gap: 18px;
    }

    .project-hero__quick-item {
        min-width: calc(50% - 9px);
    }

    .gallery-main {
        min-height: 420px;
    }

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

    .gallery-side__item {
        min-height: 270px;
    }

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

    .feature-card {
        min-height: 215px;
    }

    .process-item {
        min-height: 0;
        padding: 26px 0;
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .process-item:hover {
        padding-right: 12px;
        padding-left: 12px;
    }

    .process-item p {
        grid-column: auto;
    }

    .location-map,
    .location-map iframe {
        height: 540px;
    }

    .location-card {
        right: 16px;
        bottom: 16px;
        left: 16px;
        max-width: none;
    }

    .other-projects__grid {
        grid-template-columns: 1fr;
    }

    .other-project-card {
        min-height: 380px;
    }

    .contact-circle {
        min-width: 120px;
        height: 120px;
    }
}
