@font-face {
    font-family: "Vazirmatn Local";
    font-style: normal;
    font-display: swap;
    font-weight: 100 900;
    src: url("../fonts/vazirmatn-arabic-wght-normal.05d9ce2a23d3.woff2") format("woff2-variations");
    unicode-range: U+0600-06FF, U+0750-077F, U+0870-088E, U+0890-0891, U+0897-08E1, U+08E3-08FF, U+200C-200E, U+2010-2011, U+204F, U+2E41, U+FB50-FDFF, U+FE70-FE74, U+FE76-FEFC;
}

@font-face {
    font-family: "Vazirmatn Local";
    font-style: normal;
    font-display: swap;
    font-weight: 100 900;
    src: url("../fonts/vazirmatn-latin-wght-normal.e7eada615dc3.woff2") format("woff2-variations");
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

:root {
    --emerald-950: #062f26;
    --emerald-900: #084232;
    --emerald-800: #0b5741;
    --emerald-700: #107054;
    --emerald-600: #188467;
    --emerald-200: #bce6d8;
    --emerald-100: #dcf3ea;
    --emerald-50: #effaf6;
    --ink: #10221c;
    --muted: #68766f;
    --paper: #f7faf8;
    --white: #ffffff;
    --line: rgba(11, 87, 65, .11);
    --glass: rgba(255, 255, 255, .73);
    --shadow-sm: 0 12px 30px rgba(5, 52, 39, .07);
    --shadow-md: 0 24px 70px rgba(5, 52, 39, .12);
    --radius-sm: 16px;
    --radius: 24px;
    --radius-lg: 36px;
    --shell: 1180px;
    --ease: cubic-bezier(.22, 1, .36, 1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 126px;
}

body {
    margin: 0;
    min-width: 320px;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: "Vazirmatn Local", Vazirmatn, Tahoma, Arial, sans-serif;
    font-synthesis: none;
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

body.is-locked {
    overflow: hidden;
}

button,
input {
    font: inherit;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

button {
    color: inherit;
}

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

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

svg {
    display: block;
}

[hidden] {
    display: none !important;
}

.shell {
    width: min(calc(100% - 40px), var(--shell));
    margin-inline: auto;
}

.section-pad {
    padding-block: 78px;
}

.glass-panel {
    border: 1px solid rgba(255, 255, 255, .8);
    background: var(--glass);
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(20px) saturate(125%);
    -webkit-backdrop-filter: blur(20px) saturate(125%);
}

.skip-link {
    position: fixed;
    z-index: 500;
    inset: 12px auto auto 12px;
    translate: 0 -160%;
    border-radius: 12px;
    background: var(--emerald-900);
    color: #fff;
    padding: 10px 16px;
    transition: translate .2s ease;
}

.skip-link:focus {
    translate: 0;
}

.ambient {
    position: fixed;
    z-index: -1;
    border-radius: 50%;
    filter: blur(2px);
    pointer-events: none;
}

.ambient-one {
    width: 440px;
    height: 440px;
    inset: -180px -160px auto auto;
    background: rgba(141, 211, 184, .22);
}

.ambient-two {
    width: 340px;
    height: 340px;
    inset: 42% auto auto -180px;
    background: rgba(175, 226, 206, .25);
}

/* Lightweight cinematic background */
.motion-backdrop {
    position: fixed;
    z-index: -3;
    inset: 0;
    overflow: hidden;
    contain: strict;
    pointer-events: none;
    background:
        radial-gradient(circle at 92% 4%, rgba(213, 244, 232, .8), transparent 28rem),
        linear-gradient(145deg, #fbfdfc 0%, #f0f8f4 45%, #f8fbf9 100%);
}

.motion-canvas {
    position: absolute;
    z-index: 2;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: .34;
}

.aurora {
    position: absolute;
    border-radius: 50%;
    opacity: .5;
    filter: blur(2px);
    will-change: transform;
}

.aurora::after {
    position: absolute;
    inset: 12%;
    border: 1px solid rgba(255, 255, 255, .48);
    border-radius: inherit;
    content: "";
}

.aurora-one {
    width: min(64vw, 920px);
    aspect-ratio: 1.25;
    inset: -22% -20% auto auto;
    background: radial-gradient(circle at 35% 38%, rgba(84, 187, 145, .26), rgba(171, 229, 206, .16) 43%, transparent 70%);
    animation: aurora-drift-one 18s var(--ease) infinite alternate;
}

.aurora-two {
    width: min(54vw, 760px);
    aspect-ratio: 1;
    inset: 35% auto auto -26%;
    background: radial-gradient(circle at 60% 45%, rgba(182, 229, 211, .43), rgba(215, 243, 232, .12) 58%, transparent 72%);
    animation: aurora-drift-two 24s var(--ease) infinite alternate;
}

.aurora-three {
    width: min(38vw, 550px);
    aspect-ratio: 1;
    inset: auto 19% -25% auto;
    background: radial-gradient(circle, rgba(56, 151, 115, .16), transparent 68%);
    animation: aurora-pulse 14s ease-in-out infinite;
}

.motion-grid {
    position: absolute;
    z-index: 1;
    inset: 0;
    background-image:
        linear-gradient(rgba(12, 88, 65, .028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(12, 88, 65, .028) 1px, transparent 1px);
    background-size: 58px 58px;
    mask-image: radial-gradient(circle at 50% 35%, #000, transparent 76%);
}

.film-grain {
    position: absolute;
    z-index: 3;
    inset: -30%;
    background: url("../images/noise.8f626f9ceb1d.svg") repeat;
    opacity: .038;
    animation: grain-shift .7s steps(2) infinite;
    will-change: transform;
}

body.is-data-saver .motion-canvas,
body.is-data-saver .film-grain {
    display: none;
}

body.is-data-saver .aurora,
body.is-data-saver .hero-image-wrap {
    animation: none;
}

.scroll-progress {
    position: fixed;
    z-index: 180;
    inset: 0 0 auto;
    height: 3px;
    overflow: hidden;
    pointer-events: none;
}

.scroll-progress span {
    display: block;
    width: 100%;
    height: 100%;
    scale: 0 1;
    transform-origin: right center;
    background: linear-gradient(90deg, #8de0bd, var(--emerald-700), #d4b066);
    box-shadow: 0 0 18px rgba(24, 132, 103, .48);
    will-change: scale;
}

.cursor-aura {
    position: fixed;
    z-index: 170;
    width: 160px;
    height: 160px;
    inset: 0 auto auto 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(87, 187, 148, .13), rgba(87, 187, 148, .035) 45%, transparent 70%);
    translate: -50% -50%;
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s ease;
    will-change: transform;
}

body.has-fine-pointer .cursor-aura {
    opacity: 1;
}

body.is-ready .site-header {
    animation: header-arrival .75s var(--ease) both;
}

main,
.site-header,
.site-footer,
.mobile-nav {
    position: relative;
}

.glass-panel {
    box-shadow: 0 16px 44px rgba(5, 52, 39, .08), inset 0 1px 0 rgba(255, 255, 255, .78);
}

/* Header */
.site-header {
    position: sticky;
    z-index: 80;
    top: 0;
    padding-block: 16px;
    transition: padding .3s var(--ease);
}

.site-header.is-scrolled {
    padding-block: 9px;
}

.header-inner {
    min-height: 76px;
    display: flex;
    align-items: center;
    gap: 28px;
    border-radius: 22px;
    padding: 9px 12px 9px 18px;
    transition: min-height .3s var(--ease), box-shadow .3s ease;
}

.site-header.is-scrolled .header-inner {
    min-height: 66px;
    box-shadow: 0 16px 42px rgba(5, 52, 39, .12);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    min-width: max-content;
}

.brand-mark {
    position: relative;
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    overflow: hidden;
    border-radius: 17px;
    background: linear-gradient(145deg, var(--emerald-700), var(--emerald-950));
    box-shadow: 0 9px 22px rgba(7, 65, 49, .22);
    color: #fff;
    font-family: Georgia, serif;
    font-size: 24px;
    font-weight: 700;
}

.brand-mark::after {
    position: absolute;
    width: 28px;
    height: 90px;
    inset: -18px auto auto -45px;
    rotate: 26deg;
    background: rgba(255, 255, 255, .28);
    content: "";
    transition: translate .7s var(--ease);
}

.brand:hover .brand-mark::after {
    translate: 110px 0;
}

.brand-mark img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: #fff;
}

.brand-copy {
    display: grid;
    line-height: 1.35;
}

.brand-copy strong {
    color: var(--emerald-950);
    font-size: 16px;
}

.brand-copy small {
    color: var(--muted);
    font-size: 10px;
    letter-spacing: .07em;
}

.desktop-nav {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-inline: auto;
    padding: 5px;
    border-radius: 16px;
    background: rgba(10, 76, 57, .055);
}

.desktop-nav a {
    position: relative;
    min-width: 126px;
    border-radius: 12px;
    color: #5a6a63;
    padding: 8px 16px;
    text-align: center;
    font-size: 13px;
    font-weight: 700;
    transition: color .2s ease, background .2s ease, box-shadow .2s ease;
}

.desktop-nav a:hover,
.desktop-nav a.is-active {
    background: #fff;
    box-shadow: 0 8px 20px rgba(6, 57, 43, .08);
    color: var(--emerald-800);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 8px;
}

.icon-button,
.close-button {
    width: 42px;
    height: 42px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    background: rgba(255, 255, 255, .72);
    cursor: pointer;
    transition: background .2s ease, translate .2s ease;
}

.icon-button:hover,
.close-button:hover {
    translate: 0 -2px;
    background: #fff;
}

.icon-button svg,
.close-button svg {
    width: 20px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-trigger {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: 0;
    border-radius: 14px;
    background: var(--emerald-900);
    box-shadow: 0 10px 24px rgba(7, 65, 49, .18);
    color: #fff;
    padding: 8px 15px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    transition: background .2s ease, translate .2s ease;
}

.social-trigger-icon {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: rgba(255, 255, 255, .12);
}

.social-trigger-icon svg {
    width: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.55;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-trigger:hover {
    translate: 0 -2px;
    background: var(--emerald-800);
}

.social-trigger-dot,
.live-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #7ce0b8;
    box-shadow: 0 0 0 5px rgba(124, 224, 184, .14);
}

/* Shared typography and buttons */
.hero-kicker,
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--emerald-700);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: -.01em;
}

.eyebrow::before {
    width: 22px;
    height: 2px;
    border-radius: 9px;
    background: currentColor;
    content: "";
}

.eyebrow.light {
    color: rgba(255, 255, 255, .73);
}

.primary-button,
.text-button {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 11px;
    border-radius: 15px;
    cursor: pointer;
    padding: 10px 21px;
    font-weight: 850;
    transition: translate .22s var(--ease), box-shadow .22s ease, background .22s ease;
}

.primary-button {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--emerald-900);
    background: linear-gradient(135deg, var(--emerald-800), var(--emerald-950));
    box-shadow: 0 14px 30px rgba(6, 62, 46, .2);
    color: #fff;
}

.primary-button::before {
    position: absolute;
    width: 42%;
    height: 180%;
    inset: -45% auto auto -55%;
    rotate: 18deg;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .34), transparent);
    content: "";
    transition: translate .7s var(--ease);
}

.primary-button:hover::before {
    translate: 380% 0;
}

button.primary-button {
    font: inherit;
}

.text-button {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .58);
    color: var(--emerald-900);
}

.primary-button:hover,
.text-button:hover {
    translate: 0 -3px;
}

.primary-button:hover {
    box-shadow: 0 18px 38px rgba(6, 62, 46, .27);
}

.primary-button svg,
.text-button svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.section-heading h2,
.gallery-toolbar h2 {
    margin: 4px 0 0;
    color: var(--emerald-950);
    font-size: clamp(27px, 3.8vw, 44px);
    line-height: 1.3;
    letter-spacing: -.045em;
}

.section-heading p {
    max-width: 420px;
    margin: 0;
    color: var(--muted);
    font-size: 14px;
}

.section-heading.compact {
    align-items: center;
}

.section-line {
    height: 1px;
    flex: 1;
    background: linear-gradient(90deg, transparent, var(--line));
}

/* Menu hero */
.menu-hero {
    position: relative;
    padding-top: 45px;
}

.hero-grid {
    display: grid;
    align-items: center;
    grid-template-columns: 1.02fr .98fr;
    gap: clamp(35px, 7vw, 90px);
    min-height: 530px;
}

.hero-copy h1 {
    max-width: 650px;
    margin: 20px 0 18px;
    color: var(--emerald-950);
    font-size: clamp(43px, 6vw, 72px);
    font-weight: 900;
    line-height: 1.18;
    letter-spacing: -.065em;
    background: linear-gradient(125deg, #062f26 5%, #0b654c 58%, #a07a35 118%);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
}

.hero-copy > p {
    max-width: 560px;
    margin: 0;
    color: #5d6f67;
    font-size: 17px;
    line-height: 2;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 30px;
}

.hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    margin-top: 26px;
    color: #6b7872;
    font-size: 12px;
    font-weight: 700;
}

.hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 7px;
}

.hero-trust svg {
    width: 17px;
    fill: none;
    stroke: var(--emerald-600);
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.hero-visual {
    position: relative;
    min-height: 500px;
    display: grid;
    place-items: center;
}

.hero-visual::before,
.hero-visual::after {
    position: absolute;
    border-radius: 50%;
    content: "";
}

.hero-visual::before {
    z-index: -1;
    width: 86%;
    aspect-ratio: 1;
    background: linear-gradient(145deg, rgba(190, 230, 214, .55), rgba(226, 245, 237, .12));
}

.hero-visual::after {
    z-index: -1;
    width: 65%;
    aspect-ratio: 1;
    border: 1px dashed rgba(11, 87, 65, .18);
    animation: slow-spin 45s linear infinite;
}

.hero-image-wrap {
    position: relative;
    width: min(100%, 490px);
    aspect-ratio: 1;
    overflow: hidden;
    border: 12px solid rgba(255, 255, 255, .72);
    border-radius: 50%;
    background: #e9f5ef;
    box-shadow: 0 35px 80px rgba(6, 61, 46, .18), inset 0 0 0 1px rgba(7, 77, 58, .06);
    animation: hero-breathe 8s ease-in-out infinite;
}

.hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-image-shine {
    position: absolute;
    inset: 7% 18% auto auto;
    width: 25%;
    height: 9%;
    rotate: -25deg;
    border-radius: 50%;
    background: rgba(255, 255, 255, .4);
    filter: blur(10px);
}

.floating-note {
    position: absolute;
    inset: auto 0 20px auto;
    max-width: 275px;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 19px;
    padding: 12px 14px;
    animation: gentle-float 4.5s ease-in-out infinite;
}

.floating-icon {
    width: 42px;
    height: 42px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 13px;
    background: var(--emerald-100);
    color: var(--emerald-800);
}

.floating-icon svg {
    width: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.floating-note > span:last-child {
    display: grid;
    line-height: 1.55;
}

.floating-note small {
    color: var(--muted);
    font-size: 9px;
}

.floating-note strong {
    color: var(--emerald-950);
    font-size: 11px;
}

/* Featured cards */
.featured-strip {
    padding-block: 28px 55px;
}

.featured-strip .section-heading {
    margin-bottom: 18px;
}

.featured-strip .section-heading h2 {
    font-size: 27px;
}

.featured-scroller {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.featured-card {
    position: relative;
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 19px;
    background: rgba(255, 255, 255, .68);
    box-shadow: 0 10px 28px rgba(6, 61, 46, .055);
    padding: 10px;
    transition: translate .25s var(--ease), box-shadow .25s ease, border-color .25s ease;
}

.featured-card:hover {
    translate: 0 -4px;
    border-color: rgba(16, 112, 84, .24);
    box-shadow: var(--shadow-sm);
}

.featured-thumb {
    width: 58px;
    height: 58px;
    flex: 0 0 auto;
    overflow: hidden;
    border-radius: 14px;
    background: var(--emerald-50);
}

.featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-card > span:nth-child(2) {
    min-width: 0;
    display: grid;
    margin-inline-end: auto;
    line-height: 1.55;
}

.featured-card strong,
.featured-card small {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.featured-card strong {
    font-size: 13px;
}

.featured-card small {
    color: var(--muted);
    font-size: 10px;
}

.featured-card > svg {
    width: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--emerald-700);
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Menu tools and cards */
.menu-area {
    position: relative;
    padding-top: 85px;
}

.menu-tools {
    position: sticky;
    z-index: 35;
    top: 104px;
    display: grid;
    grid-template-columns: minmax(260px, .75fr) minmax(0, 1.25fr);
    gap: 14px;
    border-radius: 22px;
    padding: 10px;
}

.search-field {
    min-height: 54px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(11, 87, 65, .1);
    border-radius: 15px;
    background: rgba(247, 250, 248, .9);
    padding-inline: 15px 10px;
    transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}

.search-field:focus-within {
    border-color: rgba(16, 112, 84, .42);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(24, 132, 103, .08);
}

.search-field > svg {
    width: 21px;
    flex: 0 0 auto;
    fill: none;
    stroke: var(--emerald-700);
    stroke-width: 1.8;
    stroke-linecap: round;
}

.search-field input {
    min-width: 0;
    flex: 1;
    border: 0;
    outline: 0;
    background: transparent;
    color: var(--ink);
    font-size: 13px;
}

.search-field input::placeholder {
    color: #98a39f;
}

.search-field button {
    width: 32px;
    height: 32px;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 9px;
    background: var(--emerald-100);
    color: var(--emerald-800);
    cursor: pointer;
}

.search-field button svg {
    width: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
}

.category-tabs,
.gallery-filters {
    display: flex;
    align-items: center;
    gap: 5px;
    overflow-x: auto;
    scrollbar-width: none;
}

.category-tabs::-webkit-scrollbar,
.gallery-filters::-webkit-scrollbar,
.featured-scroller::-webkit-scrollbar {
    display: none;
}

.category-tabs button,
.gallery-filters button {
    min-height: 43px;
    flex: 0 0 auto;
    border: 1px solid transparent;
    border-radius: 13px;
    background: transparent;
    color: #627169;
    padding: 7px 15px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 800;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}

.category-tabs button:hover,
.gallery-filters button:hover {
    color: var(--emerald-800);
}

.category-tabs button.is-active,
.gallery-filters button.is-active {
    border-color: rgba(11, 87, 65, .08);
    background: var(--emerald-900);
    box-shadow: 0 8px 22px rgba(7, 65, 49, .17);
    color: #fff;
}

.menu-result-status {
    min-height: 26px;
    margin: 12px 5px 0;
    color: var(--emerald-700);
    font-size: 12px;
}

.menu-category {
    padding-top: 42px;
    content-visibility: auto;
    contain-intrinsic-size: auto 620px;
}

.category-heading,
.category-heading > div {
    display: flex;
    align-items: center;
}

.category-heading {
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 19px;
}

.category-heading > div {
    gap: 12px;
}

.category-index {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(16, 112, 84, .12);
    border-radius: 15px;
    background: var(--emerald-100);
    color: var(--emerald-800);
    font: 700 14px/1 Georgia, serif;
}

.category-heading h3 {
    margin: 0;
    color: var(--emerald-950);
    font-size: 25px;
    line-height: 1.4;
}

.category-heading p {
    margin: 2px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.item-count {
    border-radius: 999px;
    background: rgba(218, 239, 231, .72);
    color: var(--emerald-700);
    padding: 5px 11px;
    font-size: 10px;
    font-weight: 750;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.menu-card {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: 156px minmax(0, 1fr);
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, .72);
    box-shadow: 0 11px 34px rgba(7, 65, 49, .055);
    transition: translate .3s var(--ease), box-shadow .3s ease, border-color .3s ease;
}

.menu-card::after,
.featured-card::after,
.gallery-card::after,
.venue-preview-card::after,
.social-invite-inner::after {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(circle at var(--glow-x, 50%) var(--glow-y, 50%), rgba(255, 255, 255, .38), transparent 34%);
    content: "";
    opacity: 0;
    pointer-events: none;
    transition: opacity .22s ease;
}

[data-tilt].is-tilting::after {
    opacity: 1;
}

[data-tilt] {
    --tilt-x: 0deg;
    --tilt-y: 0deg;
    transform: perspective(1100px) rotateX(var(--tilt-x)) rotateY(var(--tilt-y));
    transform-style: preserve-3d;
    will-change: transform;
}

.menu-card:hover {
    translate: 0 -5px;
    border-color: rgba(16, 112, 84, .22);
    box-shadow: 0 20px 48px rgba(7, 65, 49, .105);
}

.menu-card-media {
    position: relative;
    min-height: 188px;
    overflow: hidden;
    background: var(--emerald-50);
}

.menu-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale .65s var(--ease);
}

.menu-card:hover .menu-card-media img {
    scale: 1.045;
}

.item-badge,
.unavailable-badge {
    position: absolute;
    inset: 10px 10px auto auto;
    max-width: calc(100% - 20px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .7);
    border-radius: 999px;
    background: rgba(5, 54, 40, .82);
    backdrop-filter: blur(7px);
    color: #fff;
    padding: 4px 8px;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 8px;
    font-weight: 800;
}

.unavailable-badge {
    background: rgba(73, 79, 76, .88);
}

.menu-card.is-unavailable .menu-card-media img {
    filter: grayscale(1);
    opacity: .68;
}

.menu-card-body {
    min-width: 0;
    display: flex;
    flex-direction: column;
    padding: 18px 18px 15px;
}

.item-title-row {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 12px;
}

.item-title-row h4 {
    margin: 0;
    color: var(--emerald-950);
    font-size: 16px;
    line-height: 1.55;
}

.chef-star {
    width: 28px;
    height: 28px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border: 1px solid rgba(181, 133, 50, .16);
    border-radius: 10px;
    background: #fff8e9;
    color: #b1812e;
}

.chef-star svg {
    width: 17px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.menu-card-body > p {
    display: -webkit-box;
    overflow: hidden;
    margin: 7px 0 16px;
    color: #748079;
    font-size: 11px;
    line-height: 1.9;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.price-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 8px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed rgba(11, 87, 65, .12);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 6px;
    color: var(--emerald-800);
}

.price strong {
    font-size: 16px;
    letter-spacing: -.03em;
}

.price small,
.price-row del {
    color: #8b9690;
    font-size: 9px;
}

.price-row del {
    text-decoration-color: #b45d5d;
}

.price-row.has-variants {
    padding-top: 9px;
}

.price-options {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(58px, 1fr));
    gap: 5px;
}

.variant-price {
    min-width: 0;
    display: grid;
    gap: 1px;
    border: 1px solid rgba(13, 102, 76, .09);
    border-radius: 10px;
    background: rgba(225, 243, 235, .7);
    color: var(--emerald-800);
    padding: 5px 6px;
    text-align: center;
}

.variant-price small {
    overflow: hidden;
    color: #75837c;
    font-size: 7px;
    font-weight: 730;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.variant-price strong {
    font-size: 11px;
    line-height: 1.35;
}

.price-on-request {
    border-radius: 999px;
    background: var(--emerald-100);
    color: var(--emerald-800);
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 780;
}

.price-on-request.is-muted {
    background: #edf0ee;
    color: #7c8782;
}

.no-results,
.catalog-empty {
    display: grid;
    place-items: center;
    border-radius: var(--radius);
    margin-top: 35px;
    padding: 50px 20px;
    text-align: center;
}

.no-results svg {
    width: 46px;
    fill: none;
    stroke: var(--emerald-700);
    stroke-width: 1.3;
    stroke-linecap: round;
}

.no-results h3,
.catalog-empty h3 {
    margin: 13px 0 3px;
}

.no-results p,
.catalog-empty p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.catalog-empty img {
    width: 140px;
    aspect-ratio: 1;
    border-radius: 50%;
}

/* Editorial venue preview */
.venue-preview {
    padding-top: 58px;
    content-visibility: auto;
    contain-intrinsic-size: 720px;
}

.venue-preview-card {
    position: relative;
    min-height: 560px;
    display: grid;
    grid-template-columns: minmax(280px, .84fr) minmax(0, 1.16fr);
    align-items: center;
    gap: clamp(32px, 5vw, 76px);
    overflow: hidden;
    border: 1px solid rgba(10, 93, 68, .12);
    border-radius: 46px;
    background:
        radial-gradient(circle at 7% 10%, rgba(255, 255, 255, .98), transparent 31%),
        linear-gradient(137deg, rgba(255, 255, 255, .96), rgba(235, 248, 242, .88));
    box-shadow: 0 38px 100px rgba(5, 52, 39, .115), inset 0 1px 0 #fff;
    padding: clamp(34px, 5.5vw, 72px);
    isolation: isolate;
}

.venue-preview-card::before {
    position: absolute;
    z-index: -1;
    width: min(54vw, 680px);
    aspect-ratio: 1;
    inset: -35% auto auto -17%;
    border: 1px solid rgba(13, 116, 83, .12);
    border-radius: 50%;
    box-shadow:
        0 0 0 78px rgba(211, 241, 229, .22),
        0 0 0 158px rgba(229, 247, 239, .18);
    content: "";
}

.venue-preview-copy {
    position: relative;
    z-index: 3;
    align-self: center;
}

.venue-preview-kicker {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--emerald-700);
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .02em;
}

.venue-preview-kicker > span {
    width: 24px;
    height: 1px;
    background: currentColor;
    box-shadow: -7px 0 0 currentColor;
}

.venue-preview-copy h2 {
    max-width: 510px;
    margin: 16px 0 18px;
    color: var(--emerald-950);
    font-size: clamp(38px, 4.15vw, 59px);
    font-weight: 840;
    line-height: 1.34;
    letter-spacing: -.065em;
}

.venue-preview-copy h2 em {
    color: var(--emerald-600);
    font-style: normal;
    font-weight: 610;
}

.venue-preview-copy > p {
    max-width: 450px;
    margin: 0;
    color: #62736b;
    font-size: 13px;
    line-height: 2.05;
}

.venue-preview-meta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-top: 25px;
}

.venue-preview-meta > span:not([aria-hidden]) {
    display: flex;
    align-items: baseline;
    gap: 7px;
}

.venue-preview-meta strong {
    color: var(--emerald-900);
    font: 730 21px/1 Georgia, serif;
}

.venue-preview-meta small {
    color: #78877f;
    font-size: 9px;
    font-weight: 700;
}

.venue-preview-meta > span[aria-hidden] {
    width: 1px;
    height: 28px;
    background: rgba(11, 87, 65, .15);
}

.venue-preview-link {
    width: fit-content;
    min-height: 55px;
    display: inline-flex;
    align-items: center;
    gap: 18px;
    border: 1px solid rgba(7, 69, 52, .08);
    border-radius: 18px;
    background: var(--emerald-950);
    box-shadow: 0 16px 32px rgba(6, 61, 46, .18);
    color: #fff;
    margin-top: 29px;
    padding: 7px 9px 7px 20px;
    font-size: 12px;
    font-weight: 820;
    transition: box-shadow .3s ease, background .3s ease, translate .3s var(--ease);
}

.venue-preview-link:hover {
    background: var(--emerald-800);
    box-shadow: 0 20px 40px rgba(6, 61, 46, .25);
    translate: 0 -2px;
}

.venue-preview-link > span {
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .12);
}

.venue-preview-link svg,
.venue-preview-badge svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.65;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.venue-preview-visual {
    position: relative;
    z-index: 2;
    min-width: 0;
    min-height: 430px;
    direction: ltr;
}

.venue-preview-orbit {
    position: absolute;
    width: 92%;
    aspect-ratio: 1;
    inset: 50% auto auto 50%;
    translate: -50% -50%;
    border: 1px solid rgba(15, 113, 82, .12);
    border-radius: 50%;
}

.venue-preview-orbit::before,
.venue-preview-orbit::after {
    position: absolute;
    width: 9px;
    aspect-ratio: 1;
    border: 2px solid #f7fbf9;
    border-radius: 50%;
    background: var(--emerald-600);
    box-shadow: 0 5px 14px rgba(8, 75, 56, .22);
    content: "";
}

.venue-preview-orbit::before { inset: 13% 12% auto auto; }
.venue-preview-orbit::after { inset: auto auto 12% 19%; }

.venue-shot {
    position: absolute;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, .88);
    border-radius: 28px;
    background: #e6f4ee;
    box-shadow: 0 26px 60px rgba(5, 57, 42, .18);
    margin: 0;
    transform: translateZ(0);
    transition: box-shadow .4s ease, z-index 0s, translate .45s var(--ease);
}

.venue-shot-1 {
    z-index: 3;
    width: 59%;
    height: 84%;
    inset: 7% auto auto 0;
    animation: preview-float-main 8s var(--ease) infinite alternate;
}

.venue-shot-2 {
    z-index: 1;
    width: 43%;
    height: 47%;
    inset: 0 1% auto auto;
    rotate: 3deg;
}

.venue-shot-3 {
    z-index: 4;
    width: 45%;
    height: 43%;
    inset: auto 0 2% auto;
    rotate: -3deg;
    animation: preview-float-small 6.5s var(--ease) .8s infinite alternate;
}

.venue-shot img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: scale .8s var(--ease);
}

.venue-shot::after {
    position: absolute;
    inset: auto 0 0;
    height: 48%;
    background: linear-gradient(transparent, rgba(3, 41, 31, .7));
    content: "";
    pointer-events: none;
}

.venue-shot figcaption {
    position: absolute;
    z-index: 2;
    inset: auto 15px 13px;
    display: grid;
    color: #fff;
    line-height: 1.45;
}

.venue-shot figcaption small {
    color: rgba(255, 255, 255, .65);
    font-size: 8px;
}

.venue-shot figcaption strong {
    font-size: 11px;
}

.venue-shot:hover {
    z-index: 6;
    box-shadow: 0 34px 75px rgba(5, 57, 42, .25);
    translate: 0 -5px;
}

.venue-shot:hover img { scale: 1.045; }

.venue-preview-badge {
    position: absolute;
    z-index: 7;
    width: 82px;
    aspect-ratio: 1;
    inset: 44% 30% auto auto;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 4px;
    translate: 0 -50%;
    border: 1px solid rgba(255, 255, 255, .82);
    border-radius: 50%;
    background: rgba(250, 253, 251, .84);
    box-shadow: 0 18px 42px rgba(5, 57, 42, .19);
    backdrop-filter: blur(14px) saturate(125%);
    color: var(--emerald-900);
    font-size: 9px;
    font-weight: 850;
    text-align: center;
    transition: scale .3s var(--ease), background .3s ease;
}

.venue-preview-badge:hover {
    background: #fff;
    scale: 1.07;
}

/* Gallery page */
.gallery-hero {
    padding-top: 55px;
    padding-bottom: 55px;
}

.gallery-hero-inner {
    min-height: 390px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    overflow: hidden;
    border-radius: var(--radius-lg);
    background:
        linear-gradient(90deg, rgba(5, 45, 35, .94), rgba(7, 74, 55, .72)),
        url("../images/gallery-lobby.db3d9fbe284f.svg") center/cover;
    box-shadow: var(--shadow-md);
    color: #fff;
    padding: clamp(32px, 6vw, 70px);
}

.gallery-hero-inner > div:first-child {
    max-width: 660px;
}

.gallery-hero .hero-kicker {
    color: rgba(255, 255, 255, .72);
}

.gallery-hero h1 {
    margin: 15px 0 14px;
    font-size: clamp(39px, 6vw, 66px);
    line-height: 1.25;
    letter-spacing: -.06em;
}

.gallery-hero p {
    max-width: 570px;
    margin: 0;
    color: rgba(255, 255, 255, .65);
    font-size: 15px;
    line-height: 2;
}

.gallery-counter {
    min-width: 176px;
    display: flex;
    align-items: center;
    gap: 13px;
    border-color: rgba(255, 255, 255, .18);
    border-radius: 24px;
    background: rgba(255, 255, 255, .12);
    box-shadow: none;
    color: #fff;
    padding: 20px;
}

.gallery-counter strong {
    font: 700 49px/1 Georgia, serif;
}

.gallery-counter span {
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    line-height: 1.8;
}

.gallery-area {
    padding-top: 45px;
}

.gallery-toolbar {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 28px;
}

.gallery-filters {
    justify-content: flex-start;
    padding: 5px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: rgba(255, 255, 255, .62);
}

.gallery-grid {
    display: grid;
    grid-auto-flow: dense;
    grid-auto-rows: 250px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.gallery-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    border: 0;
    border-radius: 24px;
    background: var(--emerald-100);
    box-shadow: 0 13px 35px rgba(5, 52, 39, .07);
    padding: 0;
    cursor: zoom-in;
    text-align: right;
}

.gallery-card.is-featured {
    grid-row: span 2;
}

.gallery-card:nth-child(7n + 2) {
    grid-column: span 2;
}

.gallery-media,
.gallery-media img {
    width: 100%;
    height: 100%;
}

.gallery-media img {
    object-fit: cover;
    transition: scale .75s var(--ease), filter .5s ease;
}

.gallery-card:hover .gallery-media img {
    scale: 1.055;
    filter: saturate(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: auto 0 0;
    display: grid;
    background: linear-gradient(transparent, rgba(4, 36, 28, .9));
    color: #fff;
    padding: 65px 22px 20px;
}

.gallery-category {
    color: rgba(255, 255, 255, .6);
    font-size: 9px;
    font-weight: 800;
}

.gallery-title {
    margin-top: 2px;
    font-size: 17px;
    font-weight: 850;
}

.gallery-caption {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    color: rgba(255, 255, 255, .64);
    font-size: 10px;
    transition: max-height .4s var(--ease), opacity .3s ease, margin .3s ease;
}

.gallery-card:hover .gallery-caption {
    max-height: 40px;
    margin-top: 4px;
    opacity: 1;
}

.gallery-zoom {
    position: absolute;
    inset: 14px auto auto 14px;
    width: 39px;
    height: 39px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .23);
    border-radius: 13px;
    background: rgba(4, 41, 31, .25);
    backdrop-filter: blur(8px);
    color: #fff;
    opacity: .65;
    transition: opacity .2s ease, background .2s ease;
}

.gallery-card:hover .gallery-zoom {
    background: rgba(4, 41, 31, .55);
    opacity: 1;
}

.gallery-zoom svg {
    width: 19px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.gallery-empty {
    grid-column: 1 / -1;
}

.social-invite {
    padding-top: 40px;
}

.social-invite-inner {
    position: relative;
    overflow: hidden;
    display: grid;
    align-items: center;
    grid-template-columns: auto 1fr auto;
    gap: 28px;
    border-radius: 28px;
    padding: 25px 28px;
}

.social-invite-inner h2 {
    margin: 2px 0 1px;
    color: var(--emerald-950);
    font-size: 27px;
}

.social-invite-inner p {
    margin: 0;
    color: var(--muted);
    font-size: 12px;
}

.social-orbit {
    position: relative;
    width: 91px;
    height: 91px;
    display: grid;
    place-items: center;
    border: 1px dashed rgba(16, 112, 84, .25);
    border-radius: 50%;
}

.social-orbit strong {
    width: 47px;
    height: 47px;
    display: grid;
    place-items: center;
    border-radius: 15px;
    background: var(--emerald-900);
    color: #fff;
    font-family: Georgia, serif;
}

.social-orbit span {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--emerald-500, #2c9b79);
    box-shadow: 0 0 0 4px var(--emerald-100);
}

.social-orbit span:nth-child(1) { inset: 6px 10px auto auto; }
.social-orbit span:nth-child(2) { inset: auto 2px 18px auto; }
.social-orbit span:nth-child(3) { inset: 33px auto auto -2px; }

/* Social sheet */
.modal-backdrop {
    position: fixed;
    z-index: 190;
    inset: 0;
    background: rgba(2, 25, 18, .48);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .28s ease;
}

.modal-backdrop.is-visible {
    opacity: 1;
}

.social-sheet {
    position: fixed;
    z-index: 200;
    width: min(calc(100% - 28px), 460px);
    max-height: min(85vh, 720px);
    inset: 50% 50% auto auto;
    overflow: auto;
    translate: 50% -46%;
    border: 1px solid rgba(255, 255, 255, .8);
    border-radius: 30px;
    background: rgba(250, 253, 251, .96);
    box-shadow: 0 30px 100px rgba(2, 32, 23, .28);
    padding: 25px;
    opacity: 0;
    transition: opacity .3s ease, translate .3s var(--ease);
}

.social-sheet.is-visible {
    translate: 50% -50%;
    opacity: 1;
}

.sheet-handle {
    display: none;
}

.sheet-heading {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 20px;
}

.sheet-heading h2 {
    margin: 5px 0 0;
    color: var(--emerald-950);
    font-size: 25px;
}

.sheet-copy {
    margin: 13px 0 21px;
    color: var(--muted);
    font-size: 12px;
}

.social-link-list {
    display: grid;
    gap: 8px;
}

.social-link-card {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1px solid var(--line);
    border-radius: 17px;
    background: #fff;
    padding: 10px;
    transition: translate .2s var(--ease), border-color .2s ease, box-shadow .2s ease;
}

.social-link-card:hover {
    translate: -3px 0;
    border-color: rgba(16, 112, 84, .25);
    box-shadow: var(--shadow-sm);
}

.social-instagram .social-icon { background: #fff0f6; color: #c33b79; }
.social-whatsapp .social-icon { background: #e8faef; color: #1f9d5b; }
.social-telegram .social-icon { background: #eaf6ff; color: #258dc2; }
.social-youtube .social-icon { background: #fff0f0; color: #d83131; }
.social-linkedin .social-icon { background: #edf5ff; color: #1769aa; }
.social-x .social-icon { background: #eef1f0; color: #19231f; }

.social-link-card:hover .social-icon {
    rotate: -7deg;
    scale: 1.06;
}

.social-icon {
    transition: rotate .35s var(--ease), scale .35s var(--ease), background .25s ease;
}

.social-icon {
    width: 44px;
    height: 44px;
    display: grid;
    flex: 0 0 auto;
    place-items: center;
    border-radius: 14px;
    background: var(--emerald-100);
    color: var(--emerald-800);
}

.social-icon svg {
    width: 23px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.6;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.social-icon .fill-icon,
.social-whatsapp .social-icon svg path:nth-child(2),
.social-link-card:not(.social-instagram):not(.social-whatsapp):not(.social-website) .social-icon svg {
    fill: currentColor;
}

.social-youtube .social-icon svg .cutout {
    fill: #fff;
    stroke: none;
}

.social-link-copy {
    min-width: 0;
    display: grid;
    margin-inline-end: auto;
    line-height: 1.65;
}

.social-link-copy strong {
    font-size: 13px;
}

.social-link-copy small {
    overflow: hidden;
    color: var(--muted);
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 10px;
}

.social-arrow {
    width: 18px;
    flex: 0 0 auto;
    fill: none;
    stroke: #88958f;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.empty-social {
    display: grid;
    place-items: center;
    border: 1px dashed rgba(11, 87, 65, .2);
    border-radius: 18px;
    background: var(--emerald-50);
    padding: 28px 18px;
    text-align: center;
}

.empty-social-icon {
    color: var(--emerald-700);
}

.empty-social-icon svg {
    width: 34px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.5;
    stroke-linecap: round;
}

.empty-social p {
    margin: 9px 0 0;
    color: var(--muted);
    font-size: 11px;
}

.sheet-quick-actions {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.sheet-quick-actions a {
    border-radius: 13px;
    background: var(--emerald-100);
    color: var(--emerald-800);
    padding: 8px 11px;
    text-align: center;
    font-size: 11px;
    font-weight: 800;
}

/* Lightbox */
.lightbox {
    position: fixed;
    z-index: 220;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 28px;
}

.lightbox-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 20, 15, .84);
    backdrop-filter: blur(12px);
    opacity: 0;
    transition: opacity .3s ease;
}

.lightbox-dialog {
    position: relative;
    width: min(100%, 1000px);
    height: min(82vh, 760px);
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 28px;
    background: #071e17;
    box-shadow: 0 40px 120px rgba(0, 0, 0, .45);
    scale: .96;
    opacity: 0;
    transition: scale .35s var(--ease), opacity .25s ease;
}

.lightbox.is-visible .lightbox-backdrop,
.lightbox.is-visible .lightbox-dialog {
    opacity: 1;
}

.lightbox.is-visible .lightbox-dialog {
    scale: 1;
}

.lightbox-dialog > img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    z-index: 2;
    inset: 18px auto auto 18px;
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 14px;
    background: rgba(3, 31, 23, .48);
    backdrop-filter: blur(8px);
    color: #fff;
    cursor: pointer;
}

.lightbox-close svg {
    width: 21px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
}

.lightbox-copy {
    position: absolute;
    inset: auto 0 0;
    background: linear-gradient(transparent, rgba(2, 22, 16, .9));
    color: #fff;
    padding: 70px 28px 24px;
}

.lightbox-copy h2 {
    margin: 0;
    font-size: 23px;
}

.lightbox-copy p {
    margin: 3px 0 0;
    color: rgba(255, 255, 255, .62);
    font-size: 11px;
}

/* Footer and mobile navigation */
.site-footer {
    padding: 65px 0 38px;
}

.footer-grid {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 27px;
    border-top: 1px solid var(--line);
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 11px;
}

.footer-mark {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 13px;
    background: var(--emerald-900);
    color: #fff;
    font-family: Georgia, serif;
}

.footer-brand > div {
    display: grid;
    line-height: 1.55;
}

.footer-brand strong {
    color: var(--emerald-950);
    font-size: 12px;
}

.footer-brand p,
.footer-address,
.footer-copy {
    margin: 0;
    color: #87928d;
    font-size: 9px;
}

.footer-address {
    max-width: 380px;
    margin-inline: auto;
}

.footer-copy {
    direction: rtl;
}

.mobile-nav {
    display: none;
}

/* Motion */
[data-reveal] {
    opacity: 0;
    translate: 0 18px;
    transition: opacity .7s ease, translate .7s var(--ease);
}

[data-reveal].is-revealed {
    opacity: 1;
    translate: 0;
}

@keyframes slow-spin {
    to { rotate: 360deg; }
}

@keyframes gentle-float {
    0%, 100% { translate: 0 0; }
    50% { translate: 0 -9px; }
}

@keyframes header-arrival {
    from { opacity: 0; translate: 0 -18px; }
    to { opacity: 1; translate: 0; }
}

@keyframes aurora-drift-one {
    0% { transform: translate3d(0, 0, 0) rotate(0deg) scale(1); }
    100% { transform: translate3d(-12vw, 9vh, 0) rotate(17deg) scale(1.14); }
}

@keyframes aurora-drift-two {
    0% { transform: translate3d(0, 0, 0) rotate(-8deg) scale(1.05); }
    100% { transform: translate3d(14vw, -7vh, 0) rotate(11deg) scale(.92); }
}

@keyframes aurora-pulse {
    0%, 100% { transform: scale(.86) rotate(-8deg); opacity: .28; }
    50% { transform: scale(1.18) rotate(8deg); opacity: .57; }
}

@keyframes grain-shift {
    0% { transform: translate3d(0, 0, 0); }
    25% { transform: translate3d(2%, -1%, 0); }
    50% { transform: translate3d(-1%, 2%, 0); }
    75% { transform: translate3d(1%, 1%, 0); }
    100% { transform: translate3d(-2%, -1%, 0); }
}

@keyframes hero-breathe {
    0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
    50% { transform: translate3d(0, -7px, 0) scale(1.012); }
}

@keyframes preview-float-main {
    from { transform: translate3d(0, 0, 0) rotate(-.5deg); }
    to { transform: translate3d(0, -9px, 0) rotate(.8deg); }
}

@keyframes preview-float-small {
    from { transform: translate3d(0, 0, 0); }
    to { transform: translate3d(-5px, -7px, 0); }
}

@media (max-width: 980px) {
    .hero-grid {
        gap: 30px;
    }

    .hero-copy h1 {
        font-size: 49px;
    }

    .hero-visual {
        min-height: 430px;
    }

    .menu-card {
        grid-template-columns: 130px minmax(0, 1fr);
    }

    .menu-card-media {
        min-height: 175px;
    }

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

    .venue-preview-card {
        min-height: 520px;
        gap: 24px;
        border-radius: 38px;
        padding: 38px;
    }

    .venue-preview-visual {
        min-height: 390px;
    }
}

@media (max-width: 780px) {
    .shell {
        width: min(calc(100% - 28px), var(--shell));
    }

    .section-pad {
        padding-block: 55px;
    }

    .site-header {
        padding-block: 10px;
    }

    .header-inner {
        min-height: 62px;
        border-radius: 18px;
        padding: 7px;
    }

    .site-header.is-scrolled .header-inner {
        min-height: 58px;
    }

    .brand-mark {
        width: 46px;
        height: 46px;
        border-radius: 14px;
        font-size: 20px;
    }

    .brand-copy strong {
        font-size: 14px;
    }

    .brand-copy small {
        font-size: 8px;
    }

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

    .header-actions {
        margin-inline-start: auto;
    }

    .social-trigger {
        width: 43px;
        min-height: 43px;
        justify-content: center;
        border-radius: 13px;
        padding: 0;
        font-size: 0;
    }

    .social-trigger-icon {
        background: transparent;
    }

    .social-trigger-dot {
        width: 9px;
        height: 9px;
    }

    .hero-grid {
        min-height: auto;
        grid-template-columns: 1fr;
        text-align: center;
    }

    .menu-hero {
        padding-top: 29px;
    }

    .hero-copy {
        display: grid;
        justify-items: center;
    }

    .hero-copy h1 {
        max-width: 590px;
        margin-top: 15px;
        font-size: clamp(38px, 10.5vw, 58px);
    }

    .hero-copy > p {
        font-size: 14px;
    }

    .hero-actions,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        min-height: 430px;
        grid-row: 1;
    }

    .hero-image-wrap {
        width: min(91vw, 410px);
        border-width: 9px;
    }

    .floating-note {
        inset: auto 50% 6px auto;
        width: min(270px, 75vw);
        translate: 50% 0;
        text-align: right;
        animation: none;
    }

    .featured-scroller {
        width: calc(100% + 14px);
        display: flex;
        overflow-x: auto;
        padding: 0 0 9px 14px;
        scroll-snap-type: x mandatory;
    }

    .featured-card {
        width: min(82vw, 315px);
        flex: 0 0 auto;
        scroll-snap-align: start;
    }

    .menu-tools {
        top: 82px;
        grid-template-columns: 1fr;
        gap: 7px;
        padding: 8px;
    }

    .category-tabs {
        padding-block: 2px;
    }

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

    .menu-card {
        grid-template-columns: 142px minmax(0, 1fr);
    }

    .menu-card-media {
        min-height: 180px;
    }

    .motion-canvas {
        display: none;
    }

    .film-grain {
        animation: none;
        transform: none;
    }

    .venue-preview {
        contain-intrinsic-size: 850px;
        padding-top: 36px;
    }

    .venue-preview-card {
        min-height: 0;
        grid-template-columns: 1fr;
        gap: 24px;
        border-radius: 32px;
        padding: 22px 22px 30px;
    }

    .venue-preview-card::before {
        width: 125vw;
        inset: -34% auto auto -62%;
    }

    .venue-preview-visual {
        min-height: 345px;
        grid-row: 1;
    }

    .venue-preview-copy {
        grid-row: 2;
        padding-inline: 4px;
    }

    .venue-preview-copy h2 {
        max-width: 600px;
        font-size: clamp(35px, 8.5vw, 52px);
    }

    .venue-preview-copy > p {
        max-width: 590px;
    }

    .venue-shot-1 {
        width: 61%;
        height: 85%;
    }

    .venue-shot-2 {
        width: 43%;
        height: 48%;
    }

    .venue-shot-3 {
        width: 46%;
        height: 43%;
    }

    .gallery-hero-inner {
        min-height: 440px;
        align-items: end;
    }

    .gallery-counter {
        align-self: start;
    }

    .gallery-toolbar {
        align-items: start;
        flex-direction: column;
    }

    .gallery-filters {
        width: 100%;
    }

    .social-invite-inner {
        grid-template-columns: auto 1fr;
    }

    .social-invite-inner .primary-button {
        grid-column: 1 / -1;
    }

    .footer-grid {
        padding-bottom: 85px;
    }

    .footer-address {
        display: none;
    }

    .mobile-nav {
        position: fixed;
        z-index: 75;
        inset: auto 50% max(10px, env(safe-area-inset-bottom)) auto;
        width: min(calc(100% - 28px), 430px);
        min-height: 66px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        translate: 50% 0;
        border-radius: 21px;
        padding: 6px;
    }

    .mobile-nav a,
    .mobile-nav button {
        position: relative;
        display: grid;
        place-items: center;
        align-content: center;
        gap: 2px;
        border: 0;
        border-radius: 16px;
        background: transparent;
        color: #7a8781;
        padding: 6px 4px;
        cursor: pointer;
        font-size: 9px;
        font-weight: 800;
    }

    .mobile-nav a.is-active {
        background: var(--emerald-900);
        color: #fff;
        box-shadow: 0 8px 20px rgba(6, 62, 46, .2);
    }

    .mobile-nav svg {
        width: 21px;
        height: 21px;
        fill: none;
        stroke: currentColor;
        stroke-width: 1.6;
        stroke-linecap: round;
        stroke-linejoin: round;
    }
}

@media (max-width: 560px) {
    html {
        scroll-padding-top: 168px;
    }

    .section-pad {
        padding-block: 43px;
    }

    .header-inner {
        padding-inline-end: 10px;
    }

    .menu-hero {
        padding-top: 12px;
    }

    .hero-grid {
        gap: 20px;
    }

    .hero-visual {
        min-height: 355px;
    }

    .hero-image-wrap {
        width: min(84vw, 340px);
    }

    .aurora-one { width: 125vw; inset: -12% -65% auto auto; }
    .aurora-two { width: 120vw; inset: 45% auto auto -70%; }
    .motion-grid { background-size: 42px 42px; opacity: .72; }
    .film-grain { opacity: .025; }

    .hero-visual::before {
        width: 92%;
    }

    .hero-copy h1 {
        margin-bottom: 12px;
        font-size: clamp(34px, 11vw, 48px);
        line-height: 1.27;
    }

    .hero-copy > p {
        font-size: 12px;
        line-height: 1.95;
    }

    .hero-actions {
        width: 100%;
        display: grid;
        grid-template-columns: 1.1fr .9fr;
        margin-top: 22px;
    }

    .primary-button,
    .text-button {
        min-height: 48px;
        padding: 9px 13px;
        font-size: 12px;
    }

    .hero-trust {
        gap: 12px;
        margin-top: 20px;
        font-size: 9px;
    }

    .featured-strip {
        padding: 25px 0 34px;
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 7px;
        margin-bottom: 18px;
    }

    .section-heading.compact {
        align-items: center;
        flex-direction: row;
    }

    .section-heading.compact .section-line {
        display: block;
    }

    .section-heading h2,
    .gallery-toolbar h2 {
        font-size: 29px;
    }

    .section-heading p {
        font-size: 11px;
    }

    .menu-area {
        padding-top: 57px;
    }

    .menu-tools {
        top: 78px;
        margin-inline: -3px;
        border-radius: 19px;
    }

    .search-field {
        min-height: 49px;
    }

    .category-tabs button,
    .gallery-filters button {
        min-height: 39px;
        padding-inline: 12px;
        font-size: 10px;
    }

    .menu-category {
        padding-top: 31px;
    }

    .category-heading {
        margin-bottom: 13px;
    }

    .category-index {
        width: 42px;
        height: 42px;
        border-radius: 13px;
        font-size: 12px;
    }

    .category-heading h3 {
        font-size: 21px;
    }

    .category-heading p {
        font-size: 9px;
    }

    .item-count {
        font-size: 8px;
    }

    .menu-grid {
        gap: 10px;
    }

    .menu-card {
        grid-template-columns: 116px minmax(0, 1fr);
        border-radius: 18px;
    }

    .menu-card-media {
        min-height: 158px;
    }

    .menu-card-body {
        padding: 13px 13px 11px;
    }

    .item-title-row h4 {
        font-size: 13px;
    }

    .chef-star {
        font-size: 16px;
    }

    .menu-card-body > p {
        margin: 5px 0 8px;
        font-size: 9px;
        line-height: 1.8;
    }

    .price-row {
        align-items: start;
        flex-direction: column;
        gap: 0;
        padding-top: 8px;
    }

    .price strong {
        font-size: 13px;
    }

    .price small,
    .price-row del {
        font-size: 8px;
    }

    .price-options {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 4px;
    }

    .variant-price {
        border-radius: 8px;
        padding: 4px 3px;
    }

    .variant-price small {
        font-size: 6px;
    }

    .variant-price strong {
        font-size: 9px;
    }

    .item-badge,
    .unavailable-badge {
        inset: 8px 7px auto 7px;
        font-size: 7px;
        text-align: center;
    }

    .venue-preview {
        padding-top: 25px;
    }

    .venue-preview-card {
        gap: 18px;
        border-radius: 27px;
        padding: 14px 14px 24px;
    }

    .venue-preview-visual {
        min-height: 305px;
    }

    .venue-preview-copy {
        padding-inline: 7px;
    }

    .venue-preview-kicker {
        font-size: 9px;
    }

    .venue-preview-copy h2 {
        margin-block: 12px 13px;
        font-size: clamp(31px, 9.4vw, 42px);
        line-height: 1.37;
    }

    .venue-preview-copy > p {
        font-size: 10px;
        line-height: 2;
    }

    .venue-preview-meta {
        gap: 13px;
        margin-top: 18px;
    }

    .venue-preview-meta strong {
        font-size: 18px;
    }

    .venue-preview-meta small {
        font-size: 8px;
    }

    .venue-preview-link {
        width: 100%;
        justify-content: space-between;
        margin-top: 21px;
        padding-inline-start: 16px;
    }

    .venue-shot {
        border-width: 4px;
        border-radius: 21px;
    }

    .venue-shot figcaption {
        inset: auto 10px 9px;
    }

    .venue-shot figcaption strong {
        font-size: 9px;
    }

    .venue-shot-2 figcaption,
    .venue-shot-3 figcaption {
        display: none;
    }

    .venue-preview-badge {
        width: 68px;
        inset: 45% 28% auto auto;
        font-size: 8px;
    }

    .gallery-hero {
        padding-top: 18px;
        padding-bottom: 35px;
    }

    .gallery-hero-inner {
        min-height: 490px;
        align-items: start;
        flex-direction: column-reverse;
        justify-content: end;
        gap: 35px;
        border-radius: 27px;
        padding: 28px 24px;
    }

    .gallery-hero h1 {
        margin-top: 11px;
        font-size: 38px;
    }

    .gallery-hero p {
        font-size: 11px;
    }

    .gallery-counter {
        min-width: auto;
        padding: 13px 16px;
    }

    .gallery-counter strong {
        font-size: 38px;
    }

    .gallery-area {
        padding-top: 34px;
    }

    .gallery-toolbar {
        gap: 18px;
    }

    .gallery-filters {
        padding: 4px;
    }

    .gallery-grid {
        grid-auto-rows: 220px;
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .gallery-card.is-featured {
        grid-row: span 1;
    }

    .gallery-card:nth-child(7n + 2) {
        grid-column: auto;
    }

    .gallery-card:nth-child(4n + 1) {
        grid-row: span 2;
    }

    .gallery-overlay {
        padding: 56px 17px 16px;
    }

    .gallery-title {
        font-size: 15px;
    }

    .gallery-caption {
        max-height: 40px;
        margin-top: 3px;
        opacity: 1;
    }

    .social-invite {
        padding-top: 23px;
    }

    .social-invite-inner {
        grid-template-columns: 1fr;
        gap: 15px;
        border-radius: 23px;
        padding: 23px;
        text-align: center;
    }

    .social-orbit {
        margin-inline: auto;
    }

    .social-invite-inner h2 {
        font-size: 24px;
    }

    .social-invite-inner .eyebrow {
        justify-content: center;
    }

    .social-invite-inner .primary-button {
        width: 100%;
    }

    .social-sheet {
        width: 100%;
        max-height: min(88dvh, 740px);
        inset: auto 0 0;
        border-radius: 27px 27px 0 0;
        padding: 13px 18px calc(22px + env(safe-area-inset-bottom));
        translate: 0 104%;
    }

    .social-sheet.is-visible {
        translate: 0;
    }

    .sheet-handle {
        width: 39px;
        height: 4px;
        display: block;
        border-radius: 9px;
        background: rgba(13, 74, 56, .18);
        margin: 0 auto 15px;
    }

    .sheet-heading h2 {
        font-size: 21px;
    }

    .lightbox {
        padding: 0;
    }

    .lightbox-dialog {
        width: 100%;
        height: 100%;
        border: 0;
        border-radius: 0;
    }

    .lightbox-copy {
        padding-inline: 20px;
        padding-bottom: calc(28px + env(safe-area-inset-bottom));
    }

    .site-footer {
        padding-top: 42px;
    }

    .footer-grid {
        align-items: start;
        flex-direction: column;
        gap: 13px;
    }

    .footer-copy {
        margin-inline-start: 53px;
    }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        scroll-behavior: auto !important;
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }

    [data-reveal] {
        opacity: 1;
        translate: 0;
    }

    .motion-canvas,
    .cursor-aura {
        display: none;
    }

    .aurora,
    .film-grain,
    .hero-image-wrap {
        animation: none !important;
    }
}

@media (hover: none) {
    .gallery-caption {
        max-height: 40px;
        margin-top: 4px;
        opacity: 1;
    }

    [data-tilt] {
        transform: none !important;
    }
}
