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

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

:root {
  --bg:        #0d0d0d;
  --bg-card:   #1a1a1a;
  --bg-card2:  #111111;
  --fg:        #f5f0e8;
  --muted:     #8a7a6a;
  --border:    rgba(255,255,255,0.08);
  --primary:   #d4892a;
  --primary-h: #f5a623;
  --red:       #c0392b;
  --radius:    12px;
  --serif:     'Playfair Display', serif;
  --sans:      'Inter', sans-serif;
  --nav-h:     72px;
  --transition: 0.35s ease;
}

body.light {
  --bg:        #f5f0e8;
  --bg-card:   #ede8df;
  --bg-card2:  #e8e2d8;
  --fg:        #0d0d0d;
  --muted:     #6b5e4e;
  --border:    rgba(0,0,0,0.08);
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--fg);
  line-height: 1.6;
  transition: background var(--transition), color var(--transition);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: var(--sans); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Scroll animation base */
.reveal { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-left  { opacity: 0; transform: translateX(-40px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-right { opacity: 0; transform: translateX(40px);  transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal-left.visible, .reveal-right.visible { opacity: 1; transform: none; }

/* Glass panel */
.glass {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}

/* Section headings */
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-family: var(--serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; margin-bottom: 12px; }
.section-header .divider { width: 56px; height: 3px; background: var(--primary); margin: 0 auto 20px; border-radius: 2px; }
.section-header p { color: var(--muted); max-width: 560px; margin: 0 auto; font-size: 1rem; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0 28px; height: 52px; border-radius: 8px;
  font-size: 0.9rem; font-weight: 500; letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, border-color 0.2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--primary); color: #0d0d0d; }
.btn-primary:hover { background: var(--primary-h); box-shadow: 0 8px 24px rgba(212,137,42,0.35); }
.btn-outline { border: 1px solid rgba(255,255,255,0.18); color: var(--fg); }
.btn-outline:hover { border-color: var(--primary); color: var(--primary); }

/* ───────────────────────────── NAVBAR ───────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h);
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(16px);
  box-shadow: 0 1px 0 var(--border);
}
body.light #navbar.scrolled { background: rgba(245,240,232,0.92); }

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); }
.nav-logo { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; }

.nav-links { display: flex; gap: 36px; list-style: none; }
.nav-links a { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); transition: color var(--transition); }
.nav-links a:hover { color: var(--primary); }

.nav-right { display: flex; align-items: center; gap: 16px; }
#theme-toggle { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; color: var(--muted); transition: color var(--transition); font-size: 1.1rem; }
#theme-toggle:hover { color: var(--primary); }

.nav-cta { height: 40px; padding: 0 20px; font-size: 0.82rem; }

.hamburger { display: none; flex-direction: column; gap: 5px; width: 28px; }
.hamburger span { display: block; height: 2px; background: var(--fg); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

#mobile-menu {
  display: none; position: fixed; inset: 0; top: var(--nav-h); z-index: 850;
  background: var(--bg); padding: 32px 24px; flex-direction: column; gap: 24px;
}
#mobile-menu.open { display: flex; }
#mobile-menu a { font-size: 1.2rem; font-weight: 500; color: var(--muted); border-bottom: 1px solid var(--border); padding-bottom: 16px; }
#mobile-menu a:hover { color: var(--primary); }

/* ───────────────────────────── HERO ───────────────────────────── */
#hero {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden; text-align: center; padding: var(--nav-h) 24px 0;
}
.hero-bg {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(212,137,42,0.12) 0%, transparent 60%),
              radial-gradient(ellipse at 20% 70%, rgba(192,57,43,0.08) 0%, transparent 50%);
}
.hero-particles { position: absolute; inset: 0; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--primary); opacity: 0.12;
  animation: float-particle linear infinite;
}
@keyframes float-particle {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 0.12; }
  90%  { opacity: 0.06; }
  100% { transform: translateY(-20px) scale(1); opacity: 0; }
}

.hero-content { position: relative; z-index: 2; max-width: 900px; }
.hero-eyebrow { font-size: 0.75rem; letter-spacing: 0.25em; text-transform: uppercase; color: var(--primary); margin-bottom: 24px; }
.hero-title {
  font-family: var(--serif); font-weight: 700;
  font-size: clamp(3rem, 8vw, 6.5rem); line-height: 1.05; margin-bottom: 28px;
  animation: hero-fade-in 1s ease 0.2s both;
}
@keyframes hero-fade-in { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: none; } }
.hero-sub { color: var(--muted); font-size: 1.1rem; max-width: 520px; margin: 0 auto 48px; animation: hero-fade-in 1s ease 0.5s both; }
.hero-ctas { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; animation: hero-fade-in 1s ease 0.7s both; }

.hero-scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; color: var(--muted); font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 48px; background: linear-gradient(to bottom, var(--muted), transparent); animation: scroll-line 2s ease infinite; }
@keyframes scroll-line { 0%,100% { transform: scaleY(1); opacity: 0.5; } 50% { transform: scaleY(0.5); opacity: 1; } }

/* ───────────────────────────── MENU ───────────────────────────── */
#menu { padding: 100px 0; background: var(--bg); }

.menu-tabs { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 56px; }
.tab-btn {
  padding: 10px 24px; border-radius: 50px; font-size: 0.82rem; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase; border: 1px solid var(--border);
  color: var(--muted); transition: all 0.25s;
}
.tab-btn:hover { border-color: rgba(212,137,42,0.4); color: var(--fg); }
.tab-btn.active { background: var(--primary); color: #0d0d0d; border-color: var(--primary); box-shadow: 0 0 20px rgba(212,137,42,0.3); }

.menu-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px; max-width: 960px; margin: 0 auto;
}
.menu-item { display: none; flex-direction: row; height: 180px; overflow: hidden; }
.menu-item.active { display: flex; }

.menu-img { width: 40%; flex-shrink: 0; position: relative; overflow: hidden; }
.menu-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.menu-item:hover .menu-img img { transform: scale(1.08); }
.chef-badge {
  position: absolute; top: 10px; left: 10px;
  background: var(--primary); color: #0d0d0d;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 50px;
}
.menu-body { flex: 1; padding: 20px; display: flex; flex-direction: column; justify-content: space-between; }
.menu-title { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; margin-bottom: 6px; }
.menu-ingredients { font-size: 0.8rem; color: var(--muted); line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.menu-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 12px; }
.menu-price { font-weight: 700; font-size: 1.05rem; color: var(--primary); }
.menu-rating { display: flex; align-items: center; gap: 4px; font-size: 0.82rem; }
.menu-rating .star { color: var(--primary); }
.add-btn {
  width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center; color: var(--fg); font-size: 1.1rem;
  transition: all 0.2s;
}
.add-btn:hover { background: var(--primary); color: #0d0d0d; border-color: var(--primary); transform: scale(1.1); }

/* ───────────────────────────── ABOUT ───────────────────────────── */
#about { padding: 100px 0; background: var(--bg-card); position: relative; overflow: hidden; }
#about::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(212,137,42,0.08), transparent 60%);
}
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-image-wrap { position: relative; }
.about-image { border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; max-width: 420px; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,13,13,0.85) 0%, rgba(13,13,13,0.1) 50%, transparent 100%);
  border-radius: 16px;
}
.about-img-caption { position: absolute; bottom: 24px; left: 24px; right: 24px; z-index: 2; }
.about-img-caption h3 { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; }
.about-img-caption span { font-size: 0.75rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--primary); margin-top: 4px; display: block; }

.about-quote-float {
  position: absolute; bottom: -16px; right: -24px;
  background: var(--bg-card2); border: 1px solid var(--border);
  border-radius: 12px; padding: 20px 24px; max-width: 260px;
  font-family: var(--serif); font-style: italic; font-size: 1rem; color: var(--fg); z-index: 3;
  animation: float-y 4s ease-in-out infinite;
}
@keyframes float-y { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

.about-eyebrow { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.about-text h2 { font-family: var(--serif); font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 700; margin-bottom: 24px; }
.about-text p { color: var(--muted); line-height: 1.8; margin-bottom: 16px; }

.stats-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; margin-top: 40px; padding-top: 36px; border-top: 1px solid var(--border); }
.stat-num { font-family: var(--serif); font-size: 2.2rem; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-top: 4px; }

/* ───────────────────────────── SPECIALS ───────────────────────────── */
#specials { padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; }
#specials::before {
  content: ''; position: absolute; bottom: 0; left: 0; width: 60%; height: 100%;
  background: radial-gradient(ellipse at bottom left, rgba(212,137,42,0.07), transparent 60%);
}
.countdown-wrap { display: flex; flex-direction: column; align-items: center; margin-bottom: 64px; }
.countdown-label { font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.countdown { display: flex; gap: 16px; align-items: center; }
.time-box { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.time-val {
  width: 68px; height: 68px; display: flex; align-items: center; justify-content: center;
  font-family: var(--serif); font-size: 1.8rem; font-weight: 700; color: var(--primary);
  background: rgba(255,255,255,0.04); border: 1px solid var(--border); border-radius: 10px;
}
.time-unit { font-size: 0.65rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); }
.time-sep { font-family: var(--serif); font-size: 1.8rem; color: var(--primary); padding-bottom: 20px; }

.offers-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; max-width: 1000px; margin: 0 auto; }
.offer-card {
  padding: 36px 32px; border-radius: 16px; position: relative; overflow: hidden;
  border: 1px solid var(--border); transition: transform 0.3s;
  background: linear-gradient(135deg, rgba(255,255,255,0.03) 0%, transparent 100%);
}
.offer-card:hover { transform: translateY(-4px); }
.offer-label { font-size: 0.7rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--primary); font-weight: 600; margin-bottom: 12px; }
.offer-title { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; margin-bottom: 4px; }
.offer-sub { font-size: 0.82rem; color: var(--muted); margin-bottom: 16px; font-weight: 500; }
.offer-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; margin-bottom: 24px; }
.offer-code { display: inline-flex; align-items: center; gap: 8px; border: 1px dashed rgba(212,137,42,0.4); border-radius: 8px; padding: 8px 16px; }
.offer-code-label { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; color: var(--muted); }
.offer-code-val { font-family: monospace; font-weight: 700; color: var(--primary); font-size: 0.95rem; }

/* ───────────────────────────── GALLERY ───────────────────────────── */
#gallery { padding: 100px 0; background: var(--bg-card); }
.masonry { columns: 3; gap: 12px; max-width: 1100px; margin: 0 auto; }
.masonry-item { break-inside: avoid; margin-bottom: 12px; position: relative; overflow: hidden; border-radius: 10px; cursor: pointer; }
.masonry-item img { width: 100%; display: block; transition: transform 0.6s ease; }
.masonry-item:hover img { transform: scale(1.06); }
.masonry-overlay {
  position: absolute; inset: 0;
  background: rgba(13,13,13,0); transition: background 0.3s;
  display: flex; align-items: center; justify-content: center;
}
.masonry-item:hover .masonry-overlay { background: rgba(13,13,13,0.45); }
.masonry-zoom { color: white; font-size: 1.8rem; opacity: 0; transition: opacity 0.3s; }
.masonry-item:hover .masonry-zoom { opacity: 1; }
.masonry-caption {
  position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 12px 12px;
  background: linear-gradient(to top, rgba(13,13,13,0.75), transparent);
  color: white; font-size: 0.82rem; opacity: 0; transition: opacity 0.3s;
}
.masonry-item:hover .masonry-caption { opacity: 1; }

/* Lightbox */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: rgba(13,13,13,0.95); backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox-img { max-width: 90vw; max-height: 80vh; border-radius: 12px; object-fit: contain; }
#lightbox-close {
  position: absolute; top: 24px; right: 28px; font-size: 2rem; color: rgba(255,255,255,0.6);
  cursor: pointer; transition: color 0.2s;
}
#lightbox-close:hover { color: var(--primary); }
#lightbox-caption { position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%); font-family: var(--serif); font-size: 1rem; color: rgba(255,255,255,0.8); }

/* ───────────────────────────── TESTIMONIALS ───────────────────────────── */
#testimonials { padding: 100px 0; background: var(--bg); position: relative; overflow: hidden; }
#testimonials::before {
  content: ''; position: absolute; top: 0; right: 0; width: 50%; height: 100%;
  background: radial-gradient(ellipse at top right, rgba(212,137,42,0.07), transparent 60%);
}
.testimonials-wrap { max-width: 760px; margin: 0 auto; position: relative; }
.quote-mark { font-family: var(--serif); font-size: 9rem; line-height: 1; color: rgba(212,137,42,0.08); position: absolute; top: -32px; left: 16px; pointer-events: none; }
.testimonial-card { padding: 48px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,0.03); }
.stars { display: flex; gap: 3px; margin-bottom: 24px; }
.star { color: var(--primary); font-size: 1rem; }
.testimonial-text { font-family: var(--serif); font-size: clamp(1.1rem, 2.5vw, 1.4rem); line-height: 1.65; font-style: italic; color: var(--fg); margin-bottom: 32px; }
.testimonial-author { display: flex; align-items: center; gap: 16px; }
.testimonial-avatar { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(212,137,42,0.3); }
.testimonial-name { font-weight: 600; font-size: 0.95rem; }
.testimonial-loc { font-size: 0.8rem; color: var(--muted); }

.testimonial-nav { display: flex; align-items: center; justify-content: center; gap: 20px; margin-top: 32px; }
.t-prev, .t-next {
  width: 40px; height: 40px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; color: var(--muted);
  transition: all 0.2s; font-size: 1rem;
}
.t-prev:hover, .t-next:hover { border-color: var(--primary); color: var(--primary); }
.t-dots { display: flex; gap: 8px; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.15); border: none; cursor: pointer; transition: all 0.3s; }
.t-dot.active { width: 24px; border-radius: 4px; background: var(--primary); }

/* ───────────────────────────── RESERVATION ───────────────────────────── */
#reservation { padding: 100px 0; background: var(--bg-card); position: relative; overflow: hidden; }
#reservation::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,137,42,0.06), transparent 60%);
}
.reservation-form { max-width: 680px; margin: 0 auto; padding: 48px; border: 1px solid var(--border); border-radius: 20px; background: rgba(255,255,255,0.03); position: relative; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 20px; }
.form-group label { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
.form-group input, .form-group textarea {
  background: rgba(255,255,255,0.04); border: 1px solid var(--border);
  border-radius: 8px; padding: 12px 16px; color: var(--fg); font-family: var(--sans);
  font-size: 0.9rem; outline: none; transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--primary); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--muted); }
.form-group textarea { resize: none; height: 100px; }
.form-error { color: #e55; font-size: 0.75rem; margin-top: 4px; display: none; }
.form-error.show { display: block; }

.guest-counter { display: flex; align-items: center; gap: 16px; }
.counter-btn {
  width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem; color: var(--muted);
  transition: all 0.2s;
}
.counter-btn:hover { border-color: var(--primary); color: var(--primary); }
#guest-count { font-family: var(--serif); font-size: 1.4rem; font-weight: 700; min-width: 28px; text-align: center; }
.guest-label { font-size: 0.82rem; color: var(--muted); }

.time-slots { display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px; margin-top: 8px; }
.slot-btn {
  padding: 8px 4px; border: 1px solid var(--border); border-radius: 8px; font-size: 0.75rem; color: var(--muted);
  transition: all 0.2s; text-align: center;
}
.slot-btn:hover { border-color: rgba(212,137,42,0.4); color: var(--fg); }
.slot-btn.active { background: var(--primary); color: #0d0d0d; border-color: var(--primary); font-weight: 600; }

.form-submit { width: 100%; height: 52px; font-size: 0.9rem; font-weight: 600; letter-spacing: 0.05em; margin-top: 8px; border-radius: 10px; }

/* Success overlay */
#reservation-success {
  display: none; position: absolute; inset: 0; background: rgba(13,13,13,0.95);
  border-radius: 20px; flex-direction: column; align-items: center; justify-content: center; gap: 16px; text-align: center; padding: 40px;
}
#reservation-success.show { display: flex; }
.success-icon { font-size: 3.5rem; color: var(--primary); }
#reservation-success h3 { font-family: var(--serif); font-size: 1.8rem; }
#reservation-success p { color: var(--muted); }

/* ───────────────────────────── CONTACT ───────────────────────────── */
#contact { padding: 100px 0; background: var(--bg); }
.location-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 24px; margin-bottom: 64px; }
.location-card { padding: 32px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,0.02); transition: border-color 0.3s; }
.location-card:hover { border-color: rgba(212,137,42,0.3); }
.location-map { height: 100px; border-radius: 10px; background: linear-gradient(135deg, rgba(212,137,42,0.08), rgba(192,57,43,0.06)); margin-bottom: 20px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.location-name { font-family: var(--serif); font-size: 1.15rem; font-weight: 700; margin-bottom: 16px; }
.location-detail { display: flex; gap: 10px; align-items: flex-start; font-size: 0.85rem; color: var(--muted); margin-bottom: 10px; }
.location-icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; }

.contact-bottom { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; max-width: 900px; margin: 0 auto; }
.contact-form-wrap { padding: 40px; border: 1px solid var(--border); border-radius: 16px; background: rgba(255,255,255,0.02); }
.contact-form-wrap h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 24px; }
.contact-info h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 700; margin-bottom: 16px; }
.contact-info p { color: var(--muted); line-height: 1.8; margin-bottom: 32px; }
.social-links { display: flex; gap: 16px; }
.social-link {
  width: 44px; height: 44px; border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
  transition: all 0.2s; color: var(--muted);
}
.social-link:hover { border-color: var(--primary); color: var(--primary); background: rgba(212,137,42,0.08); }

/* ───────────────────────────── FOOTER ───────────────────────────── */
footer { background: var(--bg-card); border-top: 1px solid var(--border); padding: 80px 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
.footer-brand h2 { font-family: var(--serif); font-size: 1.8rem; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
.footer-brand p { color: var(--muted); font-size: 0.88rem; line-height: 1.8; max-width: 260px; margin-bottom: 28px; }
.newsletter-row { display: flex; gap: 8px; }
.newsletter-input { flex: 1; background: rgba(255,255,255,0.05); border: 1px solid var(--border); border-radius: 8px; padding: 10px 14px; color: var(--fg); font-size: 0.85rem; outline: none; transition: border-color 0.2s; }
.newsletter-input:focus { border-color: var(--primary); }
.newsletter-input::placeholder { color: var(--muted); }
.newsletter-btn { padding: 10px 18px; background: var(--primary); color: #0d0d0d; border-radius: 8px; font-size: 0.8rem; font-weight: 600; transition: background 0.2s; }
.newsletter-btn:hover { background: var(--primary-h); }

.footer-col h4 { font-size: 0.7rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); font-weight: 600; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
.footer-col ul a { font-size: 0.88rem; color: var(--muted); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--primary); }

.footer-bottom { display: flex; align-items: center; justify-content: space-between; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 0.78rem; color: rgba(138,122,106,0.5); }
.delivery-partners { display: flex; gap: 12px; font-size: 0.72rem; color: rgba(138,122,106,0.35); letter-spacing: 0.08em; text-transform: uppercase; }
.delivery-partners span { opacity: 0.6; }

/* ───────────────────────────── CONTACT PAGE ───────────────────────────── */
.page-hero { padding: 160px 0 80px; text-align: center; }
.page-hero h1 { font-family: var(--serif); font-size: clamp(2.5rem, 5vw, 4rem); font-weight: 700; margin-bottom: 16px; }
.page-hero p { color: var(--muted); font-size: 1rem; max-width: 480px; margin: 0 auto; }

/* ───────────────────────────── RESPONSIVE ───────────────────────────── */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image { max-width: 100%; }
  .about-quote-float { display: none; }
  .contact-bottom { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
  .time-slots { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 640px) {
  .nav-links, .nav-right .btn { display: none; }
  .hamburger { display: flex; }
  .masonry { columns: 1; }
  .menu-grid { grid-template-columns: 1fr; }
  .menu-item { height: auto; flex-direction: column; }
  .menu-img { width: 100%; height: 180px; }
  .offers-grid { grid-template-columns: 1fr; }
  .location-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .testimonial-card { padding: 28px; }
  .reservation-form { padding: 28px 20px; }
  .time-slots { grid-template-columns: repeat(3, 1fr); }
}
