/* ========== GUD FOOD KITCHEN — v2.04 ========== */
/* Phase 8: HTML + Sanity client-side conversion for cPanel hosting */
/* Fonts: Anybody (display) + DM Sans (body) */

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

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --green: #009B3A;
  --green-dk: #006B28;
  --green-deep: #004A1B;
  --gold: #FED100;
  --gold-dk: #D4AF00;
  --gold-light: #FFF0A0;
  --cream: #FFF8E7;
  --cream-dk: #F5EDD8;
  --black: #1A1A1A;
  --black-rich: #0D0D0D;
  --red: #D62828;
  --white: #FFFFFF;
  --gray: #6B7280;
  --gray-lt: #9CA3AF;
  --display: 'Anybody', sans-serif;
  --body: 'DM Sans', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--body);
  color: var(--black);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: -1;
  background: url('https://images.unsplash.com/photo-1533035353720-f1c6a75cd8ab?w=1920&fit=crop&q=60') center/cover no-repeat;
  opacity: 0.30;
  pointer-events: none;
}

a { text-decoration: none; }
em { font-style: normal; }
img { max-width: 100%; display: block; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* ========== ANNOUNCEMENT BAR ========== */
.announce {
  background: var(--green-dk);
  color: var(--gold);
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.announce strong { color: var(--white); }
.announce a { color: var(--gold); text-decoration: underline; }

/* ========== NAV ========== */
.nav {
  background: var(--black-rich);
  padding: 10px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}
.nav-logo-img {
  height: 60px;
  width: auto;
}
.nav-links { display: flex; gap: 24px; align-items: center; }
.nav-links a {
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.03em;
  transition: color 0.3s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--gold); }
.nav-links a.active::after { width: 100%; }

/* Menu dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { display: none !important; }
.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-dropdown > a .arrow {
  font-size: 10px;
  transition: transform 0.3s;
}
.nav-dropdown:hover > a .arrow { transform: rotate(180deg); }
.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: -16px;
  background: var(--black-rich);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 8px 0;
  min-width: 200px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: all 0.3s;
  box-shadow: 0 12px 40px rgba(0,0,0,0.4);
}
.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-dropdown-menu a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: var(--cream) !important;
  transition: all 0.2s;
}
.nav-dropdown-menu a:hover {
  background: rgba(255,255,255,0.05);
  color: var(--gold) !important;
  padding-left: 24px;
}
.nav-dropdown-menu a::after { display: none !important; }

/* Order CTA */
.nav-order {
  background: var(--gold) !important;
  color: var(--black) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  font-size: 13px !important;
  transition: all 0.3s !important;
  letter-spacing: 0.02em;
}
.nav-order::after { display: none !important; }
.nav-order:hover {
  background: var(--gold-dk) !important;
  transform: scale(1.05);
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.mobile-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  margin: 6px 0;
  border-radius: 2px;
  transition: all 0.3s;
}
/* Mobile toggle open state */
.mobile-toggle-open span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.mobile-toggle-open span:nth-child(2) { opacity: 0; }
.mobile-toggle-open span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ========== BUTTONS ========== */
.btn-gold {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--gold);
  color: var(--black);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--body);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(254,209,0,0.3);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(254,209,0,0.4);
  background: var(--gold-dk);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--cream);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 500;
  font-family: var(--body);
  border: 2px solid rgba(255,248,231,0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.btn-outline:hover {
  border-color: var(--green);
  color: var(--green);
}
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  font-family: var(--body);
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}
.btn-green:hover {
  background: var(--green-dk);
  transform: translateY(-2px);
}

/* ========== SECTION HELPERS ========== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px;
  background: var(--gold);
}
.section-title {
  font-family: var(--display);
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.section-title em { color: var(--green); }
.section-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.6;
  max-width: 520px;
  font-weight: 300;
}

/* ========== PAGE HEADER (shared across sub-pages) ========== */
.page-header {
  background: var(--black-rich);
  padding: 48px 0 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 0%, rgba(0,155,58,0.1), transparent 60%),
    radial-gradient(ellipse at 80% 100%, rgba(254,209,0,0.06), transparent 50%);
}
.page-header .container { position: relative; }
.page-header h1 {
  font-family: var(--display);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  color: var(--cream);
  margin-bottom: 8px;
}
.page-header h1 em { color: var(--gold); }
.page-header p {
  font-size: 15px;
  color: var(--gray-lt);
  font-weight: 300;
  margin-top: 8px;
}
.page-header .hours-badge {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-family: var(--display);
  font-weight: 900;
  font-size: 13px;
  padding: 8px 20px;
  border-radius: 50px;
  margin-top: 12px;
}

/* ========== MENU TABS (shared across menu sub-pages) ========== */
.menu-tabs {
  background: var(--black-rich);
  padding: 0 0 20px;
  position: relative;
}
.menu-tabs .container {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
}
.menu-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  color: var(--cream);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s;
}
.menu-tab:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.2);
}
.menu-tab.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

/* "NOW SERVING" banner (cocktails page) */
.new-banner {
  background: var(--gold);
  text-align: center;
  padding: 10px;
  font-family: var(--display);
  font-weight: 900;
  font-size: 13px;
  letter-spacing: 0.08em;
  color: var(--black);
}

/* ========== JUMP THE LINE — STICKY CTA ========== */
.jump-line {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  background: var(--gold);
  color: var(--black);
  padding: 16px 28px;
  border-radius: 50px;
  font-family: var(--display);
  font-size: 15px;
  font-weight: 900;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 3px rgba(254,209,0,0.2);
  transition: all 0.3s;
  letter-spacing: 0.02em;
  animation: pulseGlow 3s ease-in-out infinite;
}
.jump-line:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 40px rgba(254,209,0,0.4);
}
.jump-line span { margin-right: 6px; }
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 3px rgba(254,209,0,0.2); }
  50% { box-shadow: 0 8px 32px rgba(0,0,0,0.25), 0 0 0 6px rgba(254,209,0,0.15); }
}

/* ========== FOOTER ========== */
.footer {
  background: var(--black-rich);
  padding: 80px 0 40px;
  color: var(--cream);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand {
  margin-bottom: 16px;
}
.footer-logo-img {
  height: 72px;
  width: auto;
}
.footer-tagline {
  font-size: 15px;
  color: var(--gray-lt);
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 300px;
}
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  font-size: 14px;
  transition: all 0.3s;
}
.footer-social a:hover {
  background: var(--green);
  transform: translateY(-2px);
}
.footer-col h4 {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
.footer-col a, .footer-col p {
  display: block;
  font-size: 14px;
  color: var(--gray-lt);
  margin-bottom: 10px;
  transition: color 0.3s;
  line-height: 1.5;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  color: var(--gray);
}

/* ========== SCROLL REVEAL ========== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ================================================================ */
/* ========== HOMEPAGE STYLES (Phase 2) ========== */
/* ================================================================ */

/* Video styles */
video.hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}

/* HERO — compact, punchy */
.hero {
  position: relative;
  padding: 60px 0 48px;
  background: var(--black-rich);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 30%, rgba(0,155,58,0.12) 0%, transparent 60%),
    radial-gradient(ellipse at 30% 80%, rgba(254,209,0,0.08) 0%, transparent 50%);
}
.hero .container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-text { animation: fadeUp 0.8s ease-out; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,155,58,0.15);
  border: 1px solid rgba(0,155,58,0.3);
  color: var(--green);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 16px;
  letter-spacing: -0.03em;
}
.hero h1 em {
  color: var(--gold);
}
.hero-desc {
  font-size: 16px;
  color: var(--gray-lt);
  line-height: 1.7;
  margin-bottom: 24px;
  max-width: 440px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeUp 0.8s ease-out 0.2s both;
}
.hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 20px;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
}
.hero-float {
  position: absolute;
  top: -12px;
  right: -12px;
  background: var(--gold);
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--display);
  font-weight: 900;
  font-size: 12px;
  text-align: center;
  line-height: 1.2;
  color: var(--black);
  box-shadow: 0 8px 24px rgba(254,209,0,0.3);
  animation: bounce 3s ease-in-out infinite;
}

/* ========== HOURS STRIP ========== */
.hours-strip {
  background: var(--green-dk);
  padding: 16px 0;
}
.hours-strip .container {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.hours-item {
  font-size: 13px;
  color: var(--cream);
}
.hours-item strong { color: var(--gold); }
.hours-item.closed strong { color: #E84545; }
.hours-dot {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,0.25);
}

/* ========== OUR FAVORITES ========== */
.favorites {
  padding: 80px 0;
}
.favorites-header {
  margin-bottom: 40px;
}
.favorites-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.fav-card {
  background: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.06);
  transition: all 0.4s;
}
.fav-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0,0,0,0.12);
}
.fav-card-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}
.fav-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.fav-card:hover .fav-card-img img { transform: scale(1.06); }
.fav-card-tag {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--green);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 50px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.fav-card-tag.signature { background: var(--red); }
.fav-card-tag.fav-tag-new { background: var(--gold); color: var(--black); }
.fav-card-body { padding: 18px; }
.fav-card-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}
.fav-card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 12px;
}
.fav-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.fav-card-price {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
  color: var(--green-dk);
}
.fav-card-price span {
  font-size: 12px;
  font-weight: 400;
  color: var(--gray);
  font-family: var(--body);
}
.fav-card-order {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--body);
  transition: all 0.3s;
}
.fav-card-order:hover { background: var(--gold-dk); transform: scale(1.05); }

/* ========== COCKTAILS SPOTLIGHT ========== */
.cocktails-spot {
  padding: 80px 0;
  background: var(--cream-dk);
  position: relative;
}
.cocktails-spot .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.cocktails-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0,155,58,0.1);
  border: 1px solid var(--green);
  color: var(--green-dk);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.cocktails-title {
  font-family: var(--display);
  font-size: clamp(28px, 3.5vw, 40px);
  font-weight: 900;
  color: var(--black);
  line-height: 1.1;
  margin-bottom: 16px;
}
.cocktails-title em { color: var(--green); }
.cocktails-desc {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 28px;
}
.cocktails-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 24px;
}
.cocktail-mini {
  background: var(--white);
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.cocktail-mini-name {
  font-family: var(--display);
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
}
.cocktail-mini-desc {
  font-size: 12px;
  color: var(--gray);
  line-height: 1.4;
}
.cocktail-mini-price {
  font-family: var(--display);
  font-weight: 900;
  color: var(--green-dk);
  margin-top: 6px;
  font-size: 15px;
}
.cocktails-visual {
  position: relative;
}
.cocktails-visual img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}
.cocktails-visual .new-badge {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--gold);
  color: var(--black);
  font-family: var(--display);
  font-weight: 900;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 50px;
  letter-spacing: 0.05em;
  box-shadow: 0 4px 16px rgba(254,209,0,0.3);
}

/* ========== ABOUT PREVIEW (homepage) ========== */
.about-preview {
  padding: 80px 0;
  background: var(--black-rich);
  position: relative;
  overflow: hidden;
}
.about-preview::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(0,155,58,0.06) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 80%, rgba(254,209,0,0.04) 0%, transparent 50%);
}
.about-preview .container {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-preview .about-img {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.about-preview .about-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.about-text .section-label { color: var(--gold); }
.about-text .section-label::before { background: var(--green); }
.about-text .section-title { color: var(--cream); }
.about-text .section-title em { color: var(--gold); }
.about-motto {
  font-family: var(--display);
  font-size: 17px;
  color: var(--gold-light);
  margin-bottom: 20px;
  padding-left: 16px;
  border-left: 3px solid var(--green);
  line-height: 1.6;
}
.about-body {
  font-size: 15px;
  color: var(--gray-lt);
  line-height: 1.8;
  margin-bottom: 24px;
}
.about-body strong { color: var(--gold); }
.about-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-weight: 600;
  font-size: 14px;
  transition: gap 0.3s;
}
.about-link:hover { gap: 14px; }

/* ========== REVIEWS ========== */
.reviews {
  padding: 80px 0;
}
.reviews-header {
  text-align: center;
  margin-bottom: 48px;
}
.reviews-header .section-label { justify-content: center; }
.reviews-header .section-desc { margin: 0 auto; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.review-stars {
  color: var(--gold);
  font-size: 16px;
  margin-bottom: 12px;
}
.review-text {
  font-size: 14px;
  color: var(--black);
  line-height: 1.6;
  margin-bottom: 16px;
}
.review-author {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
}
.review-source {
  font-size: 11px;
  color: var(--gray-lt);
  margin-top: 2px;
}

/* ========== CATERING CTA (homepage) ========== */
.cta-bar {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--green-dk), var(--green-deep));
  position: relative;
  overflow: hidden;
}
.cta-bar::before {
  content: '';
  position: absolute;
  top: -50%; right: -20%;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(254,209,0,0.08), transparent 70%);
}
.cta-bar .container {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.cta-bar h2 {
  font-family: var(--display);
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.2;
}
.cta-bar h2 em { color: var(--gold); }
.cta-bar p {
  font-size: 15px;
  color: rgba(255,255,255,0.8);
  max-width: 400px;
  margin-top: 8px;
}

/* ========== ANIMATIONS ========== */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}


/* ================================================================ */
/* ========== ABOUT PAGE STYLES (Phase 2) ========== */
/* ================================================================ */

.about-page { padding: 80px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-bottom: 80px;
}
.about-grid.reverse { direction: rtl; }
.about-grid.reverse > * { direction: ltr; }
.about-img-wrap img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.1);
}
.about-content h2 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.1;
}
.about-content h2 em { color: var(--green); }
.about-content p {
  font-size: 16px;
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
}
.about-content p strong { color: var(--black); }
.about-motto-block {
  font-family: var(--display);
  font-size: 20px;
  color: var(--green-dk);
  padding: 24px;
  border-left: 4px solid var(--gold);
  background: var(--cream-dk);
  border-radius: 0 12px 12px 0;
  margin: 24px 0;
}

/* Values section */
.values {
  background: var(--black-rich);
  padding: 80px 0;
}
.values-header {
  text-align: center;
  margin-bottom: 48px;
}
.values-header h2 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 900;
  color: var(--cream);
}
.values-header h2 em { color: var(--gold); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
}
.value-icon { font-size: 40px; margin-bottom: 16px; }
.value-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 8px;
}
.value-desc {
  font-size: 14px;
  color: var(--gray-lt);
  line-height: 1.6;
}


/* ================================================================ */
/* ========== MENU PAGE STYLES (Phase 3) ========== */
/* ================================================================ */

/* Sticky Category Pills */
.cat-nav {
  position: sticky;
  top: 52px;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  padding: 12px 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.cat-nav::-webkit-scrollbar { display: none; }
.cat-nav .container {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: max-content;
}
.cat-pill {
  display: inline-block;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray);
  background: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  transition: all 0.3s;
  white-space: nowrap;
  cursor: pointer;
}
.cat-pill:hover, .cat-pill.active {
  background: var(--green);
  color: var(--white);
  border-color: var(--green);
}

/* Jump the Line Bar */
.order-bar {
  background: var(--green-dk);
  padding: 14px 0;
  text-align: center;
  position: sticky;
  top: 52px;
  z-index: 49;
}
.order-bar .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.order-bar p {
  color: var(--cream);
  font-size: 14px;
  font-weight: 500;
}
.order-bar .btn-gold {
  padding: 10px 24px;
  font-size: 13px;
}

/* Menu Section */
.menu-section {
  padding: 48px 0 80px;
}
.menu-category {
  margin-bottom: 48px;
  scroll-margin-top: 140px;
}
.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--green);
}
.menu-cat-icon { font-size: 24px; }
.menu-cat-name {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  color: #C4453A;
}
.menu-cat-count {
  font-size: 12px;
  color: var(--gray);
  background: var(--cream-dk);
  padding: 3px 10px;
  border-radius: 50px;
  font-weight: 500;
}

/* Menu Items */
.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  border-radius: 12px;
  transition: background 0.2s;
}
.menu-item:hover { background: rgba(0, 155, 58, 0.06); }
.menu-item-info { flex: 1; }
.menu-item-name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-item-tag {
  font-size: 9px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--body);
}
.tag-signature { background: var(--red); color: var(--white); }
.tag-popular { background: var(--green); color: var(--white); }
.tag-new { background: var(--gold); color: var(--black); }
.tag-hot { background: #FF6B35; color: var(--white); }
.tag-vegan { background: #2D8B4E; color: var(--white); }
.tag-weekend { background: var(--gray); color: var(--white); }
.menu-item-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
}
.menu-item-price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 17px;
  color: var(--green-dk);
  white-space: nowrap;
}
.menu-item-price small {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--gray);
  font-family: var(--body);
}
.menu-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}
.menu-item-order {
  background: var(--gold);
  color: var(--black);
  border: none;
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--body);
  transition: all 0.3s;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item-order:hover { background: var(--gold-dk); transform: scale(1.05); }

/* Delivery Partners */
.delivery-bar {
  padding: 40px 0;
  background: var(--cream-dk);
  text-align: center;
}
.delivery-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--gray);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.delivery-logos {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.delivery-logo {
  padding: 10px 24px;
  background: var(--white);
  border-radius: 10px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 16px;
  color: var(--gray);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.delivery-logo:hover {
  transform: translateY(-2px);
  color: var(--black);
}


/* ================================================================ */
/* ========== COCKTAILS PAGE STYLES (Phase 4) ========== */
/* ================================================================ */

.cocktails-page { padding: 60px 0 80px; }
.cocktail-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  max-width: 900px;
  margin: 0 auto;
}
.cocktail-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  transition: all 0.3s;
}
.cocktail-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}
.cocktail-card-name {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.cocktail-card-name .icon { font-size: 20px; }
.cocktail-card-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.5;
  margin-bottom: 10px;
}
.cocktail-card-price {
  font-family: var(--display);
  font-weight: 900;
  color: var(--green-dk);
  font-size: 18px;
}
.cocktail-note {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  padding: 24px;
  background: var(--cream-dk);
  border-radius: 12px;
}

/* ================================================================ */
/* ========== HAPPY HOUR PAGE STYLES (Phase 4) ========== */
/* ================================================================ */

.hh-page { padding: 60px 0 80px; }
.hh-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}
.hh-section h3 {
  font-family: var(--display);
  font-size: 20px;
  font-weight: 900;
  color: var(--green-dk);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
.hh-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dotted rgba(0,0,0,0.08);
}
.hh-item-name { font-weight: 600; font-size: 15px; }
.hh-item-price {
  font-family: var(--display);
  font-weight: 900;
  color: var(--green-dk);
}
.hh-item-price .was {
  text-decoration: line-through;
  color: var(--gray-lt);
  font-size: 12px;
  font-weight: 400;
  margin-right: 6px;
  font-family: var(--body);
}
.hh-note {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  padding: 24px;
  background: var(--cream-dk);
  border-radius: 12px;
}

/* ================================================================ */
/* ========== LUNCH SPECIALS PAGE STYLES (Phase 4) ========== */
/* ================================================================ */

.lunch-page { padding: 60px 0 80px; }
.lunch-grid {
  max-width: 700px;
  margin: 0 auto;
}
.lunch-deal {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: all 0.3s;
}
.lunch-deal:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}
.lunch-deal-name {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 4px;
}
.lunch-deal-desc {
  font-size: 13px;
  color: var(--gray);
  line-height: 1.4;
}
.lunch-deal-price {
  font-family: var(--display);
  font-weight: 900;
  font-size: 22px;
  color: var(--green-dk);
  white-space: nowrap;
}
.lunch-note {
  text-align: center;
  max-width: 600px;
  margin: 40px auto 0;
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
  padding: 24px;
  background: var(--cream-dk);
  border-radius: 12px;
}

/* Lunch Deal Order Button */
.lunch-deal-bottom {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
}
.lunch-deal-bottom .jump-the-line {
  padding: 8px 20px;
  font-size: 13px;
}


/* ========== CATERING GALLERY (Phase 7b) ========== */

.catering-gallery {
  padding: 48px 0 0;
}
.catering-gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 16px;
  border-radius: 20px;
  overflow: hidden;
}
.catering-gallery-large {
  overflow: hidden;
  border-radius: 16px;
}
.catering-gallery-large img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}
.catering-gallery-small {
  display: grid;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 16px;
}
.catering-gallery-small img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  aspect-ratio: 2 / 1;
}

/* ================================================================ */
/* ========== CATERING PAGE STYLES (Phase 5) ========== */
/* ================================================================ */

/* Green variant page header */
.page-header-green {
  background: linear-gradient(135deg, var(--green-dk), var(--green-deep));
  padding: 60px 0;
}
.page-header-green::before { display: none; }
.page-header-green h1 { color: var(--white); }
.page-header-green h1 em { color: var(--gold); }
.page-header-green p {
  font-size: 16px;
  color: rgba(255,255,255,0.8);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.catering-page { padding: 80px 0; }
.catering-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.catering-info h2 {
  font-family: var(--display);
  font-size: 28px;
  font-weight: 900;
  margin-bottom: 16px;
}
.catering-info h2 em { color: var(--green); }
.catering-info p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.7;
  margin-bottom: 16px;
}
.catering-types { margin: 24px 0; }
.catering-type {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  background: var(--cream-dk);
  border-radius: 12px;
}
.catering-type-icon { font-size: 24px; flex-shrink: 0; }
.catering-type-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 15px;
  margin-bottom: 2px;
}
.catering-type-desc { font-size: 13px; color: var(--gray); }

.catering-form {
  background: var(--white);
  border-radius: 20px;
  padding: 36px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}
.catering-form h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 24px;
}
.form-group { margin-bottom: 16px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(0,0,0,0.1);
  border-radius: 10px;
  font-family: var(--body);
  font-size: 14px;
  background: var(--cream);
  transition: border-color 0.3s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--green);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.catering-submit {
  width: 100%;
  justify-content: center;
}

.form-success {
  text-align: center;
  padding: 40px 20px;
}
.form-success-icon { font-size: 48px; margin-bottom: 16px; }
.form-success h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 12px;
  color: var(--green-dk);
}
.form-success p {
  font-size: 15px;
  color: var(--gray);
  line-height: 1.6;
}

/* ================================================================ */
/* ========== CONTACT PAGE STYLES (Phase 5) ========== */
/* ================================================================ */

.contact-page { padding: 80px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-card {
  background: var(--white);
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.contact-card-icon { font-size: 28px; margin-bottom: 12px; }
.contact-card-title {
  font-family: var(--display);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 8px;
}
.contact-card-text {
  font-size: 14px;
  color: var(--gray);
  line-height: 1.6;
}
.contact-card-text a {
  color: var(--green);
  font-weight: 600;
}
.contact-card-text strong { color: var(--black); }

.map-container {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.hours-table { width: 100%; margin-top: 16px; }
.hours-table tr td {
  padding: 8px 0;
  font-size: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}
.hours-table tr td:first-child {
  font-weight: 600;
  color: var(--black);
}
.hours-table tr td:last-child {
  text-align: right;
  color: var(--gray);
}
.hours-table tr.closed td:last-child {
  color: var(--red);
  font-weight: 600;
}


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

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  /* Nav */
  .nav-links { display: none; }
  .nav-links-open {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black-rich);
    padding: 24px;
    gap: 16px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4);
  }
  .nav-links-open .nav-dropdown-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    padding-left: 16px;
  }
  .mobile-toggle { display: block; }

  /* Homepage */
  .hero .container { grid-template-columns: 1fr; gap: 32px; }
  .hero-visual { order: -1; }
  .favorites-grid { grid-template-columns: 1fr; }
  .cocktails-spot .container { grid-template-columns: 1fr; }
  .cocktails-preview { grid-template-columns: 1fr; }
  .about-preview .container { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .cta-bar .container { flex-direction: column; text-align: center; }

  /* About page */
  .about-grid, .about-grid.reverse { grid-template-columns: 1fr; direction: ltr; }
  .values-grid { grid-template-columns: 1fr; }

  /* Menu page */
  .menu-items { grid-template-columns: 1fr; }
  .menu-tabs .container { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; }
  .cat-nav .container { justify-content: flex-start; }
  .order-bar .container { flex-direction: column; gap: 8px; }

  /* Cocktails page */
  .cocktail-grid { grid-template-columns: 1fr; }

  /* Happy Hour page */
  .hh-grid { grid-template-columns: 1fr; }

  /* Catering page */
  .catering-gallery-grid { grid-template-columns: 1fr; }
  .catering-gallery-small { grid-template-rows: auto; grid-template-columns: 1fr 1fr 1fr; }
  .catering-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }

  /* Contact page */
  .contact-grid { grid-template-columns: 1fr; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  /* Jump the Line */
  .jump-line { bottom: 16px; right: 16px; padding: 14px 22px; font-size: 13px; }
}

/* ===================== */
/* v2.05 NEW STYLES      */
/* ===================== */

/* Menu category subtitle */
.menu-cat-subtitle {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #6b7c5e;
  margin: -8px 0 16px 0;
  font-style: italic;
}

/* Uniform Sm / Lg price display */
.price-size {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6b7c5e;
}
.price-divider {
  color: #ccc;
  margin: 0 4px;
  font-weight: 400;
}

/* Menu notice bar */
.menu-notice {
  background: #f5efe6;
  border-top: 1px solid #e0d6c8;
  border-bottom: 1px solid #e0d6c8;
  padding: 16px 0;
  text-align: center;
}
.menu-notice p {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #6b7c5e;
  margin: 0;
  font-style: italic;
}

/* === BAR / COCKTAILS PAGE === */
.bar-page {
  padding: 60px 0 40px;
}
.bar-section {
  margin-bottom: 48px;
}
.bar-section-title {
  font-family: 'Anybody', serif;
  font-size: 28px;
  color: #1a3c2a;
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 2px solid #c8a94e;
}
.bar-tier {
  background: #f9f5ee;
  border: 1px solid #e0d6c8;
  border-radius: 12px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.bar-tier-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.bar-tier-name {
  font-family: 'Anybody', serif;
  font-size: 20px;
  color: #1a3c2a;
  margin: 0;
}
.bar-tier-price {
  font-family: 'Anybody', serif;
  font-size: 24px;
  font-weight: 700;
  color: #c8a94e;
}
.bar-tier-brands {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #5a6b50;
  line-height: 1.6;
}
.bar-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 12px;
}
.bar-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;
  background: #f9f5ee;
  border: 1px solid #e0d6c8;
  border-radius: 8px;
}
.bar-item-name {
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #1a3c2a;
}
.bar-item-price {
  font-family: 'Anybody', serif;
  font-weight: 700;
  font-size: 16px;
  color: #c8a94e;
}
.bar-note {
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #6b7c5e;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid #e0d6c8;
  font-style: italic;
}

/* === UPDATED HAPPY HOUR === */
.hh-price-banner {
  font-family: 'Anybody', serif;
  font-size: 48px;
  font-weight: 800;
  color: #c8a94e;
  margin-bottom: 4px;
  line-height: 1;
}
.hh-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hh-featured {
  background: linear-gradient(135deg, #1a3c2a 0%, #2d5a3f 100%);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
}
.hh-featured h3 {
  color: #c8a94e;
}
.hh-featured-item {
  margin-top: 16px;
}
.hh-featured-name {
  font-family: 'Anybody', serif;
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}
.hh-featured-price {
  font-family: 'Anybody', serif;
  font-size: 36px;
  font-weight: 800;
  color: #c8a94e;
}
.hh-featured-time {
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* === CATERING MENU STYLES === */
.catering-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
  padding: 40px 0;
}
.catering-intro h2 {
  font-family: 'Anybody', serif;
  font-size: 32px;
  color: #1a3c2a;
  margin-bottom: 16px;
}
.catering-intro p {
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  color: #5a6b50;
  line-height: 1.7;
  margin-bottom: 24px;
}
.catering-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 28px;
}
.catering-badge {
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  background: #1a3c2a;
  color: #fff;
}
.catering-pan-info {
  display: flex;
  justify-content: center;
  gap: 32px;
}
.catering-pan {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #1a3c2a;
  padding: 12px 24px;
  background: #f0ebe2;
  border-radius: 8px;
}
.catering-pan strong {
  display: block;
  font-size: 16px;
  color: #c8a94e;
}
.catering-menu {
  padding: 40px 0 60px;
}
.catering-menu-title {
  font-family: 'Anybody', serif;
  font-size: 32px;
  color: #1a3c2a;
  text-align: center;
  margin-bottom: 40px;
}
.catering-cat {
  margin-bottom: 32px;
}
.catering-cat-name {
  font-family: 'Anybody', serif;
  font-size: 22px;
  color: #1a3c2a;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #c8a94e;
}
.catering-items {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.catering-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: #f9f5ee;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #1a3c2a;
}
.catering-item span:last-child {
  font-family: 'Anybody', serif;
  font-weight: 700;
  color: #c8a94e;
  font-size: 16px;
}
.catering-table {
  width: 100%;
}
.catering-table-head {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  gap: 8px;
  padding: 10px 16px;
  background: #1a3c2a;
  border-radius: 8px 8px 0 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #c8a94e;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.catering-table-head span:not(:first-child) {
  text-align: center;
}
.catering-table-row {
  display: grid;
  grid-template-columns: 1fr 100px 100px;
  gap: 8px;
  padding: 12px 16px;
  border-bottom: 1px solid #e0d6c8;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #1a3c2a;
}
.catering-table-row span:not(:first-child) {
  text-align: center;
  font-family: 'Anybody', serif;
  font-weight: 700;
  color: #c8a94e;
}
.catering-table-row:last-child {
  border-bottom: none;
}
.catering-table-row:nth-child(odd) {
  background: #f9f5ee;
}

/* Catering order section */
.catering-order {
  padding: 60px 0;
  background: #f5efe6;
}
.catering-order-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 24px;
}
.catering-detail {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: #5a6b50;
}
.catering-detail strong {
  display: block;
  font-size: 16px;
  color: #1a3c2a;
  margin-bottom: 4px;
}
.catering-phone {
  font-family: 'Anybody', serif;
  font-size: 24px;
  font-weight: 700;
  color: #c8a94e;
  text-decoration: none;
  display: block;
  margin-top: 4px;
}
.catering-phone:hover {
  color: #1a3c2a;
}

/* Mobile for new sections */
@media (max-width: 768px) {
  .bar-grid { grid-template-columns: 1fr; }
  .catering-pan-info { flex-direction: column; gap: 12px; align-items: center; }
  .catering-table-head,
  .catering-table-row { grid-template-columns: 1fr 80px 80px; font-size: 13px; }
  .catering-table-head { font-size: 11px; }
  .hh-featured-name { font-size: 22px; }
  .hh-featured-price { font-size: 28px; }
  .hh-price-banner { font-size: 36px; }
}
