/* ============================================================
   Biryani House — design system
   Colors / radius / shadows match the Figma-style spec
   ============================================================ */

:root {
  --brand: #ff8a00;
  --brand-dark: #e87a00;
  --brand-light: #ffb547;
  --brand-soft: #fff0da;
  --cream: #fff9f2;
  --ink: #121212;
  --ash: #666666;
  --card: #ffffff;
  --shadow-soft: 0 20px 60px rgba(0, 0, 0, 0.08);
  --shadow-card: 0 30px 90px -24px rgba(255, 138, 0, 0.35);
  --shadow-glow: 0 12px 44px -8px rgba(255, 138, 0, 0.5);
  --r-card: 24px;
  --r-btn: 14px;
  --nav-h: 92px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", ui-sans-serif, system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4 { font-family: "Poppins", ui-sans-serif, system-ui, sans-serif; }
h2 em { font-style: normal; color: var(--brand); }
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
::selection { background: rgba(255, 138, 0, 0.9); color: #fff; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container.narrow { max-width: 820px; }
.section { padding: 96px 0; }
.bg-white { background: #fff; }
section { scroll-margin-top: calc(var(--nav-h) + 16px); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: "Poppins", sans-serif; font-size: 15px; font-weight: 600;
  border-radius: var(--r-btn);
  transition: transform 0.25s, background 0.25s, color 0.25s, border-color 0.25s, box-shadow 0.25s;
}
.btn-primary { background: var(--brand); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { background: var(--brand-dark); transform: translateY(-2px); }
.btn-outline {
  background: rgba(255, 255, 255, 0.6); color: var(--ink);
  border: 2px solid rgba(18, 18, 18, 0.1);
}
.btn-outline:hover { border-color: var(--brand); color: var(--brand); transform: translateY(-2px); }
.btn-ghost { border: 1px solid rgba(18, 18, 18, 0.1); padding: 10px 16px; color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: #fff; }
.btn-nav { padding: 10px 20px; }
.btn-lg { padding: 16px 28px; }
.btn-block { width: 100%; }
.btn-arrow svg { width: 18px; height: 18px; transition: transform 0.3s; }
.btn-primary:hover .btn-arrow svg { transform: translateX(4px); }
.btn-outline:hover .btn-arrow svg { transform: rotate(-12deg); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: sticky; top: 0; z-index: 50; height: var(--nav-h);
  background: rgba(255, 249, 242, 0.6);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid transparent;
  transition: background 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.navbar.scrolled {
  background: rgba(255, 249, 242, 0.85);
  backdrop-filter: blur(20px);
  border-bottom-color: rgba(18, 18, 18, 0.05);
  box-shadow: var(--shadow-soft);
}
.navbar-inner {
  height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.logo { display: flex; align-items: center; gap: 12px; }
.logo-badge {
  width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand));
  box-shadow: var(--shadow-glow);
  transition: transform 0.3s;
}
.logo:hover .logo-badge { transform: rotate(6deg) scale(1.05); }
.logo-badge svg { width: 20px; height: 20px; }
.logo-text { font-family: "Poppins", sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -0.02em; color: var(--ink); }
.logo-text em { font-style: normal; color: var(--brand); }

.nav-links { display: flex; gap: 36px; }
.nav-links a {
  position: relative; font-family: "Poppins", sans-serif; font-size: 15px; font-weight: 600;
  color: var(--ash); transition: color 0.2s;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -6px; height: 3px; width: 0;
  border-radius: 3px; background: var(--brand); transition: width 0.3s;
}
.nav-links a:hover::after { width: 100%; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.icon-btn {
  position: relative; width: 44px; height: 44px; display: grid; place-items: center;
  border-radius: 14px; color: var(--ink); transition: background 0.2s;
}
.icon-btn:hover { background: var(--brand-soft); }
.icon-btn svg { width: 20px; height: 20px; }
.cart-badge {
  position: absolute; top: 6px; right: 6px; width: 18px; height: 18px;
  display: grid; place-items: center; border-radius: 50%;
  background: var(--brand); color: #fff; font-size: 10px; font-weight: 700;
}
.menu-toggle { display: none; }

.mobile-menu {
  display: none; overflow: hidden; border-top: 1px solid rgba(18, 18, 18, 0.05);
  background: rgba(255, 249, 242, 0.95); backdrop-filter: blur(20px);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block; padding: 12px 24px; border-radius: 12px;
  font-family: "Poppins", sans-serif; font-size: 16px; font-weight: 600;
}
.mobile-menu a:hover { background: var(--brand-soft); }
.mobile-menu .btn-primary { margin: 12px 24px; text-align: center; }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; overflow: hidden; }
.blob { position: absolute; border-radius: 50%; filter: blur(60px); pointer-events: none; }
.blob-1 { width: 480px; height: 480px; left: -160px; top: 128px; background: var(--brand-soft); }
.blob-2 { width: 420px; height: 420px; right: -128px; bottom: 96px; background: rgba(255, 240, 218, 0.7); }
.hero-inner { position: relative; padding: 40px 0 80px; }

.hero-grid { display: grid; align-items: center; gap: 64px; }
@media (min-width: 1024px) { .hero-grid { grid-template-columns: 45fr 55fr; gap: 32px; } }

/* reveal on load */
.reveal { opacity: 0; transform: translateY(28px); animation: reveal 0.7s forwards cubic-bezier(0.22, 1, 0.36, 1); }
.d1 { animation-delay: 0.15s; } .d2 { animation-delay: 0.27s; } .d3 { animation-delay: 0.39s; }
.d4 { animation-delay: 0.51s; } .d5 { animation-delay: 0.63s; }
@keyframes reveal { to { opacity: 1; transform: translateY(0); } }

.welcome-pill {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 8px 16px; border-radius: 999px;
  border: 1px solid rgba(255, 138, 0, 0.2); background: rgba(255, 240, 218, 0.7);
}
.pulse-dot { position: relative; width: 10px; height: 10px; }
.pulse-dot::before {
  content: ""; position: absolute; inset: 0; border-radius: 50%;
  background: var(--brand); animation: ping 1.6s cubic-bezier(0, 0, 0.2, 1) infinite;
}
.pulse-dot::after { content: ""; position: absolute; inset: 0; border-radius: 50%; background: var(--brand); }
@keyframes ping { 75%, 100% { transform: scale(2.2); opacity: 0; } }
.welcome-pill span { font-family: "Poppins", sans-serif; font-size: 13px; font-weight: 600; }
.welcome-pill b { color: var(--brand); }

.hero-title { margin-top: 24px; font-size: 40px; font-weight: 800; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink); }
@media (min-width: 768px) { .hero-title { font-size: 48px; } }
.oval-word {
  display: inline-flex; align-items: center; margin-top: 12px;
  border: 3px solid var(--brand); color: var(--brand);
  border-radius: 999px; padding: 6px 24px;
}

.hero-sub { margin-top: 24px; max-width: 440px; font-size: 17px; line-height: 1.6; color: var(--ash); }
.hero-ctas { margin-top: 36px; display: flex; flex-wrap: wrap; gap: 16px; }
.hours {
  margin-top: 40px; display: inline-flex; align-items: center; gap: 14px;
  background: var(--card); border-radius: var(--r-card); padding: 14px 20px; box-shadow: var(--shadow-soft);
}
.hours-icon, .info-icon {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: 50%; background: var(--brand-soft);
}
.hours-icon svg, .info-icon svg { width: 20px; height: 20px; color: var(--brand); }
.hours b { display: block; font-family: "Poppins", sans-serif; font-size: 13px; }
.hours b .open { color: #059669; }
.hours small { display: block; font-size: 13px; font-weight: 500; color: var(--ash); }

/* hero right — bowl */
.visual { position: relative; width: 100%; max-width: 560px; aspect-ratio: 1 / 1; margin: 0 auto; user-select: none; }
@media (min-width: 1024px) { .visual { max-width: 620px; } }
.dashed-ring { position: absolute; inset: -32px; }
@media (min-width: 768px) { .dashed-ring { inset: -56px; } }
.dashed-ring svg { width: 100%; height: 100%; animation: spin 60s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

.bowl { position: relative; width: 100%; height: 100%; }
.bowl-inner {
  position: relative; width: 100%; height: 100%; overflow: hidden; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-soft);
  animation: bowlIn 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}
@keyframes bowlIn { from { opacity: 0; transform: scale(0.82); } to { opacity: 1; transform: scale(1); } }
.bowl-inner img { width: 100%; height: 100%; object-fit: cover; }
.bowl-ring { position: absolute; inset: 0; border-radius: 50%; box-shadow: inset 0 0 0 10px #fff, inset 0 0 0 13px rgba(255, 249, 242, 0.9); }
.bowl-shade { position: absolute; inset: 0; border-radius: 50%; background: linear-gradient(to top, rgba(0, 0, 0, 0.12), transparent 45%, rgba(255, 255, 255, 0.12)); }

.steam { position: absolute; top: 24px; left: 50%; transform: translateX(-50%); display: flex; gap: 20px; z-index: 20; }
.steam span {
  display: block; border-radius: 50%; background: #fff; filter: blur(10px);
  animation: steam 4.2s ease-in-out infinite;
}
.steam .s2 { animation-delay: 1.4s; } .steam .s3 { animation-delay: 2.8s; }
@keyframes steam {
  0% { transform: translateY(-6px) scale(0.75); opacity: 0; }
  30% { opacity: 0.55; }
  100% { transform: translateY(-110px) translateX(16px) scale(1.5); opacity: 0; }
}

.float-chip { position: absolute; z-index: 30; opacity: 0; transform: scale(0.6); animation: pop 0.5s forwards; }
@keyframes pop { to { opacity: 1; transform: scale(1); } }
.float-chip .bubble {
  display: grid; place-items: center; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-soft);
  animation: floatY 5.5s ease-in-out infinite;
}
@keyframes floatY { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.badge-seller { position: absolute; top: -8px; right: 8px; z-index: 30; opacity: 0; animation: pop 0.6s 0.55s forwards; }
.badge-seller .bubble {
  display: flex; align-items: center; gap: 8px;
  background: #fff; border-radius: 999px; padding: 10px 20px; box-shadow: var(--shadow-soft);
  animation: floatY 4.5s ease-in-out infinite;
}
.badge-seller .heart { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #fef2f2; }
.badge-seller .heart svg { width: 14px; height: 14px; fill: #ef4444; color: #ef4444; }
.badge-seller b { font-family: "Poppins", sans-serif; font-size: 13px; }

.float-card { position: absolute; bottom: -40px; left: 0; z-index: 30; display: none; opacity: 0; animation: pop 0.7s 0.7s forwards; }
@media (min-width: 768px) { .float-card { display: block; } }
.float-card .bubble {
  display: flex; align-items: center; gap: 16px; width: 320px;
  background: #fff; border-radius: var(--r-card); padding: 12px; box-shadow: var(--shadow-soft);
  animation: floatY 5.5s ease-in-out infinite;
}
.float-card .thumb { position: relative; width: 96px; height: 96px; flex-shrink: 0; border-radius: 18px; overflow: hidden; }
.float-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.float-card h3 { font-size: 17px; font-weight: 700; display: flex; justify-content: space-between; gap: 8px; }
.float-card .rate { display: inline-flex; align-items: center; gap: 4px; background: var(--brand-soft); border-radius: 999px; padding: 2px 8px; font-size: 12px; font-weight: 700; color: var(--brand); flex-shrink: 0; }
.float-card .rate svg { width: 12px; height: 12px; fill: var(--brand); }
.float-card p { margin-top: 4px; font-size: 12px; color: var(--ash); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.float-card .meta { margin-top: 6px; display: flex; justify-content: space-between; align-items: center; }
.float-card .price { font-family: "Poppins", sans-serif; font-size: 18px; font-weight: 800; }
.float-card .eta { font-size: 11px; font-weight: 600; color: var(--ash); }

/* ============================================================
   POPULAR BIRYANIS
   ============================================================ */
.popular { margin-top: 96px; }
.popular-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 24px; }
.popular-label, .section-label {
  font-family: "Poppins", sans-serif; font-size: 13px; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--brand);
}
.popular h2 { margin-top: 8px; font-size: 32px; font-weight: 800; }
@media (min-width: 768px) { .popular h2 { font-size: 40px; } }
.slider-nav { display: none; gap: 12px; }
@media (min-width: 768px) { .slider-nav { display: flex; } }
.slider-nav button {
  width: 48px; height: 48px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid rgba(18, 18, 18, 0.1); background: #fff; color: var(--ink);
  transition: all 0.3s;
}
.slider-nav button:hover { background: var(--brand); border-color: var(--brand); color: #fff; transform: translateY(-2px); }
.slider-nav button.next { background: var(--brand); color: #fff; box-shadow: var(--shadow-glow); }
.slider-nav button svg { width: 20px; height: 20px; }

.track {
  display: flex; gap: 24px; margin: 36px -24px 0; padding: 0 24px 24px;
  overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth;
  scrollbar-width: none;
}
.track::-webkit-scrollbar { display: none; }

.card {
  width: 280px; flex-shrink: 0; scroll-snap-align: start;
  display: flex; flex-direction: column; overflow: hidden;
  background: #fff; border-radius: var(--r-card); padding: 12px; box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.card-img { position: relative; height: 168px; border-radius: 20px; overflow: hidden; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.card:hover .card-img img { transform: scale(1.1); }
.card-img::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(0, 0, 0, 0.15), transparent); }
.card-badge { position: absolute; top: 12px; left: 12px; z-index: 2; background: rgba(255, 255, 255, 0.95); border-radius: 999px; padding: 6px 12px; font-family: "Poppins", sans-serif; font-size: 11px; font-weight: 700; color: var(--brand); }
.card-body { flex: 1; display: flex; flex-direction: column; padding: 16px 10px 10px; }
.card-title { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; }
.card-title h3 { font-size: 18px; font-weight: 700; line-height: 1.2; }
.card-rate { display: inline-flex; align-items: center; gap: 4px; background: #ecfdf5; border-radius: 999px; padding: 4px 8px; font-size: 12px; font-weight: 700; color: #047857; flex-shrink: 0; }
.card-rate svg { width: 12px; height: 12px; fill: #059669; }
.card-desc { margin-top: 6px; font-size: 13px; line-height: 1.5; color: var(--ash); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.card-foot { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 16px; }
.card-foot small { display: block; font-size: 11px; font-weight: 500; color: var(--ash); }
.card-foot .price { font-family: "Poppins", sans-serif; font-size: 20px; font-weight: 800; }
.add-btn {
  width: 44px; height: 44px; display: grid; place-items: center; border-radius: var(--r-btn);
  background: var(--brand); color: #fff; box-shadow: var(--shadow-glow);
  transition: transform 0.3s, background 0.3s;
}
.add-btn:hover { background: var(--brand-dark); transform: rotate(90deg) scale(1.05); }
.add-btn:active { transform: scale(0.9); }
.add-btn svg { width: 20px; height: 20px; }

/* ============================================================
   SECTION HEADS & SCROLL REVEAL
   ============================================================ */
.section-head { max-width: 620px; margin: 0 auto 56px; text-align: center; }
.section-head h2 { margin-top: 10px; font-size: 34px; font-weight: 800; line-height: 1.15; }
@media (min-width: 768px) { .section-head h2 { font-size: 42px; } }
.section-sub { margin-top: 14px; font-size: 16px; line-height: 1.6; color: var(--ash); }

[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity 0.7s, transform 0.7s cubic-bezier(0.22, 1, 0.36, 1); }
[data-reveal].in-view { opacity: 1; transform: translateY(0); }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.feature-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.feature {
  background: var(--cream); border: 1px solid rgba(18, 18, 18, 0.05);
  border-radius: var(--r-card); padding: 32px 28px;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
}
.feature:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: rgba(255, 138, 0, 0.2); }
.feature-icon {
  width: 56px; height: 56px; display: grid; place-items: center; border-radius: 16px;
  background: linear-gradient(135deg, var(--brand-light), var(--brand)); color: #fff;
  box-shadow: var(--shadow-glow);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature h3 { margin-top: 20px; font-size: 19px; font-weight: 700; }
.feature p { margin-top: 10px; font-size: 14px; line-height: 1.6; color: var(--ash); }

/* ============================================================
   TODAY'S SPECIAL
   ============================================================ */
.special { background: #121212; color: #fff; padding: 96px 0; position: relative; overflow: hidden; }
.special::before {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: radial-gradient(700px 400px at 15% 20%, rgba(255, 138, 0, 0.18), transparent 60%),
              radial-gradient(600px 380px at 90% 85%, rgba(255, 181, 71, 0.14), transparent 60%);
}
.special-grid { display: grid; align-items: center; gap: 56px; position: relative; }
@media (min-width: 1024px) { .special-grid { grid-template-columns: 1fr 1fr; } }
.special-media { position: relative; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-card); }
.special-media img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.special-tag {
  position: absolute; top: 20px; left: 20px; z-index: 2;
  background: var(--brand); color: #fff; border-radius: 999px; padding: 8px 16px;
  font-family: "Poppins", sans-serif; font-size: 12px; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase;
}
.special-info h2 { margin-top: 10px; font-size: 34px; font-weight: 800; line-height: 1.12; }
@media (min-width: 768px) { .special-info h2 { font-size: 42px; } }
.special-info > p { margin-top: 18px; font-size: 16px; line-height: 1.65; color: rgba(255, 255, 255, 0.72); }
.special-offer { margin-top: 28px; display: flex; flex-wrap: wrap; align-items: center; gap: 28px; }
.special-price small { display: block; font-size: 12px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--brand-light); }
.special-price strong { font-family: "Poppins", sans-serif; font-size: 34px; font-weight: 800; color: #fff; }
.special-price del { font-size: 20px; font-weight: 500; color: rgba(255, 255, 255, 0.4); margin-left: 8px; }
.countdown { display: flex; gap: 12px; }
.countdown > div {
  min-width: 72px; padding: 12px 8px; text-align: center; border-radius: 16px;
  background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.1);
}
.countdown b { display: block; font-family: "Poppins", sans-serif; font-size: 24px; font-weight: 800; color: var(--brand-light); font-variant-numeric: tabular-nums; }
.countdown span { font-size: 11px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(255, 255, 255, 0.55); }
.special .hero-ctas { margin-top: 32px; }
.special .btn-outline { background: transparent; border-color: rgba(255, 255, 255, 0.25); color: #fff; }
.special .btn-outline:hover { border-color: var(--brand); color: var(--brand-light); }

/* ============================================================
   OUR MENU
   ============================================================ */
.menu-tabs {
  display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-bottom: 40px;
}
.menu-tab {
  padding: 12px 22px; border-radius: 999px; font-family: "Poppins", sans-serif;
  font-size: 14px; font-weight: 600; color: var(--ash);
  border: 1px solid rgba(18, 18, 18, 0.1); background: #fff;
  transition: all 0.25s;
}
.menu-tab:hover { border-color: var(--brand); color: var(--brand); }
.menu-tab.active { background: var(--brand); border-color: var(--brand); color: #fff; box-shadow: var(--shadow-glow); }
.menu-panel { display: none; }
.menu-panel.active { display: block; animation: fadeIn 0.4s ease; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.menu-list { max-width: 760px; margin: 0 auto; }
.menu-list li {
  display: flex; align-items: center; gap: 16px; padding: 18px 4px;
  border-bottom: 1px dashed rgba(18, 18, 18, 0.12);
}
.menu-list li:last-child { border-bottom: none; }
.veg-dot { width: 14px; height: 14px; flex-shrink: 0; border-radius: 50%; background: #b91c1c; position: relative; }
.veg-dot.veg { background: #16a34a; }
.menu-item { flex: 1; min-width: 0; }
.menu-item b { display: block; font-family: "Poppins", sans-serif; font-size: 16px; font-weight: 600; }
.menu-item small { display: block; margin-top: 3px; font-size: 13px; color: var(--ash); }
.menu-price { font-family: "Poppins", sans-serif; font-size: 16px; font-weight: 700; color: var(--brand); white-space: nowrap; }

/* ============================================================
   CHEF RECOMMENDATION
   ============================================================ */
.chef-grid { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
.chef-card {
  background: #fff; border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-soft);
  transition: transform 0.3s, box-shadow 0.3s;
}
.chef-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }
.chef-img { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.chef-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.chef-card:hover .chef-img img { transform: scale(1.08); }
.chef-body { padding: 20px 22px 22px; }
.chef-body h3 { font-size: 19px; font-weight: 700; }
.chef-body p { margin-top: 6px; font-size: 14px; color: var(--ash); }
.chef-body .card-foot { padding-top: 14px; }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { max-width: 720px; margin: 0 auto; overflow: hidden; }
.reviews-track { display: flex; transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1); }
.review { flex: 0 0 100%; text-align: center; padding: 0 8px; }
.review-stars { display: flex; justify-content: center; gap: 4px; color: var(--brand-light); }
.review-stars svg { width: 22px; height: 22px; }
.review blockquote {
  margin-top: 22px; font-family: "Poppins", sans-serif; font-size: 20px; font-weight: 500;
  line-height: 1.55; color: var(--ink);
}
@media (min-width: 768px) { .review blockquote { font-size: 23px; } }
.review figcaption { margin-top: 26px; display: flex; justify-content: center; align-items: center; gap: 14px; }
.avatar {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 50%;
  background: var(--a, var(--brand)); color: #fff; font-family: "Poppins", sans-serif; font-size: 20px; font-weight: 700;
  box-shadow: var(--shadow-glow);
}
.review figcaption b { display: block; font-family: "Poppins", sans-serif; font-size: 15px; font-weight: 600; text-align: left; }
.review figcaption small { display: block; font-size: 12px; color: var(--ash); text-align: left; }
.reviews-nav { margin-top: 36px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.reviews-nav button {
  width: 46px; height: 46px; display: grid; place-items: center; border-radius: 50%;
  border: 1px solid rgba(18, 18, 18, 0.1); background: #fff; color: var(--ink); transition: all 0.3s;
}
.reviews-nav button:hover { background: var(--brand); border-color: var(--brand); color: #fff; }
.reviews-nav button svg { width: 18px; height: 18px; }
.dots { display: flex; gap: 8px; }
.dots button { width: 8px; height: 8px; padding: 0; border-radius: 999px; border: none; background: rgba(18, 18, 18, 0.18); transition: all 0.3s; }
.dots button.active { width: 26px; background: var(--brand); }

/* ============================================================
   GALLERY
   ============================================================ */
.gallery-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.gallery-item { position: relative; overflow: hidden; border-radius: var(--r-card); aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18, 18, 18, 0.55), transparent 55%);
  opacity: 0; transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-item figcaption {
  position: absolute; left: 20px; bottom: 16px; z-index: 2; color: #fff;
  font-family: "Poppins", sans-serif; font-size: 14px; font-weight: 600;
  opacity: 0; transform: translateY(8px); transition: all 0.4s;
}
.gallery-item:hover figcaption { opacity: 1; transform: none; }

/* ============================================================
   HOW WE COOK
   ============================================================ */
.process { display: grid; gap: 24px; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); counter-reset: step; }
.process li {
  position: relative; background: var(--cream); border-radius: var(--r-card);
  padding: 30px 26px 26px; border: 1px solid rgba(18, 18, 18, 0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.process li:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); }
.step-num {
  font-family: "Poppins", sans-serif; font-size: 15px; font-weight: 800; letter-spacing: 0.1em;
  color: var(--brand); background: var(--brand-soft); border-radius: 999px; padding: 6px 14px;
}
.process h3 { margin-top: 16px; font-size: 18px; font-weight: 700; }
.process p { margin-top: 8px; font-size: 14px; line-height: 1.6; color: var(--ash); }

/* ============================================================
   RESERVATION
   ============================================================ */
.reservation-grid { display: grid; gap: 40px; align-items: start; }
@media (min-width: 1024px) { .reservation-grid { grid-template-columns: 1fr 1.2fr; } }
.reservation-info h3 { font-size: 24px; font-weight: 700; }
.reservation-info > p { margin-top: 12px; font-size: 15px; line-height: 1.6; color: var(--ash); }
.info-list { margin-top: 24px; display: grid; gap: 16px; }
.info-list li { display: flex; align-items: center; gap: 14px; }
.info-list b { display: block; font-family: "Poppins", sans-serif; font-size: 15px; font-weight: 600; }
.info-list small { display: block; font-size: 13px; color: var(--ash); margin-top: 2px; }

.reservation-form {
  background: #fff; border-radius: var(--r-card); padding: 32px;
  box-shadow: var(--shadow-soft); display: grid; gap: 18px;
}
.form-row { display: grid; gap: 18px; grid-template-columns: 1fr; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.reservation-form label { display: block; font-family: "Poppins", sans-serif; font-size: 13px; font-weight: 600; color: var(--ink); }
.reservation-form input,
.reservation-form select {
  margin-top: 8px; width: 100%; padding: 13px 14px; border-radius: 14px;
  border: 1.5px solid rgba(18, 18, 18, 0.12); background: var(--cream);
  font-family: "Inter", sans-serif; font-size: 14px; color: var(--ink);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.reservation-form input:focus,
.reservation-form select:focus { outline: none; border-color: var(--brand); box-shadow: 0 0 0 4px rgba(255, 138, 0, 0.15); }
.reservation-form .full { grid-column: 1 / -1; }
.form-error { color: #dc2626; font-size: 13px; font-weight: 500; }
.form-success {
  display: flex; align-items: center; gap: 10px; margin-top: 2px;
  background: #ecfdf5; border: 1px solid #a7f3d0; color: #047857;
  border-radius: 14px; padding: 14px 16px; font-size: 14px; font-weight: 500;
}
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { display: grid; gap: 14px; }
.faq-item {
  background: #fff; border: 1px solid rgba(18, 18, 18, 0.08);
  border-radius: 18px; overflow: hidden; transition: border-color 0.3s, box-shadow 0.3s;
}
.faq-item[open] { border-color: rgba(255, 138, 0, 0.35); box-shadow: var(--shadow-soft); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 22px; cursor: pointer; list-style: none;
  font-family: "Poppins", sans-serif; font-size: 16px; font-weight: 600;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary svg { width: 20px; height: 20px; color: var(--brand); flex-shrink: 0; transition: transform 0.3s; }
.faq-item[open] summary svg { transform: rotate(180deg); }
.faq-item p { padding: 0 22px 20px; font-size: 15px; line-height: 1.6; color: var(--ash); }

/* ============================================================
   LOCATION
   ============================================================ */
.location-grid { display: grid; gap: 28px; }
@media (min-width: 1024px) { .location-grid { grid-template-columns: 1.4fr 1fr; } }
.map { border-radius: var(--r-card); overflow: hidden; box-shadow: var(--shadow-soft); min-height: 320px; }
.map iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; }
.location-info { background: #fff; border-radius: var(--r-card); padding: 28px; box-shadow: var(--shadow-soft); display: grid; gap: 20px; align-content: start; }
.loc-item { display: flex; align-items: center; gap: 14px; }
.loc-item b { display: block; font-family: "Poppins", sans-serif; font-size: 15px; font-weight: 600; }
.loc-item small { display: block; font-size: 13px; color: var(--ash); margin-top: 2px; }

/* ============================================================
   INSTAGRAM FEED
   ============================================================ */
.insta-grid { display: grid; gap: 16px; grid-template-columns: repeat(2, 1fr); }
@media (min-width: 640px) { .insta-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .insta-grid { grid-template-columns: repeat(6, 1fr); } }
.insta-item { position: relative; overflow: hidden; border-radius: 18px; aspect-ratio: 1; }
.insta-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.insta-item:hover img { transform: scale(1.12); }
.insta-item span {
  position: absolute; inset: 0; display: grid; place-items: center; color: #fff; opacity: 0;
  background: rgba(255, 138, 0, 0.55); transition: opacity 0.35s;
}
.insta-item:hover span { opacity: 1; }
.insta-item span svg { width: 28px; height: 28px; }
.insta-cta { margin-top: 36px; text-align: center; }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { background: #121212; color: rgba(255, 255, 255, 0.75); padding: 72px 0 0; }
.footer-grid { display: grid; gap: 40px; grid-template-columns: 1fr; padding-bottom: 56px; }
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; } }
.footer .logo-text { color: #fff; }
.footer-about { margin-top: 18px; font-size: 14px; line-height: 1.65; max-width: 320px; }
.socials { margin-top: 22px; display: flex; gap: 10px; }
.socials a {
  width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px;
  background: rgba(255, 255, 255, 0.06); color: #fff; transition: all 0.3s;
}
.socials a:hover { background: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow-glow); }
.socials svg { width: 19px; height: 19px; }
.footer h3 { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 18px; }
.footer nav a { display: block; margin-bottom: 12px; font-size: 14px; transition: color 0.2s; }
.footer nav a:hover { color: var(--brand-light); }
.newsletter { margin-top: 16px; display: flex; gap: 10px; }
.newsletter input {
  flex: 1; min-width: 0; padding: 13px 14px; border-radius: 14px;
  border: 1.5px solid rgba(255, 255, 255, 0.14); background: rgba(255, 255, 255, 0.05);
  color: #fff; font-family: "Inter", sans-serif; font-size: 14px;
}
.newsletter input::placeholder { color: rgba(255, 255, 255, 0.4); }
.newsletter input:focus { outline: none; border-color: var(--brand); }
.newsletter button { padding: 13px 16px; }
.newsletter button svg { width: 18px; height: 18px; }
.newsletter-note { margin-top: 12px; font-size: 13px; color: #6ee7b7; }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08); padding: 22px 24px;
  display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px;
  font-size: 13px; color: rgba(255, 255, 255, 0.45);
}
.footer-bottom .open { color: #059669; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .menu-toggle { display: grid; }
}
@media (max-width: 640px) {
  .btn-nav { display: none; }
  .hero-title { font-size: 36px; }
  .section { padding: 72px 0; }
  .reservation-form { padding: 24px 18px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  html { scroll-behavior: auto; }
  [data-reveal], .reveal { opacity: 1; transform: none; }
}
