/* MOLECULAR GASTRONOMY DESIGN SYSTEM
   Michelin-star elegance × Cutting-edge visual innovation
   "Swiss precision meets hand-polished marble with blown glass physics" */

/* CULINARY CSS VARIABLES - The molecular foundation */
:root {
    /* Gastronomic Color Palette - Hand-selected like wine */
    --champagne-gold: #d4af37;
    --burgundy-deep: #8b0000;
    --cream-white: #fefefe;
    --charcoal-elegant: #2c2c2c;
    --truffle-black: #1a1a1a;
    --copper-accent: #b87333;
    --sage-green: #9caf88;
    --pearl-shimmer: #f8f6f0;
    
    /* Holographic Wine Effects */
    --wine-gradient: linear-gradient(135deg, #8b0000 0%, #dc143c 50%, #b22222 100%);
    --gold-shimmer: linear-gradient(135deg, #ffd700 0%, #ffed4e 25%, #ffd700 50%, #ffb347 75%, #ffd700 100%);
    --copper-patina: linear-gradient(135deg, #b87333 0%, #cd7f32 50%, #a0522d 100%);
    --candlelight: radial-gradient(circle, rgba(255, 223, 0, 0.8) 0%, rgba(255, 140, 0, 0.4) 40%, transparent 70%);
    
    /* Advanced Shadow System - Like candlelight on crystal */
    --shadow-wine-glass: 
        0 10px 30px rgba(139, 0, 0, 0.3),
        0 5px 15px rgba(139, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    --shadow-candle-glow: 
        0 0 20px rgba(255, 223, 0, 0.6),
        0 0 40px rgba(255, 140, 0, 0.4),
        0 0 80px rgba(255, 99, 71, 0.2);
    --shadow-molecular: 
        0 5px 25px rgba(212, 175, 55, 0.4),
        0 10px 50px rgba(212, 175, 55, 0.2);
    --shadow-elegant: 
        0 20px 60px rgba(44, 44, 44, 0.1),
        0 10px 30px rgba(44, 44, 44, 0.05);
    
    /* Typography - French Elegance with Modern Precision */
    --font-elegant: 'Playfair Display', 'Times New Roman', serif;
    --font-modern: 'Inter', 'Helvetica Neue', sans-serif;
    --font-script: 'Dancing Script', cursive;
    
    /* Molecular Spacing System */
    --space-molecule: 0.25rem;
    --space-bubble: 0.5rem;
    --space-ingredient: 1rem;
    --space-plate: 1.5rem;
    --space-course: 2rem;
    --space-table: 3rem;
    --space-dining: 4rem;
    --space-restaurant: 6rem;
    --space-mansion: 8rem;
    
    /* Culinary Border Radius */
    --radius-bubble: 50%;
    --radius-plate: 20px;
    --radius-wine-glass: 40% 40% 60% 60% / 60% 60% 40% 40%;
    --radius-organic: 30% 70% 70% 30% / 30% 30% 70% 70%;
    
    /* Molecular Animation Timing */
    --timing-bubble: cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --timing-steam: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --timing-wine: cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --timing-elegant: cubic-bezier(0.4, 0, 0.2, 1);
}

/* MOLECULAR RESET - Ultra-refined foundation */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-modern);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--charcoal-elegant);
    background: var(--pearl-shimmer);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}

/* CULINARY ATMOSPHERE - Molecular background effects */
.culinary-atmosphere {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

/* MOVE ALL KEYFRAMES TO TOP FIRST - This was the main issue! */
@keyframes gentle-bob {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

@keyframes gentle-glow {
    0%, 100% { filter: brightness(1) drop-shadow(0 0 5px rgba(255,215,0,0.3)); }
    50% { filter: brightness(1.2) drop-shadow(0 0 15px rgba(255,215,0,0.6)); }
}

@keyframes gentle-sway {
    0%, 100% { transform: rotate(-2deg); }
    50% { transform: rotate(2deg); }
}

@keyframes warm-pulse {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.05); filter: brightness(1.1); }
}


/* MOLECULAR GASTRONOMY SHOWCASE - Stunning visual effects */
.restaurant-showcase {
    position: relative;
    width: 100%;
    height: 400px;
    background: var(--holo-primary);
    border-radius: var(--radius-organic);
    overflow: hidden;
    box-shadow: var(--shadow-molecular);
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: var(--space-dining);
}

/* Elegant Plate with Steam */
.showcase-plate {
    position: relative;
    width: 120px;
    height: 120px;
    background: var(--gold-shimmer);
    border-radius: var(--radius-bubble);
    box-shadow: var(--shadow-wine-glass);
    animation: gentle-glow 3s ease-in-out infinite;
}

.plate-steam {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 40px;
    background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.8), transparent);
    border-radius: 2px;
    animation: steam-rise 2s ease-in-out infinite;
}

.molecular-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.8), transparent);
    animation: molecular-bubble 4s ease-in-out infinite;
}

.effect-1 { width: 8px; height: 8px; top: 20%; left: 20%; animation-delay: 0s; }
.effect-2 { width: 6px; height: 6px; top: 60%; right: 30%; animation-delay: 1.5s; }
.effect-3 { width: 10px; height: 10px; bottom: 30%; left: 70%; animation-delay: 3s; }

/* Sophisticated Wine Glass */
.wine-glass {
    position: relative;
    width: 80px;
    height: 120px;
    background: var(--wine-gradient);
    border-radius: var(--radius-wine-glass);
    box-shadow: var(--shadow-wine-glass);
    animation: gentle-bob 4s ease-in-out infinite;
}

.wine-liquid {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 40px;
    background: var(--burgundy-deep);
    border-radius: 0 0 30px 30px;
    opacity: 0.8;
}

.wine-sparkle {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: gentle-glow 2s ease-in-out infinite;
}

/* Candlelight Ambiance */
.candle-ambiance {
    position: relative;
    width: 60px;
    height: 100px;
    animation: gentle-sway 6s ease-in-out infinite;
}

.candle-flame {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 30px;
    background: var(--candlelight);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    box-shadow: var(--shadow-candle-glow);
    animation: flame-flicker 1s ease-in-out infinite alternate;
}

.flame-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.3), transparent);
    border-radius: 50%;
    animation: gentle-glow 2s ease-in-out infinite;
}

@keyframes molecular-bubble {
    0%, 100% { transform: scale(0) translateY(0); opacity: 0; }
    25% { transform: scale(1) translateY(-10px); opacity: 1; }
    75% { transform: scale(1.2) translateY(-20px); opacity: 0.7; }
}

@keyframes flame-flicker {
    0% { transform: translateX(-50%) scale(1); }
    100% { transform: translateX(-50%) scale(1.1) rotate(2deg); }
}

/* CLEAR DINING STORY - What humans actually experience */
.dining-story {
    display: flex;
    gap: var(--space-course);
    padding: var(--space-dining);
    background: linear-gradient(135deg, var(--pearl-shimmer) 0%, rgba(212, 175, 55, 0.1) 100%);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-elegant);
}

.dining-moment {
    flex: 1;
    text-align: center;
    padding: var(--space-plate);
    background: rgba(255, 255, 255, 0.7);
    border-radius: var(--radius-md);
    transition: transform 0.3s var(--timing-elegant);
}

.dining-moment:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-molecular);
}

.moment-title {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-bubble);
    color: var(--charcoal-elegant);
}

.moment-scene {
    display: flex;
    justify-content: center;
    gap: var(--space-molecule);
    margin-top: var(--space-bubble);
}

.moment-scene > div {
    font-size: 1.8rem;
    animation: dining-breathe 4s ease-in-out infinite;
}

/* Meaningful animations for each dining moment */
.terrace-table { animation-delay: 0s; }
.mountain-view { animation-delay: 0.5s; }
.fresh-breeze { animation-delay: 1s; }

.cocktail-prep { animation-delay: 0s; }
.cheese-board { animation-delay: 0.7s; }
.conversation { animation-delay: 1.4s; }

.warm-light { animation-delay: 0s; }
.fine-dining { animation-delay: 0.8s; }
.wine-service { animation-delay: 1.6s; }

/* Simple, clear animation that communicates "alive" restaurant */
@keyframes dining-breathe {
    0%, 100% { 
        transform: scale(1);
        opacity: 0.8;
    }
    50% { 
        transform: scale(1.1);
        opacity: 1;
    }
}


/* Steam Particle System - Like fresh bread from the oven */
.steam-particle {
    position: absolute;
    width: 4px;
    height: 20px;
    background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 2px;
    filter: blur(1px);
}

.steam-1 {
    top: 20%;
    left: 15%;
    animation: steam-rise 8s ease-in-out infinite;
}

.steam-2 {
    top: 40%;
    right: 20%;
    animation: steam-rise 10s ease-in-out infinite 2s;
}

.steam-3 {
    bottom: 30%;
    left: 70%;
    animation: steam-rise 12s ease-in-out infinite 4s;
}

@keyframes steam-rise {
    0% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    10% {
        opacity: 0.6;
    }
    90% {
        opacity: 0.3;
    }
    100% {
        transform: translateY(-100px) scale(0.5);
        opacity: 0;
    }
}

/* Wine Bubble Physics - Champagne effervescence */
.wine-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.8), rgba(212, 175, 55, 0.3));
    animation: bubble-float 15s ease-in-out infinite;
}

.bubble-1 {
    width: 6px;
    height: 6px;
    bottom: 10%;
    left: 30%;
    animation-delay: 0s;
}

.bubble-2 {
    width: 4px;
    height: 4px;
    bottom: 20%;
    right: 40%;
    animation-delay: 3s;
}

.bubble-3 {
    width: 8px;
    height: 8px;
    bottom: 15%;
    left: 60%;
    animation-delay: 6s;
}

@keyframes bubble-float {
    0% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    10% {
        transform: translateY(-20px) scale(1);
        opacity: 0.8;
    }
    90% {
        transform: translateY(-200px) scale(1.2);
        opacity: 0.4;
    }
    100% {
        transform: translateY(-250px) scale(0);
        opacity: 0;
    }
}

/* Golden Dust - Like flour in sunlight */
.golden-dust {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--champagne-gold);
    border-radius: 50%;
    box-shadow: 0 0 4px var(--champagne-gold);
    animation: dust-dance 20s linear infinite;
}

.dust-1 {
    top: 30%;
    left: 20%;
    animation-delay: 0s;
}

.dust-2 {
    top: 60%;
    right: 30%;
    animation-delay: 10s;
}

@keyframes dust-dance {
    0% {
        transform: translate(0, 0) rotate(0deg);
        opacity: 0;
    }
    25% {
        transform: translate(100px, -50px) rotate(90deg);
        opacity: 1;
    }
    50% {
        transform: translate(-50px, -100px) rotate(180deg);
        opacity: 0.7;
    }
    75% {
        transform: translate(-100px, 50px) rotate(270deg);
        opacity: 1;
    }
    100% {
        transform: translate(0, 0) rotate(360deg);
        opacity: 0;
    }
}

/* Alpine Mist - Atmospheric depth */
.alpine-mist {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 20%, rgba(156, 175, 136, 0.03) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 80%, rgba(184, 115, 51, 0.02) 0%, transparent 50%);
    animation: mist-drift 30s ease-in-out infinite alternate;
}

@keyframes mist-drift {
    0% { transform: translateX(-20px) translateY(-10px); }
    100% { transform: translateX(20px) translateY(10px); }
}

/* GASTRONOMY NAVIGATION - Crystal elegance with molecular precision */
.gastro-nav {
    background: rgba(254, 254, 254, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-elegant);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: var(--space-plate) 0;
    transition: all 0.4s var(--timing-elegant);
}

.gastro-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gold-shimmer);
    opacity: 0.02;
    z-index: -1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-course);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Brand Emblem - Culinary coat of arms */
.nav-brand {
    display: flex;
    align-items: center;
    gap: var(--space-plate);
}

.brand-emblem {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: var(--wine-gradient);
    border-radius: var(--radius-wine-glass);
    box-shadow: var(--shadow-wine-glass);
    animation: emblem-glow 4s ease-in-out infinite alternate;
}

.emblem-wine, .emblem-mountain {
    position: absolute;
    font-size: 1.5rem;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.8));
}

.emblem-wine {
    z-index: 2;
    animation: wine-swirl 8s ease-in-out infinite;
}

.emblem-mountain {
    z-index: 1;
    opacity: 0.7;
    transform: scale(0.8);
    animation: mountain-mist 6s ease-in-out infinite alternate;
}

@keyframes emblem-glow {
    0% { box-shadow: var(--shadow-wine-glass); }
    100% { box-shadow: var(--shadow-wine-glass), var(--shadow-candle-glow); }
}

@keyframes wine-swirl {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(5deg) scale(1.05); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-5deg) scale(1.05); }
}

@keyframes mountain-mist {
    0% { opacity: 0.7; transform: scale(0.8); }
    100% { opacity: 0.9; transform: scale(0.85); }
}

/* Brand Typography */
.brand-text {
    display: flex;
    flex-direction: column;
}

.brand-name {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--wine-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

.brand-alpine {
    font-family: var(--font-script);
    font-size: 1.2rem;
    color: var(--copper-accent);
    line-height: 1;
    margin-top: -4px;
}

/* Navigation Links - Molecular interactions */
.nav-links {
    display: flex;
    align-items: center;
    gap: var(--space-table);
}

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--charcoal-elegant);
    font-weight: 500;
    font-size: 1rem;
    padding: var(--space-bubble) var(--space-ingredient);
    border-radius: var(--radius-plate);
    transition: all 0.3s var(--timing-elegant);
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: all 0.5s var(--timing-wine);
}

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    color: var(--burgundy-deep);
    transform: translateY(-2px);
}

.link-sparkle {
    position: absolute;
    top: 50%;
    right: -20px;
    width: 4px;
    height: 4px;
    background: var(--champagne-gold);
    border-radius: 50%;
    opacity: 0;
    transform: translateY(-50%);
    animation: sparkle-appear 0.3s ease-out;
}

.nav-link:hover .link-sparkle {
    opacity: 1;
    animation: sparkle-dance 0.6s ease-out;
}

@keyframes sparkle-appear {
    0% { opacity: 0; transform: translateY(-50%) scale(0); }
    100% { opacity: 1; transform: translateY(-50%) scale(1); }
}

@keyframes sparkle-dance {
    0%, 100% { transform: translateY(-50%) scale(1); }
    50% { transform: translateY(-60%) scale(1.5); }
}

/* Reservation Button - Culinary call-to-action */
.reservation-btn {
    background: var(--wine-gradient);
    color: var(--cream-white);
    border: none;
    padding: var(--space-ingredient) var(--space-course);
    border-radius: var(--radius-plate);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-molecular);
    transition: all 0.3s var(--timing-wine);
    display: flex;
    align-items: center;
    gap: var(--space-bubble);
}

.reservation-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.6s var(--timing-wine);
}

.reservation-btn:hover::before {
    left: 100%;
}

.reservation-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-molecular), var(--shadow-candle-glow);
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.4s var(--timing-bubble);
    transform: translate(-50%, -50%);
}

.reservation-btn:hover .btn-glow {
    width: 100px;
    height: 100px;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-bubble);
}

.menu-line {
    width: 25px;
    height: 2px;
    background: var(--charcoal-elegant);
    margin: 2px 0;
    transition: all 0.3s var(--timing-elegant);
}

/* HERO GASTRONOMY - Cinematic restaurant introduction */
.hero-gastronomy {
    padding: var(--space-mansion) 0;
    background: 
        linear-gradient(135deg, rgba(248, 246, 240, 0.95) 0%, rgba(254, 254, 254, 0.98) 100%),
        radial-gradient(ellipse at 30% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-gastronomy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--candlelight);
    opacity: 0.03;
    animation: hero-ambiance 15s ease-in-out infinite alternate;
}

@keyframes hero-ambiance {
    0% { opacity: 0.03; transform: scale(1); }
    100% { opacity: 0.08; transform: scale(1.1); }
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-course);
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: var(--space-restaurant);
    align-items: center;
    position: relative;
    z-index: 2;
}

/* Hero Badge - Restaurant credentials */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--space-bubble);
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.2);
    padding: var(--space-bubble) var(--space-ingredient);
    border-radius: 50px;
    font-size: 0.9rem;
    color: var(--burgundy-deep);
    margin-bottom: var(--space-course);
    backdrop-filter: blur(10px);
}

.badge-icon {
    animation: badge-shimmer 3s ease-in-out infinite;
}

@keyframes badge-shimmer {
    0%, 100% { transform: scale(1); filter: brightness(1); }
    50% { transform: scale(1.1); filter: brightness(1.2); }
}

/* Hero Title - Gastronomic poetry */
.hero-title {
    font-family: var(--font-elegant);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-course);
    display: flex;
    flex-direction: column;
}

.title-main {
    color: var(--charcoal-elegant);
    animation: title-entrance 1s ease-out 0.2s both;
}

.title-accent {
    background: var(--wine-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(139, 0, 0, 0.1));
    animation: title-entrance 1s ease-out 0.4s both;
}

.title-location {
    font-family: var(--font-script);
    font-size: 2.5rem;
    color: var(--copper-accent);
    margin-top: -10px;
    animation: title-entrance 1s ease-out 0.6s both;
}

@keyframes title-entrance {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Description */
.hero-description {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--charcoal-elegant);
    margin-bottom: var(--space-table);
    opacity: 0.9;
    animation: description-fade 1s ease-out 0.8s both;
}

@keyframes description-fade {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 0.9;
        transform: translateY(0);
    }
}

/* Hero Features - Restaurant highlights */
.hero-features {
    display: flex;
    gap: var(--space-table);
    margin-bottom: var(--space-dining);
}

.feature-item {
    display: flex;
    align-items: center;
    gap: var(--space-bubble);
    padding: var(--space-ingredient);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-plate);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s var(--timing-elegant);
    animation: features-rise 1s ease-out 1s both;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-molecular);
}

.feature-icon {
    font-size: 1.5rem;
    animation: feature-glow 4s ease-in-out infinite alternate;
}

@keyframes feature-glow {
    0% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3)); }
    100% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6)); }
}

.feature-text {
    font-weight: 600;
    color: var(--charcoal-elegant);
}

@keyframes features-rise {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Actions - Call to action buttons */
.hero-actions {
    display: flex;
    gap: var(--space-course);
    animation: actions-appear 1s ease-out 1.2s both;
}

.cta-primary {
    background: var(--wine-gradient);
    color: var(--cream-white);
    border: none;
    padding: var(--space-plate) var(--space-table);
    border-radius: var(--radius-plate);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-ingredient);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-molecular);
    transition: all 0.3s var(--timing-wine);
}

.cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: var(--shadow-molecular), var(--shadow-candle-glow);
}

.cta-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.8s var(--timing-wine);
}

.cta-primary:hover .cta-shimmer {
    left: 100%;
}

.cta-secondary {
    background: transparent;
    color: var(--charcoal-elegant);
    border: 2px solid var(--charcoal-elegant);
    padding: var(--space-plate) var(--space-table);
    border-radius: var(--radius-plate);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: var(--space-ingredient);
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--timing-elegant);
}

.cta-secondary:hover {
    background: var(--charcoal-elegant);
    color: var(--cream-white);
    transform: translateY(-3px);
}

.cta-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, rgba(44, 44, 44, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse-beat 2s ease-in-out infinite;
}

@keyframes pulse-beat {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.3; }
    50% { transform: translate(-50%, -50%) scale(2); opacity: 0; }
}

@keyframes actions-appear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* HERO VISUAL - Restaurant showcase with molecular effects */
.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.restaurant-showcase {
    position: relative;
    width: 400px;
    height: 400px;
    animation: showcase-float 6s ease-in-out infinite alternate;
}

@keyframes showcase-float {
    0% { transform: translateY(0) rotate(0deg); }
    100% { transform: translateY(-20px) rotate(2deg); }
}

/* Showcase Plate - Molecular gastronomy presentation */
.showcase-plate {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200px;
    height: 200px;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9) 0%, rgba(248, 246, 240, 0.8) 70%),
        linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    box-shadow: var(--shadow-molecular);
    border: 2px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
}

.plate-steam {
    position: absolute;
    top: 20%;
    left: 50%;
    width: 4px;
    height: 30px;
    background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: translateX(-50%);
    animation: plate-steam-rise 3s ease-in-out infinite;
}

@keyframes plate-steam-rise {
    0%, 100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0; }
    50% { transform: translateX(-50%) translateY(-20px) scale(1.2); opacity: 0.8; }
}

.plate-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: plate-glow-pulse 4s ease-in-out infinite;
}

@keyframes plate-glow-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); opacity: 0.2; }
    50% { transform: translate(-50%, -50%) scale(1.1); opacity: 0.4; }
}

/* Molecular Effects - Cuisine innovation visualization */
.molecular-effect {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.6), rgba(139, 0, 0, 0.3));
    animation: molecular-bubble 8s ease-in-out infinite;
}

.effect-1 {
    width: 12px;
    height: 12px;
    top: 30%;
    left: 60%;
    animation-delay: 0s;
}

.effect-2 {
    width: 8px;
    height: 8px;
    top: 60%;
    left: 30%;
    animation-delay: 2s;
}

.effect-3 {
    width: 10px;
    height: 10px;
    top: 40%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes molecular-bubble {
    0%, 100% {
        transform: scale(0) rotate(0deg);
        opacity: 0;
    }
    25% {
        transform: scale(1) rotate(90deg);
        opacity: 0.8;
    }
    75% {
        transform: scale(1.2) rotate(270deg);
        opacity: 0.6;
    }
}

/* Wine Glass - Elegant beverage presentation */
.wine-glass {
    position: absolute;
    top: 20%;
    right: 10%;
    width: 60px;
    height: 120px;
    transform: rotate(15deg);
    animation: glass-sway 8s ease-in-out infinite;
}

.wine-liquid {
    position: absolute;
    bottom: 20px;
    left: 50%;
    width: 40px;
    height: 60px;
    background: var(--wine-gradient);
    border-radius: 0 0 20px 20px;
    transform: translateX(-50%);
    box-shadow: inset 0 0 10px rgba(139, 0, 0, 0.3);
    animation: wine-swirl-liquid 6s ease-in-out infinite;
}

.wine-reflection {
    position: absolute;
    top: 10px;
    left: 60%;
    width: 8px;
    height: 20px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.6), transparent);
    border-radius: 4px;
    transform: translateX(-50%);
}

.wine-sparkle {
    position: absolute;
    top: 30%;
    left: 70%;
    width: 3px;
    height: 3px;
    background: var(--champagne-gold);
    border-radius: 50%;
    animation: wine-sparkle-twinkle 2s ease-in-out infinite;
}

@keyframes glass-sway {
    0%, 100% { transform: rotate(15deg); }
    50% { transform: rotate(10deg); }
}

@keyframes wine-swirl-liquid {
    0%, 100% { transform: translateX(-50%) rotate(0deg); }
    50% { transform: translateX(-50%) rotate(5deg); }
}

@keyframes wine-sparkle-twinkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

/* Candle Ambiance - Romantic atmosphere */
.candle-ambiance {
    position: absolute;
    bottom: 15%;
    left: 15%;
    width: 20px;
    height: 80px;
}

.candle-flame {
    position: absolute;
    top: 0;
    left: 50%;
    width: 12px;
    height: 16px;
    background: 
        radial-gradient(ellipse at bottom, #ffd700 0%, #ff8c00 50%, #ff4500 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: translateX(-50%);
    animation: flame-flicker 1.5s ease-in-out infinite alternate;
}

.flame-glow {
    position: absolute;
    top: -10px;
    left: 50%;
    width: 30px;
    height: 30px;
    background: var(--candlelight);
    border-radius: 50%;
    transform: translateX(-50%);
    animation: flame-glow-pulse 2s ease-in-out infinite;
    filter: blur(5px);
}

@keyframes flame-flicker {
    0% { transform: translateX(-50%) scale(1) skew(0deg); }
    100% { transform: translateX(-50%) scale(1.1) skew(2deg); }
}

@keyframes flame-glow-pulse {
    0%, 100% { opacity: 0.6; transform: translateX(-50%) scale(1); }
    50% { opacity: 0.9; transform: translateX(-50%) scale(1.2); }
}

/* Container System */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--space-course);
}

/* Section Titles - Gastronomic typography */
.section-title {
    font-family: var(--font-elegant);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--charcoal-elegant);
    margin-bottom: var(--space-course);
    text-align: center;
    line-height: 1.2;
}

.title-accent {
    background: var(--wine-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 2px 4px rgba(139, 0, 0, 0.1));
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--charcoal-elegant);
    text-align: center;
    margin-bottom: var(--space-restaurant);
    opacity: 0.8;
    line-height: 1.5;
}

/* SIGNATURE DISHES - Molecular gastronomy cards */
.signature-dishes {
    padding: var(--space-mansion) 0;
    background: 
        linear-gradient(135deg, rgba(254, 254, 254, 0.98) 0%, rgba(248, 246, 240, 0.95) 100%),
        radial-gradient(ellipse at 70% 30%, rgba(156, 175, 136, 0.03) 0%, transparent 60%);
}

.dishes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: var(--space-table);
}

.dish-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-plate);
    padding: var(--space-table);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-elegant);
    position: relative;
    overflow: hidden;
    transition: all 0.4s var(--timing-elegant);
    animation: dish-entrance 0.8s ease-out both;
}

.dish-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-molecular);
}

.dish-card.featured {
    border-color: var(--champagne-gold);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(212, 175, 55, 0.05) 100%);
    transform: scale(1.05);
}

.dish-badge {
    position: absolute;
    top: var(--space-ingredient);
    right: var(--space-ingredient);
    background: var(--wine-gradient);
    color: var(--cream-white);
    padding: var(--space-bubble) var(--space-ingredient);
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

@keyframes dish-entrance {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Dish Visual Effects */
.dish-visual {
    position: relative;
    height: 120px;
    margin: calc(var(--space-ingredient) * -1) calc(var(--space-table) * -1) var(--space-course);
    background: 
        radial-gradient(ellipse at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, rgba(248, 246, 240, 0.8) 0%, rgba(255, 255, 255, 0.9) 100%);
    border-radius: var(--radius-plate) var(--radius-plate) 0 0;
    overflow: hidden;
}

.dish-steam {
    position: absolute;
    top: 40%;
    left: 50%;
    width: 3px;
    height: 20px;
    background: linear-gradient(to top, transparent, rgba(255, 255, 255, 0.8), transparent);
    transform: translateX(-50%);
    animation: dish-steam-rise 4s ease-in-out infinite;
}

@keyframes dish-steam-rise {
    0%, 100% { transform: translateX(-50%) translateY(0) scale(1); opacity: 0; }
    50% { transform: translateX(-50%) translateY(-15px) scale(1.1); opacity: 0.7; }
}

.dish-sparkle {
    position: absolute;
    top: 30%;
    right: 30%;
    width: 4px;
    height: 4px;
    background: var(--champagne-gold);
    border-radius: 50%;
    animation: dish-sparkle-twinkle 3s ease-in-out infinite;
}

@keyframes dish-sparkle-twinkle {
    0%, 100% { opacity: 0; transform: scale(0) rotate(0deg); }
    50% { opacity: 1; transform: scale(1) rotate(180deg); }
}

/* Dish Content */
.dish-content {
    position: relative;
    z-index: 2;
}

.dish-name {
    font-family: var(--font-elegant);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--charcoal-elegant);
    margin-bottom: var(--space-ingredient);
    line-height: 1.3;
}

.dish-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--charcoal-elegant);
    opacity: 0.8;
    margin-bottom: var(--space-course);
}

.dish-tags {
    display: flex;
    gap: var(--space-bubble);
    margin-bottom: var(--space-course);
}

.tag {
    background: rgba(212, 175, 55, 0.1);
    color: var(--copper-accent);
    padding: var(--space-molecule) var(--space-bubble);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.dish-price {
    text-align: right;
}

.price-amount {
    font-family: var(--font-elegant);
    font-size: 1.8rem;
    font-weight: 700;
    background: var(--wine-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Dish Molecular Effects */
.dish-molecular {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.molecular-bubble {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(212, 175, 55, 0.4), rgba(139, 0, 0, 0.2));
    animation: molecular-float 12s ease-in-out infinite;
}

.b1 {
    width: 8px;
    height: 8px;
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.b2 {
    width: 6px;
    height: 6px;
    top: 60%;
    right: 30%;
    animation-delay: 4s;
}

.b3 {
    width: 10px;
    height: 10px;
    bottom: 30%;
    left: 60%;
    animation-delay: 8s;
}

@keyframes molecular-float {
    0%, 100% {
        transform: translateY(0) scale(0);
        opacity: 0;
    }
    25% {
        transform: translateY(-20px) scale(1);
        opacity: 0.6;
    }
    75% {
        transform: translateY(-40px) scale(1.2);
        opacity: 0.3;
    }
}

/* RESTAURANT ATMOSPHERE - Ambiance showcase */
.restaurant-atmosphere {
    padding: var(--space-mansion) 0;
    background: 
        linear-gradient(135deg, rgba(248, 246, 240, 0.95) 0%, rgba(254, 254, 254, 0.98) 100%),
        radial-gradient(ellipse at 20% 70%, rgba(139, 0, 0, 0.03) 0%, transparent 60%);
}

.atmosphere-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-restaurant);
    align-items: center;
}

.atmosphere-desc {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--charcoal-elegant);
    opacity: 0.9;
    margin-bottom: var(--space-table);
}

.atmosphere-features {
    display: flex;
    flex-direction: column;
    gap: var(--space-course);
}

.atmo-feature {
    display: flex;
    gap: var(--space-plate);
    align-items: flex-start;
    padding: var(--space-course);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-plate);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s var(--timing-elegant);
}

.atmo-feature:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-molecular);
}

.atmo-feature .feature-icon {
    font-size: 2rem;
    animation: atmo-icon-glow 4s ease-in-out infinite alternate;
}

@keyframes atmo-icon-glow {
    0% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3)); }
    100% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6)); }
}

.atmo-feature h4 {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal-elegant);
    margin-bottom: var(--space-bubble);
}

.atmo-feature p {
    color: var(--charcoal-elegant);
    opacity: 0.8;
    line-height: 1.4;
}

/* Restaurant Scene Visualization */
.restaurant-scene {
    position: relative;
    width: 100%;
    height: 400px;
    background: 
        radial-gradient(ellipse at 50% 100%, rgba(139, 0, 0, 0.1) 0%, transparent 70%),
        linear-gradient(135deg, rgba(248, 246, 240, 0.9) 0%, rgba(255, 255, 255, 0.95) 100%);
    border-radius: var(--radius-plate);
    overflow: hidden;
    box-shadow: var(--shadow-elegant);
}

.scene-ambient {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.ambient-light {
    position: absolute;
    border-radius: 50%;
    background: var(--candlelight);
    filter: blur(20px);
    animation: ambient-flicker 8s ease-in-out infinite alternate;
}

.light-1 {
    width: 100px;
    height: 100px;
    top: 20%;
    left: 30%;
    animation-delay: 0s;
}

.light-2 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 20%;
    animation-delay: 2s;
}

.light-3 {
    width: 60px;
    height: 60px;
    bottom: 30%;
    left: 60%;
    animation-delay: 4s;
}

@keyframes ambient-flicker {
    0% { opacity: 0.3; transform: scale(1); }
    100% { opacity: 0.7; transform: scale(1.1); }
}

/* Table Setting Visualization */
.table-setting {
    position: absolute;
    bottom: 20%;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 200px;
}

.candle-group {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
}

.candle {
    position: relative;
    width: 15px;
    height: 60px;
    background: linear-gradient(to bottom, #8b4513 0%, #d2691e 100%);
    border-radius: 7px;
}

.candle .flame {
    position: absolute;
    top: -8px;
    left: 50%;
    width: 8px;
    height: 12px;
    background: 
        radial-gradient(ellipse at bottom, #ffd700 0%, #ff8c00 50%, #ff4500 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: translateX(-50%);
    animation: candle-flame-dance 2s ease-in-out infinite alternate;
}

@keyframes candle-flame-dance {
    0% { transform: translateX(-50%) scale(1) skew(0deg); }
    100% { transform: translateX(-50%) scale(1.1) skew(3deg); }
}

.wax-drip {
    position: absolute;
    bottom: -5px;
    left: 2px;
    width: 4px;
    height: 8px;
    background: rgba(210, 105, 30, 0.8);
    border-radius: 2px;
    animation: wax-fall 10s ease-in-out infinite;
}

@keyframes wax-fall {
    0%, 90% { height: 8px; opacity: 0.8; }
    100% { height: 15px; opacity: 0.4; }
}

/* Wine Setup */
.wine-setup {
    position: absolute;
    bottom: 0;
    right: 20%;
    width: 100px;
    height: 100px;
}

.wine-bottle {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 20px;
    height: 80px;
    background: linear-gradient(to bottom, #2d5016 0%, #1a2f0a 100%);
    border-radius: 10px 10px 5px 5px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.3);
}

.wine-glasses {
    position: absolute;
    right: 0;
    bottom: 0;
    display: flex;
    gap: 10px;
}

.glass {
    width: 25px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.8);
    border-radius: 0 0 12px 12px;
    background: linear-gradient(to bottom, transparent 60%, rgba(139, 0, 0, 0.3) 100%);
    position: relative;
    animation: glass-clink 8s ease-in-out infinite;
}

.glass-1 { animation-delay: 0s; }
.glass-2 { animation-delay: 4s; }

@keyframes glass-clink {
    0%, 95% { transform: rotate(0deg); }
    98% { transform: rotate(-2deg); }
    100% { transform: rotate(0deg); }
}

/* CHEF STORY - Culinary artist presentation */
.chef-story {
    padding: var(--space-mansion) 0;
    background: 
        linear-gradient(135deg, rgba(254, 254, 254, 0.98) 0%, rgba(248, 246, 240, 0.95) 100%),
        radial-gradient(ellipse at 80% 20%, rgba(184, 115, 51, 0.04) 0%, transparent 60%);
}

.chef-content {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: var(--space-restaurant);
    align-items: center;
}

/* Chef Portrait */
.chef-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.chef-portrait {
    position: relative;
    width: 300px;
    height: 300px;
}

.portrait-frame {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: 
        radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.9) 0%, rgba(212, 175, 55, 0.1) 100%);
    border: 3px solid var(--champagne-gold);
    box-shadow: var(--shadow-molecular);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.chef-silhouette {
    width: 80%;
    height: 80%;
    background: 
        radial-gradient(ellipse at 40% 30%, var(--charcoal-elegant) 30%, transparent 60%),
        linear-gradient(135deg, var(--charcoal-elegant) 40%, rgba(44, 44, 44, 0.8) 60%);
    border-radius: 50%;
    position: relative;
}

.chef-silhouette::before {
    content: '👨‍🍳';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 4rem;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.chef-aura {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    border-radius: 50%;
    background: conic-gradient(
        from 0deg,
        transparent,
        rgba(212, 175, 55, 0.2),
        transparent,
        rgba(139, 0, 0, 0.1),
        transparent
    );
    animation: chef-aura-rotate 20s linear infinite;
}

@keyframes chef-aura-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Chef Tools */
.chef-tools {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.tool {
    position: absolute;
    font-size: 1.5rem;
    animation: tool-orbit 15s ease-in-out infinite;
}

.knife {
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.knife::before {
    content: '🔪';
    filter: drop-shadow(0 0 5px rgba(192, 192, 192, 0.8));
}

.whisk {
    bottom: 20%;
    left: 10%;
    animation-delay: 5s;
}

.whisk::before {
    content: '🥄';
    filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.8));
}

.spoon {
    top: 50%;
    left: 5%;
    animation-delay: 10s;
}

.spoon::before {
    content: '🥢';
    filter: drop-shadow(0 0 5px rgba(139, 0, 0, 0.8));
}

@keyframes tool-orbit {
    0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
    50% { transform: translateY(-10px) rotate(180deg) scale(1.1); }
}

/* Chef Text Content */
.chef-credentials {
    display: flex;
    gap: var(--space-course);
    margin-bottom: var(--space-course);
    flex-wrap: wrap;
}

.credential {
    background: var(--wine-gradient);
    color: var(--cream-white);
    padding: var(--space-bubble) var(--space-ingredient);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: var(--space-molecule);
    box-shadow: var(--shadow-molecular);
}

.chef-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--charcoal-elegant);
    opacity: 0.9;
    margin-bottom: var(--space-table);
}

.chef-quote {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-left: 4px solid var(--champagne-gold);
    padding: var(--space-course);
    border-radius: 0 var(--radius-plate) var(--radius-plate) 0;
    margin: var(--space-table) 0;
    position: relative;
}

.chef-quote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: var(--space-ingredient);
    font-family: var(--font-elegant);
    font-size: 3rem;
    color: var(--champagne-gold);
    line-height: 1;
}

.chef-quote p {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    font-style: italic;
    color: var(--charcoal-elegant);
    margin-bottom: var(--space-ingredient);
    line-height: 1.4;
}

.chef-quote cite {
    font-family: var(--font-script);
    font-size: 1rem;
    color: var(--copper-accent);
    font-style: normal;
}

.chef-achievements {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-course);
    margin-top: var(--space-table);
}

.achievement {
    text-align: center;
    padding: var(--space-course);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-plate);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s var(--timing-elegant);
}

.achievement:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-molecular);
}

.achievement-number {
    display: block;
    font-family: var(--font-elegant);
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--wine-gradient);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: var(--space-bubble);
}

.achievement-label {
    font-size: 0.9rem;
    color: var(--charcoal-elegant);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* CONTACT & RESERVATION - Guest services */
.contact-reservation {
    padding: var(--space-mansion) 0;
    background: 
        linear-gradient(135deg, rgba(248, 246, 240, 0.95) 0%, rgba(254, 254, 254, 0.98) 100%),
        radial-gradient(ellipse at 50% 20%, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-restaurant);
}

/* Contact Information */
.contact-methods {
    display: flex;
    flex-direction: column;
    gap: var(--space-course);
    margin-bottom: var(--space-table);
}

.contact-method {
    display: flex;
    gap: var(--space-plate);
    align-items: flex-start;
    padding: var(--space-course);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-plate);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-elegant);
    transition: all 0.3s var(--timing-elegant);
}

.contact-method:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-molecular);
}

.contact-method.primary {
    border-color: var(--champagne-gold);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(212, 175, 55, 0.05) 100%);
}

.method-icon {
    font-size: 1.8rem;
    animation: method-icon-glow 4s ease-in-out infinite alternate;
}

@keyframes method-icon-glow {
    0% { filter: drop-shadow(0 0 5px rgba(212, 175, 55, 0.3)); }
    100% { filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.6)); }
}

.method-content h4 {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--charcoal-elegant);
    margin-bottom: var(--space-bubble);
}

.method-value {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--burgundy-deep);
    margin-bottom: var(--space-molecule);
}

.method-note {
    font-size: 0.9rem;
    color: var(--charcoal-elegant);
    opacity: 0.7;
}

/* Opening Hours */
.opening-hours {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    border-radius: var(--radius-plate);
    padding: var(--space-course);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-elegant);
}

.opening-hours h4 {
    font-family: var(--font-elegant);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--charcoal-elegant);
    margin-bottom: var(--space-course);
    text-align: center;
}

.hours-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-ingredient);
}

.hour-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--space-bubble) var(--space-ingredient);
    border-radius: var(--radius-plate);
    background: rgba(255, 255, 255, 0.5);
    transition: all 0.3s var(--timing-elegant);
}

.hour-row:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

.hour-row.closed {
    opacity: 0.6;
    background: rgba(139, 0, 0, 0.05);
}

.day {
    font-weight: 600;
    color: var(--charcoal-elegant);
}

.time {
    color: var(--burgundy-deep);
    font-weight: 500;
}

/* Reservation Form */
.reservation-form-container {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-radius: var(--radius-plate);
    padding: var(--space-table);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-molecular);
}

.reservation-form h3 {
    font-family: var(--font-elegant);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--charcoal-elegant);
    margin-bottom: var(--space-course);
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-ingredient);
    margin-bottom: var(--space-ingredient);
}

.form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: var(--space-ingredient);
}

.form-group label {
    font-weight: 600;
    color: var(--charcoal-elegant);
    margin-bottom: var(--space-bubble);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: var(--space-ingredient);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: var(--radius-plate);
    font-size: 1rem;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    transition: all 0.3s var(--timing-elegant);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--champagne-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    background: rgba(255, 255, 255, 0.95);
}

.submit-btn {
    width: 100%;
    background: var(--wine-gradient);
    color: var(--cream-white);
    border: none;
    padding: var(--space-plate) var(--space-table);
    border-radius: var(--radius-plate);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-ingredient);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-molecular);
    transition: all 0.3s var(--timing-wine);
    margin-top: var(--space-course);
}

.submit-btn:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-molecular), var(--shadow-candle-glow);
}

.btn-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: all 0.8s var(--timing-wine);
}

.submit-btn:hover .btn-shimmer {
    left: 100%;
}

/* GASTRO FOOTER - Restaurant information */
.gastro-footer {
    background: var(--charcoal-elegant);
    color: var(--cream-white);
    padding: var(--space-restaurant) 0 var(--space-table);
    position: relative;
    overflow: hidden;
}

.gastro-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--wine-gradient);
    opacity: 0.05;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: var(--space-restaurant);
    margin-bottom: var(--space-table);
    position: relative;
    z-index: 2;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: var(--space-plate);
}

.footer-brand .brand-emblem {
    width: 50px;
    height: 50px;
}

.footer-brand .brand-name {
    font-size: 1.5rem;
}

.brand-tagline {
    font-family: var(--font-script);
    font-size: 1rem;
    color: var(--champagne-gold);
    line-height: 1;
    margin-top: -4px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-table);
}

.footer-column h4 {
    font-family: var(--font-elegant);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: var(--space-course);
    color: var(--champagne-gold);
}

.footer-column a {
    display: block;
    color: var(--cream-white);
    text-decoration: none;
    margin-bottom: var(--space-ingredient);
    opacity: 0.8;
    transition: all 0.3s var(--timing-elegant);
}

.footer-column a:hover {
    opacity: 1;
    color: var(--champagne-gold);
    transform: translateX(5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-table);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    z-index: 2;
}

.footer-awards {
    display: flex;
    gap: var(--space-course);
}

.award {
    background: rgba(212, 175, 55, 0.1);
    color: var(--champagne-gold);
    padding: var(--space-bubble) var(--space-ingredient);
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: var(--space-molecule);
}

/* MOBILE-FIRST RESPONSIVE DESIGN - App-like experience */

/* Mobile Navigation Enhancements */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s var(--timing-elegant);
}

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

.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: linear-gradient(135deg, rgba(254, 254, 254, 0.98) 0%, rgba(248, 246, 240, 0.95) 100%);
    backdrop-filter: blur(25px);
    padding: var(--space-restaurant);
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10000;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav-menu.active {
    right: 0;
}

.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: var(--space-table);
    padding-bottom: var(--space-course);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    padding: var(--space-bubble);
    border-radius: 50%;
    background: rgba(139, 0, 0, 0.1);
    color: var(--burgundy-deep);
    transition: all 0.3s var(--timing-elegant);
}

.mobile-nav-close:hover {
    transform: scale(1.1);
    background: rgba(139, 0, 0, 0.2);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: var(--space-ingredient);
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: var(--space-ingredient);
    padding: var(--space-course);
    text-decoration: none;
    color: var(--charcoal-elegant);
    font-weight: 500;
    font-size: 1.1rem;
    border-radius: var(--radius-plate);
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s var(--timing-elegant);
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--wine-gradient);
    transition: all 0.4s var(--timing-wine);
    opacity: 0.1;
}

.mobile-nav-link:hover::before {
    left: 0;
}

.mobile-nav-link:hover {
    color: var(--burgundy-deep);
    transform: translateX(10px);
    box-shadow: var(--shadow-molecular);
}

.mobile-nav-link-icon {
    font-size: 1.3rem;
    width: 30px;
    text-align: center;
}

.mobile-reservation-cta {
    margin-top: var(--space-course);
    padding: var(--space-course);
    background: var(--wine-gradient);
    color: var(--cream-white);
    text-align: center;
    border-radius: var(--radius-plate);
    text-decoration: none;
    font-weight: 600;
    box-shadow: var(--shadow-molecular);
    transition: all 0.3s var(--timing-wine);
}

.mobile-reservation-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-molecular), var(--shadow-candle-glow);
}

/* Mobile Hero Enhancements */
.mobile-hero-badge {
    background: rgba(139, 0, 0, 0.1);
    border: 1px solid rgba(139, 0, 0, 0.3);
    padding: var(--space-ingredient) var(--space-course);
    border-radius: 25px;
    margin-bottom: var(--space-course);
    backdrop-filter: blur(10px);
    text-align: center;
}

.mobile-hero-actions {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: none;
    gap: var(--space-ingredient);
    z-index: 100;
}

.mobile-cta-phone {
    flex: 1;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: white;
    border: none;
    padding: var(--space-course);
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-bubble);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: all 0.3s var(--timing-elegant);
}

.mobile-cta-reserve {
    flex: 1;
    background: var(--wine-gradient);
    color: var(--cream-white);
    border: none;
    padding: var(--space-course);
    border-radius: 25px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-bubble);
    text-decoration: none;
    box-shadow: var(--shadow-molecular);
    transition: all 0.3s var(--timing-wine);
}

.mobile-cta-phone:active,
.mobile-cta-reserve:active {
    transform: scale(0.95);
}

/* Touch-Friendly Cards */
.mobile-dish-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    padding: var(--space-course);
    margin-bottom: var(--space-course);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: all 0.3s var(--timing-elegant);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.mobile-dish-card:active {
    transform: scale(0.98);
}

.mobile-dish-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: all 0.6s var(--timing-wine);
}

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

/* Swipe Gestures for Mobile */
.mobile-swipe-container {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.mobile-swipe-container::-webkit-scrollbar {
    display: none;
}

.mobile-swipe-item {
    scroll-snap-align: start;
    flex-shrink: 0;
}

/* Mobile Form Enhancements */
.mobile-form-floating-label {
    position: relative;
    margin-bottom: var(--space-course);
}

.mobile-form-floating-label input,
.mobile-form-floating-label select,
.mobile-form-floating-label textarea {
    width: 100%;
    padding: var(--space-course) var(--space-ingredient);
    border: 2px solid rgba(212, 175, 55, 0.2);
    border-radius: 15px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    font-size: 1rem;
    transition: all 0.3s var(--timing-elegant);
    appearance: none;
}

.mobile-form-floating-label label {
    position: absolute;
    top: 50%;
    left: var(--space-ingredient);
    transform: translateY(-50%);
    color: var(--charcoal-elegant);
    pointer-events: none;
    transition: all 0.3s var(--timing-elegant);
    background: rgba(255, 255, 255, 0.9);
    padding: 0 var(--space-bubble);
    border-radius: 8px;
}

.mobile-form-floating-label input:focus,
.mobile-form-floating-label input:not(:placeholder-shown),
.mobile-form-floating-label select:focus,
.mobile-form-floating-label textarea:focus {
    border-color: var(--champagne-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.mobile-form-floating-label input:focus + label,
.mobile-form-floating-label input:not(:placeholder-shown) + label,
.mobile-form-floating-label select:focus + label,
.mobile-form-floating-label textarea:focus + label {
    top: 0;
    transform: translateY(-50%);
    font-size: 0.8rem;
    color: var(--champagne-gold);
    font-weight: 600;
}

/* Responsive Breakpoints with Mobile-First Approach - FIXED */
@media (max-width: 860px) {
    /* Show mobile navigation elements */
    .nav-links {
        display: none;
    }
    
    .mobile-menu {
        display: flex;
    }
    
    /* Mobile layout adjustments */
    .hero-container,
    .atmosphere-content,
    .chef-content,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-table);
        text-align: center;
    }
    
    .hero-visual {
        order: -1;
        margin-bottom: var(--space-course);
    }
    
    .dishes-grid {
        grid-template-columns: 1fr;
        gap: var(--space-course);
    }
    
    .hero-features {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-course);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: var(--space-course);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-course);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-course);
        text-align: center;
    }
    
    /* Navigation adjustments */
    .nav-container {
        padding: 0 var(--space-course);
    }
    
    /* Restaurant showcase scaling */
    .restaurant-showcase {
        width: 350px;
        height: 350px;
    }
    
    /* Form adjustments */
    .form-row {
        grid-template-columns: 1fr;
        gap: var(--space-ingredient);
    }
    
    .chef-achievements {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--space-course);
    }
}

@media (max-width: 768px) {
    :root {
        --space-mansion: 3rem;
        --space-restaurant: 2rem;
        --space-table: 1.5rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .title-location {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-features {
        grid-template-columns: 1fr;
        gap: var(--space-ingredient);
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: var(--space-course);
    }
    
    .chef-achievements {
        grid-template-columns: 1fr;
        gap: var(--space-course);
    }
    
    .restaurant-showcase {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 480px) {
    :root {
        --space-mansion: 2rem;
        --space-restaurant: 1.5rem;
        --space-table: 1rem;
        --space-course: 0.75rem;
        --space-plate: 0.5rem;
        --space-ingredient: 0.375rem;
    }

    body {
        padding-bottom: 80px; /* Space for fixed mobile CTAs */
        overflow-x: hidden; /* Prevent horizontal scroll */
    }

    /* Fix mobile hero actions positioning */
    .mobile-hero-actions {
        display: flex;
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 0;
        max-width: calc(100vw - 20px);
    }

    .hero-gastronomy {
        min-height: 60vh;
        padding: var(--space-restaurant) 0;
    }

    /* Fix container padding for mobile */
    .container {
        max-width: 100%;
        padding: 0 var(--space-course);
        margin: 0 auto;
    }

    .nav-container {
        padding: 0 var(--space-course);
        max-width: 100%;
    }

    /* Fix hero content alignment */
    .hero-container {
        max-width: 100%;
        padding: 0 var(--space-course);
        margin: 0 auto;
    }

    .hero-content {
        max-width: 100%;
        padding: 0;
    }

    /* Fix hero badge overflow */
    .hero-badge {
        max-width: calc(100vw - 2rem);
        padding: var(--space-bubble) var(--space-ingredient);
        font-size: 0.8rem;
        text-align: center;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.1;
        max-width: 100%;
        word-wrap: break-word;
    }

    .title-location {
        font-size: 1.5rem;
        word-wrap: break-word;
    }

    .hero-description {
        font-size: 1rem;
        line-height: 1.5;
        max-width: 100%;
        word-wrap: break-word;
    }

    .hero-features {
        display: grid;
        grid-template-columns: 1fr;
        gap: var(--space-ingredient);
        width: 100%;
        max-width: 100%;
    }

    .feature-item {
        width: 100%;
        max-width: 100%;
        padding: var(--space-course);
        justify-content: flex-start;
        box-sizing: border-box;
    }

    .hero-actions {
        display: none; /* Hide desktop actions, use mobile fixed CTAs */
    }

    .hero-visual {
        margin-top: var(--space-course);
        display: flex;
        justify-content: center;
        align-items: center;
        max-width: 100%;
        overflow: hidden;
    }

    .restaurant-showcase {
        width: 280px;
        height: 280px;
        max-width: calc(100vw - 2rem);
    }

    /* Fix section headers */
    .section-header {
        max-width: 100%;
        padding: 0 var(--space-course);
        text-align: center;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.2;
        max-width: 100%;
        word-wrap: break-word;
    }

    .section-subtitle {
        max-width: 100%;
        word-wrap: break-word;
        padding: 0 var(--space-ingredient);
    }

    /* Fix brand elements */
    .brand-name {
        font-size: 1.2rem;
        word-wrap: break-word;
    }

    .brand-alpine {
        font-size: 0.8rem;
        word-wrap: break-word;
    }

    .brand-emblem {
        width: 40px;
        height: 40px;
        flex-shrink: 0;
    }

    .brand-text {
        max-width: calc(100% - 50px);
        overflow: hidden;
    }

    /* Fix dishes grid */
    .dishes-grid {
        grid-template-columns: 1fr;
        gap: var(--space-course);
        padding: 0 var(--space-course);
        max-width: 100%;
    }

    .dish-card {
        border-radius: 20px;
        padding: var(--space-course);
        max-width: 100%;
        box-sizing: border-box;
    }

    /* Fix atmosphere visual */
    .atmosphere-visual {
        max-width: 100%;
        overflow: hidden;
        padding: 0 var(--space-course);
    }

    .dining-story {
        max-width: 100%;
        padding: var(--space-course);
        box-sizing: border-box;
        display: flex !important;
        flex-direction: column !important;
        gap: var(--space-ingredient);
        width: 100%;
        overflow: hidden;
    }

    .dining-moment {
        max-width: 100%;
        padding: var(--space-ingredient);
        box-sizing: border-box;
        margin: 0;
    }

    .moment-title {
        font-size: 1rem;
        margin-bottom: var(--space-bubble);
        text-align: center;
        word-wrap: break-word;
        max-width: 100%;
    }

    .moment-scene {
        display: flex;
        justify-content: center;
        gap: var(--space-molecule);
        margin-top: var(--space-bubble);
        flex-wrap: wrap;
        max-width: 100%;
    }

    .moment-scene > div {
        font-size: 1.5rem;
        flex-shrink: 0;
    }

    /* Fix chef credentials */
    .chef-credentials {
        display: flex;
        flex-direction: column;
        gap: var(--space-ingredient);
        align-items: center;
        max-width: 100%;
    }

    .credential {
        max-width: 100%;
        text-align: center;
        padding: var(--space-bubble) var(--space-ingredient);
        font-size: 0.8rem;
        word-wrap: break-word;
        box-sizing: border-box;
    }

    .chef-description {
        max-width: 100%;
        word-wrap: break-word;
        text-align: center;
        padding: 0 var(--space-ingredient);
    }

    /* Fix contact grid */
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-course);
        max-width: 100%;
        padding: 0 var(--space-course);
    }

    /* Fix footer */
    .footer-content {
        max-width: 100%;
        padding: 0 var(--space-course);
    }

    .footer-brand {
        max-width: 100%;
        justify-content: center;
        align-items: center;
    }

    .footer-brand .brand-emblem {
        width: 35px;
        height: 35px;
        flex-shrink: 0;
    }

    .footer-brand .brand-text {
        max-width: calc(100% - 45px);
        text-align: center;
    }

    .footer-brand .brand-name {
        font-size: 1.1rem;
    }

    .footer-awards {
        justify-content: center;
        flex-wrap: wrap;
        gap: var(--space-bubble);
        max-width: 100%;
    }

    .award {
        font-size: 0.7rem;
        padding: var(--space-molecule) var(--space-bubble);
        max-width: calc(50% - var(--space-bubble));
        text-align: center;
        box-sizing: border-box;
    }

    /* Ensure all sections have proper mobile padding */
    section {
        max-width: 100%;
        overflow-x: hidden;
    }

    /* Fix any remaining overflow issues */
    * {
        max-width: 100%;
        box-sizing: border-box;
    }

    img, video, iframe {
        max-width: 100%;
        height: auto;
    }
}

/* Mobile-specific animations and transitions */
@media (max-width: 860px) {
    .dish-card:hover {
        transform: translateY(-5px) scale(1.01);
    }

    .feature-item:hover {
        transform: translateY(-3px) scale(1.02);
    }

    .cta-primary:hover,
    .cta-secondary:hover {
        transform: translateY(-2px) scale(1.02);
    }

    /* Reduce complex animations on mobile for better performance */
    .molecular-effect,
    .wine-bubble,
    .steam-particle,
    .golden-dust {
        animation-duration: 8s;
    }

    .culinary-atmosphere {
        opacity: 0.7; /* Reduce background effects intensity on mobile */
    }
}

/* Touch feedback for all interactive elements */
@media (pointer: coarse) {
    button,
    .nav-link,
    .dish-card,
    .feature-item,
    .achievement,
    .contact-method {
        transition: transform 0.1s ease-out;
    }

    button:active,
    .nav-link:active,
    .dish-card:active,
    .feature-item:active,
    .achievement:active,
    .contact-method:active {
        transform: scale(0.98);
    }
}

/* High resolution mobile displays */
@media (-webkit-min-device-pixel-ratio: 2) and (max-width: 768px),
       (min-resolution: 192dpi) and (max-width: 768px) {
    .hero-visual,
    .restaurant-showcase {
        transform: scale(0.9);
    }

    .brand-emblem {
        border-width: 2px;
    }
}

/* ACCESSIBILITY ENHANCEMENTS */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

@media (prefers-contrast: high) {
    :root {
        --charcoal-elegant: #000000;
        --cream-white: #ffffff;
        --burgundy-deep: #800000;
        --champagne-gold: #ffaa00;
    }
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 3px solid var(--champagne-gold);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .culinary-atmosphere,
    .hero-visual,
    .atmosphere-visual {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    * {
        animation: none !important;
        transition: none !important;
    }
}