
:root {
    --cream: #f6f2eb;
    --cream-dark: #ebe4d9;

    --espresso: #21150f;
    --brown: #3a261b;

    --bronze: #a47b50;
    --bronze-light: #c29a70;

    --muted: #77695e;

    --border: rgba(33, 21, 15, 0.14);

    --container: 1380px;
}


/* RESET */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);

    color: var(--espresso);

    font-family: "DM Sans", sans-serif;

    line-height: 1.6;

    overflow-x: hidden;
}

img {
    display: block;
    max-width: 100%;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =====================================================
   HEADER
===================================================== */

.site-header {
    position: absolute;

    top: 0;
    left: 0;

    width: 100%;

    z-index: 1000;
}

.navbar {
    width: min(calc(100% - 80px), var(--container));

    height: 105px;

    margin: auto;

    display: flex;

    align-items: center;

    justify-content: space-between;

    border-bottom: 1px solid var(--border);
}


/* LOGO */

.brand {
    display: flex;

    flex-direction: column;

    gap: 2px;
}

.brand-name {
    font-family: "Playfair Display", serif;

    font-size: 30px;

    font-weight: 600;

    letter-spacing: .15em;

    line-height: 1;
}

.brand-sub {
    color: var(--bronze);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .35em;
}


/* NAV */

.desktop-nav {
    display: flex;

    align-items: center;

    gap: 42px;
}

.desktop-nav a {
    color: var(--muted);

    font-size: 12px;

    transition: color .3s ease;
}

.desktop-nav a:hover {
    color: var(--espresso);
}


/* NAV BUTTON */

.nav-button {
    padding: 13px 23px;

    border: 1px solid var(--espresso);

    font-size: 11px;

    font-weight: 600;

    transition: all .3s ease;
}

.nav-button:hover {
    background: var(--espresso);

    color: var(--cream);
}


/* MOBILE BUTTON */

.menu-toggle {
    display: none;

    width: 42px;
    height: 42px;

    border: 1px solid var(--border);

    background: transparent;

    cursor: pointer;
}

.menu-toggle span {
    display: block;

    width: 19px;
    height: 1px;

    margin: 5px auto;

    background: var(--espresso);
}


/* MOBILE NAV */

.mobile-nav {
    display: none;
}


/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;

    min-height: 100vh;

    overflow: hidden;

    background: var(--cream);
}

.hero-inner {
    width: min(calc(100% - 80px), var(--container));

    min-height: 100vh;

    margin: auto;

    padding-top: 145px;
    padding-bottom: 70px;

    display: grid;

    grid-template-columns: .9fr 1.1fr;

    align-items: center;

    gap: 100px;
}


/* HERO CONTENT */

.hero-content {
    max-width: 620px;
}

.eyebrow {
    display: flex;

    align-items: center;

    gap: 12px;

    margin-bottom: 28px;

    color: var(--bronze);

    font-size: 10px;

    font-weight: 600;

    letter-spacing: .22em;
}

.eyebrow span {
    width: 30px;

    height: 1px;

    background: var(--bronze);
}


/* TITLE */

.hero h1 {
    font-family: "Playfair Display", serif;

    font-size: clamp(62px, 6.3vw, 98px);

    font-weight: 400;

    line-height: .98;

    letter-spacing: -.045em;
}

.hero h1 em {
    display: block;

    color: var(--bronze);

    font-style: italic;
}


/* TEXT */

.hero-text {
    max-width: 480px;

    margin-top: 30px;

    color: var(--muted);

    font-size: 15px;

    line-height: 1.9;
}


/* BUTTONS */

.hero-buttons {
    display: flex;

    gap: 12px;

    margin-top: 36px;
}

.button {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    min-height: 52px;

    padding: 0 27px;

    font-size: 11px;

    font-weight: 600;

    transition: all .3s ease;
}

.button-dark {
    background: var(--espresso);

    color: var(--cream);
}

.button-dark:hover {
    background: var(--bronze);

    transform: translateY(-2px);
}

.button-outline {
    border: 1px solid var(--border);

    color: var(--espresso);
}

.button-outline:hover {
    border-color: var(--espresso);

    transform: translateY(-2px);
}


/* META */

.hero-meta {
    display: flex;

    gap: 50px;

    margin-top: 55px;

    padding-top: 22px;

    border-top: 1px solid var(--border);
}

.hero-meta div {
    display: flex;

    flex-direction: column;

    gap: 3px;
}

.hero-meta small {
    color: var(--bronze);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .17em;
}

.hero-meta strong {
    font-size: 12px;

    font-weight: 500;
}


/* HERO IMAGE */

.hero-image {
    position: relative;

    height: 720px;

    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(.72);

    transition: transform 1s ease;
}

.hero-image:hover img {
    transform: scale(1.02);
}


/* IMAGE CAPTION */

.image-caption {
    position: absolute;

    left: 30px;
    bottom: 30px;

    min-width: 205px;

    padding: 20px 22px;

    background: var(--cream);

    border: 1px solid var(--border);
}

.image-caption span {
    display: block;

    margin-bottom: 7px;

    color: var(--bronze);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .18em;
}

.image-caption strong {
    display: block;

    font-family: "Playfair Display", serif;

    font-size: 21px;

    font-weight: 500;
}

.image-caption small {
    color: var(--muted);

    font-size: 10px;
}


/* HERO NUMBER */

.hero-number {
    position: absolute;

    right: 35px;

    bottom: 40px;

    color: var(--bronze);

    font-family: "Playfair Display", serif;

    font-size: 13px;
}


/* SCROLL */

.scroll-down {
    position: absolute;

    left: 35px;

    bottom: 40px;

    display: flex;

    align-items: center;

    gap: 12px;

    color: var(--muted);

    font-size: 8px;

    font-weight: 600;

    letter-spacing: .2em;
}

.scroll-down span {
    width: 45px;

    height: 1px;

    background: var(--bronze);
}


/* =====================================================
   GENERAL SECTIONS
===================================================== */

.section-container {
    width: min(calc(100% - 80px), var(--container));

    margin: auto;
}

.section-label {
    color: var(--bronze);

    font-size: 9px;

    font-weight: 600;

    letter-spacing: .2em;
}


/* =====================================================
   ABOUT
===================================================== */

.about {
    padding: 150px 0;

    background: var(--cream-dark);
}

.about-grid {
    display: grid;

    grid-template-columns: 1.1fr .9fr;

    gap: 100px;

    margin-top: 60px;
}

.about h2,
.menu-heading h2,
.gallery-heading h2,
.experience-content h2,
.visit h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(50px, 5vw, 76px);

    font-weight: 400;

    line-height: 1.02;

    letter-spacing: -.04em;
}

.about h2 em,
.menu-heading h2 em,
.gallery-heading h2 em,
.experience-content h2 em,
.visit h2 em {
    display: block;

    color: var(--bronze);

    font-style: italic;
}

.about-copy {
    padding-top: 10px;
}

.about-copy p {
    max-width: 500px;

    margin-bottom: 22px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}

.text-link {
    display: inline-flex;

    align-items: center;

    gap: 12px;

    margin-top: 15px;

    padding-bottom: 7px;

    border-bottom: 1px solid var(--bronze);

    color: var(--espresso);

    font-size: 11px;

    font-weight: 600;
}


/* =====================================================
   MENU
===================================================== */

.menu-section {
    padding: 150px 0;

    background: var(--cream);
}

.menu-heading {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;
}

.menu-heading h2 {
    width: 65%;
}

.menu-grid {
    margin-top: 80px;

    border-top: 1px solid var(--border);
}

.menu-item {
    display: grid;

    grid-template-columns: 80px 1fr auto;

    align-items: center;

    gap: 25px;

    padding: 27px 0;

    border-bottom: 1px solid var(--border);

    transition: padding .3s ease;
}

.menu-item:hover {
    padding-left: 10px;

    padding-right: 10px;
}

.menu-number {
    color: var(--bronze);

    font-size: 10px;
}

.menu-item h3 {
    font-family: "Playfair Display", serif;

    font-size: 25px;

    font-weight: 500;
}

.menu-item p {
    color: var(--muted);

    font-size: 10px;
}

.menu-item strong {
    font-family: "Playfair Display", serif;

    font-size: 18px;

    font-weight: 500;
}

.menu-cta {
    margin-top: 45px;
}


/* =====================================================
   EXPERIENCE
===================================================== */

.experience {
    padding: 150px 0;

    background: var(--cream-dark);
}

.experience-grid {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 100px;

    margin-top: 65px;

    align-items: center;
}

.experience-image {
    height: 650px;

    overflow: hidden;
}

.experience-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter: saturate(.7);
}

.experience-content p {
    max-width: 470px;

    margin-top: 30px;

    color: var(--muted);

    font-size: 14px;

    line-height: 1.9;
}

.experience-list {
    margin-top: 50px;

    border-top: 1px solid var(--border);
}

.experience-list div {
    display: flex;

    align-items: center;

    gap: 25px;

    padding: 18px 0;

    border-bottom: 1px solid var(--border);
}

.experience-list span {
    color: var(--bronze);

    font-size: 9px;
}

.experience-list strong {
    font-size: 12px;

    font-weight: 500;
}


/* =====================================================
   GALLERY
===================================================== */

.gallery {
    padding: 150px 0;

    background: var(--cream);
}

.gallery-heading {
    display: flex;

    justify-content: space-between;

    align-items: flex-start;
}

.gallery-heading h2 {
    width: 65%;
}

.gallery-grid {
    display: grid;

    grid-template-columns: 1.2fr 1fr 1fr;

    gap: 12px;

    margin-top: 70px;
}

.gallery-grid img {
    width: 100%;

    height: 430px;

    object-fit: cover;

    filter: saturate(.7);

    transition: transform .6s ease;
}

.gallery-grid img:hover {
    transform: scale(.985);
}


/* =====================================================
   VISIT
===================================================== */

.visit {
    padding: 150px 0;

    background: var(--espresso);

    color: var(--cream);

    text-align: center;
}

.visit-inner {
    max-width: 800px;

    margin: auto;
}

.visit .section-label {
    color: var(--bronze-light);
}

.visit h2 {
    margin-top: 45px;
}

.visit p {
    margin-top: 25px;

    color: rgba(246, 242, 235, .55);

    font-size: 14px;
}

.button-light {
    margin-top: 35px;

    background: var(--cream);

    color: var(--espresso);
}

.button-light:hover {
    background: var(--bronze-light);

    color: var(--espresso);
}

.visit-details {
    display: flex;

    justify-content: center;

    gap: 80px;

    margin-top: 80px;

    padding-top: 25px;

    border-top: 1px solid rgba(246, 242, 235, .12);
}

.visit-details div {
    display: flex;

    flex-direction: column;

    gap: 4px;
}

.visit-details small {
    color: var(--bronze-light);

    font-size: 8px;

    letter-spacing: .17em;
}

.visit-details strong {
    font-size: 12px;

    font-weight: 400;
}


/* =====================================================
   FOOTER
===================================================== */

.footer {
    padding: 65px 0 20px;

    background: #160e0a;

    color: var(--cream);
}

.footer-container {
    width: min(calc(100% - 80px), var(--container));

    margin: auto;

    display: flex;

    justify-content: space-between;

    gap: 50px;
}

.footer-brand {
    color: var(--cream);
}

.footer p {
    margin-top: 18px;

    color: rgba(246, 242, 235, .45);

    font-size: 12px;
}

.footer-nav {
    display: flex;

    gap: 30px;
}

.footer-nav a {
    color: rgba(246, 242, 235, .55);

    font-size: 11px;

    transition: color .3s ease;
}

.footer-nav a:hover {
    color: var(--cream);
}

.footer-bottom {
    width: min(calc(100% - 80px), var(--container));

    margin: 60px auto 0;

    padding-top: 20px;

    border-top: 1px solid rgba(246, 242, 235, .1);

    display: flex;

    justify-content: space-between;

    color: rgba(246, 242, 235, .35);

    font-size: 9px;
}


/* =====================================================
   TABLET
===================================================== */

@media (max-width: 1000px) {

    .desktop-nav {
        gap: 20px;
    }

    .hero-inner {
        gap: 50px;
    }

    .hero h1 {
        font-size: 65px;
    }

    .hero-image {
        height: 620px;
    }

    .about-grid,
    .experience-grid {
        gap: 50px;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media (max-width: 700px) {

    .navbar {
        width: calc(100% - 32px);

        height: 80px;
    }

    .desktop-nav,
    .nav-button {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .mobile-nav {
        width: 100%;

        padding: 25px 20px;

        background: var(--cream);

        border-bottom: 1px solid var(--border);
    }

    .mobile-nav.active {
        display: flex;

        flex-direction: column;

        gap: 15px;
    }

    .mobile-nav a {
        padding: 7px 0;

        color: var(--espresso);

        font-size: 14px;

        border-bottom: 1px solid rgba(33,21,15,.08);
    }

    .mobile-book {
        padding: 13px !important;

        background: var(--espresso);

        color: var(--cream) !important;

        text-align: center;

        border: none !important;
    }


    /* HERO */

    .hero-inner {
        width: calc(100% - 32px);

        padding-top: 120px;
        padding-bottom: 80px;

        display: flex;

        flex-direction: column;

        align-items: stretch;

        gap: 55px;
    }

    .hero h1 {
        font-size: clamp(50px, 14vw, 72px);
    }

    .hero-text {
        font-size: 13px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .hero-meta {
        gap: 25px;

        margin-top: 35px;
    }

    .hero-image {
        height: 500px;
    }

    .image-caption {
        left: 15px;

        bottom: 15px;
    }

    .hero-number,
    .scroll-down {
        display: none;
    }


    /* SECTIONS */

    .section-container {
        width: calc(100% - 32px);
    }

    .about,
    .menu-section,
    .experience,
    .gallery,
    .visit {
        padding: 100px 0;
    }


    /* ABOUT */

    .about-grid {
        grid-template-columns: 1fr;

        gap: 35px;

        margin-top: 45px;
    }

    .about h2,
    .menu-heading h2,
    .gallery-heading h2,
    .experience-content h2,
    .visit h2 {
        font-size: 48px;
    }


    /* MENU */

    .menu-heading,
    .gallery-heading {
        display: block;
    }

    .menu-heading h2,
    .gallery-heading h2 {
        width: 100%;

        margin-top: 35px;
    }

    .menu-grid {
        margin-top: 50px;
    }

    .menu-item {
        grid-template-columns: 35px 1fr auto;

        gap: 12px;
    }

    .menu-item h3 {
        font-size: 20px;
    }


    /* EXPERIENCE */

    .experience-grid {
        grid-template-columns: 1fr;

        gap: 45px;

        margin-top: 45px;
    }

    .experience-image {
        height: 450px;
    }


    /* GALLERY */

    .gallery-grid {
        grid-template-columns: 1fr;

        margin-top: 50px;
    }

    .gallery-grid img {
        height: 400px;
    }


    /* VISIT */

    .visit-details {
        flex-direction: column;

        gap: 25px;

        margin-top: 55px;
    }


    /* FOOTER */

    .footer-container {
        width: calc(100% - 32px);

        flex-direction: column;
    }

    .footer-nav {
        flex-wrap: wrap;

        gap: 18px;
    }

    .footer-bottom {
        width: calc(100% - 32px);

        gap: 10px;

        flex-direction: column;
    }
}
