/* ==========================================
   ROOT
========================================== */

:root {

    --cream: #f5f1e9;
    --cream-dark: #e9e2d6;

    --charcoal: #252521;

    --brown: #756653;

    --gold: #b59a6b;

    --white: #ffffff;

    --muted: #8a8379;

}


/* ==========================================
   RESET
========================================== */

* {

    margin: 0;

    padding: 0;

    box-sizing: border-box;

}


html {

    scroll-behavior: smooth;

}


body {

    background: var(--cream);

    color: var(--charcoal);

    font-family: "DM Sans", sans-serif;

    overflow-x: hidden;

}


a {

    text-decoration: none;

    color: inherit;

}


img {

    width: 100%;

    display: block;

}


/* ==========================================
   NAVBAR
========================================== */

.navbar {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 82px;

    padding: 0 6%;

    display: flex;

    align-items: center;

    justify-content: space-between;

    z-index: 9999;

    color: white;

    transition: .5s;

}


.navbar.scrolled {

    background: rgba(245,241,233,.94);

    color: var(--charcoal);

    backdrop-filter: blur(15px);

    box-shadow: 0 5px 30px rgba(0,0,0,.06);

}


.logo {

    font-family: "Playfair Display", serif;

    font-size: 25px;

    letter-spacing: 4px;

}


.logo small {

    display: block;

    font-family: "DM Sans", sans-serif;

    font-size: 7px;

    letter-spacing: 4px;

    margin-top: -3px;

}


.nav-links {

    display: flex;

    gap: 35px;

    list-style: none;

}


.nav-links a {

    font-size: 10px;

    letter-spacing: 1.5px;

    transition: .3s;

}


.nav-links a:hover {

    color: var(--gold);

}


.nav-cta {

    border: 1px solid rgba(255,255,255,.6);

    padding: 13px 20px;

    font-size: 9px;

    letter-spacing: 1.5px;

    transition: .3s;

}


.navbar.scrolled .nav-cta {

    border-color: var(--charcoal);

}


.nav-cta:hover {

    background: var(--gold);

    border-color: var(--gold);

    color: white;

}


/* ==========================================
   MOBILE MENU BUTTON
========================================== */

.menu-btn {

    display: none;

    width: 42px;

    height: 42px;

    border: 1px solid rgba(255,255,255,.6);

    background: transparent;

    cursor: pointer;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    gap: 5px;

    z-index: 10001;

}


.menu-btn span {

    width: 20px;

    height: 1px;

    background: white;

    transition: .4s;

}


.navbar.scrolled .menu-btn {

    border-color: var(--charcoal);

}


.navbar.scrolled .menu-btn span {

    background: var(--charcoal);

}


/* ==========================================
   PROGRESS
========================================== */

.scroll-progress {

    position: fixed;

    top: 0;

    left: 0;

    width: 100%;

    height: 2px;

    z-index: 10000;

}


.scroll-progress span {

    display: block;

    width: 0;

    height: 100%;

    background: var(--gold);

}


/* ==========================================
   HERO
========================================== */

.hero-scroll {

    height: 320vh;

    position: relative;

    background: #1c1916;

}


.hero-sticky {

    position: sticky;

    top: 0;

    width: 100%;

    height: 100vh;

    overflow: hidden;

}


.hero-image {

    position: absolute;

    inset: -8%;

    background-image:

        linear-gradient(
            rgba(20,17,13,.20),
            rgba(20,17,13,.45)
        ),

        url(
        "https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=2200&q=90"
        );

    background-size: cover;

    background-position: center;

    transform: scale(1);

    will-change: transform;

}


.hero-light {

    position: absolute;

    width: 700px;

    height: 700px;

    border-radius: 50%;

    background:

        radial-gradient(
            circle,
            rgba(255,214,160,.35),
            transparent 65%
        );

    left: 50%;

    top: 30%;

    transform: translate(-50%,-50%);

    filter: blur(20px);

    opacity: .5;

}


.hero-vignette {

    position: absolute;

    inset: 0;

    background:

        radial-gradient(
            circle,
            transparent 25%,
            rgba(0,0,0,.58) 100%
        );

}


.curtain {

    position: absolute;

    top: -5%;

    width: 27%;

    height: 110%;

    z-index: 10;

    background:

        linear-gradient(
            90deg,
            #29231d,
            #4a4034 45%,
            #302920
        );

    box-shadow:

        15px 0 50px rgba(0,0,0,.35);

    will-change: transform;

}


.curtain.left {

    left: 0;

}


.curtain.right {

    right: 0;

    box-shadow:

        -15px 0 50px rgba(0,0,0,.35);

}


/* ==========================================
   HERO CONTENT
========================================== */

.hero-content {

    position: absolute;

    left: 8%;

    top: 50%;

    transform: translateY(-50%);

    color: white;

    z-index: 20;

    max-width: 700px;

}


.hero-eyebrow {

    font-size: 9px;

    letter-spacing: 5px;

    color: #d9bd8c;

    margin-bottom: 25px;

}


.hero-content h1 {

    font-family: "Playfair Display", serif;

    font-size: clamp(60px,9vw,125px);

    font-weight: 400;

    line-height: .88;

}


.hero-content h1 em {

    color: #d5b889;

}


.hero-description {

    max-width: 430px;

    margin-top: 30px;

    font-size: 12px;

    line-height: 1.9;

    color: rgba(255,255,255,.75);

}


.hero-button {

    display: inline-flex;

    margin-top: 35px;

    padding: 15px 24px;

    background: #c1a474;

    color: #27231e;

    font-size: 9px;

    letter-spacing: 2px;

    transition: .4s;

}


.hero-button:hover {

    background: white;

    transform: translateY(-4px);

}


/* ==========================================
   SCROLL INDICATOR
========================================== */

.scroll-indicator {

    position: absolute;

    bottom: 35px;

    left: 50%;

    transform: translateX(-50%);

    z-index: 30;

    color: white;

    text-align: center;

    font-size: 8px;

    letter-spacing: 4px;

}


.scroll-line {

    width: 1px;

    height: 55px;

    margin: 12px auto 0;

    background: rgba(255,255,255,.7);

    animation: scrollLine 1.5s infinite;

}


@keyframes scrollLine {

    0% {

        transform: scaleY(0);

        transform-origin: top;

    }

    50% {

        transform: scaleY(1);

    }

    100% {

        transform: scaleY(0);

        transform-origin: bottom;

    }

}


/* ==========================================
   COMMON
========================================== */

.eyebrow {

    font-size: 9px;

    letter-spacing: 4px;

    color: var(--gold);

    margin-bottom: 20px;

}


/* ==========================================
   INTRO
========================================== */

.intro {

    padding: 150px 8%;

    text-align: center;

}


.intro h2 {

    max-width: 1000px;

    margin: auto;

    font-family: "Playfair Display", serif;

    font-size: clamp(42px,6vw,75px);

    font-weight: 400;

    line-height: 1;

}


.intro h2 em {

    color: var(--brown);

}


.intro p:last-child {

    max-width: 580px;

    margin: 30px auto 0;

    color: var(--muted);

    font-size: 12px;

    line-height: 2;

}


/* ==========================================
   ABOUT
========================================== */

.about {

    padding: 130px 8%;

    display: grid;

    grid-template-columns: 1.05fr .95fr;

    gap: 100px;

    align-items: center;

}


.about-image {

    height: 650px;

    position: relative;

    overflow: hidden;

}


.about-image img {

    height: 100%;

    object-fit: cover;

    transition: 1s;

}


.about-image:hover img {

    transform: scale(1.05);

}


.about-image::after {

    content: "";

    position: absolute;

    inset: 20px;

    border: 1px solid rgba(255,255,255,.6);

}


.about-number {

    position: absolute;

    z-index: 2;

    bottom: 30px;

    left: 30px;

    padding: 25px;

    background: rgba(255,255,255,.9);

}


.about-number strong {

    display: block;

    font-family: "Playfair Display", serif;

    font-size: 45px;

    font-weight: 400;

    color: var(--brown);

}


.about-number span {

    font-size: 8px;

    letter-spacing: 2px;

    color: #777;

}


.about-content h2 {

    font-family: "Playfair Display", serif;

    font-size: clamp(45px,5vw,72px);

    line-height: .95;

    font-weight: 400;

}


.about-content h2 em {

    color: var(--brown);

}


.about-text {

    margin-top: 30px;

    color: var(--muted);

    font-size: 12px;

    line-height: 2;

}


.simple-link {

    display: inline-block;

    margin-top: 35px;

    padding-bottom: 7px;

    border-bottom: 1px solid var(--charcoal);

    font-size: 9px;

    letter-spacing: 2px;

}


/* ==========================================
   SERVICES
========================================== */

.services {

    padding: 140px 8%;

    background: var(--charcoal);

    color: white;

}


.services-header {

    display: flex;

    justify-content: space-between;

    align-items: end;

    margin-bottom: 80px;

}


.services-header h2 {

    font-family: "Playfair Display", serif;

    font-size: clamp(45px,6vw,80px);

    font-weight: 400;

    line-height: .9;

}


.services-header h2 em {

    color: var(--gold);

}


.services-header > p {

    max-width: 300px;

    color: #8e8982;

    font-size: 11px;

    line-height: 1.8;

}


.service-grid {

    display: grid;

    grid-template-columns: repeat(4,1fr);

    border-top: 1px solid #45413b;

}


.service {

    padding: 40px 25px;

    min-height: 330px;

    border-right: 1px solid #45413b;

    transition: .5s;

}


.service:first-child {

    border-left: 1px solid #45413b;

}


.service:hover {

    background: #302e29;

    transform: translateY(-10px);

}


.service-number {

    color: var(--gold);

    font-family: "Playfair Display", serif;

    font-size: 20px;

}


.service h3 {

    font-family: "Playfair Display", serif;

    font-weight: 400;

    font-size: 30px;

    margin-top: 70px;

    line-height: 1;

}


.service p {

    margin-top: 25px;

    color: #858078;

    font-size: 10px;

    line-height: 1.8;

}


/* ==========================================
   PROJECTS
========================================== */

.projects {

    padding: 140px 8%;

}


.projects-heading {

    text-align: center;

    margin-bottom: 80px;

}


.projects-heading h2 {

    font-family: "Playfair Display", serif;

    font-weight: 400;

    font-size: clamp(45px,6vw,80px);

    line-height: .9;

}


.projects-heading h2 em {

    color: var(--brown);

}


.project-grid {

    display: grid;

    grid-template-columns: 1.25fr .75fr;

    gap: 30px;

}


.project {

    overflow: hidden;

}


.project.big {

    grid-row: span 2;

}


.project-image {

    position: relative;

    height: 380px;

    overflow: hidden;

}


.project.big .project-image {

    height: 790px;

}


.project-image img {

    height: 100%;

    object-fit: cover;

    transition: 1s;

}


.project:hover img {

    transform: scale(1.08);

}


.project-overlay {

    position: absolute;

    inset: 0;

    display: flex;

    align-items: end;

    padding: 35px;

    background:

        linear-gradient(
            transparent 45%,
            rgba(0,0,0,.65)
        );

    color: white;

    opacity: 0;

    transition: .5s;

}


.project:hover .project-overlay {

    opacity: 1;

}


.project-overlay span {

    font-size: 8px;

    letter-spacing: 3px;

    color: #d5bb8d;

}


.project-overlay h3 {

    font-family: "Playfair Display", serif;

    font-size: 35px;

    font-weight: 400;

    margin-top: 7px;

}


.project-info {

    padding: 20px 0;

}


.project-info span {

    font-size: 8px;

    letter-spacing: 3px;

    color: var(--brown);

}


.project-info h3 {

    font-family: "Playfair Display", serif;

    font-size: 28px;

    font-weight: 400;

    margin-top: 5px;

}


.project-info p {

    color: #999;

    font-size: 9px;

    margin-top: 5px;

}


/* ==========================================
   STATS
========================================== */

.stats {

    padding: 100px 8%;

    background: var(--cream-dark);

    display: grid;

    grid-template-columns: repeat(4,1fr);

    text-align: center;

}


.stat {

    padding: 20px;

    border-right: 1px solid #d1c8bb;

}


.stat:last-child {

    border: none;

}


.stat-number {

    font-family: "Playfair Display", serif;

    font-size: 55px;

    font-weight: 400;

    color: var(--brown);

    display: inline-block;

}


.stat-symbol {

    font-family: "Playfair Display", serif;

    font-size: 42px;

    color: var(--brown);

}


.stat span {

    display: block;

    font-size: 8px;

    letter-spacing: 2px;

    color: #777;

    margin-top: 5px;

}


/* ==========================================
   TESTIMONIAL
========================================== */

.testimonial {

    padding: 150px 8%;

    text-align: center;

}


.quote {

    font-family: "Playfair Display", serif;

    font-size: clamp(35px,5vw,65px);

    line-height: 1.05;

    max-width: 1000px;

    margin: auto;

}


.quote em {

    color: var(--brown);

}


.client {

    margin-top: 35px;

    font-size: 9px;

    letter-spacing: 3px;

    color: var(--muted);

}


/* ==========================================
   CTA
========================================== */

.cta {

    margin: 0 5% 100px;

    min-height: 600px;

    position: relative;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    overflow: hidden;

    color: white;

}


.cta-bg {

    position: absolute;

    inset: 0;

    background:

        linear-gradient(
            rgba(25,20,15,.5),
            rgba(25,20,15,.7)
        ),

        url(
        "https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=2200&q=90"
        );

    background-size: cover;

    background-position: center;

}


.cta-content {

    position: relative;

    z-index: 2;

    padding: 20px;

}


.cta-content h2 {

    font-family: "Playfair Display", serif;

    font-size: clamp(50px,7vw,90px);

    line-height: .9;

    font-weight: 400;

}


.cta-content h2 em {

    color: #d1b37d;

}


.cta-content p {

    max-width: 500px;

    margin: 30px auto;

    color: #ddd;

    font-size: 11px;

    line-height: 1.8;

}


.cta-button {

    display: inline-block;

    padding: 17px 28px;

    background: #c0a474;

    color: #25211c;

    font-size: 9px;

    letter-spacing: 2px;

    transition: .3s;

}


.cta-button:hover {

    background: white;

    transform: translateY(-4px);

}


/* ==========================================
   CONTACT
========================================== */

.contact {

    padding: 130px 8%;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 120px;

}


.contact h2 {

    font-family: "Playfair Display", serif;

    font-size: clamp(45px,5vw,70px);

    line-height: .95;

    font-weight: 400;

}


.contact h2 em {

    color: var(--brown);

}


.contact-description {

    margin-top: 30px;

    max-width: 450px;

    color: var(--muted);

    font-size: 11px;

    line-height: 1.9;

}


.contact-details {

    margin-top: 45px;

}


.detail {

    margin-bottom: 25px;

}


.detail span {

    display: block;

    color: var(--gold);

    font-size: 8px;

    letter-spacing: 3px;

    margin-bottom: 5px;

}


.detail strong {

    font-size: 11px;

    font-weight: 400;

}


.contact-form {

    display: flex;

    flex-direction: column;

    gap: 25px;

}


.contact-form input,
.contact-form textarea {

    width: 100%;

    border: none;

    border-bottom: 1px solid #cfc7bc;

    background: transparent;

    padding: 15px 5px;

    outline: none;

    font-family: "DM Sans", sans-serif;

    font-size: 11px;

}


.contact-form textarea {

    height: 120px;

    resize: none;

}


.contact-form button {

    border: none;

    padding: 17px;

    background: var(--charcoal);

    color: white;

    cursor: pointer;

    font-size: 9px;

    letter-spacing: 2px;

    transition: .3s;

}


.contact-form button:hover {

    background: var(--gold);

}


/* ==========================================
   FOOTER
========================================== */

footer {

    padding: 40px 8%;

    background: var(--charcoal);

    color: white;

    display: flex;

    justify-content: space-between;

    align-items: center;

}


footer .logo {

    font-size: 20px;

}


footer p {

    font-size: 8px;

    color: #777;

    letter-spacing: 1px;

}


/* ==========================================
   REVEAL
========================================== */

.reveal {

    opacity: 0;

    transform: translateY(70px);

    transition:

        opacity 1s ease,

        transform 1s cubic-bezier(.2,.7,.2,1);

}


.reveal.show {

    opacity: 1;

    transform: translateY(0);

}


/* ==========================================
   MOBILE
========================================== */

@media (max-width: 900px) {


    .menu-btn {

        display: flex;

    }


    .nav-cta {

        display: none;

    }


    .nav-links {

        position: fixed;

        top: 82px;

        right: 20px;

        width: 230px;

        padding: 20px 25px;

        background: rgba(37,37,33,.97);

        backdrop-filter: blur(15px);

        display: flex;

        flex-direction: column;

        gap: 0;

        transform: translateX(120%);

        opacity: 0;

        pointer-events: none;

        transition:

            transform .4s ease,

            opacity .4s ease;

        box-shadow:

            0 20px 50px rgba(0,0,0,.25);

    }


    .nav-links.active {

        transform: translateX(0);

        opacity: 1;

        pointer-events: auto;

    }


    .nav-links li {

        border-bottom:

            1px solid rgba(255,255,255,.12);

    }


    .nav-links li:last-child {

        border-bottom: none;

    }


    .nav-links a {

        display: block;

        padding: 17px 5px;

        color: white;

    }


    .menu-btn.active span:nth-child(1) {

        transform:

            translateY(6px)

            rotate(45deg);

    }


    .menu-btn.active span:nth-child(2) {

        opacity: 0;

    }


    .menu-btn.active span:nth-child(3) {

        transform:

            translateY(-6px)

            rotate(-45deg);

    }


    .about {

        grid-template-columns: 1fr;

        gap: 60px;

    }


    .about-image {

        height: 500px;

    }


    .service-grid {

        grid-template-columns: repeat(2,1fr);

    }


    .project-grid {

        grid-template-columns: 1fr;

    }


    .project.big {

        grid-row: auto;

    }


    .project.big .project-image {

        height: 550px;

    }


    .stats {

        grid-template-columns: repeat(2,1fr);

    }


    .stat:nth-child(2) {

        border-right: none;

    }


    .contact {

        grid-template-columns: 1fr;

        gap: 70px;

    }

}


/* ==========================================
   SMALL PHONE
========================================== */

@media (max-width: 600px) {


    .navbar {

        height: 72px;

        padding: 0 5%;

    }


    .nav-links {

        top: 72px;

    }


    .logo {

        font-size: 21px;

    }


    .hero-scroll {

        height: 280vh;

    }


    .hero-content {

        left: 7%;

        right: 7%;

    }


    .hero-content h1 {

        font-size: 55px;

    }


    .hero-description {

        max-width: 300px;

    }


    .curtain {

        width: 25%;

    }


    .intro,
    .about,
    .services,
    .projects,
    .testimonial,
    .contact {

        padding-top: 100px;

        padding-bottom: 100px;

    }


    .services-header {

        display: block;

    }


    .services-header > p {

        margin-top: 30px;

    }


    .service-grid {

        grid-template-columns: 1fr;

    }


    .service {

        border-left: 1px solid #45413b;

    }


    .project.big .project-image {

        height: 450px;

    }


    .project-image {

        height: 300px;

    }


    .stats {

        grid-template-columns: 1fr 1fr;

        padding: 70px 4%;

    }


    .stat {

        padding: 15px 5px;

    }


    .stat-number {

        font-size: 38px;

    }


    .stat-symbol {

        font-size: 28px;

    }


    .stat span {

        font-size: 7px;

        line-height: 1.5;

    }


    .cta {

        min-height: 500px;

        margin: 0 4% 70px;

    }


    footer {

        flex-direction: column;

        gap: 20px;

        text-align: center;

    }

}