  :root {
    --bg-primary: #111111;
    --bg-secondary: #1a1a1a;
    --bg-white: #1e1e1e;
    --bg-dark: #0a0a0a;
    --bg-dark-surface: #222222;
    --text-primary: #f0f0f0;
    --text-secondary: #a0a0a0;
    --text-light: #666666;
    --text-on-dark: #f0f0f0;
    --accent: #D6C124;
    --accent-hover: #bfad1f;
    --accent-light: rgba(214, 193, 36, 0.08);
    --amber: #D6C124;
    --green: #4CAF50;
    --red: #EF2A39;
    --red-hover: #d4222f;
    --glass-bg: rgba(255, 255, 255, 0.04);
    --glass-dark: rgba(0, 0, 0, 0.4);
    --glass-border: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 4px 24px rgba(0, 0, 0, 0.2);
    --shadow-medium: 0 8px 32px rgba(0, 0, 0, 0.3);
    --shadow-elevated: 0 16px 48px rgba(0, 0, 0, 0.4);
    --wolt: #009DE0;
    --efood: #EF2A39;
    --box: #FF6600;
    --gold: #D6C124;
    --text-muted: #888888;
  }

  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'DM Sans', system-ui, sans-serif;
    color: var(--text-primary);
    line-height: 1.6;
    background: var(--bg-primary);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }

  :focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }
  .skip-link { position: absolute; top: -100%; left: 16px; background: var(--accent); color: #000; padding: 8px 16px; border-radius: 4px; z-index: 10000; font-weight: 600; text-decoration: none; }
  .skip-link:focus { top: 8px; }

  @media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    .hero-stat-card::after,
    .order-card::after { animation: none !important; opacity: 0 !important; }
  }

  /* ===== Keyframes ===== */
  @keyframes fadeSlideUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
  @keyframes breathe { 0%, 100% { box-shadow: 0 0 0 0 rgba(76, 175, 80, 0); } 50% { box-shadow: 0 0 12px 3px rgba(76, 175, 80, 0.25); } }
  @keyframes shimmer { 0% { background-position: -200% center; } 100% { background-position: 200% center; } }
  @keyframes scrollLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }
  @keyframes wiggle { 0%, 100% { transform: rotate(0deg); } 15% { transform: rotate(-2deg); } 30% { transform: rotate(2deg); } 45% { transform: rotate(-1deg); } 60% { transform: rotate(1deg); } }
  @keyframes heroLineReveal { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }
  @keyframes kenBurns { 0% { transform: translate3d(0,0,0) scale(1.15); } 100% { transform: translate3d(-15px,-10px,0) scale(1.22); } }
  @keyframes pricePulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.06); } }
  @keyframes slideArrow { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(4px); } }

  /* ===== Liquid Glass Keyframes ===== */
  @keyframes liquidShimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
  }
  @keyframes liquidGlow {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.6; transform: translate(-50%, -50%) scale(1.2); }
  }
  @keyframes liquidBorderFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
  }
  @keyframes specularSlide {
    0% { transform: translateX(-100%) rotate(25deg); }
    100% { transform: translateX(300%) rotate(25deg); }
  }

  /* ===== Glass Cards (Liquid Glass) ===== */
  .glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .glass-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    opacity: 0; transition: opacity 0.4s;
  }
  .glass-card:hover::before { opacity: 1; }
  .glass-card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.14);
    box-shadow: var(--shadow-medium), inset 0 1px 0 rgba(255,255,255,0.06);
    transform: translateY(-4px);
  }
  .glass-card-dark {
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 16px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .glass-card-dark::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    opacity: 0; transition: opacity 0.4s;
  }
  .glass-card-dark:hover::before { opacity: 1; }
  .glass-card-dark:hover {
    background: rgba(0, 0, 0, 0.65);
    border-color: rgba(255, 255, 255, 0.12);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.04);
    transform: translateY(-4px);
  }

  /* ===== Buttons ===== */
  .btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 28px; border-radius: 100px; font-weight: 600;
    text-decoration: none; font-size: 0.95rem; border: none; cursor: pointer;
    font-family: 'DM Sans', sans-serif; position: relative; overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .btn::after {
    content: ''; position: absolute; width: 0; height: 0; border-radius: 50%;
    background: rgba(255,255,255,0.25); left: 50%; top: 50%;
    transform: translate(-50%, -50%); transition: width 0.5s, height 0.5s, opacity 0.5s; opacity: 0;
  }
  .btn:active::after { width: 300px; height: 300px; opacity: 1; transition: 0s; }
  .btn:active { transform: translateY(-1px) scale(0.97); }
  .btn-primary { background: var(--red); color: white; }
  .btn-primary:hover { background: var(--red-hover); transform: translateY(-3px); box-shadow: 0 8px 32px rgba(239,42,57,0.3); }
  .btn-primary.btn-wiggle { animation: wiggle 0.6s ease-in-out; }
  .btn-outline {
    background: transparent; color: var(--text-primary);
    border: 1.5px solid rgba(255, 255, 255, 0.2);
  }
  .btn-outline:hover { border-color: var(--text-primary); transform: translateY(-3px); box-shadow: var(--shadow-soft); }

  /* ===== Navigation ===== */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: transparent; padding: 0 40px; height: 72px;
    display: flex; align-items: center; justify-content: space-between;
    transition: background 0.4s, box-shadow 0.4s, backdrop-filter 0.4s;
  }
  nav.nav-scrolled {
    background: rgba(17, 17, 17, 0.72);
    backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06), 0 8px 32px rgba(0,0,0,0.2);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .nav-logo {
    text-decoration: none; display: flex; align-items: center;
  }
  .nav-logo img { height: 64px; width: auto; display: block; }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a {
    color: #fff; text-decoration: none; font-size: 1.12rem;
    font-weight: 500; position: relative; padding-bottom: 4px;
    transition: color 0.3s;
  }
  nav.nav-scrolled .nav-links a { color: var(--text-secondary); }
  nav.nav-scrolled .nav-links a:hover { color: var(--text-primary); }
  .nav-links a::after {
    content: ''; position: absolute; bottom: 0; left: 50%; width: 0; height: 1.5px;
    background: #fff; transition: width 0.3s, left 0.3s;
  }
  .nav-links a:hover, .nav-links a.nav-active { color: #fff; }
  .nav-links a:hover::after, .nav-links a.nav-active::after { width: 100%; left: 0; }
  .nav-links a.nav-active::after { width: 6px; left: calc(50% - 3px); height: 6px; border-radius: 50%; bottom: -4px; }
  .nav-cta {
    background: var(--red) !important; color: white !important;
    padding: 14px 32px !important; border-radius: 100px !important; font-size: 1.12rem !important;
    font-weight: 600 !important; transition: background 0.3s, transform 0.3s, box-shadow 0.3s !important;
  }
  .nav-cta::after { display: none !important; }
  .nav-cta:hover { background: var(--red-hover) !important; transform: translateY(-2px) !important; box-shadow: 0 4px 16px rgba(239,42,57,0.3) !important; }

  .lang-toggle {
    display: flex; align-items: center; background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border-radius: 100px; padding: 3px; cursor: pointer; border: 1px solid rgba(255,255,255,0.06); gap: 0;
    font-family: 'DM Sans', sans-serif; transition: background 0.3s, border-color 0.3s;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  }
  nav.nav-scrolled .lang-toggle { background: rgba(255,255,255,0.15); }
  .lang-toggle-option {
    padding: 5px 14px; border-radius: 100px; font-size: 0.78rem; font-weight: 600;
    color: rgba(255,255,255,0.7); transition: all 0.3s; background: transparent; border: none; cursor: pointer;
  }
  nav.nav-scrolled .lang-toggle-option { color: rgba(255,255,255,0.7); }
  .lang-toggle-option.active { background: #fff; color: #111; }
  nav.nav-scrolled .lang-toggle-option.active { background: #fff; color: #111; }

  .hamburger { display: none; background: none; border: none; cursor: pointer; width: 28px; height: 20px; position: relative; }
  .hamburger span {
    display: block; position: absolute; width: 100%; height: 2px;
    background: #fff; border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s; left: 0;
  }
  .hamburger span:nth-child(1) { top: 0; }
  .hamburger span:nth-child(2) { top: 9px; }
  .hamburger span:nth-child(3) { top: 18px; }
  .hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
  .hamburger.open span:nth-child(2) { opacity: 0; }
  .hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

  /* ===== Hero — Full Background ===== */
  .hero {
    position: relative; height: 70vh; min-height: 500px; max-height: 800px;
    overflow: hidden; display: flex; align-items: flex-start;
    padding: 90px 40px 40px;
  }
  .hero-bg {
    position: absolute; inset: -30px; z-index: 0;
    will-change: transform;
    transform: translate3d(0,0,0) scale(1.15);
    animation: kenBurns 25s ease-in-out infinite alternate;
  }
  .hero-bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 90%; }
  .hero-overlay {
    position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(to right, rgba(26,23,21,0.75) 0%, rgba(26,23,21,0.55) 35%, rgba(26,23,21,0.15) 65%, rgba(26,23,21,0.3) 100%);
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-bg { animation: none; transform: translate3d(0,0,0) scale(1.08); }
  }
  .hero-text { position: relative; z-index: 2; max-width: 600px; }
  .hero-label {
    display: inline-block;
    font-size: 0.72rem; font-weight: 500; text-transform: uppercase; letter-spacing: 0.14em;
    line-height: 1.8;
    color: rgba(255,255,255,0.75); margin-bottom: 20px;
    opacity: 0; animation: heroLineReveal 0.6s ease-out 0.1s forwards;
  }
  .hero h1 {
    font-family: 'Oswald', sans-serif; font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 400; line-height: 1.15; letter-spacing: 0.06em;
    text-transform: uppercase; color: #fff; margin-bottom: 20px;
  }
  .hero h1 em { font-style: normal; color: rgba(255,255,255,0.7); }
  .hero-line { opacity: 0; animation: heroLineReveal 0.6s ease-out forwards; display: block; }
  .hero-line:nth-child(1) { animation-delay: 0.15s; }
  .hero-line:nth-child(2) { animation-delay: 0.3s; }
  .hero-line:nth-child(3) { animation-delay: 0.45s; }
  .hero-desc {
    font-size: 0.85rem; color: rgba(255,255,255,0.72); max-width: 400px;
    line-height: 1.7; margin-bottom: 28px;
    opacity: 0; animation: heroLineReveal 0.6s ease-out 0.6s forwards;
  }
  .hero-buttons { display: flex; gap: 14px; flex-wrap: wrap; opacity: 0; animation: heroLineReveal 0.6s ease-out 0.75s forwards; align-items: center; }
  .hero-buttons .btn-primary { padding: 12px 28px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; }
  .hero-buttons .btn-outline { color: rgba(255,255,255,0.5); border-color: rgba(255,255,255,0.15); font-size: 0.85rem; padding: 12px 28px; letter-spacing: 0.06em; text-transform: uppercase; }
  .hero-buttons .btn-outline:hover { color: #fff; border-color: rgba(255,255,255,0.4); }

  /* Hero Floating Stats */
  .hero-stats-row {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px;
    position: relative; z-index: 5; margin-top: -56px;
    padding: 0 40px; max-width: 1300px; margin-left: auto; margin-right: auto;
    opacity: 0; animation: fadeSlideUp 0.6s ease-out 0.9s forwards;
  }
  .hero-stat-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(24px) saturate(1.4);
    -webkit-backdrop-filter: blur(24px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 28px; text-align: center;
    box-shadow: var(--shadow-elevated), inset 0 1px 0 rgba(255,255,255,0.08);
    position: relative; overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s, border-color 0.4s;
  }
  .hero-stat-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none; transition: opacity 0.4s;
  }
  .hero-stat-card::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.06), transparent);
    transform: skewX(-25deg); pointer-events: none;
    animation: specularSlide 6s ease-in-out infinite;
    opacity: 0.5;
  }
  .hero-stat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-elevated), inset 0 1px 0 rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.16);
  }
  .stat-number {
    font-family: 'Oswald', sans-serif; font-size: 1.8rem;
    color: #fff; letter-spacing: -0.5px;
  }
  .stat-label {
    font-size: 0.72rem; color: var(--text-light); text-transform: uppercase;
    letter-spacing: 0.08em; font-weight: 500; margin-top: 4px;
  }

  /* ===== Sections ===== */
  section { padding: 100px 40px; }
  .container { max-width: 1100px; margin: 0 auto; }
  .section-label {
    font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
    color: var(--accent); margin-bottom: 12px; display: block;
  }
  .section-header { text-align: center; margin-bottom: 56px; }
  .section-header h2 {
    font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400; letter-spacing: 0.03em; margin-bottom: 10px;
    text-transform: uppercase; color: var(--text-primary);
  }
  .section-header p { color: var(--text-secondary); font-size: 1.05rem; }

  /* ===== About ===== */
  #about { background: var(--bg-primary); }
  .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
  .about-text h2 {
    font-family: 'Oswald', sans-serif; font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400; letter-spacing: 0.03em; text-transform: uppercase; margin-bottom: 20px; color: var(--text-primary);
  }
  .about-text p { color: var(--text-secondary); margin-bottom: 16px; font-size: 0.95rem; line-height: 1.7; }
  .about-since {
    font-size: 0.78rem; color: var(--accent); font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; display: block;
  }
  .about-pullquote {
    font-family: 'DM Sans', sans-serif; font-style: italic;
    font-size: 1.1rem; color: var(--accent); line-height: 1.5;
    padding: 24px 0; margin: 24px 0; border-top: 1px solid rgba(255,255,255,0.08);
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 28px; }
  .about-feature {
    display: flex; align-items: center; gap: 10px; padding: 14px 18px;
    background: var(--glass-bg); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid var(--glass-border); border-radius: 12px;
    font-weight: 500; font-size: 0.88rem; color: var(--text-primary);
    position: relative; overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0; transform: translateY(12px);
  }
  .about-feature::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.15) 50%, transparent 90%);
    transition: opacity 0.3s;
  }
  .about-feature.visible { opacity: 1; transform: translateY(0); }
  .about-feature:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.06);
    background: rgba(255, 255, 255, 0.08);
  }
  .about-image-wrap { position: relative; }
  .about-stripe {
    position: absolute; top: -16px; right: -16px; width: 100%; height: 100%;
    border: 2px solid var(--accent); border-radius: 24px; opacity: 0.25;
  }
  .about-image {
    position: relative; background: linear-gradient(135deg, var(--bg-secondary), #222);
    border-radius: 24px;
    overflow: hidden;
  }
  .about-image img { width: 100%; height: auto; object-fit: contain; border-radius: 24px; display: block; }

  /* About Carousel */
  .about-carousel { position: relative; width: 100%; }
  .about-carousel-track { position: relative; width: 100%; aspect-ratio: 3/4; overflow: hidden; border-radius: 24px; }
  .about-carousel-slide {
    position: absolute; inset: 0; opacity: 0;
    transition: opacity 0.6s ease;
  }
  .about-carousel-slide.active { opacity: 1; }
  .about-carousel-slide img {
    width: 100%; height: 100%; object-fit: cover; border-radius: 24px; display: block;
    color: transparent;
  }
  .about-carousel-dots {
    display: flex; justify-content: center; gap: 8px; margin-top: 16px;
  }
  .about-carousel-dot {
    width: 8px; height: 8px; border-radius: 50%; border: none;
    background: rgba(255,255,255,0.25); cursor: pointer;
    transition: all 0.3s ease; padding: 0;
  }
  .about-carousel-dot.active {
    background: var(--gold); width: 24px; border-radius: 4px;
  }
  .about-carousel-arrow {
    position: absolute; top: 50%; transform: translateY(-50%);
    width: 36px; height: 36px; border-radius: 50%; border: none;
    background: rgba(0,0,0,0.45); backdrop-filter: blur(8px);
    color: #fff; font-size: 1.1rem; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    z-index: 2; padding: 0;
    opacity: 0; transition: opacity 0.3s, background 0.3s;
  }
  .about-carousel:hover .about-carousel-arrow { opacity: 1; }
  .about-carousel-arrow:hover { background: rgba(0,0,0,0.7); }
  .about-carousel-arrow.prev { left: 12px; }
  .about-carousel-arrow.next { right: 12px; }

  /* ===== Menu ===== */
  #menu { background: var(--bg-secondary); }
  .menu-tabs {
    display: flex; justify-content: center; gap: 6px; margin-bottom: 40px;
    position: sticky; top: 72px; z-index: 50;
    background: rgba(30, 30, 30, 0.72); backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4);
    padding: 12px; border-radius: 100px; width: fit-content; margin-left: auto; margin-right: auto;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 4px 24px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .menu-tab {
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.88rem;
    padding: 10px 24px; border: none; background: transparent; cursor: pointer;
    color: var(--text-light); border-radius: 100px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .menu-tab:hover { color: var(--text-primary); }
  .menu-tab.active { background: var(--accent); color: #111; }
  .menu-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr)); gap: 14px; }
  .menu-item {
    display: flex; align-items: flex-start; gap: 16px; padding: 20px;
    background: var(--glass-bg); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid var(--glass-border); border-radius: 16px;
    border-left: 3px solid transparent;
    position: relative; overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .menu-item::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    opacity: 0; transition: opacity 0.35s;
  }
  .menu-item:hover::before { opacity: 1; }
  .menu-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium), inset 0 1px 0 rgba(255,255,255,0.05);
    border-left-color: var(--accent); background: rgba(255, 255, 255, 0.08);
  }
  .menu-item-photo {
    width: 72px; height: 72px; border-radius: 14px;
    background: linear-gradient(135deg, #222, #2a2a2a);
    flex-shrink: 0; display: flex; align-items: center; justify-content: center; overflow: hidden;
  }
  .menu-item-photo svg { width: 28px; height: 28px; opacity: 0.2; }
  .menu-item-photo img { width: 100%; height: 100%; object-fit: cover; border-radius: 14px; }
  .menu-item-content { flex: 1; min-width: 0; }
  .menu-item-name { font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 4px; color: var(--text-primary); }
  .menu-item-desc { font-size: 0.82rem; color: var(--text-secondary); line-height: 1.5; }
  .menu-item-combo { font-size: 0.78rem; color: var(--accent); margin-top: 6px; font-weight: 500; font-style: italic; }
  .menu-item-price { font-family: 'Oswald', sans-serif; font-size: 1rem; color: var(--gold); font-weight: 700; white-space: nowrap; margin-top: 6px; }
  .menu-item-badge {
    display: inline-block; padding: 3px 10px; border-radius: 100px;
    font-size: 0.68rem; font-weight: 700; margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: 0.04em;
  }
  .badge-popular { background: rgba(214, 193, 36, 0.15); color: var(--accent); }
  .badge-signature {
    background: linear-gradient(90deg, var(--red), var(--accent), var(--red));
    background-size: 200% auto; color: white; animation: shimmer 3s linear infinite;
  }
  .badge-vegetarian { background: rgba(76, 175, 80, 0.15); color: var(--green); }
  .badge-value { background: rgba(239, 42, 57, 0.1); color: var(--red); }
  .menu-item.signature-item { border-left: 3px solid var(--accent); }
  .menu-category { margin-bottom: 36px; scroll-margin-top: 160px; }
  .menu-category:last-child { margin-bottom: 0; }
  .menu-category-title {
    font-family: 'Oswald', sans-serif; font-size: 1.3rem; font-weight: 400;
    color: var(--text-primary); margin-bottom: 16px; padding-bottom: 12px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08); display: flex; align-items: center; gap: 10px;
  }
  .menu-category-intro {
    font-size: 0.9rem; color: var(--text-secondary); font-style: italic;
    margin-bottom: 20px; padding-left: 4px; line-height: 1.6;
  }
  /* Sub-groups within categories */
  .menu-subgroup { margin-bottom: 28px; }
  .menu-subgroup:last-child { margin-bottom: 0; }
  .menu-subgroup-title {
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 0.82rem;
    text-transform: uppercase; letter-spacing: 0.06em; color: var(--text-light);
    margin-bottom: 14px; padding-left: 4px; display: flex; align-items: center; gap: 10px;
  }
  .menu-subgroup-title::after {
    content: ''; flex: 1; height: 1px; background: rgba(255, 255, 255, 0.06);
  }
  /* Compact cards for Fries */
  .menu-grid-compact {
    display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 8px;
  }
  .menu-item-compact {
    display: flex; align-items: center; justify-content: space-between; gap: 12px;
    padding: 14px 18px;
    background: var(--glass-bg); backdrop-filter: blur(16px) saturate(1.2); -webkit-backdrop-filter: blur(16px) saturate(1.2);
    border: 1px solid var(--glass-border); border-radius: 12px;
    position: relative; overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .menu-item-compact:hover {
    background: rgba(255, 255, 255, 0.08); transform: translateY(-2px);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.05);
  }
  .menu-item-compact-info {
    display: flex; align-items: center; gap: 8px; flex-wrap: wrap; min-width: 0;
  }
  .menu-item-compact-info .menu-item-name { font-size: 0.92rem; }
  .menu-item-compact-info .menu-item-badge { margin-bottom: 0; }
  .menu-item-price-compact { font-family: 'Oswald', sans-serif; font-size: 0.95rem; color: var(--gold); font-weight: 700; white-space: nowrap; }
  /* New badge */
  .badge-new {
    background: rgba(239, 42, 57, 0.1); color: var(--red);
    border: 1px dashed rgba(239, 42, 57, 0.3);
  }
  /* Premium badge */
  .badge-premium {
    background: linear-gradient(135deg, #1a1a1a, #2a2a2a); color: var(--accent);
    border: 1px solid rgba(214, 193, 36, 0.3);
  }

  /* ===== Location ===== */
  #location { background: var(--bg-primary); }
  .location-content { max-width: 1100px; margin: 0 auto; }
  .location-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 32px; }
  .info-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border-radius: 20px; padding: 32px;
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    position: relative; overflow: hidden;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.4s;
  }
  .info-card::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(ellipse at 20% 30%, rgba(255,255,255,0.04) 0%, transparent 60%);
    pointer-events: none;
  }
  .info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium), inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .info-card h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.25rem;
    font-weight: 400; margin-bottom: 16px; color: var(--text-primary);
  }
  .hours-badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(10,10,10,0.7);
    backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
    color: var(--text-on-dark);
    padding: 16px 24px; border-radius: 14px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    font-family: 'DM Sans', sans-serif; font-weight: 600; font-size: 1rem; margin-bottom: 16px;
  }
  .hours-badge .sep { color: var(--text-light); }
  .open-dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; flex-shrink: 0; }
  .open-dot.open { background: var(--green); animation: breathe 3s ease-in-out infinite; }
  .open-dot.closed { background: var(--accent); }
  .open-status { display: flex; align-items: center; gap: 8px; font-weight: 600; font-size: 0.9rem; }
  .open-status.is-open { color: var(--green); }
  .open-status.is-closed { color: var(--accent); }
  .transport-row { display: flex; gap: 20px; margin-top: 16px; flex-wrap: wrap; }
  .transport-item { display: flex; align-items: center; gap: 6px; font-size: 0.88rem; color: var(--text-secondary); }
  .address-line { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 14px; font-size: 0.95rem; }
  .address-line .icon { font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
  .btn-directions {
    display: inline-flex; align-items: center; gap: 8px; margin-top: 16px;
    padding: 10px 20px; border-radius: 12px;
    background: var(--red); color: white; text-decoration: none;
    font-weight: 600; font-size: 0.88rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .btn-directions:hover { background: var(--red-hover); transform: translateY(-2px); box-shadow: 0 4px 16px rgba(239,42,57,0.3); }
  .map-wrap { position: relative; border-radius: 20px; overflow: hidden; margin-top: 8px; }
  .map-embed { width: 100%; height: 400px; border: none; display: block; filter: invert(0.9) hue-rotate(180deg) saturate(0.3) contrast(0.95); }

  /* ===== Order ===== */
  #order { background: var(--bg-dark); color: var(--text-on-dark); text-align: center; position: relative; overflow: hidden; }
  #order::after {
    content: ''; position: absolute; inset: 0; pointer-events: none; z-index: 0;
    background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.5'/%3E%3C/svg%3E");
    opacity: 0.025;
  }
  #order .container { position: relative; z-index: 1; }
  #order h2 { color: var(--text-on-dark); }
  #order .section-header p { color: rgba(255,255,255,0.5); }
  #order .section-label { color: var(--accent); }
  .order-status-wrap { margin-bottom: 32px; }
  .order-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 36px; }
  .order-card {
    display: flex; align-items: center; gap: 16px; padding: 24px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid rgba(255,255,255,0.06); border-radius: 16px;
    text-decoration: none; color: var(--text-on-dark);
    position: relative; overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 4px solid transparent;
  }
  .order-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
  }
  .order-card::after {
    content: ''; position: absolute; top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    transform: skewX(-25deg); pointer-events: none;
    transition: left 0.6s ease;
  }
  .order-card:hover::after { left: 150%; }
  .order-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
    background: rgba(255,255,255,0.08);
  }
  .order-card.wolt { border-left-color: var(--wolt); }
  .order-card.efood { border-left-color: var(--efood); }
  .order-card.box { border-left-color: var(--box); }
  .order-card-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0;
  }
  .order-card.wolt .order-card-icon { background: rgba(0,157,224,0.15); }
  .order-card.efood .order-card-icon { background: rgba(239,42,57,0.15); }
  .order-card.box .order-card-icon { background: rgba(255,102,0,0.15); }
  .order-card-icon svg { width: 28px; height: 28px; }
  .order-card-info { flex: 1; text-align: left; }
  .order-card-name { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 1.05rem; margin-bottom: 2px; }
  .order-card-sub { font-size: 0.8rem; color: rgba(255,255,255,0.6); }
  .order-card-arrow { font-size: 1.2rem; color: rgba(255,255,255,0.6); transition: transform 0.3s, color 0.3s; }
  .order-card:hover .order-card-arrow { transform: translateX(4px); color: var(--text-on-dark); }
  .order-trust { margin-top: 24px; font-size: 0.82rem; color: rgba(255,255,255,0.55); }

  /* ===== Reviews ===== */
  #reviews { background: var(--bg-white); overflow: hidden; }
  .review-marquee { overflow: hidden; margin-bottom: 48px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06); }
  .review-marquee-inner { display: flex; gap: 48px; white-space: nowrap; animation: scrollLeft 30s linear infinite; width: max-content; }
  .review-marquee-item { font-size: 0.92rem; color: var(--text-light); font-style: italic; display: flex; align-items: center; gap: 8px; }
  .review-marquee-item span { color: var(--amber); }
  .rating-badges { display: flex; justify-content: center; gap: 20px; margin-bottom: 40px; flex-wrap: wrap; }
  .rating-badge {
    display: flex; align-items: center; gap: 14px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid var(--glass-border);
    padding: 16px 24px; border-radius: 16px;
    position: relative; overflow: hidden;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform 0.3s, box-shadow 0.3s;
  }
  .rating-badge::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(ellipse at 30% 20%, rgba(255,255,255,0.05) 0%, transparent 60%);
    pointer-events: none;
  }
  .rating-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .rating-badge-icon { width: 40px; height: 40px; border-radius: 12px; color: white; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; flex-shrink: 0; }
  .rating-badge-icon.google { background: #4285f4; }
  .rating-badge-icon.tripadvisor { background: #34e0a1; color: #1a1a1a; }
  .rating-badge-score { font-family: 'Oswald', sans-serif; font-size: 1.1rem; }
  .rating-badge-stars { color: var(--amber); font-size: 0.88rem; }
  .rating-badge-label { font-size: 0.75rem; color: var(--text-light); }
  .reviews-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }
  .review-card {
    position: relative; padding: 28px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px) saturate(1.3);
    -webkit-backdrop-filter: blur(20px) saturate(1.3);
    border: 1px solid var(--glass-border); border-radius: 16px;
    overflow: hidden;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .review-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
    opacity: 0; transition: opacity 0.35s;
  }
  .review-card:hover::before { opacity: 1; }
  .review-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium), inset 0 1px 0 rgba(255,255,255,0.06);
    background: rgba(255, 255, 255, 0.08);
  }
  .review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
  .review-avatar {
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; font-size: 0.82rem; color: white; flex-shrink: 0;
  }
  .review-avatar.a1 { background: #8b7355; }
  .review-avatar.a2 { background: var(--accent); }
  .review-avatar.a3 { background: var(--green); }
  .review-avatar.a4 { background: var(--amber); }
  .review-meta { display: flex; flex-direction: column; }
  .review-author { font-weight: 600; font-size: 0.9rem; color: var(--text-primary); }
  .review-source { font-size: 0.72rem; color: var(--text-light); }
  .review-stars { color: var(--amber); font-size: 0.95rem; margin-bottom: 8px; letter-spacing: 1px; }
  .review-text { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.6; font-style: italic; }
  .review-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-top: 32px; }

  /* ===== Review Gate Modal ===== */
  .review-gate-overlay {
    position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.7); backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: opacity 0.3s ease;
  }
  .review-gate-overlay.visible { opacity: 1; }
  .review-gate-modal {
    position: relative; background: rgba(30,30,30,0.8);
    backdrop-filter: blur(32px) saturate(1.5);
    -webkit-backdrop-filter: blur(32px) saturate(1.5);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 24px;
    padding: 48px 40px; text-align: center; max-width: 420px; width: 90%;
    box-shadow: var(--shadow-elevated), inset 0 1px 0 rgba(255,255,255,0.08);
    transform: translateY(20px); transition: transform 0.3s ease;
    overflow: hidden;
  }
  .review-gate-modal::before {
    content: ''; position: absolute; top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(ellipse at 40% 20%, rgba(255,255,255,0.06) 0%, transparent 60%);
    pointer-events: none;
  }
  .review-gate-overlay.visible .review-gate-modal { transform: translateY(0); }
  .review-gate-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; font-size: 1.5rem; cursor: pointer;
    color: var(--text-muted); line-height: 1;
  }
  .review-gate-close:hover { color: var(--text-primary); }
  .review-gate-modal h3 {
    font-family: 'Oswald', sans-serif; font-size: 1.4rem;
    margin-bottom: 8px; color: var(--text-primary);
  }
  .review-gate-subtitle { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 28px; }
  .review-gate-stars { display: flex; justify-content: center; gap: 10px; }
  .review-gate-stars button {
    background: none; border: none; font-size: 2.5rem; cursor: pointer;
    color: #d5cfc7; transition: color 0.2s, transform 0.2s; line-height: 1; padding: 4px;
  }
  .review-gate-stars button:hover,
  .review-gate-stars button.active { color: var(--gold); transform: scale(1.2); }

  /* ===== Footer ===== */
  footer {
    background: var(--bg-dark); border-top: 1px solid rgba(255,255,255,0.06);
    color: rgba(255,255,255,0.5); padding: 64px 40px 28px; font-size: 0.88rem;
  }
  .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px; max-width: 1100px; margin: 0 auto; }
  .footer-brand {
    font-family: 'Oswald', sans-serif; font-size: 1.6rem;
    color: var(--text-on-dark); margin-bottom: 12px; letter-spacing: -0.5px;
  }
  .footer-brand span { color: var(--accent); }
  footer h4 { color: var(--text-on-dark); margin-bottom: 16px; font-size: 0.78rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; }
  footer a { color: rgba(255,255,255,0.5); text-decoration: none; transition: color 0.3s; }
  footer a:hover { color: var(--text-on-dark); }
  .footer-links { list-style: none; }
  .footer-links li { margin-bottom: 10px; }
  .footer-bottom {
    text-align: center; padding-top: 28px; margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem; max-width: 1100px; margin-left: auto; margin-right: auto;
  }
  .footer-tagline { color: var(--accent); font-size: 0.8rem; margin-top: 6px; }
  .social-links { display: flex; gap: 10px; margin-top: 16px; }
  .social-links a {
    width: 40px; height: 40px; border-radius: 50%;
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.04);
    display: flex; align-items: center; justify-content: center;
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
  }
  .social-links a:hover { background: var(--red); transform: translateY(-2px); border-color: transparent; box-shadow: 0 4px 16px rgba(239,42,57,0.3); }
  .social-links svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.6); }
  .social-links a:hover svg { fill: white; }

  /* ===== Back to Top ===== */
  .back-to-top {
    position: fixed; bottom: 24px; right: 24px; z-index: 90;
    width: 44px; height: 44px; border-radius: 50%;
    background: rgba(34,34,34,0.7); color: var(--text-on-dark);
    backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
    border: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 4px 16px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.06);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; text-decoration: none;
    opacity: 0; pointer-events: none; transform: translateY(12px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1); cursor: pointer;
  }
  .back-to-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .back-to-top:hover { background: var(--red); transform: translateY(-3px); box-shadow: 0 6px 20px rgba(239,42,57,0.3); }

  /* ===== Light Theme ===== */
  body.light-theme {
    --bg-primary: #f5f3ef;
    --bg-secondary: #eae6df;
    --bg-white: #ffffff;
    --bg-dark: #1a1715;
    --bg-dark-surface: #f0ebe3;
    --text-primary: #1a1715;
    --text-secondary: #6b6259;
    --text-light: #9c9389;
    --text-on-dark: #f0f0f0;
    --accent: #CF6464;
    --accent-hover: #b85555;
    --accent-light: rgba(207,100,100,0.1);
    --amber: #CF6464;
    --green: #4CAF50;
    --red: #EF2A39;
    --red-hover: #d4222f;
    --glass-bg: rgba(255,255,255,0.6);
    --glass-dark: rgba(0,0,0,0.05);
    --glass-border: rgba(0,0,0,0.08);
    --shadow-soft: 0 4px 24px rgba(0,0,0,0.06);
    --shadow-medium: 0 8px 32px rgba(0,0,0,0.08);
    --shadow-elevated: 0 16px 48px rgba(0,0,0,0.1);
  }

  /* Light: Glass cards */
  body.light-theme .glass-card::before { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent); }
  body.light-theme .glass-card:hover { background: rgba(255,255,255,0.7); border-color: rgba(0,0,0,0.08); box-shadow: var(--shadow-medium), inset 0 1px 0 rgba(255,255,255,0.8); }
  body.light-theme .glass-card-dark { background: rgba(0,0,0,0.04); border-color: rgba(0,0,0,0.06); }
  body.light-theme .glass-card-dark::before { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); }
  body.light-theme .glass-card-dark:hover { background: rgba(0,0,0,0.07); border-color: rgba(0,0,0,0.1); box-shadow: 0 8px 32px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.6); }

  /* Light: Buttons */
  body.light-theme .btn::after { background: rgba(0,0,0,0.1); }
  body.light-theme .btn-outline { border-color: rgba(0,0,0,0.2); color: var(--text-primary); }
  body.light-theme .btn-outline:hover { border-color: var(--text-primary); }

  /* Light: Nav (only when scrolled — on hero, nav stays transparent with white elements) */
  body.light-theme nav.nav-scrolled { background: rgba(240,235,227,0.72); box-shadow: 0 1px 0 rgba(0,0,0,0.06), 0 8px 32px rgba(0,0,0,0.06); border-bottom-color: rgba(0,0,0,0.04); }
  body.light-theme nav.nav-scrolled .nav-links a { color: #6b6259; }
  body.light-theme nav.nav-scrolled .nav-links a:hover { color: #1a1715; }
  body.light-theme nav.nav-scrolled .nav-links a.nav-active { color: #1a1715; }
  body.light-theme nav.nav-scrolled .nav-links a::after { background: #1a1715; }
  body.light-theme nav.nav-scrolled .lang-toggle { background: rgba(0,0,0,0.06); }
  body.light-theme nav.nav-scrolled .lang-toggle-option { color: rgba(0,0,0,0.4); }
  body.light-theme nav.nav-scrolled .lang-toggle-option.active { background: var(--accent); color: #fff; }
  body.light-theme nav.nav-scrolled .hamburger span { background: #1a1715; }
  body.light-theme nav.nav-scrolled .nav-cta { background: var(--accent) !important; }
  body.light-theme nav.nav-scrolled .nav-cta:hover { background: var(--accent-hover) !important; box-shadow: 0 4px 16px rgba(207,100,100,0.3) !important; }

  /* Light: Theme toggle (only when scrolled) */
  body.light-theme nav.nav-scrolled .theme-toggle { background: rgba(0,0,0,0.06); }
  body.light-theme nav.nav-scrolled .theme-toggle svg { fill: #6b6259; }
  body.light-theme .theme-icon-sun { display: none; }
  body.light-theme .theme-icon-moon { display: block; }

  /* Light: Stat cards */
  body.light-theme .hero-stat-card { background: rgba(245,243,239,0.82); border-color: rgba(255,255,255,0.4); box-shadow: 0 2px 10px rgba(0,0,0,0.04); backdrop-filter: blur(24px) saturate(1.3); -webkit-backdrop-filter: blur(24px) saturate(1.3); }
  body.light-theme .hero-stat-card::before { background: none; }
  body.light-theme .hero-stat-card::after { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent); }
  body.light-theme .hero-stat-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.08); transform: translateY(-4px); }
  body.light-theme .stat-number { color: #1a1715; }
  body.light-theme .stat-label { color: #6b6259; }

  /* Light: About */
  body.light-theme .about-pullquote { border-color: rgba(0,0,0,0.08); }
  body.light-theme .about-feature::before { background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.5) 50%, transparent 90%); }
  body.light-theme .about-feature:hover { background: rgba(255,255,255,0.6); box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255,255,255,0.8); }
  body.light-theme .about-image { background: linear-gradient(135deg, var(--bg-secondary), #d4cfc7); }

  /* Light: Menu */
  body.light-theme .menu-tabs { background: rgba(255,255,255,0.72); border-color: rgba(0,0,0,0.04); box-shadow: 0 4px 24px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.8); }
  body.light-theme .menu-item.signature-item { background: rgba(0,0,0,0.03); border-left-color: var(--accent); }
  body.light-theme .menu-item-photo { background: linear-gradient(135deg, #e8e3db, #ddd8d0); }
  body.light-theme .menu-subgroup-title { border-color: rgba(0,0,0,0.08); }
  body.light-theme .menu-subgroup-title::after { background: rgba(0,0,0,0.06); }
  body.light-theme .menu-item::before { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); }
  body.light-theme .menu-item:hover { background: rgba(255,255,255,0.65); box-shadow: var(--shadow-medium), inset 0 1px 0 rgba(255,255,255,0.7); }
  body.light-theme .badge-premium { background: linear-gradient(135deg, #e8e0d4, #d4cfc7); }

  /* Light: Reviews */
  body.light-theme .review-marquee { border-color: rgba(0,0,0,0.06); }
  body.light-theme .review-card::before { background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent); }
  body.light-theme .review-card:hover { background: rgba(255,255,255,0.65); box-shadow: var(--shadow-medium), inset 0 1px 0 rgba(255,255,255,0.7); }

  /* Light: Review gate modal */
  body.light-theme .review-gate-modal { background: rgba(255,255,255,0.8); border-color: rgba(0,0,0,0.06); box-shadow: var(--shadow-elevated), inset 0 1px 0 rgba(255,255,255,0.9); }
  body.light-theme .review-gate-modal::before { background: radial-gradient(ellipse at 40% 20%, rgba(255,255,255,0.3) 0%, transparent 60%); }
  body.light-theme .review-gate-stars button { color: #ccc; }

  /* Light: Location map */
  body.light-theme .map-embed { filter: none; }

  /* Light: Back to top */
  body.light-theme .back-to-top { background: rgba(240,235,227,0.7); border-color: rgba(0,0,0,0.06); color: #1a1715; box-shadow: 0 4px 16px rgba(0,0,0,0.08), inset 0 1px 0 rgba(255,255,255,0.6); }

  /* Light: Theme toggle button base */
  .theme-toggle {
    background: rgba(255,255,255,0.12);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.06); border-radius: 50%; cursor: pointer;
    width: 36px; height: 36px; display: flex;
    align-items: center; justify-content: center;
    transition: background 0.3s, transform 0.3s, border-color 0.3s;
    flex-shrink: 0;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.08);
  }
  .theme-toggle:hover { transform: scale(1.1); border-color: rgba(255,255,255,0.12); }
  .theme-toggle svg { width: 18px; height: 18px; fill: rgba(255,255,255,0.7); transition: fill 0.3s; }
  .theme-icon-moon { display: none; }
  nav.nav-scrolled .theme-toggle { background: rgba(255,255,255,0.08); }
  nav.nav-scrolled .theme-toggle svg { fill: rgba(255,255,255,0.5); }

  /* ===== Reveal Animations ===== */
  .reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.6s cubic-bezier(0, 0, 0.2, 1), transform 0.6s cubic-bezier(0, 0, 0.2, 1); }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.6s cubic-bezier(0, 0, 0.2, 1), transform 0.6s cubic-bezier(0, 0, 0.2, 1); }
  .reveal-left.visible { opacity: 1; transform: translateX(0); }
  .reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.6s cubic-bezier(0, 0, 0.2, 1), transform 0.6s cubic-bezier(0, 0, 0.2, 1); }
  .reveal-right.visible { opacity: 1; transform: translateX(0); }

  /* ===== Language Toggle ===== */
  .el { display: none; }
  body.greek .en { display: none; }
  body.greek .el { display: revert; }
  /* Avatars need flex (not block) when visible */
  .review-avatar.en { display: flex; }
  .review-avatar.el { display: none; }
  body.greek .review-avatar.en { display: none; }
  body.greek .review-avatar.el { display: flex; }
  .lang-switch-mobile { display: none; }

  /* ===== Responsive ===== */
  @media (max-width: 1024px) {
    .hero { height: 75vh; padding: 100px 24px 60px; }
    .hero-stats-row { padding: 0 24px; margin-top: -40px; }
    nav { padding: 0 24px; }
    section { padding: 80px 24px; }
  }
  @media (max-width: 768px) {
    nav { padding: 0 20px; height: 64px; }
    .nav-links {
      display: flex; flex-direction: column; position: absolute; top: 64px; left: 0; right: 0;
      background: rgba(17,17,17,0.98); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
      padding: 0 24px; gap: 0; max-height: 0; overflow: hidden;
      transition: max-height 0.4s ease, padding 0.4s ease;
      box-shadow: 0 8px 32px rgba(0,0,0,0.3);
    }
    .hamburger { display: block; }
    .nav-links.open { max-height: 500px; padding: 24px; gap: 14px; }
    .nav-links a, .nav-links button { opacity: 0; transform: translateX(-10px); transition: opacity 0.3s, transform 0.3s; }
    .nav-links.open a, .nav-links.open button { opacity: 1; transform: translateX(0); }
    .nav-links.open > :nth-child(1) { transition-delay: 0.05s; }
    .nav-links.open > :nth-child(2) { transition-delay: 0.1s; }
    .nav-links.open > :nth-child(3) { transition-delay: 0.15s; }
    .nav-links.open > :nth-child(4) { transition-delay: 0.2s; }
    .nav-links.open > :nth-child(5) { transition-delay: 0.25s; }
    .nav-links.open > :nth-child(6) { transition-delay: 0.3s; }
    .nav-links.open > :nth-child(7) { transition-delay: 0.35s; }
    .hero { height: 70vh; min-height: 500px; padding: 90px 20px 48px; text-align: center; }
    .hero-text { max-width: 100%; }
    .hero-desc { margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-bg { animation: none; transform: translate3d(0,0,0) scale(1.08); }
    .hero-overlay {
      background: linear-gradient(180deg, rgba(26,23,21,0.6) 0%, rgba(26,23,21,0.3) 50%, rgba(26,23,21,0.5) 100%);
    }
    .hero-stats-row { grid-template-columns: repeat(3, 1fr); gap: 10px; padding: 0 20px; margin-top: -32px; }
    .hero-stat-card { padding: 16px 12px; }
    .stat-number { font-size: 1.4rem; }
    .about-grid { grid-template-columns: 1fr; }
    .about-image-wrap { order: -1; }
    .location-cards { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .about-features { grid-template-columns: 1fr; }
    .order-cards { grid-template-columns: 1fr; }
    .reviews-grid { grid-template-columns: 1fr; }
    .menu-tabs { gap: 4px; padding: 8px; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; max-width: 100vw; justify-content: flex-start; -webkit-mask-image: linear-gradient(to right, transparent 0%, black 3%, black 92%, transparent 100%); mask-image: linear-gradient(to right, transparent 0%, black 3%, black 92%, transparent 100%); }
    .menu-tabs::-webkit-scrollbar { display: none; }
    .menu-tab { padding: 8px 16px; font-size: 0.82rem; white-space: nowrap; flex-shrink: 0; }
    .menu-subgroup-title { font-size: 0.78rem; }
    .menu-grid-compact { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
    .map-embed { height: 300px; }
    .lang-switch-mobile {
      display: flex; align-items: center; gap: 6px;
      position: fixed; bottom: 20px; left: 20px; z-index: 89;
      background: rgba(34,34,34,0.7);
      backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
      border: 1px solid rgba(255,255,255,0.08);
      color: var(--text-on-dark); padding: 10px 16px; border-radius: 100px;
      cursor: pointer; font-size: 0.82rem; font-weight: 600;
      box-shadow: var(--shadow-elevated), inset 0 1px 0 rgba(255,255,255,0.06);
      font-family: 'DM Sans', sans-serif;
    }
    footer { padding: 48px 20px 24px; }
  }
  @media (max-width: 480px) {
    .hero { height: 68vh; min-height: 450px; }
    .hero h1 { font-size: 2rem; letter-spacing: 0; }
    .hero-buttons .btn { padding: 12px 20px; font-size: 0.88rem; width: 100%; justify-content: center; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-stats-row { grid-template-columns: 1fr; gap: 10px; }
    .stat-number { font-size: 1.5rem; }
    .section-header h2 { font-size: 1.7rem; }
    .rating-badges { flex-direction: column; align-items: center; }
    .menu-grid { grid-template-columns: 1fr; }
    .menu-grid-compact { grid-template-columns: 1fr; }
    .menu-item-photo { width: 56px; height: 56px; }
    .about-pullquote { font-size: 1.1rem; }
  }

  /* ===== Light Theme — Mobile Overrides ===== */
  @media (max-width: 768px) {
    body.light-theme .nav-links {
      background: rgba(240,235,227,0.82);
      backdrop-filter: blur(24px) saturate(1.4); -webkit-backdrop-filter: blur(24px) saturate(1.4);
      box-shadow: 0 8px 32px rgba(0,0,0,0.1), inset 0 1px 0 rgba(255,255,255,0.6);
    }
    body.light-theme .nav-links a { color: #1a1715; }
    body.light-theme nav.nav-scrolled .hamburger span { background: #1a1715; }
    body.light-theme .lang-switch-mobile {
      background: rgba(240,235,227,0.7);
      backdrop-filter: blur(16px) saturate(1.3); -webkit-backdrop-filter: blur(16px) saturate(1.3);
      border-color: rgba(0,0,0,0.06); color: #1a1715;
      box-shadow: 0 4px 16px rgba(0,0,0,0.06), inset 0 1px 0 rgba(255,255,255,0.6);
    }
  }
