﻿:root {
    --bg: #120f0d;
    --bg-soft: #1b1714;
    --surface: rgba(255, 248, 236, 0.06);
    --surface-strong: #f7ecde;
    --text: #f9efe4;
    --text-dark: #2a201b;
    --muted: #cfbca8;
    --primary: #c99a45;
    --primary-deep: #8f6424;
    --accent: #e4bd72;
    --line: rgba(255, 255, 255, 0.08);
    --shadow: 0 24px 80px rgba(0, 0, 0, 0.25);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: "Cairo", sans-serif;
    color: var(--text);
    user-select: none;
    -webkit-user-select: none;
    background:
        radial-gradient(circle at top right, rgba(228, 189, 114, 0.16), transparent 22%),
        radial-gradient(circle at left center, rgba(201, 154, 69, 0.16), transparent 30%),
        linear-gradient(180deg, #17120f 0%, #120f0d 45%, #1a1411 100%);
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
    background-size: 72px 72px;
    opacity: 0.18;
    pointer-events: none;
}

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

button {
    font: inherit;
}

strong {
    font-weight: 800;
}

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

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    background: rgba(18, 15, 13, 0.78);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--line);
}

.nav-wrap,
.footer-wrap,
.booking-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.nav-wrap {
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    min-width: 0;
    flex-shrink: 1;
}

.brand-logo {
    display: block;
    width: 64px;
    height: 64px;
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.22));
}

.brand-text {
    color: var(--text);
    font-size: 1rem;
    font-weight: 800;
    white-space: nowrap;
}

.nav {
    display: flex;
    gap: 28px;
    color: var(--muted);
    font-weight: 700;
}

.nav a {
    transition: color 0.2s ease, transform 0.2s ease;
}

.nav a:hover {
    color: var(--text);
    transform: translateY(-1px);
}

.nav-cta,
.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 14px 24px;
    border-radius: 999px;
    border: 0;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.nav-cta,
.button-primary {
    color: #fff;
    background: linear-gradient(135deg, var(--primary), var(--primary-deep));
    box-shadow: 0 14px 34px rgba(143, 100, 36, 0.28);
}

.button-secondary {
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #fff2dd;
    background: rgba(255, 255, 255, 0.05);
}

.whatsapp-button {
    gap: 8px;
    color: #fff;
    background: linear-gradient(135deg, #25d366, #128c4a);
    box-shadow: 0 14px 34px rgba(18, 140, 74, 0.28);
}

.whatsapp-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #128c4a;
    background: #fff;
}

.whatsapp-icon svg {
    display: block;
    width: 17px;
    height: 17px;
    fill: currentColor;
}

.home-order-button {
    color: #24190d;
    border-color: rgba(228, 189, 114, 0.48);
    background: linear-gradient(135deg, #f0d28a, #b98633);
    box-shadow: 0 14px 34px rgba(143, 100, 36, 0.24);
}

.map-button {
    gap: 8px;
}

.map-button-red {
    color: #fff2dd;
    border-color: rgba(228, 189, 114, 0.22);
    background: rgba(255, 255, 255, 0.06);
    box-shadow: none;
}

.map-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 23px;
    height: 23px;
    border-radius: 50%;
    color: #24190d;
    background: #f0d28a;
}

.map-icon svg {
    display: block;
    width: 15px;
    height: 15px;
    fill: currentColor;
}

.nav-cta:hover,
.button:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.22);
}

.hero {
    padding: 64px 0 52px;
}

.hero-grid,
.story-grid,
.moments-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    align-items: center;
}

.eyebrow,
.section-label,
.card-tag,
.food-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(228, 189, 114, 0.14);
    border: 1px solid rgba(228, 189, 114, 0.18);
    color: #f0d28a;
    font-size: 0.92rem;
    font-weight: 800;
}

.hero-copy h1,
.section-copy h2,
.section-head h2,
.moments-intro h2,
.booking-box h2 {
    margin: 18px 0;
    line-height: 1.15;
    font-size: clamp(2.4rem, 5vw, 5rem);
    letter-spacing: -0.03em;
}

.section-copy h2,
.section-head h2,
.moments-intro h2,
.booking-box h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
}

.hero-copy p,
.story-card p,
.food-card p,
.feature p,
.booking-copy p,
.footer-brand p,
.footer-contact p,
.feature-panel p {
    margin: 0;
    color: var(--muted);
    line-height: 1.9;
    font-size: 1.02rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    margin: 34px 0 30px;
}

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

.hero-stats article,
.story-card,
.food-card,
.feature,
.booking-box,
.feature-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.hero-stats article {
    padding: 18px;
    border-radius: 24px;
}

.hero-stats strong {
    display: block;
    margin-bottom: 8px;
    font-size: 1.6rem;
}

.hero-stats span {
    color: var(--muted);
    line-height: 1.7;
    font-size: 0.92rem;
}

.hero-visual {
    display: grid;
    gap: 18px;
}

.feature-panel::before,
.story-card::before,
.food-card::before,
.feature::before,
.booking-box::before,
.hero-stats article::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 40%);
    pointer-events: none;
}

.feature-panel-main {
    min-height: 440px;
    padding: 28px;
    border-radius: 34px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: var(--text);
    background:
        linear-gradient(180deg, rgba(13, 10, 8, 0.02), rgba(13, 10, 8, 0.68)),
        url("../images/restaurant-interior-optimized.jpg") center/cover;
    transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.feature-panel-main:hover {
    transform: translateY(-4px);
    border-color: rgba(228, 189, 114, 0.38);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.gallery-trigger {
    width: 100%;
    border: 1px solid var(--line);
    font: inherit;
    text-align: right;
    cursor: pointer;
}

.feature-panel-main h2 {
    margin: 16px 0 0;
    max-width: 470px;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
}

.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-top: 18px;
    font-weight: 800;
}

.price-row strong {
    color: #fff2dd;
    font-size: 1.4rem;
}

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

.mini-panel {
    min-height: 180px;
    padding: 24px;
    border-radius: 28px;
}

.daily-special-trigger,
.featured-items-trigger {
    width: 100%;
    border: 1px solid var(--line);
    color: var(--text);
    font: inherit;
    text-align: right;
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.daily-special-trigger:hover,
.featured-items-trigger:hover {
    transform: translateY(-3px);
    border-color: rgba(228, 189, 114, 0.35);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.accent-panel {
    background:
        linear-gradient(135deg, rgba(201, 154, 69, 0.22), rgba(228, 189, 114, 0.08)),
        rgba(255, 255, 255, 0.05);
}

.mini-title {
    display: inline-block;
    margin-bottom: 12px;
    font-size: 1.2rem;
    font-weight: 800;
}

.section {
    padding: 42px 0 58px;
}

.offers {
    padding-top: 20px;
}

.offers-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 22px;
}

.offers-head h2 {
    margin: 14px 0 0;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.15;
}

.offers-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
    gap: 18px;
}

.offers-empty {
    padding: 34px 28px;
    border: 1px solid var(--line);
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(228, 189, 114, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.05);
    box-shadow: var(--shadow);
    text-align: center;
}

.offers-empty h2 {
    margin: 14px 0 0;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.3;
}

.offer-card {
    position: relative;
    overflow: hidden;
    min-height: 230px;
    border: 1px solid var(--line);
    border-radius: 30px;
    background:
        linear-gradient(135deg, rgba(228, 189, 114, 0.12), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.05);
    background-position: center;
    background-size: cover;
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.offer-card::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: linear-gradient(180deg, transparent 45%, rgba(12, 9, 8, 0.34));
    pointer-events: none;
}

.offer-card:hover {
    transform: translateY(-4px);
    border-color: rgba(228, 189, 114, 0.35);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
}

.offer-card-featured {
    min-height: 420px;
    grid-row: span 2;
}

.offer-content {
    position: relative;
    z-index: 2;
    min-height: inherit;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: flex-start;
    gap: 12px;
    padding: 24px;
}

.offer-content h3 {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 2.25rem);
    line-height: 1.3;
}

.offer-card:not(.offer-card-featured) .offer-content h3 {
    font-size: 1.35rem;
}

.offer-footer {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 4px;
}

.offer-footer strong {
    display: inline-flex;
    align-items: center;
    min-height: 40px;
    padding: 8px 14px;
    border-radius: 999px;
    color: #25150d;
    background: #f0d28a;
    font-size: 1.1rem;
}

.offer-footer span {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 800;
}

.offer-modal {
    position: fixed;
    inset: 0;
    z-index: 1340;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.offer-modal.is-open {
    display: flex;
}

.offer-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 6, 5, 0.76);
    backdrop-filter: blur(12px);
}

.offer-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(980px, 100%);
    max-height: min(88vh, 820px);
    display: grid;
    grid-template-columns: minmax(300px, 1fr) minmax(0, 0.9fr);
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(18, 14, 12, 0.96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.offer-modal-media {
    min-height: 430px;
    background: rgba(26, 20, 16, 0.96);
}

.offer-modal-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.offer-modal-content {
    min-height: 0;
    overflow: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
    padding: 34px 30px 30px;
}

.offer-modal-content h2 {
    margin: 0;
    font-size: clamp(1.65rem, 3vw, 2.45rem);
    line-height: 1.35;
}

.offer-modal-content p {
    margin: 0;
    color: rgba(255, 244, 227, 0.8);
    line-height: 1.9;
}

.offer-modal-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.offer-modal-meta strong {
    display: inline-flex;
    align-items: center;
    min-height: 44px;
    padding: 9px 16px;
    border-radius: 999px;
    color: #25150d;
    background: #f0d28a;
    font-size: 1.16rem;
}

.offer-modal-meta span {
    color: var(--muted);
    font-weight: 800;
}

.offer-modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(14, 11, 9, 0.72);
    color: #fff6e8;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.offer-modal-close:hover {
    transform: scale(1.04);
    background: rgba(32, 24, 20, 0.92);
    border-color: rgba(228, 189, 114, 0.34);
}

.story-card {
    padding: 32px;
    border-radius: 32px;
}

.story-points {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 24px;
}

.story-points span {
    padding: 10px 14px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 0.92rem;
    font-weight: 700;
}

.reviews {
    padding-top: 18px;
}

.reviews-panel {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
    padding: 28px;
    border-radius: 34px;
    border: 1px solid var(--line);
    background:
        radial-gradient(circle at top left, rgba(228, 189, 114, 0.16), transparent 34%),
        rgba(255, 255, 255, 0.055);
    box-shadow: var(--shadow);
}

.reviews-panel::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
    pointer-events: none;
}

.reviews-intro,
.reviews-cards {
    position: relative;
    z-index: 1;
}

.reviews-intro h2 {
    margin: 16px 0 10px;
    font-size: clamp(2rem, 4vw, 3.1rem);
    line-height: 1.15;
}

.reviews-intro p {
    margin: 0 0 22px;
    color: var(--muted);
    line-height: 1.9;
}

.reviews-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.review-card {
    min-height: 210px;
    padding: 18px;
    border-radius: 24px;
    border: 1px solid rgba(228, 189, 114, 0.14);
    background: rgba(12, 9, 8, 0.24);
}

.review-card span {
    display: inline-block;
    margin-bottom: 14px;
    color: #f0d28a;
    letter-spacing: 0.08em;
    font-size: 0.95rem;
}

.review-card h3 {
    margin: 0 0 10px;
    font-size: 1.08rem;
}

.review-card p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 0.92rem;
}

.section-head {
    max-width: 760px;
    margin-bottom: 24px;
}

.cards,
.features {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.food-card,
.feature {
    padding: 26px;
    border-radius: 28px;
}

.food-card h3,
.feature h3 {
    margin: 18px 0 10px;
    font-size: 1.42rem;
}

.highlighted-card {
    transform: translateY(-10px);
    background:
        linear-gradient(180deg, rgba(228, 189, 114, 0.14), rgba(255, 255, 255, 0.05)),
        rgba(255, 255, 255, 0.05);
}

.card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: 18px;
    color: var(--muted);
}

.card-footer strong {
    color: #fff0d7;
    font-size: 1.25rem;
}

.booking-box {
    padding: 34px;
    border-radius: 36px;
}

.booking-copy {
    max-width: 720px;
}

.booking-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.site-footer {
    padding: 12px 0 36px;
}

.gallery-modal {
    position: fixed;
    inset: 0;
    z-index: 1300;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.gallery-modal.is-open {
    display: flex;
}

.gallery-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 6, 5, 0.78);
    backdrop-filter: blur(12px);
}

.gallery-dialog {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background: rgba(18, 14, 12, 0.94);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.gallery-image {
    display: block;
    width: 100%;
    max-height: min(72vh, 680px);
    object-fit: contain;
    background: #0f0b09;
}

.gallery-close,
.gallery-nav {
    position: absolute;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(14, 11, 9, 0.74);
    color: #fff6e8;
    cursor: pointer;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.gallery-close:hover,
.gallery-nav:hover {
    transform: scale(1.04);
    border-color: rgba(228, 189, 114, 0.42);
    background: rgba(32, 24, 20, 0.94);
}

.gallery-close {
    top: 16px;
    left: 16px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 1.7rem;
    line-height: 1;
}

.gallery-nav {
    top: 50%;
    width: 48px;
    height: 64px;
    border-radius: 999px;
    font-size: 2.4rem;
    transform: translateY(-50%);
}

.gallery-nav:hover {
    transform: translateY(-50%) scale(1.04);
}

.gallery-prev {
    right: 18px;
}

.gallery-next {
    left: 18px;
}

.gallery-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 14px 18px;
    color: #fff2dd;
    background: rgba(255, 255, 255, 0.045);
}

.gallery-footer span {
    color: var(--muted);
    font-weight: 800;
}

.daily-special-modal {
    position: fixed;
    inset: 0;
    z-index: 1320;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.daily-special-modal.is-open {
    display: flex;
}

.daily-special-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(8, 6, 5, 0.76);
    backdrop-filter: blur(12px);
}

.daily-special-dialog {
    position: relative;
    z-index: 1;
    width: min(1040px, 100%);
    max-height: min(86vh, 820px);
    overflow: auto;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(18, 14, 12, 0.96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.daily-special-head {
    padding: 28px 28px 14px;
}

.daily-special-head h2 {
    margin: 14px 0 8px;
    font-size: clamp(1.55rem, 3vw, 2.35rem);
}

.daily-special-head p {
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
}

.daily-special-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    padding: 14px 28px 28px;
}

.daily-special-card {
    overflow: hidden;
    border-radius: 22px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.045);
}

.daily-special-image {
    display: block;
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: center;
    background: #201914;
}

.daily-special-content {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.daily-special-content h3 {
    margin: 0;
    font-size: 1.1rem;
}

.daily-special-content p {
    margin: 0;
    color: rgba(255, 244, 227, 0.78);
    line-height: 1.8;
    font-size: 0.92rem;
}

.daily-special-close {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(14, 11, 9, 0.72);
    color: #fff6e8;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.daily-special-close:hover {
    transform: scale(1.04);
    background: rgba(32, 24, 20, 0.92);
    border-color: rgba(228, 189, 114, 0.34);
}

.daily-special-empty {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin: 14px 28px 28px;
    padding: 22px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.045);
    color: var(--muted);
}

.daily-special-empty strong {
    color: var(--text);
}

.footer-brand strong {
    display: inline-block;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.footer-contact {
    text-align: left;
}

.menu-page {
    padding-bottom: 28px;
}

.menu-hero {
    padding: 48px 0 24px;
}

.menu-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 20px;
    align-items: start;
}

.menu-hero-copy h1 {
    margin: 14px 0;
    line-height: 1.15;
    font-size: clamp(1.95rem, 3.8vw, 3.4rem);
    letter-spacing: -0.03em;
}

.menu-hero-copy p,
.menu-section-head p,
.menu-item p,
.summary-list span {
    color: var(--muted);
    line-height: 1.85;
    font-size: 1rem;
}

.menu-summary,
.menu-item {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--line);
    background: var(--surface);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
}

.menu-summary::before,
.menu-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
    pointer-events: none;
}

.menu-summary {
    padding: 22px;
    border-radius: 28px;
}

.menu-summary h2 {
    margin: 14px 0 16px;
    font-size: 1.65rem;
}

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

.category-shortcuts {
    position: sticky;
    top: 84px;
    z-index: 20;
    padding: 10px 0;
    background:
        linear-gradient(180deg, rgba(15, 11, 9, 0.98), rgba(15, 11, 9, 0.9)),
        radial-gradient(circle at center, rgba(228, 189, 114, 0.1), transparent 62%);
    backdrop-filter: blur(12px);
    border-block: 1px solid rgba(255, 255, 255, 0.06);
}

.category-shortcuts-frame {
    position: relative;
    border-radius: 999px;
    border: 1px solid rgba(228, 189, 114, 0.16);
    background: rgba(255, 255, 255, 0.045);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.category-shortcuts-frame::before,
.category-shortcuts-frame::after {
    content: "";
    position: absolute;
    top: 6px;
    bottom: 6px;
    z-index: 2;
    width: 42px;
    pointer-events: none;
}

.category-shortcuts-frame::before {
    right: 0;
    border-radius: 0 999px 999px 0;
    background: linear-gradient(90deg, transparent, rgba(15, 11, 9, 0.96));
}

.category-shortcuts-frame::after {
    left: 0;
    border-radius: 999px 0 0 999px;
    background: linear-gradient(270deg, transparent, rgba(15, 11, 9, 0.96));
}

.category-shortcuts-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 6px 20px;
    scrollbar-width: none;
    scroll-snap-type: x proximity;
}

.category-shortcuts-scroll::-webkit-scrollbar {
    display: none;
}

.category-shortcuts a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid transparent;
    color: rgba(255, 244, 227, 0.82);
    background: transparent;
    font-size: 0.88rem;
    font-weight: 800;
    white-space: nowrap;
    scroll-snap-align: start;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.category-shortcuts a:hover {
    transform: translateY(-1px);
    color: #22170c;
    border-color: rgba(228, 189, 114, 0.58);
    background: linear-gradient(135deg, #f0d28a, #b98633);
    box-shadow: 0 10px 24px rgba(143, 100, 36, 0.22);
}

.shortcut-hint {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 7px;
    color: rgba(255, 244, 227, 0.62);
    font-size: 0.78rem;
    font-weight: 800;
}

.shortcut-hint span {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #e4bd72;
    box-shadow:
        10px 0 0 rgba(228, 189, 114, 0.54),
        -10px 0 0 rgba(228, 189, 114, 0.54);
}

.category-grid {
    column-count: 2;
    column-gap: 22px;
}

.category-card {
    position: relative;
    overflow: hidden;
    display: inline-block;
    width: 100%;
    margin-bottom: 22px;
    padding: 20px;
    border-radius: 24px;
    border: 1px solid var(--line);
    background: var(--surface);
    backdrop-filter: blur(12px);
    box-shadow: var(--shadow);
    break-inside: avoid;
}

.category-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
    pointer-events: none;
}

.category-head {
    margin-bottom: 16px;
}

.category-head h2 {
    margin: 12px 0 0;
    font-size: 1.55rem;
}

.price-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(228, 189, 114, 0.14);
    border: 1px solid rgba(228, 189, 114, 0.3);
    color: #f3dca4;
    font-size: 0.92rem;
    font-weight: 900;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.price-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

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

.menu-item-card {
    position: relative;
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    box-shadow: var(--shadow);
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.menu-item-card:hover {
    transform: translateY(-3px);
    border-color: rgba(228, 189, 114, 0.35);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.menu-item-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), transparent 42%);
    pointer-events: none;
}

.menu-item-image {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    background: #201914;
}

.menu-item-content {
    padding: 12px 14px 14px;
}

.menu-item-title-row {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.menu-item-title-row h3 {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.menu-item-card:not(.has-image) .menu-item-content {
    min-height: 82px;
    display: flex;
    align-items: center;
}

.summary-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 14px;
}

.summary-list li {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.summary-list li:last-child {
    border-bottom: 0;
    padding-bottom: 0;
}

.summary-list strong {
    font-size: 0.95rem;
}

.daily-items-grid {
    display: grid;
    gap: 12px;
}

.daily-item-card {
    overflow: hidden;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.04);
    cursor: pointer;
    transition: transform 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}

.daily-item-card:hover {
    transform: translateY(-3px);
    border-color: rgba(228, 189, 114, 0.35);
    box-shadow: 0 18px 30px rgba(0, 0, 0, 0.22);
}

.daily-item-image {
    display: block;
    width: 100%;
    height: 150px;
    object-fit: cover;
    object-position: center;
    background: #201914;
}

.daily-item-content {
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
}

.daily-item-content strong {
    font-size: 0.95rem;
    line-height: 1.6;
}

.daily-item-card:not(.has-image) .daily-item-content {
    min-height: 82px;
    justify-content: center;
}

.modal-open {
    overflow: hidden;
}

.item-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.item-modal.is-open {
    display: flex;
}

.item-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 7, 6, 0.72);
    backdrop-filter: blur(10px);
}

.item-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    display: grid;
    grid-template-columns: minmax(280px, 0.95fr) minmax(0, 1fr);
    gap: 0;
    overflow: hidden;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(18, 14, 12, 0.94);
    box-shadow: 0 28px 70px rgba(0, 0, 0, 0.38);
}

.item-modal-media-wrap {
    min-height: 100%;
    background:
        radial-gradient(circle at top, rgba(228, 189, 114, 0.14), transparent 58%),
        rgba(26, 20, 16, 0.96);
}

.item-modal-image {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
    object-position: center;
}

.item-modal-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 18px;
    padding: 34px 30px 30px;
}

.item-modal-title {
    margin: 0;
    font-size: 1.75rem;
    line-height: 1.4;
}

.item-modal-description {
    margin: 0;
    color: rgba(255, 244, 227, 0.78);
    font-size: 0.96rem;
    line-height: 1.9;
}

.item-modal-description:empty {
    display: none;
}

.item-modal-prices {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.item-modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    z-index: 2;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(14, 11, 9, 0.72);
    color: #fff6e8;
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.item-modal-close:hover {
    transform: scale(1.04);
    background: rgba(32, 24, 20, 0.92);
    border-color: rgba(228, 189, 114, 0.34);
}

.order-modal {
    position: fixed;
    inset: 0;
    z-index: 1330;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.order-modal.is-open {
    display: flex;
}

.contact-modal {
    position: fixed;
    inset: 0;
    z-index: 1330;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 22px;
}

.contact-modal.is-open {
    display: flex;
}

.order-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(9, 7, 6, 0.72);
    backdrop-filter: blur(10px);
}

.order-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(480px, 100%);
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(18, 14, 12, 0.96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.contact-modal-dialog {
    position: relative;
    z-index: 1;
    width: min(560px, 100%);
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.13);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03)),
        rgba(18, 14, 12, 0.96);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.42);
}

.order-modal-dialog h2 {
    margin: 16px 0 8px;
    font-size: 1.65rem;
}

.contact-modal-dialog h2 {
    margin: 16px 0 14px;
    font-size: 1.65rem;
}

.order-modal-dialog p {
    margin: 0 0 20px;
    color: var(--muted);
    line-height: 1.8;
}

.contact-detail-list {
    display: grid;
    gap: 12px;
    margin-bottom: 20px;
}

.contact-detail-list p {
    margin: 0;
    padding: 14px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.045);
}

.contact-detail-list strong,
.contact-detail-list span,
.contact-detail-list a {
    display: block;
}

.contact-detail-list strong {
    margin-bottom: 4px;
    color: #f0d28a;
    font-size: 0.86rem;
}

.contact-detail-list span,
.contact-detail-list a {
    color: var(--text);
    line-height: 1.7;
    font-weight: 800;
}

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

.order-modal-close {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 2;
    width: 38px;
    height: 38px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    background: rgba(14, 11, 9, 0.72);
    color: #fff6e8;
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.order-modal-close:hover {
    transform: scale(1.04);
    background: rgba(32, 24, 20, 0.92);
    border-color: rgba(228, 189, 114, 0.34);
}

.menu-section {
    padding-top: 28px;
}

.menu-section-head {
    max-width: 780px;
}

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

.menu-item {
    padding: 24px;
    border-radius: 28px;
}

.menu-item-head {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 12px;
}

.menu-item-head h3 {
    margin: 0;
    font-size: 1.35rem;
}

.menu-item-head strong {
    color: #fff0d7;
    font-size: 1.1rem;
    white-space: nowrap;
}

.featured-menu-item {
    background:
        linear-gradient(180deg, rgba(228, 189, 114, 0.14), rgba(255, 255, 255, 0.04)),
        rgba(255, 255, 255, 0.05);
}

@media (max-width: 960px) {
    .nav {
        display: none;
    }

    .nav-wrap {
        gap: 14px;
    }

    .brand-text {
        font-size: 0.92rem;
    }

    .nav-cta {
        min-height: 44px;
        padding: 10px 16px;
        font-size: 0.9rem;
    }

    .hero-grid,
    .story-grid,
    .moments-grid,
    .menu-hero-grid,
    .offers-grid,
    .reviews-panel,
    .cards,
    .features,
    .menu-items-grid,
    .menu-grid,
    .footer-wrap,
    .booking-box,
    .hero-mini-grid {
        grid-template-columns: 1fr;
    }

    .footer-wrap,
    .booking-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-grid {
        column-count: 1;
    }

    .category-shortcuts {
        top: 76px;
        padding: 8px 0;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .highlighted-card {
        transform: none;
    }

    .offer-card-featured {
        min-height: 340px;
        grid-row: auto;
    }

    .offer-modal-dialog {
        grid-template-columns: 1fr;
    }

    .offer-modal-media {
        min-height: 300px;
    }

    .reviews-cards {
        grid-template-columns: 1fr;
    }

    .feature-panel-main {
        min-height: 360px;
    }

    .footer-contact {
        text-align: right;
    }

    .summary-list li {
        align-items: flex-start;
    }

    .daily-item-image {
        height: 190px;
    }

    .menu-item-image {
        height: 190px;
    }

    .item-modal-dialog {
        grid-template-columns: 1fr;
        max-width: 560px;
    }

    .item-modal-image {
        min-height: 250px;
        max-height: 320px;
    }

    .daily-special-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .container {
        width: min(100% - 24px, 100%);
    }

    .nav-wrap {
        min-height: 76px;
    }

    .brand {
        gap: 9px;
    }

    .brand-text {
        max-width: 46vw;
        overflow: hidden;
        text-overflow: ellipsis;
        font-size: 0.84rem;
    }

    .category-shortcuts {
        top: 76px;
        padding: 6px 0 12px;
    }

    .category-shortcuts-frame {
        width: min(100% - 24px, 100%);
        border-radius: 18px;
    }

    .category-shortcuts-scroll {
        padding: 6px 18px;
    }

    .category-shortcuts a {
        min-height: 38px;
        padding: 8px 13px;
        font-size: 0.82rem;
    }

    .shortcut-hint {
        font-size: 0.74rem;
    }

    .brand-logo {
        width: 52px;
        height: 52px;
    }

    .hero {
        padding-top: 40px;
    }

    .hero-copy h1,
    .menu-hero-copy h1,
    .section-copy h2,
    .section-head h2,
    .moments-intro h2,
    .booking-box h2 {
        font-size: 1.95rem;
    }

    .hero-actions,
    .offers-head,
    .booking-actions {
        flex-direction: column;
        align-items: stretch;
    }

    .nav-cta,
    .button {
        width: 100%;
    }

    .nav-wrap .nav-cta {
        width: auto;
        flex: 0 0 auto;
    }

    .story-card,
    .reviews-panel,
    .offer-card,
    .food-card,
    .feature,
    .menu-summary,
    .menu-item,
    .booking-box,
    .feature-panel-main,
    .mini-panel {
        border-radius: 24px;
    }

    .menu-item-head {
        flex-direction: column;
    }

    .offer-content {
        padding: 20px;
    }

    .reviews-panel {
        padding: 22px;
    }

    .review-card {
        min-height: auto;
    }

    .offer-card,
    .offer-card-featured {
        min-height: 310px;
    }

    .offer-modal {
        padding: 12px;
    }

    .offer-modal-dialog {
        border-radius: 22px;
        max-height: 88vh;
        overflow: auto;
    }

    .offer-modal-media {
        min-height: 0;
        height: clamp(180px, 42vh, 280px);
    }

    .offer-modal-content {
        padding: 24px 20px 22px;
        gap: 14px;
        overflow: visible;
    }

    .offer-modal-close {
        top: 12px;
        left: 12px;
        width: 38px;
        height: 38px;
        font-size: 1.45rem;
    }

    .price-badge {
        width: fit-content;
    }

    .daily-item-image {
        height: clamp(170px, 44vw, 220px);
    }

    .menu-item-image {
        height: clamp(170px, 44vw, 220px);
    }

    .item-modal {
        padding: 14px;
    }

    .item-modal-content {
        padding: 24px 20px 22px;
        gap: 14px;
    }

    .item-modal-title {
        font-size: 1.35rem;
    }

    .item-modal-description {
        font-size: 0.9rem;
        line-height: 1.8;
    }

    .item-modal-image {
        min-height: 220px;
        max-height: 260px;
    }

    .item-modal-close {
        top: 12px;
        left: 12px;
        width: 38px;
        height: 38px;
        font-size: 1.45rem;
    }

    .gallery-modal {
        padding: 12px;
    }

    .gallery-dialog {
        border-radius: 22px;
    }

    .gallery-image {
        max-height: 70vh;
    }

    .gallery-nav {
        width: 40px;
        height: 54px;
        font-size: 2rem;
    }

    .gallery-prev {
        right: 10px;
    }

    .gallery-next {
        left: 10px;
    }

    .gallery-footer {
        padding: 12px 14px;
        font-size: 0.88rem;
    }

    .daily-special-modal {
        padding: 12px;
    }

    .daily-special-dialog {
        border-radius: 22px;
    }

    .daily-special-head {
        padding: 24px 18px 10px;
    }

    .daily-special-grid {
        padding: 12px 18px 22px;
    }

    .daily-special-image {
        height: clamp(180px, 46vw, 240px);
    }

    .daily-special-close {
        top: 12px;
        left: 12px;
        width: 38px;
        height: 38px;
        font-size: 1.45rem;
    }

    .order-modal {
        padding: 14px;
    }

    .contact-modal {
        padding: 14px;
    }

    .order-modal-dialog {
        padding: 24px 20px 20px;
        border-radius: 22px;
    }

    .contact-modal-dialog {
        padding: 24px 20px 20px;
        border-radius: 22px;
    }

    .order-actions {
        grid-template-columns: 1fr;
    }

}
