/* ================================================================
   LA PLAYA MEXICAN CAFE — Design System
   Color Theme: Bright Cyan/Teal + Warm White
   ================================================================ */

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

/* ── CSS Custom Properties ── */
:root {
  /* Brand Colors */
  --cyan-900: #0e4f63;
  --cyan-800: #155e74;
  --cyan-700: #1a7a8a;
  --cyan-600: #0e7490;
  --cyan-500: #06b6d4;
  --cyan-400: #22d3ee;
  --cyan-300: #67e8f9;
  --cyan-200: #a5f3fc;
  --cyan-100: #cffafe;
  --cyan-50: #ecfeff;

  /* Warm Accents */
  --gold: #d4a017;
  --gold-light: #f5d77a;
  --terracotta: #c75b39;
  --sand: #f5e6d0;
  --sand-light: #faf6f0;

  /* Neutrals */
  --white: #ffffff;
  --gray-50: #fafafa;
  --gray-100: #f5f5f5;
  --gray-200: #e5e5e5;
  --gray-300: #d4d4d4;
  --gray-400: #a3a3a3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-accent: 'Dancing Script', cursive;

  /* Spacing */
  --section-padding: 3.5rem 0;
  --container-max: 1280px;
  --container-padding: 0 1.5rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1);
  --shadow-glow: 0 0 40px rgba(6, 182, 212, 0.15);

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

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 600ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

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

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--gray-50);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

/* ── Utility Classes ── */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* ── Animation Classes ── */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* Stagger delays */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }

/* ================================================================
   ANNOUNCEMENT BANNER
   ================================================================ */
.announcement-bar {
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-600), var(--gold));
  color: var(--white);
  text-align: center;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  position: relative;
  overflow: hidden;
}

.announcement-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.announcement-bar a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.announcement-bar .close-btn {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 1.25rem;
  opacity: 0.7;
  transition: opacity var(--transition-fast);
}

.announcement-bar .close-btn:hover {
  opacity: 1;
}

/* ================================================================
   HEADER / NAVIGATION
   ================================================================ */
.site-header {
  background: var(--cyan-800);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 0;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.logo-link {
  display: flex;
  align-items: center;
  transition: transform var(--transition-base);
}

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

.logo-link img {
  height: 60px;
  width: auto;
}

/* Desktop Navigation */
.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast), color var(--transition-fast);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--cyan-300);
  transition: width var(--transition-base), left var(--transition-base);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 60%;
  left: 20%;
}

.nav-links a:hover {
  background: rgba(255,255,255,0.1);
}

/* Social Icons in Header */
.header-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 1.5rem;
}

.header-social a {
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-full);
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.header-social a:hover {
  background: rgba(255,255,255,0.15);
  transform: scale(1.1);
}

.header-social svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* CTA Button in Header */
.btn-order {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--white);
  color: var(--cyan-800);
  font-weight: 600;
  font-size: 0.875rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--radius-md);
  border: none;
  cursor: pointer;
  transition: all var(--transition-fast);
  margin-left: 1rem;
}

.btn-order:hover {
  background: var(--cyan-100);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* Mobile Menu Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 0.5rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.mobile-toggle:hover {
  background: rgba(255,255,255,0.1);
}

.mobile-toggle svg {
  width: 28px;
  height: 28px;
}

/* Mobile Navigation */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cyan-800);
  z-index: 999;
  padding: 5rem 2rem 2rem;
  flex-direction: column;
  gap: 0.5rem;
  transform: translateX(100%);
  transition: transform var(--transition-base);
}

.mobile-nav.open {
  display: flex;
  transform: translateX(0);
}

.mobile-nav a {
  color: var(--white);
  font-size: 1.25rem;
  font-weight: 500;
  padding: 1rem;
  border-radius: var(--radius-md);
  transition: background var(--transition-fast);
}

.mobile-nav a:hover {
  background: rgba(255,255,255,0.1);
}

.mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  font-size: 2rem;
}

/* ================================================================
   HERO SECTION
   ================================================================ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cyan-800);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 1;
}

.hero-bg img,
.hero-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(14, 79, 99, 0.35) 0%,
    rgba(0, 0, 0, 0.2) 40%,
    rgba(0, 0, 0, 0.4) 100%
  );
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 4rem 1.5rem;
  color: var(--white);
}

.hero-tagline {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.3s forwards;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.5s forwards;
}

.hero h1 span {
  display: block;
  background: linear-gradient(135deg, var(--white), var(--cyan-200));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.7;
  max-width: 600px;
  opacity: 0.9;
  margin-bottom: 2rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.7s forwards;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 0.9s forwards;
}

@keyframes fadeSlideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Award Badges */
.hero-awards {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  animation: fadeSlideUp 0.8s ease 1.1s forwards;
}

.hero-awards p {
  font-weight: 600;
  font-size: 0.95rem;
  width: 100%;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cyan-200);
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition-base);
}

.award-badge:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.award-badge svg {
  width: 18px;
  height: 18px;
  fill: var(--gold-light);
}

.award-badge-new {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.award-star-circle {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1.5px solid white;
  display: flex;
  align-items: center;
  justify-content: center;
}

.award-star-circle svg {
  width: 26px;
  height: 26px;
  fill: white;
}

.award-text {
  display: flex;
  flex-direction: column;
}

.award-sub {
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.8);
  line-height: 1;
  margin-bottom: 2px;
  font-family: var(--font-body);
}

.award-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: white;
  line-height: 1;
  font-family: var(--font-body);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition-base);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--white);
  color: var(--cyan-800);
  border-color: var(--white);
}

.btn-primary:hover {
  background: var(--cyan-100);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
}

.btn-secondary {
  background: var(--cyan-500);
  color: var(--white);
  border-color: var(--cyan-500);
}

.btn-secondary:hover {
  background: var(--cyan-400);
  border-color: var(--cyan-400);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(6, 182, 212, 0.3);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--cyan-800);
  transform: translateY(-2px);
}

.btn-dark {
  background: var(--cyan-800);
  color: var(--white);
  border-color: var(--cyan-800);
}

.btn-dark:hover {
  background: var(--cyan-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn svg {
  width: 20px;
  height: 20px;
}

/* ================================================================
   WAVE DIVIDER
   ================================================================ */
.wave-divider {
  position: relative;
  overflow: hidden;
  height: 120px;
  margin-top: -1px;
}

.wave-divider svg {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.wave-divider.wave-white svg path { fill: var(--gray-50); }
.wave-divider.wave-cyan svg path { fill: var(--cyan-800); }

/* ================================================================
   FEATURED DISHES / SIGNATURE SECTION
   ================================================================ */
.section-featured {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-label {
  font-family: var(--font-accent);
  font-size: 1.25rem;
  color: var(--cyan-600);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--gray-500);
  line-height: 1.7;
}

/* Dish Cards Grid */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.dish-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all var(--transition-base);
  position: relative;
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.dish-card-image {
  position: relative;
  height: 260px;
  overflow: hidden;
}

.dish-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.dish-card:hover .dish-card-image img {
  transform: scale(1.08);
}

.dish-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.375rem 0.75rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dish-card-body {
  padding: 1.5rem;
}

.dish-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gray-900);
}

.dish-card-body p {
  font-size: 0.95rem;
  color: var(--gray-500);
  line-height: 1.6;
}

.dish-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem 1.5rem;
}

.dish-star-rating {
  display: flex;
  gap: 2px;
  color: var(--gold);
}

.dish-star-rating svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* ================================================================
   OUR STORY SECTION
   ================================================================ */
.section-story {
  padding: var(--section-padding);
  background: var(--white);
  overflow: hidden;
}

.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.story-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.story-content .highlight-text {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--cyan-600);
  margin-bottom: 1rem;
}

.story-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin: 2.5rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--cyan-700);
  line-height: 1;
}

.stat-label {
  font-size: 0.85rem;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.story-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  height: 500px;
}

.story-img-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.story-img-wrapper:first-child {
  grid-row: 1 / 3;
}

.story-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.story-img-wrapper:hover img {
  transform: scale(1.05);
}

/* ================================================================
   HAPPY HOUR / PROMO SECTION
   ================================================================ */
.section-promo {
  background: var(--cyan-800);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.section-promo::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6,182,212,0.2), transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.section-promo::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,160,23,0.15), transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.promo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.promo-content {
  color: var(--white);
}

.promo-content .section-label {
  color: var(--gold-light);
}

.promo-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.promo-content p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.promo-hours {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

.promo-hour-item {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  text-align: center;
  transition: all var(--transition-base);
}

.promo-hour-item:hover {
  background: rgba(255,255,255,0.15);
  transform: translateY(-4px);
}

.promo-hour-item .day {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.promo-hour-item .time {
  font-size: 0.9rem;
  opacity: 0.8;
}

.promo-image {
  position: relative;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(0,0,0,0.3);
}

.promo-image img {
  width: 100%;
  height: 450px;
  object-fit: cover;
}

.promo-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,182,212,0.2), transparent);
  border-radius: var(--radius-2xl);
}

/* ================================================================
   MENU PREVIEW SECTION
   ================================================================ */
.section-menu-preview {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.menu-category-btn {
  background: var(--white);
  color: var(--gray-700);
  border: 2px solid var(--gray-200);
  padding: 0.625rem 1.5rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all var(--transition-base);
}

.menu-category-btn:hover,
.menu-category-btn.active {
  background: var(--cyan-600);
  color: var(--white);
  border-color: var(--cyan-600);
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(14, 116, 144, 0.3);
}

/* Menu Item Cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.menu-item {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  border: 1px solid var(--gray-100);
}

.menu-item:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--cyan-200);
}

.menu-item-image {
  height: 200px;
  overflow: hidden;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.menu-item-body {
  padding: 1.25rem;
}

.menu-item-body h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.375rem;
}

.menu-item-body p {
  font-size: 0.875rem;
  color: var(--gray-500);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-item-star {
  color: var(--cyan-500);
  margin-left: 0.25rem;
}

.view-full-menu-wrapper {
  text-align: center;
  margin-top: 3rem;
}

/* ================================================================
   REVIEWS SECTION - MARQUEE
   ================================================================ */
.section-reviews {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.reviews-marquee-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  height: 600px;
  position: relative;
  overflow: hidden;
  max-width: 1200px;
  margin: 0 auto;
  /* Fading edges at top and bottom */
  -webkit-mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
  mask-image: linear-gradient(to bottom, transparent, black 15%, black 85%, transparent);
}

.marquee-column {
  overflow: hidden;
  position: relative;
  height: 100%;
}

.marquee-inner {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem 0;
}

.speed-normal { animation: marquee-up 45s linear infinite; }
.speed-slow { animation: marquee-up 55s linear infinite; }
.speed-fast { animation: marquee-up 35s linear infinite; }

.marquee-inner:hover {
  animation-play-state: paused;
}

@keyframes marquee-up {
  0% { transform: translateY(0); }
  100% { transform: translateY(calc(-50% - 1rem)); }
}

.review-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

.review-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.review-stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  margin-bottom: 1rem;
}

.review-stars svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.review-card p {
  font-size: 1.1rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.review-author-avatar {
  flex: 1;
}

.review-author-info strong {
  font-size: 0.95rem;
  color: var(--gray-900);
}

.review-author-info span {
  display: block;
  font-size: 0.8rem;
  color: var(--gray-400);
}

/* ================================================================
   NEWSLETTER / CTA SECTION
   ================================================================ */
.section-newsletter {
  background: var(--cyan-800);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.section-newsletter::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border: 2px solid rgba(255,255,255,0.08);
  border-radius: 50%;
  animation: spinSlow 30s linear infinite;
}

.section-newsletter::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 450px;
  height: 450px;
  border: 2px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  animation: spinSlow 25s linear infinite reverse;
}

@keyframes spinSlow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.newsletter-content {
  text-align: center;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.newsletter-content h2 {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.newsletter-content p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-form input[type="email"] {
  width: 100%;
  padding: 0.875rem 1.25rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-md);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  font-size: 1rem;
  transition: border-color var(--transition-base);
  outline: none;
  font-family: var(--font-body);
}

.newsletter-form input[type="email"]::placeholder {
  color: rgba(255,255,255,0.5);
}

.newsletter-form input[type="email"]:focus {
  border-color: var(--cyan-400);
  background: rgba(255,255,255,0.15);
}

.newsletter-form button {
  width: 100%;
}

.newsletter-disclaimer {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.5;
}

.newsletter-disclaimer a {
  color: rgba(255,255,255,0.6);
  text-decoration: underline;
}

/* ================================================================
   LOCATION / MAP SECTION
   ================================================================ */
.section-location {
  padding: var(--section-padding);
  background: var(--gray-50);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.location-info h3 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 1.5rem;
}

.location-detail {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
  align-items: flex-start;
}

.location-detail-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: var(--cyan-100);
  color: var(--cyan-700);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.location-detail-icon svg {
  width: 22px;
  height: 22px;
}

.location-detail-text h4 {
  font-weight: 600;
  color: var(--gray-900);
  margin-bottom: 0.25rem;
}

.location-detail-text p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

.location-hours-table {
  width: 100%;
  margin-top: 1.5rem;
  border-collapse: collapse;
}

.location-hours-table tr {
  border-bottom: 1px solid var(--gray-100);
}

.location-hours-table td {
  padding: 0.75rem 0;
  font-size: 0.95rem;
}

.location-hours-table td:first-child {
  font-weight: 600;
  color: var(--gray-800);
}

.location-hours-table td:last-child {
  color: var(--gray-500);
  text-align: right;
}

.map-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  height: 450px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ================================================================
   QR CODE / REVIEW CTA
   ================================================================ */
.section-qr {
  background: var(--white);
  padding: 4rem 0;
}

.qr-card {
  display: flex;
  align-items: center;
  gap: 2rem;
  max-width: 700px;
  margin: 0 auto;
  background: var(--gray-50);
  border: 2px solid var(--gray-100);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  transition: all var(--transition-base);
}

.qr-card:hover {
  border-color: var(--cyan-200);
  box-shadow: var(--shadow-glow);
}

.qr-card img {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-md);
}

.qr-card-text h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gray-900);
  margin-bottom: 0.5rem;
}

.qr-card-text p {
  color: var(--gray-500);
  font-size: 0.95rem;
}

/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--cyan-800);
  color: var(--white);
  padding-top: 4rem;
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-top: 1rem;
  max-width: 300px;
}

.footer-brand img {
  height: 60px;
}

.footer-links h4,
.footer-contact h4 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
  color: var(--white);
}

.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  transition: color var(--transition-fast);
}

.footer-links a:hover {
  color: var(--cyan-300);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  color: var(--cyan-400);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  background: rgba(255,255,255,0.1);
  color: var(--white);
  transition: all var(--transition-base);
}

.footer-social a:hover {
  background: var(--cyan-500);
  transform: translateY(-3px);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
}

.footer-bottom a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-fast);
}

.footer-bottom a:hover {
  color: var(--white);
}

/* ================================================================
   MENU PAGE STYLES
   ================================================================ */
.page-hero {
  background: var(--cyan-800);
  padding: 4rem 0 3rem;
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
}

.page-hero p {
  font-size: 1.1rem;
  opacity: 0.8;
  margin-top: 0.5rem;
}

.menu-section {
  padding: 3rem 0;
}

.menu-section-title {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 2.5rem;
  position: relative;
}

.menu-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--cyan-500);
  margin: 0.75rem auto 0;
  border-radius: var(--radius-full);
}

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

/* Tablets */
@media (max-width: 1024px) {
  .dishes-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story-grid,
  .promo-grid,
  .location-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .story-images {
    height: 350px;
  }

  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .menu-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-top {
    grid-template-columns: repeat(2, 1fr);
  }

  .nav-links {
    display: none;
  }

  .header-social {
    display: none;
  }

  .btn-order-desktop {
    display: none;
  }

  .mobile-toggle {
    display: block;
  }
}

/* Mobile */
@media (max-width: 640px) {
  :root {
    --section-padding: 4rem 0;
  }

  .hero {
    min-height: 75vh;
  }

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

  .hero-description {
    font-size: 1rem;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .award-badge {
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }

  .dishes-grid {
    grid-template-columns: 1fr;
  }

  .story-images {
    grid-template-columns: 1fr;
    height: auto;
  }

  .story-img-wrapper:first-child {
    grid-row: auto;
  }

  .story-stats {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .promo-hours {
    grid-template-columns: 1fr;
  }

  .reviews-grid,
  .menu-grid {
    grid-template-columns: 1fr;
  }

  .menu-categories {
    gap: 0.5rem;
  }

  .menu-category-btn {
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  .qr-card {
    flex-direction: column;
    text-align: center;
    padding: 2rem;
  }

  .location-grid {
    gap: 2rem;
  }

  .map-wrapper {
    height: 300px;
  }
}

/* ================================================================
   ABOUT PAGE
   ================================================================ */
.about-hero-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-xl);
}

.about-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 3rem 0;
}

.about-content p {
  font-size: 1.1rem;
  color: var(--gray-600);
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.about-content h2 {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--gray-900);
  margin: 2rem 0 1rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  text-align: center;
  padding: 2rem;
  background: var(--gray-50);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  width: 100px;
  height: 100px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--cyan-500), var(--cyan-700));
  margin: 0 auto 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
}

.team-card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.team-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
}

/* ================================================================
   CATERING PAGE
   ================================================================ */
.catering-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.catering-feature {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-100);
  transition: all var(--transition-base);
}

.catering-feature:hover {
  border-color: var(--cyan-200);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

.catering-feature-icon {
  width: 64px;
  height: 64px;
  background: var(--cyan-100);
  color: var(--cyan-700);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
}

.catering-feature-icon svg {
  width: 32px;
  height: 32px;
}

.catering-feature h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}

.catering-feature p {
  color: var(--gray-500);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 3rem;
  background: var(--white);
  border-radius: var(--radius-2xl);
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-md);
  font-size: 1rem;
  font-family: var(--font-body);
  transition: border-color var(--transition-fast);
  outline: none;
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--cyan-500);
  box-shadow: 0 0 0 3px rgba(6, 182, 212, 0.1);
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 640px) {
  .form-row {
    grid-template-columns: 1fr;
  }
  
  .catering-features,
  .team-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================================================
   LOADING & MICRO-INTERACTIONS
   ================================================================ */

/* Smooth image loading */
img {
  opacity: 1;
  transition: opacity 0.3s ease;
}

img[loading="lazy"] {
  opacity: 0;
}

img[loading="lazy"].loaded,
img[loading="lazy"][complete] {
  opacity: 1;
}

/* Focus styles for accessibility */
a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 2px solid var(--cyan-500);
  outline-offset: 2px;
}

/* Scrollbar styling */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
  background: var(--cyan-600);
  border-radius: var(--radius-full);
}

::-webkit-scrollbar-thumb:hover {
  background: var(--cyan-700);
}

/* Print styles */
@media print {
  .site-header,
  .announcement-bar,
  .mobile-nav,
  .section-newsletter,
  .site-footer {
    display: none;
  }
}
