/* ==========================================================================
   BLACK PEPPER INDIAN RESTAURANT - LUXURY DESIGN SYSTEM
   Deep Charcoal, Rich Obsidian, Warm Cream & Solid Brand Logo Accent (#db8112)
   Fully Responsive for 375px, 390px, 480px, 768px, 1024px, 1440px
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
    /* Solid Brand Color System (Matching Logo) */
    --brand-primary: #db8112;       /* Black Pepper Logo Amber/Spice */
    --brand-hover: #f5931a;
    --brand-dark: #b86608;
    --brand-light: #fcd38d;
    --brand-glow: rgba(219, 129, 18, 0.25);

    /* Backgrounds */
    --bg-main: #0c0d11;
    --bg-surface: #14151c;
    --bg-surface-elevated: #1c1e27;
    --bg-card: rgba(24, 26, 36, 0.85);
    --bg-glass: rgba(18, 19, 26, 0.85);
    --bg-glass-heavy: rgba(12, 13, 17, 0.95);

    /* Typography Colors */
    --text-main: #fbf9f5;
    --text-secondary: #c5c2ba;
    --text-muted: #8b877f;

    /* Borders */
    --border-subtle: rgba(255, 255, 255, 0.08);
    --border-brand: rgba(219, 129, 18, 0.3);
    --border-brand-hover: rgba(219, 129, 18, 0.7);

    /* Typography */
    --font-heading: 'Cinzel', 'Playfair Display', Georgia, serif;
    --font-editorial: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Transitions & Shadows */
    --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-smooth: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-card: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 1px rgba(219, 129, 18, 0.2);
    --shadow-brand: 0 10px 30px rgba(219, 129, 18, 0.25);

    /* Layout */
    --container-max: 1280px;
    --container-narrow: 960px;
    --header-height: 88px;
    --radius-sm: 6px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Vector SVG Icons */
.svg-icon {
    display: inline-block;
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
    vertical-align: middle;
    flex-shrink: 0;
}

.svg-icon-gold,
.svg-icon-brand {
    stroke: var(--brand-primary);
}

.svg-icon-lg {
    width: 24px;
    height: 24px;
}

.svg-icon-sm {
    width: 14px;
    height: 14px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    width: 100%;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

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

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

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
    transition: var(--transition-fast);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-main);
}
::-webkit-scrollbar-thumb {
    background: #2b2e3c;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--brand-primary);
}

/* Solid Scroll Progress Bar */
#scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background-color: var(--brand-primary);
    z-index: 9999;
    width: 0%;
    transition: width 0.1s ease-out;
}

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

.container-narrow {
    max-width: var(--container-narrow);
}

.section {
    padding: 90px 0;
    position: relative;
    width: 100%;
}

.section-bg-elevated {
    background-color: var(--bg-surface);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--brand-primary);
    margin-bottom: 14px;
}

.section-tag::before,
.section-tag::after {
    content: '';
    display: inline-block;
    width: 24px;
    height: 1px;
    background-color: var(--brand-primary);
    opacity: 0.6;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 700;
    letter-spacing: 1px;
    line-height: 1.2;
    color: var(--text-main);
    margin-bottom: 18px;
    word-wrap: break-word;
}

.section-title span.gold-text,
.section-title span.brand-text {
    color: var(--brand-primary);
}

.section-desc {
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 680px;
    font-weight: 300;
}

.text-center {
    text-align: center;
}
.text-center .section-desc {
    margin: 0 auto;
}

/* ==========================================================================
   BUTTONS & CTAS
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 14px 30px;
    font-family: var(--font-heading);
    font-size: 0.88rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
    touch-action: manipulation;
    text-align: center;
    border: 1px solid transparent;
}

.btn-gold,
.btn-spice {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(219, 129, 18, 0.35);
}

.btn-gold:hover,
.btn-spice:hover {
    background-color: var(--brand-hover);
    border-color: var(--brand-hover);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(219, 129, 18, 0.5);
}

.btn-outline {
    background-color: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border: 1.5px solid var(--brand-primary);
    backdrop-filter: blur(10px);
}

.btn-outline:hover {
    border-color: var(--brand-primary);
    background-color: var(--brand-primary);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 22px rgba(219, 129, 18, 0.4);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
    letter-spacing: 1.2px;
}

.menu-actions-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-top: 45px;
}

/* ==========================================================================
   NAVIGATION BAR
   ========================================================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.35s ease;
    background-color: transparent;
}

.navbar.scrolled {
    background-color: var(--bg-glass-heavy);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-subtle);
    height: 72px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 16px;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-heading);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 800;
    letter-spacing: 1.5px;
    color: var(--text-main);
    flex-shrink: 0;
}

.nav-logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.5));
}

.brand-location-badge {
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 3px 8px;
    background-color: rgba(219, 129, 18, 0.12);
    border: 1px solid var(--border-brand);
    color: var(--brand-primary);
    border-radius: var(--radius-full);
    text-transform: uppercase;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--text-secondary);
    position: relative;
    padding: 8px 0;
    text-transform: uppercase;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background-color: var(--brand-primary);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--text-main);
}

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

/* Navbar Right Controls */
.nav-controls {
    display: flex;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 1002;
    flex-shrink: 0;
}

/* Location Switcher in Navbar */
.nav-location-dropdown {
    position: relative;
    z-index: 1003;
}

.location-dropdown-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background-color: rgba(255, 255, 255, 0.06);
    border: 1px solid var(--border-brand);
    border-radius: var(--radius-full);
    color: var(--brand-light);
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all var(--transition-fast);
    cursor: pointer;
    user-select: none;
    touch-action: manipulation;
}

.location-dropdown-btn:hover,
.nav-location-dropdown.open .location-dropdown-btn {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    color: #ffffff;
    box-shadow: 0 0 16px rgba(219, 129, 18, 0.35);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background-color: var(--bg-surface-elevated);
    border: 1px solid var(--border-brand);
    border-radius: var(--radius-md);
    padding: 8px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.85), 0 0 20px rgba(219, 129, 18, 0.25);
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1010;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-location-dropdown.open .dropdown-menu,
.nav-location-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: all;
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    color: var(--text-secondary);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all var(--transition-fast);
}

.dropdown-item:hover {
    background-color: rgba(219, 129, 18, 0.15);
    color: var(--brand-light);
    transform: translateX(4px);
}

.dropdown-item.active {
    background-color: var(--brand-primary);
    color: #ffffff;
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    cursor: pointer;
    z-index: 1100;
    padding: 1px 0;
    touch-action: manipulation;
}

.mobile-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background-color: var(--text-main);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
    background-color: var(--brand-primary);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
    background-color: var(--brand-primary);
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background-color: var(--bg-glass-heavy);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    z-index: 1050;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    padding: 30px 20px;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    overflow-y: auto;
}

.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--border-brand);
    color: var(--text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1100;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.mobile-nav-close .svg-icon {
    width: 24px;
    height: 24px;
    stroke: var(--text-main);
    transition: stroke 0.2s ease;
}

.mobile-nav-close:hover,
.mobile-nav-close:focus-visible {
    background-color: var(--brand-primary);
    border-color: var(--brand-primary);
    transform: rotate(90deg) scale(1.06);
}

.mobile-nav-close:hover .svg-icon,
.mobile-nav-close:focus-visible .svg-icon {
    stroke: #ffffff;
}

.mobile-nav-links {
    list-style: none;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 5vw, 1.8rem);
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-main);
    text-transform: uppercase;
}

.mobile-nav-link:hover,
.mobile-nav-link.active {
    color: var(--brand-primary);
}

.mobile-locations-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

/* ==========================================================================
   CINEMATIC FULL-SCREEN LOCATION WIPE TRANSITION
   ========================================================================== */
#location-wipe-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
    visibility: hidden;
}

.wipe-curtain-top,
.wipe-curtain-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    height: 50%;
    background-color: #08090c;
    transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}

.wipe-curtain-top {
    top: 0;
    transform: translateY(-100%);
}

.wipe-curtain-bottom {
    bottom: 0;
    transform: translateY(100%);
}

.wipe-center-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 20px;
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.3s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.wipe-logo {
    width: 76px;
    height: 76px;
    margin: 0 auto 16px;
    filter: drop-shadow(0 0 25px rgba(219, 129, 18, 0.6));
    animation: logoPulse 1.8s infinite ease-in-out;
}

.wipe-brand-title {
    font-family: var(--font-heading);
    font-size: clamp(0.9rem, 2vw, 1.1rem);
    letter-spacing: 4px;
    color: var(--text-secondary);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.wipe-target-title {
    font-family: var(--font-heading);
    font-size: clamp(1.8rem, 6vw, 3.6rem);
    font-weight: 800;
    letter-spacing: 3px;
    color: var(--brand-primary);
    text-transform: uppercase;
}

#location-wipe-transition.active {
    visibility: visible;
    pointer-events: all;
}

#location-wipe-transition.active .wipe-curtain-top,
#location-wipe-transition.active .wipe-curtain-bottom {
    transform: translateY(0%);
}

#location-wipe-transition.active .wipe-center-content {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.2s;
}

#location-wipe-transition.revealing .wipe-curtain-top {
    transform: translateY(-100%);
    transition-delay: 0.1s;
}
#location-wipe-transition.revealing .wipe-curtain-bottom {
    transform: translateY(100%);
    transition-delay: 0.1s;
}
#location-wipe-transition.revealing .wipe-center-content {
    opacity: 0;
    transform: scale(1.05);
    transition-delay: 0s;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(219, 129, 18, 0.4)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 35px rgba(219, 129, 18, 0.8)); }
}

/* ==========================================================================
   HERO SECTIONS
   ========================================================================== */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    position: relative;
    padding: calc(var(--header-height) + 30px) 0 60px;
    background-color: var(--bg-main);
    overflow: hidden;
    width: 100%;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transform: scale(1.06);
    animation: heroZoom 14s infinite alternate ease-in-out;
    filter: brightness(0.65) contrast(1.1);
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(12, 13, 17, 0.4) 0%, rgba(12, 13, 17, 0.95) 90%),
                linear-gradient(to top, var(--bg-main) 0%, transparent 60%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 820px;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 16px;
    background-color: rgba(219, 129, 18, 0.12);
    border: 1px solid var(--border-brand);
    border-radius: var(--radius-full);
    font-family: var(--font-heading);
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--brand-light);
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.4rem, 5.5vw, 4.8rem);
    font-weight: 800;
    letter-spacing: 1.5px;
    line-height: 1.1;
    color: var(--text-main);
    margin-bottom: 20px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.7);
    word-wrap: break-word;
}

.hero-subtitle {
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    line-height: 1.75;
    color: var(--text-secondary);
    margin-bottom: 34px;
    max-width: 640px;
    font-weight: 300;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
}

@keyframes heroZoom {
    0% { transform: scale(1.04); }
    100% { transform: scale(1.10); }
}

/* Hero scroll indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: var(--text-muted);
    font-size: 0.72rem;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.scroll-mouse {
    width: 18px;
    height: 28px;
    border: 1px solid rgba(219, 129, 18, 0.4);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 3px;
    height: 5px;
    background-color: var(--brand-primary);
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDown 2s infinite ease-in-out;
}

@keyframes scrollDown {
    0% { transform: translate(-50%, 0); opacity: 1; }
    80% { transform: translate(-50%, 10px); opacity: 0; }
    100% { transform: translate(-50%, 0); opacity: 0; }
}

/* ==========================================================================
   ABOUT SPLIT SECTION
   ========================================================================== */
.split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    width: 100%;
}

.split-image-wrap {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-card);
    width: 100%;
}

.split-image-wrap img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.split-image-wrap:hover img {
    transform: scale(1.04);
}

.image-glow-border {
    position: absolute;
    inset: 0;
    border: 1px solid var(--border-brand);
    border-radius: var(--radius-md);
    pointer-events: none;
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
}

.split-highlights {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    margin-top: 30px;
    width: 100%;
}

.highlight-box {
    padding: 20px;
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    border-left: 3px solid var(--brand-primary);
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.highlight-box:hover {
    transform: translateY(-3px);
    border-color: var(--border-brand-hover);
    box-shadow: var(--shadow-soft);
}

.highlight-title {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    color: var(--brand-light);
    margin-bottom: 6px;
}

.highlight-desc {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

/* ==========================================================================
   LOCATION CARDS - CHOOSE YOUR BLACK PEPPER
   ========================================================================== */
.locations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
    width: 100%;
}

.location-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background-color: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    min-height: 520px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 36px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: var(--shadow-card);
    text-decoration: none;
    cursor: pointer;
    width: 100%;
}

.location-card-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1), filter 0.4s ease;
    filter: brightness(0.65);
}

.location-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(12, 13, 17, 0.2) 0%, rgba(12, 13, 17, 0.9) 70%, rgba(12, 13, 17, 0.98) 100%);
    transition: opacity 0.4s ease;
}

.location-card-content {
    position: relative;
    z-index: 2;
    transform: translateY(8px);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    width: 100%;
}

.location-card-badge {
    display: inline-block;
    padding: 5px 12px;
    background-color: rgba(219, 129, 18, 0.18);
    border: 1px solid var(--border-brand);
    color: var(--brand-light);
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.location-card-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-main);
    margin-bottom: 10px;
}

.location-card-desc {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    max-width: 440px;
}

.location-card-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.meta-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.meta-row svg {
    color: var(--brand-primary);
    flex-shrink: 0;
}

.location-card:hover {
    transform: translateY(-6px);
    border-color: var(--brand-primary);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(219, 129, 18, 0.3);
}

.location-card:hover .location-card-bg {
    transform: scale(1.06);
    filter: brightness(0.75);
}

.location-card:hover .location-card-content {
    transform: translateY(0);
}

/* ==========================================================================
   MENU EXPERIENCE & DIGITAL CARDS
   ========================================================================== */
.menu-nav-wrapper {
    position: sticky;
    top: var(--header-height);
    z-index: 500;
    background-color: var(--bg-glass-heavy);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 14px 0;
    border-top: 1px solid var(--border-subtle);
    border-bottom: 1px solid var(--border-subtle);
    margin-bottom: 40px;
    width: 100%;
}

.menu-categories {
    display: flex;
    align-items: center;
    gap: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 4px 0;
    width: 100%;
}

.menu-categories::-webkit-scrollbar {
    display: none;
}

.category-tab {
    white-space: nowrap;
    padding: 9px 18px;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
    flex-shrink: 0;
    touch-action: manipulation;
}

.category-tab:hover {
    color: var(--brand-light);
    border-color: var(--border-brand);
    background-color: rgba(219, 129, 18, 0.12);
}

.category-tab.active {
    background-color: var(--brand-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 4px 15px rgba(219, 129, 18, 0.4);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    width: 100%;
}

.dish-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    cursor: pointer;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.dish-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 0%;
    background-color: var(--brand-primary);
    transition: height 0.3s ease;
}

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

.dish-card:hover::before {
    height: 100%;
}

.dish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 10px;
}

.dish-name {
    font-family: var(--font-heading);
    font-size: 1.18rem;
    font-weight: 700;
    color: var(--text-main);
    line-height: 1.3;
}

.dish-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--brand-primary);
    white-space: nowrap;
}

.dish-desc {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 18px;
    flex-grow: 1;
}

.dish-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    flex-wrap: wrap;
    gap: 8px;
}

.dish-allergens {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
}

.allergen-tag {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 6px;
    background-color: rgba(255, 255, 255, 0.06);
    border-radius: 4px;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.view-dish-link {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

/* Dish Modal Lightbox */
.dish-modal-overlay {
    position: fixed;
    inset: 0;
    background-color: rgba(6, 7, 10, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.dish-modal-overlay.open {
    opacity: 1;
    visibility: visible;
}

.dish-modal {
    background-color: var(--bg-surface-elevated);
    border: 1px solid var(--border-brand);
    border-radius: var(--radius-lg);
    max-width: 580px;
    width: 100%;
    max-height: 90vh;
    max-height: 90dvh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.85), 0 0 30px rgba(219, 129, 18, 0.25);
    transform: scale(0.95) translateY(15px);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.dish-modal-overlay.open .dish-modal {
    transform: scale(1) translateY(0);
}

.dish-modal-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.dish-modal-body {
    padding: 24px;
}

.modal-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.65);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    z-index: 10;
    border: 1px solid var(--border-subtle);
    touch-action: manipulation;
}

.modal-close-btn:hover {
    background-color: var(--brand-primary);
    color: #ffffff;
}

/* ==========================================================================
   GALLERY (MASONRY & LIGHTBOX)
   ========================================================================== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 260px;
    gap: 16px;
    width: 100%;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-soft);
    width: 100%;
}

.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(12, 13, 17, 0.9) 100%);
    opacity: 0;
    display: flex;
    align-items: flex-end;
    padding: 18px;
    transition: opacity 0.3s ease;
}

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

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

.gallery-caption {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--text-main);
    letter-spacing: 1px;
}

/* Lightbox */
.lightbox-modal {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 20000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    padding: 16px;
    transition: all 0.3s ease;
}

.lightbox-modal.open {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 10px 40px rgba(0,0,0,0.8);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid var(--border-subtle);
    transition: var(--transition-fast);
    touch-action: manipulation;
}

.lightbox-nav:hover {
    background-color: var(--brand-primary);
    color: #ffffff;
}

.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }
.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    touch-action: manipulation;
}

/* ==========================================================================
   REVIEWS & TESTIMONIALS
   ========================================================================== */
.reviews-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
    width: 100%;
}

.review-card {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    width: 100%;
}

.review-card.featured {
    background-color: var(--bg-surface-elevated);
    border-color: var(--border-brand);
    box-shadow: var(--shadow-card);
}

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

.review-quote {
    font-family: var(--font-editorial);
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-main);
    font-style: italic;
    margin-bottom: 20px;
}

.review-card.featured .review-quote {
    font-size: 1.25rem;
    line-height: 1.7;
}

.reviewer-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--brand-primary);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 0.95rem;
}

.reviewer-name {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--text-main);
}

.reviewer-location {
    font-size: 0.78rem;
    color: var(--brand-light);
}

/* ==========================================================================
   CONTACT PAGE & FORMS
   ========================================================================== */
.contact-location-toggle {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.toggle-btn {
    padding: 12px 26px;
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border-radius: var(--radius-full);
    background-color: var(--bg-surface);
    color: var(--text-secondary);
    border: 1px solid var(--border-subtle);
    transition: all 0.3s ease;
    touch-action: manipulation;
}

.toggle-btn.active {
    background-color: var(--brand-primary);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 6px 20px rgba(219, 129, 18, 0.35);
}

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    width: 100%;
}

.contact-info-panel {
    background-color: var(--bg-surface);
    border: 1px solid var(--border-brand);
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow-card);
    width: 100%;
}

.contact-info-block {
    display: flex;
    gap: 16px;
    margin-bottom: 26px;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background-color: rgba(219, 129, 18, 0.12);
    border: 1px solid var(--border-brand);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.info-details h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brand-light);
    margin-bottom: 4px;
}

.info-details p, .info-details a {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.55;
    word-break: break-word;
}

.info-details a:hover {
    color: var(--brand-primary);
}

/* Contact Form */
.contact-form-panel {
    background-color: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(12px);
    width: 100%;
}

.form-group {
    margin-bottom: 20px;
    width: 100%;
}

.form-group label {
    display: block;
    font-family: var(--font-heading);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 13px 16px;
    background-color: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--brand-primary);
    background-color: rgba(219, 129, 18, 0.06);
    box-shadow: 0 0 15px rgba(219, 129, 18, 0.25);
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

/* Form Success Modal */
.success-banner {
    display: none;
    background-color: rgba(219, 129, 18, 0.15);
    border: 1px solid var(--brand-primary);
    border-radius: var(--radius-md);
    padding: 20px;
    text-align: center;
    color: var(--brand-light);
    margin-top: 18px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
    background-color: #07080b;
    border-top: 1px solid var(--border-subtle);
    padding: 70px 0 36px;
    margin-top: auto;
    width: 100%;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    width: 100%;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: 2px;
    color: var(--text-main);
    margin-bottom: 14px;
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.92rem;
    line-height: 1.65;
    max-width: 320px;
    margin-bottom: 20px;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--brand-primary);
    margin-bottom: 18px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.footer-link:hover {
    color: var(--brand-light);
    transform: translateX(4px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.82rem;
    flex-wrap: wrap;
    gap: 12px;
    width: 100%;
}

/* Back to Top */
#back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--bg-surface-elevated);
    border: 1px solid var(--border-brand);
    color: var(--brand-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 900;
    touch-action: manipulation;
}

#back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

#back-to-top:hover {
    background-color: var(--brand-primary);
    color: #ffffff;
    transform: translateY(-3px);
}

/* ==========================================================================
   SCROLL REVEAL & MICRO ANIMATIONS
   ========================================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 { transition-delay: 0.08s; }
.stagger-2 { transition-delay: 0.16s; }
.stagger-3 { transition-delay: 0.24s; }
.stagger-4 { transition-delay: 0.32s; }

/* ==========================================================================
   RESPONSIVE DESIGN BREAKPOINTS (375px to 1440px)
   ========================================================================== */

/* 1024px - Large Tablets & Small Laptops */
@media (max-width: 1024px) {
    .split-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    .split-image-wrap img {
        height: 380px;
    }
    .locations-grid {
        grid-template-columns: 1fr;
    }
    .location-card {
        min-height: 460px;
    }
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }
}

/* 768px - Tablets & Mobiles */
@media (max-width: 768px) {
    :root {
        --header-height: 72px;
    }
    .section {
        padding: 60px 0;
    }
    .nav-links {
        display: none;
    }
    .mobile-toggle {
        display: flex;
    }
    .location-dropdown-btn {
        padding: 7px 14px;
        font-size: 0.75rem;
    }
    .menu-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 240px;
    }
    .gallery-item.large {
        grid-column: span 1;
        grid-row: span 1;
    }
    .split-highlights {
        grid-template-columns: 1fr;
    }
    .hero-cta-group {
        flex-direction: column;
        width: 100%;
        align-items: stretch;
    }
    .hero-cta-group .btn {
        width: 100%;
    }
    .menu-actions-wrapper {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-top: 32px;
    }
    .menu-actions-wrapper .btn {
        width: 100%;
        max-width: 360px;
        justify-content: center;
        padding: 13px 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

/* 480px - Modern Smartphones (iPhone 12/13/14/15, Androids) */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    .nav-brand span {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }
    .nav-logo-img {
        height: 34px;
    }
    .location-dropdown-btn span {
        font-size: 0.72rem;
    }
    .location-card {
        padding: 24px;
        min-height: 420px;
    }
    .location-card-title {
        font-size: 1.8rem;
    }
    .contact-info-panel, .contact-form-panel {
        padding: 20px 16px;
    }
    .dish-card {
        padding: 20px;
    }
    .dish-modal-body {
        padding: 18px;
    }
    .toggle-btn {
        width: 100%;
        padding: 10px 16px;
    }
}

/* 375px - Small Mobile Screens */
@media (max-width: 375px) {
    .nav-brand span {
        display: none; /* Keep icon on very small screen */
    }
    .hero-title {
        font-size: 2.1rem;
    }
    .section-title {
        font-size: 1.8rem;
    }
    .btn {
        padding: 12px 20px;
        font-size: 0.8rem;
    }
}
