/* ==================================================
   TENTERAM UI KIT v1.0
   ================================================== */


/* ==================================================
   RESET
   ================================================== */

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


/* ==================================================
   BODY
   ================================================== */

body{

    background:#F7F7F5;
    color:#2F2F2F;

    font-family:
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        Roboto,
        Helvetica,
        Arial,
        sans-serif;

}


/* ==================================================
   GLOBAL
   ================================================== */

.container{

    width:100%;

    max-width:1280px;

    margin:0 auto;

    padding:0 24px;

}

section{

    padding:100px 0;

}


/* ==================================================
   HEADER
   ================================================== */

header{

    background:#F7F7F5;

    border-bottom:1px solid #E9E9E6;

    position:sticky;

    top:0;

    z-index:100;
    
    padding:10px 0;

}


/* ==================================================
   NAVBAR
   ================================================== */

.navbar{

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.nav-logo{

    width:70px;

    height:auto;

}

.nav-menu{

    display:flex;

    align-items:center;

    gap:36px;

    list-style:none;

}

.nav-menu a{

    text-decoration:none;

    color:#2F2F2F;

    font-size:15px;

    font-weight:500;

    transition:.25s;

}

.nav-menu a:hover{

    color:#539999;

}

/* ==================================================
   NAV BRAND
================================================== */

.nav-brand{

    display:flex;

    align-items:center;

    gap:8px;

    text-decoration:none;

}

.nav-logo{

    width:48px;

    height:auto;

}

.nav-wordmark{

    height:20px;

    width:auto;

    display:block;

}


/* ==================================================
   BUTTON
   ================================================== */

.btn{

    display:inline-flex;

    justify-content:center;

    align-items:center;

    text-decoration:none;

    padding:14px 28px;

    border-radius:8px;

    font-size:15px;

    font-weight:600;

    transition:.25s;

}

.btn-primary{

    background:#539999;

    color:#FFFFFF;

}

.btn-primary:hover{

    background:#457F7F;

}

.btn-secondary{

    border:2px solid #539999;

    color:#539999;

    background:transparent;

}

.btn-secondary:hover{

    background:#539999;

    color:#FFFFFF;

}


/* ==================================================
   HERO
   ================================================== */

.hero{

    padding:160px 0 80px;

}

.hero-content{

    max-width:760px;

    margin:0 auto;

    text-align:center;

}

.hero-kicker{

    color:#539999;

    font-size:14px;

    font-weight:700;

    letter-spacing:3px;

    text-transform:uppercase;

    margin-bottom:20px;

}

.hero-title{

    font-size:64px;

    font-weight:700;

    line-height:1.15;

    color:#2F2F2F;

    margin-bottom:28px;

}

.hero-subtitle{

    max-width:640px;

    margin:0 auto 50px;

    font-size:21px;

    line-height:1.8;

    color:#666666;

}

.hero-buttons{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

}

/* ==================================================
   FEATURED
================================================== */

.featured{

    background:#FFFFFF;

}

.property-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:32px;

    margin-top:60px;

}

.property-card{

    background:#FFFFFF;

    border-radius:14px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.06);

    transition:.3s;

}

.property-card:hover{

    transform:translateY(-6px);

    box-shadow:0 18px 40px rgba(0,0,0,.10);

}

.property-image{

    aspect-ratio:4/3;

    background:#D8D8D8;

}

.property-content{

    padding:24px;

}

.property-price{

    color:#539999;

    font-size:24px;

    font-weight:700;

    margin-bottom:10px;

}

.property-title{

    font-size:22px;

    margin-bottom:8px;

}

.property-location{

    color:#777777;

    margin-bottom:24px;

}

/* ==================================================
   CTA
================================================== */

.cta-section{

    background:#F7F7F5;

    padding:100px 0;

}

.cta-content{

    max-width:700px;

    margin:0 auto;

    text-align:center;

}

.cta-title{

    font-size:42px;

    font-weight:700;

    color:#2F2F2F;

    margin-bottom:18px;

}

.cta-text{

    font-size:19px;

    line-height:1.7;

    color:#666666;

    margin-bottom:36px;

}

/* ==================================================
   SECTION TITLE
   ================================================== */

.section-title{

    font-size:42px;

    font-weight:700;

    text-align:center;

    margin-bottom:16px;

}

.section-subtitle{

    text-align:center;

    color:#666666;

    margin-bottom:60px;

}


/* ==================================================
   PROPERTY GRID
   ================================================== */

.property-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}


/* ==================================================
   PROPERTY CARD
   ================================================== */

.property-card{

    background:#FFFFFF;

    border-radius:12px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.05);

}

.property-image{

    width:100%;

    aspect-ratio:4/3;

    background:#DDDDDD;

}

.property-content{

    padding:24px;

}

.property-price{

    color:#539999;

    font-size:22px;

    font-weight:700;

    margin-bottom:10px;

}

.property-title{

    font-size:20px;

    margin-bottom:8px;

}

.property-location{

    color:#777777;

}



/* ==================================================
   FOOTER
   ================================================== */

footer{

    border-top:1px solid #E9E9E6;

    margin-top:80px;

    background:#FFFFFF;

}

.footer{

    text-align:center;

    padding:60px 0;

}

.footer-logo{

    width:150px;

    margin-bottom:20px;

}

.footer-tagline{

    font-size:18px;

    color:#666666;

    margin-bottom:20px;

}

.footer-copyright{

    font-size:14px;

    color:#999999;

}

/* ==================================================
   MOBILE
   ================================================== */

@media (max-width:768px){

    .navbar{

        height:auto;

        padding:20px 0;

        flex-direction:column;

        gap:24px;

    }

    .nav-logo{

        width:140px;

    }

    .nav-menu{

        flex-wrap:wrap;

        justify-content:center;

        gap:20px;

    }

    .hero{

        padding:40px 0;

    }

    .hero-title{

        font-size:40px;

    }

    .hero-subtitle{

        font-size:18px;

    }

    .hero-buttons{

        flex-direction:column;

    }

    .btn{

        width:100%;

    }

    .property-grid{

        grid-template-columns:1fr;

    }

}

/* ==================================================
   SERVICE PAGE
   ================================================== */


/* ==================================================
   SERVICE HERO
   ================================================== */

.service-hero{

    padding:140px 0 100px;

    background:#F7F7F5;

}

.service-hero-content{

    max-width:850px;

    margin:0 auto;

    text-align:center;

}

.service-hero .hero-title{

    color:#539999;

    font-size:64px;

    font-weight:700;

    line-height:1.15;

    margin-bottom:40px;

}

.service-hero-text{

    max-width:760px;

    margin:0 auto;

    font-size:20px;

    line-height:1.9;

    color:#666666;

}

.service-hero-text p{

    display:block;

    margin:0 !important;

    padding:0 0 32px 0 !important;

}

.service-hero-text p{
    margin-bottom:5px;
}

.service-hero-text p:last-child{

    padding-bottom:0 !important;

}


/* ==================================================
   SERVICE PROCESS
   ================================================== */

.service-process{

    background:#FFFFFF;

    padding:120px 0;

}

.service-process-heading{

    text-align:center;

    color:#539999;

    font-size:24px;

    font-weight:600;

    letter-spacing:0.5px;

    margin-bottom:5px;

}

.service-step{

    max-width:1000px;

    margin:0 auto;

    padding:100px 0;

    display:grid;

    grid-template-columns:120px 1fr;

    gap:50px;

    border-bottom:1px solid #E9E9E6;

}

.service-step:first-child{

    padding-top:20px;

}

.service-step:last-child{

    border-bottom:none;

}

.service-step-number{

    font-size:35px;

    font-weight:700;

    color:#539999;

    padding-top:8px;
    

}

.service-step-content{

    max-width:760px;

}

.service-step-content h2{

    font-size:36px;

    line-height:1.25;

    color:#2F2F2F;

    margin-bottom:30px;

}

.service-step-content p{

    font-size:18px;

    line-height:1.85;

    color:#555555;

    margin-bottom:24px;

}

.service-step-content p:last-of-type{

    margin-bottom:0;

}


/* ==================================================
   SERVICE QUOTE
   ================================================== */

.service-step-content blockquote{

    margin:50px 0 10px;

    padding-left:30px;

    border-left:3px solid #539999;

    color:#539999;

    font-size:30px;

    line-height:1.45;

}

.service-step-content blockquote strong{

    font-weight:700;

}


/* ==================================================
   SERVICE VALUES
   ================================================== */

.service-values{

    background:#F7F7F5;

    padding:120px 0;

}

.service-values-grid{

    max-width:1100px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.service-value{

    background:#FFFFFF;

    padding:36px;

    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.04);

}

.service-value h3{

    color:#539999;

    font-size:24px;

    margin-bottom:18px;

}

.service-value p{

    color:#666666;

    font-size:16px;

    line-height:1.8;

}


/* ==================================================
   SERVICE CONTACT
   ================================================== */

.service-contact{

    background:#FFFFFF;

    padding:120px 0;

}

.service-contact-content{

    max-width:760px;

    margin:0 auto;

}

.service-contact h2{

    font-size:42px;

    line-height:1.25;

    color:#2F2F2F;

    text-align:center;

    margin-bottom:18px;

}

.service-contact > .container > .service-contact-content > p{

    max-width:650px;

    margin:0 auto 55px;

    text-align:center;

    color:#666666;

    font-size:18px;

    line-height:1.8;

}


/* ==================================================
   CONTACT FORM
   ================================================== */

.contact-form{

    display:flex;

    flex-direction:column;

    gap:24px;

}

.form-group{

    display:flex;

    flex-direction:column;

    gap:9px;

}

.form-group label{

    font-size:15px;

    font-weight:600;

    color:#2F2F2F;

}

.form-group input,
.form-group textarea{

    width:100%;

    border:1px solid #DCDCD8;

    border-radius:8px;

    background:#F7F7F5;

    padding:15px 16px;

    font-family:inherit;

    font-size:16px;

    color:#2F2F2F;

    outline:none;

    transition:.25s;

}

.form-group input{

    height:52px;

}

.form-group textarea{

    min-height:170px;

    resize:vertical;

}

.form-group input:focus,
.form-group textarea:focus{

    border-color:#539999;

    background:#FFFFFF;

}

.contact-form .btn{

    align-self:flex-start;

    border:none;

    cursor:pointer;

    margin-top:8px;

}

/* ==================================================
   ABOUT PAGE
   ================================================== */


/* ==================================================
   ABOUT HERO
   ================================================== */

.about-hero{

    padding:140px 0 100px;

    background:#F7F7F5;

}

.about-hero-content{

    max-width:850px;

    margin:0 auto;

    text-align:center;

}

.about-hero .hero-title{

    font-size:64px;

    font-weight:700;

    line-height:1.15;

    margin-bottom:40px;

}

.about-hero-text{

    max-width:760px;

    margin:0 auto;

    font-size:20px;

    line-height:1.9;

    color:#666666;

}

.about-hero-text p{

    margin-bottom:5px;

}

.about-hero-text p:last-child{

    margin-bottom:0;

}


/* ==================================================
   ABOUT STORY
   ================================================== */

.about-story{

    background:#FFFFFF;

    padding:120px 0;

}

.about-section{

    max-width:1000px;

    margin:0 auto;

    padding:40px 0;

    border-bottom:1px solid #E9E9E6;

}

.about-section:first-child{

    padding-top:20px;

}

.about-section:last-child{

    border-bottom:none;

}

.about-section-content{


    max-width:760px;

}

.about-section-content h2{

    font-size:36px;

    line-height:1.25;

    color:#2F2F2F;

    margin-bottom:30px;

}

.about-section-content p{

    font-size:18px;

    line-height:1.85;

    color:#555555;

    margin-bottom:5px;

}

.about-section-content p:last-child{

    margin-bottom:0;

}


/* ==================================================
   ABOUT QUOTE
   ================================================== */

.about-section-content blockquote{

    margin:50px 0;

    padding-left:30px;

    border-left:3px solid #539999;

    color:#539999;

    font-size:32px;

    line-height:1.45;

}


/* ==================================================
   ABOUT VALUES
   ================================================== */

.about-values{

    background:#F7F7F5;

    padding:120px 0;

}

.about-values-grid{

    max-width:1100px;

    margin:70px auto 0;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}

.about-value{

    background:#FFFFFF;

    padding:40px;

    border-radius:12px;

    box-shadow:0 10px 30px rgba(0,0,0,.04);

}

.about-value h3{

    color:#539999;

    font-size:28px;

    margin-bottom:18px;

}

.about-value p{

    color:#666666;

    font-size:16px;

    line-height:1.8;

}

/* ==================================================
   GENERIC PAGE HERO
   ================================================== */

.page-hero{

    padding:140px 0 100px;

    background:#F7F7F5;

}

.page-hero-content{

    max-width:850px;

    margin:0 auto;

    text-align:center;

}

.page-hero-content h1{

    font-size:64px;

    font-weight:700;

    line-height:1.15;

    color:#539999;

    margin-bottom:30px;

}

.page-hero-content p{

    max-width:700px;

    margin:0 auto;

    font-size:20px;

    line-height:1.8;

    color:#666666;

}


/* ==================================================
   GENERIC PAGE PLACEHOLDER
   ================================================== */

.page-placeholder{

    background:#FFFFFF;

    padding:100px 0;

}

.page-placeholder h2{

    text-align:center;

    font-size:36px;

    margin-bottom:20px;

}

.page-placeholder p{

    text-align:center;

    color:#666666;

    font-size:18px;

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width:768px){

    .page-hero{

        padding:80px 0 60px;

    }

    .page-hero-content h1{

        font-size:40px;

        margin-bottom:24px;

    }

    .page-hero-content p{

        font-size:18px;

    }

    .page-placeholder{

        padding:70px 0;

    }

}


/* ==================================================
   MOBILE
   ================================================== */

@media (max-width:768px){

    .about-hero{

        padding:80px 0 60px;

    }

    .about-hero .hero-title{

        font-size:40px;

        margin-bottom:28px;

    }

    .about-hero-text{

        font-size:18px;

        line-height:1.75;

    }

    .about-story{

        padding:60px 0;

    }

    .about-section{

        padding:70px 0;

        grid-template-columns:1fr;

        gap:12px;

    }

    .about-section:first-child{

        padding-top:20px;

    }

    .about-section-label{

        padding-top:0;

    }

    .about-section-content h2{

        font-size:30px;

        margin-bottom:24px;

    }

    .about-section-content p{

        font-size:17px;

        line-height:1.75;

    }

    .about-section-content blockquote{

        font-size:25px;

        margin:40px 0;

    }

    .about-values{

        padding:70px 0;

    }

    .about-values-grid{

        grid-template-columns:1fr;

        margin-top:45px;

    }

}

/* ==================================================
   MOBILE — SERVICE PAGE
   ================================================== */

@media (max-width:768px){

    .service-hero{

        padding:80px 0 60px;

    }

    .service-process-heading{

        font-size:17px;

        margin-bottom:45px;

    }

}

    .service-hero-text{
    
        font-size:18px;
    
        line-height:1.75;
    
    }

    .service-hero .hero-title{

        font-size:40px;

        font-weight:700;

        line-height:1.15;

        margin-bottom:28px;

    }

    .service-process{

        padding:60px 0;

    }

    .service-step{

        padding:70px 0;

        grid-template-columns:1fr;

        gap:12px;

    }

    .service-step:first-child{

        padding-top:20px;

    }

    .service-step-number{

        padding-top:0;

    }

    .service-step-content h2{

        font-size:30px;

        margin-bottom:24px;

    }

    .service-step-content p{

        font-size:17px;

        line-height:1.75;

    }

    .service-step-content blockquote{

        font-size:25px;

        margin:40px 0 10px;

    }

    .service-values{

        padding:70px 0;

    }

    .service-values-grid{

        grid-template-columns:1fr;

        margin-top:45px;

    }

    .service-contact{

        padding:70px 0;

    }

    .service-contact h2{

        font-size:32px;

    }

    .contact-form .btn{

        width:100%;

    }

}