/* =========================
   RESET
========================= */

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

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

:root {
    --bg: #efe2d3;
    --bg-soft: #e3d0b4;
    --panel: #f7f0e8;
    --beige: #f4eadb;
    --beige-deep: #d9c8ae;
    --ink: #1a120d;
    --ink-soft: #3a2d26;
    --bordeaux: #5f1d22;
    --bordeaux-deep: #42171b;
    --brown: #6b4134;
    --brown-soft: #8f5c46;
    --green: #3d5948;
    --green-deep: #243a2f;
    --white: #ffffff;
    --line: rgba(26, 18, 13, 0.18);
    --shadow: rgba(26, 18, 13, 0.18);
}

body {
    font-family: "Manrope", sans-serif;
    background: var(--bg);
    color: var(--ink);
    overflow-x: hidden;
}

body.modal-open {
    overflow: hidden;
}

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

button {
    cursor: pointer;
}

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

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

.container {
    width: min(1400px, calc(100% - 80px));
    margin: 0 auto;
}

.section {
    padding: 150px 0;
}

.eyebrow {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 700;
    text-transform: uppercase;
}


/* =========================
   PRELOADER
========================= */

.preloader {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--ink);
    color: var(--beige);

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

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

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

.preloader-logo {
    font-family: "Playfair Display", serif;
    font-size: 55px;
    letter-spacing: 8px;
    animation: loaderPulse 1.5s infinite alternate;
}

@keyframes loaderPulse {
    from {
        opacity: .3;
    }

    to {
        opacity: 1;
    }
}


/* =========================
   HEADER
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;

    color: #fff;

    transition:
        background .4s ease,
        color .4s ease,
        transform .4s ease;
}

.header.scrolled {
    background: rgba(26, 18, 13, .94);
    backdrop-filter: blur(15px);
}

.header-inner {
    min-height: 90px;

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

    gap: 35px;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 29px;
    letter-spacing: 4px;
    font-weight: 600;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
}

.desktop-nav a {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    position: relative;
}

.desktop-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;

    width: 0;
    height: 1px;

    background: currentColor;

    transition: width .3s ease;
}

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

.header-booking {
    border: 1px solid rgba(255,255,255,.5);
    background: transparent;
    color: var(--white);

    padding: 13px 20px;

    text-transform: uppercase;
    font-size: 10px;
    letter-spacing: 1.5px;

    transition: .3s ease;
}

.header-booking:hover {
    background: var(--white);
    color: var(--ink);
}

.burger {
    display: none;

    width: 44px;
    height: 44px;

    border: 0;
    background: transparent;

    position: relative;
}

.burger span {
    position: absolute;
    left: 8px;

    width: 28px;
    height: 1px;

    background: #fff;
}

.burger span:first-child {
    top: 17px;
}

.burger span:last-child {
    top: 26px;
}


/* =========================
   MOBILE MENU
========================= */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 2000;

    background: #171713;
    color: #fff;

    transform: translateX(100%);

    transition: transform .5s cubic-bezier(.77,0,.18,1);
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-inner {
    min-height: 100%;
    padding: 40px;

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

.mobile-close {
    position: absolute;
    top: 30px;
    right: 30px;

    background: transparent;
    border: 0;

    color: #fff;
    font-size: 42px;
    font-weight: 200;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.mobile-menu nav a {
    font-family: "Playfair Display", serif;
    font-size: 40px;
}

.mobile-booking {
    margin-top: 50px;
}


/* =========================
   BUTTONS
========================= */

.primary-button,
.outline-button,
.outline-dark-button {
    min-height: 52px;

    padding: 0 27px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid transparent;

    text-transform: uppercase;
    letter-spacing: 1.5px;

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

    transition:
        background .3s ease,
        color .3s ease,
        transform .3s ease;
}

.primary-button {
    background: var(--bordeaux);
    color: var(--white);
}

.primary-button:hover {
    background: var(--bordeaux-deep);
    transform: translateY(-2px);
}

.outline-button {
    border-color: rgba(255,255,255,.6);
    background: transparent;
    color: var(--white);
}

.outline-button:hover {
    background: var(--white);
    color: var(--ink);
}

.outline-dark-button {
    border-color: var(--ink);
    background: transparent;
    color: var(--ink);
}

.outline-dark-button:hover {
    background: var(--green);
    border-color: var(--green);
    color: var(--white);
}

.full-button {
    width: 100%;
}


/* =========================
   HERO
========================= */

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

    color: #fff;

    display: flex;
    align-items: center;

    overflow: hidden;
}

.hero-background,
.hero-background img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-background img {
    object-fit: cover;
    animation: heroZoom 15s ease-out forwards;
}

@keyframes heroZoom {
    from {
        transform: scale(1.08);
    }

    to {
        transform: scale(1);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0,0,0,.7),
            rgba(0,0,0,.25),
            rgba(0,0,0,.4)
        );
}

.hero-content {
    position: relative;
    z-index: 2;

    padding-top: 90px;
}

.hero-small {
    font-size: 11px;
    letter-spacing: 4px;
    font-weight: 700;

    margin-bottom: 20px;
}

.hero h1 {
    font-family: "Playfair Display", serif;
    font-size: clamp(90px, 15vw, 240px);
    line-height: .8;
    font-weight: 500;
    letter-spacing: -7px;
}

.hero-description {
    max-width: 500px;

    margin-top: 45px;

    font-size: 17px;
    line-height: 1.7;
    color: rgba(255,255,255,.85);
}

.hero-buttons {
    display: flex;
    gap: 12px;

    margin-top: 35px;
}

.scroll-down {
    position: absolute;
    bottom: 40px;
    right: 50px;

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

    gap: 13px;

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

.scroll-line {
    width: 1px;
    height: 65px;
    background: rgba(255,255,255,.7);
}


/* =========================
   INTRO
========================= */

.intro {
    background: #171713;
    color: #f3f0e9;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 80px;
}

.intro-label {
    font-size: 10px;
    letter-spacing: 3px;
    opacity: .5;
}

.intro-text {
    max-width: 900px;
}

.intro h2 {
    font-family: "Playfair Display", serif;
    font-size: clamp(50px, 6vw, 90px);
    font-weight: 400;
    line-height: 1;
    margin-bottom: 50px;
}

.intro h2 span {
    opacity: .45;
}

.intro p {
    max-width: 620px;

    font-size: 17px;
    line-height: 1.8;

    opacity: .7;

    margin-bottom: 20px;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 20px;

    margin-top: 20px;

    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

.text-link span {
    font-size: 20px;
    transition: transform .3s ease;
}

.text-link:hover span {
    transform: translateX(7px);
}


/* =========================
   SECTION HEADING
========================= */

.section-heading {
    display: grid;
    grid-template-columns: 1fr 3fr;
    gap: 80px;

    margin-bottom: 80px;
}

.section-number {
    font-size: 11px;
    letter-spacing: 3px;
    opacity: .4;
}

.section-heading h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(55px, 7vw, 105px);

    font-weight: 400;
    line-height: .95;

    margin-top: 18px;
}


/* =========================
   ABOUT
========================= */

.about {
    background: #f3f0e9;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 90px;
    align-items: center;
}

.about-image {
    overflow: hidden;
}

.about-image img {
    height: 700px;
    object-fit: cover;

    transition: transform 1s ease;
}

.about-image:hover img {
    transform: scale(1.04);
}

.about-content {
    max-width: 500px;
}

.large-text {
    font-family: "Playfair Display", serif;

    font-size: 37px;
    line-height: 1.2;

    margin-bottom: 35px;
}

.about-content p:not(.large-text) {
    font-size: 15px;
    line-height: 1.8;

    opacity: .65;

    margin-bottom: 22px;
}

.about-signature {
    font-family: "Playfair Display", serif;
    font-size: 55px;
    letter-spacing: 4px;
    margin-top: 60px;
}


/* =========================
   MENU
========================= */

.menu {
    background: #e9e5dc;
}

.menu-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;

    margin-bottom: 60px;
}

.filter-button {
    border: 1px solid rgba(23,23,19,.25);

    background: transparent;
    color: #171713;

    padding: 13px 20px;

    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    transition: .3s ease;
}

.filter-button:hover,
.filter-button.active {
    background: #171713;
    color: #fff;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 55px 25px;
}

.dish-card {
    min-width: 0;
}

.dish-image {
    position: relative;
    aspect-ratio: 1 / 1.08;

    overflow: hidden;
    background: #ddd;
}

.dish-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition: transform .8s ease;
}

.dish-card:hover .dish-image img {
    transform: scale(1.05);
}

.dish-view {
    position: absolute;
    right: 18px;
    bottom: 18px;

    width: 48px;
    height: 48px;

    border: 0;
    border-radius: 50%;

    background: #fff;
    color: #171713;

    font-size: 24px;

    transition: .3s ease;
}

.dish-view:hover {
    transform: rotate(90deg);
}

.dish-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;

    gap: 20px;

    padding-top: 20px;
}

.dish-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 27px;
    font-weight: 500;

    margin-bottom: 7px;
}

.dish-info p {
    max-width: 300px;

    font-size: 12px;
    line-height: 1.6;
    opacity: .55;
}

.dish-info strong {
    font-size: 14px;
    white-space: nowrap;
}

.add-dish {
    width: 100%;

    margin-top: 18px;

    border: 1px solid #171713;
    background: transparent;

    padding: 13px;

    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 9px;

    transition: .3s ease;
}

.add-dish:hover {
    background: #171713;
    color: #fff;
}

.menu-bottom {
    margin-top: 70px;
    text-align: center;
}

.custom-menu {
    margin-top: 40px;
}

.menu-category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 48px;
}

.menu-category-button {
    min-height: 46px;
    padding: 0 20px;
    border: 1px solid var(--brown);
    border-radius: 2px;
    background: var(--panel);
    color: var(--brown);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background .25s ease, color .25s ease, border-color .25s ease, transform .25s ease;
}

.menu-category-button:hover {
    border-color: var(--bordeaux);
    color: var(--bordeaux);
    transform: translateY(-2px);
}

.menu-category-button.active {
    border-color: var(--bordeaux);
    background: var(--bordeaux);
    color: var(--white);
    box-shadow: 0 8px 18px rgba(95, 29, 34, .2);
}

.custom-menu-section {
    margin-bottom: 70px;
}

.custom-menu-section h3 {
    margin-bottom: 28px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--line);
    color: var(--bordeaux);
    font-family: "Playfair Display", serif;
    font-size: clamp(32px, 4vw, 52px);
    font-weight: 400;
}

.custom-menu-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    width: 100%;
}

.custom-menu-card {
    min-width: 0;
    overflow: hidden;
    background: var(--panel);
    border: 1px solid rgba(26, 18, 13, .12);
    box-shadow: 0 12px 30px var(--shadow);
}

.custom-menu-card.no-image .custom-menu-card-content {
    min-height: 170px;
}

.custom-menu-card-content {
    padding: 22px;
}

.custom-menu-card h4 {
    min-height: 48px;
    color: var(--ink);
    font-family: "Playfair Display", serif;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.15;
}

.custom-menu-card p {
    min-height: 42px;
    margin-top: 12px;
    color: var(--ink-soft);
    font-size: 12px;
    line-height: 1.5;
    opacity: .75;
}

.custom-menu-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 20px;
    color: var(--brown);
    font-size: 12px;
}

.custom-menu-card-meta strong {
    color: var(--bordeaux);
    font-family: "Playfair Display", serif;
    font-size: 24px;
    font-weight: 500;
}


/* =========================
   QUOTE
========================= */

.quote-section {
    min-height: 700px;

    position: relative;

    color: #fff;

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

    overflow: hidden;
}

.quote-background,
.quote-background img {
    position: absolute;
    inset: 0;

    width: 100%;
    height: 100%;
}

.quote-background img {
    object-fit: cover;
}

.quote-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.6);
}

.quote-content {
    position: relative;
    z-index: 2;

    text-align: center;
}

.quote-mark {
    font-family: "Playfair Display", serif;
    font-size: 100px;
    line-height: .5;
    opacity: .5;
}

.quote-content blockquote {
    max-width: 900px;

    margin: 30px auto;

    font-family: "Playfair Display", serif;

    font-size: clamp(45px, 6vw, 85px);

    line-height: 1;
    font-weight: 400;
}

.quote-line {
    width: 60px;
    height: 1px;

    background: rgba(255,255,255,.5);

    margin: 35px auto 20px;
}

.quote-content span {
    font-size: 10px;
    letter-spacing: 4px;
}


/* =========================
   BANQUET
========================= */

.banquet {
    background: #f3f0e9;
}

.banquet-grid {
    display: grid;
    grid-template-columns: .9fr 1.1fr;

    gap: 100px;

    align-items: center;
}

.banquet-content h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(55px, 6vw, 90px);

    line-height: .95;
    font-weight: 400;

    margin: 25px 0 40px;
}

.banquet-content p {
    max-width: 520px;

    font-size: 15px;
    line-height: 1.8;

    opacity: .65;

    margin-bottom: 20px;
}

.banquet-content .primary-button {
    margin-top: 20px;
}

.banquet-images {
    position: relative;

    min-height: 700px;
}

.banquet-image-one {
    width: 80%;
    height: 580px;

    position: absolute;
    top: 0;
    right: 0;

    overflow: hidden;
}

.banquet-image-one img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banquet-image-two {
    width: 47%;
    height: 330px;

    position: absolute;
    bottom: 0;
    left: 0;

    overflow: hidden;

    border: 12px solid #f3f0e9;
}

.banquet-image-two img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* =========================
   GALLERY
========================= */

.gallery {
    background: var(--beige);
}

.gallery-carousel {
    display: grid;
    gap: 18px;
}

.gallery-stage {
    position: relative;
    overflow: hidden;
    background: #d8d1c6;
    height: 620px;
    border-radius: 18px;
}

.gallery-stage img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-caption {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: 4px;
    padding: 28px 32px;
    text-align: left;
    background: linear-gradient(180deg, transparent 0%, rgba(23, 23, 19, 0.55) 100%);
    color: #fff;
    pointer-events: none;
}

.gallery-caption span {
    font-family: "Playfair Display", serif;
    font-size: clamp(22px, 3vw, 36px);
    line-height: 1;
    letter-spacing: 3px;
}

.gallery-caption strong {
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;

    width: 52px;
    height: 52px;
    border: 0;
    border-radius: 50%;
    background: rgba(23, 23, 19, 0.7);
    color: #fff;
    font-size: 30px;
    line-height: 1;
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.gallery-arrow:hover {
    background: rgba(23, 23, 19, 0.9);
    transform: translateY(-50%) scale(1.04);
}

.gallery-prev {
    left: 22px;
}

.gallery-next {
    right: 22px;
}

.gallery-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border: 0;
    border-radius: 50%;
    background: rgba(23, 23, 19, 0.25);
    cursor: pointer;
    transition: background .25s ease, transform .25s ease;
}

.gallery-dot.active {
    background: #171713;
    transform: scale(1.18);
}

.gallery-dot:hover {
    background: rgba(23, 23, 19, 0.5);
}


/* =========================
   RESERVATION CTA
========================= */

.reservation-cta {
    padding: 110px 0;

    background: linear-gradient(135deg, var(--ink) 0%, var(--bordeaux) 100%);
    color: var(--white);
}

.reservation-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 50px;
}

.reservation-inner h2 {
    font-family: "Playfair Display", serif;

    font-size: clamp(60px, 7vw, 100px);

    line-height: .9;
    font-weight: 400;

    margin-top: 20px;
}

.light-button {
    background: var(--beige);
    color: var(--ink);

    min-width: 240px;
}

.light-button:hover {
    background: var(--white);
}


/* =========================
   CONTACTS
========================= */

.contacts {
    background: var(--panel);
}

.contacts-grid {
    display: grid;
    grid-template-columns: .7fr 1.3fr;

    gap: 100px;
}

.contact-info {
    display: flex;
    flex-direction: column;
}

.contact-block {
    padding: 28px 0;

    border-top: 1px solid rgba(23,23,19,.2);
}

.contact-block span {
    display: block;

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

    opacity: .45;

    margin-bottom: 12px;
}

.contact-block strong,
.contact-block a {
    font-family: "Playfair Display", serif;

    font-size: 25px;
    line-height: 1.4;

    font-weight: 400;
}

.contact-block a:hover {
    text-decoration: underline;
}

.contact-socials {
    display: flex;
    gap: 25px;

    margin-top: 30px;

    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.contact-socials a:hover {
    opacity: .5;
}

.map {
    min-height: 550px;
    background: #ddd;
}

.map iframe {
    width: 100%;
    height: 100%;
    min-height: 550px;

    border: 0;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: linear-gradient(180deg, var(--ink) 0%, var(--bordeaux-deep) 100%);
    color: var(--white);

    padding: 80px 0 30px;
}

.footer-top {
    display: flex;
    justify-content: space-between;

    gap: 50px;

    padding-bottom: 70px;

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

.footer-logo {
    font-family: "Playfair Display", serif;

    font-size: 50px;
    letter-spacing: 5px;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;

    justify-content: flex-end;

    gap: 25px;

    max-width: 600px;
}

.footer-nav a {
    font-size: 10px;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    opacity: .7;
}

.footer-nav a:hover {
    opacity: 1;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;

    padding-top: 25px;

    font-size: 9px;

    letter-spacing: 1px;

    opacity: .4;
}


/* =========================
   MODALS
========================= */

.modal {
    position: fixed;
    inset: 0;

    z-index: 5000;

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

    padding: 30px;

    visibility: hidden;
    opacity: 0;

    transition:
        opacity .3s ease,
        visibility .3s ease;
}

.modal.active {
    visibility: visible;
    opacity: 1;
}

.modal-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.7);

    backdrop-filter: blur(7px);
}

.dish-modal,
.booking-modal {
    position: relative;
    z-index: 2;

    width: min(1050px, 100%);

    max-height: 90vh;

    overflow-y: auto;

    background: var(--panel);
    color: var(--ink);

    transform: translateY(30px) scale(.98);

    transition: transform .4s ease;
}

.modal.active .dish-modal,
.modal.active .booking-modal {
    transform: translateY(0) scale(1);
}

.dish-modal {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.dish-modal-image {
    min-height: 600px;
}

.dish-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dish-modal-content {
    padding: 70px;

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

.dish-modal-content h2,
.booking-modal h2 {
    font-family: "Playfair Display", serif;

    font-size: 65px;

    line-height: .95;

    font-weight: 400;

    margin: 20px 0 30px;
}

.dish-modal-content p {
    max-width: 450px;

    font-size: 15px;
    line-height: 1.8;

    opacity: .65;
}

.dish-modal-bottom {
    display: flex;

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

    margin-top: 50px;

    gap: 30px;
}

.dish-modal-bottom strong {
    font-family: "Playfair Display", serif;
    font-size: 30px;
}

.modal-close {
    position: absolute;

    z-index: 10;

    right: 20px;
    top: 20px;

    width: 45px;
    height: 45px;

    border: 0;
    border-radius: 50%;

    background: var(--bordeaux);
    color: var(--white);

    font-size: 28px;
}

.booking-modal {
    padding: 70px;

    width: min(700px, 100%);
}

.booking-modal h2 {
    font-size: 70px;
}

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

.form-field {
    margin-bottom: 20px;
}

.form-field label {
    display: block;

    margin-bottom: 8px;

    font-size: 9px;

    text-transform: uppercase;
    letter-spacing: 1.5px;

    opacity: .55;
}

.form-field input:not([type="checkbox"]),
.form-field textarea,
.form-field select {
    width: 100%;

    border: 1px solid rgba(23,23,19,.25);

    background: transparent;

    padding: 15px;

    outline: none;

    color: #171713;

    font-size: 13px;
}

.form-field input:not([type="checkbox"]):focus,
.form-field textarea:focus,
.form-field select:focus {
    border-color: #171713;
}

.consent-block {
    display: grid;
    gap: 12px;
    margin: 8px 0 22px;
}

.consent-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 12px;
    line-height: 1.45;
    text-transform: none;
    letter-spacing: 0;
    opacity: 1;
    color: var(--ink);
}

.consent-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 1px;
    flex: 0 0 18px;
    accent-color: var(--bordeaux);
    cursor: pointer;
}

.consent-item a {
    color: var(--bordeaux);
    text-decoration: underline;
}

.form-field textarea {
    min-height: 100px;
    resize: vertical;
}


/* =========================
   CART
========================= */

.cart {
    position: fixed;
    inset: 0;

    z-index: 4500;

    pointer-events: none;
}

.cart.active {
    pointer-events: auto;
}

.cart-overlay {
    position: absolute;
    inset: 0;

    background: rgba(0,0,0,.55);

    opacity: 0;

    transition: opacity .4s ease;
}

.cart.active .cart-overlay {
    opacity: 1;
}

.cart-panel {
    position: absolute;

    top: 0;
    right: 0;

    width: min(520px, 100%);
    height: 100%;

    background: var(--panel);

    transform: translateX(100%);

    transition: transform .5s cubic-bezier(.77,0,.18,1);

    display: flex;
    flex-direction: column;
}

.cart.active .cart-panel {
    transform: translateX(0);
}

.cart-header {
    padding: 35px;

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

    border-bottom: 1px solid rgba(23,23,19,.15);
}

.cart-header h2 {
    font-family: "Playfair Display", serif;
    font-size: 40px;
    font-weight: 400;
}

.cart-close {
    border: 0;
    background: transparent;

    font-size: 35px;
}

.cart-items {
    flex: 1;

    overflow-y: auto;

    padding: 30px;
}

.cart-item {
    display: grid;
    grid-template-columns: 90px 1fr auto;

    gap: 15px;

    padding-bottom: 25px;
    margin-bottom: 25px;

    border-bottom: 1px solid rgba(23,23,19,.15);
}

.cart-item-image {
    width: 90px;
    height: 90px;

    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-item-info h3 {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-weight: 400;

    margin-bottom: 8px;
}

.cart-item-price {
    font-size: 12px;
    opacity: .55;
}

.quantity {
    display: flex;
    align-items: center;

    margin-top: 12px;
}

.quantity button {
    width: 28px;
    height: 28px;

    border: 1px solid rgba(23,23,19,.2);
    background: transparent;
}

.quantity span {
    width: 35px;
    text-align: center;

    font-size: 12px;
}

.cart-item-total {
    font-size: 13px;
    white-space: nowrap;
}

.cart-footer {
    padding: 30px;

    border-top: 1px solid rgba(23,23,19,.15);
}

.cart-total {
    display: flex;
    justify-content: space-between;

    margin-bottom: 20px;

    font-size: 13px;
}

.cart-total strong {
    font-family: "Playfair Display", serif;
    font-size: 28px;
}

.cart-empty {
    flex: 1;

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

    text-align: center;

    padding: 40px;
}

.cart-empty-icon {
    width: 65px;
    height: 65px;

    border: 1px solid rgba(23,23,19,.2);
    border-radius: 50%;

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

    font-size: 30px;

    margin-bottom: 20px;
}

.cart-empty p {
    font-family: "Playfair Display", serif;
    font-size: 25px;

    margin-bottom: 15px;
}


/* =========================
   GALLERY MODAL
========================= */

.gallery-modal {
    position: fixed;
    inset: 0;

    z-index: 6000;

    background: rgba(0,0,0,.96);

    display: none;

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

    padding: 70px;
}

.gallery-modal.active {
    display: flex;
}

.gallery-modal img {
    max-width: 90vw;
    max-height: 85vh;

    width: auto;
    object-fit: contain;
}

.gallery-close {
    position: absolute;
    top: 25px;
    right: 30px;

    border: 0;
    background: transparent;

    color: #fff;

    font-size: 45px;
}

.gallery-modal .gallery-prev,
.gallery-modal .gallery-next {
    position: absolute;

    top: 50%;

    transform: translateY(-50%);

    border: 0;
    background: transparent;

    color: #fff;

    font-size: 35px;
}

.gallery-modal .gallery-prev {
    left: 30px;
}

.gallery-modal .gallery-next {
    right: 30px;
}


/* =========================
   TOAST
========================= */

.toast {
    position: fixed;

    bottom: 30px;
    left: 50%;

    z-index: 9000;

    transform: translate(-50%, 100px);

    background: var(--ink);
    color: var(--white);

    padding: 15px 25px;

    font-size: 11px;
    letter-spacing: .5px;

    opacity: 0;

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

.toast.active {
    transform: translate(-50%, 0);
    opacity: 1;
}


/* =========================
   REVEAL
========================= */

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

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

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


/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1100px) {

    .container {
        width: min(100% - 50px, 1400px);
    }

    .desktop-nav {
        gap: 18px;
    }

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

    .about-grid,
    .banquet-grid {
        gap: 50px;
    }

    .section-heading {
        gap: 40px;
    }

    .contacts-grid {
        gap: 50px;
    }

}


@media (max-width: 800px) {

    .section {
        padding: 100px 0;
    }

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

    .desktop-nav,
    .header-booking {
        display: none;
    }

    .burger {
        display: block;
    }

    .header-inner {
        min-height: 75px;
    }

    .hero h1 {
        letter-spacing: -3px;
    }

    .hero-description {
        font-size: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .primary-button,
    .hero-buttons .outline-button {
        width: 100%;
        max-width: 300px;
    }

    .scroll-down {
        display: none;
    }

    .intro-grid,
    .about-grid,
    .banquet-grid,
    .contacts-grid {
        grid-template-columns: 1fr;
    }

    .intro-grid {
        gap: 40px;
    }

    .section-heading {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-bottom: 50px;
    }

    .about-image img {
        height: 500px;
    }

    .about-content {
        max-width: none;
    }

    .banquet-images {
        min-height: 550px;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 300px 300px 300px;
    }

    .gallery-large {
        grid-column: span 2;
        grid-row: span 1;
    }

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

    .reservation-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .dish-modal {
        grid-template-columns: 1fr;
        max-height: 90vh;
    }

    .dish-modal-image {
        min-height: 300px;
        max-height: 350px;
    }

    .dish-modal-content {
        padding: 40px;
    }

    .booking-modal {
        padding: 45px 25px;
    }

    .booking-modal h2 {
        font-size: 55px;
    }

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

}


@media (max-width: 550px) {

    .container {
        width: calc(100% - 30px);
    }

    .section {
        padding: 80px 0;
    }

    .hero-content {
        padding-top: 60px;
    }

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

    .hero-description {
        max-width: 330px;
        margin-top: 30px;
    }

    .intro h2 {
        font-size: 50px;
    }

    .section-heading h2 {
        font-size: 58px;
    }

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

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

    .menu-filters {
        overflow-x: auto;
        flex-wrap: nowrap;

        padding-bottom: 5px;
    }

    .filter-button {
        white-space: nowrap;
    }

    .about-image img {
        height: 430px;
    }

    .large-text {
        font-size: 30px;
    }

    .banquet-images {
        min-height: 430px;
    }

    .banquet-image-one {
        width: 85%;
        height: 380px;
    }

    .banquet-image-two {
        width: 55%;
        height: 220px;

        border-width: 7px;
    }

    .gallery-grid {
        display: grid;
        grid-template-columns: 1fr;
        grid-template-rows: repeat(5, 300px);
    }

    .gallery-large {
        grid-column: auto;
    }

    .quote-section {
        min-height: 550px;
    }

    .quote-content blockquote {
        font-size: 48px;
    }

    .reservation-inner h2 {
        font-size: 65px;
    }

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

    .footer-top {
        flex-direction: column;
    }

    .footer-nav {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .dish-modal-content h2 {
        font-size: 48px;
    }

    .dish-modal-bottom {
        flex-direction: column;
        align-items: flex-start;
    }

    .dish-modal-bottom .primary-button {
        width: 100%;
    }

    .gallery-modal {
        padding: 40px 20px;
    }

    .gallery-prev {
        left: 10px;
    }

    .gallery-next {
        right: 10px;
    }

}
/* =========================
   MENU CART BUTTON
========================= */
.menu-add-button {
    width: 100%;
    margin-top: 16px;
    padding: 12px 14px;
    border: 1px solid #5f1d22;
    border-radius: 0;
    background: #5f1d22;
    color: #fff;
    font: inherit;
    font-size: 12px;
    cursor: pointer;
    transition: .25s ease;
}

.menu-add-button:hover {
    background: #48161a;
    transform: translateY(-1px);
}

.checkout-modal-content {
    max-width: 560px;
}

.checkout-summary {
    margin: 20px 0;
    padding: 16px;
    background: #f5eee5;
    border-radius: 12px;
}

.checkout-total {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid rgba(0,0,0,.1);
    font-weight: 700;
}

.checkout-note {
    margin: 0 0 18px;
    font-size: 13px;
    opacity: .65;
}


/* =========================
   FLOATING CART BUTTON
========================= */
.floating-cart-button {
    position: fixed;
    right: 24px;
    bottom: 24px;
    z-index: 1000;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 18px;
    border: 0;
    border-radius: 999px;
    background: #5f1d22;
    color: #fff;
    box-shadow: 0 12px 30px rgba(0,0,0,.22);
    cursor: pointer;
    font: inherit;
}

.floating-cart-button b {
    min-width: 22px;
    height: 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    border-radius: 999px;
    background: #fff;
    color: #5f1d22;
    font-size: 11px;
}

@media (max-width: 600px) {
    .floating-cart-button {
        right: 14px;
        bottom: 14px;
        padding: 11px 15px;
    }
}
