/*==========================================================
VARIABLES
==========================================================*/

:root{

    --primary:#B38A5A;

    --primary-dark:#8F6B43;

    --dark:#302B27;

    --text:#5B5550;

    --muted:#8A837C;

    --background:#F5F2EE;

    --white:#FFFFFF;

    --border:#E2DDD6;

    --shadow:0 10px 30px rgba(48,43,39,.07);

}


/*==========================================================
RESET
==========================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    font-family:'Montserrat',sans-serif;

    background:var(--white);

    color:var(--text);

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}


/*==========================================================
CONTAINER
==========================================================*/

.container{

    width:90%;

    max-width:1200px;

    margin:auto;

}


/*==========================================================
SECTIONS
==========================================================*/

section{

    padding:100px 0;

}

.section-header{

    max-width:760px;

    margin:0 auto 60px;

    text-align:center;

}

.section-header span{

    display:inline-block;

    color:var(--primary);

    font-size:.78rem;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:18px;

}

.section-header h2{

    color:var(--dark);

    font-family:'Space Grotesk',sans-serif;

    font-size:2.8rem;

    line-height:1.2;

    font-weight:500;

}

.section-header p{

    margin-top:20px;

    line-height:1.9;

    color:var(--muted);

}


/*==========================================================
HEADER
==========================================================*/

header{

    position:fixed;

    top:0;

    left:0;

    width:100%;

    height:90px;

    z-index:999;

    background:#F5F2EE;

    backdrop-filter:blur(10px);

    border-bottom:1px solid #F5F2EE;

    transition:.35s;

}

header.scrolled{

    background:#F5F2EE;

    box-shadow:0 5px 25px rgba(0,0,0,.06);

}

header .container{

    height:100%;

    display:flex;

    align-items:center;

    justify-content:space-between;

}


/*==========================================================
LOGO
==========================================================*/

.logo{

    display:flex;

    align-items:center;

    gap:12px;

}

.logo img{

    width:100px;

    height:auto;

    object-fit:contain;

}

.logo span{

    color:#202020;

    font-family:'Space Grotesk',sans-serif;

    font-size:1.25rem;

    font-weight:600;

    letter-spacing:3px;

}


/*==========================================================
MENU BUTTON
==========================================================*/

.menu-toggle{

    display:none;

    width:42px;

    height:42px;

    align-items:center;

    justify-content:center;

    background:transparent;

    border:1px solid var(--border);

    color:var(--dark);

    font-size:1.1rem;

    cursor:pointer;

}

/*==========================================================
HERO
==========================================================*/

.hero{

    min-height:100vh;

    padding-top:85px;

    display:flex;

    align-items:center;

    position:relative;

    overflow:hidden;

    background:

        linear-gradient(

            90deg,

            #F5F2EE 0%,

            #F5F2EE 65%,

            #EEE8E0 100%

        );

}


/*==========================================================
HERO DECORATION
==========================================================*/

.hero::before{

    content:"";

    position:absolute;

    top:0;

    right:12%;

    width:1px;

    height:100%;

    background:rgba(179,138,90,.25);

}

.hero::after{

    content:"";

    position:absolute;

    left:0;

    bottom:15%;

    width:180px;

    height:1px;

    background:var(--primary);

}


/*==========================================================
OVERLAY
==========================================================*/

.hero .overlay{

    position:absolute;

    inset:0;

    background:transparent;

}


/*==========================================================
HERO CONTAINER
==========================================================*/

.hero .container{

    position:relative;

    z-index:2;

}


/*==========================================================
HERO CONTENT
==========================================================*/

.hero-content{

    max-width:720px;

}

.hero-content .subtitle{

    display:inline-block;

    color:var(--primary);

    font-size:.8rem;

    font-weight:700;

    letter-spacing:4px;

    margin-bottom:25px;

}

.hero-content h1{

    font-family:'Space Grotesk',sans-serif;

    color:var(--dark);

    font-size:5rem;

    line-height:1;

    font-weight:600;

    letter-spacing:2px;

    margin-bottom:30px;

}

.hero-content p{

    max-width:650px;

    color:var(--text);

    font-size:1.05rem;

    line-height:2;

    margin-bottom:40px;

}


/*==========================================================
HERO BUTTONS
==========================================================*/

.hero-buttons{

    display:flex;

    gap:15px;

    flex-wrap:wrap;

}

/*==========================================================
BUTTONS
==========================================================*/

.btn{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 32px;

    background:var(--dark);

    color:var(--white);

    border:1px solid var(--dark);

    font-size:.85rem;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    background:var(--primary);

    border-color:var(--primary);

}

.btn-outline{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    padding:16px 32px;

    background:transparent;

    color:var(--dark);

    border:1px solid var(--dark);

    font-size:.85rem;

    font-weight:600;

    transition:.3s;

}

.btn-outline:hover{

    background:var(--dark);

    color:var(--white);

}

/*==========================================================
ABOUT
==========================================================*/

.about{

    background:var(--white);

}

.about-content{

    display:grid;

    grid-template-columns:1.1fr .9fr;

    gap:80px;

    align-items:start;

}


/*==========================================================
ABOUT TEXT
==========================================================*/

.about-text{

    display:flex;

    flex-direction:column;

    gap:25px;

}

.about-text p{

    color:var(--text);

    line-height:2;

}


/*==========================================================
ABOUT DATA
==========================================================*/

.about-data{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:25px;

    margin-top:10px;

}

.about-data > div{

    padding-left:20px;

    border-left:2px solid var(--primary);

}

.about-data h3{

    color:var(--dark);

    font-family:'Space Grotesk',sans-serif;

    font-size:1.15rem;

    font-weight:600;

    margin-bottom:12px;

}

.about-data p{

    color:var(--muted);

    font-size:.9rem;

    line-height:1.8;

}


/*==========================================================
ABOUT IMAGE
==========================================================*/

.about-image{

    margin-top:70px;

    width:100%;

    display:flex;

    justify-content:center;

    align-items:center;

}

.about-image img{

    width:auto;

    max-width:520px;

    height:auto;

    max-height:430px;

    object-fit:contain;

    margin:auto;

}

/*==========================================================
PHILOSOPHY
==========================================================*/

.philosophy{

    background:var(--background);

}

.philosophy-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:0;

    border-top:1px solid var(--border);

    border-bottom:1px solid var(--border);

}

.philosophy-card{

    padding:50px 40px;

    background:var(--background);

    text-align:center;

    border-right:1px solid var(--border);

    transition:.35s;

}

.philosophy-card:last-child{

    border-right:none;

}

.philosophy-card:hover{

    background:var(--white);

}

.philosophy-card i{

    display:flex;

    align-items:center;

    justify-content:center;

    width:58px;

    height:58px;

    margin:0 auto 25px;

    color:var(--primary);

    border:1px solid var(--primary);

    font-size:1.3rem;

}

.philosophy-card h3{

    color:var(--dark);

    font-family:'Space Grotesk',sans-serif;

    font-size:1.3rem;

    font-weight:600;

    margin-bottom:18px;

}

.philosophy-card p{

    color:var(--muted);

    line-height:1.9;

    font-size:.92rem;

}

/*==========================================================
PROJECTS
==========================================================*/

.projects{

    background:var(--white);

}

.projects-grid{

    display:flex;

    justify-content:center;

    width:100%;

}


/*==========================================================
PROJECT CARD
==========================================================*/

.project-card{

    width:100%;

    max-width:820px;

    background:var(--white);

    border:1px solid var(--border);

    overflow:hidden;

    transition:.35s;

}

.project-card:hover{

    transform:translateY(-5px);

    box-shadow:var(--shadow);

}


/*==========================================================
PROJECT IMAGE
==========================================================*/

.project-card > img{

    display:block;

    width:100%;

    height:320px;

    object-fit:cover;

    transition:.45s;

}

.project-card:hover > img{

    transform:scale(1.03);

}


/*==========================================================
PROJECT INFO
==========================================================*/

.project-info{

    padding:32px 35px 35px;

}

.project-info h3{

    color:var(--dark);

    font-family:'Space Grotesk',sans-serif;

    font-size:1.6rem;

    font-weight:600;

    margin-bottom:14px;

}

.project-info p{

    color:var(--muted);

    font-size:.9rem;

    line-height:1.8;

    margin-bottom:25px;

}


/*==========================================================
PROJECT LINK
==========================================================*/

.project-info a{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--primary);

    font-size:.85rem;

    font-weight:700;

    transition:.3s;

}

.project-info a:hover{

    color:var(--primary-dark);

    gap:15px;

}

.project-info a i{

    font-size:.75rem;

}

/*==========================================================
FOOTER
==========================================================*/

footer{

    background:#1E1E1E;

    color:white;

    padding:80px 0 40px;

}

footer .container{

    display:flex;

    flex-direction:column;

    align-items:center;

    gap:25px;

}

.footer-logo{

    display:flex;

    align-items:center;

    gap:15px;

}

.footer-logo img{

    width:45px;

}

.footer-logo span{

    font-size:1.4rem;

    font-weight:700;

    letter-spacing:3px;

}

footer p{

    color:#BDBDBD;

    text-align:center;

    max-width:700px;

    line-height:1.9;

}

footer nav{

    display:flex;

    gap:35px;

}

footer nav a{

    transition:.3s;

}

footer nav a:hover{

    color:var(--primary);

}

footer small{

    color:#8A8A8A;

}

/*==========================================================
FINAL DETAILS
==========================================================*/

::selection{

    background:var(--primary);

    color:var(--white);

}

button{

    font-family:inherit;

}

.btn,

.btn-outline,

.project-card,

.philosophy-card{

    transition:.35s;

}