@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Oswald:wght@400;500;600;700&display=swap');


:root {
    --background: #0b0b0b;
    --surface: #111111;
    --surface-light: #171717;

    --text: #f5f2eb;
    --muted: #99958c;

    --accent: #d5ad67;
    --border: #292929;

    --max-width: 1250px;
}


* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--background);
    color: var(--text);
    font-family: "Inter", sans-serif;
    line-height: 1.6;
}


a {
    color: inherit;
    text-decoration: none;
}


button {
    font: inherit;
}


.section {
    padding: 120px 7%;
}


.section-heading {
    max-width: var(--max-width);
    margin: 0 auto 60px;
}


.section-heading h2,
.about h2,
.contact h2 {
    font-family: "Oswald", sans-serif;
    font-size: clamp(3rem, 6vw, 6rem);
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 20px;
}


.section-heading > p:last-child {
    color: var(--muted);
}


.eyebrow {
    color: var(--accent);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 20px;
}


/* NAVBAR */

.navbar {
    width: 100%;
    height: 88px;

    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    position: fixed;
    top: 0;
    left: 0;

    z-index: 1000;

    transition: background 0.3s ease, border 0.3s ease;
}


.navbar.scrolled {
    background: rgba(8, 8, 8, 0.95);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--border);
}


.logo,
.footer-logo {
    font-family: "Oswald", sans-serif;
    font-size: 28px;
    font-weight: 700;
    letter-spacing: 2px;
}


.logo span,
.footer-logo span {
    color: var(--accent);
}


.nav-links {
    display: flex;
    gap: 38px;
}


.nav-links a {
    color: #cccccc;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;

    transition: 0.2s;
}


.nav-links a:hover {
    color: var(--accent);
}


.nav-button {
    border: 1px solid var(--accent);
    padding: 12px 23px;

    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;

    transition: 0.2s;
}


.nav-button:hover {
    background: var(--accent);
    color: #111;
}


.menu-button {
    display: none;

    width: 35px;
    background: none;
    border: none;

    cursor: pointer;
}


.menu-button span {
    display: block;

    width: 100%;
    height: 2px;

    background: white;

    margin: 6px 0;
}


/* HERO */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 150px 7% 80px;

    background-image:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.92) 0%,
            rgba(0, 0, 0, 0.65) 50%,
            rgba(0, 0, 0, 0.25) 100%
        ),
        url("https://images.unsplash.com/photo-1503951914875-452162b0f3f1?auto=format&fit=crop&w=2000&q=90");

    background-size: cover;
    background-position: center;
}


.hero-content {
    max-width: 850px;
    position: relative;
    z-index: 2;
}


.hero h1 {
    font-family: "Oswald", sans-serif;

    font-size: clamp(4rem, 9vw, 9rem);
    line-height: 0.88;

    letter-spacing: -4px;

    margin-bottom: 35px;
}


.hero h1 span {
    color: transparent;
    -webkit-text-stroke: 1px var(--text);
}


.hero-description {
    max-width: 600px;

    color: #c4c4c4;

    font-size: 17px;

    margin-bottom: 40px;
}


.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}


.button {
    display: inline-flex;

    align-items: center;
    justify-content: center;

    min-height: 52px;

    padding: 0 30px;

    font-size: 12px;
    font-weight: 700;

    letter-spacing: 1px;

    transition: 0.25s;
}


.primary-button {
    background: var(--accent);
    color: #111;
}


.primary-button:hover {
    background: #ebc881;
    transform: translateY(-2px);
}


.secondary-button {
    border: 1px solid #666;
}


.secondary-button:hover {
    border-color: white;
}


.hero-info {
    position: absolute;

    right: 7%;
    bottom: 60px;

    display: flex;
    gap: 50px;

    z-index: 2;
}


.hero-info div {
    display: flex;
    flex-direction: column;
}


.hero-info span {
    color: var(--muted);

    font-size: 10px;
    letter-spacing: 2px;
}


.hero-info strong {
    font-size: 13px;
}


/* SERVICES */

.services {
    background: var(--surface);
}


.services-grid {
    max-width: var(--max-width);

    margin: auto;

    border-top: 1px solid var(--border);
}


.service-card {
    display: grid;

    grid-template-columns: 70px 1fr auto;

    align-items: center;

    gap: 30px;

    padding: 38px 10px;

    border-bottom: 1px solid var(--border);

    transition: 0.25s;
}


.service-card:hover {
    padding-left: 25px;
    background: #151515;
}


.service-number {
    color: var(--accent);
    font-size: 12px;
}


.service-card h3 {
    font-family: "Oswald", sans-serif;

    font-size: 30px;

    margin-bottom: 5px;
}


.service-card p {
    color: var(--muted);
    font-size: 14px;
}


.price {
    color: var(--accent);
    font-size: 17px;
}


/* ABOUT */

.about {
    max-width: 1450px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;
}


.about-image {
    min-height: 650px;

    background:
        url("https://images.unsplash.com/photo-1621605815971-fbc98d665033?auto=format&fit=crop&w=1200&q=90");

    background-size: cover;
    background-position: center;
}


.about-content > p:not(.eyebrow) {
    color: var(--muted);

    margin-bottom: 18px;

    max-width: 580px;
}


.stats {
    margin-top: 60px;

    padding-top: 35px;

    border-top: 1px solid var(--border);

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


.stats div {
    display: flex;
    flex-direction: column;
}


.stats strong {
    font-family: "Oswald", sans-serif;

    color: var(--accent);

    font-size: 38px;
}


.stats span {
    color: var(--muted);

    font-size: 10px;
    letter-spacing: 1px;
}


/* GALLERY */

.gallery {
    background: var(--surface);
}


.gallery-grid {
    max-width: var(--max-width);

    margin: auto;

    display: grid;

    grid-template-columns: 1.3fr 1fr 1fr;

    grid-template-rows: 350px 350px;

    gap: 10px;
}


.gallery-image {
    background-size: cover;
    background-position: center;

    filter: grayscale(20%);

    transition: 0.4s;
}


.gallery-image:hover {
    filter: grayscale(0%);
}


.gallery-one {
    grid-row: 1 / 3;

    background-image:
        url("https://images.unsplash.com/photo-1599351431202-1e0f0137899a?auto=format&fit=crop&w=1000&q=85");
}


.gallery-two {
    background-image:
        url("https://images.unsplash.com/photo-1585747860715-2ba37e788b70?auto=format&fit=crop&w=1000&q=85");
}


.gallery-three {
    background-image:
        url("https://images.unsplash.com/photo-1593702288056-f9537ee7f9da?auto=format&fit=crop&w=1000&q=85");
}


.gallery-four {
    grid-column: 2 / 4;

    background-image:
        url("https://images.unsplash.com/photo-1622287162716-f311baa1a2b8?auto=format&fit=crop&w=1200&q=85");
}


/* REVIEWS */

.reviews-grid {
    max-width: var(--max-width);

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 20px;
}


.review-card {
    border: 1px solid var(--border);

    padding: 40px;

    background: var(--surface);
}


.stars {
    color: var(--accent);

    letter-spacing: 4px;

    margin-bottom: 25px;
}


.review-card p {
    color: #c1c1c1;

    margin-bottom: 30px;
}


.review-card strong {
    font-size: 12px;

    letter-spacing: 2px;
}


/* CONTACT */

.contact {
    background: var(--accent);
    color: #111;

    display: grid;

    grid-template-columns: 1.2fr 1fr;

    gap: 100px;
}


.contact .eyebrow {
    color: #463719;
}


.contact-content > p:not(.eyebrow) {
    margin-bottom: 30px;
}


.contact .primary-button {
    background: #111;
    color: white;
}


.contact .primary-button:hover {
    background: #252525;
}


.contact-details {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;
}


.contact-item {
    padding-top: 20px;

    border-top: 1px solid rgba(0, 0, 0, 0.25);

    display: flex;
    flex-direction: column;
}


.contact-item span {
    font-size: 10px;

    letter-spacing: 2px;

    margin-bottom: 10px;
}


.contact-item strong,
.contact-item a {
    font-weight: 600;
}


/* FOOTER */

footer {
    min-height: 120px;

    padding: 30px 7%;

    display: flex;

    align-items: center;
    justify-content: space-between;

    gap: 20px;

    border-top: 1px solid var(--border);
}


footer p,
footer > a:last-child {
    color: var(--muted);

    font-size: 11px;

    letter-spacing: 1px;
}


/* MOBILE */

@media (max-width: 900px) {

    .navbar {
        height: 75px;
    }


    .nav-button {
        display: none;
    }


    .menu-button {
        display: block;
    }


    .nav-links {
        position: absolute;

        top: 75px;
        left: 0;

        width: 100%;

        padding: 30px 7%;

        display: none;
        flex-direction: column;

        gap: 25px;

        background: #0b0b0b;

        border-bottom: 1px solid var(--border);
    }


    .nav-links.open {
        display: flex;
    }


    .hero {
        padding-top: 120px;
    }


    .hero h1 {
        letter-spacing: -2px;
    }


    .hero-info {
        display: none;
    }


    .about {
        grid-template-columns: 1fr;

        gap: 50px;
    }


    .about-image {
        min-height: 500px;
    }


    .gallery-grid {
        grid-template-columns: 1fr 1fr;

        grid-template-rows: repeat(3, 350px);
    }


    .gallery-one {
        grid-row: 1 / 3;
    }


    .gallery-four {
        grid-column: 1 / 3;
    }


    .reviews-grid {
        grid-template-columns: 1fr;
    }


    .contact {
        grid-template-columns: 1fr;

        gap: 60px;
    }

}


@media (max-width: 600px) {

    .section {
        padding: 85px 6%;
    }


    .navbar {
        padding: 0 6%;
    }


    .hero {
        padding-left: 6%;
        padding-right: 6%;
    }


    .hero-description {
        font-size: 15px;
    }


    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }


    .service-card {
        grid-template-columns: 35px 1fr;

        gap: 15px;
    }


    .service-card .price {
        grid-column: 2;

        margin-top: 5px;
    }


    .about-image {
        min-height: 400px;
    }


    .stats {
        grid-template-columns: 1fr 1fr;
    }


    .gallery-grid {
        display: grid;

        grid-template-columns: 1fr;

        grid-template-rows: repeat(4, 350px);
    }


    .gallery-one,
    .gallery-four {
        grid-column: auto;
        grid-row: auto;
    }


    .contact-details {
        grid-template-columns: 1fr;
    }


    footer {
        padding: 40px 6%;

        flex-direction: column;

        align-items: flex-start;
    }

}