/* ======================================================
   RESET
====================================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, Helvetica, sans-serif;

    background: #ffffff;
    color: #2f241d;
}


/* ======================================================
   GLOBAL
====================================================== */

.section-label {
    margin-bottom: 24px;

    color: #c56f32;

    font-size: 12px;
    letter-spacing: 2px;
}

.section-heading h2 {
    font-family: Georgia, serif;
    font-size: 52px;
    font-weight: normal;
    line-height: 1.08;
}

.centered {
    text-align: center;
}

.section-intro {
    max-width: 600px;

    margin: 20px auto 0;

    font-family: Georgia, serif;
    font-size: 17px;
    line-height: 1.7;

    color: #625044;
}


/* ======================================================
   HEADER
====================================================== */

.site-header {
    height: 88px;

    padding: 0 7%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #ffffff;
}

.logo {
    color: #2f241d;
    text-decoration: none;

    font-family: Georgia, serif;
    font-size: 34px;
    letter-spacing: 3px;
}

.logo span {
    display: block;

    margin-top: 2px;

    text-align: center;

    font-family: Arial, sans-serif;
    font-size: 10px;
    letter-spacing: 2px;
}

.main-nav {
    display: flex;
    gap: 42px;
}

.main-nav a {
    color: #2f241d;
    text-decoration: none;

    font-size: 12px;
    letter-spacing: 1px;

    transition: color 0.2s ease;
}

.main-nav a:hover {
    color: #c56f32;
}

.language {
    font-size: 12px;
}


/* ======================================================
   BUTTONS
====================================================== */

.button {
    display: inline-block;

    padding: 16px 28px;

    border: 1px solid transparent;

    text-decoration: none;

    font-size: 12px;
    letter-spacing: 0.6px;

    transition:
        background 0.2s ease,
        color 0.2s ease,
        border 0.2s ease;
}

.button-primary {
    background: #c56f32;
    border-color: #c56f32;

    color: #ffffff;
}

.button-primary:hover {
    background: #a95d2a;
    border-color: #a95d2a;
}

.button-secondary {
    background: rgba(255,255,255,0.45);

    border-color: #b97144;

    color: #2f241d;
}

.button-secondary:hover {
    background: #f1dfcf;
}


/* ======================================================
   HERO
====================================================== */

.hero {
    min-height: 620px;

    padding: 0 8%;

    display: flex;
    align-items: center;

    background:
        linear-gradient(
            90deg,
            rgba(247,242,235,0.98) 0%,
            rgba(247,242,235,0.90) 30%,
            rgba(247,242,235,0.38) 52%,
            rgba(247,242,235,0.05) 75%
        ),
        url("images/hero.jpg");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-content {
    max-width: 620px;
}

.hero h1 {
    font-family: Georgia, serif;

    font-size: 105px;
    font-weight: normal;

    letter-spacing: 6px;
    line-height: 0.95;
}

.hero-subtitle {
    margin-top: 22px;
    margin-bottom: 28px;

    color: #c56f32;

    font-size: 17px;
    letter-spacing: 7px;
}

.hero-description {
    font-family: Georgia, serif;

    font-size: 20px;
    line-height: 1.65;

    color: #46362c;
}

.hero-buttons {
    margin-top: 35px;

    display: flex;
    gap: 18px;
}


/* ======================================================
   ABOUT
====================================================== */

.about-section {
    background: #ffffff;
}

.about-content {
    max-width: 1180px;

    margin: 100px auto 0;
    padding: 0 45px 100px;

    display: grid;
    grid-template-columns: 1fr 0.95fr;

    gap: 100px;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 28px;

    font-family: Georgia, serif;

    font-size: 54px;
    font-weight: normal;

    line-height: 1.06;
}

.about-text > p:not(.section-label) {
    max-width: 500px;

    margin-bottom: 18px;

    font-family: Georgia, serif;

    font-size: 17px;
    line-height: 1.8;

    color: #625044;
}

.about-image {
    height: 470px;

    overflow: hidden;

    border-radius: 85px 0 85px 0;
}

.about-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;
}


/* ======================================================
   GALLERY
====================================================== */

.gallery-section {
    padding: 80px 8% 105px;

    background: #ffffff;
}

.gallery-section .section-heading {
    margin-bottom: 50px;
}

.gallery-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;

    grid-template-columns: 1.35fr 1fr;
    grid-template-rows: 240px 240px;

    gap: 18px;
}

.gallery-photo {
    overflow: hidden;
}

.gallery-large {
    grid-row: 1 / 3;
}

.gallery-photo img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    display: block;

    transition: transform 0.4s ease;
}

.gallery-photo:hover img {
    transform: scale(1.025);
}


/* ======================================================
   MENU PREVIEW
====================================================== */

.menu-preview-section {
    padding: 105px 8% 115px;

    background: #ffffff;
}

.menu-categories {
    max-width: 1050px;

    margin: 65px auto 0;

    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.menu-category {
    padding: 30px 35px;

    border-right: 1px solid rgba(98,80,68,0.22);
}

.menu-category:last-child {
    border-right: none;
}

.menu-category span {
    display: block;

    margin-bottom: 35px;

    color: #c56f32;

    font-size: 11px;
}

.menu-category h3 {
    margin-bottom: 8px;

    font-family: Georgia, serif;

    font-size: 29px;
    font-weight: normal;
}

.menu-category p {
    color: #806d60;

    font-size: 12px;
    letter-spacing: 0.8px;
}

.center-button {
    margin-top: 60px;

    text-align: center;
}


/* ======================================================
   RESERVATION
====================================================== */

.reservation-section {
    padding: 110px 8%;

    background: #ffffff;
}

.reservation-content {
    max-width: 760px;

    margin: auto;

    text-align: center;
}

.reservation-content h2 {
    margin-bottom: 20px;

    font-family: Georgia, serif;

    font-size: 52px;
    font-weight: normal;
}

.reservation-content > p:not(.section-label) {
    max-width: 560px;

    margin: 0 auto 34px;

    font-family: Georgia, serif;

    font-size: 17px;
    line-height: 1.7;

    color: #625044;
}


/* ======================================================
   CONTACT
====================================================== */

.contact-section {
    padding: 85px 8%;

    background: #f7f2eb;
}

.contact-grid {
    max-width: 1100px;

    margin: auto;

    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;

    gap: 60px;
}

.contact-grid h2 {
    font-family: Georgia, serif;

    font-size: 36px;
    font-weight: normal;
}

.contact-column h3 {
    margin-bottom: 15px;

    font-family: Georgia, serif;

    font-size: 18px;
    font-weight: normal;
}

.contact-column p {
    margin-bottom: 7px;

    color: #625044;

    font-family: Georgia, serif;

    font-size: 15px;
    line-height: 1.5;
}

.contact-column a {
    color: inherit;
    text-decoration: none;
}

.contact-column a:hover {
    color: #c56f32;
}


/* ======================================================
   FOOTER
====================================================== */

footer {
    padding: 45px 8%;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background: #2f241d;

    color: #ffffff;
}

.footer-logo {
    color: #ffffff;
    text-decoration: none;

    font-family: Georgia, serif;
    font-size: 26px;
    letter-spacing: 3px;

    cursor: pointer;
}
.footer-logo span {
    display: block;

    text-align: center;

    font-family: Arial, sans-serif;

    font-size: 8px;
    letter-spacing: 2px;
}

footer p {
    font-size: 11px;

    color: #d8ccc4;
}


/* ======================================================
   FULL MENU PAGE
====================================================== */

.full-menu-hero {
    padding: 110px 8% 75px;

    text-align: center;

    background: #ffffff;
}

.full-menu-hero h1 {
    margin-bottom: 20px;

    font-family: Georgia, serif;

    font-size: 72px;
    font-weight: normal;
}

.full-menu-hero > p:not(.section-label) {
    max-width: 620px;

    margin: auto;

    font-family: Georgia, serif;

    font-size: 18px;
    line-height: 1.7;

    color: #625044;
}

.menu-navigation {
    margin-top: 38px;

    display: flex;
    justify-content: center;
    align-items: center;

    gap: 18px;

    font-size: 11px;
    letter-spacing: 1.5px;
}

.menu-navigation a {
    color: #625044;

    text-decoration: none;

    transition: color 0.2s ease;
}

.menu-navigation a:hover {
    color: #c56f32;
}

.menu-navigation span {
    color: #c56f32;
}

.full-menu {
    max-width: 980px;

    margin: auto;
    padding: 20px 45px 120px;

    background: #ffffff;
}

.menu-group {
    margin-bottom: 110px;

    scroll-margin-top: 100px;
}

.menu-group-heading {
    display: flex;
    align-items: baseline;

    gap: 22px;

    margin-bottom: 18px;
    padding-bottom: 18px;

    border-bottom: 1px solid rgba(98,80,68,0.18);
}

.menu-group-heading span {
    color: #c56f32;

    font-size: 11px;
}

.menu-group-heading h2 {
    font-family: Georgia, serif;

    font-size: 42px;
    font-weight: normal;
}

.dish {
    padding: 24px 0;

    display: flex;
    justify-content: space-between;

    gap: 30px;

    border-bottom: 1px solid rgba(98,80,68,0.12);
}

.dish h3 {
    margin-bottom: 7px;

    font-family: Georgia, serif;

    font-size: 24px;
    font-weight: normal;
}

.dish p {
    font-family: Georgia, serif;

    font-size: 15px;

    color: #806d60;
}

.dish strong {
    white-space: nowrap;

    color: #c56f32;

    font-family: Georgia, serif;

    font-size: 20px;
    font-weight: normal;
}


/* ======================================================
   MOBILE
====================================================== */

@media (max-width: 900px) {

    .site-header {
        height: 72px;
position: relative;
z-index: 1100;

        padding: 0 6%;
    }

    .logo {
        font-size: 28px;
    }

    .menu-toggle {
    display: block;
    }

.main-nav {
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;

    display: none;
    flex-direction: column;
    gap: 0;

    padding: 20px 7% 25px;

    background: #ffffff;

    z-index: 1000;
}

.main-nav.active {
    display: flex;
}

.main-nav a {
    padding: 14px 0;

    border-bottom: 1px solid rgba(98, 80, 68, 0.12);

    font-size: 12px;
}

.main-nav a:last-child {
    border-bottom: none;
}

    /* HERO */

    .hero {
        min-height: 560px;

        padding: 60px 7%;

        background:
            linear-gradient(
                rgba(247,242,235,0.88),
                rgba(247,242,235,0.88)
            ),
            url("images/hero.jpg");

        background-size: cover;
        background-position: center;
    }

    .hero h1 {
        font-size: 68px;
    }

    .hero-subtitle {
        font-size: 14px;

        letter-spacing: 5px;
    }

    .hero-description {
        font-size: 17px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: flex-start;
    }


    /* ABOUT */

    .about-content {
        margin-top: 70px;

        padding: 0 7% 70px;

        grid-template-columns: 1fr;

        gap: 50px;
    }

    .about-text h2 {
        font-size: 40px;
    }

    .about-image {
        height: 350px;
    }


    /* GALLERY */

    .gallery-section {
        padding: 65px 7% 75px;
    }

    .section-heading h2 {
        font-size: 40px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .gallery-large {
        grid-row: auto;
    }

    .gallery-photo {
        height: 280px;
    }


    /* MENU PREVIEW */

    .menu-preview-section {
        padding: 70px 7% 80px;
    }

    .menu-categories {
        grid-template-columns: 1fr 1fr;

        margin-top: 45px;
    }

    .menu-category {
        border-right: none;

        border-bottom:
            1px solid rgba(98,80,68,0.22);
    }

    .menu-category:nth-last-child(-n+2) {
        border-bottom: none;
    }


    /* RESERVATION */

    .reservation-section {
        padding: 75px 7%;
    }

    .reservation-content h2 {
        font-size: 40px;
    }


    /* CONTACT */

    .contact-section {
        padding: 65px 7%;
    }

    .contact-grid {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* FOOTER */

    footer {
        padding: 35px 7%;

        flex-direction: column;

        gap: 18px;

        text-align: center;
    }


    /* FULL MENU */

    .full-menu-hero {
        padding: 80px 7% 50px;
    }

    .full-menu-hero h1 {
        font-size: 54px;
    }

    .menu-navigation {
        flex-wrap: wrap;
    }

    .full-menu {
        padding: 10px 7% 80px;
    }

    .menu-group {
        margin-bottom: 70px;
    }

    .menu-group-heading h2 {
        font-size: 34px;
    }

    .dish {
        align-items: flex-start;
    }

    .dish h3 {
        font-size: 21px;
    }
}
/* STABLE NUMBERS */

.menu-category span,
.menu-group-heading span,
.dish strong {
    font-family: Arial, Helvetica, sans-serif;
    font-variant-numeric: tabular-nums;
}
.contact-column p,
.contact-column a {
    font-variant-numeric: lining-nums;
}
.address-link {
    display: inline-block;
    color: inherit;
    text-decoration: none;
}

.address-link p {
    transition: color 0.2s ease;
}

.directions-link {
    display: inline-block;
    margin-top: 10px;

    font-family: Arial, Helvetica, sans-serif;
    font-size: 10px;
    letter-spacing: 1.2px;

    color: #c56f32;
}

.address-link:hover p {
    color: #c56f32;
}

.address-link:hover .directions-link {
    text-decoration: underline;
}
.contact-column p,
.contact-column a,
.contact-column .directions-link {
    font-family: Arial, Helvetica, sans-serif;
}
.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    color: #2f241d;
    cursor: pointer;
}
@media (max-width: 900px) {
    .menu-toggle {
        display: block !important;
        position: relative;
        z-index: 1200;

        background: none;
        border: none;

        font-size: 26px;
        line-height: 1;

        color: #2f241d;
    }

    .language {
        display: block !important;
    }
}