@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,500&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --dark: #28241f;
    --dark-soft: #39332c;

    --cream: #eee4d7;
    --cream-deep: #ded0bf;

    --orange: #b96d48;
    --orange-dark: #985537;

    --olive: #74785b;

    --text: #302a25;
    --muted: #756b62;

    --line: rgba(48, 42, 37, 0.16);

    --max: 1320px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--cream);
    color: var(--text);

    font-family: 'Montserrat', sans-serif;

    overflow-x: hidden;
}

img {
    width: 100%;
    display: block;
}

a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

section {
    scroll-margin-top: 90px;
}


/* HEADER */

.site-header {
    position: fixed;
    top: 0;
    left: 0;

    width: 100%;
    z-index: 1000;

    background: rgba(40, 36, 31, 0.92);

    backdrop-filter: blur(18px);

    border-bottom:
        1px solid rgba(255,255,255,0.08);
}

.navbar {
    width: min(100% - 70px, var(--max));

    height: 92px;

    margin: auto;

    display: grid;

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

    align-items: center;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 11px;

    color: #cfc5b9;
}

.nav-left span {
    font-size: 8px;
    font-weight: 600;
    letter-spacing: 2.5px;
}

.nav-left i {
    width: 4px;
    height: 4px;

    background: var(--orange);

    border-radius: 50%;
}

.logo {
    color: var(--cream);

    text-decoration: none;

    font-family: 'Cormorant Garamond', serif;

    font-size: 34px;
    font-weight: 600;

    letter-spacing: 10px;

    transition: 0.3s;
}

.logo:hover {
    color: #d99a77;
}

.nav-right {
    display: flex;
    justify-content: flex-end;
    align-items: center;

    gap: 30px;
}

.nav-right > a {
    position: relative;

    color: #d6ccc0;

    text-decoration: none;
    text-transform: uppercase;

    font-size: 9px;
    letter-spacing: 2px;
}

.nav-right > a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: var(--orange);

    transition: 0.3s;
}

.nav-right > a:hover::after {
    width: 100%;
}


/* MENU ICON */

.menu-button {
    width: 40px;
    height: 40px;

    border: none;
    background: transparent;

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

    gap: 7px;

    cursor: pointer;
}

.menu-button span {
    width: 23px;
    height: 1px;

    display: block;

    background: var(--cream);

    transition: 0.3s;
}

.menu-button.open span:first-child {
    transform:
        translateY(4px)
        rotate(45deg);
}

.menu-button.open span:last-child {
    transform:
        translateY(-4px)
        rotate(-45deg);
}


/* MOBILE MENU */

.mobile-menu {
    display: none;

    padding:
        30px max(35px, calc((100% - var(--max)) / 2));

    background: var(--dark);

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

.mobile-menu.open {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);
}

.mobile-menu a {
    padding: 22px;

    color: var(--cream);

    text-decoration: none;

    font-family: 'Cormorant Garamond', serif;

    font-size: 26px;

    border-right:
        1px solid rgba(255,255,255,0.08);

    border-bottom:
        1px solid rgba(255,255,255,0.08);

    transition: 0.3s;
}

.mobile-menu a span {
    display: block;

    margin-bottom: 10px;

    color: var(--orange);

    font-family: 'Montserrat', sans-serif;

    font-size: 8px;

    letter-spacing: 2px;
}

.mobile-menu a:hover {
    background: var(--dark-soft);

    padding-left: 30px;
}


/* HERO */

.hero {
    position: relative;

    min-height: 100vh;

    padding: 160px 7vw 90px;

    display: flex;
    align-items: center;

    color: var(--cream);

    background:
        linear-gradient(
            90deg,
            rgba(40,36,31,0.91) 0%,
            rgba(40,36,31,0.74) 42%,
            rgba(40,36,31,0.30) 76%
        ),
        url("images/hero.jpg")
        center / cover
        no-repeat;
}

.hero-content {
    width: min(100%, 800px);

    margin-left:
        max(0px, calc((100vw - var(--max)) / 2));

    position: relative;

    z-index: 2;
}

.eyebrow {
    margin-bottom: 25px;

    color: #e1a27e;

    font-size: 9px;
    font-weight: 700;
    letter-spacing: 5px;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;

    font-size:
        clamp(72px, 8.2vw, 130px);

    font-weight: 500;

    line-height: 0.78;

    letter-spacing: -4px;
}

.hero h1 em {
    display: block;

    margin-top: 25px;

    color: #d9916b;

    font-weight: 400;
}

.hero-description {
    width: min(100%, 520px);

    margin-top: 40px;

    color: #d4c9bd;

    font-size: 12px;
    line-height: 1.9;
}

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

    gap: 35px;

    margin-top: 38px;
}

.primary-button {
    padding: 17px 21px;

    display: inline-flex;

    align-items: center;

    gap: 25px;

    background: var(--orange);

    color: white;

    text-decoration: none;

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

    letter-spacing: 1px;

    transition: 0.3s;
}

.primary-button:hover {
    background: var(--orange-dark);

    transform: translateY(-3px);
}

.text-button {
    color: #ded4c9;

    text-decoration: none;

    font-size: 9px;
    letter-spacing: 1px;

    border-bottom:
        1px solid #9d9287;

    padding-bottom: 5px;
}

.hero-side-text {
    position: absolute;

    left: 25px;

    top: 50%;

    transform:
        translateY(-50%)
        rotate(-90deg);

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

    font-size: 7px;
    letter-spacing: 3px;
}

.hero-number {
    position: absolute;

    right: 6vw;

    top: 48%;

    display: flex;
    flex-direction: column;

    z-index: 2;
}

.hero-number span {
    color: #c8beb3;

    font-size: 7px;
    letter-spacing: 3px;
}

.hero-number strong {
    margin-top: 3px;

    color: #e2a07b;

    font-family: 'Cormorant Garamond', serif;

    font-size: 42px;
    font-weight: 400;
}

.scroll-down {
    position: absolute;

    bottom: 30px;

    left: 50%;

    transform:
        translateX(-50%);

    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 10px;

    color: #bfb5aa;

    text-decoration: none;

    font-size: 7px;
    letter-spacing: 2px;

    z-index: 3;
}

.scroll-down div {
    width: 1px;
    height: 35px;

    background: var(--orange);
}


/* INTRO */

.intro {
    max-width: 1100px;

    margin: auto;

    padding: 150px 35px;

    text-align: center;
}

.intro > p {
    margin-bottom: 30px;

    color: var(--orange-dark);

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

    letter-spacing: 5px;
}

.intro h2 {
    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(45px, 5vw, 74px);

    font-weight: 500;

    line-height: 1.02;
}

.intro h2 span {
    display: block;

    color: var(--orange);

    font-style: italic;
}


/* SHARED */

.section-tag {
    margin-bottom: 25px;

    color: var(--orange-dark);

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

    letter-spacing: 4px;
}

.about-copy h2,
.menu-heading h2,
.chef-copy h2,
.gallery-heading h2,
.reservation-intro h2,
.map-copy h2 {
    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(50px, 5vw, 75px);

    font-weight: 500;

    line-height: 0.95;
}

.about-copy h2 em,
.menu-heading h2 em,
.chef-copy h2 em,
.gallery-heading h2 em,
.reservation-intro h2 em,
.map-copy h2 em {
    display: block;

    color: var(--orange);

    font-weight: 400;
}


/* ABOUT */

.about {
    width:
        min(100% - 70px, var(--max));

    margin: auto;

    padding-bottom: 150px;

    display: grid;

    grid-template-columns:
        1.05fr 0.95fr;

    gap: 100px;

    align-items: center;
}

.about-photo {
    position: relative;
}

.about-photo img {
    height: 650px;

    object-fit: cover;
}

.photo-tag {
    position: absolute;

    right: -35px;
    bottom: 45px;

    width: 135px;
    height: 135px;

    display: flex;

    flex-direction: column;

    justify-content: center;

    align-items: center;

    background: var(--olive);

    color: white;
}

.photo-tag span {
    font-size: 7px;

    letter-spacing: 3px;
}

.photo-tag strong {
    margin-top: 7px;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 25px;
}

.about-copy > p:not(.section-tag) {
    margin-top: 25px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.9;
}

.about-stats {
    margin-top: 40px;

    padding-top: 25px;

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

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

.about-stats strong {
    display: block;

    color: var(--olive);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 27px;
}

.about-stats span {
    display: block;

    margin-top: 5px;

    color: var(--muted);

    font-size: 8px;
}


/* MARQUEE */

.marquee {
    padding: 25px 0;

    overflow: hidden;

    background: var(--orange);

    color: white;
}

.marquee-track {
    width: max-content;

    display: flex;

    align-items: center;

    gap: 45px;

    animation:
        marquee 25s linear infinite;
}

.marquee-track span {
    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 32px;
}

.marquee-track i {
    font-style: normal;
}

@keyframes marquee {

    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }

}


/* MENU */

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

    margin: auto;

    padding: 140px 0;
}

.menu-heading {
    display: grid;

    grid-template-columns:
        1fr 0.6fr;

    gap: 80px;

    align-items: end;

    margin-bottom: 70px;
}

.menu-heading > p {
    color: var(--muted);

    font-size: 12px;

    line-height: 1.9;
}

.menu-tabs {
    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    margin-bottom: 20px;

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

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

.menu-tab {
    padding: 20px;

    border: none;

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

    background: transparent;

    color: var(--muted);

    cursor: pointer;

    font-size: 9px;

    transition: 0.3s;
}

.menu-tab.active {
    background: var(--olive);

    color: white;
}

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

.menu-item {
    min-height: 125px;

    padding: 25px 10px;

    display: grid;

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

    gap: 25px;

    align-items: center;

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

    transition: 0.3s;
}

.menu-item:hover {
    padding-left: 20px;

    background:
        rgba(255,255,255,0.25);
}

.dish-number {
    color: var(--orange);

    font-size: 9px;
}

.menu-item h3 {
    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 27px;
}

.menu-item p {
    margin-top: 7px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.7;
}

.menu-item strong {
    color: var(--orange-dark);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 28px;
}

.hidden {
    display: none;
}


/* SIGNATURE */

.signature {
    display: grid;

    grid-template-columns:
        1.25fr 0.75fr;

    min-height: 720px;

    background: var(--dark);

    color: var(--cream);
}

.signature-image {
    overflow: hidden;
}

.signature-image img {
    height: 100%;
    min-height: 720px;

    object-fit: cover;

    transition: 0.8s;
}

.signature:hover
.signature-image img {
    transform: scale(1.035);
}

.signature-copy {
    position: relative;

    padding: 80px 70px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}

.signature-copy .section-tag {
    color: #db9874;
}

.big-number {
    position: absolute;

    right: 40px;
    top: 35px;

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

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 170px;
}

.signature-copy h2 {
    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(55px, 5vw, 80px);

    font-weight: 500;

    line-height: 0.9;
}

.signature-copy h2 em {
    display: block;

    color: #d9916b;
}

.signature-copy > p:not(.section-tag) {
    margin-top: 30px;

    color: #bbb0a5;

    font-size: 11px;

    line-height: 1.9;
}

.signature-bottom {
    margin-top: 40px;

    padding-top: 25px;

    display: flex;

    justify-content:
        space-between;

    align-items: center;

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

.signature-bottom strong {
    color: #d9916b;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 35px;
}

.signature-bottom a {
    color: var(--cream);

    text-decoration: none;

    font-size: 9px;
}


/* CHEF */

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

    margin: auto;

    padding: 140px 0;

    display: grid;

    grid-template-columns:
        0.9fr 1.1fr;

    gap: 100px;

    align-items: center;
}

.chef-copy > p:not(.section-tag) {
    margin-top: 25px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.9;
}

.chef-quote {
    margin-top: 35px;

    padding-top: 25px;

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

    color: var(--olive);

    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 28px;

    font-style: italic;
}

.chef-photo img {
    height: 620px;

    object-fit: cover;
}


/* GALLERY */

.gallery {
    width:
        min(100% - 70px, var(--max));

    margin: auto;

    padding: 140px 0;
}

.gallery-heading {
    max-width: 800px;

    margin-bottom: 65px;
}

.gallery-grid {
    display: grid;

    grid-template-columns:
        1.2fr 0.8fr;

    grid-template-rows:
        310px 250px;

    gap: 15px;
}

.gallery-main {
    grid-row: 1 / 3;

    overflow: hidden;
}

.gallery-secondary,
.gallery-third {
    overflow: hidden;
}

.gallery-main img,
.gallery-secondary img,
.gallery-third img {
    width: 100%;

    height: 100%;

    object-fit: cover;

    transition: 0.7s;
}

.gallery-main:hover img,
.gallery-secondary:hover img,
.gallery-third:hover img {
    transform: scale(1.04);
}

.gallery-message {
    padding: 35px;

    display: flex;

    flex-direction: column;

    justify-content:
        space-between;

    background: var(--olive);

    color: white;
}

.gallery-message p {
    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 37px;
}


/* RESERVATION */

.reservation {
    padding: 140px 35px;

    color: white;

    background:
        linear-gradient(
            rgba(109,112,82,0.89),
            rgba(83,87,63,0.93)
        ),
        url("images/table.jpg")
        center / cover
        fixed;
}

.reservation-intro {
    max-width: 700px;

    margin: auto;

    text-align: center;
}

.reservation-intro .section-tag {
    color: #f0c0a5;
}

.reservation-intro h2 em {
    color: #f1b28e;
}

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

    margin:
        25px auto 0;

    color: #e2dbd2;

    font-size: 11px;

    line-height: 1.8;
}

.reservation-form {
    max-width: 1050px;

    margin:
        55px auto 0;

    padding: 35px;

    display: grid;

    grid-template-columns:
        repeat(5, 1fr);

    gap: 12px;

    background:
        rgba(40,36,31,0.82);

    backdrop-filter: blur(14px);
}

.form-field {
    display: flex;

    flex-direction: column;

    gap: 10px;
}

.form-field label {
    color: #c9beb3;

    font-size: 7px;
}

.form-field input,
.form-field select {
    width: 100%;

    height: 50px;

    padding: 0 12px;

    border:
        1px solid rgba(255,255,255,0.13);

    outline: none;

    background:
        rgba(255,255,255,0.06);

    color: white;

    font-size: 10px;
}

.form-field select option {
    background: var(--dark);
}

.reservation-form button {
    grid-column:
        1 / -1;

    height: 52px;

    margin-top: 10px;

    border: none;

    background: var(--orange);

    color: white;

    cursor: pointer;

    font-size: 9px;

    font-weight: 700;
}

.reservation-form button:hover {
    background:
        var(--orange-dark);
}

.demo-notice {
    margin-top: 20px;

    text-align: center;

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

    font-size: 8px;
}


/* CONTACT */

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

    margin: auto;

    padding: 140px 0;

    display: grid;

    grid-template-columns:
        0.7fr 1.3fr;

    gap: 100px;

    align-items: end;
}

.contact-brand > p {
    color: var(--orange-dark);

    font-size: 8px;

    letter-spacing: 4px;
}

.contact-brand h2 {
    margin-top: 10px;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(70px, 8vw, 125px);

    font-weight: 500;

    letter-spacing: 5px;
}

.contact-information {
    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 35px;
}

.contact-information > div {
    padding-top: 20px;

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

.contact-information span {
    color: var(--olive);

    font-size: 7px;

    font-weight: 700;

    letter-spacing: 2px;
}

.contact-information p {
    margin-top: 15px;

    color: var(--muted);

    font-size: 10px;

    line-height: 1.8;
}

.contact-information a {
    text-decoration: none;

    transition: 0.3s;
}

.contact-information a:hover {
    color: var(--orange);
}


/* MAP */

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

    margin:
        0 auto 140px;

    display: grid;

    grid-template-columns:
        0.8fr 1.2fr;

    gap: 70px;

    align-items: center;
}

.map-copy > p:not(.section-tag) {
    margin-top: 25px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.9;
}

.map-button {
    display: inline-block;

    margin-top: 30px;

    padding: 15px 20px;

    background: var(--olive);

    color: white;

    text-decoration: none;

    font-size: 9px;

    font-weight: 700;

    transition: 0.3s;
}

.map-button:hover {
    background: var(--orange);

    transform: translateY(-2px);
}

.map-card {
    min-height: 430px;

    overflow: hidden;

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

.map-card iframe {
    width: 100%;
    height: 430px;

    border: 0;
}


/* WHATSAPP */

.whatsapp-button {
    position: fixed;

    right: 25px;
    bottom: 25px;

    width: 58px;
    height: 58px;

    z-index: 3000;

    display: flex;

    align-items: center;

    justify-content: center;

    border-radius: 50%;

    background: var(--olive);

    color: white;

    text-decoration: none;

    font-size: 10px;

    font-weight: 700;

    box-shadow:
        0 12px 30px rgba(0,0,0,0.18);

    transition: 0.3s;
}

.whatsapp-button:hover {
    transform:
        translateY(-5px)
        scale(1.05);

    background: var(--orange);
}


/* MODAL */

.modal {
    position: fixed;

    inset: 0;

    z-index: 5000;

    display: none;

    align-items: center;

    justify-content: center;

    padding: 25px;

    background:
        rgba(25,22,19,0.72);

    backdrop-filter: blur(8px);
}

.modal.show {
    display: flex;
}

.modal-card {
    position: relative;

    width:
        min(100%, 520px);

    padding: 50px;

    background: var(--cream);

    color: var(--text);
}

.modal-card h2 {
    font-family:
        'Cormorant Garamond',
        serif;

    font-size: 50px;

    font-weight: 500;

    line-height: 0.95;
}

.modal-card h2 em {
    display: block;

    color: var(--orange);
}

.modal-card > p:not(.section-tag) {
    margin-top: 22px;

    color: var(--muted);

    font-size: 12px;

    line-height: 1.8;
}

.modal-note {
    padding-top: 20px;

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

.modal-close {
    position: absolute;

    top: 18px;
    right: 20px;

    border: none;

    background: transparent;

    font-size: 28px;

    cursor: pointer;
}

.modal-button {
    margin-top: 28px;

    padding: 14px 24px;

    border: none;

    background: var(--orange);

    color: white;

    cursor: pointer;
}


/* FOOTER */

footer {
    padding:
        70px 35px 25px;

    background: var(--dark);

    color: var(--cream);
}

.footer-logo {
    max-width: var(--max);

    margin: auto;

    text-align: center;

    font-family:
        'Cormorant Garamond',
        serif;

    font-size:
        clamp(90px, 16vw, 230px);

    line-height: 0.8;

    letter-spacing: 15px;

    color:
        rgba(238,228,215,0.12);
}

.footer-bottom {
    max-width: var(--max);

    margin:
        60px auto 0;

    padding-top: 20px;

    display: grid;

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

    align-items: center;

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

.footer-bottom p {
    color: #8e857c;

    font-size: 7px;
}

.footer-bottom p:last-child {
    text-align: right;
}

.footer-bottom a {
    color: #cfc5ba;

    text-decoration: none;

    font-size: 8px;
}


/* REVEAL */

.reveal {
    opacity: 0;

    transform:
        translateY(35px);

    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}

.reveal.active {
    opacity: 1;

    transform:
        translateY(0);
}


/* TABLET */

@media (max-width: 950px) {

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

        grid-template-columns:
            auto 1fr;
    }

    .nav-left {
        display: none;
    }

    .logo {
        justify-self: start;
    }

    .nav-right {
        justify-self: end;
    }

    .about,
    .chef-section,
    .map-section {
        grid-template-columns: 1fr;

        gap: 60px;
    }

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

        gap: 25px;
    }

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

    .reservation-form {
        grid-template-columns:
            repeat(2, 1fr);
    }

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

        gap: 50px;
    }

}


/* MOBILE */

@media (max-width: 650px) {

    .navbar {
        height: 78px;
    }

    .logo {
        font-size: 28px;

        letter-spacing: 7px;
    }

    .nav-right > a {
        display: none;
    }

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

    .hero {
        padding:
            140px 25px 90px;

        text-align: center;
    }

    .hero h1 {
        font-size: 64px;
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-side-text,
    .hero-number {
        display: none;
    }

    .about,
    .menu-section,
    .chef-section,
    .gallery,
    .contact,
    .map-section {
        width:
            calc(100% - 40px);
    }

    .about-photo img,
    .chef-photo img {
        height: 450px;
    }

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

        gap: 20px;
    }

    .menu-tabs {
        grid-template-columns:
            repeat(2, 1fr);
    }

    .menu-item {
        grid-template-columns:
            35px 1fr auto;

        gap: 12px;
    }

    .signature-copy {
        padding:
            70px 25px;
    }

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

        grid-template-rows: auto;
    }

    .gallery-main {
        grid-row: auto;

        height: 350px;
    }

    .gallery-secondary,
    .gallery-third {
        height: 280px;
    }

    .reservation {
        background:
            linear-gradient(
                rgba(109,112,82,0.90),
                rgba(83,87,63,0.95)
            ),
            url("images/table.jpg")
            center / cover
            no-repeat;
    }

    .reservation-form {
        grid-template-columns: 1fr;

        padding: 25px;
    }

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

    .map-card,
    .map-card iframe {
        height: 350px;
        min-height: 350px;
    }

    .footer-bottom {
        grid-template-columns: 1fr;

        gap: 20px;

        text-align: center;
    }

    .footer-bottom p:last-child {
        text-align: center;
    }

}