:root {
    --brand-gold: #cfa85a;
    --brand-gold-strong: #e2bf7a;
    --brand-gold-text: #e6cb86;
    --brand-gold-gradient: linear-gradient(
        180deg,
        #feeb9b 0%,
        #feeb9b 57%,
        #be8930 59%,
        #976d28 70%,
        #e7b759 80%,
        #be8930 100%
    );
    --brand-burgundy: #b5153e;
    --brand-burgundy-hover: #9a1235;
    --brand-burgundy-active: #911132;
    --brand-burgundy-border: #88102f;
    --brand-ink: #120f0c;
    --brand-panel: rgba(18, 15, 12, 0.76);
    --hero-card-overlay: rgba(0, 0, 0, 0.5);
    --panel-hover-border: rgba(226, 191, 122, 0.28);
    --panel-hover-shadow: 0 1.35rem 3rem rgba(28, 20, 15, 0.16);
    --mobile-nav-offset: 5rem;
    --brand-light: #f4ede3;
    --brand-sand: #e8dece;
    --brand-text: #251b13;
    --brand-muted: #6f6256;
}

html {
    scroll-behavior: smooth;
}

html.lightbox-open,
body.lightbox-open,
html.menu-open,
body.menu-open {
    overflow: hidden;
}

body {
    font-family: "Source Sans 3", sans-serif;
    color: var(--brand-text);
    background-color: #f8f3eb;
}

h1,
h2,
h3 {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.02em;
}

.hero-title,
.section-title,
.offer-card h3,
.info-panel h2,
.feature-card h3,
.gallery-album-header h3,
.contact-panel h2,
.form-panel h2 {
    font-family: "Cormorant Garamond", serif;
    letter-spacing: 0.02em;
}

.fact-card strong,
.contact-item strong,
.hours-card strong,
.fact-label,
.offer-tag,
.contact-label,
.hero-panel-label,
.gallery-count,
.footer-title {
    font-family: "Cormorant Garamond", serif;
}

.site-navbar {
    background: rgba(10, 8, 6, 0.82);
    z-index: 1030;
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.18s ease, border-color 0.18s ease, backdrop-filter 0.18s ease;
}

.site-navbar.site-navbar-top {
    background: #000;
    backdrop-filter: none;
    border-bottom-color: transparent;
}

.is-ios .site-navbar {
    background: rgba(10, 8, 6, 0.94);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.is-ios .site-navbar.site-navbar-top {
    background: #000;
}

.navbar-brand {
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
    font-family: var(--bs-font-sans-serif);
    font-size: 1.9rem;
    font-weight: 700;
    letter-spacing: 0;
    color: var(--brand-gold-strong);
}

.brand-main {
    font-family: "Cormorant Garamond", serif;
    line-height: 1;
}

.brand-main,
.brand-sub {
    display: inline-block;
    color: var(--brand-gold-text);
    text-shadow: 0 1px 0 rgba(255, 244, 203, 0.2);
}

.brand-sub {
    font-family: "Bonheur Royale", cursive;
    font-size: 1.95rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.01em;
    opacity: 0.95;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .brand-main,
    .brand-sub {
        background: var(--brand-gold-gradient);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
        text-shadow: none;
    }
}

.nav-link {
    color: rgba(255, 255, 255, 0.82);
}

.nav-link-button {
    padding: var(--bs-nav-link-padding-y) var(--bs-nav-link-padding-x);
    border: 0;
    background: transparent;
    font: inherit;
}

.nav-link:hover,
.nav-link:focus,
.navbar-brand:hover,
.navbar-brand:focus {
    color: #fff;
}

.language-switcher {
    display: flex;
    flex: 0 0 auto;
}

.language-select {
    min-width: 4.75rem;
    min-height: 2.7rem;
    padding: 0.48rem 2.1rem 0.48rem 0.9rem;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    appearance: none;
    background-color: rgba(255, 255, 255, 0.06);
    background-image:
        linear-gradient(45deg, transparent 50%, currentColor 50%),
        linear-gradient(135deg, currentColor 50%, transparent 50%);
    background-position:
        calc(100% - 1rem) calc(50% - 0.12rem),
        calc(100% - 0.68rem) calc(50% - 0.12rem);
    background-size: 0.42rem 0.42rem, 0.42rem 0.42rem;
    background-repeat: no-repeat;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 700;
    line-height: 1.1;
    box-shadow: none;
}

.language-select:focus {
    border-color: rgba(226, 191, 122, 0.4);
    box-shadow: 0 0 0 0.2rem rgba(226, 191, 122, 0.14);
}

.language-select option {
    color: var(--brand-text);
}

.navbar-brand:hover .brand-main,
.navbar-brand:hover .brand-sub,
.navbar-brand:focus .brand-main,
.navbar-brand:focus .brand-sub {
    filter: brightness(1.05);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 1015;
    background: transparent;
    backdrop-filter: none;
    overscroll-behavior: contain;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.mobile-nav-overlay.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-nav-panel {
    margin-left: auto;
    display: inline-flex;
    flex-direction: column;
    align-items: flex-end;
    width: max-content;
    max-width: calc(100vw - 2rem);
    max-height: calc(100dvh - var(--mobile-nav-offset) - 1rem);
    padding: 1rem 1rem 1.1rem;
    background: rgba(255, 253, 249, 0.98);
    border: 1px solid rgba(37, 27, 19, 0.08);
    border-radius: 1.4rem;
    box-shadow: 0 1.25rem 2.8rem rgba(18, 15, 12, 0.24);
    backdrop-filter: blur(10px);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    will-change: transform, opacity;
    opacity: 0;
    transform: translateX(22px);
    transition:
        opacity 0.3s ease,
        transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.mobile-nav-panel::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.mobile-nav-overlay.is-open .mobile-nav-panel {
    opacity: 1;
    transform: none;
}

.mobile-nav-language {
    display: flex;
    justify-content: flex-end;
    width: 100%;
    margin-bottom: 0.8rem;
}

.mobile-nav-language .language-select {
    background-color: rgba(37, 27, 19, 0.04);
    border-color: rgba(37, 27, 19, 0.12);
    color: var(--brand-text);
}

.mobile-nav-list {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.65rem;
    width: max-content;
    max-width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.mobile-nav-item {
    display: flex;
    justify-content: flex-end;
    width: auto;
    max-width: 100%;
}

.mobile-nav-link,
.mobile-nav-button {
    color: var(--brand-text);
    font-size: 1.14rem;
    line-height: 1.35;
    padding: 0.42rem 1.25rem 0.42rem 0;
    white-space: nowrap;
    text-decoration: none;
}

.mobile-nav-button {
    border: 0;
    background: transparent;
    font: inherit;
    text-align: right;
}

.mobile-nav-link:hover,
.mobile-nav-link:focus,
.mobile-nav-button:hover,
.mobile-nav-button:focus {
    color: var(--brand-burgundy);
}

.mobile-nav-call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    align-self: flex-end;
    margin-top: 0.85rem;
    width: max-content;
    max-width: 100%;
    min-height: 3.1rem;
    padding: 0.8rem 1.25rem;
}

.btn-brand,
.btn-brand-gold {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    transition: transform 0.18s ease, filter 0.18s ease, box-shadow 0.18s ease;
    font-weight: 700;
}

.btn-brand::after,
.btn-brand-gold::after {
    content: "";
    position: absolute;
    inset: -20% auto -20% -32%;
    width: 28%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.28), transparent);
    transform: translateX(-220%) skewX(-22deg);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s ease, opacity 0.22s ease;
}

.btn-brand {
    --bs-btn-bg: var(--brand-burgundy);
    --bs-btn-border-color: var(--brand-burgundy);
    --bs-btn-color: #fff;
    --bs-btn-hover-bg: var(--brand-burgundy-hover);
    --bs-btn-hover-border-color: var(--brand-burgundy-active);
    --bs-btn-hover-color: #fff;
    --bs-btn-active-bg: var(--brand-burgundy-active);
    --bs-btn-active-border-color: var(--brand-burgundy-border);
    --bs-btn-active-color: #fff;
    background-color: var(--brand-burgundy);
    border-color: var(--brand-burgundy);
    box-shadow:
        inset 0 1px 0 rgba(255, 210, 220, 0.12),
        0 0.85rem 1.6rem rgba(73, 6, 24, 0.28);
}

.btn-brand:hover,
.btn-brand:focus-visible {
    color: #fff;
    background-color: var(--brand-burgundy-hover);
    border-color: var(--brand-burgundy-active);
    filter: brightness(1.02);
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 220, 228, 0.14),
        0 1rem 1.9rem rgba(73, 6, 24, 0.34);
}

.btn-brand:hover::after,
.btn-brand:focus-visible::after,
.btn-brand-gold:hover::after,
.btn-brand-gold:focus-visible::after {
    opacity: 0.75;
    transform: translateX(540%) skewX(-22deg);
}

.btn-brand:active {
    color: #fff !important;
    background-color: var(--brand-burgundy-active) !important;
    transform: translateY(0);
    filter: saturate(0.97) brightness(0.98);
    box-shadow: inset 0 2px 4px rgba(55, 5, 18, 0.24);
}

.btn-brand-gold {
    --bs-btn-bg: var(--brand-gold);
    --bs-btn-border-color: #b48733;
    --bs-btn-color: #1a130d;
    --bs-btn-hover-bg: var(--brand-gold-strong);
    --bs-btn-hover-border-color: #c3953f;
    --bs-btn-hover-color: #1a130d;
    --bs-btn-active-bg: #c89946;
    --bs-btn-active-border-color: #b48733;
    --bs-btn-active-color: #1a130d;
    background-color: var(--brand-gold);
    background-image: var(--brand-gold-gradient);
    border-color: #b48733;
    box-shadow:
        inset 0 1px 0 rgba(255, 246, 211, 0.35),
        0 0.75rem 1.5rem rgba(0, 0, 0, 0.18);
}

.btn-brand-gold:hover,
.btn-brand-gold:focus-visible {
    color: #1a130d;
    background-color: var(--brand-gold-strong);
    background-image: var(--brand-gold-gradient);
    border-color: #c3953f;
    filter: brightness(1.03);
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 246, 211, 0.45),
        0 1rem 1.85rem rgba(0, 0, 0, 0.22);
}

.btn-brand-gold:active {
    color: #1a130d !important;
    background-color: #c89946 !important;
    background-image: var(--brand-gold-gradient) !important;
    transform: translateY(0);
    filter: saturate(0.96) brightness(0.98);
    box-shadow: inset 0 2px 4px rgba(96, 67, 19, 0.16);
}

.nav-call-button {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    white-space: nowrap;
}

.nav-call-icon {
    width: 1.15rem;
    height: 1.15rem;
    flex: 0 0 auto;
    display: block;
    color: #0a0806;
}

.hero-section {
    position: relative;
    overflow: hidden;
    padding: 3rem 0 5rem;
    color: #fff;
    background: url("./images/hero/hero-bg.jpg") center center / cover no-repeat;
}

.is-ios-phone .hero-section {
    padding-top: 1.2rem;
}

.is-ios-tablet .hero-section {
    padding-top: 2.2rem;
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto -10% -20% auto;
    width: 22rem;
    height: 22rem;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(207, 168, 90, 0.28), rgba(207, 168, 90, 0));
    pointer-events: none;
}

.section-kicker {
    display: inline-block;
    margin-bottom: 1rem;
    font-family: "Bonheur Royale", cursive;
    font-size: 3.1rem;
    font-weight: 400;
    letter-spacing: 0.01em;
    text-transform: none;
    color: var(--brand-burgundy);
    line-height: 0.92;
}

.section-kicker-dark {
    color: var(--brand-burgundy);
}

.hero-title {
    max-width: 11ch;
    margin-bottom: 1.25rem;
    line-height: 0.95;
}

.hero-text,
.section-text {
    max-width: 42rem;
    font-size: 1.15rem;
    line-height: 1.7;
}

.hero-facts {
    margin-top: 2.5rem;
}

.fact-card {
    display: block;
    padding: 1.25rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1rem;
    background: var(--hero-card-overlay);
    box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.18);
}

.fact-card-link {
    color: #fff;
    text-decoration: none;
    transition:
        transform 0.18s ease,
        border-color 0.18s ease,
        background 0.18s ease,
        box-shadow 0.18s ease;
}

.fact-card-link:hover,
.fact-card-link:focus {
    color: #fff;
    border-color: rgba(226, 191, 122, 0.32);
    background: rgba(0, 0, 0, 0.56);
    box-shadow: 0 1.15rem 3rem rgba(0, 0, 0, 0.24);
}

.fact-card-link:focus-visible {
    outline: 2px solid rgba(226, 191, 122, 0.75);
    outline-offset: 3px;
}

.fact-card strong {
    display: block;
    margin-bottom: 0.2rem;
    font-size: 1.58rem;
    line-height: 1.15;
}

.fact-card p {
    color: rgba(255, 255, 255, 0.74);
}

.fact-label,
.offer-tag,
.contact-label,
.hero-panel-label {
    display: inline-block;
    margin-bottom: 0.5rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.fact-label,
.hero-panel-label {
    color: var(--brand-burgundy);
}

.hero-panel {
    position: relative;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 1.5rem;
    background: var(--hero-card-overlay);
}

.hero-image {
    display: block;
    width: min(100%, 19rem);
    margin: 0 auto 1.5rem;
    filter: drop-shadow(0 1.25rem 2rem rgba(0, 0, 0, 0.35));
    transform-origin: center center;
}

.is-ios .hero-image {
    filter: none;
    -webkit-filter: none;
}

.hero-image-spin {
    animation: hero-pizza-spin 30s linear infinite;
}

@keyframes hero-pizza-spin {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

@media (prefers-reduced-motion: reduce) {
    .hero-image-spin {
        animation: none;
    }
}

.hero-panel-content p {
    color: rgba(255, 255, 255, 0.76);
    line-height: 1.7;
}

.section-light {
    background:
        linear-gradient(180deg, #f8f3eb 0%, #f3eadf 100%);
}

.section-dark {
    background:
        linear-gradient(135deg, #17120e 0%, #0c0907 100%);
}

.section-gallery {
    background:
        linear-gradient(180deg, #17120e 0%, #0d0a08 100%);
}

.section-reviews {
    background:
        radial-gradient(circle at 85% 12%, rgba(181, 21, 62, 0.12), transparent 26rem),
        linear-gradient(180deg, #f4efe7 0%, #fffdf9 100%);
}

.menu-overlay {
    position: fixed;
    inset: 0;
    z-index: 1080;
    background: rgba(7, 5, 4, 0.6);
    backdrop-filter: blur(14px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.22s ease, visibility 0.22s ease;
}

.menu-overlay.is-open {
    opacity: 1;
    visibility: visible;
}

.menu-overlay__surface {
    position: relative;
    display: grid;
    grid-template-rows: minmax(0, 1fr);
    height: 100dvh;
    background:
        radial-gradient(circle at top right, rgba(207, 168, 90, 0.16), rgba(207, 168, 90, 0) 20rem),
        linear-gradient(180deg, #f7efe3 0%, #f2e7d8 100%);
}

.menu-overlay__controls {
    position: absolute;
    inset: 0 0 auto;
    z-index: 2;
    padding: 1rem 0 0;
    background: transparent;
    border-bottom: 0;
    backdrop-filter: none;
}

.menu-overlay__controls-inner {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
}

.menu-overlay__dropdown {
    position: relative;
    flex: 0 1 auto;
    max-width: calc(100% - 4.5rem);
}

.menu-overlay__dropdown-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid rgba(37, 27, 19, 0.12);
    border-radius: 999px;
    background: var(--brand-burgundy);
    box-shadow: 0 1rem 2rem rgba(73, 6, 24, 0.2);
    color: #fff;
    font-weight: 600;
    line-height: 1;
    white-space: nowrap;
    transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.menu-overlay__dropdown-toggle:hover,
.menu-overlay__dropdown-toggle:focus-visible,
.menu-overlay__dropdown.is-open .menu-overlay__dropdown-toggle {
    background: var(--brand-burgundy-hover);
    box-shadow: 0 0 0 0.25rem rgba(181, 21, 62, 0.12);
}

.menu-overlay__dropdown-toggle span[data-menu-label] {
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-overlay__dropdown-icon {
    flex: 0 0 auto;
    width: 0.65rem;
    height: 0.65rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    transition: transform 0.18s ease;
}

.menu-overlay__dropdown.is-open .menu-overlay__dropdown-icon {
    transform: rotate(-135deg) translateY(-1px);
}

.menu-overlay__dropdown-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    right: 0;
    z-index: 3;
    display: none;
    min-width: 100%;
    max-height: var(--menu-dropdown-max-height, min(24rem, calc(100dvh - 9rem)));
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.45rem;
    border: 1px solid rgba(37, 27, 19, 0.1);
    border-radius: 1rem;
    background: rgba(255, 253, 249, 0.98);
    box-shadow: 0 1.2rem 2.5rem rgba(18, 15, 12, 0.18);
}

.menu-overlay__dropdown-menu::-webkit-scrollbar {
    width: 0;
    height: 0;
    display: none;
}

.menu-overlay__dropdown.is-open .menu-overlay__dropdown-menu {
    display: grid;
}

.menu-overlay__dropdown-option {
    width: 100%;
    padding: 0.7rem 0.85rem;
    border: 0;
    border-radius: 0.8rem;
    background: transparent;
    color: var(--brand-text);
    font-weight: 600;
    text-align: left;
    white-space: nowrap;
    transition: background 0.16s ease, color 0.16s ease;
}

.menu-overlay__dropdown-option:hover,
.menu-overlay__dropdown-option:focus-visible {
    background: var(--brand-burgundy);
    color: #fff;
}

.menu-overlay__dropdown-option.is-active {
    background: rgba(181, 21, 62, 0.12);
    color: var(--brand-burgundy);
}

.menu-overlay__close {
    flex: 0 0 auto;
    width: 3rem;
    height: 3rem;
    border: 1px solid rgba(37, 27, 19, 0.12);
    border-radius: 999px;
    background: var(--brand-burgundy);
    color: #fff;
    font-size: 1.75rem;
    line-height: 1;
    box-shadow: 0 1rem 2rem rgba(73, 6, 24, 0.2);
    transition: transform 0.18s ease, background 0.18s ease;
}

.menu-overlay__close:hover,
.menu-overlay__close:focus-visible {
    transform: translateY(-1px);
    background: var(--brand-burgundy-hover);
}

.menu-overlay__body {
    min-height: 0;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 3rem;
}

.menu-overlay__hero {
    position: relative;
    min-height: clamp(20rem, 42vw, 29rem);
    overflow: hidden;
    margin-bottom: 1.35rem;
    background: #1a130d;
}

.menu-overlay__hero-slide,
.menu-overlay__hero-shade {
    position: absolute;
    inset: 0;
}

.menu-overlay__hero-slide {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.menu-overlay__hero-slide--one {
    background-image: url("./images/menu/hero-1.jpg");
    animation-name: menu-hero-fade-1;
}

.menu-overlay__hero-slide--two {
    background-image: url("./images/menu/hero-2.jpg");
    animation-name: menu-hero-fade-2;
}

.menu-overlay__hero-shade {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.72) 0%,
        rgba(0, 0, 0, 0.48) 20%,
        rgba(0, 0, 0, 0) 58%
    );
}

.menu-overlay__hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: inherit;
    padding-top: 1.9rem;
    padding-bottom: 3.75rem;
}

.menu-overlay__hero-brand {
    display: inline-grid;
    grid-template-areas: "stack";
    align-self: flex-start;
    font-size: 1.9rem;
    line-height: 1;
}

.menu-overlay__hero-brand-outline,
.menu-overlay__hero-brand-fill {
    grid-area: stack;
    display: inline-flex;
    align-items: baseline;
    gap: 0.45rem;
}

.menu-overlay__hero-brand-outline .brand-main,
.menu-overlay__hero-brand-outline .brand-sub {
    background: none !important;
    color: #000 !important;
    -webkit-text-fill-color: #000 !important;
    -webkit-text-stroke: 0.85px rgba(0, 0, 0, 0.9);
    paint-order: stroke fill;
    text-shadow: none;
}

.menu-overlay__hero-brand-fill {
    position: relative;
    z-index: 1;
}

.menu-overlay__hero-copy {
    max-width: 34rem;
    margin-top: auto;
}

.menu-overlay__title {
    margin-bottom: 0.65rem;
    font-size: clamp(3rem, 6vw, 5.5rem);
    line-height: 0.9;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.85);
    paint-order: stroke fill;
    text-shadow:
        -1px 0 0 rgba(0, 0, 0, 0.85),
        1px 0 0 rgba(0, 0, 0, 0.85),
        0 -1px 0 rgba(0, 0, 0, 0.85),
        0 1px 0 rgba(0, 0, 0, 0.85);
}

.menu-overlay__hero-lead {
    max-width: 34rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(1.05rem, 1.8vw, 1.35rem);
    line-height: 1.7;
    -webkit-text-stroke: 0.5px rgba(0, 0, 0, 0.82);
    paint-order: stroke fill;
    text-shadow:
        -1px 0 0 rgba(0, 0, 0, 0.82),
        1px 0 0 rgba(0, 0, 0, 0.82),
        0 -1px 0 rgba(0, 0, 0, 0.82),
        0 1px 0 rgba(0, 0, 0, 0.82);
}

.menu-sections {
    display: grid;
    gap: 1rem;
}

.menu-section {
    padding: 1.35rem;
    border: 1px solid rgba(37, 27, 19, 0.08);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 1rem 2rem rgba(52, 37, 23, 0.06);
    scroll-margin-top: 1rem;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease,
        background 0.24s ease;
}

.menu-section__header {
    margin-bottom: 1.15rem;
}

.menu-section__title {
    margin-bottom: 0.35rem;
    font-size: clamp(1.9rem, 2vw, 2.35rem);
    line-height: 0.95;
}

.menu-section__note {
    color: var(--brand-muted);
    font-size: 0.96rem;
    line-height: 1.6;
}

.menu-section__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.95rem 1.25rem;
}

.menu-item {
    margin: -0.35rem -0.45rem 0;
    padding: 0.35rem 0.45rem 0.4rem;
    border-radius: 0.9rem;
    transition: background 0.18s ease, transform 0.18s ease;
}

.menu-item__head {
    display: flex;
    align-items: baseline;
    gap: 0.7rem;
}

.menu-item__title {
    margin: 0;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.35;
}

.menu-item__line {
    flex: 1 1 auto;
    min-width: 1.5rem;
    height: 2px;
    margin-bottom: 0.35rem;
    background-image: radial-gradient(circle, rgba(37, 27, 19, 0.3) 1px, transparent 1.5px);
    background-size: 0.55rem 2px;
    background-repeat: repeat-x;
    transition: opacity 0.18s ease;
}

.menu-item__price {
    flex: 0 0 auto;
    color: var(--brand-burgundy);
    font-size: 0.98rem;
    font-weight: 700;
    white-space: nowrap;
    transition: color 0.18s ease, transform 0.18s ease;
}

.menu-item__description {
    margin: 0.35rem 0 0;
    color: var(--brand-muted);
    font-size: 0.96rem;
    line-height: 1.65;
}

.menu-item:hover,
.menu-item:focus-within {
    background: rgba(181, 21, 62, 0.04);
}

.menu-item:hover .menu-item__price,
.menu-item:focus-within .menu-item__price {
    color: var(--brand-burgundy-hover);
    transform: translateX(-1px);
}

.menu-item:hover .menu-item__line,
.menu-item:focus-within .menu-item__line {
    opacity: 0.82;
}

.menu-note-card {
    grid-column: 1 / -1;
    padding: 1rem 1.05rem;
    border-radius: 1rem;
    background: rgba(181, 21, 62, 0.06);
    border: 1px solid rgba(181, 21, 62, 0.1);
}

.menu-note-card p {
    margin: 0;
    color: var(--brand-muted);
    font-size: 0.95rem;
    line-height: 1.7;
    white-space: pre-line;
}

.menu-slideshow-card {
    overflow: hidden;
    border: 1px solid rgba(37, 27, 19, 0.08);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.78);
    box-shadow: 0 1rem 2rem rgba(52, 37, 23, 0.06);
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease;
}

.menu-section:hover,
.menu-section:focus-within,
.menu-slideshow-card:hover,
.menu-slideshow-card:focus-within {
    transform: translateY(-4px);
    border-color: rgba(226, 191, 122, 0.24);
    box-shadow: 0 1.35rem 2.7rem rgba(52, 37, 23, 0.12);
}

.menu-slideshow {
    position: relative;
    aspect-ratio: 16 / 6;
    min-height: 12rem;
    overflow: hidden;
    background: #1a130d;
}

.menu-slideshow__image {
    position: absolute;
    inset: 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0;
    animation-duration: 10s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.menu-slideshow__image--one {
    animation-name: menu-hero-fade-1;
}

.menu-slideshow__image--two {
    animation-name: menu-hero-fade-2;
}

@keyframes menu-hero-fade-1 {
    0% { opacity: 1; }
    45% { opacity: 1; }
    50% { opacity: 0; }
    95% { opacity: 0; }
    100% { opacity: 1; }
}

@keyframes menu-hero-fade-2 {
    0% { opacity: 0; }
    45% { opacity: 0; }
    50% { opacity: 1; }
    95% { opacity: 1; }
    100% { opacity: 0; }
}

@media (prefers-reduced-motion: reduce) {
    .menu-overlay__hero-slide,
    .menu-slideshow__image {
        animation: none;
    }

    .reveal-on-scroll {
        opacity: 1 !important;
        transform: none !important;
        filter: none !important;
        transition: none !important;
    }

    .btn-brand::after,
    .btn-brand-gold::after {
        display: none;
    }

    .menu-overlay__hero-slide--one {
        opacity: 1;
    }

    .menu-overlay__hero-slide--two {
        opacity: 0;
    }

    .menu-slideshow__image--one {
        opacity: 1;
    }

    .menu-slideshow__image--two {
        opacity: 0;
    }
}

.py-xl-6 {
    padding-top: 5.5rem !important;
    padding-bottom: 5.5rem !important;
}

.reveal-on-scroll {
    opacity: 0;
    transform: translateY(24px) scale(0.985);
    filter: saturate(0.97) blur(1px);
    transition:
        opacity 0.74s ease,
        transform 0.82s cubic-bezier(0.19, 1, 0.22, 1),
        filter 0.74s ease;
    transition-delay: 0ms;
}

.reveal-on-scroll.is-visible {
    opacity: 1;
    transform: none;
    filter: none;
    transition-delay: var(--reveal-delay, 0ms);
}

.is-ios .reveal-on-scroll,
.is-ios .reveal-on-scroll.is-visible {
    filter: none;
}

.section-title {
    margin-bottom: 1rem;
}

.offer-card,
.hero-panel,
.fact-card,
.info-panel,
.feature-card,
.gallery-album,
.review-panel,
.review-card,
.contact-panel,
.form-panel {
    border-radius: 1.25rem;
    transition:
        transform 0.24s ease,
        box-shadow 0.24s ease,
        border-color 0.24s ease,
        background 0.24s ease;
}

.offer-card {
    overflow: hidden;
}

.offer-card:hover,
.offer-card:focus-within,
.hero-panel:hover,
.hero-panel:focus-within,
.fact-card:hover,
.fact-card:focus-within,
.info-panel:hover,
.info-panel:focus-within,
.feature-card:hover,
.feature-card:focus-within,
.gallery-album:hover,
.gallery-album:focus-within,
.review-panel:hover,
.review-panel:focus-within,
.review-card:hover,
.review-card:focus-within,
.contact-panel:hover,
.contact-panel:focus-within,
.form-panel:hover,
.form-panel:focus-within {
    transform: translateY(-4px);
    border-color: var(--panel-hover-border);
    box-shadow: var(--panel-hover-shadow) !important;
}

.offer-image {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.offer-tag {
    color: var(--brand-burgundy);
}

.info-panel {
    padding: 2rem;
    background: #fffdf9;
    border: 1px solid rgba(27, 20, 13, 0.08);
    box-shadow: 0 1rem 2.5rem rgba(44, 31, 21, 0.07);
}

.feature-card {
    height: 100%;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.75);
    border: 1px solid rgba(27, 20, 13, 0.08);
}

.feature-card p {
    color: var(--brand-muted);
    line-height: 1.7;
}

.gallery-album {
    height: 100%;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 1.25rem 3rem rgba(0, 0, 0, 0.18);
}

.gallery-album-header {
    margin-bottom: 1.25rem;
}

.gallery-album-header h3 {
    color: #fff;
}

.gallery-album-header p,
.gallery-hint {
    margin-top: 1rem;
    color: rgba(255, 255, 255, 0.68);
}

.gallery-count {
    display: inline-block;
    margin-bottom: 0.8rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-burgundy);
}

.gallery-preview-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: minmax(0, 1.25fr) minmax(0, 1fr);
    grid-template-rows: repeat(2, 9rem);
}

.gallery-tile {
    display: block;
    overflow: hidden;
    border-radius: 1rem;
    background: #17120e;
    box-shadow: 0 0.85rem 2rem rgba(0, 0, 0, 0.18);
}

.gallery-tile-wide {
    grid-row: 1 / span 2;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.22s ease, filter 0.22s ease;
}

.gallery-tile:hover img,
.gallery-tile:focus-visible img {
    transform: scale(1.04);
    filter: brightness(1.04);
}

.gallery-hidden {
    display: none;
}

.pswp__top-bar {
    background: rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(6px);
}

.review-panel {
    padding: 2rem;
    border: 1px solid rgba(37, 27, 19, 0.08);
    border-radius: 1.5rem;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 1rem 2.5rem rgba(44, 31, 21, 0.07);
}

.review-score-card {
    display: grid;
    gap: 0.25rem;
    margin-top: 1.7rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background: #17120e;
    color: #fff;
}

.review-score-label,
.review-score-count,
.review-card-date,
.review-card-header p {
    color: var(--brand-muted);
    font-size: 0.95rem;
}

.review-score-card .review-score-label,
.review-score-card .review-score-count {
    color: rgba(255, 255, 255, 0.68);
}

.review-score-card strong {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    line-height: 1;
}

.review-stars {
    color: var(--brand-gold-strong);
    letter-spacing: 0.1em;
}

.review-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.75rem;
    margin-top: 1rem;
}

.review-actions .btn {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.85rem;
    font-weight: 800;
}

.review-carousel {
    position: relative;
}

.review-carousel-controls {
    display: flex;
    justify-content: flex-end;
    gap: 0.6rem;
    margin-bottom: 1rem;
}

.review-carousel-button {
    width: 2.75rem;
    height: 2.75rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(181, 21, 62, 0.22);
    border-radius: 999px;
    background: var(--brand-burgundy);
    color: #fff;
    box-shadow: 0 0.85rem 1.8rem rgba(80, 25, 31, 0.18);
    transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.review-carousel-button svg {
    width: 1.1rem;
    height: 1.1rem;
}

.review-carousel-button:hover,
.review-carousel-button:focus-visible {
    background: var(--brand-burgundy-hover);
    transform: translateY(-2px);
}

.review-carousel-button:disabled {
    opacity: 0.35;
    cursor: not-allowed;
    transform: none;
}

.review-grid {
    display: flex;
    align-items: stretch;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.25rem;
    padding: 0.25rem 0.25rem 1.25rem;
    margin-inline: -0.25rem;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.review-grid::-webkit-scrollbar {
    display: none;
}

.review-card-wrap {
    flex: 0 0 min(100%, 22rem);
    display: flex;
    scroll-snap-align: start;
}

.review-card {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 1.35rem;
    border: 1px solid rgba(37, 27, 19, 0.08);
    border-radius: 1.35rem;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 1rem 2rem rgba(44, 31, 21, 0.06);
}

@media (min-width: 768px) {
    .review-card-wrap {
        flex-basis: calc((100% - 1rem) / 2);
    }
}

@media (min-width: 1400px) {
    .review-card-wrap {
        flex-basis: calc((100% - 2rem) / 3);
    }
}

.review-card-header {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1rem;
}

.review-card-header h3 {
    color: #231d18;
}

.review-card-rating {
    flex: 0 0 auto;
    align-self: flex-start;
    padding: 0.3rem 0.55rem;
    border-radius: 999px;
    background: rgba(181, 21, 62, 0.1);
    color: var(--brand-burgundy);
    font-weight: 800;
}

.review-card-text {
    color: #3b332d;
    font-size: 1.08rem;
    line-height: 1.7;
}

.review-card-date {
    margin-top: auto;
}

.contact-panel {
    padding: 2rem;
    border-radius: 1.5rem;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-list {
    display: grid;
    gap: 1rem;
    margin: 2rem 0;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.95rem;
    padding: 1rem 1.15rem;
    border-radius: 1rem;
    color: #fff;
    text-decoration: none;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: background 0.2s ease, border-color 0.2s ease;
}

.contact-item:hover,
.contact-item:focus {
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(226, 191, 122, 0.35);
}

.contact-item-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.8rem;
    height: 2.8rem;
    flex: 0 0 2.8rem;
    border-radius: 999px;
    background: rgba(0, 0, 0, 0.22);
    border: 1px solid rgba(226, 191, 122, 0.18);
    box-shadow:
        inset 0 1px 0 rgba(255, 244, 203, 0.08),
        0 0.35rem 0.9rem rgba(0, 0, 0, 0.16);
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-item-icon svg {
    width: 1.35rem;
    height: 1.35rem;
    display: block;
    filter:
        drop-shadow(0 1px 0 rgba(255, 244, 203, 0.18))
        drop-shadow(0 1px 1px rgba(0, 0, 0, 0.28));
}

.contact-item-copy {
    display: grid;
    gap: 0.15rem;
    min-width: 0;
}

.contact-item:hover .contact-item-icon,
.contact-item:focus .contact-item-icon {
    background: rgba(0, 0, 0, 0.3);
    border-color: rgba(226, 191, 122, 0.34);
    transform: translateY(-1px);
    box-shadow:
        inset 0 1px 0 rgba(255, 244, 203, 0.12),
        0 0.45rem 1rem rgba(0, 0, 0, 0.22);
}

.hours-card {
    display: grid;
    gap: 0.9rem;
    padding: 1.25rem;
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.85);
}

.contact-share-button {
    width: 100%;
    margin-top: 1rem;
}

.form-panel {
    padding: 2rem;
    background: #fffdf9;
    box-shadow: 0 1.2rem 3rem rgba(0, 0, 0, 0.12);
}

.form-control {
    border-color: rgba(27, 20, 13, 0.14);
    padding-block: 0.9rem;
}

.form-control:focus {
    border-color: rgba(207, 168, 90, 0.65);
    box-shadow: 0 0 0 0.25rem rgba(207, 168, 90, 0.18);
}

.site-footer {
    background: #0a0806;
    color: rgba(255, 255, 255, 0.72);
}

.footer-title {
    color: var(--brand-gold-text);
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-shadow: 0 1px 0 rgba(255, 244, 203, 0.2);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
    .footer-title {
        background: var(--brand-gold-gradient);
        background-clip: text;
        -webkit-background-clip: text;
        color: transparent;
        -webkit-text-fill-color: transparent;
        text-shadow: none;
    }
}

.footer-text,
.footer-link {
    color: rgba(255, 255, 255, 0.72);
}

.footer-credit {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.56);
}

.footer-link {
    text-decoration: none;
}

.footer-link-brand {
    color: var(--brand-burgundy);
}

.footer-link-brand:hover,
.footer-link-brand:focus {
    color: #cf3b63;
}

.footer-link:hover,
.footer-link:focus {
    color: var(--brand-gold-strong);
}

.share-modal {
    position: fixed;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 1rem;
    background: rgba(14, 10, 8, 0.52);
    z-index: 1100;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.24s ease;
}

.share-modal.is-visible {
    opacity: 1;
    pointer-events: auto;
}

.share-modal__dialog {
    width: min(25rem, calc(100vw - 2rem));
    max-height: calc(100dvh - 2rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    padding: 1.2rem;
    border-radius: 1.25rem;
    background: #fff;
    color: #1c1714;
    box-shadow: 0 1.5rem 4rem rgba(14, 10, 8, 0.35);
    transform: translateY(1rem) scale(0.98);
    transition: transform 0.24s ease;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
}

.share-modal__dialog::-webkit-scrollbar {
    display: none;
}

.share-modal.is-visible .share-modal__dialog {
    transform: translateY(0) scale(1);
}

.share-modal__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.share-modal__title {
    font-family: "Source Sans 3", sans-serif;
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.12em;
    color: #111;
}

.share-modal__close {
    width: 2.2rem;
    height: 2.2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #111;
    transition: color 0.18s ease, transform 0.18s ease;
}

.share-modal__close:hover,
.share-modal__close:focus {
    color: var(--brand-burgundy);
    transform: scale(1.05);
}

.share-modal__close span {
    font-size: 1.65rem;
    line-height: 1;
}

.share-modal__body {
    display: grid;
    justify-items: center;
    gap: 1.15rem;
    padding-top: 1.4rem;
    text-align: center;
}

.share-modal__qr {
    width: min(15.5rem, 74vw);
    height: auto;
    display: block;
    border-radius: 0.75rem;
}

.share-modal__text {
    max-width: 19rem;
    font-size: 1rem;
    line-height: 1.45;
    color: #5f5750;
}

.share-modal__actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.share-modal__actions .btn {
    min-height: 3rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.8rem;
    font-weight: 800;
}

.share-modal__feedback {
    min-height: 1.25rem;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--brand-burgundy);
}

.share-modal__feedback[hidden] {
    display: none;
}

html.share-modal-open,
body.share-modal-open {
    overflow: hidden;
}

.cash-notice {
    position: fixed;
    left: 50%;
    bottom: 1rem;
    width: min(24rem, calc(100vw - 2rem));
    padding: 1rem 1rem 0.9rem;
    border: 1px solid rgba(226, 191, 122, 0.22);
    border-radius: 1rem;
    background: rgba(181, 21, 62, 0.96);
    box-shadow: 0 1.1rem 2.8rem rgba(14, 10, 8, 0.32);
    color: #f7f0e7;
    z-index: 1022;
    opacity: 0;
    transform: translate(-50%, 1.25rem);
    pointer-events: none;
    transition: opacity 0.24s ease, transform 0.24s ease;
    text-align: center;
}

.cash-notice.is-visible {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
}

.cash-notice-title {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    padding-inline: 1.1rem 1.75rem;
    font-family: "Source Sans 3", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    color: #fff;
}

.cash-notice-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 1.9rem;
    height: 1.9rem;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--brand-burgundy);
    box-shadow: 0 0.4rem 0.95rem rgba(14, 10, 8, 0.16);
    flex: 0 0 auto;
    animation: cash-notice-icon-blink 6s steps(1, end) infinite;
}

.cash-notice-icon svg {
    width: 1.4rem;
    height: 1.4rem;
    fill: currentColor;
}

@keyframes cash-notice-icon-blink {
    0%,
    49.999% {
        opacity: 1;
    }

    50%,
    100% {
        opacity: 0;
    }
}

.cash-notice-text {
    font-size: 0.98rem;
    line-height: 1.45;
    color: rgba(247, 240, 231, 0.9);
}

.cash-notice-close {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    width: 2rem;
    height: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #fff;
    transition: color 0.18s ease, transform 0.18s ease;
}

.cash-notice-close:hover,
.cash-notice-close:focus {
    color: rgba(255, 255, 255, 0.82);
    transform: scale(1.04);
}

.cash-notice-close span {
    font-size: 1.4rem;
    line-height: 1;
}

@media (min-width: 992px) {
    .mobile-nav-overlay {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        padding-top: 2rem;
    }

    .site-navbar .navbar-toggler {
        position: relative;
        z-index: 1026;
    }

    .mobile-nav-overlay {
        inset: var(--mobile-nav-offset) 0 0 0;
        display: flex;
        align-items: flex-start;
        justify-content: flex-end;
        padding: 0 1rem 1rem;
    }

    .hero-title {
        max-width: none;
        font-size: clamp(3rem, 10vw, 5rem);
    }

    .hero-panel,
    .contact-panel,
    .form-panel,
    .info-panel {
        padding: 1.5rem;
    }

    .navbar-brand {
        gap: 0.35rem;
        font-size: 1.7rem;
    }

    .brand-sub {
        font-size: 1.75rem;
    }

    .section-kicker {
        font-size: 2.6rem;
    }

    .gallery-preview-grid {
        grid-template-rows: repeat(2, 8rem);
    }

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

@media (max-width: 767.98px) and (orientation: portrait) {
    .hero-section .col-lg-5 {
        order: -1;
    }

    .hero-section .col-lg-7 {
        order: 0;
    }
}

@media (max-width: 575.98px) {
    .hero-text,
    .section-text {
        font-size: 1rem;
    }

    .btn-lg {
        width: 100%;
    }

    .mobile-nav-call.btn-lg {
        width: auto;
        max-width: 100%;
    }

    .hours-card .d-flex {
        flex-direction: column;
    }

    .gallery-preview-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        grid-template-rows: 12rem 7rem 7rem;
    }

    .gallery-tile-wide {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .menu-overlay__controls-inner {
        align-items: center;
    }

    .menu-overlay__title {
        font-size: 2.85rem;
    }

    .menu-overlay__hero-content {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
    }

    .menu-overlay__hero-brand {
        font-size: 1.7rem;
    }

    .menu-overlay__hero-brand-outline,
    .menu-overlay__hero-brand-fill {
        gap: 0.35rem;
    }

    .menu-overlay__hero-lead {
        font-size: 0.96rem;
    }

    .menu-overlay__dropdown {
        max-width: calc(100% - 4.5rem);
    }

    .menu-section {
        padding: 1.1rem;
    }

    .menu-section__header {
    }

    .menu-item__head {
        align-items: flex-start;
    }

    .menu-item__line {
        margin-top: 0.62rem;
    }

    .cash-notice {
        left: 50%;
        bottom: 0.75rem;
        width: calc(100vw - 1.5rem);
    }
}
