/* ═══════════════════════════════════════════════════════
   FRESHCATCH — Stylesheet
   Primary: #b71c1c | Accent: #e64a19
   ═══════════════════════════════════════════════════════ */

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

:root {
  --primary:        #b71c1c;
  --primary-dark:   #7f0000;
  --primary-light:  #e53935;
  --accent:         #e64a19;
  --accent-light:   #ff8a65;
  --gold:           #f57c00;
  --bg:             #fff8f8;
  --surface:        #ffffff;
  --text:           #1a1a1a;
  --text-muted:     #666666;
  --border:         #f5dada;
  --radius:         12px;
  --radius-lg:      20px;
  --shadow:         0 4px 24px rgba(183,28,28,0.10);
  --shadow-lg:      0 12px 48px rgba(183,28,28,0.18);
  --transition:     0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --nav-h:          70px;
  --font-head:      'Playfair Display', Georgia, serif;
  --font-body:      'Inter', system-ui, sans-serif;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--surface);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Utility ─── */
.container { width: min(1200px, 92vw); margin-inline: auto; }
.section { padding: 96px 0; }
.bg-warm { background: var(--bg); }
.bg-dark { background: #0d0d0d; }
.bg-red  { background: var(--primary); }

.section-tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  background: rgba(183,28,28,0.08);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
}
.section-tag.light { color: rgba(255,255,255,0.85); background: rgba(255,255,255,0.15); }

.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 16px;
}
.section-title.light { color: #fff; }
.section-title em { color: var(--primary); font-style: italic; }

.section-sub { color: var(--text-muted); max-width: 560px; margin-inline: auto; }
.section-sub.light { color: rgba(255,255,255,0.8); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-cta { text-align: center; margin-top: 48px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: var(--transition);
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 4px 16px rgba(183,28,28,0.35);
}
.btn-primary:hover { background: var(--primary-dark); box-shadow: 0 6px 24px rgba(183,28,28,0.45); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; transform: translateY(-2px); }

.btn-sm { padding: 8px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ─── Scroll Animations ─── */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}
.animate-on-scroll:nth-child(2) { transition-delay: 0.1s; }
.animate-on-scroll:nth-child(3) { transition-delay: 0.2s; }
.animate-on-scroll:nth-child(4) { transition-delay: 0.3s; }
.animate-on-scroll:nth-child(5) { transition-delay: 0.35s; }
.animate-on-scroll:nth-child(6) { transition-delay: 0.4s; }

/* ════════════════════════════════════════
   NAVBAR
════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 1000;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  backdrop-filter: blur(16px);
}
.navbar.scrolled .nav-logo { color: var(--text); }
.navbar.scrolled .nav-links a { color: var(--text); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); }
.navbar.scrolled .hamburger span { background: var(--text); }

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  transition: color var(--transition);
}
.nav-logo span.logo-text span { color: var(--accent-light); }
.logo-icon .material-icons { color: var(--accent-light); font-size: 1.6rem; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav-links a {
  padding: 8px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: 8px;
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; background: rgba(255,255,255,0.1); }
.nav-links .nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 9px 20px;
  border-radius: 100px;
  box-shadow: 0 4px 12px rgba(183,28,28,0.4);
}
.nav-links .nav-cta:hover { background: var(--primary-dark); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
  display: block;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ════════════════════════════════════════
   HERO SLIDESHOW
════════════════════════════════════════ */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
}

.hero-slides { position: relative; width: 100%; height: 100%; }

.hero-slide {
  position: absolute;
  inset: 0;
  background: var(--slide-bg);
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1s ease;
  animation: none;
}
.hero-slide.active {
  opacity: 1;
  animation: kenBurns 8s ease-in-out infinite alternate;
}
@keyframes kenBurns {
  from { background-size: 110%; }
  to   { background-size: 120%; }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.25) 0%,
    rgba(0,0,0,0.55) 60%,
    rgba(0,0,0,0.72) 100%
  );
}

.slide-content {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--nav-h) 8vw 80px;
  max-width: 780px;
}

.slide-tag {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  background: rgba(230,74,25,0.2);
  border: 1px solid rgba(255,138,101,0.4);
  padding: 5px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.slide-content h1 {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 6vw, 5rem);
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.slide-content h1 em { color: var(--accent-light); font-style: italic; }

.slide-content p {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.85);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* Slide reveal animation */
.hero-slide.active .reveal {
  animation: slideUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}
.hero-slide.active .reveal:nth-child(1) { animation-delay: 0.3s; }
.hero-slide.active .reveal:nth-child(2) { animation-delay: 0.5s; }
.hero-slide.active .reveal:nth-child(3) { animation-delay: 0.65s; }
.hero-slide.active .reveal:nth-child(4) { animation-delay: 0.8s; }

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

/* Hero Dots */
.hero-dots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 10;
}
.hero-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.4);
  border-radius: 100px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.hero-dot.active { background: #fff; width: 28px; }

/* Hero Arrows */
.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: var(--transition);
}
.hero-arrow:hover { background: rgba(255,255,255,0.3); }
.hero-prev { left: 24px; }
.hero-next { right: 24px; }

/* Scroll indicator */
.scroll-down {
  position: absolute;
  bottom: 40px;
  right: 48px;
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  animation: bounce 2s infinite;
  z-index: 10;
}
.scroll-down .material-icons { font-size: 2rem; }
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(8px); }
}

/* ════════════════════════════════════════
   ABOUT
════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-illustration img {
  border-radius: var(--radius-lg);
  max-height: 480px;
  width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 12px 32px rgba(183,28,28,0.15));
}
.about-content .section-title { margin-top: 12px; }
.about-content p { color: var(--text-muted); margin-bottom: 18px; }

.about-stats {
  display: flex;
  gap: 32px;
  margin-top: 36px;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.stat-num {
  display: block;
  font-family: var(--font-head);
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ════════════════════════════════════════
   FEATURED DISHES
════════════════════════════════════════ */
.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}

.dish-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid var(--border);
}
.dish-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.dish-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg), #fce4e4);
}
.dish-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.dish-card:hover .dish-img-wrap img { transform: scale(1.06); }

.dish-img-placeholder {
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  opacity: 0.3;
}
.dish-img-placeholder .material-icons { font-size: 4rem; }

.dish-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--primary);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 100px;
}
.dish-badge.new { background: var(--accent); }

.dish-body { padding: 20px; }
.dish-body h3 {
  font-family: var(--font-head);
  font-size: 1.15rem;
  margin-bottom: 8px;
  color: var(--text);
}
.dish-body p { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 18px; }

.dish-footer { display: flex; align-items: center; justify-content: space-between; }
.dish-price {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

/* ════════════════════════════════════════
   MENU
════════════════════════════════════════ */
.menu-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  justify-content: center;
}
.tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.tab-btn .material-icons { font-size: 1.1rem; }
.tab-btn:hover { background: var(--border); color: var(--primary); }
.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(183,28,28,0.3);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 0.3s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.menu-items { max-width: 700px; margin-inline: auto; }
.menu-item {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 14px 0;
  border-bottom: 1px dashed var(--border);
}
.menu-item:last-child { border-bottom: none; }
.item-name { font-size: 1rem; font-weight: 500; white-space: nowrap; }
.item-dots {
  flex: 1;
  border-bottom: 2px dotted var(--border);
  min-width: 40px;
  margin-bottom: 4px;
}
.item-price {
  font-family: var(--font-head);
  font-size: 1rem;
  font-weight: 700;
  color: var(--primary);
  white-space: nowrap;
}

/* ════════════════════════════════════════
   GALLERY
════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 12px;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: #1a1a1a;
}
.gallery-item.tall  { grid-row: span 2; }
.gallery-item.wide  { grid-column: span 2; }

.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.06); }

.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,0.2);
  background: #1a1a1a;
  transition: var(--transition);
}
.gallery-placeholder .material-icons { font-size: 2.5rem; }
.gallery-placeholder span:last-child { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.gallery-item:hover .gallery-placeholder { color: rgba(255,255,255,0.4); }

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(183,28,28,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  opacity: 0;
  transition: var(--transition);
}
.gallery-overlay .material-icons { font-size: 2rem; }
.gallery-item:hover .gallery-overlay { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap { max-width: 90vw; max-height: 90vh; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 8px; }
.lightbox-close {
  position: absolute;
  top: 20px; right: 20px;
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.lightbox-nav:hover { background: var(--primary); }
.lightbox-prev { left: 16px; }
.lightbox-next { right: 16px; }

/* ════════════════════════════════════════
   WHY US
════════════════════════════════════════ */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 28px;
  margin-bottom: 72px;
}
.why-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition);
  box-shadow: var(--shadow);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }

.why-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, #fce4e4, #ffccbc);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}
.why-icon .material-icons { font-size: 1.6rem; color: var(--primary); }

.why-card h3 { font-family: var(--font-head); font-size: 1.15rem; margin-bottom: 10px; }
.why-card p  { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

.why-illustration {
  max-width: 520px;
  margin-inline: auto;
  text-align: center;
}
.why-illustration img {
  filter: drop-shadow(0 8px 24px rgba(183,28,28,0.12));
}

/* ════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════ */
.testimonial-carousel { overflow: hidden; position: relative; }
.testimonial-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 calc(33.333% - 16px);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-lg);
  padding: 32px;
  color: #fff;
}

.stars { display: flex; gap: 2px; margin-bottom: 16px; }
.stars .material-icons { font-size: 1.1rem; color: #FFD740; }

.testimonial-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.9);
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 14px; }
.reviewer-avatar {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}
.reviewer div { display: flex; flex-direction: column; }
.reviewer strong { font-size: 0.95rem; }
.reviewer span { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}
.carousel-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transition: var(--transition);
  cursor: pointer;
  border: none;
}
.carousel-dot.active { background: #fff; }

/* ════════════════════════════════════════
   RESERVATION
════════════════════════════════════════ */
.reserve-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.reserve-content .section-title { margin-top: 12px; }
.reserve-content > p { color: var(--text-muted); margin-bottom: 28px; }

.reserve-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}
.reserve-info li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.reserve-info .material-icons { font-size: 1.2rem; color: var(--primary); }

.reserve-illustration img {
  max-height: 260px;
  margin-top: 16px;
  filter: drop-shadow(0 8px 20px rgba(183,28,28,0.12));
}

/* Form */
.reserve-form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }

.form-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
}
.form-group label .material-icons { font-size: 1rem; color: var(--primary); }

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--surface);
  transition: border-color var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(183,28,28,0.1);
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23999' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

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

.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-top: 14px;
}
.reserve-form .btn-primary { margin-top: 8px; }
.reserve-form .btn .material-icons { font-size: 1.1rem; }

/* ════════════════════════════════════════
   CONTACT
════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 56px;
  align-items: start;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-item .material-icons {
  font-size: 1.4rem;
  color: var(--primary);
  margin-top: 2px;
  flex-shrink: 0;
}
.contact-item strong { display: block; font-weight: 600; margin-bottom: 4px; }
.contact-item p, .contact-item a { color: var(--text-muted); font-size: 0.92rem; }
.contact-item a:hover { color: var(--primary); }

.social-links { display: flex; gap: 12px; margin-top: 8px; }
.social-link {
  width: 40px; height: 40px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  transition: var(--transition);
}
.social-link svg { width: 18px; height: 18px; }
.social-link:hover { background: var(--primary); border-color: var(--primary); color: #fff; }

.map-placeholder {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, #f5dada, #fce4e4);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: var(--primary);
  border: 2px dashed var(--border);
  font-size: 0.9rem;
  text-align: center;
  padding: 20px;
}
.map-placeholder .material-icons { font-size: 3rem; opacity: 0.5; }
.map-placeholder iframe { border-radius: var(--radius-lg); }

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
.footer {
  background: #0d0d0d;
  color: rgba(255,255,255,0.75);
  padding: 72px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 14px; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; color: rgba(255,255,255,0.5); max-width: 280px; }

.footer-links h4 {
  font-family: var(--font-head);
  font-size: 1rem;
  color: #fff;
  margin-bottom: 18px;
}
.footer-links ul li {
  margin-bottom: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
}
.footer-links ul a { transition: color var(--transition); }
.footer-links ul a:hover { color: var(--accent-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.3);
  flex-wrap: wrap;
  gap: 8px;
}

/* ════════════════════════════════════════
   TOAST
════════════════════════════════════════ */
.toast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: #1a1a1a;
  color: #fff;
  padding: 14px 22px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
  z-index: 3000;
  transform: translateY(80px);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.4s ease;
  pointer-events: none;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast .material-icons { color: #4caf50; }

/* ════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
════════════════════════════════════════ */
@media (max-width: 1024px) {
  .about-grid   { grid-template-columns: 1fr; gap: 40px; }
  .about-illustration { max-width: 420px; margin-inline: auto; }

  .reserve-grid { grid-template-columns: 1fr; gap: 40px; }
  .reserve-illustration { display: none; }

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

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

  .testimonial-card { flex: 0 0 calc(50% - 12px); }

  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .section { padding: 64px 0; }

  /* Navbar */
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(10,10,10,0.97);
    backdrop-filter: blur(20px);
    flex-direction: column;
    gap: 4px;
    padding: 20px 24px 32px;
    transform: translateY(-110%);
    transition: transform var(--transition);
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { color: rgba(255,255,255,0.85); padding: 12px 16px; font-size: 1rem; border-radius: 10px; }
  .nav-links .nav-cta { margin-top: 8px; justify-content: center; }

  /* Hero */
  .slide-content { padding: var(--nav-h) 6vw 60px; align-items: center; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-arrow { display: none; }
  .scroll-down { right: 20px; bottom: 20px; }

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

  /* Menu tabs */
  .menu-tabs { gap: 8px; }
  .tab-btn { padding: 8px 14px; font-size: 0.82rem; }
  .tab-btn span.material-icons { display: none; }

  /* Gallery */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 160px;
  }
  .gallery-item.wide { grid-column: span 2; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr; }

  /* Testimonials */
  .testimonial-card { flex: 0 0 100%; }

  /* Reserve form */
  .reserve-form { padding: 24px 18px; }
  .form-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* About stats */
  .about-stats { gap: 20px; }
}

/* ════════════════════════════════════════
   RESPONSIVE — SMALL MOBILE (max 480px)
════════════════════════════════════════ */
@media (max-width: 480px) {
  .dishes-grid { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { justify-content: center; }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 130px;
  }
  .gallery-item.tall { grid-row: span 1; }
}
