@charset "utf-8";
/* CSS Document */

:root {
    --bg: #f3f0e9;
    --bg-soft: #ebe7dd;
    --text: #181816;
    --muted: #76746d;
    --dark: #151513;
    --stone: #a39c8c;
    --line: rgba(24, 24, 22, 0.15);

    --container: 1380px;

    --font-main: "Manrope", sans-serif;
    --font-secondary: "DM Sans", sans-serif;
}


/* RESET */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background: var(--bg);
    color: var(--text);
    overflow-x: hidden;
}

body.menu-open {
    overflow: hidden;
}

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

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

button {
    font: inherit;
}

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

.section {
    padding: 150px 0;
}


/* SCROLL PROGRESS */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    z-index: 9999;
}

.scroll-progress__bar {
    height: 100%;
    width: 0;
    background: #ffffff;
}


/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    color: white;
    transition:
        background 0.35s ease,
        color 0.35s ease,
        backdrop-filter 0.35s ease;
}

.site-header.scrolled {
    background: rgba(243, 240, 233, 0.82);
    backdrop-filter: blur(18px);
    color: var(--text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-inner {
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: baseline;
    gap: 8px;
    letter-spacing: -1px;
}

.logo-main {
    font-weight: 600;
    font-size: 26px;
}

.logo-sub {
    font-size: 10px;
    letter-spacing: 0.25em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 40px;
}

.desktop-nav a {
    font-size: 13px;
    letter-spacing: 0.08em;
    position: relative;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 1px;
    background: currentColor;
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}


/* MENU BUTTON */

.menu-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 0;
    background: transparent;
    cursor: pointer;
    position: relative;
    z-index: 1200;
}

.menu-toggle span {
    display: block;
    position: absolute;
    width: 24px;
    height: 1px;
    background: currentColor;
    left: 9px;
    transition: 0.3s ease;
}

.menu-toggle span:first-child {
    top: 16px;
}

.menu-toggle span:last-child {
    top: 25px;
}

.menu-toggle.active span:first-child {
    top: 21px;
    transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
    top: 21px;
    transform: rotate(-45deg);
}


/* MOBILE NAV */

.mobile-nav {
    display: none;
}

.menu-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    z-index: 900;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: auto;
}


/* HERO */

.hero {
    min-height: 100svh;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;

    background:
        url("../assets/images/adanova-hero.jpeg")
        center center / cover no-repeat;

    transform: scale(1.04);
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.56) 0%,
            rgba(0, 0, 0, 0.18) 57%,
            rgba(0, 0, 0, 0.08) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 80px;
}

.hero-location {
    font-size: 11px;
    letter-spacing: 0.32em;
    margin-bottom: 30px;
}

.hero-title {
    font-size: clamp(70px, 9vw, 150px);
    font-weight: 300;
    line-height: 0.86;
    letter-spacing: -0.07em;
    max-width: 1000px;
}

.hero-title span {
    display: block;
    font-weight: 500;
}

.hero-text {
    max-width: 460px;
    margin-top: 48px;

    font-size: 17px;
    line-height: 1.8;

    color: rgba(255, 255, 255, 0.82);
}

.hero-bottom {
    position: absolute;
    z-index: 3;

    bottom: 40px;
    left: 40px;
    right: 40px;

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

    font-size: 11px;
    letter-spacing: 0.16em;
}

.scroll-indicator {
    display: flex;
    align-items: center;
    gap: 20px;
}

.scroll-line {
    width: 48px;
    height: 1px;
    background: rgba(255,255,255,0.35);
    position: relative;
    overflow: hidden;
}

.scroll-line span {
    position: absolute;
    width: 50%;
    height: 1px;
    background: white;
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    from {
        left: -50%;
    }

    to {
        left: 100%;
    }
}


/* LABEL */

.section-label {
    display: flex;
    gap: 18px;
    align-items: center;

    margin-bottom: 80px;

    font-size: 11px;
    letter-spacing: 0.2em;

    color: var(--muted);
}

.section-label span {
    color: var(--text);
}


/* INTRO */

.intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 140px;
}

.intro-heading h2 {
    font-size: clamp(64px, 7vw, 120px);
    line-height: 0.95;
    letter-spacing: -0.065em;
    font-weight: 300;
}

.intro-heading span {
    display: block;
    color: var(--stone);
}

.intro-content {
    padding-top: 10px;
}

.intro-content p {
    font-size: 16px;
    line-height: 1.9;
    color: var(--muted);
    margin-bottom: 28px;
}

.intro-content .intro-lead {
    font-size: 27px;
    line-height: 1.45;
    color: var(--text);
    letter-spacing: -0.03em;
}


/* STATEMENT */

.statement {
    padding: 170px 0;
    background: var(--dark);
    color: white;
}

.statement-small {
    font-size: 10px;
    letter-spacing: 0.3em;
    color: rgba(255,255,255,0.45);
    margin-bottom: 55px;
}

.statement-title {
    max-width: 1200px;

    font-weight: 300;
    font-size: clamp(48px, 6vw, 95px);

    line-height: 1.08;
    letter-spacing: -0.05em;
}

.statement-title span {
    color: #aaa496;
}


/* PROCESS */

.process-header {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 100px;
    margin-bottom: 100px;
}

.process-header h2 {
    font-size: clamp(52px, 6vw, 90px);
    line-height: 1;
    letter-spacing: -0.055em;
    font-weight: 300;
}

.process-header h2 span {
    display: block;
    color: var(--stone);
}

.process-header p {
    align-self: end;
    color: var(--muted);
    line-height: 1.8;
}

.process-list {
    border-top: 1px solid var(--line);
}

.process-item {
    display: grid;
    grid-template-columns: 90px 0.8fr 1fr;

    gap: 50px;

    padding: 38px 0;

    border-bottom: 1px solid var(--line);

    transition:
        padding-left 0.35s ease,
        background 0.35s ease;
}

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

.process-number {
    color: var(--muted);
    font-size: 12px;
}

.process-item h3 {
    font-size: 34px;
    font-weight: 400;
    letter-spacing: -0.04em;
}

.process-item p {
    max-width: 450px;
    color: var(--muted);
    line-height: 1.8;
}


/* PROJECTS */

.projects {
    background: #ded9cf;
}

.projects-heading h2 {
    font-size: clamp(60px, 7vw, 110px);
    font-weight: 300;
    letter-spacing: -0.06em;
    margin-bottom: 80px;
}

.projects-heading span {
    color: var(--stone);
}

.featured-project {
    width: 100%;
}

.project-image-wrap {
    position: relative;
    height: min(78vh, 900px);
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s cubic-bezier(.2,.7,.2,1);
}

.project-image-wrap:hover .project-image {
    transform: scale(1.035);
}

.project-image-overlay {
    position: absolute;
    inset: 0;

    background: linear-gradient(
        to top,
        rgba(0,0,0,0.3),
        transparent 45%
    );
}

.project-view {
    position: absolute;
    right: 45px;
    bottom: 45px;

    width: 160px;
    height: 160px;

    border-radius: 50%;
    background: rgba(244,241,233,0.94);
    color: var(--text);

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

    gap: 10px;

    font-size: 10px;
    letter-spacing: 0.12em;

    transition: transform 0.35s ease;
}

.project-view:hover {
    transform: scale(1.08);
}

.project-view span {
    font-size: 21px;
}

.project-info {
    display: grid;
    grid-template-columns: 100px 1fr auto;
    gap: 60px;

    align-items: end;
    padding-top: 45px;
}

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

.project-location {
    font-size: 10px;
    letter-spacing: 0.24em;
    margin-bottom: 15px;
}

.project-info h3 {
    font-size: clamp(50px, 6vw, 92px);
    font-weight: 300;
    line-height: 0.9;
    letter-spacing: -0.06em;
}

.project-info h3 span {
    display: block;
    color: var(--stone);
}

.project-type {
    font-size: 13px;
    color: var(--muted);
}

.project-type span {
    margin-inline: 10px;
}


/* ADANOVA */

.adanova {
    background: var(--bg);
}

.adanova-header {
    display: grid;
    grid-template-columns: 1.5fr 0.5fr;
    gap: 100px;
    margin-bottom: 90px;
}

.eyebrow {
    display: inline-block;

    margin-bottom: 30px;

    font-size: 10px;
    letter-spacing: 0.25em;

    color: var(--muted);
}

.adanova-header h2 {
    max-width: 850px;

    font-size: clamp(46px, 5.5vw, 82px);
    font-weight: 300;

    line-height: 1.05;
    letter-spacing: -0.055em;
}

.adanova-header h2 span {
    color: var(--stone);
}

.adanova-meta {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.adanova-meta div {
    padding: 17px 0;
    border-bottom: 1px solid var(--line);
}

.adanova-meta span,
.adanova-meta strong {
    display: block;
}

.adanova-meta span {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: 0.15em;
    margin-bottom: 7px;
}

.adanova-meta strong {
    font-size: 14px;
    font-weight: 500;
}

.gallery {
    overflow: hidden;
}

.gallery img {
    transition: transform 1.2s ease;
}

.gallery:hover img {
    transform: scale(1.025);
}

.gallery-large {
    margin-bottom: 30px;
}

.gallery-large img {
    height: 74vh;
    object-fit: cover;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.gallery-grid img {
    height: 560px;
    object-fit: cover;
}


/* INTERIOR */

.interior {
    background: var(--dark);
    color: white;
}

.interior .section-label {
    color: rgba(255,255,255,0.4);
}

.interior .section-label span {
    color: white;
}

.interior-heading {
    display: grid;
    grid-template-columns: 1fr 0.55fr;
    gap: 100px;

    margin-bottom: 90px;
}

.interior-heading h2 {
    font-size: clamp(55px, 6vw, 94px);
    line-height: 1;
    font-weight: 300;
    letter-spacing: -0.06em;
}

.interior-heading h2 span {
    display: block;
    color: #9c9689;
}

.interior-heading p {
    align-self: end;
    color: rgba(255,255,255,0.52);
    line-height: 1.9;
}

.interior-gallery {
    display: grid;
    grid-template-columns: 1.35fr 0.65fr;
    gap: 25px;
}

.interior-card {
    overflow: hidden;
    position: relative;
}

.interior-card img {
    height: 510px;
    object-fit: cover;
    transition: transform 1s ease;
}

.interior-card:hover img {
    transform: scale(1.03);
}

.interior-card-large {
    grid-row: span 2;
}

.interior-card-large img {
    height: 1045px;
}

.interior-card-wide {
    grid-column: 1 / -1;
}

.interior-card-wide img {
    height: 620px;
}

.interior-card span {
    position: absolute;
    left: 22px;
    bottom: 20px;

    padding: 10px 13px;

    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(8px);

    font-size: 10px;
    letter-spacing: 0.14em;
}


/* REGION */

.region {
    position: relative;
    min-height: 85vh;

    display: flex;
    align-items: center;

    color: white;
}

.region-image {
    position: absolute;
    inset: 0;

    background:
        url("../assets/images/adanova-exterior-02.jpg")
        center / cover no-repeat;

    filter: saturate(0.75);
}

.region-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,0.62),
            rgba(0,0,0,0.05)
        );
}

.region-content {
    position: relative;
    z-index: 2;
}

.region .eyebrow {
    color: rgba(255,255,255,0.55);
}

.region h2 {
    max-width: 960px;

    font-size: clamp(55px, 7vw, 110px);
    line-height: 0.98;

    font-weight: 300;
    letter-spacing: -0.065em;
}

.region h2 span {
    display: block;
    color: rgba(255,255,255,0.55);
}

.region-content > p:last-child {
    max-width: 450px;

    margin-top: 45px;

    font-size: 16px;
    line-height: 1.8;

    color: rgba(255,255,255,0.7);
}


/* CONTACT */

.contact {
    padding-top: 190px;
    padding-bottom: 190px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 120px;
}

.contact-heading h2 {
    font-size: clamp(55px, 7vw, 105px);
    line-height: 0.98;
    font-weight: 300;
    letter-spacing: -0.06em;
}

.contact-heading h2 span {
    display: block;
    color: var(--stone);
}

.contact-info {
    align-self: end;
}

.contact-block {
    padding: 22px 0;
    border-bottom: 1px solid var(--line);
}

.contact-block span {
    display: block;
    font-size: 10px;
    letter-spacing: 0.16em;
    color: var(--muted);
    margin-bottom: 8px;
}

.contact-block a,
.contact-block p {
    font-size: 17px;
}

.contact-button {
    margin-top: 40px;

    width: 100%;

    padding: 22px 24px;

    background: var(--dark);
    color: white;

    display: flex;
    justify-content: space-between;

    font-size: 13px;
    transition: transform 0.3s ease;
}

.contact-button:hover {
    transform: translateY(-4px);
}


/* FOOTER */

.footer {
    background: var(--dark);
    color: white;

    padding-top: 70px;

    overflow: hidden;
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-logo {
    font-size: 22px;
    letter-spacing: -0.04em;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    font-size: 11px;
    color: rgba(255,255,255,0.55);
}

.footer-big {
    font-size: 34vw;
    line-height: 0.78;
    letter-spacing: -0.09em;

    text-align: center;

    margin-top: 80px;

    color: rgba(255,255,255,0.055);

    user-select: none;
}

.footer-bottom {
    min-height: 80px;

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

    border-top: 1px solid rgba(255,255,255,0.08);

    font-size: 10px;
    letter-spacing: 0.15em;

    color: rgba(255,255,255,0.35);
}


/* BACK TO TOP */

.back-to-top {
    position: fixed;

    right: 28px;
    bottom: 28px;

    width: 48px;
    height: 48px;

    border-radius: 50%;

    border: 1px solid rgba(0,0,0,0.12);

    background: rgba(243,240,233,0.9);
    backdrop-filter: blur(12px);

    color: var(--text);

    cursor: pointer;

    z-index: 700;

    opacity: 0;
    visibility: hidden;

    transform: translateY(10px);

    transition: 0.3s ease;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}


/* REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(32px);

    transition:
        opacity 0.9s cubic-bezier(.2,.65,.3,1),
        transform 0.9s cubic-bezier(.2,.65,.3,1);
}

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


/* TABLET */

@media (max-width: 1100px) {

    .desktop-nav {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        display: block;

        position: fixed;
        top: 0;
        right: 0;

        width: min(460px, 90vw);
        height: 100svh;

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

        z-index: 1000;

        transform: translateX(105%);
        transition: transform 0.45s cubic-bezier(.7,0,.2,1);
    }

    .mobile-nav.active {
        transform: translateX(0);
    }

    .mobile-nav__inner {
        padding: 130px 45px 50px;

        display: flex;
        flex-direction: column;

        height: 100%;
    }

    .mobile-nav__eyebrow {
        font-size: 10px;
        letter-spacing: 0.22em;

        color: var(--muted);

        margin-bottom: 40px;
    }

    .mobile-nav a {
        font-size: clamp(34px, 7vw, 55px);
        line-height: 1.4;
        letter-spacing: -0.05em;
    }

    .mobile-nav__footer {
        margin-top: auto;

        padding-top: 30px;

        border-top: 1px solid var(--line);

        font-size: 10px;
        letter-spacing: 0.16em;

        color: var(--muted);
    }

    .site-header.menu-active {
        color: var(--text);
    }

    .intro-grid,
    .process-header,
    .interior-heading,
    .adanova-header,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

}


/* MOBILE */

@media (max-width: 700px) {

    .container {
        width: min(calc(100% - 38px), var(--container));
    }

    .section {
        padding: 95px 0;
    }

    .header-inner {
        height: 76px;
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero-title {
        font-size: clamp(62px, 19vw, 90px);
    }

    .hero-text {
        max-width: 320px;
        font-size: 14px;
        line-height: 1.7;
    }

    .hero-bottom {
        left: 19px;
        right: 19px;
        bottom: 25px;
    }

    .hero-project {
        display: none;
    }

    .scroll-indicator {
        width: 100%;
        justify-content: space-between;
    }

    .section-label {
        margin-bottom: 50px;
    }

    .intro-grid {
        gap: 40px;
    }

    .intro-heading h2 {
        font-size: 60px;
    }

    .statement {
        padding: 110px 0;
    }

    .statement-title {
        font-size: 45px;
    }

    .process-header {
        margin-bottom: 55px;
    }

    .process-header h2 {
        font-size: 54px;
    }

    .process-item {
        grid-template-columns: 50px 1fr;
        gap: 20px;
    }

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

    .process-item:hover {
        padding-left: 0;
    }

    .project-image-wrap {
        height: 70vh;
    }

    .project-view {
        width: 112px;
        height: 112px;

        right: 18px;
        bottom: 18px;

        font-size: 8px;
    }

    .project-info {
        grid-template-columns: 45px 1fr;
        gap: 15px;
    }

    .project-type {
        grid-column: 2;
    }

    .project-info h3 {
        font-size: 55px;
    }

    .gallery-large img,
    .gallery-grid img {
        height: auto;
    }

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

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

    .interior-card,
    .interior-card-large,
    .interior-card-wide {
        grid-column: auto;
        grid-row: auto;
    }

    .interior-card img,
    .interior-card-large img,
    .interior-card-wide img {
        height: auto;
        min-height: 430px;
        object-fit: cover;
    }

    .region {
        min-height: 75vh;
    }

    .region h2 {
        font-size: 55px;
    }

    .contact {
        padding-top: 110px;
        padding-bottom: 110px;
    }

    .contact-heading h2 {
        font-size: 54px;
    }

    .footer-links {
        display: none;
    }

    .footer-big {
        margin-top: 65px;
    }

    .back-to-top {
        right: 18px;
        bottom: 18px;
    }

}