:root {

    --black: #171717;
    --dark: #111111;
    --cream: #f3f0e9;
    --white: #faf9f6;
    --grey: #77736c;
    --line: #d8d4cc;

    --serif: "Playfair Display", Georgia, serif;
    --sans: "DM Sans", Arial, sans-serif;
}


* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}


html {
    scroll-behavior: smooth;
}


body {
    background: var(--white);
    color: var(--black);
    font-family: var(--sans);
    line-height: 1.5;
}


a {
    text-decoration: none;
    color: inherit;
}


/* HEADER */

.header {

    position: absolute;

    top: 0;
    left: 0;
    right: 0;

    z-index: 10;

    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 28px 5vw;

    color: white;
}


.logo {

    display: flex;
    align-items: center;

    gap: 12px;

    font-size: 10px;
    line-height: 1.1;

    letter-spacing: .12em;
}


.logo span {

    width: 40px;
    height: 40px;

    border: 1px solid currentColor;

    display: grid;
    place-items: center;

    font-weight: 700;
}


.logo strong {
    font-weight: 700;
}


nav {

    display: flex;

    align-items: center;

    gap: 30px;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .08em;
}


nav a {
    transition: opacity .2s;
}


nav a:hover {
    opacity: .6;
}


.nav-button {

    border: 1px solid rgba(255,255,255,.7);

    padding: 12px 17px;
}


.menu-button {

    display: none;

    border: none;

    background: none;

    color: white;

    font-size: 25px;

    cursor: pointer;
}


/* HERO */

.hero {

    min-height: 92vh;

    position: relative;

    display: flex;

    align-items: flex-end;

    overflow: hidden;

    color: white;

    background:

        linear-gradient(
            90deg,
            rgba(0,0,0,.75),
            rgba(0,0,0,.25)
        ),

        radial-gradient(
            circle at 70% 35%,
            #827b70,
            #44413c 30%,
            #252525 60%,
            #111 100%
        );
}


.hero::after {

    content: "";

    position: absolute;

    inset: 0;

    background:

        repeating-linear-gradient(
            115deg,
            transparent 0 18px,
            rgba(255,255,255,.018) 19px 20px
        );
}


.hero-content {

    position: relative;

    z-index: 2;

    padding: 0 5vw 9vh;

    max-width: 900px;
}


.eyebrow {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .22em;
}


.hero h1 {

    margin: 18px 0;

    font-size: clamp(55px, 8vw, 110px);

    line-height: .92;

    letter-spacing: -.05em;

    font-weight: 600;
}


em {

    font-family: var(--serif);

    font-weight: 500;
}


.hero-text {

    max-width: 500px;

    color: #ddd9d1;

    font-size: 17px;
}


.buttons {

    display: flex;

    align-items: center;

    gap: 28px;

    margin-top: 32px;
}


.button {

    display: inline-block;

    padding: 15px 22px;

    font-size: 11px;

    font-weight: 700;

    letter-spacing: .1em;

    text-transform: uppercase;
}


.button.light {

    background: white;

    color: var(--black);
}


.button.dark {

    background: var(--black);

    color: white;
}


.link {

    color: white;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .1em;
}


.link:hover {
    text-decoration: underline;
}


.scroll {

    position: absolute;

    z-index: 2;

    right: 5vw;

    bottom: 42px;

    font-size: 9px;

    letter-spacing: .18em;
}


/* INTRO */

.intro {

    display: grid;

    grid-template-columns: 1fr 2.2fr;

    gap: 7vw;

    padding: 120px 8vw;

    background: var(--cream);
}


.label {

    font-size: 10px;

    font-weight: 700;

    letter-spacing: .22em;

    text-transform: uppercase;
}


.intro h2,
.about h2,
.section-heading h2,
.visit h2,
.booking h2 {

    font-size: clamp(42px, 5vw, 76px);

    line-height: .98;

    letter-spacing: -.045em;

    font-weight: 600;
}


.intro p {

    margin-top: 26px;

    max-width: 780px;

    font-size: clamp(20px, 2.2vw, 30px);

    line-height: 1.35;

    color: #4d4943;
}


/* ABOUT */

.about {

    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 9vw;

    align-items: center;

    padding: 120px 8vw;
}


.about-image {

    min-height: 650px;

    display: grid;

    place-items: center;

    text-align: center;

    color: rgba(255,255,255,.6);

    letter-spacing: .2em;

    font-size: 11px;

    background:

        radial-gradient(
            circle at 65% 35%,
            #777067,
            #2c2a28 55%,
            #171717
        );
}


.about-content h2 {

    margin: 22px 0 28px;
}


.about-content p {

    max-width: 520px;

    color: var(--grey);

    margin-bottom: 15px;
}


.dark-link {

    display: inline-block;

    margin-top: 24px;

    font-size: 11px;

    font-weight: 700;

    text-transform: uppercase;

    letter-spacing: .1em;
}


/* SERVICES */

.services {

    padding: 120px 8vw;

    background: var(--cream);
}


.section-heading {

    max-width: 800px;

    margin-bottom: 55px;
}


.section-heading h2 {

    margin: 20px 0;
}


.section-heading p {

    color: var(--grey);

    font-size: 18px;
}


.services-list {

    border-top: 1px solid var(--line);
}


.service {

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 30px;

    padding: 28px 0;

    border-bottom: 1px solid var(--line);
}


.service span {

    color: #918c83;

    font-size: 10px;

    letter-spacing: .15em;
}


.service h3 {

    font-family: var(--serif);

    font-size: 30px;

    font-weight: 500;

    margin: 3px 0;
}


.service p {

    color: var(--grey);

    font-size: 14px;
}


.service strong {

    font-size: 20px;

    font-weight: 500;
}


/* STATEMENT */

.statement {

    min-height: 65vh;

    display: grid;

    place-content: center;

    text-align: center;

    color: white;

    background:

        linear-gradient(
            rgba(0,0,0,.45),
            rgba(0,0,0,.7)
        ),

        radial-gradient(
            circle at 50% 30%,
            #777067,
            #292724 45%,
            #111 100%
        );
}


.statement h2 {

    margin-top: 20px;

    font-size: clamp(55px, 8vw, 110px);

    line-height: .9;

    letter-spacing: -.05em;
}


/* GALLERY */

.gallery {

    padding: 120px 8vw;
}


.gallery-grid {

    display: grid;

    grid-template-columns: 1.1fr .9fr .9fr;

    gap: 18px;
}


.gallery-image {

    min-height: 520px;

    display: grid;

    place-items: center;

    text-align: center;

    color: rgba(255,255,255,.6);

    letter-spacing: .2em;

    font-size: 11px;

    background:

        linear-gradient(
            135deg,
            rgba(255,255,255,.08),
            transparent
        ),

        radial-gradient(
            circle at 65% 35%,
            #777067,
            #2c2a28 55%,
            #171717
        );
}


.gallery-image:nth-child(2) {
    min-height: 420px;

    align-self: end;
}


.demo {

    margin-top: 18px;

    color: var(--grey);

    font-size: 12px;
}


/* VISIT */

.visit {

    padding: 120px 8vw;

    background: var(--cream);
}


.visit-content {

    display: flex;

    justify-content: space-between;

    align-items: flex-end;

    gap: 50px;

    border-top: 1px solid var(--line);

    padding-top: 45px;
}


.visit h2 {

    margin: 20px 0;
}


.visit p {

    color: var(--grey);

    margin-top: 8px;
}


/* BOOKING */

.booking {

    padding: 120px 8vw;

    background: var(--black);

    color: white;
}


.booking h2 {

    margin: 22px 0;
}


.booking p {

    max-width: 650px;

    color: #bcb7ae;

    font-size: 17px;
}


/* FOOTER */

footer {

    padding: 30px 5vw;

    background: #111;

    color: #aaa;

    display: flex;

    justify-content: space-between;

    align-items: center;

    gap: 20px;

    font-size: 10px;

    letter-spacing: .06em;
}


footer .logo {
    color: white;
}


/* MOBILE */

@media (max-width: 800px) {

    .header {
        padding: 20px 6vw;
    }


    .menu-button {
        display: block;
    }


    nav {

        display: none;

        position: absolute;

        top: 80px;

        left: 5vw;

        right: 5vw;

        flex-direction: column;

        align-items: stretch;

        gap: 0;

        padding: 10px;

        background: rgba(20,20,20,.97);
    }


    nav.open {
        display: flex;
    }


    nav a {
        padding: 14px;
    }


    .nav-button {
        text-align: center;
    }


    .hero {
        min-height: 82vh;
    }


    .hero-content {
        padding: 0 6vw 70px;
    }


    .hero h1 {
        font-size: clamp(48px, 15vw, 78px);
    }


    .scroll {
        display: none;
    }


    .buttons {
        flex-wrap: wrap;
    }


    .intro,
    .about {

        grid-template-columns: 1fr;

        gap: 35px;
    }


    .intro,
    .about,
    .services,
    .gallery,
    .visit,
    .booking {

        padding: 80px 6vw;
    }


    .about-image {
        min-height: 450px;
    }


    .gallery-grid {
        grid-template-columns: 1fr;
    }


    .gallery-image,
    .gallery-image:nth-child(2) {

        min-height: 380px;
    }


    .visit-content {

        flex-direction: column;

        align-items: flex-start;
    }


    footer {

        flex-direction: column;

        align-items: flex-start;
    }

}