:root {
    /* White/cream editorial base (like your reference) */
    --bg: #fbf4e6;
    --paper: #ffffff;
    --ink: #151515;
    --muted: rgba(21, 21, 21, .70);

    /* Logo colors */
    --burgundy: #7a0e1a;
    --amber: #f6b73c;
    --amber2: #ffe1a0;
    --forest: #0f3d2e;

    /* Soft card greens (reference UI vibe) */
    --sage: #dfe7cc;
    --sage2: #cfdab6;
    --mint: #e9f0dd;

    --border: rgba(21, 21, 21, .10);
    --shadow: 0 18px 60px rgba(15, 15, 15, .10);
    --radius: 22px;
}

html,
body {
    height: 100%;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(900px 520px at 12% 12%, rgba(246, 183, 60, .22), transparent 62%),
        radial-gradient(900px 520px at 88% 14%, rgba(122, 14, 26, .12), transparent 60%),
        radial-gradient(900px 520px at 55% 88%, rgba(15, 61, 46, .10), transparent 60%),
        var(--bg);
    overflow-x: hidden;
}

.container-xxl {
    max-width: 1180px;
}

.display-font {
    font-family: "Playfair Display", serif;
}

/* Sticky glass header (light theme) */
.navbar {
    background: transparent;
    padding-top: .9rem;
    padding-bottom: .9rem;
}

.nav-wrap {
    border-radius: 999px;
    padding: .7rem .95rem;
    background: rgba(255, 255, 255, .62);
    border: 1px solid rgba(21, 21, 21, .10);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 14px 45px rgba(15, 15, 15, .08);
}

.navbar .nav-link {
    color: rgba(21, 21, 21, .82) !important;
    font-weight: 700;
    letter-spacing: .01em;
}

.navbar .nav-link:hover {
    color: var(--ink) !important;
}

.navbar .nav-link.active {
    color: var(--ink) !important;
    text-decoration: underline;
    text-decoration-color: rgba(246, 183, 60, .85);
    text-underline-offset: 6px;
    text-decoration-thickness: 2px;
}

/* Logo lockup (fixes "logo not proper") */
.brand-lockup {
    display: flex;
    align-items: center;
    gap: .75rem;
}

.brand-logo {
    height: 44px;
    display: flex;
    align-items: center;
    padding: 6px 10px;
    border-radius: 14px;
    /* background: rgba(255, 255, 255, .72); */
    /* border: 1px solid rgba(21, 21, 21, .10); */
    /* box-shadow: 0 10px 30px rgba(15, 15, 15, .08); */
}

.brand-logo img {
    height: 84px;
    width: auto;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .10));
}

.brand-name .top {
    line-height: 1.05;
    font-weight: 850;
    letter-spacing: .01em;
    color: var(--ink);
    font-size: .98rem;
}

.brand-name .sub {
    line-height: 1.1;
    font-size: .82rem;
    color: var(--muted);
}

@media (max-width: 420px) {
    .brand-name .sub {
        display: none;
    }

    .brand-logo img {
        height: 28px;
    }
}

/* Golden CTA (pulse) */
.btn-order {
    border: 0;
    color: #1c1304 !important;
    font-weight: 900;
    border-radius: 999px;
    padding: .85rem 1.1rem;
    background: linear-gradient(90deg, var(--amber), var(--amber2));
    box-shadow: 0 14px 44px rgba(246, 183, 60, .28);
    position: relative;
    isolation: isolate;
    white-space: nowrap;
}

.btn-order:hover {
    filter: brightness(1.02);
    transform: translateY(-1px);
}

.btn-order::after {
    content: "";
    position: absolute;
    inset: -7px;
    border-radius: 999px;
    z-index: -1;
    background: radial-gradient(circle, rgba(246, 183, 60, .35), transparent 62%);
    animation: pulse 2.1s ease-in-out infinite;
    opacity: .9;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(.97);
        opacity: .55;
    }

    50% {
        transform: scale(1.04);
        opacity: 1;
    }
}

/* Sections */
section {
    padding: 3.3rem 0;
}


[id] {
    scroll-margin-top: 98px;
}

.section-kicker1 {
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: wheat;
    margin-bottom: .85rem;
}
.section-kicker {
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgb(54, 54, 52);
    margin-bottom: .85rem;
}


.section-title {
    font-size: clamp(1.7rem, 2.6vw, 2.5rem);
    line-height: 1.05;
    margin: 0;
}

.section-sub {
    margin-top: .75rem;
    color: var(--muted);
    max-width: 62ch;
}

/* HERO (like your figma): big serif + circular image */
.hero {
    background-image: url(img/hero.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    height: 100vh;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 2.2rem;
    align-items: center;
    padding-top: 200px;
}

.hero-title {
    font-size: clamp(2.35rem, 3.9vw, 4.6rem);
    line-height: 0.98;
    letter-spacing: -0.02em;
    margin: 0 0 1rem 0;
    color: white;
}

.hero-title .accent {
    background: linear-gradient(90deg, var(--burgundy), var(--amber));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.hero-copy {
    color: wheat;
    font-size: 1.06rem;
    max-width: 58ch;
}

.hero-orb {
    width: min(540px, 100%);
    /* aspect-ratio: 1/1; */
    border-radius: 999px;
    overflow: hidden;
    margin-left: auto;
    position: relative;
}

.hero-orb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    filter: saturate(1.12) contrast(1.06);
}


/* Decorative doodles (light editorial) */
.doodle {
    position: absolute;
    opacity: .22;
    pointer-events: none;
    filter: blur(.1px);
}

.doodle.one {
    left: 4%;
    top: 16%;
    transform: rotate(-9deg);
}

.doodle.two {
    right: 10%;
    top: 42%;
    transform: rotate(12deg);
}

.doodle svg {
    width: 92px;
    height: 92px;
}

@media (max-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr;
        /* margin-top: 40px; */
    }

    .hero-orb {
        margin: 0;
        aspect-ratio: 0;
    }

    .doodle {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero {
        padding-top: 20px;
        margin-top: 0px;
        background-position: right;
        background-image: linear-gradient(rgba(20, 20, 20, 0.49),rgba(25, 25, 26, 0.719)), url(img/hero.jpg);
    }

    .hero-copy {
        font-size: 1rem;
    }
    .btn-outline-yellow{
        border-color: #fcd890;
    }
}

/* Soft cards like your reference */
.soft-card {
    border-radius: var(--radius);
    border: 1px solid rgba(21, 21, 21, .10);
    box-shadow: var(--shadow);
    background: rgba(255, 255, 255, .72);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    overflow: hidden;
}

/* About split (reference vibe) */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 1.1rem;
    align-items: stretch;
}

@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
    }
}

.about-left {
    padding: 1.5rem;
}

.about-right {
    padding: 1.2rem;
    background: linear-gradient(180deg, rgba(223, 231, 204, .70), rgba(255, 255, 255, .62));
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(21, 21, 21, .10);
    background: rgba(255, 255, 255, .60);
    color: rgba(21, 21, 21, .75);
    font-weight: 700;
    font-size: .8rem;
}

.stat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .8rem;
}

.stat {
    border-radius: 18px;
    border: 1px solid rgba(21, 21, 21, .10);
    background: rgba(255, 255, 255, .65);
    padding: 1rem;
    box-shadow: 0 12px 40px rgba(15, 15, 15, .08);
}

.stat .num {
    font-weight: 900;
    font-size: 1.55rem;
    letter-spacing: -0.01em;
}

.stat .lab {
    color: rgba(21, 21, 21, .68);
    font-size: .92rem;
}

/* Menu (creative cards like reference) */
.menu-wrap {
    background: linear-gradient(180deg, rgba(223, 231, 204, .62), rgba(255, 255, 255, .62));
    border: 1px solid rgba(21, 21, 21, .10);
    border-radius: calc(var(--radius) + 6px);
    padding: 1.2rem;
    box-shadow: var(--shadow);
}

.menu-card {
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(21, 21, 21, .10);
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 14px 44px rgba(15, 15, 15, .10);
    height: 100%;
}

.menu-top {
    padding: .9rem .9rem 0 .9rem;
    display: flex;
    justify-content: space-between;
    gap: .8rem;
    align-items: flex-start;
}

.badge-mini {
    font-weight: 900;
    font-size: .72rem;
    padding: .28rem .55rem;
    border-radius: 999px;
    background: rgba(246, 183, 60, .25);
    border: 1px solid rgba(246, 183, 60, .30);
    color: rgba(21, 21, 21, .82);
    white-space: nowrap;
}

.menu-img {
    padding: .9rem;
}

.menu-img .frame {
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(21, 21, 21, .10);
    background: rgba(255, 255, 255, .60);
    aspect-ratio: 1/1;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .5s ease;
    filter: saturate(1.12) contrast(1.06);
}

.menu-card:hover .menu-img img {
    transform: scale(1.08);
}

.menu-body {
    padding: 0 .9rem 1rem .9rem;
}

.menu-name {
    font-weight: 900;
    margin: 0 0 .25rem 0;
}

.menu-desc {
    margin: 0;
    color: rgba(21, 21, 21, .68);
    font-size: .95rem;
}

.menu-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: .8rem;
    margin-top: .9rem;
}

.price {
    font-weight: 950;
    color: var(--burgundy);
    letter-spacing: .01em;
}

.btn-mini {
    border: 0;
    border-radius: 999px;
    padding: .55rem .8rem;
    font-weight: 900;
    color: #1c1304 !important;
    background: linear-gradient(90deg, var(--amber), var(--amber2));
    box-shadow: 0 12px 34px rgba(246, 183, 60, .22);
    white-space: nowrap;
}

/* Gallery grid + lightbox */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}

.g-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(21, 21, 21, .10);
    background: rgba(255, 255, 255, .60);
    cursor: pointer;
    min-height: 190px;
    box-shadow: 0 14px 44px rgba(15, 15, 15, .08);
}

.g-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s ease;
    filter: saturate(1.12) contrast(1.05);
}

.g-item:hover img {
    transform: scale(1.06);
}

.g-item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .62));
    opacity: .55;
    transition: opacity .35s ease;
}

.g-item:hover::after {
    opacity: .72;
}

.g-cap {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 12px;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    color: rgba(255, 255, 255, .95);
    font-weight: 800;
    font-size: .95rem;
    text-shadow: 0 10px 24px rgba(0, 0, 0, .25);
}

.span-7 {
    grid-column: span 7;
}

.span-5 {
    grid-column: span 5;
}

.span-6 {
    grid-column: span 6;
}

.span-4 {
    grid-column: span 4;
}

.span-8 {
    grid-column: span 8;
}

@media (max-width: 992px) {
    .gallery-grid {
        grid-template-columns: repeat(6, 1fr);
    }

    .span-7,
    .span-8,
    .span-6 {
        grid-column: span 6;
    }

    .span-5,
    .span-4 {
        grid-column: span 3;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .span-7,
    .span-8,
    .span-6,
    .span-5,
    .span-4 {
        grid-column: span 2;
    }

    .g-item {
        min-height: 180px;
    }
}

.lightbox {
    position: fixed;
    inset: 0;
    display: none;
    place-items: center;
    padding: 22px;
    background: rgba(0, 0, 0, .75);
    z-index: 1055;
}

.lightbox.show {
    display: grid;
}

.lightbox-card {
    width: min(1040px, 100%);
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .20);
    background: rgba(20, 20, 20, .55);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    box-shadow: 0 22px 90px rgba(0, 0, 0, .55);
    position: relative;
}

.lightbox-card img {
    width: 100%;
    max-height: 78vh;
    object-fit: cover;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .22);
    background: rgba(255, 255, 255, .12);
    color: #fff;
    display: grid;
    place-items: center;
    cursor: pointer;
}

/* Contact */
.map {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(21, 21, 21, .10);
    background: rgba(255, 255, 255, .65);
    min-height: 360px;
    box-shadow: 0 14px 44px rgba(15, 15, 15, .08);
}

.map iframe {
    width: 100%;
    height: 500px;
    border: 0;
}

.form-control,
.form-select {
    background: rgba(255, 255, 255, .75);
    border: 1px solid rgba(21, 21, 21, .12);
    color: rgba(21, 21, 21, .92);
    border-radius: 16px;
    padding: .9rem .95rem;
    box-shadow: 0 10px 30px rgba(15, 15, 15, .06);
}

.form-control:focus,
.form-select:focus {
    background: rgba(255, 255, 255, .85);
    border-color: rgba(246, 183, 60, .55);
    box-shadow: 0 0 0 .2rem rgba(246, 183, 60, .18);
}

/* ===== Site footer ===== */
.site-footer {
  margin-top: auto;
  color: rgba(21, 21, 21, 0.72);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.55), rgba(251, 244, 230, 0.92));
  border-top: 1px solid rgba(21, 21, 21, 0.08);
}

.footer-main {
  border-bottom: 1px solid rgba(21, 21, 21, 0.08);
}

.footer-logo {
  flex: 0 0 auto;
  height: 48px;
  padding: 6px 10px;
  border-radius: 14px;
  border: 1px solid rgba(21, 21, 21, 0.10);
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 30px rgba(15, 15, 15, 0.06);
  display: flex;
  align-items: center;
}

.footer-logo img {
  height: 32px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer-brand-name {
  font-weight: 800;
  font-size: 1.05rem;
  color: rgba(21, 21, 21, 0.92);
  letter-spacing: 0.01em;
}

.footer-brand-tag {
  font-size: 0.88rem;
  color: rgba(21, 21, 21, 0.62);
  font-weight: 600;
}

.footer-brand-desc {
  font-size: 0.92rem;
  line-height: 1.5;
  color: rgba(21, 21, 21, 0.65);
  max-width: 32ch;
}

.footer-heading {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(21, 21, 21, 0.55);
  margin-bottom: 0.85rem;
}

.footer-links li + li {
  margin-top: 0.45rem;
}

.footer-links a {
  color: rgba(21, 21, 21, 0.78);
  text-decoration: none;
  font-weight: 650;
  font-size: 0.95rem;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--burgundy, #7a0e1a);
  transform: translateX(2px);
}

.footer-contact li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.92rem;
  line-height: 1.45;
}

.footer-contact li + li {
  margin-top: 0.55rem;
}

.footer-contact i {
  margin-top: 0.15rem;
  color: rgba(246, 183, 60, 0.95);
  flex-shrink: 0;
}

.footer-contact a {
  color: rgba(21, 21, 21, 0.82);
  text-decoration: none;
  font-weight: 650;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.footer-contact a:hover {
  color: var(--burgundy, #7a0e1a);
  border-bottom-color: rgba(246, 183, 60, 0.6);
}

/* Social */
.site-footer .social a {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(21, 21, 21, 0.10);
  background: rgba(255, 255, 255, 0.62);
  color: rgba(21, 21, 21, 0.82);
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 12px 34px rgba(15, 15, 15, 0.06);
}

.site-footer .social a:hover {
  transform: translateY(-2px);
  background: rgba(246, 183, 60, 0.18);
  box-shadow: 0 14px 40px rgba(246, 183, 60, 0.15);
}

/* Bottom bar */
.footer-bottom {
  background: rgba(255, 255, 255, 0.35);
}

.footer-copy {
  font-size: 0.88rem;
  color: rgba(21, 21, 21, 0.60);
  font-weight: 600;
}

.footer-legal a {
  font-size: 0.88rem;
  font-weight: 650;
  color: rgba(21, 21, 21, 0.58);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--burgundy, #7a0e1a);
}

.footer-dot {
  margin: 0 0.5rem;
  color: rgba(21, 21, 21, 0.35);
}

/* Mobile tweaks */
@media (max-width: 575.98px) {
  .footer-brand-desc {
    max-width: none;
  }

  .footer-logo {
    height: 44px;
  }

  .footer-logo img {
    height: 28px;
  }
}

/* --- Responsive header fixes --- */
.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .75rem;
}

/* Prevent brand area from squeezing weirdly */
.navbar-brand {
    margin: 0;
}

.brand-lockup {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: .65rem;
}

.brand-name {
    min-width: 0;
}

.brand-name .top {
    max-width: 180px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

/* Make the collapse behave as a full-width row on small screens */
@media (max-width: 991.98px) {
    .nav-wrap {
        flex-wrap: wrap;
        /* allows collapse to drop below */
        border-radius: 20px;
        padding: .65rem .75rem;
    }

    /* Keep brand + toggler on first row */
    .navbar-brand {
        flex: 1 1 auto;
    }

    .navbar-toggler {
        flex: 0 0 auto;
        margin-left: auto;
        border-radius: 12px;
        padding: .45rem .6rem;
        border: 1px solid rgba(21, 21, 21, .12) !important;
        background: rgba(255, 255, 255, .65);
    }

    /* Second row: the menu */
    .navbar-collapse {
        width: 100%;
        flex-basis: 100%;
    }

    .navbar-nav {
        padding: .65rem 0 .2rem 0 !important;
        gap: .15rem !important;
    }

    .navbar-nav .nav-link {
        padding: .65rem .75rem !important;
        border-radius: 14px;
    }

    .navbar-nav .nav-link:hover {
        background: rgba(246, 183, 60, .12);
    }

    /* Put Order button full width on mobile */
    .navbar-nav .btn-order {
        width: 100%;
        justify-content: center;
    }

    /* Hide subtitle on small screens */
    .brand-name .sub {
        display: none;
    }
}

/* Ultra small phones: tighten brand text */
@media (max-width: 380px) {
    .brand-logo {
        padding: 6px 8px;
    }

    .brand-logo img {
        height: 60px;
    }

    .brand-name .top {
        max-width: 140px;
    }
}


/* ===== MENU PAGE CSS (matches your HTML classes) ===== */

:root {
    --bg: #fbf4e6;
    --ink: #151515;
    --muted: rgba(21, 21, 21, .70);

    --burgundy: #7a0e1a;
    --amber: #f6b73c;
    --amber2: #ffe1a0;

    --shadow: 0 18px 60px rgba(15, 15, 15, .10);
    --radius: 22px;
}

body {
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--ink);
    background:
        radial-gradient(900px 520px at 12% 12%, rgba(246, 183, 60, .22), transparent 62%),
        radial-gradient(900px 520px at 88% 14%, rgba(122, 14, 26, .12), transparent 60%),
        var(--bg);
}

.display-font {
    font-family: "Playfair Display", serif;
}

/* Space for fixed header */
main {
    padding-top: 118px;
    padding-bottom: 3.5rem;
}

@media (max-width: 576px) {
    main {
        padding-top: 102px;
    }
}

.kicker {
    font-size: .78rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(21, 21, 21, .60);
    margin-bottom: .85rem;
}

.page-title {
    font-size: clamp(2.1rem, 3.2vw, 3.4rem);
    line-height: 1.02;
    letter-spacing: -0.02em;
    margin: 0;
}

.subcopy {
    color: var(--muted);
    max-width: 75ch;
    margin-top: .85rem;
}

/* Panel + two-column layout */
.panel {
    border-radius: calc(var(--radius) + 6px);
    border: 1px solid rgba(21, 21, 21, .10);
    background: linear-gradient(180deg, rgba(223, 231, 204, .62), rgba(255, 255, 255, .65));
    box-shadow: var(--shadow);
    overflow: hidden;
}

.rail {
    background: rgba(255, 255, 255, .55);
    border-right: 1px solid rgba(21, 21, 21, .10);
    padding: 1rem;
}

.rail-title {
    font-weight: 950;
    letter-spacing: -.01em;
    margin-bottom: .6rem;
}

.chip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .7rem;
    width: 100%;
    border: 1px solid rgba(21, 21, 21, .10);
    background: rgba(255, 255, 255, .65);
    border-radius: 999px;
    padding: .65rem .85rem;
    font-weight: 550;
    color: rgba(21, 21, 21, .85);
    text-decoration: none;
    transition: transform .2s ease, background .2s ease, border-color .2s ease;
    margin-bottom: .6rem;
}

.chip:hover {
    transform: translateY(-1px);
    background: rgba(246, 183, 60, .14);
}

.chip.active {
    background: linear-gradient(90deg, rgba(246, 183, 60, .28), rgba(122, 14, 26, .08));
    border-color: rgba(246, 183, 60, .35);
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    padding: .35rem .7rem;
    border-radius: 999px;
    border: 1px solid rgba(21, 21, 21, .10);
    background: rgba(255, 255, 255, .60);
    color: rgba(21, 21, 21, .75);
    font-weight: 800;
    font-size: .8rem;
}

.canvas {
    padding: 1rem;
}

/* Featured banner */
.featured {
    border-radius: 22px;
    border: 1px solid rgba(21, 21, 21, .10);
    background: rgba(255, 255, 255, .65);
    box-shadow: 0 16px 55px rgba(15, 15, 15, .10);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    margin-bottom: 1rem;
}

.featured .copy {
    padding: 1.2rem;
}

.featured h3 {
    font-size: 1.6rem;
    margin: .2rem 0 .5rem 0;
}

.featured .img {
    min-height: 220px;
}

.featured .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(1.1) contrast(1.05);
}

/* Dish grid */
.dish-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 12px;
}

.dish {
    grid-column: span 4;
    border-radius: 22px;
    background: rgba(255, 255, 255, .70);
    border: 1px solid rgba(21, 21, 21, .10);
    box-shadow: 0 14px 44px rgba(15, 15, 15, .10);
    overflow: hidden;
}

.dish .top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .8rem;
    padding: .9rem .9rem 0 .9rem;
}

.dish .name {
    font-weight: 550;
    margin: 0;
    font-size: 1.05rem;
}

.dish .price {
    font-weight: 950;
    color: var(--burgundy);
    white-space: nowrap;
}

.dish .frame {
    margin: .8rem .9rem 0 .9rem;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(21, 21, 21, .10);
    background: rgba(255, 255, 255, .6);
    aspect-ratio: 1 / 1;
}

.dish img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
    transition: transform .5s ease;
    filter: saturate(1.12) contrast(1.06);
    display: block;
}

.dish:hover img {
    transform: scale(1.08);
}

.dish .body {
    padding: .85rem .9rem 1rem .9rem;
}

.dish .desc {
    margin: 0;
    color: rgba(21, 21, 21, .68);
    font-size: .95rem;
}

.dish .foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .8rem;
    margin-top: .85rem;
}

.btn-mini {
    border: 0;
    border-radius: 999px;
    padding: .55rem .8rem;
    font-weight: 950;
    color: #1c1304 !important;
    background: linear-gradient(90deg, var(--amber), var(--amber2));
    box-shadow: 0 12px 34px rgba(246, 183, 60, .22);
    white-space: nowrap;
}

/* Responsive layout */
@media (max-width: 992px) {
    .rail {
        border-right: 0;
        border-bottom: 1px solid rgba(21, 21, 21, .10);
    }

    .featured {
        grid-template-columns: 1fr;
    }

    .dish {
        grid-column: span 6;
    }
}

@media (max-width: 576px) {
    .dish {
        grid-column: span 12;
    }
}

/* ===== Desktop-only split scroll (rail + canvas) ===== */

.menu-split {
    position: relative;
}

/* Make the split inner act like a fixed-height pane on desktop */
@media (min-width: 992px) {

    /* Give the split container a stable height based on viewport */
    .menu-split-inner {
        display: grid;
        grid-template-columns: 320px 1fr;
        /* rail width + canvas */
        gap: 0;
        height: calc(100vh - 190px);
        /* tune if your header/title area is taller */
        min-height: 540px;
    }

    /* Both sides independently scroll */
    .rail-scroll,
    .canvas-scroll {
        overflow: auto;
        overscroll-behavior: contain;
        /* prevents “page scroll” chaining */
        -webkit-overflow-scrolling: touch;
    }

    /* Keep rail styling consistent and pinned */
    .rail-scroll {
        border-right: 1px solid rgba(21, 21, 21, .10);
        padding-bottom: 1rem;
    }

    /* Canvas padding stays */
    .canvas-scroll {
        padding: 1rem;
    }

    /* Optional: nicer scrollbars (Chrome/Edge) */
    .rail-scroll::-webkit-scrollbar,
    .canvas-scroll::-webkit-scrollbar {
        width: 10px;
    }

    .rail-scroll::-webkit-scrollbar-thumb,
    .canvas-scroll::-webkit-scrollbar-thumb {
        background: rgba(21, 21, 21, .18);
        border-radius: 999px;
        border: 2px solid rgba(255, 255, 255, .55);
    }
}

/* Tablet/mobile: normal flow (page scroll) */
@media (max-width: 991.98px) {
    .menu-split-inner {
        display: block;
        height: auto;
    }

    .rail-scroll,
    .canvas-scroll {
        overflow: visible;
    }
}

@media (min-width: 992px) {
    .canvas-scroll [data-aos] {
        opacity: 1 !important;
        transform: none !important;
    }
}