:root {
    --black: #10100f;
    --cream: #f0ede5;
    --paper: #e7e1d6;
    --gold: #b59a6a;
    --muted: #9a968e;
    --line: rgba(16, 16, 15, 0.18);
}

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

html {
    scroll-behavior: smooth;
}

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

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

button,
input,
select,
textarea {
    font: inherit;
}


/* HEADER */

.header {
    position: fixed;
    z-index: 50;
    top: 0;
    left: 0;
    width: 100%;
    height: 92px;
    padding: 0 5vw;

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

    color: white;
    border-bottom: 1px solid rgba(255,255,255,.2);
    background: transparent;

    transition:
        background .35s ease,
        backdrop-filter .35s ease,
        border-color .35s ease;
}

.header.scrolled {
    background: rgba(16, 16, 15, 0.88);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: rgba(255,255,255,.12);
}

.logo,
.footer-logo {
    font-family: "Italiana", serif;
    font-size: 28px;
    letter-spacing: .18em;
}

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

.nav a {
    font-size: 13px;
    letter-spacing: .08em;
}

.header-book {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: .14em;
    padding-bottom: 5px;
    border-bottom: 1px solid white;
}

.menu-toggle {
    display: none;
}


/* HERO */

.hero {
    min-height: 100vh;
    position: relative;

    display: flex;
    align-items: center;

    color: white;
    padding: 150px 8vw 100px;

    background:
        linear-gradient(90deg, rgba(0,0,0,.72), rgba(0,0,0,.18)),
        url("images/hero.png") center/cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        0deg,
        rgba(0,0,0,.35),
        transparent 50%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: .22em;
    margin-bottom: 28px;
}

.eyebrow.dark {
    color: #69645c;
}

h1,
h2 {
    font-family: "Italiana", serif;
    font-weight: 400;
}

h1 {
    font-size: clamp(60px, 7.4vw, 118px);
    line-height: .94;
}

h2 {
    font-size: clamp(48px, 5.5vw, 84px);
    line-height: 1;
}

h1 em,
h2 em {
    color: var(--gold);
    font-weight: 400;
}

.hero-text {
    max-width: 540px;
    line-height: 1.8;
    margin-top: 35px;
    color: rgba(255,255,255,.8);
}

.hero-actions {
    margin-top: 42px;

    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 35px;
}

.button {
    display: inline-block;
    border: 0;
    cursor: pointer;

    text-transform: uppercase;
    letter-spacing: .14em;

    font-size: 11px;
    padding: 18px 27px;
}

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

.button-gold {
    background: var(--gold);
    color: white;
    width: 100%;
}

.text-link {
    font-size: 13px;
    border-bottom: 1px solid currentColor;
    padding-bottom: 4px;
}

.hero-bottom {
    position: absolute;
    z-index: 2;

    bottom: 35px;
    left: 8vw;
    right: 8vw;

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

    font-size: 11px;
    letter-spacing: .12em;
    color: rgba(255,255,255,.65);
}


/* GENERAL SECTIONS */

.section {
    padding: 130px 8vw;
}


/* INTRO */

.intro {
    display: grid;
    grid-template-columns: .4fr 1.6fr 1fr;
    gap: 70px;
}

.section-number {
    color: var(--gold);
    font-family: "Italiana", serif;
    font-size: 20px;
}

.intro-copy {
    padding-top: 65px;
}

.intro-copy p {
    color: #615d56;
    line-height: 1.9;
    margin-bottom: 25px;
}

.dark-link {
    display: inline-block;
    margin-top: 10px;
}


/* FEATURE IMAGE */

.feature-image {
    height: 78vh;
    min-height: 600px;

    color: white;

    display: flex;
    align-items: flex-end;

    padding: 8vw;

    background:
        linear-gradient(0deg, rgba(0,0,0,.65), transparent 70%),
        url("images/food.png") center/cover;
}


/* MENU */

.menu-section {
    background: var(--paper);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;

    padding-bottom: 70px;
    border-bottom: 1px solid var(--line);
}

.menu-header > p {
    max-width: 300px;
    color: #716d65;
    line-height: 1.8;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 60px;
    padding-top: 70px;
}

.menu-column h3 {
    font-family: "Italiana", serif;
    font-size: 30px;
    margin-bottom: 35px;
}

.dish {
    display: flex;
    justify-content: space-between;

    gap: 20px;
    padding: 22px 0;

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

.dish h4 {
    font-weight: 500;
    margin-bottom: 8px;
}

.dish p {
    font-size: 12px;
    color: #78736a;
}

.dish > span {
    color: var(--gold);
}

.menu-note {
    margin-top: 75px;
    padding: 28px 0;

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

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


/* EXPERIENCE */

.experience {
    min-height: 800px;

    display: grid;
    grid-template-columns: 1fr 1fr;

    background: var(--black);
    color: white;
}

.experience-image {
    background: url("images/interior.png") center/cover;
}

.experience-copy {
    padding: 120px 9vw;

    display: flex;
    flex-direction: column;
    justify-content: center;
}

.experience-copy > p:not(.eyebrow) {
    color: #aaa69f;
    line-height: 1.9;

    margin-top: 40px;
    max-width: 500px;
}

.experience-details {
    display: grid;
    grid-template-columns: 1fr 1fr;

    gap: 40px;
    margin-top: 70px;
    padding-top: 35px;

    border-top: 1px solid rgba(255,255,255,.16);
}

.experience-details span,
.contact-grid span {
    color: var(--gold);
    font-size: 10px;
    letter-spacing: .18em;
}

.experience-details p {
    margin-top: 12px;
    line-height: 1.7;
    color: #bbb7b0;
}


/* RESERVATION */

.reservation {
    background: #171715;
    color: white;

    display: grid;
    grid-template-columns: .85fr 1.15fr;

    gap: 10vw;
}

.reservation-heading > p:last-child {
    color: #9f9b94;
    max-width: 400px;

    line-height: 1.8;
    margin-top: 35px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

label {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: #aaa69f;
}

input,
select,
textarea {
    width: 100%;
    display: block;

    margin-top: 10px;
    padding: 16px 0;

    border: 0;
    border-bottom: 1px solid #55534e;
    border-radius: 0;

    outline: none;

    color: white;
    background: transparent;
}

input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1);
    opacity: .8;
    cursor: pointer;
}

textarea {
    resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
    border-color: var(--gold);
}

select option {
    color: black;
}

.form-message {
    text-align: center;
    min-height: 20px;
    font-size: 13px;
}


/* CONTACT */

.contact {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 100px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 30px;
    padding-top: 55px;
}

.contact-grid p {
    margin-top: 15px;
    line-height: 1.8;
    color: #666159;
}


/* FOOTER */

footer {
    padding: 80px 8vw 35px;
    color: white;
    background: var(--black);
}

.footer-logo {
    font-size: clamp(60px, 13vw, 190px);
    text-align: center;
    padding: 30px 0 80px;
}

.footer-bottom {
    padding-top: 25px;

    border-top: 1px solid rgba(255,255,255,.15);

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

    font-size: 10px;
    letter-spacing: .1em;
    color: #85817b;
}


/* REVEAL */

.reveal {
    opacity: 0;
    transform: translateY(35px);

    transition:
        opacity .8s ease,
        transform .8s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}


/* MOBILE / TABLET */

@media (max-width: 900px) {

    .nav,
    .header-book {
        display: none;
    }

    .menu-toggle {
        display: flex;

        width: 35px;
        height: 35px;

        border: 0;
        background: transparent;

        flex-direction: column;
        justify-content: center;

        gap: 7px;
        z-index: 110;
    }

    .menu-toggle span {
        width: 100%;
        height: 1px;
        background: white;
    }

    .nav.open {
        position: fixed;

        display: flex;
        flex-direction: column;

        top: 75px;
        left: 0;

        width: 100%;
        height: calc(100vh - 75px);

        padding: 40px 8vw 30px;

        background: #10100f;

        gap: 26px;
        z-index: 100;

        overflow-y: auto;
    }

    .nav.open > a {
        display: block;
    }

    .nav.open > a:not(.mobile-book) {
        font-size: 15px;
        letter-spacing: .08em;
        text-transform: uppercase;
    }

    .nav.open .mobile-menu-divider {
        display: block;

        width: 100%;
        height: 1px;

        background: rgba(255,255,255,.14);
        margin: 5px 0;
    }

    .nav.open .mobile-book {
        display: flex;

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

        width: 100%;
        margin: 0;
        padding: 20px 22px;

        background: var(--gold);
        color: var(--black);

        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: .16em;
    }

    .nav.open .mobile-socials {
        display: flex;

        gap: 24px;
        margin-top: auto;
        padding-top: 22px;

        border-top: 1px solid rgba(255,255,255,.14);

        color: #88847d;

        font-size: 11px;
        text-transform: uppercase;
        letter-spacing: .12em;
    }

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

    .intro {
        gap: 30px;
    }

    .intro-copy {
        padding-top: 0;
    }

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

    .menu-header {
        align-items: flex-start;
        flex-direction: column;
        gap: 35px;
    }

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

    .experience-image {
        min-height: 500px;
    }

    .experience-copy {
        padding: 90px 8vw;
    }

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


/* PHONE */

@media (max-width: 600px) {

    .header {
        height: 75px;
        padding: 0 6vw;
    }

    .logo {
        font-size: 22px;
    }


    /* HERO */

    .hero {
        padding: 120px 6vw 100px;
    }

    h1 {
        font-size: 54px;
    }

    h2 {
        font-size: 46px;
    }

    /*
       IMPORTANT:
       Keep both hero actions on ONE LINE.
    */

    .hero-actions {
        display: flex;
        flex-direction: row;
        align-items: center;

        gap: 16px;
        margin-top: 28px;

        flex-wrap: nowrap;
        width: 100%;
    }

    .hero-book {
        flex: 0 0 auto;

        padding: 17px 18px;

        font-size: 9px;
        letter-spacing: .11em;

        white-space: nowrap;
    }

    .hero-menu-link {
        flex: 0 0 auto;

        margin: 0;

        font-size: 11px;
        white-space: nowrap;
    }

    .hero-bottom {
        left: 6vw;
        right: 6vw;

        gap: 20px;
        flex-direction: column;
    }


    /* GENERAL */

    .section {
        padding: 90px 6vw;
    }

    .feature-image {
        height: 65vh;
        min-height: 500px;
        padding: 8vw 6vw;
    }

    .form-row {
        grid-template-columns: 1fr;
    }


    /* EXPERIENCE */

    .experience {
        display: block;
        background: #0d0d0c;
        padding: 0 0 60px;
    }

    .experience-image {
        min-height: 390px;
        width: 100%;

        background-position: center;
        background-size: cover;
    }

    .experience-copy {
        position: relative;

        margin: 0;
        padding: 38px 26px 0;

        background: #0d0d0c;

        border: none;
        box-shadow: none;
    }

    .experience-copy .eyebrow {
        margin-bottom: 18px;
    }

    .experience-copy h2 {
        font-size: 40px;
        line-height: 1.02;
        max-width: 320px;
    }

    .experience-copy > p:not(.eyebrow) {
        margin-top: 24px;

        font-size: 13px;
        line-height: 1.75;

        color: #aaa69f;
    }

    .experience-details {
        grid-template-columns: 1fr 1fr;

        gap: 24px;
        margin-top: 30px;
        padding-top: 24px;

        border-top: 1px solid rgba(255,255,255,.12);
    }

    .experience-details p {
        font-size: 12px;
        line-height: 1.65;
    }


    /* RESERVATION */

    .reservation {
        padding-top: 55px;
        padding-bottom: 65px;
        gap: 28px;
    }

    .reservation h2 {
        font-size: 46px;
        line-height: .98;
    }

    .reservation-heading > p:last-child {
        margin-top: 26px;
        line-height: 1.7;
    }

    .booking-form {
        gap: 22px;
    }

    .booking-form input,
    .booking-form select,
    .booking-form textarea {
        padding: 10px 0 12px;
    }

    .booking-form textarea {
        min-height: 65px;
    }

    .booking-form button {
        margin-top: 4px;
        min-height: 54px;
    }


    /* CONTACT */

    .contact {
        padding-top: 60px;
        padding-bottom: 60px;

        gap: 25px;
    }

    .contact h2 {
        font-size: 46px;
        line-height: .98;
    }

    .contact-grid {
        padding-top: 0;
        gap: 28px;
    }


    /* FOOTER */

    .footer-bottom {
        gap: 15px;
        flex-direction: column;
        text-align: center;
    }
}


/* MOBILE MENU ELEMENTS */

.mobile-book,
.mobile-menu-divider,
.mobile-socials {
    display: none;
}

.header:has(.nav.open) {
    background: rgba(16, 16, 15, 0.96);

    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
}