/* ==========================================================================
   THE ROYAL SPICE — Stylesheet
   ========================================================================== */

/* ---------- CSS Custom Properties ---------- */
:root {
  --primary: #c9a84c;
  --primary-dark: #a87c2a;
  --primary-light: #e8c97a;
  --bg: #0a0a0a;
  --bg-2: #111111;
  --bg-3: #1a1a1a;
  --surface: #161616;
  --surface-2: #222222;
  --text: #f0ece0;
  --text-muted: #9a9380;
  --text-light: #d4c9a8;
  --border: rgba(201, 168, 76, 0.2);
  --border-hover: rgba(201, 168, 76, 0.5);
  --shadow: 0 4px 32px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 24px rgba(201, 168, 76, 0.25);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Poppins', system-ui, sans-serif;
  --nav-h: 80px;
  --container: 1200px;
}

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

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

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  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; }

/* ---------- Container ---------- */
.container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* ---------- Typography helpers ---------- */
.gold-text { color: var(--primary); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text);
  margin-bottom: 1rem;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1rem;
  max-width: 560px;
}

.section-header.center { text-align: center; }
.section-header.center .section-desc { margin-inline: auto; }

/* ---------- Buttons ---------- */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: var(--transition);
  overflow: hidden;
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg);
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  box-shadow: 0 6px 24px rgba(201, 168, 76, 0.5);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  background: transparent;
}

.btn-outline:hover {
  background: var(--primary);
  color: var(--bg);
  transform: translateY(-2px);
}

.btn-block { width: 100%; margin-top: 0.5rem; }

/* Ripple */
.ripple {
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transform: scale(0);
  animation: rippleAnim 0.65s linear;
  pointer-events: none;
}
@keyframes rippleAnim { to { transform: scale(2.5); opacity: 0; } }

/* ---------- Loader ---------- */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--bg);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.loader-content { text-align: center; }

.loader-crest {
  font-size: 2.5rem;
  color: var(--primary);
  display: block;
  animation: pulse 1.4s ease-in-out infinite;
}

.loader-title {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text);
  margin: 0.75rem 0 1.25rem;
  letter-spacing: 0.08em;
}

.loader-bar {
  width: 180px;
  height: 3px;
  background: var(--surface-2);
  border-radius: 2px;
  margin-inline: auto;
  overflow: hidden;
}

.loader-bar span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  animation: loadBar 2.5s ease forwards;
}

@keyframes loadBar { from { width: 0 } to { width: 100% } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

/* ---------- Cursor Glow ---------- */
.cursor-glow {
  position: fixed;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  transition: transform 0.08s linear;
  will-change: transform;
}

/* ---------- Particles ---------- */
.particles {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.particle {
  position: absolute;
  bottom: -10px;
  border-radius: 50%;
  background: var(--primary);
  opacity: 0.4;
  animation: floatUp linear infinite;
}

@keyframes floatUp {
  0% { transform: translateY(0) translateX(0); opacity: 0; }
  10% { opacity: 0.4; }
  90% { opacity: 0.2; }
  100% { transform: translateY(-100vh) translateX(var(--drift, 0px)); opacity: 0; }
}

/* ---------- Scroll Progress ---------- */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
  z-index: 1001;
  transition: width 0.1s linear;
}

/* ---------- Scroll-to-top button ---------- */
.scroll-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--bg);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 200;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: var(--transition);
  box-shadow: var(--shadow-gold);
}

.scroll-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--primary-light); transform: translateY(-3px); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  height: var(--nav-h);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

.navbar.scrolled {
  background: rgba(10, 10, 10, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.6);
}

.nav-container {
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  flex-shrink: 0;
}

.logo-icon { color: var(--primary); font-size: 1rem; }
.logo-text em { color: var(--primary); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  margin-left: auto;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--text-muted);
  padding: 0.4rem 0.65rem;
  border-radius: 6px;
  transition: var(--transition);
}

.nav-link:hover, .nav-link.active {
  color: var(--primary);
  background: rgba(201, 168, 76, 0.08);
}

.nav-cta { flex-shrink: 0; font-size: 0.8rem; padding: 0.55rem 1.25rem; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.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;
  overflow: hidden;
}

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

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom { from { transform: scale(1); } to { transform: scale(1.08); } }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2) 0%,
    rgba(0,0,0,0.55) 50%,
    rgba(0,0,0,0.8) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 1rem;
}

.hero-sub {
  font-size: clamp(0.95rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.8);
  margin-bottom: 2rem;
}

.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero-floating-food {
  position: absolute;
  right: -60px;
  bottom: 10%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  overflow: hidden;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
  filter: blur(1px);
}

.hero-floating-food img { width: 100%; height: 100%; object-fit: cover; }

/* Fade-in-up hero animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up[data-delay="100"] { animation-delay: 0.1s; }
.fade-in-up[data-delay="200"] { animation-delay: 0.2s; }
.fade-in-up[data-delay="300"] { animation-delay: 0.3s; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.mouse {
  display: block;
  width: 26px;
  height: 40px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 13px;
  position: relative;
}

.wheel {
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: var(--primary);
  border-radius: 2px;
  animation: scrollWheel 1.5s ease-in-out infinite;
}

@keyframes scrollWheel {
  0% { opacity: 1; top: 6px; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- Scroll Reveal Base ---------- */
.reveal-up, .reveal-left, .reveal-right {
  opacity: 0;
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-up { transform: translateY(40px); }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }

.reveal-up.in-view, .reveal-left.in-view, .reveal-right.in-view {
  opacity: 1;
  transform: none;
}

/* ---------- Divider ---------- */
.divider {
  text-align: center;
  padding: 2rem 0;
  color: var(--primary);
  font-size: 1.4rem;
  opacity: 0.4;
}

/* ---------- About ---------- */
.about { padding: 100px 0; background: var(--bg-2); }

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

.about-image { position: relative; }

.about-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-image-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--bg);
  padding: 1.25rem;
  border-radius: var(--radius);
  text-align: center;
  min-width: 110px;
  box-shadow: var(--shadow-gold);
}

.badge-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  opacity: 0.85;
}

.about-text {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.about-checklist {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.about-checklist li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-light);
}

.check-icon { color: var(--primary); font-weight: 700; }

/* ---------- Features ---------- */
.features { padding: 80px 0; background: var(--bg); }

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
  will-change: transform;
}

.feature-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-gold);
}

.feature-icon {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  display: block;
}

.feature-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.5rem;
}

.feature-card p { font-size: 0.85rem; color: var(--text-muted); }

/* ---------- Menu ---------- */
.menu { padding: 100px 0; background: var(--bg-2); }

.menu-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  margin: 2.5rem 0;
}

.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  border: 1px solid var(--border);
  color: var(--text-muted);
  transition: var(--transition);
  background: transparent;
}

.filter-btn.active, .filter-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: var(--bg);
}

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

.menu-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  will-change: transform;
}

.menu-card:hover { border-color: var(--border-hover); box-shadow: var(--shadow-gold); }

.menu-card.hide { display: none; }

.menu-card-img {
  height: 200px;
  overflow: hidden;
}

.menu-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

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

.menu-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.menu-card-top h3 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
}

.menu-price {
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  white-space: nowrap;
}

.menu-card-body > p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.menu-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.stars { color: var(--primary); font-size: 0.8rem; letter-spacing: 0.05em; }

.btn-order {
  padding: 0.4rem 1rem;
  border-radius: 50px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.78rem;
  font-weight: 600;
  transition: var(--transition);
}

.btn-order:hover {
  background: var(--primary);
  color: var(--bg);
}

/* ---------- Special Menu ---------- */
.special-menu { padding: 100px 0; background: var(--bg); }

.special-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  margin-top: 2.5rem;
}

.special-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  will-change: transform;
  transition: var(--transition);
}

.special-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.special-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.1) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  transition: var(--transition);
}

.special-overlay h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.25rem;
}

.special-overlay p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.75rem;
}

.special-price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
}

/* ---------- Stats ---------- */
.stats {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

.stats-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--bg-3) 0%, var(--bg-2) 100%);
  z-index: 0;
}

.stats .container { position: relative; z-index: 1; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  padding: 2rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  transition: var(--transition);
}

.stat-item:hover { border-color: var(--border-hover); background: rgba(201,168,76,0.04); }

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  font-weight: 600;
}

/* ---------- Gallery ---------- */
.gallery { padding: 100px 0; background: var(--bg-2); }

.masonry-grid {
  columns: 3;
  column-gap: 1rem;
  margin-top: 2.5rem;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.masonry-item:hover img { transform: scale(1.05); }

/* ---------- Chef ---------- */
.chef { padding: 100px 0; background: var(--bg); }

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

.chef-image { position: relative; }

.chef-image img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  position: relative;
  z-index: 1;
}

.chef-frame {
  position: absolute;
  inset: 16px -16px -16px 16px;
  border: 2px solid var(--primary);
  border-radius: var(--radius-lg);
  opacity: 0.35;
  z-index: 0;
}

.chef-exp {
  font-size: 0.85rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.chef-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}

.chef-signature {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.8rem;
  color: var(--primary);
  margin-top: 1rem;
}

/* ---------- Testimonials ---------- */
.testimonials { padding: 100px 0; background: var(--bg-2); }

.testimonial-slider {
  margin-top: 2.5rem;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.testimonial-card {
  flex: 0 0 100%;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  max-width: 680px;
  margin-inline: auto;
}

.testimonial-card .stars {
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-text {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

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

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary);
}

.author-name {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
}

.author-role {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.testi-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  background: var(--surface);
}

.testi-btn:hover { border-color: var(--primary); color: var(--primary); }

.testi-dots { display: flex; gap: 0.5rem; }

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--surface-2);
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.dot.active { background: var(--primary); transform: scale(1.3); }

/* ---------- Reservation ---------- */
.reservation {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}

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

.reservation-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.15;
}

.reservation-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.6);
}

.reservation .container { position: relative; z-index: 1; }

.reservation-box {
  background: rgba(22, 22, 22, 0.95);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 3rem;
  max-width: 780px;
  margin-inline: auto;
  backdrop-filter: blur(8px);
}

.reservation-form { margin-top: 2rem; }

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

.form-group input.invalid,
.form-group select.invalid {
  border-color: #e05252;
}

.form-error {
  font-size: 0.75rem;
  color: #e05252;
  min-height: 1rem;
}

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

.form-group:last-of-type { margin-bottom: 1.25rem; }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem 1.25rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  border-radius: 8px;
  color: var(--primary);
  font-size: 0.9rem;
  text-align: center;
}

.form-success.show { display: block; }

/* colour select options */
.form-group select option { background: var(--bg-3); color: var(--text); }

/* ---------- Contact ---------- */
.contact { padding: 100px 0; background: var(--bg-3); }

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

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 2rem;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon {
  font-size: 1.3rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-list strong {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}

.contact-list p { font-size: 0.95rem; color: var(--text-light); }
.contact-list a { color: var(--primary); transition: var(--transition); }
.contact-list a:hover { color: var(--primary-light); }

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  height: 380px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(0.9) hue-rotate(180deg) saturate(0.6);
}

/* ---------- Footer ---------- */
.footer { background: var(--bg); border-top: 1px solid var(--border); padding-top: 70px; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 60px;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 1rem;
  max-width: 280px;
}

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

.social-icons a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--text-muted);
  transition: var(--transition);
  letter-spacing: 0;
}

.social-icons a:hover { border-color: var(--primary); color: var(--primary); }

.footer h4 {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 1.25rem;
}

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

.footer-links a {
  font-size: 0.85rem;
  color: var(--text-muted);
  transition: var(--transition);
}

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

.footer-hours li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-contact p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 0.4rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 24px;
  text-align: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  max-width: var(--container);
  margin-inline: auto;
}

/* ---------- WhatsApp Float ---------- */
.whatsapp-float {
  position: fixed;
  bottom: 32px;
  right: 24px;
  width: 52px;
  height: 52px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  z-index: 200;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5); }

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

/* --- Tablet (≤ 1024px) --- */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .special-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .about-grid, .chef-grid, .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-image, .chef-image { max-width: 500px; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .nav-links { gap: 0; }
  .nav-link { padding: 0.4rem 0.5rem; font-size: 0.75rem; }
}

/* --- Mobile (≤ 768px) --- */
@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(10,10,10,0.98);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 490;
  }

  .nav-links.open { transform: translateX(0); }

  .nav-link {
    font-size: 1.15rem;
    padding: 0.75rem 1.5rem;
    color: var(--text);
  }

  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-floating-food { display: none; }

  .about-grid, .chef-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 100%; }

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

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

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

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

  .masonry-grid { columns: 2; }

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

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

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

  .reservation-box { padding: 2rem 1.25rem; }
  .form-row { grid-template-columns: 1fr; }

  .footer-bottom { text-align: center; }
}

/* --- Small mobile (≤ 480px) --- */
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .special-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .masonry-grid { columns: 1; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .testimonial-card { padding: 1.5rem; }
  .about-image-badge { right: 0; bottom: -10px; }
}
