/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

:root {
  --primary: #b41f1f;
  --primary-dark: #8a1515;
  --gold: #d4af37;
  --gold-light: #e8c866;
  --bg: #fffaf5;
  --bg-alt: #fff4e8;
  --surface: #ffffff;
  --text: #1a1a1a;
  --text-muted: #5a5a5a;
  --border: rgba(0,0,0,0.08);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.15);
  --radius: 14px;
  --radius-lg: 22px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Poppins', sans-serif;
  --glass: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.3);
}

[data-theme="dark"] {
  --primary: #e63946;
  --primary-dark: #b41f1f;
  --gold: #e8c866;
  --gold-light: #f0d88a;
  --bg: #0f0f14;
  --bg-alt: #17171f;
  --surface: #1c1c26;
  --text: #f5f5f5;
  --text-muted: #a0a0a8;
  --border: rgba(255,255,255,0.08);
  --shadow-sm: 0 2px 10px rgba(0,0,0,0.4);
  --shadow-md: 0 8px 30px rgba(0,0,0,0.5);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.6);
  --glass: rgba(28, 28, 38, 0.7);
  --glass-border: rgba(255, 255, 255, 0.08);
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.gold { color: var(--gold); }

h1, h2, h3, h4 { font-family: var(--font-heading); font-weight: 700; line-height: 1.2; }

/* ============ BUTTONS ============ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  font-weight: 600; font-size: 0.95rem;
  transition: all var(--transition);
  cursor: pointer; border: 2px solid transparent;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; box-shadow: 0 6px 20px rgba(180,31,31,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 10px 30px rgba(180,31,31,0.5); }
.btn-outline {
  border-color: var(--gold); color: var(--gold); background: transparent;
}
.btn-outline:hover { background: var(--gold); color: #1a1a1a; transform: translateY(-3px); }
.btn-lg { padding: 16px 36px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ============ LOADER ============ */
.loader {
  position: fixed; inset: 0; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999; transition: opacity 0.5s, visibility 0.5s;
}
.loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-heading); font-size: 2.5rem; font-weight: 800;
  color: var(--primary); margin-bottom: 20px; letter-spacing: 2px;
}
.loader-bar { width: 200px; height: 3px; background: var(--border); border-radius: 10px; overflow: hidden; margin: 0 auto; }
.loader-bar span {
  display: block; height: 100%; width: 40%;
  background: linear-gradient(90deg, var(--primary), var(--gold));
  animation: load 1.2s ease-in-out infinite;
}
@keyframes load { 0%{transform:translateX(-100%);} 100%{transform:translateX(350%);} }
.loader-text { margin-top: 16px; color: var(--text-muted); font-size: 0.9rem; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 18px 0; transition: all var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  box-shadow: var(--shadow-sm); padding: 12px 0;
}
.nav-container {
  max-width: 1280px; margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 1.6rem; font-weight: 800;
  color: var(--primary);
}
.logo i { font-size: 1.4rem; }
.nav-list { display: flex; gap: 8px; }
.nav-link {
  padding: 8px 16px; border-radius: 50px; font-weight: 500; font-size: 0.95rem;
  transition: all var(--transition); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: rgba(180,31,31,0.08); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.theme-toggle {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition); font-size: 1rem;
}
.theme-toggle:hover { transform: rotate(20deg); color: var(--gold); }
.nav-cta { padding: 10px 22px; font-size: 0.9rem; }
.hamburger { display: none; width: 40px; height: 40px; flex-direction: column; justify-content: center; gap: 5px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--text); transition: all var(--transition); border-radius: 2px; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px 24px 80px; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1920&q=80') center/cover no-repeat;
  animation: kenburns 20s ease-in-out infinite alternate;
}
@keyframes kenburns { 0%{transform:scale(1);} 100%{transform:scale(1.1);} }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,15,20,0.85), rgba(180,31,31,0.55));
}
.hero-content { position: relative; z-index: 2; max-width: 900px; color: #fff; }
.hero-tag {
  display: inline-block; padding: 8px 20px; border: 1px solid var(--gold); color: var(--gold);
  border-radius: 50px; font-size: 0.85rem; letter-spacing: 2px; margin-bottom: 24px;
  background: rgba(212,175,55,0.08);
}
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4.5rem); font-weight: 800;
  margin-bottom: 20px; line-height: 1.1;
}
.hero-subtitle { font-size: clamp(1rem, 2vw, 1.2rem); opacity: 0.9; margin-bottom: 36px; max-width: 700px; margin-left: auto; margin-right: auto; }
.hero-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 50px; }
.hero-stats { display: flex; gap: 40px; justify-content: center; flex-wrap: wrap; }
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-heading); font-size: 2.2rem; color: var(--gold); }
.stat span { font-size: 0.9rem; opacity: 0.85; }
.scroll-indicator {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  color: #fff; opacity: 0.7; font-size: 0.8rem; letter-spacing: 2px;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100%{transform:translate(-50%,0);} 50%{transform:translate(-50%,10px);} }

/* ============ SECTIONS ============ */
.section { padding: 100px 0; position: relative; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block; padding: 6px 18px; background: rgba(180,31,31,0.08);
  color: var(--primary); border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 1.5px; margin-bottom: 14px; text-transform: uppercase;
}
.section-title { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 14px; }
.section-subtitle { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ============ ABOUT ============ */
.about { background: var(--bg-alt); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; margin-bottom: 80px; }
.about-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.about-image img { width: 100%; height: 500px; object-fit: cover; transition: transform 0.6s; }
.about-image:hover img { transform: scale(1.05); }
.about-badge {
  position: absolute; bottom: 20px; right: 20px;
  background: var(--glass); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  padding: 18px 24px; border-radius: var(--radius);
  display: flex; align-items: center; gap: 14px;
  box-shadow: var(--shadow-md);
}
.about-badge i { font-size: 2rem; color: var(--gold); }
.about-badge strong { display: block; font-family: var(--font-heading); font-size: 1.6rem; color: var(--primary); }
.about-badge span { font-size: 0.85rem; color: var(--text-muted); }
.about-content h3 { font-size: 2rem; margin-bottom: 20px; color: var(--primary); }
.about-content p { margin-bottom: 16px; color: var(--text-muted); }
.about-features { margin-top: 30px; display: grid; gap: 20px; }
.feature { display: flex; gap: 16px; align-items: flex-start; }
.feature i {
  width: 50px; height: 50px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
}
.feature h4 { font-size: 1.1rem; margin-bottom: 4px; }
.feature p { margin: 0; font-size: 0.9rem; }

.chef-section {
  display: grid; grid-template-columns: 400px 1fr; gap: 50px; align-items: center;
  background: var(--surface); padding: 50px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}
.chef-image { border-radius: var(--radius); overflow: hidden; }
.chef-image img { width: 100%; height: 400px; object-fit: cover; }
.chef-content h3 { font-size: 2rem; color: var(--primary); margin-bottom: 8px; }
.chef-title { color: var(--gold); font-weight: 600; margin-bottom: 16px; }
.chef-content > p { color: var(--text-muted); font-style: italic; margin-bottom: 24px; }
.chef-awards { display: flex; flex-wrap: wrap; gap: 16px; }
.chef-awards div {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; background: var(--bg-alt); border-radius: 50px;
  font-size: 0.85rem; font-weight: 500;
}
.chef-awards i { color: var(--gold); }

/* ============ MENU ============ */
.menu-tabs {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 40px;
}
.menu-tab {
  padding: 10px 24px; border-radius: 50px;
  background: var(--surface); border: 1px solid var(--border);
  font-weight: 500; transition: all var(--transition);
}
.menu-tab:hover { color: var(--primary); }
.menu-tab.active { background: var(--primary); color: #fff; border-color: var(--primary); }

.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px;
}
.menu-card {
  background: var(--surface); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); transition: all var(--transition);
  border: 1px solid var(--border);
}
.menu-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.menu-card-img { position: relative; overflow: hidden; height: 220px; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.menu-card:hover .menu-card-img img { transform: scale(1.1); }
.menu-card-tag {
  position: absolute; top: 14px; left: 14px;
  padding: 4px 12px; background: var(--gold); color: #1a1a1a;
  border-radius: 50px; font-size: 0.75rem; font-weight: 600; text-transform: uppercase;
}
.menu-card-body { padding: 22px; }
.menu-card-body h3 { font-size: 1.3rem; margin-bottom: 8px; }
.menu-card-body p { color: var(--text-muted); font-size: 0.9rem; margin-bottom: 16px; min-height: 42px; }
.menu-card-footer { display: flex; justify-content: space-between; align-items: center; }
.menu-price { font-family: var(--font-heading); font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.menu-add {
  padding: 8px 18px; background: var(--primary); color: #fff;
  border-radius: 50px; font-size: 0.85rem; font-weight: 600;
  transition: all var(--transition); display: flex; align-items: center; gap: 6px;
}
.menu-add:hover { background: var(--primary-dark); transform: scale(1.05); }

/* ============ OFFERS ============ */
.offers { background: var(--bg-alt); }
.offers-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.offer-card {
  position: relative; padding: 40px 30px; border-radius: var(--radius-lg);
  color: #fff; overflow: hidden; min-height: 320px;
  display: flex; flex-direction: column; justify-content: flex-end;
  background-size: cover; background-position: center;
  transition: transform var(--transition);
}
.offer-card:hover { transform: translateY(-6px); }
.offer-badge {
  position: absolute; top: 20px; right: 20px;
  background: var(--gold); color: #1a1a1a;
  padding: 6px 16px; border-radius: 50px; font-weight: 700; font-size: 0.85rem;
}
.offer-card h3 { font-size: 1.8rem; margin-bottom: 10px; }
.offer-card p { opacity: 0.95; margin-bottom: 20px; }
.offer-card .btn { align-self: flex-start; }

/* ============ GALLERY ============ */
.gallery-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 16px;
  grid-auto-rows: 240px;
}
.gallery-item {
  position: relative; overflow: hidden; border-radius: var(--radius);
  cursor: pointer; box-shadow: var(--shadow-sm);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.gallery-item::after {
  content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; inset: 0; background: rgba(180,31,31,0.7);
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 2rem; opacity: 0; transition: opacity var(--transition);
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item:nth-child(3n) { grid-row: span 2; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000;
  display: none; align-items: center; justify-content: center; padding: 40px;
}
.lightbox.active { display: flex; }
.lightbox-img { max-width: 90%; max-height: 90vh; border-radius: var(--radius); box-shadow: 0 0 60px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-nav {
  position: absolute; color: #fff; font-size: 1.5rem;
  width: 50px; height: 50px; border-radius: 50%;
  background: rgba(255,255,255,0.1); backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.lightbox-close:hover, .lightbox-nav:hover { background: var(--primary); }
.lightbox-close { top: 30px; right: 30px; }
.lightbox-prev { left: 30px; top: 50%; transform: translateY(-50%); }
.lightbox-next { right: 30px; top: 50%; transform: translateY(-50%); }

/* ============ REVIEWS ============ */
.reviews { background: var(--bg-alt); }
.reviews-slider { position: relative; max-width: 1000px; margin: 0 auto; overflow: hidden; }
.reviews-track { display: flex; transition: transform 0.5s ease; }
.review-card {
  flex: 0 0 100%; padding: 40px;
  background: var(--surface); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); text-align: center;
  border: 1px solid var(--border);
}
.review-card .stars { color: var(--gold); font-size: 1.1rem; margin-bottom: 16px; }
.review-text { font-size: 1.1rem; font-style: italic; color: var(--text-muted); margin-bottom: 24px; line-height: 1.7; }
.review-author { display: flex; align-items: center; justify-content: center; gap: 14px; }
.review-author img { width: 60px; height: 60px; border-radius: 50%; object-fit: cover; border: 3px solid var(--gold); }
.review-author h4 { font-size: 1.1rem; margin-bottom: 2px; }
.review-author span { color: var(--text-muted); font-size: 0.85rem; }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 30px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.slider-btn:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.slider-dots { display: flex; gap: 8px; }
.slider-dot {
  width: 10px; height: 10px; border-radius: 50%;
  background: var(--border); cursor: pointer; transition: all var(--transition);
}
.slider-dot.active { background: var(--primary); width: 28px; border-radius: 10px; }

/* ============ RESERVATION ============ */
.reservation-wrapper {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
  background: var(--surface); padding: 50px; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); border: 1px solid var(--border);
}
.reservation-info h2 { margin-bottom: 20px; }
.reservation-info > p { color: var(--text-muted); margin-bottom: 24px; }
.reservation-perks { margin-bottom: 30px; }
.reservation-perks li { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.reservation-perks i { color: var(--gold); font-size: 1.1rem; }
.reservation-contact p { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; color: var(--text-muted); }
.reservation-contact i { color: var(--primary); }

.reservation-form { display: grid; gap: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 0.9rem; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  padding: 12px 16px; border-radius: 10px;
  border: 1px solid var(--border); background: var(--bg);
  color: var(--text); font-family: inherit; font-size: 0.95rem;
  transition: all var(--transition);
}
.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(180,31,31,0.1);
}
.form-group textarea { resize: vertical; min-height: 80px; }

/* ============ CONTACT ============ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; align-items: stretch; }
.contact-info { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-card {
  background: var(--surface); padding: 28px; border-radius: var(--radius);
  box-shadow: var(--shadow-sm); border: 1px solid var(--border);
  transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.contact-card i {
  width: 50px; height: 50px; border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; margin-bottom: 14px;
}
.contact-card h4 { margin-bottom: 8px; font-size: 1.1rem; }
.contact-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; }
.contact-map iframe {
  width: 100%; height: 100%; min-height: 420px; border: none;
  border-radius: var(--radius-lg); box-shadow: var(--shadow-md);
}

/* ============ FOOTER ============ */
.footer {
  background: linear-gradient(135deg, #1a1a1a, #0a0a0a);
  color: #e0e0e0; padding: 70px 0 20px;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 40px; margin-bottom: 40px; }
.footer-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-heading); font-size: 1.6rem; color: var(--gold);
  margin-bottom: 16px;
}
.footer-col p { color: #a0a0a0; font-size: 0.9rem; margin-bottom: 16px; }
.footer-col h4 { color: #fff; margin-bottom: 18px; font-size: 1.1rem; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a, .footer-col ul li { color: #a0a0a0; font-size: 0.9rem; transition: color var(--transition); display: flex; align-items: center; gap: 8px; }
.footer-col ul li a:hover { color: var(--gold); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: #e0e0e0; transition: all var(--transition);
}
.social-links a:hover { background: var(--gold); color: #1a1a1a; transform: translateY(-3px); }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input {
  flex: 1; padding: 10px 14px; border-radius: 50px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  color: #fff; font-size: 0.9rem;
}
.newsletter-form input:focus { outline: none; border-color: var(--gold); }
.newsletter-form button {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--gold); color: #1a1a1a;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.newsletter-form button:hover { background: var(--gold-light); }
.footer-bottom {
  padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.08);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
  color: #808080; font-size: 0.85rem;
}

/* ============ FLOATING BUTTONS ============ */
.float-btn {
  position: fixed; right: 24px; z-index: 900;
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; box-shadow: var(--shadow-md);
  transition: all var(--transition);
}
.float-btn:hover { transform: scale(1.1); }
.float-whatsapp { bottom: 90px; background: #25D366; }
.float-call { bottom: 160px; background: var(--primary); }
.back-to-top {
  position: fixed; right: 24px; bottom: 24px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-md); opacity: 0; visibility: hidden;
  transition: all var(--transition);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--primary-dark); transform: translateY(-4px); }

/* ============ TOAST ============ */
.toast {
  position: fixed; bottom: 30px; left: 50%; transform: translateX(-50%) translateY(100px);
  background: var(--surface); color: var(--text);
  padding: 14px 28px; border-radius: 50px; box-shadow: var(--shadow-lg);
  border: 1px solid var(--border); z-index: 3000;
  opacity: 0; transition: all 0.4s; font-weight: 500;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }
.toast.success { border-left: 4px solid #22c55e; }
.toast.error { border-left: 4px solid #ef4444; }

/* ============ REVEAL ANIMATIONS ============ */
.reveal { opacity: 0; transform: translateY(40px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .about-grid, .chef-section, .reservation-wrapper, .contact-grid { grid-template-columns: 1fr; }
  .chef-section { padding: 30px; }
  .chef-image img { height: 300px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .hamburger { display: flex; }
  .nav-menu {
    position: fixed; top: 70px; right: -100%; width: 80%; max-width: 320px;
    height: calc(100vh - 70px); background: var(--surface);
    box-shadow: var(--shadow-lg); padding: 30px 20px;
    transition: right var(--transition);
  }
  .nav-menu.open { right: 0; }
  .nav-list { flex-direction: column; gap: 4px; }
  .nav-link { padding: 14px 18px; display: block; border-radius: 10px; }
  .nav-cta { display: none; }
  .hero-stats { gap: 20px; }
  .stat strong { font-size: 1.6rem; }
  .about-grid { gap: 30px; }
  .about-image img { height: 350px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .reservation-wrapper { padding: 30px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 180px; }
  .gallery-item:nth-child(3n) { grid-row: span 1; }
  .review-card { padding: 28px 20px; }
  .float-btn { width: 50px; height: 50px; font-size: 1.3rem; }
  .float-whatsapp { bottom: 80px; right: 16px; }
  .float-call { bottom: 145px; right: 16px; }
  .back-to-top { bottom: 16px; right: 16px; width: 44px; height: 44px; }
}
@media (max-width: 480px) {
  .hero-buttons { flex-direction: column; width: 100%; }
  .hero-buttons .btn { width: 100%; justify-content: center; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}