:root {
    --black: #080807;
    --black-soft: #11110f;
    --cream: #e9e4d8;
    --cream-soft: #aaa69d;
    --gold: #c6a76b;
    --border: rgba(233, 228, 216, 0.14);

    --max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--black);
    color: var(--cream);
    font-family: "DM Sans", sans-serif;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}


/* NAVBAR */

.navbar {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);

    width: min(100% - 50px, var(--max-width));

    height: 90px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    border-bottom: 1px solid var(--border);

    z-index: 20;
}

.logo {
    font-family: "Playfair Display", serif;

    font-size: 27px;
    font-weight: 700;

    letter-spacing: 2px;
}

.logo span,
.footer-brand span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: var(--cream-soft);

    font-size: 13px;

    transition: 0.3s;
}

.nav-links a:hover {
    color: var(--cream);
}

.nav-button {
    border: 1px solid var(--border);

    padding: 12px 20px;

    font-size: 12px;

    transition: 0.3s;
}

.nav-button:hover {
    background: var(--cream);
    color: var(--black);
}


/* HERO */

.hero {
    min-height: 100vh;

    position: relative;

    display: flex;
    align-items: center;

    background:
        radial-gradient(
            circle at 70% 40%,
            rgba(198, 167, 107, 0.12),
            transparent 35%
        );

    overflow: hidden;
}

.hero::after {
    content: "NOIR";

    position: absolute;

    right: -40px;
    bottom: 20px;

    font-family: "Playfair Display", serif;

    font-size: 25vw;

    line-height: 0.7;

    color: rgba(255,255,255,0.025);

    pointer-events: none;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(8,8,7,0.95),
            rgba(8,8,7,0.45),
            rgba(8,8,7,0.9)
        );
}

.hero-content {
    width: min(100% - 50px, var(--max-width));

    margin: auto;

    position: relative;

    z-index: 3;
}

.eyebrow {
    color: var(--gold);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: 3px;

    margin-bottom: 25px;
}

.hero h1 {
    max-width: 850px;

    font-family: "Playfair Display", serif;

    font-size: clamp(4rem, 9vw, 8.5rem);

    line-height: 0.85;

    font-weight: 500;

    letter-spacing: -5px;
}

.hero h1 span {
    display: block;

    color: var(--gold);
}

.hero-description {
    margin-top: 35px;

    color: var(--cream-soft);

    font-size: 17px;
}

.hero-button {
    display: inline-flex;

    align-items: center;
    gap: 25px;

    margin-top: 40px;

    padding: 16px 22px;

    background: var(--cream);

    color: var(--black);

    font-size: 12px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: 0.3s;
}

.hero-button:hover {
    background: var(--gold);

    transform: translateY(-4px);
}

.hero-button span {
    font-size: 18px;
}

.hero-bottom {
    position: absolute;

    left: 50%;

    transform: translateX(-50%);

    bottom: 30px;

    width: min(100% - 50px, var(--max-width));

    display: flex;
    justify-content: space-between;

    color: var(--cream-soft);

    font-size: 9px;

    letter-spacing: 2px;

    z-index: 3;
}


/* INTRO */

.intro {
    width: min(100% - 50px, 900px);

    margin: auto;

    padding: 150px 0;

    text-align: center;
}

.intro h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(3rem, 6vw, 6rem);

    line-height: 0.95;

    font-weight: 500;
}

.intro h2 span {
    color: var(--gold);
}

.intro > p:last-child {
    max-width: 550px;

    margin: 35px auto 0;

    color: var(--cream-soft);

    font-size: 15px;
}


/* SECTIONS */

.section {
    width: min(100% - 50px, var(--max-width));

    margin: auto;

    padding: 120px 0;
}

.section-heading {
    display: flex;

    justify-content: space-between;

    align-items: end;

    gap: 40px;

    margin-bottom: 60px;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(3rem, 6vw, 6rem);

    line-height: 0.9;

    font-weight: 500;
}

.section-heading h2 span {
    color: var(--gold);
}

.section-heading > p {
    max-width: 300px;

    color: var(--cream-soft);

    font-size: 14px;
}


/* SERVICES */

.services-list {
    border-top: 1px solid var(--border);
}

.service {
    display: grid;

    grid-template-columns: 80px 1fr auto;

    align-items: center;

    gap: 30px;

    padding: 30px 10px;

    border-bottom: 1px solid var(--border);

    transition: 0.3s;
}

.service:hover {
    background: var(--black-soft);

    padding-left: 25px;
}

.service > span {
    color: var(--cream-soft);

    font-size: 11px;
}

.service h3 {
    font-family: "Playfair Display", serif;

    font-size: 26px;

    font-weight: 500;
}

.service p {
    color: var(--cream-soft);

    font-size: 13px;

    margin-top: 5px;
}

.service strong {
    color: var(--gold);

    font-size: 13px;
}

.featured-service {
    background: rgba(198, 167, 107, 0.04);
}


/* GALLERY */

.gallery-grid {
    display: grid;

    grid-template-columns: 1.4fr 1fr;

    grid-template-rows: 280px 280px;

    gap: 15px;
}

.gallery-item {
    overflow: hidden;

    border: 1px solid var(--border);

    background:
        radial-gradient(
            circle at 50% 30%,
            #37332a,
            #11100d
        );
}

.gallery-large {
    grid-row: 1 / 3;
}

.gallery-placeholder {
    width: 100%;
    height: 100%;

    display: flex;
    align-items: center;
    justify-content: center;

    font-family: "Playfair Display", serif;

    font-size: clamp(2rem, 5vw, 5rem);

    color: rgba(233, 228, 216, 0.75);

    letter-spacing: 4px;

    transition: 0.6s;
}

.gallery-item:hover .gallery-placeholder {
    transform: scale(1.05);

    color: var(--gold);
}

.concept-note {
    margin-top: 15px;

    color: var(--cream-soft);

    font-size: 10px;
}


/* ABOUT */

.about {
    display: grid;

    grid-template-columns: 120px 1fr;

    gap: 60px;

    border-top: 1px solid var(--border);
}

.about-number {
    color: var(--gold);

    font-size: 12px;
}

.about-content {
    max-width: 800px;
}

.about-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(3rem, 7vw, 7rem);

    line-height: 0.9;

    font-weight: 500;
}

.about-content h2 span {
    color: var(--gold);
}

.about-content p:not(.eyebrow) {
    max-width: 600px;

    margin-top: 30px;

    color: var(--cream-soft);

    font-size: 16px;
}


/* BOOKING */

.booking {
    width: min(100% - 50px, var(--max-width));

    margin: 50px auto 120px;

    padding: 80px;

    background: var(--cream);

    color: var(--black);

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 50px;
}

.booking h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(3rem, 6vw, 6rem);

    line-height: 0.9;

    font-weight: 500;
}

.booking h2 span {
    display: block;

    color: #80632d;
}

.booking p:not(.eyebrow) {
    max-width: 450px;

    margin-top: 20px;

    color: #5c574d;

    font-size: 14px;
}

.booking-button {
    flex-shrink: 0;

    padding: 17px 25px;

    background: var(--black);

    color: var(--cream);

    font-size: 12px;

    text-transform: uppercase;

    letter-spacing: 1px;

    transition: 0.3s;
}

.booking-button:hover {
    background: var(--gold);

    color: var(--black);
}


/* CONTACT */

.contact {
    width: min(100% - 50px, var(--max-width));

    margin: auto;

    padding: 100px 0;

    border-top: 1px solid var(--border);
}

.contact-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 80px;
}

.contact h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(3rem, 6vw, 6rem);

    line-height: 0.9;

    font-weight: 500;
}

.contact h2 span {
    display: block;

    color: var(--gold);
}

.contact-info {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 40px;
}

.contact-info > div:last-child {
    grid-column: 1 / -1;
}

.contact-info span {
    color: var(--gold);

    font-size: 9px;

    letter-spacing: 2px;
}

.contact-info p {
    margin-top: 10px;

    color: var(--cream-soft);

    font-size: 14px;
}


/* FOOTER */

footer {
    width: min(100% - 50px, var(--max-width));

    margin: auto;

    padding: 30px 0;

    border-top: 1px solid var(--border);

    display: flex;

    justify-content: space-between;

    align-items: center;

    color: var(--cream-soft);

    font-size: 11px;
}

.footer-brand {
    font-family: "Playfair Display", serif;

    font-size: 20px;

    color: var(--cream);
}


/* RESPONSIVE */

@media (max-width: 800px) {

    .nav-links {
        display: none;
    }

    .hero h1 {
        font-size: clamp(4rem, 15vw, 7rem);
    }

    .section-heading {
        display: block;
    }

    .section-heading > p {
        margin-top: 25px;
    }

    .service {
        grid-template-columns: 40px 1fr;
    }

    .service strong {
        grid-column: 2;
    }

    .booking {
        display: block;

        padding: 50px 30px;
    }

    .booking-button {
        display: inline-block;

        margin-top: 35px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }
}


@media (max-width: 550px) {

    .navbar {
        width: calc(100% - 30px);

        height: 75px;
    }

    .nav-button {
        padding: 9px 13px;

        font-size: 10px;
    }

    .hero-content,
    .hero-bottom,
    .section,
    .contact,
    footer {
        width: calc(100% - 30px);
    }

    .hero h1 {
        font-size: 4rem;

        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 14px;
    }

    .hero-bottom {
        display: none;
    }

    .intro {
        width: calc(100% - 30px);

        padding: 100px 0;
    }

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

    .section {
        padding: 80px 0;
    }

    .section-heading h2 {
        font-size: 3.3rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;

        grid-template-rows:
            300px
            220px
            220px;
    }

    .gallery-large {
        grid-row: auto;
    }

    .about {
        grid-template-columns: 1fr;

        gap: 20px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

    .contact-info > div:last-child {
        grid-column: auto;
    }

    footer {
        flex-direction: column;

        gap: 15px;

        text-align: center;
    }
}