/* ============================================================
   Public Pages Styles - Refined Bistro Design System
   ============================================================ */

/* ---------- Design Tokens ---------- */
:root {
  --font-primary: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'DM Serif Display', Georgia, 'Times New Roman', serif;

  --color-primary: #1B2A4A;
  --color-secondary: #C8956C;
  --color-accent: #D4533B;
  --color-bg: #FAFAF7;
  --color-text: #2D2D2D;
  --color-text-muted: #6B6860;
  --color-text-light: #9A9589;
  --color-border: #E8E5DE;
  --color-border-light: #F0EDE6;
  --color-surface: #FFFFFF;
  --color-surface-warm: #F5F3EE;

  --radius-sm: 0.375rem;
  --radius-md: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.5rem;
  --radius-full: 9999px;

  --shadow-xs: 0 1px 2px rgba(27, 42, 74, 0.04);
  --shadow-sm: 0 2px 8px rgba(27, 42, 74, 0.06);
  --shadow-md: 0 4px 16px rgba(27, 42, 74, 0.08);
  --shadow-lg: 0 8px 30px rgba(27, 42, 74, 0.10);
  --shadow-xl: 0 16px 48px rgba(27, 42, 74, 0.14);
  --shadow-glow: 0 0 40px rgba(27, 42, 74, 0.06);
  --shadow-warm: 0 4px 20px rgba(200, 149, 108, 0.12);

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);

  --duration-fast: 150ms;
  --duration-normal: 300ms;
  --duration-slow: 500ms;

  --glass-bg: rgba(250, 250, 247, 0.8);
  --glass-bg-dark: rgba(27, 42, 74, 0.3);
  --glass-border: rgba(232, 229, 222, 0.4);
  --glass-blur: 20px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ---------- Layout Utilities ---------- */
.min-h-screen { min-height: 100vh; }
.max-w-md { max-width: 28rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-7xl { max-width: 80rem; }
.max-w-none { max-width: none; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Display ---------- */
.hidden { display: none; }
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }

/* ---------- Flex ---------- */
.flex-col { flex-direction: column; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-end { justify-content: flex-end; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }

/* ---------- Grid ---------- */
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }

/* ---------- Spacing: Padding ---------- */
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-5 { padding-left: 1.25rem; padding-right: 1.25rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-1 { padding-top: 0.25rem; padding-bottom: 0.25rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-8 { padding-top: 2rem; }
.pb-6 { padding-bottom: 1.5rem; }

/* ---------- Spacing: Margin ---------- */
.m-0 { margin: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 0.75rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-12 { margin-top: 3rem; }
.mt-16 { margin-top: 4rem; }
.ml-2 { margin-left: 0.5rem; }
.ml-3 { margin-left: 0.75rem; }
.mr-2 { margin-right: 0.5rem; }
.mr-3 { margin-right: 0.75rem; }

/* ---------- Sizing ---------- */
.w-3 { width: 0.75rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-8 { width: 2rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-full { width: 100%; }
.h-3 { height: 0.75rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-8 { height: 2rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-24 { height: 6rem; }
.h-48 { height: 12rem; }
.h-56 { height: 14rem; }

/* ---------- Typography ---------- */
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1.15; }

.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }
.font-extrabold { font-weight: 800; }

.tracking-tight { letter-spacing: -0.025em; }
.tracking-wide { letter-spacing: 0.05em; }
.uppercase { text-transform: uppercase; }
.capitalize { text-transform: capitalize; }
.leading-tight { line-height: 1.25; }
.leading-relaxed { line-height: 1.75; }

/* ---------- Text Colors ---------- */
.text-white { color: #ffffff; }
.text-gray-400 { color: #9ca3af; }
.text-gray-500 { color: #6b7280; }
.text-gray-600 { color: #4b5563; }
.text-gray-700 { color: #374151; }
.text-gray-900 { color: #111827; }
.text-slate-400 { color: #94a3b8; }
.text-slate-500 { color: #64748b; }
.text-slate-600 { color: #475569; }
.text-blue-100 { color: #dbeafe; }
.text-blue-200 { color: #bfdbfe; }
.text-blue-600 { color: #2563eb; }
.text-blue-800 { color: #1e40af; }
.text-green-600 { color: #16a34a; }
.text-green-800 { color: #166534; }
.text-yellow-800 { color: #854d0e; }
.text-red-400 { color: #f87171; }
.text-red-600 { color: #dc2626; }
.text-red-800 { color: #991b1b; }

/* ---------- Text Alignment ---------- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* ---------- Prose ---------- */
.prose { color: var(--color-text); max-width: 65ch; }
.prose p { margin-top: 1.25em; margin-bottom: 1.25em; }
.prose h2 { font-family: var(--font-display); font-weight: 400; font-size: 1.5em; margin-top: 2em; margin-bottom: 1em; line-height: 1.333; }
.prose h3 { font-weight: 600; font-size: 1.25em; margin-top: 1.6em; margin-bottom: 0.6em; line-height: 1.6; }

/* ---------- Background Colors ---------- */
.bg-white { background-color: #ffffff; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-gray-100 { background-color: #f3f4f6; }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-800 { background-color: #1f2937; }
.bg-gray-900 { background-color: #111827; }
.bg-slate-50 { background-color: var(--color-bg); }
.bg-slate-900 { background-color: #0f172a; }
.bg-blue-50 { background-color: #eff6ff; }
.bg-blue-600 { background-color: #2563eb; }
.bg-blue-700 { background-color: #1d4ed8; }
.bg-blue-800 { background-color: #1e40af; }
.bg-green-100 { background-color: #dcfce7; }
.bg-green-500 { background-color: #22c55e; }
.bg-green-600 { background-color: #16a34a; }
.bg-yellow-100 { background-color: #fef3c7; }
.bg-red-100 { background-color: #fee2e2; }
.bg-red-500 { background-color: #ef4444; }

/* ---------- Gradients ---------- */
.bg-gradient-to-r {
  background-image: linear-gradient(to right, var(--tw-gradient-stops));
}
.from-blue-600 {
  --tw-gradient-from: #2563eb;
  --tw-gradient-to: rgba(37, 99, 235, 0);
  --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to);
}
.to-blue-800 {
  --tw-gradient-to: #1e40af;
}

/* ---------- Opacity ---------- */
.bg-opacity-20 { --tw-bg-opacity: 0.2; }
.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* ---------- Borders ---------- */
.border { border-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-t { border-top-width: 1px; }
.border-gray-200 { border-color: #e5e7eb; }
.border-gray-300 { border-color: #d1d5db; }
.border-gray-700 { border-color: #374151; }
.border-blue-200 { border-color: #bfdbfe; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-white\/20 { border-color: rgba(255, 255, 255, 0.2); }

/* ---------- Border Radius ---------- */
.rounded { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: 1.25rem; }
.rounded-full { border-radius: var(--radius-full); }

/* ---------- Shadows ---------- */
.shadow-xs { box-shadow: var(--shadow-xs); }
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover\:shadow-md:hover { box-shadow: var(--shadow-md); }

/* ---------- Transitions ---------- */
.transition {
  transition-property: all;
  transition-timing-function: var(--ease-smooth);
  transition-duration: var(--duration-fast);
}
.transition-all {
  transition-property: all;
  transition-timing-function: var(--ease-smooth);
  transition-duration: var(--duration-normal);
}
.transition-transform {
  transition-property: transform;
  transition-timing-function: var(--ease-out);
  transition-duration: var(--duration-normal);
}
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }

/* ---------- Transform ---------- */
.transform { transform: translateX(0) translateY(0) rotate(0) skewX(0) skewY(0) scaleX(1) scaleY(1); }
.hover\:scale-105:hover { transform: scale(1.05); }
.-translate-y-1:hover { transform: translateY(-0.25rem); }

/* ---------- Hover States ---------- */
.hover\:bg-blue-50:hover { background-color: #eff6ff; }
.hover\:bg-blue-700:hover { background-color: #1d4ed8; }
.hover\:bg-gray-300:hover { background-color: #d1d5db; }
.hover\:bg-green-600:hover { background-color: #16a34a; }
.hover\:text-gray-900:hover { color: #111827; }

/* ---------- Focus States ---------- */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:ring-2:focus { box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.4); }
.focus\:ring-blue-500:focus { box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.4); }

/* ---------- Position ---------- */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.top-0 { top: 0; }
.left-0 { left: 0; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-30 { z-index: 30; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }

/* ---------- Overflow ---------- */
.overflow-hidden { overflow: hidden; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }

/* ---------- Object Fit ---------- */
.object-cover { object-fit: cover; }

/* ---------- SVG ---------- */
.fill-none { fill: none; }
.stroke-current { stroke: currentColor; }

/* ---------- Links ---------- */
a {
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-smooth);
}

/* ---------- Images ---------- */
img {
  max-width: 100%;
  height: auto;
}

/* ---------- Space Between ---------- */
.space-x-2 > * + * { margin-left: 0.5rem; }
.space-x-4 > * + * { margin-left: 1rem; }
.space-x-6 > * + * { margin-left: 1.5rem; }
.space-x-reverse > * + * { margin-right: 1rem; margin-left: 0; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.space-y-6 > * + * { margin-top: 1.5rem; }

/* ---------- Form Controls ---------- */
select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236B6860' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 0.5rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 2.5rem;
}

/* ============================================================
   GLASS MORPHISM (warm-toned)
   ============================================================ */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
}

.glass-dark {
  background: var(--glass-bg-dark);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-subtle {
  background: rgba(250, 250, 247, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(232, 229, 222, 0.4);
}

/* ============================================================
   BUTTON SYSTEM
   ============================================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  background: var(--color-primary);
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  text-decoration: none;
}
.btn-primary:hover {
  background: #152238;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-primary:active {
  transform: translateY(0);
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  color: var(--color-primary);
  background: transparent;
  border: 1.5px solid var(--color-primary);
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  text-decoration: none;
}
.btn-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline:active {
  transform: translateY(0);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */

/* Ping */
@keyframes ping {
  75%, 100% { transform: scale(2); opacity: 0; }
}
.animate-ping {
  animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

/* Fade In Up */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.animate-fade-in-up {
  animation: fadeInUp 0.7s var(--ease-out) forwards;
}

/* Fade In */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
.animate-fade-in {
  animation: fadeIn 0.6s var(--ease-smooth) forwards;
}

/* Slide In Right */
@keyframes slideInRight {
  from { transform: translateX(100%); }
  to { transform: translateX(0); }
}
.animate-slide-in-right {
  animation: slideInRight 0.4s var(--ease-out) forwards;
}

/* Scale In */
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.9); }
  to { opacity: 1; transform: scale(1); }
}
.animate-scale-in {
  animation: scaleIn 0.5s var(--ease-spring) forwards;
}

/* Pulse Soft */
@keyframes pulseSoft {
  0%, 100% { transform: scale(1); box-shadow: 0 4px 20px rgba(27, 42, 74, 0.2); }
  50% { transform: scale(1.08); box-shadow: 0 8px 30px rgba(27, 42, 74, 0.3); }
}
.animate-pulse-soft {
  animation: pulseSoft 2s var(--ease-smooth) infinite;
}

/* Float */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.animate-float {
  animation: float 3s ease-in-out infinite;
}

/* Shimmer */
@keyframes shimmer {
  0% { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* Stagger children */
.stagger-children > *:nth-child(1) { animation-delay: 0ms; }
.stagger-children > *:nth-child(2) { animation-delay: 80ms; }
.stagger-children > *:nth-child(3) { animation-delay: 160ms; }
.stagger-children > *:nth-child(4) { animation-delay: 240ms; }
.stagger-children > *:nth-child(5) { animation-delay: 320ms; }
.stagger-children > *:nth-child(6) { animation-delay: 400ms; }
.stagger-children > *:nth-child(7) { animation-delay: 480ms; }
.stagger-children > *:nth-child(8) { animation-delay: 560ms; }
.stagger-children > *:nth-child(9) { animation-delay: 640ms; }
.stagger-children > *:nth-child(10) { animation-delay: 720ms; }
.stagger-children > *:nth-child(11) { animation-delay: 800ms; }
.stagger-children > *:nth-child(12) { animation-delay: 880ms; }

/* Scroll-reveal */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   NAVIGATION — Refined Bistro Nav
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 250, 247, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(200, 149, 108, 0.1);
  transition: box-shadow var(--duration-normal) var(--ease-smooth),
              background var(--duration-normal) var(--ease-smooth);
}
.site-nav.scrolled {
  background: rgba(250, 250, 247, 0.97);
  box-shadow: 0 1px 20px rgba(27, 42, 74, 0.06);
}
.site-nav .nav-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4.5rem;
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-nav .nav-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.site-nav .nav-brand img {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: var(--radius-md);
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.site-nav .nav-brand h1 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 0.01em;
}
.site-nav .nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-nav .nav-links a {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: all var(--duration-fast) var(--ease-smooth);
  letter-spacing: 0.02em;
}
.site-nav .nav-links a:hover {
  color: var(--color-primary);
  background: rgba(27, 42, 74, 0.04);
}
.site-nav .lang-select {
  background: var(--color-surface-warm);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  padding: 0.4rem 2rem 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 500;
  font-family: var(--font-primary);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-smooth);
}
.site-nav .lang-select:hover {
  border-color: var(--color-secondary);
  background: #EFEBE4;
}
.site-nav .lang-select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 149, 108, 0.3);
}

/* ============================================================
   HERO SECTION — Diagonal Clip + Grain Overlay
   ============================================================ */
.hero-section {
  position: relative;
  min-height: 75vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  clip-path: polygon(0 0, 100% 0, 100% 88%, 0 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.05);
  transition: transform 12s linear;
}
.hero-section:hover .hero-bg {
  transform: scale(1.1);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
}
/* Grain texture overlay via pseudo-element */
.hero-section::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: 0.35;
  mix-blend-mode: overlay;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 180px 180px;
}
.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 3rem 1.5rem 5rem;
  max-width: 50rem;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 400;
  color: #ffffff;
  letter-spacing: 0.01em;
  line-height: 1.1;
  margin-bottom: 1.25rem;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3);
}
.hero-subtitle {
  font-family: var(--font-primary);
  font-size: 1.15rem;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.88);
  max-width: 36rem;
  margin: 0 auto 2rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
  text-shadow: 0 1px 10px rgba(0, 0, 0, 0.2);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.hero-badge.open {
  background: rgba(34, 197, 94, 0.2);
  color: #bbf7d0;
}
.hero-badge.closed {
  background: rgba(239, 68, 68, 0.2);
  color: #fecaca;
}
.hero-badge .dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  position: relative;
}
.hero-badge.open .dot { background: #4ade80; }
.hero-badge.closed .dot { background: #f87171; }
.hero-badge .dot-ping {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  animation: ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.hero-badge.open .dot-ping { background: #4ade80; }

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2.5rem;
  border-radius: var(--radius-full);
  font-family: var(--font-primary);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #ffffff;
  border: none;
  cursor: pointer;
  text-decoration: none;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
  overflow: hidden;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
  filter: brightness(0.9);
}
.hero-cta:active {
  transform: translateY(0);
}

.cuisine-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
}
.cuisine-tag {
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  transition: all var(--duration-fast);
}
.cuisine-tag:hover {
  background: rgba(255, 255, 255, 0.22);
}

/* ============================================================
   SECTION TITLES — Editorial
   ============================================================ */
.section-title {
  font-family: var(--font-display);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--color-primary);
  letter-spacing: 0.01em;
  line-height: 1.2;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-top: 0.5rem;
  line-height: 1.7;
  letter-spacing: 0.01em;
}

/* ============================================================
   CATEGORY TABS — Underline Style (not pills)
   ============================================================ */
.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  justify-content: center;
  padding: 1rem 0 2.5rem;
  border-bottom: 1px solid var(--color-border-light);
  margin-bottom: 0.5rem;
}
.category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.65rem 1.25rem;
  border-radius: 0;
  font-weight: 500;
  font-size: 0.9rem;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  font-family: var(--font-primary);
  text-transform: capitalize;
  white-space: nowrap;
  letter-spacing: 0.03em;
  background: transparent !important;
  color: var(--color-text-muted);
  box-shadow: none !important;
}
.category-pill.inactive {
  background: transparent !important;
  color: var(--color-text-muted);
  border-bottom-color: transparent;
  box-shadow: none !important;
}
.category-pill.inactive:hover {
  color: var(--color-primary);
  border-bottom-color: var(--color-border);
  transform: none;
  box-shadow: none !important;
}
.category-pill.active-pill {
  color: var(--color-primary) !important;
  background: transparent !important;
  border-bottom-color: var(--color-secondary) !important;
  box-shadow: none !important;
  font-weight: 600;
}
.category-pill.active-pill:hover {
  transform: none;
  box-shadow: none !important;
}

/* ============================================================
   MENU CARD — Warm Shadow + Left Border Accent
   ============================================================ */
.menu-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(27, 42, 74, 0.05);
  border: 1px solid var(--color-border-light);
  border-left: 3px solid var(--color-secondary);
  transition: all var(--duration-normal) var(--ease-out);
  display: flex;
  flex-direction: column;
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(27, 42, 74, 0.1), 0 2px 8px rgba(200, 149, 108, 0.08);
  border-color: var(--color-border);
  border-left-color: var(--color-secondary);
}

.menu-card-image {
  position: relative;
  overflow: hidden;
  height: 13rem;
}
.menu-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.menu-card:hover .menu-card-image img {
  transform: scale(1.06);
}
.menu-card-image .placeholder-img {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--color-surface-warm), var(--color-border-light));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
}

.menu-card-price {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.95rem;
  color: #ffffff;
  background: var(--color-primary);
  border: none;
  box-shadow: 0 2px 8px rgba(27, 42, 74, 0.25);
  letter-spacing: 0.02em;
}
/* RTL price position */
[dir="rtl"] .menu-card-price {
  right: auto;
  left: 0.75rem;
}

.menu-card-body {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.menu-card-name {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}
.menu-card-desc {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  line-height: 1.6;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-card-category {
  font-size: 0.7rem;
  color: var(--color-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* Dietary badges */
.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.85rem;
}
.diet-badge {
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
.diet-badge.vegetarian { background: #dcfce7; color: #166534; }
.diet-badge.vegan { background: #d1fae5; color: #065f46; }
.diet-badge.gluten-free { background: #fef3c7; color: #854d0e; }
.diet-badge.spicy { background: #fee2e2; color: #991b1b; }

/* Add to cart button — solid, rounded */
.add-to-cart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  font-family: var(--font-primary);
  margin-top: auto;
  position: relative;
  overflow: hidden;
}
.add-to-cart-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
  filter: brightness(0.9);
}
.add-to-cart-btn:active {
  transform: translateY(0);
}
.add-to-cart-btn.added {
  background: #22c55e !important;
}

/* ============================================================
   RESERVATION CARD — Warm with Left Border
   ============================================================ */
.reservation-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: 0 2px 16px rgba(27, 42, 74, 0.06);
  border: 1px solid var(--color-border-light);
  border-left: 4px solid var(--color-secondary);
  position: relative;
  overflow: hidden;
}
.reservation-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 0;
}
.reservation-card .info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.reservation-card .info-item {
  padding: 1.25rem;
  border-radius: var(--radius-md);
  background: var(--color-surface-warm);
  border: 1px solid var(--color-border-light);
  transition: all var(--duration-fast);
}
.reservation-card .info-item:hover {
  background: #EFEBE4;
  border-color: var(--color-border);
}
.reservation-card .info-item h4 {
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.4rem;
}
.reservation-card .info-item p {
  font-size: 1rem;
  color: var(--color-text);
  font-weight: 500;
}

/* ============================================================
   CTA SECTION — Warm Background with Pattern
   ============================================================ */
.cta-section {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 3.5rem 2rem;
  text-align: center;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.cta-section .cta-pattern {
  position: absolute;
  inset: 0;
  opacity: 0.08;
  background-image:
    radial-gradient(circle at 20% 30%, #ffffff 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, #ffffff 1px, transparent 1px),
    radial-gradient(circle at 50% 50%, #ffffff 0.5px, transparent 0.5px);
  background-size: 40px 40px, 40px 40px, 20px 20px;
}
.cta-section .cta-inner {
  position: relative;
  z-index: 1;
}
.cta-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 0.75rem;
  letter-spacing: 0.01em;
}
.cta-text {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 1.5rem;
  max-width: 32rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}
.cta-hint {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
}

/* ============================================================
   FLOATING CART BUTTON
   ============================================================ */
.floating-cart-btn {
  position: fixed;
  bottom: 6.5rem;
  z-index: 999;
  cursor: pointer;
}
[dir="rtl"] .floating-cart-btn { left: 1.25rem; right: auto; }
[dir="ltr"] .floating-cart-btn,
:not([dir="rtl"]) .floating-cart-btn { right: 1.25rem; }

.cart-bubble {
  width: 3.75rem;
  height: 3.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 20px rgba(27, 42, 74, 0.25);
  transition: all var(--duration-normal) var(--ease-out);
  position: relative;
}
.cart-bubble:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(27, 42, 74, 0.35);
}
.cart-bubble svg {
  width: 1.5rem;
  height: 1.5rem;
}
.cart-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--color-accent);
  color: white;
  border-radius: 50%;
  width: 1.4rem;
  height: 1.4rem;
  display: none;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  border: 2px solid white;
  box-shadow: 0 2px 6px rgba(212, 83, 59, 0.4);
}

/* ============================================================
   CART MODAL — Warm Toned
   ============================================================ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(27, 42, 74, 0.35);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-smooth);
}
.cart-overlay.active {
  display: block;
  opacity: 1;
}

.cart-modal {
  position: fixed;
  top: 0;
  width: 100%;
  max-width: 28rem;
  height: 100vh;
  height: 100dvh;
  background: var(--color-bg);
  box-shadow: -8px 0 40px rgba(27, 42, 74, 0.12);
  z-index: 1001;
  display: flex;
  flex-direction: column;
  transition: transform var(--duration-normal) var(--ease-out);
}
[dir="rtl"] .cart-modal {
  left: 0;
  transform: translateX(-100%);
}
[dir="ltr"] .cart-modal,
:not([dir="rtl"]) .cart-modal {
  right: 0;
  transform: translateX(100%);
}
.cart-modal.open {
  transform: translateX(0) !important;
}

.cart-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  flex-shrink: 0;
}
.cart-header h2 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-close-btn {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: white;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast);
  font-size: 1.25rem;
}
.cart-close-btn:hover {
  background: rgba(255, 255, 255, 0.35);
}

.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.25rem 1.5rem;
}
.cart-empty {
  text-align: center;
  color: var(--color-text-light);
  padding-top: 4rem;
  font-size: 0.95rem;
}
.cart-empty svg {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1rem;
  color: var(--color-border);
}

.cart-footer {
  border-top: 1px solid var(--color-border-light);
  padding: 1.25rem 1.5rem;
  background: var(--color-surface-warm);
  flex-shrink: 0;
}
.cart-totals-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 0.5rem;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--color-border);
}

.checkout-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.85rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: #ffffff;
  border: none;
  cursor: pointer;
  transition: all var(--duration-normal) var(--ease-out);
  font-family: var(--font-primary);
  box-shadow: var(--shadow-md);
  margin-top: 1rem;
}
.checkout-btn:hover {
  filter: brightness(0.9);
  transform: translateY(-1px);
  box-shadow: var(--shadow-lg);
}
.clear-cart-btn {
  width: 100%;
  padding: 0.65rem;
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  color: var(--color-accent);
  background: transparent;
  border: 1.5px solid rgba(212, 83, 59, 0.3);
  cursor: pointer;
  margin-top: 0.5rem;
  transition: all var(--duration-fast);
  font-family: var(--font-primary);
}
.clear-cart-btn:hover {
  background: rgba(212, 83, 59, 0.06);
  border-color: rgba(212, 83, 59, 0.5);
}

/* Cart item in modal */
.cart-item {
  display: flex;
  gap: 0.75rem;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid var(--color-border-light);
}
.cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
}
.cart-item-img {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  object-fit: cover;
  flex-shrink: 0;
}
.cart-item-placeholder {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: var(--radius-md);
  background: var(--color-surface-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light);
  font-size: 1.25rem;
  flex-shrink: 0;
}
.cart-item-info {
  flex: 1;
  min-width: 0;
}
.cart-item-name {
  font-weight: 600;
  color: var(--color-primary);
  font-size: 0.9rem;
  margin-bottom: 0.15rem;
}
.cart-item-price {
  color: var(--color-secondary);
  font-size: 0.825rem;
  font-weight: 500;
}
.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.qty-btn {
  width: 1.75rem;
  height: 1.75rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--duration-fast);
  font-family: var(--font-primary);
}
.qty-btn.minus {
  background: var(--color-surface-warm);
  color: var(--color-text-muted);
}
.qty-btn.minus:hover { background: var(--color-border-light); }
.qty-btn.plus {
  color: #ffffff;
}
.qty-btn.plus:hover { filter: brightness(0.9); }
.qty-value {
  font-weight: 600;
  min-width: 1.25rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-primary);
}
.remove-item-btn {
  background: none;
  border: none;
  color: var(--color-accent);
  cursor: pointer;
  font-size: 1rem;
  padding: 0;
  line-height: 1;
  margin-left: auto;
  opacity: 0.5;
  transition: opacity var(--duration-fast);
}
[dir="rtl"] .remove-item-btn { margin-left: 0; margin-right: auto; }
.remove-item-btn:hover { opacity: 1; }

/* ============================================================
   FOOTER — Warm Editorial
   ============================================================ */
.site-footer {
  background: var(--color-primary);
  color: rgba(255, 255, 255, 0.8);
  padding: 4rem 0 0;
  margin-top: 0;
}
.site-footer .footer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.site-footer .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}
.site-footer .footer-brand p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-top: 0.75rem;
  max-width: 26rem;
}
.site-footer .footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0.01em;
  color: var(--color-secondary);
  margin-bottom: 1.25rem;
}
.site-footer .footer-contact p {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.9rem;
  line-height: 1.8;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.site-footer .footer-hours-list {
  list-style: none;
}
.site-footer .footer-hours-list li {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
  padding: 0.3rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.site-footer .footer-hours-list li .day {
  text-transform: capitalize;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}
.site-footer .footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
.site-footer .social-link {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  transition: all var(--duration-fast);
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.site-footer .social-link:hover {
  background: var(--color-secondary);
  color: #ffffff;
  transform: translateY(-2px);
  border-color: var(--color-secondary);
}
.site-footer .footer-bottom {
  margin-top: 3rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.8rem;
  letter-spacing: 0.03em;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

/* --- Tablet and below (<768px) --- */
@media (max-width: 767px) {
  /* Hero */
  .hero-section {
    min-height: 50vh;
    clip-path: polygon(0 0, 100% 0, 100% 93%, 0 100%);
  }
  .hero-title { font-size: 2.25rem; }
  .hero-subtitle { font-size: 0.95rem; max-width: 90%; }
  .hero-content { padding: 2rem 1.25rem 3.5rem; }
  .hero-cta { padding: 0.85rem 2rem; font-size: 0.9rem; }

  /* Nav */
  .site-nav .nav-inner { height: 3.75rem; padding: 0 1rem; }
  .site-nav .nav-links { gap: 0.15rem; }
  .site-nav .nav-links a {
    font-size: 0.8rem;
    padding: 0.4rem 0.6rem;
  }
  .site-nav .nav-brand h1 { font-size: 1.15rem; }
  .site-nav .lang-select { padding: 0.35rem 1.75rem 0.35rem 0.6rem; font-size: 0.8rem; }

  /* Section titles */
  .section-title { font-size: 1.65rem; }
  .section-subtitle { font-size: 0.95rem; }

  /* Menu grid: single column */
  .grid.grid-cols-1.md\:grid-cols-2.lg\:grid-cols-3 {
    grid-template-columns: 1fr;
  }

  /* Category tabs: horizontal scroll, no wrap */
  .category-pills {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    justify-content: flex-start;
    padding: 0.75rem 0 1.5rem;
    gap: 0.15rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }
  .category-pills::-webkit-scrollbar { display: none; }
  .category-pill {
    flex-shrink: 0;
    font-size: 0.85rem;
    padding: 0.55rem 1rem;
  }

  /* Reservation info grid */
  .reservation-card .info-grid { grid-template-columns: 1fr; gap: 1rem; }
  .reservation-card { padding: 1.5rem; }

  /* CTA */
  .cta-section { padding: 2rem 1.25rem; }
  .cta-title { font-size: 1.4rem; }
  .cta-text { font-size: 0.95rem; }

  /* Cart modal: full width */
  .cart-modal { max-width: 100%; }

  /* Footer: single column */
  .site-footer .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .site-footer { padding: 2.5rem 0 0; }

  /* Prevent horizontal overflow */
  .max-w-7xl { padding-left: 1rem; padding-right: 1rem; }
}

/* --- Small phone (<480px) --- */
@media (max-width: 479px) {
  .hero-section { min-height: 45vh; }
  .hero-title { font-size: 1.85rem; }
  .hero-subtitle { font-size: 0.9rem; }
  .hero-badge { font-size: 0.8rem; padding: 0.5rem 1rem; }
  .cuisine-tag { font-size: 0.72rem; padding: 0.3rem 0.75rem; }

  /* Hide nav links on very small screens, keep brand + lang */
  .site-nav .nav-links a { display: none; }
  .site-nav .nav-brand img { width: 2.25rem; height: 2.25rem; }

  /* Menu card adjustments */
  .menu-card-image { height: 10rem; }
  .menu-card-body { padding: 1rem; }
  .menu-card-name { font-size: 1.05rem; }

  /* Form rows stack on small screens */
  .restohub-form-row { grid-template-columns: 1fr; }

  /* Smaller section spacing */
  .py-20 { padding-top: 3rem; padding-bottom: 3rem; }
}

/* --- Tablet breakpoint utilities --- */
@media (min-width: 640px) {
  .sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
  .sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 768px) {
  .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (min-width: 1024px) {
  .lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
  .lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

/* ============================================================
   SCROLLBAR (webkit)
   ============================================================ */
.cart-body::-webkit-scrollbar {
  width: 4px;
}
.cart-body::-webkit-scrollbar-track {
  background: transparent;
}
.cart-body::-webkit-scrollbar-thumb {
  background: var(--color-border);
  border-radius: 4px;
}
.cart-body::-webkit-scrollbar-thumb:hover {
  background: var(--color-secondary);
}
