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

body{
    font-family:"Manrope",sans-serif;
    background:#fafafa;
    color:#111;
}

a{
    text-decoration:none;
    color:#111;
}

header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    padding:32px 48px;
    display:flex;
    justify-content:flex-end;
    align-items:center;
    background:rgba(250,250,250,.35);
    backdrop-filter:blur(10px);
    z-index:100;
}

nav a{
    margin-left:24px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.08em;
    transition:.2s;
}

nav a:hover{
    opacity:.6;
}

.hero{
    min-height:100vh;
    padding:160px 20px 100px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.logo-image{
    width:600px;
    max-width:90%;
    height:auto;
    display:block;
}

.tagline{
    margin-top:28px;
    font-size:14px;
    font-weight:600;
    letter-spacing:.35em;
    text-transform:uppercase;
    color:#444;
    text-align:center;
}

.gallery{
    columns:3 320px;
    column-gap:22px;
    padding:40px;
}

.gallery img{
    width:100%;
    display:block;
    margin-bottom:22px;
    cursor:pointer;
    transition:.25s;
}

.gallery img:hover{
    transform:translateY(-4px);
}

.about{
    max-width:760px;
    margin:180px auto 100px;
    padding:0 24px;
}

.about h2{
    font-size:60px;
    margin-bottom:40px;
}

.about p{
    font-size:22px;
    line-height:1.8;
    margin-bottom:28px;
}

.contact-email{
    margin-top:50px;
}

.contact-email a{
    color:#d71920 !important;
    text-decoration:none;
    display:inline-block;
    word-break:normal;
    overflow-wrap:normal;
}

.contact-email a:hover{
    opacity:.6;
}

footer{
    text-align:center;
    padding:60px;
    color:#777;
    font-size:14px;
}

.lightbox{
    position:fixed;
    inset:0;
    background:rgba(0,0,0,.94);
    display:none;
    align-items:center;
    justify-content:center;
    z-index:999;
}

.lightbox img{
    max-width:92%;
    max-height:92%;
}

@media(max-width:768px){

    header{
        padding:24px;
    }

    nav a{
        margin-left:18px;
        font-size:13px;
    }

    .hero{
        min-height:80vh;
        padding:140px 24px 70px;
    }

    .logo-image{
        width:90%;
    }

    .tagline{
        font-size:12px;
        letter-spacing:.25em;
    }

    .gallery{
        columns:1;
        padding:24px;
    }

    .about{
        margin-top:140px;
        padding:0 24px;
    }

    .about h2{
        font-size:42px;
    }

    .about p{
        font-size:18px;
        line-height:1.8;
    }

    .contact-email{
        margin-top:45px;
    }

    .contact-email a{
        font-size:18px;
        white-space:nowrap;
        word-break:normal;
    }

}
