:root {
    --black: #030303;
    --black-light: #0d0d0d;
    --black-card: #121212;

    --gold: #d6a72c;
    --gold-light: #f7dc72;
    --gold-bright: #ffe84a;
    --champagne: #f4df9d;

    --white: #ffffff;
    --gray: #a9a9a9;

    --border: rgba(214, 167, 44, 0.25);
}


/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--white);

    font-family: "Montserrat", sans-serif;

    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}


/* ================= HEADER ================= */

.header {
    height: 95px;

    padding: 0 6%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: rgba(3, 3, 3, .94);

    position: fixed;
    top: 0;
    left: 0;
    width: 100%;

    z-index: 1000;

    border-bottom: 1px solid var(--border);

    transition: .4s;
}

.logo img {
    width: 190px;
}

nav {
    display: flex;
    gap: 32px;
}

nav a {
    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    color: #ddd;

    transition: .3s;
}

nav a:hover {
    color: var(--gold-light);
}

.gold-button {
    display: inline-block;

    padding: 13px 25px;

    color: #080808;

    background: linear-gradient(
        120deg,
        var(--gold),
        var(--gold-light),
        var(--gold)
    );

    font-size: 11px;

    font-weight: 600;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: .4s;
}

.gold-button:hover {
    transform: translateY(-3px);

    box-shadow:
        0 10px 30px rgba(214, 167, 44, .25);
}

.menu-button {
    display: none;

    background: none;

    border: 0;

    color: var(--gold-light);

    font-size: 27px;

    cursor: pointer;
}


/* ================= HERO ================= */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    padding: 150px 9% 80px;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.95) 0%,
            rgba(0,0,0,.75) 45%,
            rgba(0,0,0,.25) 100%
        ),
        url("images/proprietaire.jpg") center/cover;

    overflow: hidden;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        radial-gradient(
            circle at 75% 50%,
            rgba(214,167,44,.13),
            transparent 35%
        );
}

.hero-content {
    position: relative;

    max-width: 700px;

    z-index: 2;
}

.gold-title {
    color: var(--gold-light);

    font-size: 11px;

    letter-spacing: 5px;

    font-weight: 500;

    margin-bottom: 25px;
}

.hero h1 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(65px, 8vw, 110px);

    line-height: .85;

    font-weight: 500;

    margin-bottom: 35px;
}

.hero h1 span {
    color: var(--gold-light);

    font-style: italic;
}

.hero-text {
    max-width: 520px;

    color: #c7c7c7;

    font-size: 15px;

    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;

    align-items: center;

    gap: 18px;
}

.outline-button {
    padding: 12px 25px;

    border: 1px solid var(--gold);

    color: var(--gold-light);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 1.5px;

    transition: .3s;
}

.outline-button:hover {
    background: var(--gold);

    color: #000;
}


/* ================= INTRO ================= */

.intro {
    max-width: 850px;

    text-align: center;

    margin: auto;

    padding: 130px 25px;
}

.section-label {
    color: var(--gold);

    font-size: 11px;

    letter-spacing: 6px;

    margin-bottom: 20px;
}

.intro h2,
.section-heading h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(48px, 6vw, 75px);

    font-weight: 500;

    line-height: .95;

    margin-bottom: 30px;
}

.intro h2 span,
.section-heading h2 span {
    color: var(--gold-light);

    font-style: italic;
}

.intro > p:last-child {
    color: var(--gray);

    font-size: 14px;
}


/* ================= FOUNDER ================= */

.founder {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 90px;

    align-items: center;

    padding: 120px 10%;

    background:
        linear-gradient(
            135deg,
            #080808,
            #15120c
        );
}

.founder-image {
    position: relative;
}

.founder-image::after {
    content: "";

    position: absolute;

    inset: 20px -20px -20px 20px;

    border: 1px solid var(--gold);

    z-index: 0;
}

.founder-image img {
    height: 650px;

    object-fit: cover;

    position: relative;

    z-index: 1;

    filter: grayscale(15%);
}

.founder-content {
    max-width: 600px;
}

.founder-content h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(48px, 5vw, 70px);

    line-height: .9;

    font-weight: 500;

    margin-bottom: 35px;
}

.founder-content h2 span {
    color: var(--gold-light);

    font-style: italic;
}

.founder-content p {
    color: #bcbcbc;

    font-size: 14px;

    margin-bottom: 18px;
}

.founder-content strong {
    color: var(--gold-light);
}


/* ================= SERVICES ================= */

.services {
    padding: 130px 8%;

    background: var(--black);
}

.section-heading {
    max-width: 750px;

    text-align: center;

    margin: 0 auto 70px;
}

.section-heading > p:last-child {
    color: var(--gray);

    font-size: 14px;
}

.services-grid {
    max-width: 1250px;

    margin: auto;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 1px;

    background: var(--border);
}

.service-card {
    background: var(--black-card);

    padding: 45px 35px;

    min-height: 290px;

    transition: .4s;
}

.service-card:hover {
    background:
        linear-gradient(
            145deg,
            #18140b,
            #0c0c0c
        );

    transform: translateY(-6px);
}

.service-number {
    color: var(--gold);

    font-size: 12px;

    letter-spacing: 2px;

    margin-bottom: 25px;
}

.service-card h3 {
    font-family: "Cormorant Garamond", serif;

    font-size: 34px;

    font-weight: 500;

    margin-bottom: 15px;
}

.service-card p {
    color: var(--gray);

    font-size: 13px;

    margin-bottom: 25px;
}

.service-card a {
    color: var(--gold-light);

    font-size: 11px;

    text-transform: uppercase;

    letter-spacing: 2px;
}


/* ================= STATEMENT ================= */

.statement {
    min-height: 600px;

    display: flex;

    justify-content: center;

    align-items: center;

    text-align: center;

    padding: 80px 20px;

    background:
        linear-gradient(
            rgba(0,0,0,.75),
            rgba(0,0,0,.85)
        ),
        url("images/quote.jpg") center/cover;
}

.statement > div {
    max-width: 900px;
}

.quote-mark {
    display: block;

    font-family: "Cormorant Garamond", serif;

    color: var(--gold);

    font-size: 100px;

    height: 80px;
}

.statement h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(42px, 5vw, 70px);

    line-height: 1;

    font-weight: 400;

    margin: 30px 0;
}

.statement h2 span {
    color: var(--gold-light);

    font-style: italic;
}

.statement p {
    color: var(--gold-light);

    font-size: 12px;

    letter-spacing: 2px;
}


/* ================= GALERIE ================= */

.gallery {
    padding: 130px 7%;
}

.gallery-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 12px;
}

.gallery-item {
    overflow: hidden;
}

.gallery-item img {
    height: 430px;

    object-fit: cover;

    transition: .6s;
}

.gallery-item:hover img {
    transform: scale(1.06);
}


/* ================= CONTACT ================= */

.contact {
    padding: 130px 10%;

    background:
        linear-gradient(
            135deg,
            #171208,
            #070707
        );
}

.contact-inner {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    align-items: center;
}

.contact h2 {
    font-family: "Cormorant Garamond", serif;

    font-size: clamp(50px, 6vw, 80px);

    line-height: .9;

    font-weight: 500;

    margin-bottom: 30px;
}

.contact h2 span {
    color: var(--gold-light);

    font-style: italic;
}

.contact-inner > div:first-child > p:last-child {
    color: var(--gray);

    font-size: 14px;
}

.contact-box {
    border: 1px solid var(--border);

    padding: 45px;

    background: rgba(255,255,255,.02);
}

.contact-box > div {
    padding: 18px 0;

    border-bottom: 1px solid rgba(255,255,255,.08);
}

.contact-box small {
    color: var(--gold);

    font-size: 9px;

    letter-spacing: 3px;
}

.contact-box p {
    color: white;

    font-size: 14px;
}

.contact-box .gold-button {
    margin-top: 30px;
}


/* ================= FOOTER ================= */

footer {
    padding: 55px 7%;

    background: #000;

    border-top: 1px solid var(--border);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 30px;
}

.footer-logo img {
    width: 200px;
}

footer p {
    color: #777;

    font-size: 11px;
}

.social-links {
    display: flex;

    gap: 20px;
}

.social-links a {
    color: #999;

    font-size: 11px;

    transition: .3s;
}

.social-links a:hover {
    color: var(--gold-light);
}


/* ================= RESPONSIVE ================= */

@media (max-width: 1000px) {

    nav {
        position: absolute;

        top: 95px;
        left: 0;

        width: 100%;

        padding: 30px;

        background: #050505;

        border-bottom: 1px solid var(--border);

        display: none;

        flex-direction: column;

        gap: 22px;
    }

    nav.active {
        display: flex;
    }

    .header > .gold-button {
        display: none;
    }

    .menu-button {
        display: block;
    }

    .hero {
        padding-left: 8%;
        padding-right: 8%;
    }

    .founder {
        grid-template-columns: 1fr;

        padding: 100px 8%;
    }

    .founder-image {
        max-width: 650px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
    }

    .contact-inner {
        grid-template-columns: 1fr;

        gap: 50px;
    }
}


@media (max-width: 600px) {

    .header {
        height: 80px;

        padding: 0 5%;
    }

    .logo img {
        width: 150px;
    }

    nav {
        top: 80px;
    }

    .hero {
        min-height: 90vh;

        padding: 130px 7% 70px;

        background-position: 65% center;
    }

    .hero h1 {
        font-size: 65px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }

    .founder-image img {
        height: 500px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-item img {
        height: 450px;
    }

    footer {
        flex-direction: column;

        text-align: center;
    }

}