/* ===========================
        ROOT VARIABLES
=========================== */

:root{

    --bg:#F8F7F4;
    --text:#111111;
    --body:#555555;
    --gold:#C8A24D;
    --border:#E8E8E8;
    --white:#FFFFFF;

}

/* ===========================
        RESET
=========================== */

*{

    margin:0;
    padding:0;
    box-sizing:border-box;

}

html{

    scroll-behavior:smooth;

}

body{

    background:var(--bg);

    color:var(--text);

    font-family:'Inter',sans-serif;

    line-height:1.7;

    overflow-x:hidden;

}

img{

    display:block;

    max-width:100%;

}

a{

    text-decoration:none;

    color:inherit;

}

ul{

    list-style:none;

}

button{

    font:inherit;

    cursor:pointer;

    border:none;

    background:none;

}

input,
textarea,
select{

    font:inherit;

    outline:none;

}

/* ===========================
        TYPOGRAPHY
=========================== */

body{

    font-family:'Inter',sans-serif;

}

h1,
h2,
h3{

    font-family:'Inter',sans-serif;

    font-weight:700;

    color:var(--text);

}

.brand-name{

    font-family:'Italianno',cursive;

    font-weight:400;

    color:var(--text);

}

p{

    color:var(--body);

}

/* ===========================
        LAYOUT
=========================== */

section:not(#hero){

    padding:120px 0;

}

/* ===========================
        REUSABLE CLASSES
=========================== */

.btn{

    display:inline-flex;

    align-items:center;
    justify-content:center;

    padding:16px 34px;

    background:var(--gold);

    color:var(--white);

    border-radius:999px;

    font-weight:600;

    transition:.3s;

}

.btn:hover{

    transform:translateY(-2px);
    box-shadow:0 12px 30px rgba(200,162,77,.35);

}

.section-title{

    font-family:'Inter',sans-serif;

    font-weight:700;

    text-align:center;

    margin-bottom:18px;

}

.gold-line{

    width:80px;

    height:4px;

    background:var(--gold);

    margin:0 auto 60px;

    border-radius:999px;

}

@keyframes grow{

    from{

        width:0;

    }

    to{

        width:80px;

    }

}
/* ===========================
            NAVBAR
=========================== */

.site-header{

    display:flex;
    justify-content:center;
    align-items:center;

    padding:50px 0 20px;

}

.brand{

    display:flex;
    flex-direction:column;
    align-items:center;

    text-align:center;

}

.brand img{

    width:220px;
    height:220px;

    object-fit:contain;

    margin-bottom: -30px;

}

.brand-name{

    font-family:'Italianno', cursive;
    font-size:5.2rem;
    line-height:.8;
    text-align:center;

}

.desktop{
    display:block;
}

.mobile{
    display:none;
}

@media (max-width:768px){

    .desktop{
        display:none;
    }

    .mobile{
        display:block;
    }

}


/* ===========================
            HERO
=========================== */

#hero{

    display:flex;

    align-items:center;

    padding:20px 0 60px;

}

#hero h1{

    font-family:'Inter',sans-serif;

    font-weight:700;

    font-size:clamp(3rem,5vw,5rem);

    color:#6c757d;

    line-height:1;

}

.hero-text{

    max-width:520px;

    font-size:1.1rem;

    margin-bottom:35px;

}

.trust-badge{

    margin-top:35px;

    color:var(--body);

    line-height:1.8;

}

.hero-image{

    width:100%;

    max-width:560px;

    margin-inline:auto;

    animation:float 6s ease-in-out infinite;

    filter:drop-shadow(0 20px 40px rgba(0,0,0,.08));

}

/* ===========================
        RESPONSIVE
=========================== */

@media (max-width:991px){

    #hero{

        text-align:center;

        padding:20px 0 50px;

    }

    .hero-text{

        margin-inline:auto;

    }

    .trust-badge{

        max-width:330px;

        margin:35px auto 0;

    }

}
/* ===========================
      ABOUT & SERVICES
=========================== */

.info-card{

    height:100%;

    background:var(--white);

    border:1px solid var(--border);

    border-radius:28px;

    padding:42px;

    box-shadow:0 10px 30px rgba(0,0,0,.04);

    transition:.35s ease;

}

.info-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}

.info-card h3{

    font-family:'Inter',sans-serif;

    font-weight:700;

    margin-bottom:28px;

    padding-bottom:14px;

    border-bottom:2px solid var(--gold);

}

.info-card p{

    margin-bottom:18px;

}

.service-row{

    display:flex;

    justify-content:space-between;

    align-items:center;

    padding:18px 0;

    border-bottom:1px solid var(--border);

}

.service-row:last-child{

    border-bottom:none;

}

.service-row span{

    font-weight:600;

    color:var(--text);

}

.service-row small{

    color:var(--body);

}
/* ===========================
        GALLERY
=========================== */

.work-collage{
    position:relative;
    height:360px;
    overflow:hidden;
}

.work-back{

    position:absolute;

    width:74%;

    height:250px;

    left:0;

    top:0;

    object-fit:cover;

    border-radius:24px;

    border:8px solid var(--bg);

    box-shadow:0 12px 35px rgba(0,0,0,.08);

}

.work-front{

    position:absolute;

    width:44%;

    height:220px;

    right:0;

    bottom:0;

    object-fit:cover;

    border-radius:24px;

    border:8px solid var(--bg);

    box-shadow:0 18px 40px rgba(0,0,0,.12);

}

.work-collage img{

    transition:.35s ease;

}

.work-collage:hover .work-back{

    transform:translate(-4px,-4px);

}

.work-collage:hover .work-front{

    transform:translate(4px,4px);

}

@media(max-width:991px){

    .work-collage{

        height:330px;

    }

}

@media(max-width:576px){

    .work-collage{

        height:300px;

    }

}
/* ===========================
        CONTACT
=========================== */

#contact form{

    display:flex;

    flex-direction:column;

    gap:20px;

}

#contact input,
#contact textarea{

    border:none;

    border-bottom:2px solid var(--gold);

    background:transparent;

    padding:14px 0;

    transition:border-color .3s ease;

}

#contact textarea{

    resize:none;

}

.contact-row{

    padding:18px 0;

    border-bottom:1px solid var(--gold);

}

.contact-row:last-child{

    border-bottom:none;

}

.contact-row span{

    display:block;

    font-weight:600;

    margin-bottom:6px;

    color:var(--text);

}

#contact .btn{

    align-self:flex-start;

    margin-top:15px;

}

#contact select{

    border:none;
    border-bottom:2px solid var(--gold);

    background:transparent;

    padding:14px 0;

    color:var(--gold);

}

#contact option{

    color:var(--gold);

    background:var(--white);

}

#contact input:focus,
#contact textarea:focus,
#contact select:focus{

    border-bottom-color:var(--text);

}

#form-status{

    margin-top:20px;

    font-weight:500;

    color:var(--body);

    min-height:24px;

}

#form-status.success{

    color:#2E7D32;

}

#form-status.error{

    color:#C62828;

}

/* ===========================
            FOOTER
=========================== */

footer{

    padding:100px 0 50px;

    border-top:1px solid var(--border);

    text-align:center;

}

.footer-logo{

    width:68px;

    margin:0 auto 24px;

}

footer h2{

    font-family:'Italianno',cursive;

    font-size:4rem;

    font-weight:400;

    margin-bottom:18px;

}

.footer-tagline{

    color:var(--gold);

    font-weight:600;

    margin-bottom:20px;

}

.footer-description{

    max-width:620px;

    margin:0 auto 40px;

    color:var(--body);

}

.copyright{

    font-size:.9rem;

    color:#999;

}

.reveal{

    opacity:0;

    transform:translateY(35px);

    transition:
        opacity .9s ease,
        transform .9s ease;

}

.reveal.active{

    opacity:1;

    transform:translateY(0);

}

.delay-1{

    transition-delay:.12s;

}

.delay-2{

    transition-delay:.24s;

}
