/*
 * Café Elephant — Leibnitz
 * Immersive Luxury Design System
 * --------------------------------------------------
 * Typography, layout, and fine animations.
 */

/* ==========================================================================
   1. VARIABLES & DESIGN TOKENS
   ========================================================================== */
:root {
    /* Color Palette */
    --bg-color: #121215; /* Sophisticated luxury slate-charcoal instead of pitch-black */
    --bg-glow: #141418;
    --text-primary: #f5f5f7;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --accent-silver: #d4d4d8;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-glow: rgba(255, 255, 255, 0.15);
    --gold-subtle: #d4af37;
    
    /* Fonts */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Layout Spacing */
    --container-width: 1440px;
    --section-gap: 22vh; /* Sleek, elegant spacing for snaking trunk */
    
    /* Z-Indices */
    --z-bg: 1;
    --z-ambient: -1; /* Fixed ambient mist placed at the very bottom, behind all transparent sections */
    --z-trunk: 3; /* Placed exactly above background overlays but behind content elements */
    --z-content: 4; /* Stacking index for all text and image visual blocks */
    --z-header: 10;
    --z-cursor: 100;
}

/* ==========================================================================
   2. RESET & BASE STYLES
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    user-select: none;
}

html {
    scroll-behavior: auto; /* Disabled for Lenis smooth scrolling */
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
}

body {
    font-family: var(--font-sans);
    background-color: var(--bg-color);
    color: var(--text-primary);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Smooth Scrolling Wrapper for Lenis */
#smooth-wrapper {
    width: 100%;
    overflow: visible;
}

#smooth-content {
    width: 100%;
    position: relative;
    overflow: visible;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}
::-webkit-scrollbar-track {
    background: var(--bg-color);
}
::-webkit-scrollbar-thumb {
    background: #1c1c21;
    border-radius: 3px;
}
::-webkit-scrollbar-thumb:hover {
    background: #27272a;
}

/* Typography Utilities */
.font-serif {
    font-family: var(--font-serif);
}
.font-sans {
    font-family: var(--font-sans);
}
.italic {
    font-style: italic;
}
.text-center {
    text-align: center;
}
.mobile-text {
    display: none;
}

/* ==========================================================================
   3. IMMERSIVE EFFECTS & GLOW
   ========================================================================== */
/* Custom Cursor */
.custom-cursor {
    width: 8px;
    height: 8px;
    background-color: #fff;
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    transition: width 0.3s ease, height 0.3s ease, background-color 0.3s ease;
}

.cursor-glow {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 70%);
    position: fixed;
    pointer-events: none;
    z-index: var(--z-cursor);
    transform: translate(-50%, -50%);
    will-change: transform;
}

/* Make cursor react to interactive elements */
.custom-cursor.hover {
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

/* Ambient Mist / Soft Gradients */
.ambient-mist {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: 
        radial-gradient(circle at 10% 20%, rgba(13, 13, 20, 0.8) 0%, transparent 50%),
        radial-gradient(circle at 90% 80%, rgba(20, 20, 28, 0.7) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(7, 7, 9, 1) 0%, rgba(12, 12, 18, 0.3) 100%);
    z-index: var(--z-ambient);
    pointer-events: none;
}

.ambient-gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: linear-gradient(180deg, rgba(7,7,9,1) 0%, rgba(7,7,9,0.3) 20%, rgba(7,7,9,0.3) 80%, rgba(7,7,9,1) 100%);
    z-index: var(--z-ambient);
    pointer-events: none;
}

/* Loader Styles */
body.loading {
    overflow: hidden;
    height: 100vh;
}

/* ==========================================================================
   4. NAVIGATION & HEADER
   ========================================================================== */
.header {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 60px);
    max-width: 1100px;
    height: 64px;
    z-index: var(--z-header);
    background: rgba(16, 16, 22, 0.45); /* Elegant deep gray capsule fill */
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 32px;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.header.scrolled {
    top: 12px;
    height: 58px;
    background: rgba(12, 12, 16, 0.85); /* Slightly darker/more solid gray on scroll */
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

.header-inner {
    width: 100%;
    height: 100%;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-primary);
    text-decoration: none;
    letter-spacing: 0.5px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.brand-logo .sub-brand {
    font-family: var(--font-sans);
    font-size: 0.6rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #888888; /* Elegant slate-gray brand accent */
    font-weight: 500;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links:hover .nav-link {
    opacity: 0.45;
}

.nav-link {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    padding: 6px 0;
    opacity: 1;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-link span {
    font-size: 0.6rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-right: 4px;
    vertical-align: super;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background-color: var(--text-primary);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.nav-links .nav-link:hover {
    opacity: 1;
    color: var(--text-primary);
}

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

.btn-reserve {
    border: 1px solid var(--border-color);
    padding: 10px 22px;
    border-radius: 40px;
    transition: all 0.3s ease;
    background-color: rgba(255,255,255,0.02);
}

.btn-reserve:hover {
    border-color: var(--text-primary);
    background-color: var(--text-primary);
    color: var(--bg-color);
}

.btn-reserve:hover span {
    color: rgba(7,7,9,0.6);
}

.header-actions {
    display: flex;
    align-items: center;
    font-size: 0.75rem;
    letter-spacing: 1px;
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 500;
    padding: 4px;
    transition: color 0.3s ease;
}

.lang-btn.active {
    color: var(--text-primary);
    font-weight: 600;
}

.lang-btn:hover {
    color: var(--text-primary);
}

.lang-divider {
    color: rgba(255,255,255,0.15);
    margin: 0 4px;
}

/* ==========================================================================
   5. HERO SECTION (0 scroll state)
   ========================================================================== */
.hero-section {
    width: 100vw;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Removed z-index to allow background cover image to participate globally at z-index 1, letting the trunk sit on top of it */
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.hero-bg-parallax-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 130%; /* Taller for nice parallax scroll depth */
    z-index: 2; /* Set above ambient overlays (z-index 1) to render the image fully visible */
    overflow: hidden;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
}

.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Luxury vertical gradient to black out edges and overlay textures */
    background: linear-gradient(180deg, rgba(7, 7, 9, 0.82) 0%, rgba(7, 7, 9, 0.9) 70%, rgba(7, 7, 9, 1) 100%);
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: var(--z-content); /* Sit on top of the trunk globally */
    position: relative;
}

.ofc-logo-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
    width: 100%;
    max-width: 250px; /* Aligned for the square logo */
    opacity: 0;
    transform: scale(0.95) translateY(15px);
    animation: heroFadeIn 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.2s;
}

.ofc-logo-img {
    width: 120px;
    height: 120px;
    object-fit: contain;
    /* Inverts the black line drawing of the original logo into a beautiful glowing white line-art logo */
    filter: invert(1) brightness(1.25) contrast(1.1) drop-shadow(0 0 10px rgba(255,255,255,0.08));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.ofc-logo-img:hover {
    transform: scale(1.05);
}

.ofc-logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 6px;
    color: var(--text-secondary);
    margin-top: 15px;
}

.hero-tagline {
    font-size: clamp(1.1rem, 2vw, 1.45rem);
    font-weight: 300;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 35px;
    line-height: 1.5;
    letter-spacing: 0.5px;
}

.logo-wrapper {
    margin-bottom: 35px;
    opacity: 0;
    transform: scale(0.9) translateY(20px);
    animation: heroFadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.3s;
}

.elephant-wrapper {
    width: 160px;
    height: auto;
    border: none;
    box-shadow: none;
    border-radius: 0;
    overflow: visible;
}

.elephant-art-img {
    width: 100%;
    height: auto;
    object-fit: contain;
    /* Inverts the black line drawing of the new elephant.png into glowing white vector lines */
    filter: invert(1) brightness(1.25) contrast(1.1) drop-shadow(0 0 10px rgba(255,255,255,0.08));
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1), filter 0.6s ease;
}

.elephant-wrapper:hover .elephant-art-img {
    filter: invert(1) brightness(1.35) contrast(1.1) drop-shadow(0 0 18px rgba(255,255,255,0.18));
    transform: scale(1.06);
}

.elephant-art-title {
    font-size: clamp(2rem, 3.8vw, 3rem);
    font-weight: 300;
    line-height: 1.25;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.elephant-art-desc {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--text-secondary);
    max-width: 600px;
}

/* Scroll Indicator (Positioned absolutely near the bottom edge of the 100vh viewport) */
.scroll-indicator-wrapper {
    position: absolute;
    bottom: 5vh;
    left: 50%;
    transform: translate(-50%, 20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    opacity: 0;
    z-index: var(--z-content);
    animation: heroFadeInScrollIndicator 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards 1.2s;
}

@keyframes heroFadeInScrollIndicator {
    to {
        opacity: 1;
        transform: translate(-50%, 0);
    }
}

.scroll-arrow-down {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, var(--text-primary) 50%, rgba(255,255,255,0) 100%);
    background-size: 100% 200%;
    background-position: 100% 0%;
    animation: scrollIndicatorAnim 2s cubic-bezier(0.76, 0, 0.24, 1) infinite;
}

.scroll-text {
    font-family: var(--font-sans);
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-muted);
}

/* Animations for Reveal on Load */
.text-reveal {
    opacity: 0;
    transform: translateY(20px);
    animation: heroFadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.5s;
}

@keyframes heroFadeIn {
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes scrollIndicatorAnim {
    0% {
        transform: scaleY(0);
        transform-origin: top;
    }
    45% {
        transform: scaleY(1);
        transform-origin: top;
    }
    55% {
        transform: scaleY(1);
        transform-origin: bottom;
    }
    100% {
        transform: scaleY(0);
        transform-origin: bottom;
    }
}

/* ==========================================================================
   6. DYNAMIC ELEPHANT TRUNK SVG CANVAS
   ========================================================================== */
.trunk-canvas-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: var(--z-trunk);
    pointer-events: none;
    overflow: visible;
}

.trunk-svg {
    width: 100%;
    height: 100%;
    overflow: visible;
    position: absolute;
    top: 0;
    left: 0;
}

/* Elegant Vector Line-Art Trunk Styling (Pronounced Background Highlight) */
.trunk-base-path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.08); /* Faint contour background */
    stroke-linecap: round;
}

.trunk-reveal-path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.70); /* Highlighted main line art - highly visible & distinct in background */
    stroke-linecap: round;
}

.trunk-contour-left, .trunk-contour-right {
    fill: none;
    stroke: rgba(255, 255, 255, 0.35); /* Crisp hand-sketched outer boundaries */
    stroke-width: 1.0;
    stroke-dasharray: 6 5; /* Sketched style */
}

.trunk-wrinkle-line {
    fill: none;
    stroke: rgba(255, 255, 255, 0.20); /* Visible cylindrical skin wrinkles */
    stroke-width: 0.8;
}

/* ==========================================================================
   7. EDITORIAL SCROLL SECTIONS
   ========================================================================== */
.scroll-section {
    min-height: 75vh;
    position: relative;
    z-index: var(--z-content); /* Placed above trunk (z-index: 3) so all transparent section elements stack perfectly on top of it */
    display: flex;
    align-items: center;
    width: 100%;
    /* Dynamic organic blending */
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.0s ease, transform 1.0s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Redesigned Clean Section Backdrops (Alternating Premium Slate-Grays & Charcoal Black) */
#about {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 16vh 8vw;
}

#menu {
    padding: 16vh 8vw;
}

#quote {
    padding: 16vh 8vw;
}

#reviews {
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    padding: 16vh 8vw;
}

.scroll-section.section-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Wide layout spacing */
.section-container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    display: flex;
    gap: 8vw;
    align-items: center;
    justify-content: space-between;
}

/* Alternating configurations */
.section-left .section-container {
    flex-direction: row;
}

.section-right .section-container {
    flex-direction: row-reverse;
}

/* Text Block Grid */
.section-text-block {
    flex: 0 0 42%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: var(--z-content);
}

.section-badge {
    display: inline-block;
    font-size: 0.62rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 5px 14px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.02);
    margin-bottom: 20px;
    width: fit-content;
    transition: all 0.35s ease;
}

.scroll-section:hover .section-badge {
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.04);
}

.badge-centered {
    display: block;
    margin: 0 auto 20px auto;
    text-align: center;
}

.section-number {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--text-muted);
    margin-bottom: 20px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 30px;
    color: var(--text-primary);
}

.section-description {
    font-size: 1.05rem;
    font-weight: 300;
    line-height: 1.8;
    color: #d4d4d8; /* Brighter, high-legibility light silver-gray copy */
    margin-bottom: 25px;
    letter-spacing: 0.2px;
}

.section-description-sub {
    font-size: 0.9rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--text-muted);
}

/* Visual Block Grid */
.section-visual-block {
    flex: 0 0 48%;
    position: relative;
    z-index: var(--z-content);
}

/* Image Parallax Frame */
.image-parallax-container {
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(255,255,255,0.05);
    background-color: rgba(255,255,255,0.01);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.4);
}

/* Landscape frames */
.large-frame {
    aspect-ratio: 16/9;
}

.parallax-img {
    width: 100%;
    height: 120%; /* Extra height to support parallax shift */
    object-fit: cover;
    position: absolute;
    top: -10%;
    left: 0;
    will-change: transform;
    transition: filter 0.8s ease, transform 0.3s ease;
}

/* Luxury Monochrome Stylization (Brighter, Cleaner Gray Tone) */
.img-bw {
    filter: grayscale(100%) contrast(1.12) brightness(0.94);
    transition: filter 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.image-parallax-container:hover .parallax-img {
    filter: grayscale(0%) contrast(1.02) brightness(1.02);
    transform: scale(1.03); /* Soft micro-zoom */
}

.img-glow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(255,255,255,0.03) 0%, rgba(7,7,9,0.7) 100%);
    pointer-events: none;
}

.image-caption {
    font-size: 0.62rem;
    font-weight: 500;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 15px;
    text-align: right;
    opacity: 0.75;
    transition: color 0.35s ease, opacity 0.35s ease;
}

.section-visual-block:hover .image-caption {
    color: var(--text-secondary);
    opacity: 1;
}

.parallax-caption {
    position: absolute;
    bottom: 30px;
    left: 40px;
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--text-primary);
    text-shadow: 0 2px 10px rgba(0,0,0,0.8);
    pointer-events: none;
}

/* ==========================================================================
   8. SPECIFIC SECTION SUB-STYLES
   ========================================================================== */
/* Menu Highlight Cards */
.menu-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Clean side-by-side grid on desktop */
    gap: 25px;
    margin-top: 35px;
}

.menu-highlight-card {
    background: rgba(20, 20, 24, 0.45); /* Elegant slate-gray container backdrop */
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-left: 3px solid #71717a; /* Sleek matte-gray accent bar */
    padding: 24px 30px;
    border-radius: 0 16px 16px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.menu-highlight-card:hover {
    background: rgba(30, 30, 36, 0.6);
    border-color: rgba(255, 255, 255, 0.08);
    border-left-color: var(--text-primary);
    transform: translateX(8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35);
}

.menu-card-title {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 8px;
}

.menu-card-desc {
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Signatures Lists */
.signature-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.sig-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    row-gap: 8px;
}

.sig-name {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.sig-dots {
    border-bottom: 1px dashed rgba(255, 255, 255, 0.15);
    margin: 0 15px;
}

.sig-price {
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-primary);
}

.sig-desc {
    grid-column: 1 / span 3;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--text-secondary);
}

/* Specialty display wireframes */
.spec-display {
    display: flex;
    justify-content: center;
    align-items: center;
}

.luxury-spotlight-display {
    width: 320px;
    height: 420px;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 160px 160px 0 0;
    position: relative;
    overflow: hidden;
    background-color: rgba(255,255,255,0.005);
    box-shadow: inset 0 20px 40px rgba(255,255,255,0.015);
    display: flex;
    justify-content: center;
    align-items: center;
}

.spotlight-circle {
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0) 70%);
    top: 15%;
    left: calc(50% - 125px);
    pointer-events: none;
}

.drink-wireframe {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 2;
}

.wireframe-svg {
    width: 140px;
    height: 210px;
    filter: drop-shadow(0 0 5px rgba(255,255,255,0.1));
}

.sig-badge {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 6px 15px;
    border-radius: 20px;
}

/* Parallax large frame modifiers */
.atmosphere-img {
    height: 130% !important;
    top: -15% !important;
}

/* Redesigned Premium Reviews Section */
.reviews-section {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.reviews-card-container {
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: var(--z-content);
}

.reviews-main-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    margin-bottom: 50px;
    color: var(--text-primary);
}

.reviews-card-frame {
    background: rgba(22, 22, 28, 0.42); /* Sleeker dark slate-gray tint */
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.07); /* More defined premium gray edge */
    border-radius: 24px;
    padding: 60px 80px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, 0.7);
    position: relative;
    overflow: hidden;
    z-index: 2;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reviews-card-frame:hover {
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(26, 26, 33, 0.48); /* shifts slightly on hover */
    transform: translateY(-4px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.85);
}

.reviews-card-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0) 100%);
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
    color: #e4c575; /* Warm bronze-gold star rating */
    font-size: 1.1rem;
    margin-bottom: 30px;
    filter: drop-shadow(0 0 4px rgba(228, 197, 117, 0.25));
}

.quote-watermark {
    position: absolute;
    top: -20px;
    left: 45px;
    font-size: 12rem;
    font-family: var(--font-serif);
    color: rgba(255, 255, 255, 0.015);
    line-height: 1;
    pointer-events: none;
}

.reviews-slider {
    position: relative;
    min-height: 200px;
    text-align: center;
}

.review-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: scale(0.98) translateY(12px);
    pointer-events: none;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-slide.active {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
    position: relative;
}

.quote-text {
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 25px;
    color: var(--text-primary);
    letter-spacing: 0.1px;
}

.quote-author {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-secondary);
}

/* Redesigned Minimalist Text Arrows */
.slider-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 35px;
    pointer-events: auto;
    position: static;
    width: 100%;
}

.nav-arrow {
    background: none;
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 0;
    width: auto;
    height: auto;
    padding: 8px 16px;
    color: var(--text-secondary);
    font-family: var(--font-sans);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.nav-arrow:hover {
    background: none;
    color: var(--text-primary);
    border-bottom-color: var(--text-primary);
    transform: translateY(-2px);
    box-shadow: none;
}

.prev-arrow {
    transform: none;
}

.next-arrow {
    transform: none;
}

.prev-arrow:hover {
    transform: translateY(-2px);
}

.next-arrow:hover {
    transform: translateY(-2px);
}

/* Spiced Up Modern Quote Section Styles */
.quote-section {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.z-index-content {
    z-index: 5;
    position: relative;
}

.quote-portal-bg {
    position: absolute;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    left: calc(50% - 240px);
    top: calc(50% - 240px);
    border: 1px solid rgba(255, 255, 255, 0.035);
    background: radial-gradient(circle, rgba(255, 255, 255, 0.012) 0%, rgba(255, 255, 255, 0) 70%);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.01), 0 20px 50px rgba(0, 0, 0, 0.4);
    z-index: 1;
    pointer-events: none;
    animation: portalPulse 8s ease-in-out infinite alternate;
}

@keyframes portalPulse {
    0% {
        transform: scale(0.98);
        border-color: rgba(255, 255, 255, 0.025);
    }
    100% {
        transform: scale(1.02);
        border-color: rgba(255, 255, 255, 0.05);
    }
}

.quote-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.quote-large {
    font-size: clamp(1.8rem, 3.2vw, 2.8rem);
    font-weight: 300;
    line-height: 1.45;
    letter-spacing: -0.2px;
    /* Soft metallic linear-gradient text fill */
    background: linear-gradient(135deg, #ffffff 0%, #ececed 55%, #a1a1aa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.5));
}

.quote-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.25) 50%, rgba(255,255,255,0) 100%);
    margin: 30px auto;
}

.quote-sub {
    font-size: 1.0rem;
    font-weight: 200;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    letter-spacing: 0.2px;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.slider-dot {
    width: 6px;
    height: 6px;
    background-color: var(--text-muted);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.slider-dot.active {
    background-color: var(--text-primary);
    transform: scale(1.3);
}

/* Editorial collage grid */
.gallery-collage-wrapper {
    flex: 0 0 48%;
}

.gallery-collage {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 20px;
    align-items: end;
}

.collage-item {
    position: relative;
}

.item-large {
    grid-column: 1 / span 8;
}

.item-small {
    grid-column: 7 / span 6;
    margin-bottom: -50px; /* Offset overlapping effect */
    z-index: 2;
}

.item-small .image-parallax-container {
    aspect-ratio: 1/1;
}

/* ==========================================================================
   9. LUXURIOUS RESERVATION PANEL (Glassmorphism)
   ========================================================================== */
.reservation-section {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10vh 8vw var(--section-gap) 8vw;
    margin-bottom: 0 !important;
}

.reservation-box-container {
    max-width: 900px;
    width: 100%;
    position: relative;
}

.reservation-card-glow {
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0) 60%);
    pointer-events: none;
    z-index: 1;
}

.reservation-inner {
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 24px;
    padding: 60px 80px;
    background-color: rgba(20, 20, 26, 0.38); /* Sleek slate-gray */
    backdrop-filter: blur(25px);
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.7);
    z-index: 2;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.reservation-inner:hover {
    border-color: rgba(255, 255, 255, 0.12);
    background-color: rgba(24, 24, 32, 0.44);
    box-shadow: 0 60px 120px rgba(0, 0, 0, 0.85);
}

.reservation-inner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.18) 50%, rgba(255,255,255,0) 100%);
}

.reservation-number {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 4px;
    color: var(--text-muted);
    text-align: center;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.reservation-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 300;
    text-align: center;
    margin-bottom: 15px;
}

.reservation-subtitle {
    font-size: 0.95rem;
    font-weight: 200;
    color: var(--text-secondary);
    text-align: center;
    max-width: 550px;
    margin: 0 auto 50px auto;
    line-height: 1.6;
}

/* Luxury Interactive Form */
.luxury-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

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

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

.input-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.form-label {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.luxury-input {
    background-color: rgba(255, 255, 255, 0.015);
    border: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-primary);
    padding: 12px 0 10px 0;
    font-size: 0.95rem;
    font-weight: 200;
    outline: none;
    transition: border-bottom-color 0.4s ease, background-color 0.4s ease;
}

.luxury-input:focus {
    border-bottom-color: var(--text-primary);
    background-color: rgba(255, 255, 255, 0.005);
}

/* Select element resetting */
.luxury-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='rgba(255,255,255,0.45)' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 5px center;
    padding-right: 25px;
    cursor: pointer;
}

.luxury-select option {
    background-color: var(--bg-color);
    color: var(--text-primary);
    font-weight: 300;
}

.luxury-textarea {
    resize: none;
}

/* Premium Booking Submit Button */
.submit-btn {
    margin-top: 20px;
    background-color: var(--text-primary);
    color: var(--bg-color);
    border: none;
    padding: 16px 30px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 3px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(255, 255, 255, 0.1);
}

.btn-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.5) 50%, rgba(255,255,255,0) 100%);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.submit-btn:hover .btn-glow {
    left: 150%;
}

/* Success panel */
.booking-success-message {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 30px 0;
}

.success-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 25px;
}

.success-circle {
    stroke-dasharray: 157;
    stroke-dashoffset: 157;
    animation: drawCircle 0.8s ease forwards;
}

.success-check {
    stroke-dasharray: 36;
    stroke-dashoffset: 36;
    animation: drawCheck 0.6s ease forwards 0.6s;
}

@keyframes drawCircle {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes drawCheck {
    to {
        stroke-dashoffset: 0;
    }
}

.success-title {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 15px;
}

.success-desc {
    font-size: 0.95rem;
    font-weight: 200;
    color: var(--text-secondary);
    max-width: 450px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.reset-btn {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--text-primary);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.reset-btn:hover {
    background-color: var(--text-primary);
    color: var(--bg-color);
    border-color: var(--text-primary);
}

.hidden {
    display: none !important;
}

/* ==========================================================================
   10. MINIMAL REFINED FOOTER
   ========================================================================== */
.footer {
    width: 100vw;
    background: linear-gradient(to bottom, rgba(7, 7, 9, 0) 0%, rgba(5, 5, 7, 1) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    position: relative;
    z-index: var(--z-content);
    padding: 100px 8vw 50px 8vw;
}

.footer-grid {
    max-width: var(--container-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.col-brand {
    padding-right: 40px;
}

/* Elegant Premium Social Links under Brand logo in footer */
.footer-socials {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 25px;
    margin-top: 5px;
}

.social-link {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.35s ease;
}

.social-link:hover {
    color: var(--text-primary);
}

.social-divider {
    color: rgba(255, 255, 255, 0.08);
    font-size: 0.7rem;
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.footer-tagline {
    font-size: 0.9rem;
    font-weight: 200;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 40px;
}

.footer-copyright {
    font-size: 0.7rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.footer-heading {
    font-size: 1.15rem;
    font-weight: 400;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.footer-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 0.85rem;
    font-weight: 200;
    color: var(--text-secondary);
}

.footer-list li {
    display: flex;
    justify-content: space-between;
}

.footer-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    border-top: 1px solid rgba(255, 255, 255, 0.03);
    padding-top: 15px;
    margin-top: 5px;
}

.footer-address {
    font-size: 0.9rem;
    font-weight: 200;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

.footer-contact {
    font-size: 0.85rem;
    font-weight: 200;
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-link {
    color: var(--text-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--text-muted);
}

.footer-bottom {
    max-width: var(--container-width);
    margin: 30px auto 0 auto;
    display: flex;
    justify-content: center;
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
    align-items: center;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.footer-bottom-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: var(--text-primary);
}

.bullet {
    color: rgba(255,255,255,0.06);
}

/* ==========================================================================
   11. RESPONSIVENESS & FLUID SCALING
   ========================================================================== */
@media (max-width: 1200px) {
    .header-inner {
        padding: 0 40px;
    }
    
    .nav-links {
        gap: 25px;
    }
    
    .scroll-section {
        padding: 0 5vw;
        margin-bottom: 25vh;
    }
    
    .section-container {
        gap: 5vw;
    }
}

.burger-btn {
    display: none;
}

@media (max-width: 991px) {
    :root {
        --section-gap: 20vh;
    }
    
    .header-inner {
        padding: 0 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }
    
    .nav-links {
        display: none;
    }

    .burger-btn {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-end;
        width: 24px;
        height: 16px;
        background: transparent;
        border: none;
        cursor: pointer;
        padding: 0;
        z-index: 150;
    }
    
    .burger-line {
        display: block;
        height: 1.5px;
        background-color: var(--text-primary);
        transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
        transform-origin: center;
    }
    
    .burger-line.line-1 { width: 22px; }
    .burger-line.line-2 { width: 14px; }
    .burger-line.line-3 { width: 22px; }
    
    .burger-btn.active .line-1 {
        transform: translateY(7.25px) rotate(45deg);
        width: 22px;
    }
    
    .burger-btn.active .line-2 {
        opacity: 0;
        transform: scaleX(0);
    }
    
    .burger-btn.active .line-3 {
        transform: translateY(-7.25px) rotate(-45deg);
        width: 22px;
    }

    /* Mobile Menu Drawer */
    .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100dvh;
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        z-index: 100;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        padding: 40px;
        opacity: 0;
        pointer-events: none;
        transform: scale(1.03);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .mobile-menu.active {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1);
    }
    
    .mobile-nav-links {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 25px;
        margin-bottom: 40px;
    }
    
    .mobile-nav-link {
        font-family: var(--font-serif);
        font-size: 1.8rem;
        color: var(--text-primary);
        text-decoration: none;
        letter-spacing: 1px;
        display: flex;
        align-items: baseline;
        gap: 15px;
        transition: color 0.35s ease, transform 0.35s ease;
        opacity: 0;
        transform: translateY(20px);
    }
    
    .mobile-menu.active .mobile-nav-link {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.5s cubic-bezier(0.16, 1, 0.3, 1), transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .mobile-menu.active .mobile-nav-link:nth-child(1) { transition-delay: 0.1s; }
    .mobile-menu.active .mobile-nav-link:nth-child(2) { transition-delay: 0.15s; }
    .mobile-menu.active .mobile-nav-link:nth-child(3) { transition-delay: 0.2s; }
    .mobile-menu.active .mobile-nav-link:nth-child(4) { transition-delay: 0.25s; }
    .mobile-menu.active .mobile-nav-link:nth-child(5) { transition-delay: 0.3s; }
    
    .mobile-nav-link .num {
        font-family: var(--font-sans);
        font-size: 0.75rem;
        color: var(--text-muted);
        letter-spacing: 1px;
    }
    
    .mobile-nav-link:hover {
        color: #ffffff;
        transform: translateY(-2px);
    }
    
    .mobile-menu-socials {
        display: flex;
        align-items: center;
        gap: 12px;
        opacity: 0;
        transform: translateY(15px);
        transition: opacity 0.5s ease 0.35s, transform 0.5s ease 0.35s;
    }
    
    .mobile-menu.active .mobile-menu-socials {
        opacity: 1;
        transform: translateY(0);
    }
    
    .mobile-soc-link {
        font-size: 0.7rem;
        text-transform: uppercase;
        letter-spacing: 2px;
        color: var(--text-secondary);
        text-decoration: none;
        transition: color 0.35s ease;
    }
    
    .mobile-soc-link:hover {
        color: var(--text-primary);
    }
    
    .mobile-soc-divider {
        color: rgba(255,255,255,0.08);
        font-size: 0.7rem;
    }
    
    .desktop-text {
        display: none !important;
    }
    
    .mobile-text {
        display: block !important;
    }
    
    span.mobile-text {
        display: inline !important;
    }
    
    p.mobile-text {
        display: block !important;
    }

    .scroll-section {
        padding: 15vh 8vw !important; /* Expanded mobile padding to let it breathe */
    }
    
    .section-container {
        flex-direction: column !important;
        gap: 70px !important; /* Ideal spacing between stacked image and text blocks */
    }
    
    .section-title {
        font-size: 1.85rem !important;
        line-height: 1.25 !important;
        margin-bottom: 20px !important;
    }
    
    .section-description {
        font-size: 0.92rem !important;
        line-height: 1.7 !important;
        margin-bottom: 20px !important;
        color: #e4e4e7 !important;
    }

    .section-description-sub {
        font-size: 0.82rem !important;
        line-height: 1.6 !important;
        color: #a1a1aa !important;
    }
    
    .section-badge {
        margin-bottom: 12px !important;
    }
    
    .section-number {
        margin-bottom: 12px !important;
    }
    
    .section-text-block, .section-visual-block, .gallery-collage-wrapper {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .item-small {
        margin-bottom: 0;
    }
    
    .reservation-inner {
        padding: 40px 30px;
    }
    
    .form-row-double, .form-row-triple {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* 2-Column Menu Layout on Mobile */
    .menu-highlights-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        margin-top: 25px !important;
    }
    
    .menu-highlight-card {
        padding: 16px 12px !important;
        border-radius: 12px !important;
    }
    
    .menu-card-title {
        font-size: 0.95rem !important;
        margin-bottom: 4px !important;
    }
    
    .menu-card-desc {
        font-size: 0.7rem !important;
        line-height: 1.35 !important;
    }

    /* Native CSS Snap Carousel for Reviews on Mobile */
    .reviews-card-container {
        padding: 0 20px !important;
    }
    
    .reviews-card-frame {
        padding: 45px 24px !important;
        border-radius: 16px !important;
    }
    
    .quote-watermark {
        left: 24px !important;
        font-size: 8rem !important;
    }
    
    .reviews-slider {
        display: flex !important;
        overflow-x: auto !important;
        scroll-snap-type: x mandatory !important;
        scrollbar-width: none !important;
        min-height: auto !important;
    }
    
    .reviews-slider::-webkit-scrollbar {
        display: none !important;
    }
    
    .review-slide {
        position: relative !important;
        display: block !important;
        flex: 0 0 100% !important;
        scroll-snap-align: center !important;
        opacity: 1 !important;
        transform: none !important;
        pointer-events: auto !important;
        transition: none !important;
        padding: 0 !important;
    }
    
    .quote-text {
        font-size: 1.15rem !important;
        line-height: 1.55 !important;
        margin-bottom: 20px !important;
    }
    
    .slider-nav {
        display: none !important;
    }
    
    .res-contact-info {
        flex-direction: column !important;
        gap: 12px !important;
        text-align: center !important;
    }
    
    .footer {
        padding: 70px 6vw 40px 6vw !important; /* Tighter padding for mobile */
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important; /* Smaller gap between stacked columns */
        padding-bottom: 40px !important;
    }
    
    .col-brand {
        padding-right: 0 !important;
    }

    .footer-logo {
        font-size: 1.45rem !important;
        margin-bottom: 15px !important;
    }

    .footer-tagline {
        font-size: 0.82rem !important;
        margin-bottom: 25px !important;
        line-height: 1.6 !important;
    }

    .footer-socials {
        margin-bottom: 25px !important;
    }

    .footer-heading {
        font-size: 1.05rem !important;
        margin-bottom: 15px !important; /* Reduced margin to keep headings connected to list contents */
    }

    .footer-list {
        gap: 10px !important;
        font-size: 0.8rem !important;
    }

    .footer-address {
        font-size: 0.82rem !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }

    .footer-contact {
        font-size: 0.82rem !important;
        line-height: 1.7 !important;
    }

    .footer-bottom {
        margin-top: 25px !important;
    }

    .footer-bottom-links {
        flex-wrap: wrap !important;
        justify-content: center !important;
        gap: 10px 18px !important; /* Elegant wrapping gap layout */
    }

    .footer-bottom-links .bullet {
        display: none !important; /* Hide static bullets on mobile to prevent layout fragmentation */
    }
}

@media (max-width: 576px) {
    .header {
        height: 70px;
    }
    
    .brand-logo {
        font-size: 1.15rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .quote-text {
        font-size: 1.25rem;
    }
}

/* Reservation Socials Panel */
.reservation-socials-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    margin-top: 50px;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.res-social-links {
    display: flex;
    gap: 12px;
    align-items: center;
}

.res-social-link {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.35s ease;
}

.res-social-link:hover {
    color: var(--text-primary);
}

.res-social-divider {
    color: rgba(255, 255, 255, 0.08);
    font-size: 0.72rem;
}

.res-contact-info {
    display: flex;
    gap: 20px;
    align-items: center;
}

.res-contact-link {
    font-size: 0.75rem;
    letter-spacing: 1px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.35s ease;
}

.res-contact-link:hover {
    color: var(--text-primary);
}
