:root {
    --gold: #D4AF37;
    --black: #111;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', serif;
}

.navbar {
    background: rgba(0, 0, 0, .9);
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: white;
    background:
        linear-gradient(rgba(0, 0, 0, .55), rgba(0, 0, 0, .55)),
        url('img/images2-hd.webp');
    background-size: cover;
    background-position: center 30%;
}

.hero h1 {
    font-size: 5rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.5rem;
}

.btn-gold {
    padding: 15px 35px;
    color: white;
    background: var(--gold);
    border: none;
    border-radius: 40px;
}

.btn-gold:hover {
    color: white;
    background: #b9962f;
}

.section-title {
    margin-bottom: 60px;
    font-size: 3rem;
    text-align: center;
}

.service-card {
    height: 100%;
    padding: 40px;
    text-align: center;
    border-radius: 15px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, .08);
}

.about-portrait {
    display: block;
    width: 100%;
    max-width: 320px;
    height: auto;
    margin-inline: auto;
    border-radius: 15px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12);
}

.stats {
    padding: 80px 0;
    color: white;
    background: #111;
}

.stats h2 {
    color: var(--gold);
    font-size: 4rem;
}

.gallery img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
}

.gallery figure {
    position: relative;
    margin: 0;
    overflow: hidden;
    background: #111;
    border-radius: 15px;
}

.gallery figcaption {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    padding: 40px 20px 18px;
    color: white;
    font-size: 1.25rem;
    font-weight: 600;
    background: linear-gradient(transparent, rgba(0, 0, 0, .8));
}

.form-honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

footer {
    padding: 65px 0 25px;
    color: white;
    background: #111;
}

.footer-brand {
    color: var(--gold);
    font-size: 2rem;
    font-weight: 600;
}

.footer-heading {
    margin-bottom: 18px;
    color: var(--gold);
    font-size: 1.35rem;
}

.footer-links {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li + li {
    margin-top: 8px;
}

.footer-links a,
.footer-contact {
    color: rgba(255, 255, 255, .78);
    overflow-wrap: anywhere;
    text-decoration: none;
    transition: color .2s ease;
}

.footer-links a:hover,
.footer-contact:hover {
    color: var(--gold);
}

.instagram-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 12px 20px;
    color: #111;
    font-weight: 700;
    text-decoration: none;
    background: var(--gold);
    border-radius: 40px;
    transition: transform .2s ease, background .2s ease;
}

.instagram-link:hover {
    color: #111;
    background: #e4c04b;
    transform: translateY(-2px);
}

.instagram-link svg {
    width: 21px;
    height: 21px;
}

.footer-bottom {
    margin-top: 45px;
    padding-top: 22px;
    color: rgba(255, 255, 255, .55);
    border-top: 1px solid rgba(255, 255, 255, .12);
}

@media (max-width: 991.98px) {
    .hero h1 {
        font-size: clamp(3rem, 10vw, 4.25rem);
    }

    .about-section .row {
        row-gap: 30px;
    }
}

@media (max-width: 767.98px) {
    .hero {
        min-height: 100svh;
        padding: 100px 0 60px;
    }

    .hero h1 {
        font-size: clamp(2.75rem, 14vw, 3.75rem);
        line-height: 1;
    }

    .hero h2 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }

    .section-title {
        margin-bottom: 35px;
        font-size: clamp(2.25rem, 11vw, 3rem);
    }

    .service-card {
        padding: 30px 24px;
    }

    .stats {
        padding: 55px 0;
    }

    .stats .col-md-4 + .col-md-4 {
        margin-top: 35px;
    }

    .stats h2 {
        font-size: 3rem;
    }

    .gallery img {
        height: clamp(280px, 110vw, 450px);
    }

    .about-section p {
        font-size: 1.25rem !important;
        text-align: center;
    }

    footer {
        padding-top: 50px;
        text-align: center;
    }

    footer .row {
        row-gap: 35px;
    }

    .footer-bottom {
        margin-top: 35px;
    }
}

@media (max-width: 379.98px) {
    .navbar-brand {
        font-size: 1rem;
    }

    .navbar .btn-gold {
        padding: 10px 20px;
    }
}
