/* ═══════════════════════════════════════════════════════════════
   Rishi's Edinburgh — Design System
   Premium Indian Restaurant | PHP Version
   ═══════════════════════════════════════════════════════════════ */

/* ─── Google Fonts ─── */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500&family=Inter:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;1,400;1,500&display=swap');

/* ─── CSS Variables ─── */
:root {
    /* Colors */
    --charcoal: #1a1a1a;
    --charcoal-light: #2a2a2a;
    --charcoal-medium: #333333;
    --gold: #c9a84c;
    --gold-light: #d4b85e;
    --gold-dark: #b89638;
    --cream: #f5f0e8;
    --cream-dark: #e8e0d0;
    --warm-white: #faf8f5;
    --white: #ffffff;

    /* Typography */
    --font-heading: 'Playfair Display', 'Georgia', serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;

    /* Spacing */
    --section-py: 80px;
    --container-max: 1200px;
    --container-px: 24px;

    /* Transitions */
    --transition: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 30px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* ─── Reset ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--charcoal);
    background: var(--warm-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul,
ol {
    list-style: none;
}

/* ─── Typography ─── */
.heading-hero {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.heading-1 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
}

.heading-2 {
    font-family: var(--font-heading);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 600;
    line-height: 1.2;
}

.heading-3 {
    font-family: var(--font-heading);
    font-size: clamp(1.15rem, 2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.3;
}

.body-large {
    font-size: 1.05rem;
    line-height: 1.75;
}

.accent-text {
    font-family: var(--font-accent);
    font-style: italic;
}

/* ─── Layout ─── */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-px);
}

.section {
    padding: var(--section-py) 0;
}

.section-warm {
    background: var(--warm-white);
}

.section-cream {
    background: var(--cream);
}

.section-dark {
    background: var(--charcoal);
    color: var(--cream);
}

/* ─── Gold Decorative Lines ─── */
.gold-line {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
}

.gold-line-center {
    width: 60px;
    height: 3px;
    background: var(--gold);
    border-radius: 2px;
    margin: 0 auto;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold);
    color: var(--charcoal);
    border-color: var(--gold);
}

.btn-primary:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--cream);
    border-color: var(--cream);
}

.btn-outline:hover {
    background: var(--cream);
    color: var(--charcoal);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--charcoal);
}

.btn-outline-dark:hover {
    background: var(--charcoal);
    color: var(--cream);
}

/* ═══════════════════════════════════════════════════════════════
   HEADER / NAVBAR
   ═══════════════════════════════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(12px);
    padding: 10px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.navbar-brand-group {
    margin-right: auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    transition: flex-direction var(--transition-slow), gap var(--transition-slow);
}

/* When the navbar is scrolled/sticky, collapse logo + branch pill onto one row
   so the overall navbar is shorter (prevents hiding sticky sub-navs like
   .oo-cat-nav at top: 70px on the ordering page). */
.navbar.scrolled .navbar-brand-group {
    flex-direction: row;
    align-items: center;
    gap: 12px;
}

.navbar-brand {
    display: flex;
    flex-direction: column;
}

.header-logo {
    max-height: 80px;
    width: auto;
    transition: max-height var(--transition-slow);
}

.navbar.scrolled .header-logo {
    max-height: 42px;
}

.navbar-brand .brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--cream);
    line-height: 1.1;
}

.navbar-brand .brand-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    color: var(--gold);
    letter-spacing: 0.35em;
    text-transform: uppercase;
}

.branch-selector {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 10px;
    border-radius: 20px;
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.branch-selector:hover {
    background: rgba(201, 168, 76, 0.25);
    border-color: var(--gold);
}

.branch-selector svg,
.branch-selector .icon-xs {
    width: 11px;
    height: 11px;
    stroke: var(--gold);
}

.navbar.scrolled .branch-selector {
    padding: 2px 8px;
    font-size: 0.55rem;
}

.navbar-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.navbar-links a {
    font-size: 0.7rem;
    font-weight: 500;
    color: var(--cream);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    opacity: 0.8;
    transition: var(--transition);
    position: relative;
}

.navbar-links a:hover,
.navbar-links a.active {
    opacity: 1;
    color: var(--gold);
}

.navbar-links a.active::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
}

.navbar-cta {
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-cta .call-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.7rem;
    color: var(--cream);
    opacity: 0.7;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.navbar-cta .call-btn:hover {
    opacity: 1;
}

.navbar-cta .book-btn {
    padding: 10px 20px;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    border: 1px solid var(--gold);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.navbar-cta .book-btn:hover {
    background: var(--gold);
    color: var(--charcoal);
}

.navbar-cta .order-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--gold);
    color: var(--charcoal);
    border: 1px solid var(--gold);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: var(--transition);
}

.navbar-cta .order-btn:hover {
    background: transparent;
    color: var(--gold);
}

/* ─── Offcanvas Burger Toggle (always visible) ─── */
.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.25);
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 12px;
    transition: all var(--transition);
    flex-shrink: 0;
}

.menu-toggle:hover {
    background: rgba(201, 168, 76, 0.25);
    border-color: var(--gold);
}

.menu-toggle span {
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 1px;
    transition: var(--transition);
}

/* ─── Offcanvas Backdrop ─── */
.offcanvas-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.offcanvas-backdrop.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ─── Offcanvas Panel ─── */
.offcanvas-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 320px;
    max-width: 85vw;
    background: rgba(22, 22, 22, 0.98);
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(201, 168, 76, 0.15);
    z-index: 1060;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.5);
}

.offcanvas-menu.open {
    transform: translateX(0);
}

.offcanvas-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.offcanvas-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--cream);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.offcanvas-close {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--cream);
    font-size: 1.5rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    line-height: 1;
}

.offcanvas-close:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: rgba(201, 168, 76, 0.3);
    color: var(--gold);
}

.offcanvas-body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 0;
}

.offcanvas-section {
    padding: 4px 16px;
}

.offcanvas-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.06);
    margin: 8px 24px;
}

.offcanvas-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    color: var(--cream);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 8px;
    transition: all 0.2s ease;
    position: relative;
}

.offcanvas-link svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    opacity: 0.6;
    transition: opacity 0.2s ease;
}

.offcanvas-link:hover {
    background: rgba(201, 168, 76, 0.1);
    color: var(--gold);
    padding-left: 20px;
}

.offcanvas-link:hover svg {
    opacity: 1;
    stroke: var(--gold);
}

.offcanvas-link.active {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold);
}

.offcanvas-link.active svg {
    opacity: 1;
    stroke: var(--gold);
}

.offcanvas-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 3px;
    background: var(--gold);
    border-radius: 0 3px 3px 0;
}

.offcanvas-link--gold {
    color: var(--gold);
}

.offcanvas-link--gold svg {
    opacity: 0.8;
    stroke: var(--gold);
}

.offcanvas-link--danger {
    color: #ef4444;
}

.offcanvas-link--danger svg {
    stroke: #ef4444;
    opacity: 0.7;
}

.offcanvas-link--danger:hover {
    background: rgba(239, 68, 68, 0.1);
    color: #f87171;
}

/* ─── Drawer refactor: primary tiles, section headers, loyalty chip, branch footer ─── */
/* Make drawer a flex column so the branch footer can pin to the bottom */
.offcanvas-menu {
    display: flex;
    flex-direction: column;
}

.offcanvas-body {
    display: flex;
    flex-direction: column;
    flex: 1;
    overflow: hidden;
    padding: 0;
}

.drawer-content {
    flex: 1;
    overflow-y: auto;
    padding: 14px 22px 18px;
}

.drawer-subtitle {
    display: block;
    margin-top: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.78rem;
    font-weight: 400;
    color: rgba(245, 240, 232, 0.6);
}

.drawer-tile-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 6px;
}

.drawer-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 14px 8px;
    min-height: 80px;
    border: 1px solid rgba(201, 168, 76, 0.35);
    background: rgba(201, 168, 76, 0.08);
    border-radius: 10px;
    color: var(--cream);
    text-decoration: none;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.2;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.drawer-tile:hover {
    background: rgba(201, 168, 76, 0.18);
    border-color: var(--gold);
    transform: translateY(-1px);
}

.drawer-tile svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
}

.drawer-section-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 0 6px;
    font-family: 'Inter', sans-serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

.drawer-section-header::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(201, 168, 76, 0.18);
}

/* Inside .drawer-content, offcanvas-section should sit flush (no extra horizontal padding) */
.drawer-content .offcanvas-section {
    padding: 0;
}

.drawer-loyalty-chip {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    margin-bottom: 8px;
    border: 1px dashed rgba(201, 168, 76, 0.5);
    background: rgba(201, 168, 76, 0.1);
    border-radius: 8px;
    color: var(--cream);
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    transition: background 0.2s ease;
}

.drawer-loyalty-chip:hover {
    background: rgba(201, 168, 76, 0.18);
}

.drawer-loyalty-chip svg {
    width: 16px;
    height: 16px;
    color: var(--gold);
}

.drawer-loyalty-chip strong {
    color: var(--gold);
    font-weight: 600;
}

.drawer-loyalty-chip .arrow {
    margin-left: auto;
    width: 14px;
    height: 14px;
    color: rgba(245, 240, 232, 0.5);
}

.drawer-branch-footer {
    padding: 14px 22px 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    background: rgba(0, 0, 0, 0.25);
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.7);
}

.drawer-branch-footer .row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.drawer-branch-footer .row svg {
    width: 14px;
    height: 14px;
    color: var(--gold);
}

.drawer-branch-footer .change-link {
    align-self: flex-start;
    margin-top: 2px;
    color: var(--gold);
    font-size: 0.72rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 500;
    text-decoration: none;
}

.drawer-branch-footer .change-link:hover {
    text-decoration: underline;
}

/* ─── Responsive: mobile adjustments ─── */
@media (max-width: 768px) {
    .navbar-links {
        display: none;
    }

    .navbar-cta .call-btn {
        display: none;
    }

    .branch-selector {
        display: none;
    }

    .navbar-cta .book-btn,
    .navbar-cta .order-btn {
        padding: 8px 12px;
        font-size: 0.65rem;
    }
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════════ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--charcoal);
}

.hero.hero-short {
    height: 50vh;
    min-height: 400px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* Animated Video-like Background Slider */
.hero-slider-container {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    background-color: var(--charcoal);
}

.hero-slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.05);
    animation: slideFade 36s infinite;
}

.slide-1 {
    animation-delay: 0s;
}

.slide-2 {
    animation-delay: 6s;
}

.slide-3 {
    animation-delay: 12s;
}

.slide-4 {
    animation-delay: 18s;
}

.slide-5 {
    animation-delay: 24s;
}

.slide-6 {
    animation-delay: 30s;
}

@keyframes slideFade {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }

    4% {
        opacity: 1;
        transform: scale(1.03);
    }

    16% {
        opacity: 1;
        transform: scale(1);
    }

    20% {
        opacity: 0;
        transform: scale(0.98);
    }

    100% {
        opacity: 0;
        transform: scale(0.98);
    }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top,
            rgba(26, 26, 26, 0.9) 0%,
            rgba(26, 26, 26, 0.4) 50%,
            rgba(26, 26, 26, 0.7) 100%);
    z-index: 10;
}

.hero-content {
    position: relative;
    z-index: 20;
    text-align: center;
    padding: 0 24px;
    max-width: 900px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 24px;
    border-radius: 50px;
    background: rgba(12, 10, 9, 0.6);
    border: 1px solid rgba(201, 168, 76, 0.5);
    backdrop-filter: blur(8px);
    color: var(--gold);
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 32px;
    box-shadow: 0 0 24px rgba(201, 168, 76, 0.2);
}

.hero-badge .badge-icon {
    font-size: 1rem;
    color: var(--gold);
}

.hero-title {
    font-family: var(--font-heading);
    color: var(--cream);
    margin-bottom: 24px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.5);
}

.hero-title-gradient {
    background: linear-gradient(135deg, #ffffff 0%, #e8c074 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.hero-title .accent {
    color: var(--gold);
    font-style: italic;
    text-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: rgba(245, 240, 232, 0.9);
    font-style: italic;
    margin-bottom: 40px;
    max-width: 700px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Feature Badge Premium */
.icon-badge-premium {
    background: linear-gradient(145deg, #1a1a1a, #2a2a2a);
    border: 1px solid rgba(201, 168, 76, 0.3);
    color: var(--gold);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5), inset 0 2px 4px rgba(255, 255, 255, 0.05);
    position: relative;
    border-radius: 50%;
    margin: 0 auto;
}

.icon-glow-ring {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(201, 168, 76, 0.4);
    animation: spin 12s linear infinite;
    pointer-events: none;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* ═══════════════════════════════════════════════════════════════
   SECTION HEADING COMPONENT
   ═══════════════════════════════════════════════════════════════ */
.section-heading {
    text-align: center;
    margin-bottom: 48px;
}

.section-heading .subtitle {
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.section-heading .title {
    font-family: var(--font-heading);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 600;
    margin-bottom: 16px;
}

.section-heading .description {
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
    opacity: 0.6;
    line-height: 1.7;
}

.section-heading.light .title {
    color: var(--cream);
}

.section-heading.light .description {
    color: rgba(245, 240, 232, 0.5);
}

/* ═══════════════════════════════════════════════════════════════
   PARALLAX STRIP
   ═══════════════════════════════════════════════════════════════ */
.parallax-strip {
    position: relative;
    padding: 80px 24px;
    overflow: hidden;
}

.parallax-strip .bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.parallax-strip .overlay {
    position: absolute;
    inset: 0;
    background: rgba(26, 26, 26, 0.82);
}

.parallax-strip .content {
    position: relative;
    z-index: 10;
    text-align: center;
}

/* ═══════════════════════════════════════════════════════════════
   CARDS
   ═══════════════════════════════════════════════════════════════ */
/* Signature Dish Card */
.dish-card {
    background: rgba(42, 42, 42, 0.5);
    border: 1px solid rgba(245, 240, 232, 0.1);
    border-radius: 8px;
    overflow: hidden;
    transition: all var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dish-card:hover {
    border-color: rgba(201, 168, 76, 0.3);
    transform: translateY(-4px);
}

.dish-card .card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--charcoal-light), var(--charcoal));
}

.dish-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

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

.dish-card .card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(201, 168, 76, 0.9);
    color: var(--charcoal);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
}

.dish-card .card-body {
    padding: 20px;
    flex: 1;
}

.dish-card .card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--cream);
    margin-bottom: 4px;
}

.dish-card .card-body .price {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9rem;
}

.dish-card .card-body p {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.85rem;
    line-height: 1.6;
    margin-top: 8px;
}

/* Review Card */
.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.review-card .stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
    color: var(--gold);
}

.review-card .review-text {
    color: rgba(26, 26, 26, 0.7);
    font-size: 0.9rem;
    line-height: 1.7;
    flex: 1;
    margin-bottom: 24px;
    font-style: italic;
}

.review-card .review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid var(--cream);
    padding-top: 16px;
}

.review-card .review-name {
    font-weight: 600;
    font-size: 0.9rem;
}

.review-card .review-source {
    font-size: 0.65rem;
    color: rgba(26, 26, 26, 0.4);
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* Feature Card (Why Choose Us) */
.feature-card {
    text-align: center;
    padding: 16px;
}

.feature-card .icon-circle {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    border-radius: 50%;
    border: 2px solid rgba(201, 168, 76, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    transition: all var(--transition-slow);
}

.feature-card:hover .icon-circle {
    background: var(--gold);
    color: var(--charcoal);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    margin-bottom: 12px;
}

.feature-card p {
    color: rgba(26, 26, 26, 0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ═══════════════════════════════════════════════════════════════
   GRID LAYOUTS
   ═══════════════════════════════════════════════════════════════ */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.grid-4 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr 1fr;
    }

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

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

@media (min-width: 1024px) {
    .grid-4 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ═══════════════════════════════════════════════════════════════
   MENU PAGE
   ═══════════════════════════════════════════════════════════════ */
.menu-hero {
    position: relative;
    height: 50vh;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--charcoal);
}

.menu-tabs {
    position: sticky;
    top: 60px;
    z-index: 30;
    background: rgba(250, 248, 245, 0.95);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--cream-dark);
}

.menu-tabs-inner {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 12px 0;
    scrollbar-width: none;
}

.menu-tabs-inner::-webkit-scrollbar {
    display: none;
}

.menu-tab {
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    white-space: nowrap;
    cursor: pointer;
    transition: all var(--transition);
    background: transparent;
    color: rgba(26, 26, 26, 0.6);
    border: none;
}

.menu-tab:hover {
    color: var(--charcoal);
    background: var(--cream);
}

.menu-tab.active {
    background: var(--charcoal);
    color: var(--cream);
    box-shadow: var(--shadow-md);
}

/* Menu Item Card */
.menu-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-slow);
    border: 1px solid transparent;
    cursor: pointer;
}

.menu-item:hover {
    box-shadow: var(--shadow-lg);
}

.menu-item.has-badge {
    border-color: rgba(201, 168, 76, 0.25);
}

.menu-item-inner {
    display: flex;
}

.menu-item-image {
    width: 96px;
    height: 96px;
    flex-shrink: 0;
    overflow: hidden;
}

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

@media (min-width: 768px) {
    .menu-item-image {
        width: 112px;
        height: 112px;
    }
}

.menu-item-content {
    flex: 1;
    padding: 16px;
    min-width: 0;
}

.menu-item-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 4px;
}

.menu-item-name {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-item-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 0.9rem;
    white-space: nowrap;
}

.menu-item-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.55rem;
    font-weight: 700;
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.2);
    flex-shrink: 0;
}

.menu-item-desc {
    color: rgba(26, 26, 26, 0.5);
    font-size: 0.75rem;
    line-height: 1.5;
    margin-bottom: 8px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.menu-item-tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.55rem;
    font-weight: 500;
    border: 1px solid;
}

.tag-veg {
    background: rgba(34, 197, 94, 0.1);
    color: #15803d;
    border-color: rgba(34, 197, 94, 0.2);
}

.tag-vegan {
    background: rgba(16, 185, 129, 0.1);
    color: #047857;
    border-color: rgba(16, 185, 129, 0.2);
}

.tag-spicy {
    background: rgba(239, 68, 68, 0.08);
    color: #dc2626;
    border-color: rgba(239, 68, 68, 0.2);
}

.tag-mild {
    background: rgba(234, 179, 8, 0.08);
    color: #a16207;
    border-color: rgba(234, 179, 8, 0.2);
}

.tag-gf {
    background: rgba(217, 119, 6, 0.1);
    color: #b45309;
    border-color: rgba(217, 119, 6, 0.2);
}

/* Menu Variants Expandable */
.menu-item-variants {
    display: none;
    padding: 0 16px 16px;
    border-top: 1px solid rgba(232, 224, 208, 0.5);
    margin-top: -1px;
}

.menu-item-variants.open {
    display: block;
}

.variant-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding-top: 12px;
}

.variant-pill {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--warm-white);
    border-radius: 8px;
    padding: 8px 12px;
}

.variant-pill .label {
    font-size: 0.75rem;
    color: var(--charcoal);
    font-weight: 500;
}

.variant-pill .price {
    font-size: 0.75rem;
    color: var(--gold);
    font-weight: 700;
}

/* ═══════════════════════════════════════════════════════════════
   GALLERY PAGE
   ═══════════════════════════════════════════════════════════════ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.gallery-item {
    position: relative;
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 26, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: flex-end;
    padding: 16px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item .gallery-caption {
    color: var(--cream);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
}

.lightbox-close:hover {
    opacity: 1;
}

/* ═══════════════════════════════════════════════════════════════
   CONTACT PAGE
   ═══════════════════════════════════════════════════════════════ */
.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.6);
    margin-bottom: 8px;
}

.contact-form input,
.contact-form textarea,
.contact-form select {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--cream-dark);
    border-radius: 6px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.contact-form textarea {
    min-height: 140px;
    resize: vertical;
}

/* ═══════════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════════ */
.site-footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 4px;
}

.footer-brand .sub {
    color: var(--gold);
    font-size: 0.6rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.footer-brand p {
    color: rgba(245, 240, 232, 0.5);
    font-size: 0.85rem;
    line-height: 1.7;
    max-width: 320px;
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    margin-bottom: 20px;
    color: var(--gold);
}

.footer-col a,
.footer-col p {
    display: block;
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.85rem;
    margin-bottom: 8px;
    transition: var(--transition);
}

.footer-col a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(245, 240, 232, 0.1);
    padding: 20px 0;
    text-align: center;
    color: rgba(245, 240, 232, 0.3);
    font-size: 0.75rem;
}

/* ═══════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════════════════════════════════ */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.from-left {
    transform: translateX(-40px);
}

.animate-on-scroll.from-right {
    transform: translateX(40px);
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* Staggered children */
.animate-on-scroll:nth-child(2) {
    transition-delay: 0.1s;
}

.animate-on-scroll:nth-child(3) {
    transition-delay: 0.2s;
}

.animate-on-scroll:nth-child(4) {
    transition-delay: 0.3s;
}

/* ═══════════════════════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════════════════════ */
.about-image-container {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 4/5;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--charcoal);
    color: var(--cream);
    padding: 24px;
    border-radius: 8px;
    box-shadow: var(--shadow-xl);
}

.about-badge .year {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--gold);
}

.about-badge .label {
    color: rgba(245, 240, 232, 0.6);
    font-size: 0.65rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

/* ═══════════════════════════════════════════════════════════════
   UTILITIES
   ═══════════════════════════════════════════════════════════════ */
.text-gold {
    color: var(--gold);
}

.text-cream {
    color: var(--cream);
}

.text-charcoal {
    color: var(--charcoal);
}

.text-center {
    text-align: center;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-6 {
    margin-bottom: 24px;
}

.mb-8 {
    margin-bottom: 32px;
}

.mt-4 {
    margin-top: 16px;
}

.mt-8 {
    margin-top: 32px;
}

.mt-12 {
    margin-top: 48px;
}

.hidden {
    display: none !important;
}

.relative {
    position: relative;
}

.overflow-hidden {
    overflow: hidden;
}

/* Overlay pattern */
.overlay-pattern {
    position: relative;
}

.overlay-pattern::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    background: var(--charcoal);
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    display: flex;
}

.back-to-top:hover {
    background: var(--gold);
    color: var(--charcoal);
}

/* SVG Icon sizing */
.icon-sm {
    width: 16px;
    height: 16px;
}

.icon-md {
    width: 20px;
    height: 20px;
}

.icon-lg {
    width: 32px;
    height: 32px;
}

.icon-xl {
    width: 48px;
    height: 48px;
}

/* ═══════════════════════════════════════════ */
/* Our Story Page — Timeline & Heritage       */
/* ═══════════════════════════════════════════ */

/* Story Cards */
.story-grid {
    display: flex;
    flex-direction: column;
    gap: 64px;
}

.story-card {
    display: flex;
    gap: 40px;
    align-items: center;
}

.story-card-image {
    flex: 0 0 380px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    position: relative;
}

.story-card-image::after {
    content: '';
    position: absolute;
    inset: 0;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    pointer-events: none;
}

.story-card-image img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

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

.story-card-text {
    flex: 1;
}

@media (max-width: 768px) {
    .story-card {
        flex-direction: column !important;
    }

    .story-card-image {
        flex: none;
        width: 100%;
    }
}

/* Timeline */
.timeline {
    position: relative;
    padding-left: 48px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 16px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, transparent, var(--gold), var(--gold), transparent);
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
    padding: 28px 32px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.timeline-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.timeline-item.active-branch {
    border-left: 4px solid var(--gold);
    background: linear-gradient(135deg, #fffbf0, #fff);
}

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 32px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--gold);
    border: 3px solid var(--cream);
    box-shadow: 0 0 0 3px var(--gold), 0 0 20px rgba(201, 168, 76, 0.3);
    z-index: 2;
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 4px;
}

.timeline-item h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.timeline-item p {
    font-size: 0.9rem;
    color: rgba(26, 26, 26, 0.6);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .timeline {
        padding-left: 32px;
    }

    .timeline::before {
        left: 8px;
    }

    .timeline-dot {
        left: -30px;
    }

    .timeline-item {
        padding: 20px 24px;
    }
}

/* Value Cards */
.value-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    color: var(--charcoal);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.9rem;
    color: rgba(26, 26, 26, 0.6);
    line-height: 1.7;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Branch Pills */
.branch-pill {
    padding: 12px 24px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    color: rgba(245, 240, 232, 0.7);
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
    cursor: default;
}

.branch-pill:hover {
    background: rgba(201, 168, 76, 0.12);
    border-color: var(--gold);
    color: var(--cream);
    transform: translateY(-2px);
}

.branch-pill.active {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--charcoal);
    font-weight: 700;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.3);
}

/* Review Cards (clean version) */
.review-card {
    background: var(--white);
    padding: 32px;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.review-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.review-card .stars {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 16px;
}

.review-card .review-text {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal);
    margin-bottom: 24px;
}

.review-card .review-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    padding-top: 16px;
}

.review-card .review-name {
    font-weight: 700;
    color: var(--charcoal);
}

.review-card .review-source {
    font-size: 0.8rem;
    color: rgba(26, 26, 26, 0.4);
}

/* ═══════════════════════════════════════════════════════════════
   UX IMPROVEMENTS — Conversion & Mobile
   ═══════════════════════════════════════════════════════════════ */

/* ─── Opening Status Badge ─── */
.open-status {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 2px 8px;
    border-radius: 20px;
    white-space: nowrap;
}

.open-status--open {
    background: rgba(45, 122, 79, 0.15);
    color: #2d7a4f;
    border: 1px solid rgba(45, 122, 79, 0.3);
}

.open-status--soon {
    background: rgba(201, 168, 76, 0.15);
    color: var(--gold-dark);
    border: 1px solid rgba(201, 168, 76, 0.3);
}

.open-status--closed {
    background: rgba(139, 26, 26, 0.1);
    color: #8b1a1a;
    border: 1px solid rgba(139, 26, 26, 0.2);
}

/* Hero open status (light version for dark hero backgrounds) */
.hero-open-status {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    padding: 5px 14px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.hero-open-status--open {
    background: rgba(45, 122, 79, 0.2);
    color: #6ee7b7;
    border: 1px solid rgba(45, 122, 79, 0.4);
}

.hero-open-status--soon {
    background: rgba(201, 168, 76, 0.2);
    color: var(--gold-light);
    border: 1px solid rgba(201, 168, 76, 0.4);
}

.hero-open-status--closed {
    background: rgba(139, 26, 26, 0.2);
    color: #fca5a5;
    border: 1px solid rgba(139, 26, 26, 0.3);
}

.hero-open-status .status-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    display: inline-block;
}

.hero-open-status--open .status-dot {
    background: #6ee7b7;
    box-shadow: 0 0 6px #6ee7b7;
    animation: pulse-dot 2s infinite;
}

.hero-open-status--soon .status-dot {
    background: var(--gold-light);
}

.hero-open-status--closed .status-dot {
    background: #fca5a5;
}

@keyframes pulse-dot {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

/* ─── Mobile Action Bar ─── */
.mobile-action-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-action-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 850;
        background: var(--charcoal);
        border-top: 1px solid rgba(201, 168, 76, 0.25);
        padding: 8px 12px;
        padding-bottom: calc(8px + env(safe-area-inset-bottom, 0px));
        gap: 6px;
        box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    }

    body:not(.page-order):not(.page-checkout) {
        padding-bottom: 70px;
    }
}

.mob-action-btn {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 8px 4px;
    border-radius: 8px;
    color: rgba(245, 240, 232, 0.7);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    transition: all 0.2s ease;
    text-decoration: none;
}

.mob-action-btn svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.mob-action-btn:hover,
.mob-action-btn:active {
    color: var(--cream);
    background: rgba(255, 255, 255, 0.07);
}

.mob-action-btn--primary {
    background: var(--gold);
    color: var(--charcoal);
    border-radius: 8px;
    font-weight: 700;
}

.mob-action-btn--primary svg {
    stroke: var(--charcoal);
}

.mob-action-btn--primary:hover {
    background: var(--gold-light);
    color: var(--charcoal);
}

/* ─── Sticky Menu Category Tabs ─── */
.menu-tabs {
    position: sticky;
    top: 64px;
    z-index: 200;
    background: var(--warm-white);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    padding: 0;
}

.menu-tabs .container {
    padding-top: 0;
    padding-bottom: 0;
}

.menu-tabs-inner {
    display: flex;
    gap: 4px;
    overflow-x: auto;
    padding: 12px 0;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.menu-tabs-inner::-webkit-scrollbar {
    display: none;
}

.menu-tab {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: 20px;
    background: transparent;
    border: 1px solid rgba(0, 0, 0, 0.1);
    color: rgba(26, 26, 26, 0.65);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.menu-tab:hover {
    border-color: var(--gold);
    color: var(--charcoal);
    background: rgba(201, 168, 76, 0.08);
}

.menu-tab.active {
    background: var(--charcoal);
    border-color: var(--charcoal);
    color: var(--cream);
    font-weight: 600;
}

/* ─── Dietary Filter Buttons ─── */
.dietary-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 32px;
    padding: 16px 0 0;
}

.diet-filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 16px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: transparent;
    color: rgba(26, 26, 26, 0.7);
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.diet-filter-btn:hover {
    border-color: var(--gold);
    color: var(--charcoal);
}

.diet-filter-btn.active {
    font-weight: 600;
}

.diet-filter-btn[data-diet="veg"].active {
    background: #dcfce7;
    border-color: #16a34a;
    color: #15803d;
}

.diet-filter-btn[data-diet="vegan"].active {
    background: #d1fae5;
    border-color: #059669;
    color: #047857;
}

.diet-filter-btn[data-diet="gf"].active {
    background: #fef9c3;
    border-color: #ca8a04;
    color: #92400e;
}

.diet-filter-btn[data-diet="spicy"].active {
    background: #fee2e2;
    border-color: #dc2626;
    color: #991b1b;
}

/* ─── Branch Info Strip ─── */
.branch-info-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    background: var(--charcoal);
    border-top: 1px solid rgba(201, 168, 76, 0.15);
}

.branch-info-strip .info-item {
    flex: 1;
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 16px 20px;
    color: rgba(245, 240, 232, 0.75);
    font-size: 0.82rem;
    font-weight: 500;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s;
}

.branch-info-strip .info-item:last-child {
    border-right: none;
}

.branch-info-strip .info-item a {
    color: inherit;
    text-decoration: none;
}

.branch-info-strip .info-item a:hover {
    color: var(--gold);
}

.branch-info-strip .info-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

@media (max-width: 640px) {
    .branch-info-strip {
        flex-direction: column;
    }

    .branch-info-strip .info-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        justify-content: flex-start;
        padding: 12px 20px;
    }
}

/* ─── Mini Review Strip (for booking page etc.) ─── */
.review-mini-strip {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 24px;
}

.review-mini-card {
    background: var(--warm-white);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 8px;
    padding: 16px 20px;
}

.review-mini-card .mini-stars {
    color: var(--gold);
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.review-mini-card .mini-text {
    font-size: 0.85rem;
    color: rgba(26, 26, 26, 0.75);
    line-height: 1.55;
    margin-bottom: 8px;
    font-style: italic;
}

.review-mini-card .mini-author {
    font-size: 0.72rem;
    font-weight: 600;
    color: rgba(26, 26, 26, 0.45);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* ─── Booking Page: Branch Contact Card ─── */
.branch-contact-card {
    background: white;
    border-radius: 10px;
    border: 1px solid rgba(0, 0, 0, 0.07);
    overflow: hidden;
    margin-bottom: 24px;
    box-shadow: var(--shadow-sm);
}

.branch-contact-card .bcc-header {
    background: var(--charcoal);
    padding: 12px 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.branch-contact-card .bcc-header span {
    color: var(--gold);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.branch-contact-card .bcc-body {
    padding: 20px;
}

.branch-contact-card .bcc-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 0.88rem;
    color: rgba(26, 26, 26, 0.8);
}

.branch-contact-card .bcc-row:last-child {
    margin-bottom: 0;
}

.branch-contact-card .bcc-row svg {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    margin-top: 1px;
    stroke: var(--gold);
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.branch-contact-card .bcc-row a {
    color: var(--charcoal);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
}

.branch-contact-card .bcc-row a:hover {
    color: var(--gold);
}

/* ─── Popular Dishes Section (ordering page) ─── */
.popular-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    background: linear-gradient(135deg, #c9a84c, #d4b85e);
    color: var(--charcoal);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 3px;
}

/* ─── Mobile UX: Button tap target sizing ─── */
@media (max-width: 768px) {
    .btn {
        min-height: 48px;
    }

    .menu-tab {
        min-height: 38px;
    }

    /* Prevent iOS zoom on form inputs */
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="date"],
    input[type="time"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;
    }
}

/* ─── WhatsApp CTA ─── */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25d366;
    color: white;
    font-weight: 600;
    font-size: 0.85rem;
    padding: 10px 20px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s;
    margin-top: 12px;
}

.whatsapp-btn:hover {
    background: #1ebe5c;
    color: white;
}

.whatsapp-btn svg {
    width: 18px;
    height: 18px;
    fill: white;
}

/* ─── Loyalty Points Pill (header) ─── */
.loyalty-pill {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 12px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.18), rgba(201, 168, 76, 0.08));
    border: 1px solid rgba(201, 168, 76, 0.35);
    border-radius: 999px;
    color: var(--gold, #c9a84c);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    text-decoration: none;
    transition: background 0.2s ease, transform 0.15s ease;
    line-height: 1;
    white-space: nowrap;
}

.loyalty-pill:hover {
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.28), rgba(201, 168, 76, 0.12));
    transform: translateY(-1px);
    color: var(--gold, #c9a84c);
}

.loyalty-pill__star {
    font-size: 0.85rem;
}

.loyalty-pill__value {
    font-weight: 700;
}

.loyalty-pill__label {
    opacity: 0.75;
    font-weight: 500;
    margin-left: 1px;
}

@media (max-width: 992px) {
    .navbar-cta .loyalty-pill {
        display: none;
    }

    /* hidden in main bar on narrow screens; mobile menu has a line item */
}

/* ─── Homepage: Gallery Preview Strip (L-1) ─── */
.home-gallery-strip {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-auto-rows: 160px;
    gap: 10px;
    margin-top: 40px;
}

.home-gallery-thumb {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.home-gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.home-gallery-thumb:hover img {
    transform: scale(1.05);
}

.home-gallery-thumb:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
}

.home-gallery-thumb--lead {
    grid-row: span 2;
    grid-column: 1;
}

@media (max-width: 768px) {
    .home-gallery-strip {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 140px;
    }

    .home-gallery-thumb--lead {
        grid-row: auto;
        grid-column: span 2;
        grid-row: span 1;
    }
}

/* ─── Homepage: Map + Visit section (L-1) ─── */
.home-visit-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    margin-top: 40px;
    align-items: start;
}

.home-visit-info .visit-row {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    align-items: flex-start;
}

.home-visit-info .visit-row:last-child {
    border-bottom: none;
}

.visit-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 168, 76, 0.12);
    border-radius: 50%;
    font-size: 1.1rem;
}

.visit-row-label {
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.55);
    margin-bottom: 4px;
    font-weight: 600;
}

.visit-row-value {
    font-size: 0.95rem;
    color: var(--charcoal, #1a1a1a);
    line-height: 1.5;
}

.visit-row-link {
    color: var(--gold-dark, #a88936);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    display: inline-block;
    margin-top: 4px;
}

.visit-row-link:hover {
    text-decoration: underline;
}

.home-visit-map iframe,
.home-visit-map>* {
    width: 100% !important;
    min-height: 380px;
    border: 0 !important;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.1);
    display: block;
}

@media (max-width: 900px) {
    .home-visit-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-visit-map iframe,
    .home-visit-map>* {
        min-height: 300px;
    }
}

/* ─── Homepage: Quick-book mini widget (L-1) ─── */
.home-quickbook {
    display: grid;
    grid-template-columns: repeat(3, 1fr) auto;
    gap: 10px;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    align-items: end;
    text-align: left;
}

.home-qb-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.home-qb-field>span {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(26, 26, 26, 0.6);
}

.home-qb-field input,
.home-qb-field select {
    padding: 10px 12px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    background: #fff;
    color: var(--charcoal, #1a1a1a);
    outline: none;
    transition: border-color 0.2s ease;
    min-height: 44px;
}

.home-qb-field input:focus,
.home-qb-field select:focus {
    border-color: var(--gold, #c9a84c);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.15);
}

.home-qb-submit {
    min-height: 44px;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .home-quickbook {
        grid-template-columns: 1fr 1fr;
    }

    .home-qb-submit {
        grid-column: span 2;
    }
}

/* ─── Cart loyalty points preview (order_online.php) ─── */
.cart-points-preview {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    margin: 10px 0 14px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px dashed rgba(201, 168, 76, 0.35);
    border-radius: 10px;
    color: var(--gold-dark, #a88936);
    font-size: 0.85rem;
    font-weight: 500;
}

.cart-points-preview .cpp-icon {
    font-size: 1rem;
}

.cart-points-preview strong {
    color: var(--gold-dark, #a88936);
    font-weight: 700;
}

.cart-points-preview.hidden {
    display: none;
}