/* =========================================================
   URBAN SPICE RESTAURANT — STYLESHEET
   Design tokens: charcoal / espresso / cream / gold / spice-orange
   Type: Fraunces (display) · Outfit (body) · DM Mono (utility/prices)
   ========================================================= */

:root {
  /* Color tokens */
  --charcoal: #1B1410;
  --espresso: #2E2019;
  --espresso-light: #3D2A1F;
  --cream: #F6EFE2;
  --cream-soft: #EFE4D0;
  --gold: #C9A24B;
  --gold-soft: #E0C589;
  --spice: #C2622D;
  --spice-dark: #A34E22;
  --text-dark: #241A14;
  --text-muted-dark: #6B584A;
  --text-light: #F6EFE2;
  --text-muted-light: rgba(246, 239, 226, 0.68);

  /* Type tokens */
  --font-display: 'Fraunces', serif;
  --font-body: 'Outfit', sans-serif;
  --font-mono: 'DM Mono', monospace;

  /* Layout tokens */
  --radius-lg: 22px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --section-pad: 7rem;
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* =========================================================
   BASE
   ========================================================= */
* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--text-dark);
  margin: 0;
}

p { line-height: 1.75; }

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

.section { padding: var(--section-pad) 0; position: relative; }
.us-section-cream { background: var(--cream); }
.us-section-dark { background: var(--charcoal); }
.us-section-dark .section-text.light,
.us-section-dark p { color: var(--text-muted-light); }

.section-head { max-width: 640px; margin-left: auto; margin-right: auto; margin-bottom: 3.5rem; }

.section-title {
  font-size: clamp(2rem, 4vw, 2.85rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}
.section-title.light { color: var(--text-light); }

.section-text { color: var(--text-muted-dark); font-size: 1.03rem; max-width: 560px; }
.section-text.light { color: var(--text-muted-light); }
.text-center .section-text { max-width: 640px; margin-left: auto; margin-right: auto; }

/* Signature "spice-stamp" eyebrow mark — replaces generic numbering */
.us-stamp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--spice-dark);
  background: rgba(194, 98, 45, 0.1);
  border: 1px solid rgba(194, 98, 45, 0.35);
  padding: 0.45rem 1rem 0.45rem 0.7rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.us-stamp i { font-size: 0.9rem; }
.us-stamp-light {
  color: var(--gold-soft);
  background: rgba(201, 162, 75, 0.12);
  border-color: rgba(201, 162, 75, 0.35);
}

/* Buttons */
.us-btn-primary {
  background: var(--spice);
  color: #fff;
  border: none;
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  transition: var(--transition);
  box-shadow: 0 8px 24px -8px rgba(194, 98, 45, 0.6);
}
.us-btn-primary:hover {
  background: var(--spice-dark);
  transform: translateY(-3px);
  box-shadow: 0 14px 28px -10px rgba(194, 98, 45, 0.7);
  color: #fff;
}
.us-btn-primary i { transition: transform 0.3s ease; }
.us-btn-primary:hover i { transform: translateX(3px); }

.us-btn-outline {
  background: transparent;
  color: var(--text-light);
  border: 1.5px solid rgba(246, 239, 226, 0.45);
  padding: 0.85rem 1.75rem;
  border-radius: 999px;
  font-weight: 500;
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.us-btn-outline:hover {
  background: var(--text-light);
  color: var(--charcoal);
  border-color: var(--text-light);
}

/* =========================================================
   LOADING SCREEN
   ========================================================= */
.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader.loader-hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; }
.loader-logo {
  font-family: var(--font-display);
  font-size: 1.9rem;
  color: var(--text-light);
  margin-bottom: 1.75rem;
  letter-spacing: 0.02em;
}
.loader-logo span { color: var(--spice); font-style: italic; }
.loader-plate {
  position: relative;
  width: 90px;
  height: 90px;
  margin: 0 auto 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.plate-ring {
  position: absolute;
  inset: 0;
  border: 2px solid rgba(201, 162, 75, 0.25);
  border-top-color: var(--gold);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}
.loader-plate i { font-size: 2rem; color: var(--gold-soft); animation: pulseIcon 1.6s ease-in-out infinite; }
.loader-text { color: var(--text-muted-light); font-size: 0.85rem; letter-spacing: 0.05em; }

@keyframes spin { to { transform: rotate(360deg); } }
@keyframes pulseIcon { 0%, 100% { transform: scale(1); opacity: 1; } 50% { transform: scale(0.85); opacity: 0.6; } }

/* =========================================================
   NAVBAR
   ========================================================= */
.us-navbar {
  padding: 1.4rem 0;
  transition: var(--transition);
  background: transparent;
}
.us-navbar.scrolled {
  background: rgba(27, 20, 16, 0.92);
  backdrop-filter: blur(10px);
  padding: 0.85rem 0;
  box-shadow: 0 8px 30px -12px rgba(0,0,0,0.5);
}

.us-brand {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-light);
  letter-spacing: 0.01em;
}
.us-brand span { color: var(--spice); font-style: italic; }

.us-nav-links { gap: 0.35rem; }
.us-nav-links .nav-link {
  color: var(--text-muted-light);
  font-weight: 400;
  font-size: 0.94rem;
  padding: 0.5rem 0.9rem !important;
  position: relative;
  transition: color 0.3s ease;
}
.us-nav-links .nav-link::after {
  content: '';
  position: absolute;
  left: 0.9rem;
  right: 0.9rem;
  bottom: 0.3rem;
  height: 2px;
  background: var(--spice);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.us-nav-links .nav-link:hover,
.us-nav-links .nav-link.active { color: #fff; }
.us-nav-links .nav-link:hover::after,
.us-nav-links .nav-link.active::after { transform: scaleX(1); }

.us-btn-book {
  background: var(--spice);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  align-items: center;
  gap: 0.5rem;
  margin-left: 0.75rem;
  position: relative;
  overflow: hidden;
  transition: var(--transition);
}
.us-btn-book::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--spice-dark);
  transform: translateX(-100%);
  transition: transform 0.35s ease;
  z-index: -1;
}
.us-btn-book:hover::before { transform: translateX(0); }
.us-btn-book:hover { color: #fff; transform: translateY(-2px); }

.us-cart-chip {
  align-items: center;
  gap: 0.4rem;
  color: var(--text-light);
  margin-left: 1rem;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  position: relative;
}
.us-cart-chip i { font-size: 1.15rem; }
.us-cart-chip span {
  background: var(--spice);
  color: #fff;
  border-radius: 50%;
  width: 18px; height: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.68rem;
  position: absolute;
  top: -8px; right: -10px;
  transition: transform 0.25s ease;
}
.us-cart-chip.bump span { transform: scale(1.35); }

.navbar-toggler { border: none; padding: 0; background: transparent !important; box-shadow: none !important; }
.toggler-bar {
  display: block;
  width: 24px; height: 2px;
  background: var(--text-light);
  margin: 5px 0;
  transition: var(--transition);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 18s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(27,20,16,0.75) 0%, rgba(27,20,16,0.55) 45%, rgba(27,20,16,0.95) 100%);
}

.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle {
  position: absolute;
  color: rgba(201, 162, 75, 0.35);
  font-size: 1.6rem;
  animation: floatParticle 8s ease-in-out infinite;
}
.p1 { top: 18%; left: 8%; font-size: 1.8rem; animation-delay: 0s; }
.p2 { top: 65%; left: 14%; font-size: 1.3rem; animation-delay: 1.2s; }
.p3 { top: 25%; right: 10%; font-size: 2rem; animation-delay: 0.6s; }
.p4 { top: 72%; right: 16%; font-size: 1.4rem; animation-delay: 2s; }
.p5 { top: 45%; left: 48%; font-size: 1.1rem; animation-delay: 1.6s; }
@keyframes floatParticle {
  0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.35; }
  50% { transform: translateY(-26px) rotate(15deg); opacity: 0.7; }
}

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

.us-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-soft);
  border: 1px solid rgba(201, 162, 75, 0.4);
  background: rgba(201, 162, 75, 0.08);
  padding: 0.5rem 1.2rem;
  border-radius: 999px;
  margin-bottom: 1.75rem;
}

.hero-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--text-light);
  line-height: 1.08;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-muted-light);
  margin-bottom: 2.5rem;
}

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

.scroll-indicator {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--text-muted-light);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.2s ease-in-out infinite;
}
@keyframes bounce {
  0%, 100% { transform: translate(-50%, 0); }
  50% { transform: translate(-50%, 8px); }
}

/* Fade-in on load */
.fade-up { opacity: 0; transform: translateY(24px); animation: fadeUpIn 0.9s ease forwards; }
.fade-up[data-delay] { animation-delay: calc(var(--d, 0) * 1ms); }
@keyframes fadeUpIn { to { opacity: 1; transform: translateY(0); } }

/* =========================================================
   SCROLL REVEAL (driven by IntersectionObserver in JS)
   ========================================================= */
.reveal { opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.fade-up { transform: translateY(36px); animation: none; }
.reveal.fade-left { transform: translateX(-40px); }
.reveal.fade-right { transform: translateX(40px); }
.reveal.is-visible { opacity: 1; transform: translate(0, 0); }

/* =========================================================
   ABOUT
   ========================================================= */
.about-img-wrap { position: relative; }
.about-main-img {
  border-radius: var(--radius-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  box-shadow: 0 30px 60px -20px rgba(27,20,16,0.35);
}
.about-float-card {
  position: absolute;
  bottom: -1.5rem;
  right: -1rem;
  background: var(--charcoal);
  color: var(--text-light);
  border-radius: var(--radius-md);
  padding: 1.1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  box-shadow: 0 20px 40px -14px rgba(0,0,0,0.4);
  max-width: 240px;
}
.about-float-card i { font-size: 1.6rem; color: var(--gold); }
.about-float-card strong { display: block; font-size: 0.92rem; }
.about-float-card span { font-size: 0.78rem; color: var(--text-muted-light); }

.about-counters { margin-top: 2.5rem; }
.counter {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--spice);
  line-height: 1;
}
.counter-label { font-size: 0.82rem; color: var(--text-muted-dark); }

/* =========================================================
   MENU
   ========================================================= */
.menu-filters {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 3rem;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(246, 239, 226, 0.25);
  color: var(--text-muted-light);
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  font-size: 0.88rem;
  font-family: var(--font-body);
  transition: var(--transition);
}
.filter-btn:hover { border-color: var(--gold); color: var(--text-light); }
.filter-btn.active {
  background: var(--spice);
  border-color: var(--spice);
  color: #fff;
}

.menu-card {
  background: var(--espresso);
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  border: 1px solid rgba(246,239,226,0.06);
}
.menu-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 45px -18px rgba(0,0,0,0.55);
  border-color: rgba(201,162,75,0.3);
}
.menu-card-img { overflow: hidden; aspect-ratio: 4/3; }
.menu-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.menu-card:hover .menu-card-img img { transform: scale(1.12); }
.menu-card-body { padding: 1.4rem; }
.menu-card-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 0.5rem; margin-bottom: 0.5rem; }
.menu-card-top h5 { color: var(--text-light); font-size: 1.08rem; }
.menu-price { font-family: var(--font-mono); color: var(--gold); font-weight: 500; white-space: nowrap; }
.menu-card p { color: var(--text-muted-light); font-size: 0.87rem; margin-bottom: 0.9rem; }
.menu-rating { color: var(--gold); font-size: 0.78rem; margin-bottom: 1rem; }
.menu-rating .bi-star { color: rgba(201,162,75,0.35); }

.add-cart-btn {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(201, 162, 75, 0.4);
  color: var(--gold-soft);
  padding: 0.6rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}
.add-cart-btn:hover { background: var(--spice); border-color: var(--spice); color: #fff; }
.add-cart-btn.added { background: #4a7a4a; border-color: #4a7a4a; color: #fff; }

.menu-item-hidden { display: none !important; }

/* =========================================================
   SPECIAL OFFER
   ========================================================= */
.offer-section { position: relative; background: var(--espresso); overflow: hidden; }
.offer-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 20%, rgba(194,98,45,0.25), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(201,162,75,0.18), transparent 45%);
  animation: driftGlow 12s ease-in-out infinite alternate;
}
@keyframes driftGlow {
  from { transform: translate(0,0) scale(1); }
  to { transform: translate(2%, -2%) scale(1.05); }
}
.offer-img {
  border-radius: var(--radius-lg);
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: 0 30px 60px -20px rgba(0,0,0,0.5);
  position: relative;
  z-index: 1;
}
.countdown { display: flex; gap: 0.8rem; position: relative; z-index: 1; flex-wrap: wrap; }
.cd-box {
  background: rgba(246,239,226,0.06);
  border: 1px solid rgba(246,239,226,0.15);
  border-radius: var(--radius-sm);
  padding: 0.9rem 1.1rem;
  text-align: center;
  min-width: 70px;
}
.cd-box span {
  display: block;
  font-family: var(--font-mono);
  font-size: 1.6rem;
  color: var(--gold);
  font-weight: 500;
}
.cd-box small { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--text-muted-light); }

/* =========================================================
   CHEFS
   ========================================================= */
.chef-card {
  background: #fff;
  border-radius: var(--radius-md);
  overflow: hidden;
  height: 100%;
  transition: var(--transition);
  box-shadow: 0 10px 30px -18px rgba(36,26,20,0.25);
}
.chef-card:hover { transform: translateY(-8px); box-shadow: 0 26px 46px -18px rgba(36,26,20,0.32); }
.chef-img-wrap { position: relative; overflow: hidden; aspect-ratio: 3/4; }
.chef-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.chef-card:hover .chef-img-wrap img { transform: scale(1.1); }
.chef-social {
  position: absolute;
  bottom: -50px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem;
  transition: bottom 0.4s ease;
  background: linear-gradient(0deg, rgba(0,0,0,0.55), transparent);
}
.chef-card:hover .chef-social { bottom: 0; }
.chef-social a {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: var(--spice);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.85rem;
  transition: transform 0.25s ease;
}
.chef-social a:hover { transform: translateY(-3px); background: var(--gold); }
.chef-info { padding: 1.2rem; text-align: center; }
.chef-info h5 { font-size: 1.05rem; margin-bottom: 0.2rem; }
.chef-info span { font-size: 0.82rem; color: var(--spice); font-family: var(--font-mono); }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  aspect-ratio: 1/1;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.gallery-item:hover img { transform: scale(1.15); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(27,20,16,0.85), transparent 60%);
  display: flex; align-items: flex-end;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay span { color: var(--text-light); font-size: 0.9rem; font-weight: 500; }
.gallery-overlay i { color: var(--gold); margin-right: 0.4rem; }

.us-modal-content { background: var(--charcoal); border: none; border-radius: var(--radius-md); position: relative; overflow: hidden; }
.us-modal-close { position: absolute; top: 1rem; right: 1rem; z-index: 3; }
.us-modal-caption { padding: 1rem 1.5rem; color: var(--text-light); font-family: var(--font-mono); font-size: 0.85rem; }
.gallery-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(0,0,0,0.45);
  border: none; color: #fff;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
}
.gallery-nav:hover { background: var(--spice); }
.gallery-prev { left: 1rem; }
.gallery-next { right: 1rem; }

/* =========================================================
   FEATURE CARDS (Why Choose Us)
   ========================================================= */
.feature-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem 1.4rem;
  text-align: center;
  height: 100%;
  transition: var(--transition);
  border: 1px solid transparent;
}
.feature-card:hover {
  transform: translateY(-6px);
  border-color: rgba(194,98,45,0.25);
  box-shadow: 0 20px 40px -20px rgba(36,26,20,0.3);
}
.feature-card i {
  font-size: 1.8rem;
  color: var(--spice);
  background: rgba(194,98,45,0.1);
  width: 64px; height: 64px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1.1rem;
  transition: transform 0.4s ease;
}
.feature-card:hover i { transform: rotate(-8deg) scale(1.08); }
.feature-card h5 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.feature-card p { font-size: 0.85rem; color: var(--text-muted-dark); margin: 0; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonial-card {
  background: var(--espresso);
  border-radius: var(--radius-lg);
  padding: 2.75rem;
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.testimonial-card .stars { color: var(--gold); font-size: 0.95rem; margin-bottom: 1.2rem; }
.testimonial-card p.quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 1.75rem;
}
.testimonial-user { display: flex; align-items: center; justify-content: center; gap: 0.9rem; }
.testimonial-user img { width: 52px; height: 52px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-user strong { display: block; color: var(--text-light); font-size: 0.95rem; }
.testimonial-user span { font-size: 0.78rem; color: var(--text-muted-light); }

.us-carousel-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(246,239,226,0.08);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-light);
  transition: background 0.25s ease;
}
.us-carousel-arrow:hover { background: var(--spice); }
.us-carousel-indicators { position: static; margin-top: 2rem; }
.us-carousel-indicators [data-bs-target] {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(246,239,226,0.3);
  border: none;
  opacity: 1;
}
.us-carousel-indicators .active { background: var(--spice); width: 22px; border-radius: 4px; }

/* =========================================================
   RESERVATION
   ========================================================= */
.reservation-section { background: var(--charcoal); position: relative; }
.res-points { list-style: none; padding: 0; margin-top: 1.75rem; }
.res-points li { color: var(--text-muted-light); font-size: 0.92rem; margin-bottom: 0.7rem; display: flex; align-items: center; gap: 0.6rem; }
.res-points i { color: var(--gold); }

.us-form { background: var(--espresso); padding: 2.25rem; border-radius: var(--radius-lg); }
.us-form .form-label { color: var(--text-muted-light); font-size: 0.85rem; margin-bottom: 0.4rem; }
.us-input {
  background: rgba(246,239,226,0.05);
  border: 1px solid rgba(246,239,226,0.15);
  color: var(--text-light);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1rem;
}
.us-input::placeholder { color: rgba(246,239,226,0.35); }
.us-input:focus {
  background: rgba(246,239,226,0.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,75,0.15);
  color: var(--text-light);
}
.us-form select.us-input option { background: var(--espresso); color: var(--text-light); }
.us-input.is-invalid { border-color: #d9534f; }
.us-input.is-valid { border-color: #4a7a4a; }

#contact .us-form { background: #fff; box-shadow: 0 20px 50px -24px rgba(36,26,20,0.25); }
#contact .us-input { background: var(--cream-soft); border-color: rgba(36,26,20,0.1); color: var(--text-dark); }
#contact .us-input::placeholder { color: var(--text-muted-dark); }
#contact .form-label { color: var(--text-muted-dark); }

.us-modal-success { background: var(--charcoal); color: var(--text-light); border-radius: var(--radius-lg); border: none; }
.success-icon { font-size: 3.2rem; color: #6bbf6b; }

/* =========================================================
   CONTACT
   ========================================================= */
.contact-info-card {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 1.75rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px -20px rgba(36,26,20,0.25);
  transition: var(--transition);
}
.contact-info-card:hover { transform: translateY(-5px); }
.contact-info-card i { font-size: 1.5rem; color: var(--spice); margin-bottom: 0.8rem; display: inline-block; }
.contact-info-card h6 { margin-bottom: 0.4rem; }
.contact-info-card p { font-size: 0.87rem; color: var(--text-muted-dark); margin: 0; }

.map-placeholder {
  background: var(--cream-soft);
  border: 1.5px dashed rgba(36,26,20,0.2);
  border-radius: var(--radius-md);
  height: 100%;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted-dark);
  gap: 0.6rem;
}
.map-placeholder i { font-size: 2.2rem; color: var(--spice); }

/* =========================================================
   FOOTER
   ========================================================= */
.us-footer { background: var(--charcoal); padding: 5rem 0 2rem; }
.footer-brand { display: inline-block; margin-bottom: 1rem; }
.footer-desc { color: var(--text-muted-light); font-size: 0.88rem; }
.footer-social { display: flex; gap: 0.7rem; margin-top: 1.2rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(246,239,226,0.06);
  color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--spice); transform: translateY(-3px); }

.footer-heading { color: var(--text-light); font-size: 0.95rem; margin-bottom: 1.2rem; font-family: var(--font-display); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.7rem; }
.footer-links a { color: var(--text-muted-light); font-size: 0.88rem; transition: color 0.25s ease, padding-left 0.25s ease; }
.footer-links a:hover { color: var(--gold-soft); padding-left: 4px; }

.footer-hours { list-style: none; padding: 0; margin: 0; }
.footer-hours li { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--text-muted-light); margin-bottom: 0.7rem; font-family: var(--font-mono); }

.newsletter-form { display: flex; gap: 0.5rem; margin-top: 0.5rem; }
.newsletter-form input {
  flex: 1;
  background: rgba(246,239,226,0.06);
  border: 1px solid rgba(246,239,226,0.15);
  border-radius: var(--radius-sm);
  padding: 0.6rem 0.9rem;
  color: var(--text-light);
  font-size: 0.85rem;
}
.newsletter-form input::placeholder { color: rgba(246,239,226,0.4); }
.newsletter-form button {
  background: var(--spice);
  border: none;
  color: #fff;
  width: 42px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s ease;
}
.newsletter-form button:hover { background: var(--spice-dark); }

.footer-divider { border-color: rgba(246,239,226,0.1); margin: 2.5rem 0 1.5rem; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 0.6rem; font-size: 0.82rem; color: var(--text-muted-light); }
.designed-by span { color: var(--gold-soft); }

/* =========================================================
   BACK TO TOP
   ========================================================= */
.back-to-top {
  position: fixed;
  bottom: 1.8rem;
  right: 1.8rem;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--spice);
  color: #fff;
  border: none;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: var(--transition);
  z-index: 900;
  box-shadow: 0 10px 25px -8px rgba(194,98,45,0.6);
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--spice-dark); transform: translateY(-4px); }

/* =========================================================
   TOAST (add to cart)
   ========================================================= */
.us-toast {
  position: fixed;
  bottom: 1.8rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--charcoal);
  color: var(--text-light);
  padding: 0.85rem 1.5rem;
  border-radius: 999px;
  font-size: 0.88rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 1000;
  border: 1px solid rgba(201,162,75,0.3);
}
.us-toast.show { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.us-toast i { color: #6bbf6b; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 991.98px) {
  :root { --section-pad: 5rem; }
  .us-nav-links { gap: 0; margin: 1.25rem 0; }
  .us-nav-links .nav-link { padding: 0.6rem 0 !important; }
  .us-nav-links .nav-link::after { display: none; }
  .navbar-collapse { background: rgba(27,20,16,0.98); border-radius: var(--radius-md); padding: 1.25rem 1.5rem; margin-top: 1rem; }
  .us-btn-book { margin: 0.5rem 0 0; width: 100%; justify-content: center; }
  .us-cart-chip { margin: 0.75rem 0 0; }
  .about-float-card { position: static; margin-top: -2rem; margin-left: 1rem; max-width: none; width: calc(100% - 2rem); }
}

@media (max-width: 767.98px) {
  :root { --section-pad: 4rem; }
  .hero-btns { flex-direction: column; align-items: stretch; }
  .hero-btns .btn { justify-content: center; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .us-form { padding: 1.5rem; }
  .testimonial-card { padding: 1.75rem; }
}
/* =========================================================
   URBAN SPICE
   FULLY RESPONSIVE BOOTSTRAP OVERRIDES
   ========================================================= */

/* ---------- GLOBAL RESPONSIVE FIXES ---------- */

html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.container,
.container-fluid {
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

.row {
    --bs-gutter-x: 1.5rem;
}

button,
input,
textarea,
select {
    max-width: 100%;
}

.section {
    padding: 7rem 0;
}


/* =========================================================
   NAVBAR
   ========================================================= */

.us-navbar {
    padding: 1rem 0;
}

.us-navbar .container {
    position: relative;
}

.us-brand {
    white-space: nowrap;
}

.navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 8px;
    border: 1px solid rgba(246, 239, 226, 0.25);
    border-radius: 8px;
}

.toggler-bar {
    width: 24px;
    margin: 4px auto;
}

.navbar-collapse {
    transition: all 0.35s ease;
}

.us-nav-links {
    align-items: center;
}

.us-nav-links .nav-link {
    white-space: nowrap;
}


/* ---------- TABLET / MOBILE NAVBAR ---------- */

@media (max-width: 991.98px) {

    .us-navbar {
        padding: 0.8rem 0;
    }

    .us-navbar.scrolled {
        padding: 0.65rem 0;
    }

    .navbar-collapse {
        margin-top: 1rem;
        padding: 1rem;
        background: rgba(27, 20, 16, 0.98);
        border-radius: 14px;
        box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    }

    .us-nav-links {
        width: 100%;
        gap: 0.15rem;
        margin-bottom: 1rem !important;
    }

    .us-nav-links .nav-item {
        width: 100%;
    }

    .us-nav-links .nav-link {
        width: 100%;
        padding: 0.8rem 1rem !important;
        border-radius: 8px;
    }

    .us-nav-links .nav-link:hover,
    .us-nav-links .nav-link.active {
        background: rgba(194, 98, 45, 0.12);
    }

    .us-nav-links .nav-link::after {
        display: none;
    }

    .us-btn-book {
        width: 100%;
        justify-content: center;
        margin: 0;
    }

    .navbar-toggler:focus {
        box-shadow: none;
    }
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    min-height: 100svh;
    padding: 100px 0 70px;
}

.hero-content {
    width: 100%;
    padding: 0 15px;
}

.hero-title {
    font-size: clamp(2.3rem, 8vw, 5rem);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.4rem);
}

.hero-btns {
    width: 100%;
}

.scroll-indicator {
    bottom: 1.5rem;
}


/* =========================================================
   SECTION HEADINGS
   ========================================================= */

.section-title {
    font-size: clamp(2rem, 5vw, 2.85rem);
}

.section-text {
    font-size: 1rem;
}

.section-head {
    margin-bottom: 2.5rem;
}


/* =========================================================
   ABOUT
   ========================================================= */

.about-img-wrap {
    width: 100%;
}

.about-main-img {
    width: 100%;
    aspect-ratio: 4 / 5;
}

.about-float-card {
    right: 1rem;
    bottom: -1rem;
    max-width: 230px;
}

.about-counters {
    margin-top: 2rem;
}


/* =========================================================
   MENU FILTERS
   ========================================================= */

.menu-filters {
    width: 100%;
    gap: 0.5rem;
}

.filter-btn {
    min-width: 100px;
}


/* =========================================================
   MENU CARDS
   ========================================================= */

.menu-card {
    width: 100%;
}

.menu-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
}

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

.menu-card-top {
    flex-wrap: wrap;
}

.menu-card-top h5 {
    max-width: 70%;
}


/* =========================================================
   SPECIAL OFFER
   ========================================================= */

.offer-section {
    overflow: hidden;
}

.offer-img {
    width: 100%;
}

.countdown {
    width: 100%;
    justify-content: flex-start;
}

.cd-box {
    flex: 0 1 auto;
}


/* =========================================================
   CHEFS
   ========================================================= */

.chef-card {
    width: 100%;
}

.chef-img-wrap {
    width: 100%;
}


/* =========================================================
   GALLERY
   ========================================================= */

.gallery-item {
    width: 100%;
}

.gallery-overlay {
    opacity: 1;
    padding: 0.75rem;
}

.gallery-overlay span {
    font-size: 0.78rem;
}


/* =========================================================
   GALLERY MODAL
   ========================================================= */

.us-modal-content {
    margin: 0 10px;
}

.us-modal-content img {
    max-height: 75vh;
    object-fit: contain;
}

.gallery-nav {
    width: 40px;
    height: 40px;
}

.gallery-prev {
    left: 0.5rem;
}

.gallery-next {
    right: 0.5rem;
}


/* =========================================================
   FEATURE CARDS
   ========================================================= */

.feature-card {
    padding: 1.5rem 1rem;
}

.feature-card h5 {
    font-size: 1rem;
}

.feature-card p {
    font-size: 0.85rem;
}


/* =========================================================
   TESTIMONIALS
   ========================================================= */

.testimonial-card {
    width: 100%;
}

.carousel-control-prev,
.carousel-control-next {
    width: 10%;
}


/* =========================================================
   RESERVATION
   ========================================================= */

.reservation-section {
    overflow: hidden;
}

.us-form {
    width: 100%;
}

.us-input {
    width: 100%;
}

.res-points {
    padding-left: 0;
}

.res-points li {
    font-size: 0.9rem;
}


/* =========================================================
   CONTACT
   ========================================================= */

.contact-info-card {
    width: 100%;
    height: 100%;
}

.map-placeholder {
    width: 100%;
    min-height: 300px;
}


/* =========================================================
   TABLET
   768px - 991px
   ========================================================= */

@media (min-width: 768px) and (max-width: 991.98px) {

    .container {
        max-width: 720px;
    }

    .section {
        padding: 6rem 0;
    }

    .hero-title {
        font-size: clamp(3rem, 7vw, 4.5rem);
    }

    .about-float-card {
        right: -0.5rem;
    }

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

    .feature-card {
        padding: 1.75rem 1rem;
    }
}


/* =========================================================
   MOBILE
   BELOW 768px
   ========================================================= */

@media (max-width: 767.98px) {

    .section {
        padding: 4.5rem 0;
    }

    .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .section-head {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .section-title br {
        display: none;
    }


    /* HERO */

    .hero {
        min-height: 100svh;
        padding-top: 100px;
        padding-bottom: 70px;
    }

    .hero-title {
        font-size: clamp(2.4rem, 11vw, 3.6rem);
        line-height: 1.05;
    }

    .hero-subtitle {
        margin-bottom: 2rem;
    }

    .hero-btns {
        flex-direction: column;
        align-items: stretch;
        max-width: 300px;
        margin: auto;
    }

    .hero-btns .btn {
        width: 100%;
        justify-content: center;
    }

    .us-badge {
        font-size: 0.65rem;
        padding: 0.45rem 0.8rem;
    }


    /* ABOUT */

    .about-img-wrap {
        margin-bottom: 1rem;
    }

    .about-float-card {
        position: relative;
        right: auto;
        bottom: auto;
        margin: -25px 15px 0 auto;
        max-width: 230px;
        padding: 0.9rem 1rem;
    }

    .about-counters {
        margin-top: 2rem;
    }

    .counter {
        font-size: 2rem;
    }

    .counter-label {
        font-size: 0.75rem;
    }


    /* MENU */

    .menu-filters {
        justify-content: flex-start;
        overflow-x: auto;
        flex-wrap: nowrap;
        padding: 5px 2px 12px;
        scrollbar-width: thin;
    }

    .filter-btn {
        flex: 0 0 auto;
        min-width: auto;
        padding: 0.5rem 1rem;
        font-size: 0.78rem;
    }

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

    .menu-card-top h5 {
        font-size: 1rem;
        max-width: 65%;
    }

    .menu-price {
        font-size: 0.8rem;
    }

    .menu-card p {
        font-size: 0.82rem;
    }


    /* OFFER */

    .offer-img {
        aspect-ratio: 16 / 10;
    }

    .countdown {
        gap: 0.5rem;
        justify-content: space-between;
    }

    .cd-box {
        min-width: 0;
        flex: 1;
        padding: 0.7rem 0.4rem;
    }

    .cd-box span {
        font-size: 1.2rem;
    }

    .cd-box small {
        font-size: 0.58rem;
    }


    /* CHEFS */

    .chef-img-wrap {
        aspect-ratio: 3 / 4;
    }

    .chef-social {
        bottom: 10px;
    }


    /* GALLERY */

    .gallery-item {
        aspect-ratio: 1 / 1;
    }

    .gallery-overlay span {
        font-size: 0.7rem;
    }


    /* TESTIMONIAL */

    .testimonial-card {
        padding: 1.5rem !important;
    }

    .carousel-control-prev,
    .carousel-control-next {
        width: 12%;
    }


    /* RESERVATION */

    .reservation-section .section-title {
        font-size: 2rem;
    }

    .us-form {
        padding: 1.25rem !important;
    }

    .us-form .btn {
        width: 100%;
    }


    /* CONTACT */

    .contact-info-card {
        padding: 1.5rem 1rem;
    }

    .map-placeholder {
        min-height: 240px;
    }
}


/* =========================================================
   SMALL MOBILE
   BELOW 576px
   ========================================================= */

@media (max-width: 575.98px) {

    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    .section {
        padding: 4rem 0;
    }


    /* NAVBAR */

    .us-brand {
        font-size: 1.3rem;
    }

    .navbar-toggler {
        width: 40px;
        height: 40px;
    }


    /* HERO */

    .hero {
        padding-left: 10px;
        padding-right: 10px;
    }

    .hero-title {
        font-size: 2.35rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-btns {
        max-width: 280px;
    }

    .scroll-indicator {
        bottom: 1rem;
    }


    /* STAMP */

    .us-stamp {
        font-size: 0.62rem;
        padding: 0.4rem 0.75rem;
    }


    /* ABOUT */

    .about-float-card {
        max-width: 210px;
        font-size: 0.8rem;
    }

    .about-float-card i {
        font-size: 1.3rem;
    }


    /* COUNTERS */

    .counter {
        font-size: 1.8rem;
    }


    /* MENU */

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

    .menu-card-top {
        display: block;
    }

    .menu-card-top h5 {
        max-width: 100%;
        margin-bottom: 0.35rem;
    }

    .menu-price {
        display: block;
    }


    /* OFFER */

    .countdown {
        gap: 0.3rem;
    }

    .cd-box {
        padding: 0.6rem 0.25rem;
    }


    /* FEATURE */

    .feature-card {
        padding: 1.25rem 0.75rem;
    }

    .feature-card i {
        font-size: 1.8rem;
    }

    .feature-card h5 {
        font-size: 0.9rem;
    }

    .feature-card p {
        font-size: 0.75rem;
        line-height: 1.5;
    }


    /* GALLERY */

    .gallery-overlay {
        padding: 0.5rem;
    }

    .gallery-overlay span {
        font-size: 0.62rem;
    }


    /* MODAL */

    .us-modal-content {
        margin: 0;
        border-radius: 10px;
    }

    .gallery-nav {
        width: 36px;
        height: 36px;
    }


    /* FORM */

    .us-form {
        padding: 1rem !important;
    }

    .form-label {
        font-size: 0.85rem;
    }

    .us-input {
        font-size: 0.9rem;
    }


    /* CONTACT */

    .contact-info-card p {
        font-size: 0.8rem;
    }

    .map-placeholder {
        min-height: 200px;
    }
}


/* =========================================================
   EXTRA SMALL DEVICES
   BELOW 400px
   ========================================================= */

@media (max-width: 399.98px) {

    .hero-title {
        font-size: 2.05rem;
    }

    .hero-btns {
        max-width: 250px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .counter {
        font-size: 1.6rem;
    }

    .counter-label {
        font-size: 0.68rem;
    }

    .cd-box span {
        font-size: 1rem;
    }

    .cd-box small {
        font-size: 0.5rem;
    }
}


/* =========================================================
   LANDSCAPE MOBILE
   ========================================================= */

@media (max-height: 600px) and (max-width: 991.98px) {

    .hero {
        min-height: 650px;
    }

    .scroll-indicator {
        display: none;
    }
}


/* =========================================================
   TOUCH DEVICES
   Remove hover-dependent effects
   ========================================================= */

@media (hover: none) {

    .gallery-overlay {
        opacity: 1;
    }

    .menu-card:hover,
    .chef-card:hover,
    .feature-card:hover {
        transform: none;
    }

    .menu-card:hover .menu-card-img img,
    .chef-card:hover .chef-img-wrap img,
    .gallery-item:hover img {
        transform: none;
    }
}


/* =========================================================
   ACCESSIBILITY
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

    .hero-bg,
    .particle,
    .loader-plate,
    .loader-plate i,
    .scroll-indicator {
        animation: none !important;
    }

    html {
        scroll-behavior: auto;
    }
}


/* =========================================================
   FINAL OVERFLOW PROTECTION
   ========================================================= */

section,
header,
footer,
main {
    max-width: 100%;
    overflow-x: clip;
}

.row > * {
    min-width: 0;
}

.text-break {
    overflow-wrap: anywhere;
}