/* ============================================================
   El Chapo's Tacos — Complete Design System
   Studio City, Dubai · Production Build
   ============================================================ */


/* ============================================================
   CSS VARIABLES
============================================================ */
:root {
  --yellow:     #F3F120;
  --teal:       #659991;
  --red:        #953D41;
  --amber:      #F15A29;
  --gold:       #EA9C37;
  --cream:      #EBE0CB;
  --dark:       #261F31;
  --near-black: #1a1208;
  --white:      #ffffff;
  --gray-50:    #fafafa;
  --gray-100:   #f5f5f5;
  --gray-200:   #e5e5e5;
  --gray-400:   #a3a3a3;
  --gray-600:   #6c6c6c;
  --green-wa:   #25D366;
  --text-muted: #6c6c6c;   /* alias used by menu-ladies-night.html (was undefined → unstyled) */
  --border:     #e5e5e5;   /* alias used by menu-ladies-night.html (was undefined) */

  --font-display: 'Abril Fatface', cursive;
  --font-body:    'Inter', sans-serif;

  --radius-sm:  8px;
  --radius:     14px;
  --radius-lg:  22px;
  --radius-xl:  32px;

  --shadow-xs:  0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:  0 2px 10px rgba(0,0,0,0.08);
  --shadow:     0 4px 24px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 48px rgba(0,0,0,0.18);
  --shadow-xl:  0 16px 64px rgba(0,0,0,0.24);

  --transition:      0.28s ease;
  --transition-slow: 0.5s ease;

  --section-pad:     88px;
  --section-pad-sm:  60px;
  --section-pad-xs:  48px;

  --nav-height: 72px;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  color: var(--near-black);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: var(--font-body); }
ul { list-style: none; }
input, textarea, select { font-family: var(--font-body); }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3 { font-family: var(--font-display); line-height: 1.1; letter-spacing: -0.01em; }
h4, h5, h6 { font-family: var(--font-body); font-weight: 700; line-height: 1.3; }

h1 { font-size: clamp(2.4rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 3vw, 2.1rem); }
h4 { font-size: 1.15rem; }

p { line-height: 1.7; }

.display-xl  { font-family: var(--font-display); font-size: clamp(3rem, 8vw, 7rem); line-height: 1; }
.display-lg  { font-family: var(--font-display); font-size: clamp(2rem, 5vw, 4rem); }

.label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

.text-gold       { color: var(--gold); }
.text-yellow     { color: var(--yellow); }
.text-teal       { color: var(--teal); }
.text-cream      { color: var(--cream); }
.text-red        { color: var(--red); }
.text-white      { color: var(--white); }
.text-muted      { color: var(--gray-600); }
.text-center     { text-align: center; }
.text-left       { text-align: left; }

/* ============================================================
   LAYOUT
============================================================ */
.container       { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.container-wide  { max-width: 1440px; margin: 0 auto; padding: 0 28px; }
.container-narrow{ max-width: 800px;  margin: 0 auto; padding: 0 28px; }

section { padding: var(--section-pad) 0; }

.page-body { margin-top: var(--nav-height); }

.section-header { margin-bottom: 56px; }

.grid-2  { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.grid-3  { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4  { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-5  { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
.grid-6  { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }

.flex         { display: flex; }
.flex-wrap    { flex-wrap: wrap; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.gap-8    { gap: 8px; }
.gap-12   { gap: 12px; }
.gap-16   { gap: 16px; }
.gap-24   { gap: 24px; }
.gap-32   { gap: 32px; }

.mb-8   { margin-bottom: 8px; }
.mb-12  { margin-bottom: 12px; }
.mb-16  { margin-bottom: 16px; }
.mb-24  { margin-bottom: 24px; }
.mb-32  { margin-bottom: 32px; }
.mb-48  { margin-bottom: 48px; }
.mt-8   { margin-top: 8px; }
.mt-16  { margin-top: 16px; }
.mt-24  { margin-top: 24px; }
.mt-32  { margin-top: 32px; }
.mt-48  { margin-top: 48px; }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: 100px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
}

.btn-lg  { padding: 18px 44px; font-size: 1rem; }
.btn-sm  { padding: 10px 22px; font-size: 0.82rem; }
.btn-xs  { padding: 7px 16px;  font-size: 0.78rem; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--gold);
  color: var(--near-black);
  border-color: var(--gold);
}
.btn-primary:hover {
  background: #d4882e;
  border-color: #d4882e;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(234,156,55,0.45);
}

.btn-secondary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-secondary:hover {
  background: #507a77;
  border-color: #507a77;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(101,153,145,0.4);
}

.btn-dark {
  background: var(--near-black);
  color: var(--white);
  border-color: var(--near-black);
}
.btn-dark:hover {
  background: var(--dark);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.65);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--near-black);
  border-color: var(--white);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--near-black);
}

.btn-whatsapp {
  background: var(--green-wa);
  color: var(--white);
  border-color: var(--green-wa);
}
.btn-whatsapp:hover {
  background: #1ebe5d;
  border-color: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 28px rgba(37,211,102,0.45);
}

.btn-red {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}
.btn-red:hover {
  background: #7a3135;
  transform: translateY(-2px);
}

/* ============================================================
   NAVIGATION
============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-height);
  background: var(--near-black);
  display: flex;
  align-items: center;
  padding: 0 32px;
  justify-content: space-between;
  transition: box-shadow var(--transition);
}

.nav.scrolled {
  box-shadow: 0 2px 24px rgba(0,0,0,0.5);
}

.nav-logo img {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-links > li { position: relative; }

.nav-links a {
  display: block;
  color: rgba(235,224,203,0.85);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 13px;
  border-radius: 8px;
  transition: var(--transition);
  letter-spacing: 0.01em;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(234,156,55,0.1);
}

/* Dropdown */
.has-dropdown > a::after {
  content: ' ▾';
  font-size: 0.7rem;
  opacity: 0.7;
}

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--near-black);
  border: 1px solid rgba(234,156,55,0.25);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 230px;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: var(--transition);
  z-index: 100;
  box-shadow: var(--shadow-lg);
}

.has-dropdown:focus-within .nav-dropdown,
.has-dropdown:hover .nav-dropdown {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}

.nav-dropdown a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: rgba(235,224,203,0.8);
}

.nav-dropdown a:hover {
  color: var(--gold);
  background: rgba(234,156,55,0.1);
}

.nav-cta {
  background: var(--gold) !important;
  color: var(--near-black) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
  border-radius: 100px !important;
  margin-left: 8px;
}
.nav-cta:hover {
  background: #d4882e !important;
  transform: none !important;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Overlay */
.nav-mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--near-black);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 24px;
}
.nav-mobile.open { display: flex; }

.nav-mobile a {
  color: var(--cream);
  font-size: 1.4rem;
  font-family: var(--font-display);
  padding: 12px 24px;
  border-radius: var(--radius);
  transition: var(--transition);
  text-align: center;
}
.nav-mobile a:hover { color: var(--gold); background: rgba(234,156,55,0.08); }

.nav-mobile-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.nav-mobile .btn-whatsapp {
  margin-top: 20px;
  font-size: 1rem;
}

/* ============================================================
   HERO
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 8s ease;
}

.hero:hover .hero-bg { transform: scale(1.06); }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,18,8,0.72) 0%,
    rgba(26,18,8,0.48) 45%,
    rgba(26,18,8,0.82) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 120px 28px 80px;
}

.hero-badge {
  display: inline-block;
  background: rgba(234,156,55,0.15);
  border: 1px solid rgba(234,156,55,0.5);
  color: var(--gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 24px;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 20px;
  text-shadow: 0 2px 32px rgba(0,0,0,0.6);
}

.hero-sub {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: rgba(235,224,203,0.92);
  margin-bottom: 44px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-trust {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(235,224,203,0.6);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2.2s ease-in-out infinite;
}

.hero-scroll::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(235,224,203,0.5), transparent);
}

@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* Limited badge */
.limited-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(149,61,65,0.18);
  border: 1px solid rgba(149,61,65,0.5);
  color: #ff9a9a;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 100px;
}

.limited-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #ff6b6b;
  animation: pulseDot 1.5s ease-in-out infinite;
}

@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.7); }
}

/* Google Badge */
.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  padding: 7px 16px;
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  backdrop-filter: blur(4px);
}

.google-badge .g-stars { color: #fbbc04; }
.google-badge .g-logo  { font-weight: 900; font-size: 1rem; }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  position: relative;
  height: 56vh;
  min-height: 340px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,18,8,0.6) 0%, rgba(26,18,8,0.78) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 28px;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.82rem;
  color: rgba(235,224,203,0.65);
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--gold); }
.breadcrumb .sep { color: rgba(235,224,203,0.3); }

/* ============================================================
   VALUE PROPS STRIP
============================================================ */
.value-strip {
  background: var(--near-black);
  padding: 64px 0;
}

.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(234,156,55,0.15);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(234,156,55,0.45);
  transform: translateY(-5px);
}

.value-icon   { font-size: 3rem; margin-bottom: 18px; display: block; }
.value-title  { font-family: var(--font-display); color: var(--cream); font-size: 1.35rem; margin-bottom: 10px; }
.value-desc   { font-size: 0.88rem; color: rgba(235,224,203,0.6); line-height: 1.65; }

/* ============================================================
   DISH CARDS
============================================================ */
.dish-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dish-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.dish-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.dish-img-wrap {
  overflow: hidden;
  aspect-ratio: 4/3;
}

.dish-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

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

.dish-info { padding: 18px; }

.dish-name {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--near-black);
  margin-bottom: 6px;
}

.dish-desc {
  font-size: 0.83rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 12px;
}

.dish-price {
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
}

.dish-tag {
  display: inline-block;
  background: rgba(234,156,55,0.12);
  color: var(--gold);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ============================================================
   EVENT CARDS
============================================================ */
.event-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
  cursor: pointer;
  text-decoration: none;
}

.event-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.event-card:hover .event-bg { transform: scale(1.07); }

.event-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,18,8,0.05) 0%,
    rgba(26,18,8,0.72) 55%,
    rgba(26,18,8,0.95) 100%
  );
}

.event-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px;
  color: var(--white);
}

.event-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--near-black);
  font-size: 0.7rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.event-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  margin-bottom: 8px;
  line-height: 1.15;
}

.event-desc {
  font-size: 0.84rem;
  color: rgba(235,224,203,0.82);
  line-height: 1.55;
}

.event-day {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 6px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ============================================================
   REVIEW CARDS
============================================================ */
.review-card {
  background: var(--white);
  border: 1px solid rgba(234,156,55,0.18);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.review-card:hover {
  box-shadow: var(--shadow);
  border-color: rgba(234,156,55,0.4);
}

.review-stars    { color: #fbbc04; font-size: 1.05rem; letter-spacing: 2px; margin-bottom: 14px; }
.review-text     { font-size: 0.94rem; line-height: 1.72; color: #333; margin-bottom: 18px; font-style: italic; }

.review-author   { display: flex; align-items: center; gap: 12px; }

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--amber));
  color: var(--near-black);
  font-weight: 800;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.review-name  { font-weight: 700; font-size: 0.88rem; }
.review-date  { font-size: 0.78rem; color: var(--gray-400); }

/* ============================================================
   MENU STYLES
============================================================ */
.menu-category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
  text-decoration: none;
}

.menu-cat-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform var(--transition-slow);
}

.menu-category-card:hover .menu-cat-bg { transform: scale(1.06); }

.menu-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,18,8,0.82) 0%, rgba(38,31,49,0.72) 100%);
}

.menu-cat-content {
  position: relative;
  z-index: 2;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--white);
}

.menu-cat-icon  { font-size: 2.5rem; margin-bottom: 12px; }
.menu-cat-title { font-family: var(--font-display); font-size: 1.8rem; margin-bottom: 8px; }
.menu-cat-desc  { font-size: 0.88rem; color: rgba(235,224,203,0.75); }

/* A la carte menu items */
.menu-section  { margin-bottom: 64px; }

.menu-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--gold);
}

.menu-section-icon  { font-size: 2rem; }
.menu-section-title { font-family: var(--font-display); font-size: 1.9rem; color: var(--near-black); }
.menu-section-count {
  margin-left: auto;
  background: rgba(234,156,55,0.12);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 100px;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.menu-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 1px solid transparent;
  transition: var(--transition);
}

.menu-item:hover {
  background: var(--cream);
  border-color: rgba(234,156,55,0.3);
}

.menu-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
}

.menu-item-body { flex: 1; min-width: 0; }

.menu-item-name {
  font-weight: 700;
  font-size: 0.92rem;
  margin-bottom: 4px;
  color: var(--near-black);
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--gray-600);
  line-height: 1.45;
  margin-bottom: 6px;
}

.menu-badges { display: flex; gap: 4px; flex-wrap: wrap; }

.badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 4px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-veg    { background: #e8f5e9; color: #2e7d32; }
.badge-vegan  { background: #e0f2f1; color: #00695c; }
.badge-gf     { background: #fff3e0; color: #e65100; }
.badge-spicy  { background: #fce4ec; color: #c62828; }
.badge-popular{ background: var(--near-black); color: var(--gold); }
.badge-new    { background: rgba(101,153,145,0.15); color: var(--teal); }

.menu-item-price {
  font-weight: 800;
  font-size: 1rem;
  color: var(--gold);
  white-space: nowrap;
  flex-shrink: 0;
  align-self: center;
}

/* Photo strip */
.photo-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  height: 280px;
  gap: 3px;
}

.photo-strip-item { overflow: hidden; }

.photo-strip-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.photo-strip-item:hover img { transform: scale(1.06); }

/* ============================================================
   LOCATION SECTION
============================================================ */
.location-section   { background: var(--dark); }
.location-section * { color: var(--cream); }

.map-link {
  display: block;
  width: 100%;
  height: 320px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--near-black);
  border: 2px solid rgba(234,156,55,0.2);
  transition: var(--transition);
  position: relative;
  text-decoration: none;
}

.map-link:hover { border-color: var(--gold); }

.map-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(235,224,203,0.6);
  font-size: 0.9rem;
}

.map-icon { font-size: 3.5rem; margin-bottom: 8px; }
.map-cta-badge {
  background: var(--gold);
  color: var(--near-black);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 100px;
  margin-top: 8px;
}

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(235,224,203,0.1); }
.hours-table td { padding: 11px 0; font-size: 0.9rem; color: rgba(235,224,203,0.8); }
.hours-table td:last-child { text-align: right; color: var(--gold); font-weight: 600; }
.hours-today td { color: var(--cream); font-weight: 700; }
.hours-today td:last-child { color: var(--yellow); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.contact-icon {
  font-size: 1.1rem;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  width: 24px;
}

.contact-item a:hover { color: var(--gold); }

/* ============================================================
   FORMS
============================================================ */
.form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow);
}

.form-group { margin-bottom: 22px; }

.form-label {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--near-black);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.94rem;
  color: var(--near-black);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  -webkit-appearance: none;
  appearance: none;
}

.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(234,156,55,0.85);
}

.form-control::placeholder { color: var(--gray-400); }

select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236c6c6c' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

textarea.form-control { resize: vertical; min-height: 120px; }

.form-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

.form-submit-row {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 8px;
}

.form-note { font-size: 0.8rem; color: var(--gray-600); }

/* ============================================================
   FAQ
============================================================ */
.faq-list { max-width: 860px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--gray-200); }

.faq-q {
  width: 100%;
  text-align: left;
  padding: 22px 0;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--near-black);
  cursor: pointer;
  transition: color var(--transition);
}

.faq-q:hover, .faq-item.open .faq-q { color: var(--gold); }

.faq-icon {
  font-size: 1.6rem;
  color: var(--gold);
  transition: transform var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }

.faq-a-inner {
  padding: 0 0 22px;
  font-size: 0.94rem;
  color: var(--gray-600);
  line-height: 1.75;
}

/* ============================================================
   BLOG
============================================================ */
.blog-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-xs);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: rgba(234,156,55,0.3);
}

.blog-card-img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}

.blog-card-body { padding: 18px; display: flex; flex-direction: column; flex: 1; }

.blog-cat {
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}

.blog-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--near-black);
}

.blog-teaser {
  font-size: 0.82rem;
  color: var(--gray-600);
  line-height: 1.55;
  margin-bottom: 16px;
  flex: 1;
}

.blog-meta { font-size: 0.78rem; color: var(--gray-400); margin-bottom: 14px; }

/* ============================================================
   RESERVATION PAGE
============================================================ */
.booking-methods {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.booking-method {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  border-radius: var(--radius);
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  text-decoration: none;
  color: var(--near-black);
  transition: var(--transition);
}

.booking-method:hover {
  border-color: var(--gold);
  background: var(--cream);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.booking-method-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
}

.booking-method-title { font-weight: 700; font-size: 1rem; margin-bottom: 4px; }
.booking-method-desc  { font-size: 0.84rem; color: var(--gray-600); }

/* ============================================================
   FLOATING WHATSAPP
============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
  width: 62px;
  height: 62px;
  background: var(--green-wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 24px rgba(37,211,102,0.55);
  text-decoration: none;
  transition: transform var(--transition), box-shadow var(--transition);
  animation: waFloat 3.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.12) translateY(-3px);
  box-shadow: 0 8px 36px rgba(37,211,102,0.65);
}

.whatsapp-float svg { width: 32px; height: 32px; fill: white; }

.whatsapp-tooltip {
  position: absolute;
  right: 72px;
  background: var(--near-black);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }
.whatsapp-tooltip::after {
  content: '';
  position: absolute;
  right: -5px;
  top: 50%;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: var(--near-black);
}

@keyframes waFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-7px); }
}

/* ============================================================
   STICKY BOOK BAR
============================================================ */
.sticky-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 998;
  background: rgba(26,18,8,0.96);
  backdrop-filter: blur(8px);
  border-top: 2px solid var(--gold);
  padding: 12px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.sticky-bar.visible { transform: translateY(0); }

.sticky-bar-left { display: flex; align-items: center; gap: 14px; }
.sticky-bar-text { color: var(--cream); font-size: 0.9rem; font-weight: 600; }
.sticky-bar-sub  { font-size: 0.78rem; color: rgba(235,224,203,0.55); }
.sticky-bar-btns { display: flex; gap: 10px; }

/* ============================================================
   CTA BAND
============================================================ */
.cta-band {
  background: linear-gradient(135deg, var(--near-black) 0%, var(--dark) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(234,156,55,0.08) 0%, transparent 70%);
}

.cta-band-content { position: relative; z-index: 2; }
.cta-band h2 { color: var(--cream); margin-bottom: 14px; }
.cta-band p  { color: rgba(235,224,203,0.7); margin-bottom: 36px; font-size: 1.1rem; }
.cta-band-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
============================================================ */
.footer {
  background: var(--near-black);
  color: var(--cream);
  padding: 80px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.footer-brand img { height: 50px; margin-bottom: 20px; }

.footer-brand-desc {
  font-size: 0.88rem;
  line-height: 1.72;
  color: rgba(235,224,203,0.55);
  margin-bottom: 24px;
  max-width: 280px;
}

.footer-socials { display: flex; gap: 10px; }

.footer-social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(235,224,203,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
  text-decoration: none;
}

.footer-social-btn:hover {
  background: var(--gold);
  color: var(--near-black);
  border-color: var(--gold);
}

.footer-col-title {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 22px;
}

.footer-links { display: flex; flex-direction: column; gap: 11px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(235,224,203,0.6);
  transition: color var(--transition);
}

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

.footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: rgba(235,224,203,0.6);
  margin-bottom: 13px;
}

.footer-contact-row .ico { color: var(--gold); flex-shrink: 0; margin-top: 1px; }

.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-bottom p { font-size: 0.8rem; color: rgba(235,224,203,0.62); }

.footer-legal-links { display: flex; gap: 20px; }
.footer-legal-links a { font-size: 0.8rem; color: rgba(235,224,203,0.62); transition: color var(--transition); text-decoration: underline; }
.footer-legal-links a:hover { color: var(--gold); }

.footer-rating {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(235,224,203,0.5);
  margin-top: 8px;
}

.footer-rating .stars { color: #fbbc04; }

/* ============================================================
   SCROLL ANIMATIONS
============================================================ */
.fade-up {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.fade-up.in-view { opacity: 1; transform: translateY(0); }

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }
.fade-up.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   ABOUT
============================================================ */
.about-photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 12px;
}

.about-photo-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: var(--radius);
}

.about-photo-grid img:first-child {
  grid-column: span 2;
  height: 340px;
}

/* ============================================================
   DIVIDER
============================================================ */
.divider {
  width: 60px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin: 16px 0 28px;
}

.divider-center { margin: 16px auto 28px; }

/* ============================================================
   PILL TAGS
============================================================ */
.pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 0.8rem;
  font-weight: 600;
}

.pill-gold   { background: rgba(234,156,55,0.15); color: var(--gold);  border: 1px solid rgba(234,156,55,0.35); }
.pill-teal   { background: rgba(101,153,145,0.15); color: var(--teal); border: 1px solid rgba(101,153,145,0.35); }
.pill-red    { background: rgba(149,61,65,0.12);  color: var(--red);  border: 1px solid rgba(149,61,65,0.3); }
.pill-green  { background: rgba(37,211,102,0.12); color: #1abe57;     border: 1px solid rgba(37,211,102,0.3); }

/* ============================================================
   POLICY PAGES (Privacy / Terms)
============================================================ */
.policy-body {
  max-width: 860px;
  margin: 0 auto;
  padding: 72px 28px;
}

.policy-body h2 {
  font-size: 1.5rem;
  margin: 48px 0 16px;
  color: var(--near-black);
}

.policy-body h3 {
  font-size: 1.1rem;
  font-family: var(--font-body);
  font-weight: 700;
  margin: 28px 0 10px;
  color: var(--dark);
}

.policy-body p  { margin-bottom: 16px; color: var(--gray-600); }
.policy-body ul { margin: 12px 0 20px 24px; list-style: disc; }
.policy-body ul li { margin-bottom: 8px; font-size: 0.94rem; color: var(--gray-600); }

.policy-updated {
  display: inline-block;
  background: var(--gray-100);
  font-size: 0.82rem;
  padding: 6px 14px;
  border-radius: 6px;
  color: var(--gray-600);
  margin-bottom: 32px;
}

/* ============================================================
   RESPONSIVE — 900px
============================================================ */
@media (max-width: 900px) {
  :root { --section-pad: var(--section-pad-sm); }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav { padding: 0 20px; }

  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }

  .dish-grid { grid-template-columns: repeat(2, 1fr); }

  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 36px; }

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

  .photo-strip { height: 200px; }
  .photo-strip-item:nth-child(n+4) { display: none; }
  .photo-strip { grid-template-columns: repeat(3, 1fr); }

  .booking-methods { grid-template-columns: 1fr; }

  .blog-grid { grid-template-columns: repeat(2, 1fr); }

  .about-photo-grid img { height: 200px; }
  .about-photo-grid img:first-child { height: 260px; }
}

/* ============================================================
   RESPONSIVE — 600px
============================================================ */
@media (max-width: 600px) {
  :root { --section-pad: var(--section-pad-xs); }

  .container, .container-wide, .container-narrow { padding: 0 18px; }

  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr; }
  .grid-6 { grid-template-columns: repeat(2, 1fr); }

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

  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { text-align: center; justify-content: center; }

  .value-strip .grid-3 { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .footer-legal-links { flex-wrap: wrap; gap: 12px; }

  .form-wrap { padding: 24px 18px; }

  .sticky-bar { flex-wrap: wrap; padding: 14px 16px; }
  .sticky-bar-btns { flex: 1 0 100%; }
  .sticky-bar-btns .btn { flex: 1; justify-content: center; }

  .whatsapp-float { bottom: 84px; right: 18px; width: 54px; height: 54px; }
  .whatsapp-float svg { width: 26px; height: 26px; }

  .photo-strip { grid-template-columns: 1fr; height: auto; }
  .photo-strip-item { height: 200px; display: block; }

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

  .cta-band-btns { flex-direction: column; align-items: center; }

  .menu-section-header { flex-wrap: wrap; }
  .menu-section-count { margin-left: 0; }

  .booking-method { flex-direction: column; }

  .about-photo-grid { grid-template-columns: 1fr; }
  .about-photo-grid img:first-child { grid-column: span 1; }

  .page-hero { min-height: 280px; }
}

/* Accessibility: respect reduced-motion preference (WCAG 2.2 — added in pre-launch remediation) */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
  .fade-up { opacity: 1 !important; transform: none !important; }
  .whatsapp-float, .hero-scroll, .limited-dot { animation: none !important; }
}

/* Skip link (WCAG 2.4.1 Bypass Blocks) */
.skip-link{position:absolute;left:8px;top:-48px;z-index:10000;background:var(--near-black);color:var(--cream);padding:10px 16px;border-radius:8px;font-weight:700;transition:top .15s ease}
.skip-link:focus{top:8px;outline:3px solid var(--gold)}

/* Inline form validation errors */
.field-error{display:block;color:#c0392b;font-size:0.82rem;font-weight:600;margin-top:6px}
.field-error[hidden]{display:none}
.form-control[aria-invalid="true"]{border-color:#c0392b}
