/* ========================================
   Design System Tokens & Reset
   ========================================

   Polish pass (2026-05-12): unified typography scale, weights, tracking
   tokens, line-heights, transitions, shadows and component patterns.
   Same dark/gold restaurant palette as the original; only the *application*
   of values changed so every eyebrow, every body line, every card, every
   button matches its peers.

   Type scale follows a major-third (1.25x) rhythm. Tracking and weight
   are explicit tokens so we don't have ad-hoc `letter-spacing: 1.2px`
   floating around.
*/
:root {
    /* ── Colour (unchanged from restored palette) ──────────────────── */
    --color-primary: #C8A97E;
    --color-primary-dark: #A8864E;
    --color-gold: #D4AF37;
    --color-gold-light: #F0D78C;
    --color-red: #8B2500;
    --color-red-dark: #6B1D00;
    --color-bg-dark: #1A1A1A;
    --color-bg-darker: #111111;
    --color-bg-section: #0F0F0F;
    --color-bg-card: #1F1F1F;
    --color-bg-warm: #2A1F14;
    --color-text: #F5F0EB;
    --color-text-muted: #A09890;
    --color-text-dim: #8A8278;
    --color-text-dark: #2D2D2D;
    --color-border: rgba(212, 175, 55, 0.18);
    --color-border-light: rgba(255, 255, 255, 0.06);
    --color-border-strong: rgba(212, 175, 55, 0.35);

    /* ── Type stack ────────────────────────────────────────────────── */
    --font-heading: 'Playfair Display', 'Georgia', 'Times New Roman', serif;
    --font-body: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

    /* ── Type scale (16px base, major-third rhythm) ────────────────── */
    --text-2xs:  0.6875rem;  /* 11px — micro labels */
    --text-xs:   0.75rem;    /* 12px — eyebrows, badges */
    --text-sm:   0.875rem;   /* 14px — secondary text */
    --text-base: 1rem;       /* 16px — body */
    --text-lg:   1.125rem;   /* 18px — lead body */
    --text-xl:   1.375rem;   /* 22px — h4 / card heading */
    --text-2xl:  1.75rem;    /* 28px — h3 */
    --text-3xl:  2.25rem;    /* 36px — section title */
    --text-4xl:  3rem;       /* 48px — hero h1 (mobile) */
    --text-5xl:  3.5rem;     /* 56px — hero h1 (desktop) */

    /* ── Weights ───────────────────────────────────────────────────── */
    --fw-regular: 400;
    --fw-medium: 500;
    --fw-semibold: 600;
    --fw-bold: 700;
    --fw-black: 900;

    /* ── Letter-spacing (tracking) ────────────────────────────────── */
    --track-tight: -0.02em;   /* large display headings */
    --track-snug: -0.01em;    /* h2 / section title */
    --track-normal: 0;
    --track-wide: 0.04em;     /* small uppercase */
    --track-wider: 0.10em;    /* uppercase labels */
    --track-widest: 0.20em;   /* eyebrow / section-subtitle */

    /* ── Line heights ──────────────────────────────────────────────── */
    --leading-tight: 1.1;
    --leading-snug: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.7;

    /* ── Radii ─────────────────────────────────────────────────────── */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 18px;
    --radius-pill: 9999px;

    /* ── Shadows ───────────────────────────────────────────────────── */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.28);
    --shadow-md: 0 6px 18px rgba(0, 0, 0, 0.30);
    --shadow-lg: 0 18px 44px rgba(0, 0, 0, 0.36);
    --shadow-gold: 0 12px 32px rgba(212, 175, 55, 0.18);

    /* ── Transitions ───────────────────────────────────────────────── */
    --transition-fast: 140ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition: 220ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 360ms cubic-bezier(0.4, 0, 0.2, 1);

    /* ── Layout (unchanged) ────────────────────────────────────────── */
    --max-width: 1280px;
    --header-height: 80px;
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--fw-regular);
    line-height: var(--leading-relaxed);
    letter-spacing: var(--track-normal);
    color: var(--color-text);
    background-color: var(--color-bg-dark);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
    font-feature-settings: "kern" 1, "liga" 1;
}

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

ul {
    list-style: none;
}

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

::selection {
    background-color: rgba(212, 175, 55, 0.35);
    color: var(--color-text);
}

/* Visible, accessible focus ring across the site. */
:focus-visible {
    outline: 2px solid var(--color-gold);
    outline-offset: 3px;
    border-radius: 2px;
}
button:focus-visible,
a:focus-visible {
    outline-offset: 4px;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Typography Utility Classes
   ======================================== */
.text-gold {
    color: var(--color-gold);
}

/* Eyebrow — small uppercase tag that sits above a section title. */
.section-subtitle {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: var(--track-widest);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: var(--text-3xl);
    font-weight: var(--fw-bold);
    line-height: var(--leading-snug);
    letter-spacing: var(--track-snug);
    color: var(--color-text);
    margin-bottom: 8px;
}

.section-header {
    text-align: center;
    margin-bottom: 56px;
}

.ornament {
    color: var(--color-gold);
    font-size: var(--text-xs);
    letter-spacing: 0.5em;
    margin-top: 10px;
    opacity: 0.55;
}

/* ========================================
   Buttons — one shape, one rhythm
   ======================================== */
.btn-primary,
.btn-outline {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 30px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: var(--track-wider);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: transform var(--transition), background var(--transition),
                color var(--transition), box-shadow var(--transition),
                border-color var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold), var(--color-primary-dark));
    color: #141414;
    border: 1px solid transparent;
    box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-light), var(--color-gold));
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border: 1.5px solid var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: #141414;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-lg {
    padding: 16px 38px;
    font-size: var(--text-base);
}

.btn-full {
    width: 100%;
}

/* ========================================
   Top Bar
   ======================================== */
.top-bar {
    background-color: var(--color-bg-darker);
    border-bottom: 1px solid var(--color-border-light);
    padding: 10px 0;
    font-size: var(--text-xs);
    font-weight: var(--fw-medium);
    letter-spacing: var(--track-wide);
    color: var(--color-text-muted);
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    gap: 28px;
}

.top-bar-left > span,
.top-bar-right > span {
    display: inline-flex;
    align-items: center;
}

/* ========================================
   Header & Navigation
   ======================================== */
.header {
    background-color: rgba(17, 17, 17, 0.92);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--color-border);
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--header-height);
}

.navbar {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: var(--leading-tight);
}

.logo-accent,
.logo-main {
    font-family: var(--font-heading);
    font-size: 1.625rem;
    font-weight: var(--fw-bold);
    letter-spacing: var(--track-snug);
    display: inline;
}
.logo-accent { color: var(--color-gold); }
.logo-main { color: var(--color-text); }

.logo-tagline {
    font-size: var(--text-2xs);
    font-weight: var(--fw-medium);
    color: var(--color-text-dim);
    text-transform: uppercase;
    letter-spacing: var(--track-widest);
    margin-top: 2px;
}

.nav-links {
    display: flex;
    gap: 36px;
}

.nav-links a {
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--track-wider);
    padding: 8px 0;
    position: relative;
    transition: color var(--transition);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--color-gold);
    transition: width var(--transition);
}

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

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 16px;
}

/* Hamburger */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--color-text);
    transition: all var(--transition);
}

.mobile-menu-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.mobile-menu-toggle.open span:nth-child(2) {
    opacity: 0;
}
.mobile-menu-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Hero Slideshow
   ======================================== */
.hero {
    position: relative;
    height: 90vh;
    min-height: 600px;
    overflow: hidden;
    background-color: var(--color-bg-darker);
}

.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background:
        linear-gradient(135deg, rgba(15, 10, 5, 0.86), rgba(30, 15, 5, 0.78)),
        linear-gradient(45deg, var(--color-bg-warm), var(--color-bg-dark));
    background-size: cover;
    background-position: center;
    opacity: 0;
    pointer-events: none;
    z-index: 1;
    transition: opacity 0.8s ease;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
    z-index: 10;
}

.hero-content {
    text-align: center;
    max-width: 760px;
    padding: 0 24px;
}

.hero-subtitle {
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    text-transform: uppercase;
    letter-spacing: var(--track-widest);
    color: var(--color-gold);
    margin-bottom: 18px;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: var(--text-5xl);
    font-weight: var(--fw-bold);
    line-height: var(--leading-tight);
    letter-spacing: var(--track-tight);
    margin-bottom: 22px;
    color: var(--color-text);
}

.hero-desc {
    font-size: var(--text-lg);
    font-weight: var(--fw-regular);
    line-height: var(--leading-relaxed);
    color: var(--color-text-muted);
    margin-bottom: 38px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-btns {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-dots {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: all var(--transition);
    border: none;
}

.hero-dot.active {
    background-color: var(--color-gold);
    transform: scale(1.4);
}

/* ========================================
   Features Strip
   ======================================== */
.features-strip {
    background-color: var(--color-bg-darker);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    padding: 36px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px;
}

.feature-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-family: var(--font-heading);
    font-size: var(--text-base);
    font-weight: var(--fw-semibold);
    line-height: var(--leading-snug);
    color: var(--color-text);
    margin-bottom: 3px;
}

.feature-item p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-normal);
}

/* ========================================
   About Section
   ======================================== */
.about-section {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.about-image-placeholder {
    background: linear-gradient(135deg, var(--color-bg-warm), var(--color-bg-card));
    border-radius: var(--radius-lg);
    height: 480px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--color-border);
}

.about-image-placeholder span {
    font-size: 6rem;
    margin-bottom: 16px;
}

.about-image-placeholder p {
    color: var(--color-text-muted);
    font-style: italic;
    font-size: var(--text-sm);
}

.about-content .section-title {
    font-size: var(--text-3xl);
    text-align: left;
}

.about-content p {
    color: var(--color-text-muted);
    margin-bottom: 16px;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.about-stats {
    display: flex;
    gap: 48px;
    margin-top: 36px;
    padding-top: 32px;
    border-top: 1px solid var(--color-border);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: var(--fw-bold);
    line-height: var(--leading-tight);
    color: var(--color-gold);
    font-variant-numeric: tabular-nums;
}

.stat-label {
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: var(--track-wider);
}

/* ========================================
   Menu Section
   ======================================== */
.menu-section {
    padding: 100px 0;
    background-color: var(--color-bg-section);
}

.menu-source-banner {
    display: grid;
    gap: 4px;
    margin: 0 0 22px;
    padding: 14px 18px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.025);
}

.menu-source-banner[hidden] {
    display: none;
}

.menu-source-banner[data-state="live"] {
    border-color: rgba(34, 197, 94, 0.40);
    background: rgba(34, 197, 94, 0.07);
}

.menu-source-banner[data-state="stale"] {
    border-color: var(--color-border-strong);
    background: rgba(212, 175, 55, 0.07);
}

.menu-source-banner[data-state="preview"],
.menu-source-banner[data-state="error"] {
    border-color: rgba(231, 76, 60, 0.28);
    background: rgba(139, 37, 0, 0.14);
}

.menu-source-banner-title {
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    letter-spacing: var(--track-wider);
    text-transform: uppercase;
    color: var(--color-gold);
}

.menu-source-banner-message {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-normal);
}

/* Category Tabs */
.category-tabs {
    display: flex;
    gap: 0;
    margin-bottom: 8px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0;
    scroll-behavior: smooth;
    border-bottom: 1px solid var(--color-border-light);
    cursor: grab;
}

.category-tabs::-webkit-scrollbar {
    display: none;
}

.category-tabs.grabbing {
    cursor: grabbing;
    scroll-behavior: auto;
    user-select: none;
}

.category-tab {
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--fw-medium);
    color: var(--color-text-muted);
    background: transparent;
    border: none;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.category-tab:hover {
    color: var(--color-text);
}

.category-tab.active {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
    font-weight: var(--fw-bold);
}

/* Menu Category */
.menu-category {
    margin-bottom: 16px;
    padding-top: 28px;
}

.menu-category:first-child {
    padding-top: 16px;
}

.menu-category:last-child {
    margin-bottom: 0;
}

.menu-category-header {
    margin-bottom: 18px;
}

.menu-category-title {
    font-family: var(--font-heading);
    font-size: var(--text-2xl);
    font-weight: var(--fw-bold);
    line-height: var(--leading-snug);
    color: var(--color-text);
}

.menu-category-count,
.menu-category-line {
    display: none;
}

/* Menu List */
.menu-grid {
    display: flex;
    flex-direction: column;
}

/* Menu Item Row */
.menu-card {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 18px 0;
    border-bottom: 1px solid var(--color-border-light);
    transition: background var(--transition);
    cursor: default;
}

.menu-card:last-child {
    border-bottom: none;
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.025);
}

.menu-card-left {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    flex: 1;
    min-width: 0;
}

.menu-card-info {
    flex: 1;
    min-width: 0;
}

.menu-card-name {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: var(--fw-medium);
    line-height: var(--leading-snug);
    color: var(--color-text);
}

.menu-card-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-normal);
    margin-top: 4px;
}

.menu-card-price {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: var(--fw-semibold);
    color: var(--color-gold);
    margin-top: 6px;
    font-variant-numeric: tabular-nums;
}

.menu-card-badge {
    display: inline-block;
    font-size: var(--text-2xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: var(--track-wide);
    color: #22c55e;
    margin-top: 6px;
}

.menu-card-badge.sold-out {
    color: #ef4444;
}

.menu-card-right {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

/* Quick Add button */
.menu-card-btn {
    background: transparent;
    color: var(--color-text);
    border: 1px solid var(--color-border);
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    letter-spacing: var(--track-wide);
    text-transform: uppercase;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all var(--transition);
    white-space: nowrap;
    flex-shrink: 0;
}

.menu-card-btn:hover {
    background: var(--color-gold);
    color: #141414;
    border-color: var(--color-gold);
}

.menu-card-btn:disabled {
    cursor: not-allowed;
    opacity: 0.55;
    background: transparent;
    color: var(--color-text-muted);
    border-color: var(--color-border-light);
}

.menu-card-btn .plus-icon {
    font-size: var(--text-sm);
    font-weight: var(--fw-bold);
    color: var(--color-gold);
}

.menu-card-btn:hover .plus-icon {
    color: #141414;
}

/* Diet indicator — universal green/red */
.diet-indicator {
    width: 14px;
    height: 14px;
    border: 2px solid;
    border-radius: 2px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 4px;
}

.diet-indicator.veg {
    border-color: #16a34a;
}
.diet-indicator.veg::after {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #16a34a;
}

.diet-indicator.non-veg {
    border-color: #dc2626;
}
.diet-indicator.non-veg::after {
    content: '';
    width: 0;
    height: 0;
    border-left: 3.5px solid transparent;
    border-right: 3.5px solid transparent;
    border-bottom: 6px solid #dc2626;
}

.menu-card.unavailable {
    opacity: 0.45;
    pointer-events: none;
}

.no-items {
    text-align: center;
    color: var(--color-text-muted);
    padding: 48px 0;
    font-size: var(--text-base);
    grid-column: 1 / -1;
}

/* ========================================
   Delivery Partners Section
   ======================================== */
.delivery-partners-section {
    padding: 90px 0;
    background: var(--color-bg-section);
}

.delivery-desc {
    color: var(--color-text-muted);
    max-width: 600px;
    margin: 14px auto 0;
    font-size: var(--text-base);
    line-height: var(--leading-relaxed);
}

.delivery-partners-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 720px;
    margin: 48px auto 0;
}

.delivery-partner-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 40px 28px;
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    text-decoration: none;
    color: var(--color-text);
    transition: transform var(--transition), border-color var(--transition),
                box-shadow var(--transition);
}

.delivery-partner-card:hover {
    transform: translateY(-4px);
    border-color: var(--color-border);
    box-shadow: var(--shadow-md);
}

.delivery-partner-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
    margin-bottom: 6px;
    line-height: var(--leading-snug);
}

.delivery-partner-card p {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    margin-bottom: 18px;
}

.delivery-partner-btn {
    color: var(--color-gold);
    font-weight: var(--fw-bold);
    font-size: var(--text-sm);
    text-transform: uppercase;
    letter-spacing: var(--track-wider);
    transition: color var(--transition), transform var(--transition);
}

.delivery-partner-card:hover .delivery-partner-btn {
    color: var(--color-gold-light);
}

@media (max-width: 600px) {
    .delivery-partners-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   Specials Section
   ======================================== */
.specials-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--color-bg-warm), var(--color-bg-dark));
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.special-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: transform var(--transition), border-color var(--transition),
                box-shadow var(--transition);
    position: relative;
}

.special-card:hover {
    transform: translateY(-6px);
    border-color: var(--color-border);
    box-shadow: var(--shadow-lg);
}

.special-card.featured {
    border-color: var(--color-gold);
    background: linear-gradient(180deg, rgba(212, 175, 55, 0.07), var(--color-bg-card));
}

.special-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--color-gold), var(--color-primary-dark));
    color: #141414;
    padding: 5px 20px;
    border-radius: var(--radius-pill);
    font-size: var(--text-2xs);
    font-weight: var(--fw-bold);
    text-transform: uppercase;
    letter-spacing: var(--track-wider);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
}

.special-icon {
    font-size: 3rem;
    margin-bottom: 18px;
}

.special-card h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
    line-height: var(--leading-snug);
    color: var(--color-text);
    margin-bottom: 6px;
}

.special-time {
    font-size: var(--text-xs);
    font-weight: var(--fw-semibold);
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: var(--track-wider);
    margin-bottom: 18px;
}

.special-card p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: 22px;
}

.special-price {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
    color: var(--color-gold);
    font-variant-numeric: tabular-nums;
}

/* ========================================
   Testimonials Section
   ======================================== */
.testimonials-section {
    padding: 100px 0;
    background-color: var(--color-bg-section);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.testimonial-card {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border-light);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: transform var(--transition), border-color var(--transition),
                box-shadow var(--transition);
}

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

.testimonial-stars {
    color: var(--color-gold);
    font-size: var(--text-base);
    letter-spacing: 0.15em;
    margin-bottom: 18px;
}

.testimonial-card > p {
    font-size: var(--text-base);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: 26px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold), var(--color-primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #141414;
    font-weight: var(--fw-bold);
    font-size: var(--text-base);
    flex-shrink: 0;
}

.testimonial-author strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    line-height: var(--leading-snug);
}

.testimonial-author span {
    font-size: var(--text-xs);
    color: var(--color-text-muted);
}

/* ========================================
   Contact Section
   ======================================== */
.contact-section {
    padding: 100px 0;
    background-color: var(--color-bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-info .section-title {
    text-align: left;
}

.contact-details {
    margin-top: 36px;
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 1.5rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: var(--text-sm);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    text-transform: uppercase;
    letter-spacing: var(--track-wide);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-normal);
}

.contact-form-wrap {
    background: var(--color-bg-card);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
}

.contact-form-wrap h3 {
    font-family: var(--font-heading);
    font-size: var(--text-xl);
    font-weight: var(--fw-bold);
    color: var(--color-text);
    margin-bottom: 24px;
    text-align: center;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    background: var(--color-bg-dark);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 13px 16px;
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    transition: border-color var(--transition), box-shadow var(--transition);
    width: 100%;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--color-text-dim);
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.18);
}

.contact-form select {
    appearance: none;
    cursor: pointer;
}

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

.contact-form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.contact-form-status {
    min-height: 1.5rem;
    font-size: var(--text-sm);
    line-height: var(--leading-normal);
    color: var(--color-text-muted);
}

.contact-form-status.is-success {
    color: #86efac;
}

.contact-form-status.is-error {
    color: #fca5a5;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: var(--color-bg-darker);
    border-top: 1px solid var(--color-border);
    padding: 72px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 56px;
    padding-bottom: 48px;
}

.footer-logo {
    margin-bottom: 18px;
    font-size: 1.5rem;
}

.footer-logo .logo-accent,
.footer-logo .logo-main {
    font-family: var(--font-heading);
    font-weight: var(--fw-bold);
}
.footer-logo .logo-accent { color: var(--color-gold); }
.footer-logo .logo-main { color: var(--color-text); }

.footer-desc {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-relaxed);
    margin-bottom: 24px;
    max-width: 340px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 38px;
    height: 38px;
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    transition: border-color var(--transition), color var(--transition),
                background var(--transition), transform var(--transition);
}

.footer-social a:hover {
    border-color: var(--color-gold);
    color: var(--color-gold);
    background: rgba(212, 175, 55, 0.08);
    transform: translateY(-2px);
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: var(--text-xs);
    font-weight: var(--fw-bold);
    letter-spacing: var(--track-widest);
    text-transform: uppercase;
    margin-bottom: 22px;
    color: var(--color-gold);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    transition: color var(--transition);
}

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

.footer-contact li {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    line-height: var(--leading-normal);
    display: flex;
    align-items: flex-start;
}

.footer-bottom {
    border-top: 1px solid var(--color-border-light);
    padding: 24px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: var(--text-xs);
    color: var(--color-text-dim);
}

.footer-legal {
    display: flex;
    gap: 24px;
}

.footer-legal a {
    color: var(--color-text-dim);
    transition: color var(--transition);
}

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

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .about-image-placeholder {
        height: 320px;
    }
    .specials-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
        margin: 0 auto;
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
        max-width: 560px;
        margin: 0 auto;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }
    .hero h1 {
        font-size: var(--text-4xl);
    }
}

@media (max-width: 768px) {
    :root {
        --header-height: 64px;
    }
    .top-bar {
        display: none;
    }
    .nav-links {
        display: none;
        position: fixed;
        top: var(--header-height);
        left: 0;
        right: 0;
        background: rgba(17, 17, 17, 0.98);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        border-bottom: 1px solid var(--color-border);
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        padding: 14px 16px;
        border-radius: var(--radius-sm);
    }
    .nav-links a:hover,
    .nav-links a.active {
        background: rgba(212, 175, 55, 0.08);
    }
    .mobile-menu-toggle {
        display: flex;
    }
    .nav-right .btn-primary {
        display: none;
    }
    .hero {
        height: 72vh;
        min-height: 500px;
    }
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-desc {
        font-size: var(--text-base);
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }
    .section-title {
        font-size: var(--text-2xl);
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    .hero-btns {
        flex-direction: column;
        align-items: stretch;
    }
    .hero-btns .btn-primary,
    .hero-btns .btn-outline {
        width: 100%;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
    .menu-card {
        padding: 14px 0;
    }
    .menu-card-name {
        font-size: var(--text-sm);
    }
    .about-stats {
        flex-direction: column;
        gap: 24px;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .category-tab {
        padding: 12px 14px;
        font-size: var(--text-xs);
    }
}

/* ========================================
   Icons (preserved from icon pass 2026-05-12)
   ========================================
   Inline-SVG icon system. SVGs scale with the parent's font-size and
   inherit `currentColor`, so the existing `.feature-icon`, `.contact-icon`,
   `.delivery-partner-icon`, `.special-icon`, `.footer-contact .vb-icon`
   classes keep their sizes and the gold colour cascades from the parent. */

.feature-icon,
.contact-icon,
.special-icon,
.delivery-partner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.feature-icon svg,
.contact-icon svg,
.special-icon svg {
    width: 1em;
    height: 1em;
    display: block;
}

/* About-section decorative icon — larger, centred. */
.about-image-placeholder svg {
    width: 96px;
    height: 96px;
    color: var(--color-gold);
    margin-bottom: 16px;
    stroke-width: 1.3;
}

/* Delivery-partner brand tiles — official app-icon look. */
.delivery-partner-icon {
    width: 96px;
    height: 96px;
    border-radius: 22px;
    margin-bottom: 22px;
    background: rgba(212, 175, 55, 0.10);
    overflow: hidden;
    transition: transform var(--transition), box-shadow var(--transition);
    flex-shrink: 0;
}

.delivery-partner-card:hover .delivery-partner-icon {
    transform: scale(1.06);
}

.delivery-partner-icon svg {
    width: 60%;
    height: 60%;
}

.delivery-partner-icon.partner--ubereats {
    background: #06C167;
    box-shadow: 0 6px 20px rgba(6, 193, 103, 0.20);
}
.delivery-partner-icon.partner--ubereats svg {
    width: 82%;
    height: auto;
}

.delivery-partner-icon.partner--doordash {
    background: #EB1700;
    box-shadow: 0 6px 20px rgba(235, 23, 0, 0.22);
}
.delivery-partner-icon.partner--doordash svg {
    width: 62%;
    height: auto;
}

/* Top-bar + footer-contact inline icons — sit alongside text. */
.top-bar svg.vb-icon,
.footer-contact svg.vb-icon {
    width: 14px;
    height: 14px;
    margin-right: 8px;
    flex-shrink: 0;
    color: var(--color-gold);
}
.top-bar svg.vb-icon {
    vertical-align: -2px;
}

/* Footer social — round buttons with brand SVG. */
.footer-social a svg {
    width: 16px;
    height: 16px;
}

/* Menu page — diet filter dots (small swatch before label). */
.diet-btn::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
    background: transparent;
}
.diet-btn[data-diet="veg"]::before { background: #16a34a; }
.diet-btn[data-diet="non-veg"]::before { background: #dc2626; }

/* Menu page — type-toggle buttons (Regular / Catering). */
.menu-type-btn svg {
    width: 18px;
    height: 18px;
    margin-right: 8px;
    vertical-align: -3px;
}

/* Catering list items — gold ✓ checkmark via CSS. */
.catering-includes li {
    position: relative;
    padding-left: 28px;
}
.catering-includes li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 11px;
    width: 18px;
    height: 18px;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23D4AF37' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
    background-size: contain;
    background-repeat: no-repeat;
}

/* ────────────────────────────────────────────────────────────────────
   WhatsApp click-to-chat — top-bar link, contact items, floating button
   Added 2026-06-15 for the static Vercel demo. Honours the existing
   colour palette; no layout shift on top-bar / footer.
   ──────────────────────────────────────────────────────────────────── */
.top-bar-link {
    color: inherit;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity 0.15s ease;
}
.top-bar-link:hover { opacity: 0.85; text-decoration: none; }
.top-bar-whatsapp {
    color: #25D366;
    margin-left: 4px;
    font-weight: 500;
}
.top-bar-whatsapp:hover { color: #1ebe57; }

.footer-contact-link {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.15s ease;
}
.footer-contact-link:hover { opacity: 0.8; }

.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 9999;
    background: #25D366;
    color: #fff;
    width: auto;
    height: 56px;
    padding: 0 20px 0 16px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border-radius: 28px;
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35), 0 2px 6px rgba(0,0,0,0.15);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.whatsapp-float svg { width: 28px; height: 28px; }
.whatsapp-float:hover {
    background: #1ebe57;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.45), 0 4px 10px rgba(0,0,0,0.18);
    text-decoration: none;
    color: #fff;
}
.whatsapp-float-label { line-height: 1; }
@media (max-width: 480px) {
    .whatsapp-float { padding: 0; width: 56px; justify-content: center; }
    .whatsapp-float-label { display: none; }
}
