/* ==========================================
   ROYAL TANDOOR — PREMIUM DESIGN SYSTEM
   ========================================== */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600;700&family=Cinzel:wght@400;600;700&display=swap');

/* === DARK THEME (default) === */
:root {
  --color-bg: #080808;
  --color-surface: #111111;
  --color-surface2: #1a1a1a;
  --color-surface3: #222222;
  --color-gold: #d4a853;
  --color-gold-lt: #e8c574;
  --color-gold-dk: #b8893c;
  --color-gold-glow: rgba(212, 168, 83, 0.15);
  --color-text: #f0ece4;
  --color-text-muted: #a09880;
  --color-border: rgba(212, 168, 83, 0.25);
  --color-overlay: rgba(8, 8, 8, 0.72);
  --color-card-bg: #111111;
  --color-input-bg: #1a1a1a;
  --color-btn-text: #0a0a0a;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Cinzel', 'Playfair Display', serif;
  --font-body: 'Inter', system-ui, sans-serif;

  --navbar-h: 80px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
  --radius-lg: 20px;
  --shadow-gold: 0 8px 40px rgba(212, 168, 83, 0.2);
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.6);
}

/* === LIGHT THEME === */
[data-theme="light"] {
  --color-bg: #f8f5f0;
  --color-surface: #ffffff;
  --color-surface2: #f1ede6;
  --color-surface3: #e8e2d8;
  --color-gold: #b8893c;
  --color-gold-lt: #d4a853;
  --color-gold-dk: #96702e;
  --color-gold-glow: rgba(184, 137, 60, 0.12);
  --color-text: #1a1410;
  --color-text-muted: #6b5d4d;
  --color-border: rgba(184, 137, 60, 0.3);
  --color-overlay: rgba(248, 245, 240, 0.72);
  --color-card-bg: #ffffff;
  --color-input-bg: #ffffff;
  --color-btn-text: #ffffff;
  --shadow-card: 0 4px 30px rgba(0, 0, 0, 0.1);
}

/* ==========================================
   RESET & BASE
   ========================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  transition: background var(--transition), color var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

/* ==========================================
   TYPOGRAPHY
   ========================================== */
.display-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.75rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--color-gold);
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700;
  line-height: 1.2;
}

.gold-text {
  color: var(--color-gold);
}

/* ==========================================
   LAYOUT HELPERS
   ========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header .section-label {
  display: inline-block;
  margin-bottom: 12px;
}

.section-header .section-title {
  margin-bottom: 16px;
}

.gold-divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  margin: 20px auto 0;
}

/* ==========================================
   ICON (inline SVG helper)
   ========================================== */
.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-sm {
  width: 16px;
  height: 16px;
}

.icon-lg {
  width: 24px;
  height: 24px;
}

.icon-xl {
  width: 32px;
  height: 32px;
}

.icon-fill svg {
  fill: currentColor;
  stroke: none;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 4px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-gold {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-lt) 50%, var(--color-gold) 100%);
  background-size: 200% auto;
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.4);
}

.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.6);
  color: #0a0a0a;
}

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--color-gold);
  color: var(--color-gold);
}

.btn-outline:hover {
  background: var(--color-gold-glow);
  transform: translateY(-2px);
  box-shadow: 0 0 20px var(--color-gold-glow);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.14);
  transform: translateY(-2px);
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--navbar-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
}

.navbar.scrolled {
  background: rgba(8, 8, 8, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--color-border);
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(248, 245, 240, 0.94);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 32px;
  max-width: 1300px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 2px 8px rgba(212, 168, 83, 0.3));
  transition: filter var(--transition);
}

.nav-logo:hover img {
  filter: drop-shadow(0 4px 14px rgba(212, 168, 83, 0.6));
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  position: relative;
  padding: 8px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(240, 236, 228, 0.82);
  transition: color var(--transition);
}

[data-theme="light"] .nav-links a {
  color: rgba(26, 20, 16, 0.7);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 16px;
  right: 16px;
  height: 1.5px;
  background: var(--color-gold);
  transform: scaleX(0);
  transition: transform var(--transition);
  transform-origin: center;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--color-text);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

/* Dropdown */
.nav-dropdown {
  position: relative;
}

.nav-dropdown-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}

.nav-dropdown-toggle svg {
  transition: transform var(--transition);
}

.nav-dropdown:hover .nav-dropdown-toggle svg {
  transform: rotate(180deg);
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: rgba(17, 17, 17, 0.97);
  backdrop-filter: blur(20px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 8px;
  min-width: 200px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
  box-shadow: var(--shadow-card);
}

[data-theme="light"] .nav-dropdown-menu {
  background: rgba(255, 255, 255, 0.97);
}

.nav-dropdown:hover .nav-dropdown-menu {
  opacity: 1;
  pointer-events: all;
  transform: translateX(-50%) translateY(0);
}

.nav-dropdown-menu a {
  display: block;
  padding: 10px 16px;
  font-size: 0.85rem;
  border-radius: 6px;
  color: var(--color-text-muted);
  transition: background var(--transition), color var(--transition);
}

.nav-dropdown-menu a:hover {
  background: var(--color-gold-glow);
  color: var(--color-gold);
}

.nav-dropdown-menu a::after {
  display: none;
}

/* Nav Actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

/* Theme Toggle */
.theme-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: 100px;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  transition: var(--transition);
}

.theme-toggle-thumb {
  position: absolute;
  left: 3px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--color-gold);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle-thumb svg {
  width: 12px;
  height: 12px;
  fill: #0a0a0a;
  stroke: none;
}

[data-theme="light"] .theme-toggle-thumb {
  left: calc(100% - 21px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  border: none;
  background: none;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-text);
  border-radius: 2px;
  transition: var(--transition);
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--navbar-h);
  left: 0;
  right: 0;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--color-border);
  padding: 20px 24px 30px;
  z-index: 999;
  flex-direction: column;
  gap: 4px;
  transform: translateY(-10px);
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}

[data-theme="light"] .mobile-nav {
  background: rgba(248, 245, 240, 0.97);
}

.mobile-nav.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  display: flex;
}

.mobile-nav a {
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-text-muted);
  border-radius: 8px;
  transition: var(--transition);
}

.mobile-nav a:hover {
  background: var(--color-gold-glow);
  color: var(--color-gold);
}

.mobile-nav .btn {
  margin-top: 12px;
  width: 100%;
  justify-content: center;
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

#heroCanvas {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.05);
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-bg-gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
}

@keyframes heroZoom {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.12);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
      rgba(8, 8, 8, 0.5) 0%,
      rgba(8, 8, 8, 0.35) 40%,
      rgba(8, 8, 8, 0.65) 80%,
      rgba(8, 8, 8, 0.9) 100%);
  z-index: 1;
}

[data-theme="light"] .hero-overlay {
  background: linear-gradient(180deg,
      rgba(0, 0, 0, 0.35) 0%,
      rgba(0, 0, 0, 0.2) 40%,
      rgba(0, 0, 0, 0.5) 80%,
      rgba(0, 0, 0, 0.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 100px 24px 40px;
  /* Added top padding to offset fixed navbar */
  max-width: 860px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-logo {
  width: 120px;
  height: auto;
  margin: 0 auto 24px;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.5));
  animation: fadeDown 1s ease 0.1s both;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border: 1px solid var(--color-gold);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--color-gold);
  background: rgba(212, 168, 83, 0.06);
  margin-bottom: 24px;
  animation: fadeDown 1s ease 0.2s both;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-weight: 800;
  line-height: 1.08;
  color: #fff;
  margin-bottom: 22px;
  animation: fadeUp 1s ease 0.4s both;
  text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.hero-title .gold-word {
  color: var(--color-gold);
  font-style: italic;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(240, 236, 228, 0.78);
  max-width: 600px;
  margin: 0 auto 38px;
  font-weight: 300;
  animation: fadeUp 1s ease 0.6s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 1s ease 0.8s both;
}

.hero-scroll-hint {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeUp 1s ease 1.2s both;
}

.scroll-line {
  width: 1.5px;
  height: 48px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scaleY(0.6);
    transform-origin: top;
  }

  50% {
    opacity: 1;
    transform: scaleY(1);
    transform-origin: top;
  }
}

@keyframes fadeDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subpage {
  min-height: 60vh;
}

/* ==========================================
   GOLD ORNAMENT
   ========================================== */
.gold-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}

.gold-ornament-line {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--color-gold));
}

.gold-ornament-line.right {
  background: linear-gradient(90deg, var(--color-gold), transparent);
}

.gold-ornament-diamond {
  width: 8px;
  height: 8px;
  background: var(--color-gold);
  transform: rotate(45deg);
}

/* ==========================================
   ABOUT SECTION
   ========================================== */
.about-section {
  background: var(--color-bg);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  position: relative;
}

.about-image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--color-surface2);
}

.about-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-badge {
  position: absolute;
  bottom: 28px;
  right: -20px;
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dk) 100%);
  color: #0a0a0a;
  padding: 20px 24px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow-gold);
}

.about-badge-number {
  display: block;
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.about-badge-text {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.about-description {
  font-size: 1.05rem;
  color: var(--color-text-muted);
  margin-bottom: 20px;
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 32px 0;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.about-feature-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-gold-glow);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.about-feature-text {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  font-weight: 500;
  line-height: 1.4;
}

/* ==========================================
   BRANCHES SECTION
   ========================================== */
.branches-section {
  background: var(--color-surface);
}

.branches-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}

.branch-card {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.branch-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: var(--color-gold);
}

.branch-map {
  width: 100%;
  height: 240px;
  border: none;
  display: block;
}

.branch-info {
  padding: 28px;
}

.branch-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 4px;
}

.branch-subtitle {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 20px;
}

.branch-details {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.branch-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.branch-detail-icon {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--color-gold);
}

.branch-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
  background: var(--color-bg);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--color-surface);
  border: 1px solid rgba(212, 168, 83, 0.1);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: var(--color-border);
  box-shadow: var(--shadow-card);
  background: var(--color-surface2);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--color-gold-glow);
  border: 1px solid var(--color-border);
  margin-bottom: 22px;
  color: var(--color-gold);
}

.service-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 14px;
}

.service-description {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.7;
}

/* ==========================================
   MENU PAGE
   ========================================== */
.menu-nav {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.menu-nav-btn {
  padding: 10px 22px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.menu-nav-btn:hover,
.menu-nav-btn.active {
  background: var(--color-gold-glow);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.menu-category {
  margin-bottom: 64px;
}

.menu-category:last-child {
  margin-bottom: 0;
}

.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-gold);
}

.menu-category-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.menu-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-surface);
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}

.menu-item:hover {
  border-color: var(--color-border);
  background: var(--color-surface2);
  transform: translateY(-2px);
}

.menu-item-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 6px;
}

.menu-item-badges {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.menu-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.menu-badge-veg {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
}

.menu-badge-spicy {
  background: rgba(244, 67, 54, 0.15);
  color: #f44336;
}

.menu-badge-popular {
  background: var(--color-gold-glow);
  color: var(--color-gold);
}

.menu-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-gold);
  white-space: nowrap;
}

/* New-style menu grid and card classes (used in menu.html) */
.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.menu-item-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-surface);
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}

.menu-item-card:hover {
  border-color: var(--color-border);
  background: var(--color-surface2);
  transform: translateY(-2px);
}

.menu-item-left {
  flex: 1;
  min-width: 0;
}

.menu-item-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 4px;
}

.badge-veg {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
}

.badge-spicy {
  background: rgba(244, 67, 54, 0.15);
  color: #f44336;
}

.badge-popular,
.badge-bestseller {
  background: var(--color-gold-glow);
  color: var(--color-gold);
}

/* ==========================================
   CTA BANNER
   ========================================== */
.cta-banner {
  background:
    radial-gradient(ellipse at 30% 50%, var(--color-gold-glow) 0%, transparent 70%),
    var(--color-surface);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 72px 24px;
  text-align: center;
}

.cta-banner h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  margin-bottom: 14px;
}

.cta-banner p {
  color: var(--color-text-muted);
  font-size: 1.05rem;
  margin-bottom: 32px;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}

.contact-branches {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-branch-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}

.contact-branch-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}

.contact-branch-map {
  width: 100%;
  height: 200px;
  border: none;
  display: block;
}

.contact-branch-body {
  padding: 24px;
}

.contact-branch-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-gold);
  margin-bottom: 16px;
}

.contact-info-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.contact-info-item a {
  color: var(--color-gold);
  transition: color var(--transition);
}

.contact-info-item a:hover {
  color: var(--color-gold-lt);
}

/* Contact Form */
.contact-form-wrap {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.form-title {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.form-subtitle {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  margin-bottom: 32px;
  line-height: 1.6;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--color-input-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px var(--color-gold-glow);
}

.form-control::placeholder {
  color: var(--color-text-muted);
  opacity: 0.5;
}

textarea.form-control {
  min-height: 120px;
  resize: vertical;
}

select.form-control {
  appearance: none;
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='7' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23a09880' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-control.field-error {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.form-control.field-error:focus {
  border-color: #ef4444;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.2);
}

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--color-surface);
  border-top: 1px solid var(--color-border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  color: var(--color-text-muted);
  font-size: 0.88rem;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  background: transparent;
  transition: var(--transition);
  cursor: pointer;
}

.social-btn:hover {
  color: var(--color-gold);
  border-color: var(--color-gold);
  background: var(--color-gold-glow);
}

.footer-col-title {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 20px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  transition: color var(--transition);
}

.footer-links a:hover {
  color: var(--color-gold);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--color-text-muted);
  margin-bottom: 12px;
  line-height: 1.4;
}

.footer-contact-item .icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.footer-contact-item .icon svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-contact-item a {
  color: var(--color-gold);
  transition: color var(--transition);
}

.footer-contact-item a:hover {
  color: var(--color-gold-lt);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 0;
  border-top: 1px solid var(--color-border);
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}

.footer-dev {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.footer-dev img {
  height: 22px;
  width: auto;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.footer-dev img:hover {
  opacity: 1;
}

/* ==========================================
   MODAL
   ========================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-box {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  width: 100%;
  max-width: 560px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
  transform: scale(0.92) translateY(20px);
  transition: transform 0.35s ease;
}

.modal-overlay.active .modal-box {
  transform: scale(1) translateY(0);
}

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 28px 28px 0;
}

.modal-title {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

.modal-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

.modal-close {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  background: transparent;
  color: var(--color-text-muted);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: var(--color-gold-glow);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.modal-body {
  padding: 24px 28px 28px;
}

.modal-branches {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-branch-card {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  cursor: pointer;
  transition: var(--transition);
}

.modal-branch-card:hover {
  border-color: var(--color-gold);
  background: var(--color-gold-glow);
  transform: translateY(-2px);
}

.modal-branch-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-gold-glow);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--color-gold);
}

.modal-branch-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 2px;
}

.modal-branch-detail {
  font-size: 0.82rem;
  color: var(--color-text-muted);
}

/* ==========================================
   FLOATING BUTTONS
   ========================================== */
.floating-btns {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 998;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.fab:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-gold);
}

.fab-top {
  background: var(--color-surface2);
  border: 1px solid var(--color-border);
  color: var(--color-gold);
  opacity: 0;
  pointer-events: none;
}

.fab-top.visible {
  opacity: 1;
  pointer-events: all;
}

.fab-order {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-dk) 100%);
  color: #0a0a0a;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.fade-in,
.fade-in-left,
.fade-in-right {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in {
  transform: translateY(30px);
}

.fade-in-left {
  transform: translateX(-40px);
}

.fade-in-right {
  transform: translateX(40px);
}

.fade-in.visible,
.fade-in-left.visible,
.fade-in-right.visible {
  opacity: 1;
  transform: translate(0);
}

.delay-1 {
  transition-delay: 0.1s;
}

.delay-2 {
  transition-delay: 0.2s;
}

.delay-3 {
  transition-delay: 0.3s;
}

.delay-4 {
  transition-delay: 0.4s;
}

/* ==========================================
   NAV LOGO TEXT
   ========================================== */
.nav-logo-text {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

@media (max-width: 480px) {
  .nav-logo-text {
    display: none;
  }
}

/* ==========================================
   HERO RATING BADGES
   ========================================== */
.hero-ratings-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 24px;
  animation: fadeUp 1s ease 1s both;
}

.hero-rating {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 100px;
  margin-top: 0;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
}

.hero-rating:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--color-gold);
  transform: translateY(-2px);
}

.hero-rating-stars {
  display: flex;
  gap: 2px;
  color: var(--color-gold);
}

.hero-rating-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
  stroke: none;
}

.hero-rating-stars svg.star-half {
  fill: url(#halfStarGrad);
}

.hero-rating-score {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
}

.hero-rating-sep {
  width: 1px;
  height: 18px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-rating-text {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

.hero-rating-google svg {
  width: 18px;
  height: 18px;
}

/* ==========================================
   REVIEWS SECTION
   ========================================== */
.reviews-section {
  background: var(--color-surface);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.review-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: 16px;
  right: 24px;
  font-family: var(--font-display);
  font-size: 4rem;
  line-height: 1;
  color: var(--color-gold);
  opacity: 0.15;
}

.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--color-gold);
  box-shadow: var(--shadow-gold);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.review-stars svg {
  width: 16px;
  height: 16px;
  fill: var(--color-gold);
  stroke: none;
}

.review-text {
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-gold-glow);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-gold);
  flex-shrink: 0;
}

.review-author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.review-author-source {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.reviews-cta {
  text-align: center;
}

/* ==========================================
   GALLERY SECTION
   ========================================== */
.gallery-section {
  background: var(--color-bg);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.gallery-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: marquee 35s linear infinite;
  padding: 0 24px;
}

.gallery-track:hover {
  animation-play-state: paused;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  flex: 0 0 calc(90vw - 48px);
  max-width: 450px;
  height: 320px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.08);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover::after {
  opacity: 1;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 12px));
  }
}

@media (max-width: 768px) {
  .gallery-item {
    height: 260px;
  }
}

@media (max-width: 480px) {
  .gallery-item {
    height: 220px;
    flex: 0 0 85vw;
  }
}

/* ==========================================
   MENU ITEM CARDS (menu.html)
   ========================================== */
.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.menu-item-card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 24px;
  background: var(--color-surface);
  border: 1px solid rgba(212, 168, 83, 0.08);
  border-radius: var(--radius);
  transition: var(--transition);
}

.menu-item-card:hover {
  border-color: var(--color-border);
  background: var(--color-surface2);
  transform: translateY(-2px);
}

.menu-item-left {
  flex: 1;
  min-width: 0;
}

.menu-item-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.menu-item-desc {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  margin-bottom: 8px;
}

.menu-item-badge {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-right: 4px;
}

.badge-veg {
  background: rgba(76, 175, 80, 0.15);
  color: #4caf50;
}

.badge-popular {
  background: var(--color-gold-glow);
  color: var(--color-gold);
}

.badge-spicy {
  background: rgba(244, 67, 54, 0.15);
  color: #f44336;
}

.badge-bestseller {
  background: var(--color-gold-glow);
  color: var(--color-gold);
}

.menu-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-gold);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Branch Toggle */
.branch-toggle {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.branch-toggle-btn {
  padding: 12px 32px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.branch-toggle-btn:hover,
.branch-toggle-btn.active {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-lt) 50%, var(--color-gold) 100%);
  border-color: var(--color-gold);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

/* Menu Note */
.menu-note {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  padding: 16px 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  margin-bottom: 48px;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .menu-items-grid {
    grid-template-columns: 1fr;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .review-tabs {
    flex-direction: column;
    width: 100%;
  }

  .review-tab-btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .branches-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .section {
    padding: 64px 0;
  }

  .hero-title {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-logo {
    width: 90px;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .form-grid-2 {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .contact-form-wrap {
    padding: 28px 20px;
  }

  .cta-banner {
    padding: 48px 20px;
  }

  .review-tabs {
    flex-direction: column;
    width: 100%;
  }

  .review-tab-btn {
    width: 100%;
    justify-content: center;
  }

  .hero-content {
    padding: 110px 16px 60px;
  }

  .hero-subpage {
    min-height: 50vh;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: clamp(2rem, 10vw, 2.5rem);
    margin-bottom: 16px;
  }

  .display-title {
    font-size: clamp(2rem, 9vw, 2.4rem);
    line-height: 1.15;
  }

  .hero-badge {
    padding: 4px 14px;
    font-size: 0.65rem;
    margin-bottom: 20px;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: 28px;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .branch-actions {
    flex-direction: column;
  }

  .branch-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .navbar-inner {
    padding: 0 16px;
  }

  .form-group input,
  .form-group textarea,
  .form-group select {
    padding: 12px 16px;
  }
}

/* ==========================================
   HERO BRAND (logo + name row in hero)
   ========================================== */
.hero-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 20px;
  animation: fadeDown 1s ease 0.1s both;
}

.hero-brand .hero-logo {
  margin: 0;
  animation: none;
}

.hero-brand-name {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--color-gold);
  letter-spacing: 0.04em;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
  white-space: nowrap;
}

@media (max-width: 480px) {
  .hero-brand {
    flex-direction: column;
    gap: 8px;
  }

  .hero-brand-name {
    font-size: 1.4rem;
  }
}

/* ==========================================
   FOOTER BRAND NAME
   ========================================== */
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--color-gold);
  display: block;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}

/* ==========================================
   GOLD TEXT (accent spans)
   ========================================== */
.gold-text {
  color: var(--color-gold);
}

/* ==========================================
   CENTER BUTTON WRAPPER
   ========================================== */
.center-btn {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ==========================================
   REVIEW TABS
   ========================================== */
.review-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.review-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 28px;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  background: transparent;
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
}

.review-tab-btn:hover {
  background: var(--color-gold-glow);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.review-tab-btn.active {
  background: linear-gradient(135deg, var(--color-gold) 0%, var(--color-gold-lt) 50%, var(--color-gold) 100%);
  border-color: var(--color-gold);
  color: #0a0a0a;
  box-shadow: 0 4px 20px rgba(212, 168, 83, 0.3);
}

.tab-rating {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.85;
}

/* ==========================================
   REVIEW PANELS
   ========================================== */
.review-panel {
  display: none;
}

.review-panel.active {
  display: block;
}

.review-branch-label {
  text-align: center;
  font-size: 0.88rem;
  color: var(--color-text-muted);
  margin-bottom: 28px;
}

.review-branch-label a {
  color: var(--color-gold);
  text-decoration: none;
  font-weight: 600;
  transition: color var(--transition);
}

.review-branch-label a:hover {
  color: var(--color-gold-lt);
}

/* ==========================================
   REVIEW CARD LINK HINT
   ========================================== */
.review-card-link-hint {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-gold);
  opacity: 0;
  margin-top: 14px;
  margin-bottom: 0;
  letter-spacing: 0.04em;
  transition: opacity var(--transition);
}

.review-card:hover .review-card-link-hint {
  opacity: 1;
}

/* review cards are <a> tags — ensure proper link styling */
a.review-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* ==========================================
   HERO CANVAS (Three.js particles)
   ========================================== */
#heroCanvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  width: 100%;
  height: 100%;
}

/* ==========================================
   GALLERY LIGHTBOX
   ========================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.open {
  opacity: 1;
  pointer-events: all;
}

.lightbox-bg {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 8px 60px rgba(0, 0, 0, 0.6);
  animation: fadeUp 0.35s ease both;
}

.lightbox-caption {
  margin-top: 16px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 3;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: var(--color-gold);
  color: var(--color-gold);
}

@media (max-width: 768px) {

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1.4rem;
  }

  .lightbox-prev {
    left: 10px;
  }

  .lightbox-next {
    right: 10px;
  }
}

/* ==========================================
   ADDITIONAL ANIMATION DELAYS
   ========================================== */
.delay-5 {
  transition-delay: 0.5s;
}

/* ==========================================
   MENU ITEM IMAGE (inside menu-item-card)
   ========================================== */
.menu-item-img {
  width: 72px;
  height: 72px;
  border-radius: var(--radius);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

@media (max-width: 480px) {
  .menu-item-img {
    width: 56px;
    height: 56px;
  }
}

/* ==========================================
   MODAL BRANCH CARD SUB-ELEMENTS
   ========================================== */
.modal-branch-info {
  flex: 1;
  min-width: 0;
}

.modal-branch-address {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 2px;
}

.modal-branch-phone {
  font-size: 0.82rem;
  color: var(--color-gold);
  margin-top: 2px;
  font-weight: 500;
}

.modal-branch-arrow {
  flex-shrink: 0;
  color: var(--color-gold);
  opacity: 0.5;
  transition: opacity var(--transition), transform var(--transition);
}

.modal-branch-card:hover .modal-branch-arrow {
  opacity: 1;
  transform: translateX(4px);
}

/* ==========================================
   GOLD DIVIDER
   ========================================== */
.gold-divider {
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold), var(--color-gold-lt));
  margin: 16px auto 0;
  border-radius: 2px;
}

/* ==========================================
   SIPO STATUS STRIP (top notification bar)
   ========================================== */
.status-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10001;
  background: linear-gradient(90deg, rgba(10, 10, 10, 0.96) 0%, rgba(18, 18, 18, 0.96) 100%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  font-size: 0.78rem;
  animation: stripSlideDown 0.5s ease both;
}

@keyframes stripSlideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

.status-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 8px 16px;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
}

.status-strip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #888;
  flex-shrink: 0;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.4; }
}

.status-strip-text {
  color: var(--color-text-muted);
  text-align: center;
  line-height: 1.5;
}

.status-strip.open .status-strip-dot { background: #22c55e; }
.status-strip.closed .status-strip-dot { background: #ef4444; }
.status-strip.error .status-strip-dot { background: #f59e0b; }

/* Push navbar down when strip is present */
body.has-status-strip .navbar {
  top: var(--strip-height, 36px);
}

body.has-status-strip .hero {
  padding-top: var(--strip-height, 36px);
}

body.has-status-strip .mobile-nav {
  top: calc(var(--strip-height, 36px) + 64px);
}

@media (max-width: 480px) {
  .status-strip-inner { font-size: 0.7rem; gap: 8px; padding: 6px 12px; }
}

/* ==========================================
   SIPO MODALS (closed / info / offer)
   ========================================== */
.sipo-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 10010;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.sipo-modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.sipo-modal {
  position: relative;
  max-width: 420px;
  width: 90%;
  background: var(--color-surface, #1a1a1a);
  border: 1px solid var(--color-border, #2a2a2a);
  border-radius: 20px;
  padding: 40px 32px 32px;
  text-align: center;
  animation: sipo-modal-up 0.4s ease both;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

@keyframes sipo-modal-up {
  from { transform: translateY(20px) scale(0.97); opacity: 0; }
  to   { transform: translateY(0) scale(1);       opacity: 1; }
}

.sipo-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--color-border, #2a2a2a);
  background: transparent;
  color: var(--color-text-muted, #888);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s ease;
}

.sipo-modal-close:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-gold, #d4a853);
  border-color: var(--color-gold, #d4a853);
}

.sipo-modal-icon {
  margin-bottom: 16px;
}

.sipo-modal-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text, #f0f0f0);
}

.sipo-modal-text {
  font-size: 0.9rem;
  color: var(--color-text-muted, #888);
  line-height: 1.7;
  margin-bottom: 24px;
}

.sipo-modal-btn {
  width: 100%;
  padding: 14px 24px;
  border: none;
  border-radius: 12px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.sipo-modal-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 168, 83, 0.3);
}

/* ==========================================
   CATERING SECTION
   ========================================== */
.catering-section {
  background: var(--color-surface);
}

.catering-content {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
  margin-top: 16px;
}

@media (max-width: 1024px) {
  .catering-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.catering-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

@media (max-width: 640px) {
  .catering-features {
    grid-template-columns: 1fr;
  }
}

.catering-feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg, 16px);
  padding: 28px 20px;
  text-align: center;
  transition: all 0.3s ease;
}

.catering-feature-card:hover {
  border-color: var(--color-gold);
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(212, 168, 83, 0.08);
}

.catering-feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--color-gold-glow);
  border: 1px solid rgba(212, 168, 83, 0.2);
  color: var(--color-gold);
  margin-bottom: 16px;
}

.catering-feature-card h4 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.catering-feature-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.6;
}

.catering-form-wrap {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg, 16px);
  padding: 36px 32px;
}

@media (max-width: 768px) {
  .catering-form-wrap {
    padding: 28px 20px;
  }
}

/* ==========================================
   CHECKBOX GROUP (dietary requirements)
   ========================================== */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.checkbox-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--color-border);
  border-radius: 8px;
  font-size: 0.82rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.checkbox-label:hover {
  border-color: var(--color-gold);
  color: var(--color-gold);
  background: var(--color-gold-glow);
}

.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: var(--color-gold);
  cursor: pointer;
}

.checkbox-label input[type="checkbox"]:checked + * {
  color: var(--color-gold);
}

/* ==========================================
   HOURS TABLE (API-populated)
   ========================================== */
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 0.88rem;
  border-bottom: 1px solid var(--color-border);
  color: var(--color-text-muted);
}

.hours-row:last-child {
  border-bottom: none;
}

.hours-row .day {
  font-weight: 600;
  color: var(--color-text);
}

.hours-row .time {
  text-align: right;
}

.hours-row .closed-day {
  color: #ef4444;
}

.hours-row.today {
  color: var(--color-gold);
}

.hours-row.today .day {
  color: var(--color-gold);
}

.hours-row.today .time {
  color: var(--color-gold);
  font-weight: 600;
}

/* ==========================================
   SIPO STATUS STRIP
   ========================================== */
.status-strip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1100;
  background: linear-gradient(135deg, #0a0a0a 0%, #151515 100%);
  border-bottom: 1px solid rgba(212, 168, 83, 0.15);
  padding: 6px 0;
  font-size: 0.78rem;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

.status-strip-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.status-strip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  flex-shrink: 0;
  animation: statusPulse 2s ease-in-out infinite;
}

@keyframes statusPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.status-strip-text {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.status-strip.closed .status-strip-dot {
  background: #ef4444;
}

body.has-status-strip {
  --strip-height: 32px;
}

body.has-status-strip .navbar {
  top: var(--strip-height, 32px);
}

body.has-status-strip .hero {
  margin-top: var(--strip-height, 32px);
}

/* ==========================================
   SIPO MODALS (Closed/Open/Info)
   ========================================== */
.sipo-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.70);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.sipo-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.sipo-modal {
  position: relative;
  background: var(--color-surface, #faf9f7);
  border: 1px solid var(--color-border, rgba(0,0,0,0.08));
  border-radius: 20px;
  padding: 40px 36px 32px;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(212, 168, 83, 0.1);
  animation: sipo-modal-in 0.5s ease both;
}

@keyframes sipo-modal-in {
  from { transform: scale(0.9) translateY(20px); opacity: 0; }
  to   { transform: scale(1)   translateY(0);    opacity: 1; }
}

.sipo-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid var(--color-border, rgba(0,0,0,0.1));
  background: transparent;
  color: var(--color-text-muted, #999);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.sipo-modal-close:hover {
  background: var(--color-gold, #d4a853);
  color: #0a0a0a;
  border-color: var(--color-gold, #d4a853);
}

.sipo-modal-icon {
  margin-bottom: 16px;
}

.sipo-modal-title {
  font-family: var(--font-display, 'Playfair Display', serif);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--color-text, #1a1a1a);
}

.sipo-modal-text {
  font-size: 0.9rem;
  color: var(--color-text-muted, #888);
  line-height: 1.6;
  margin-bottom: 20px;
}

.sipo-modal-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  width: 100%;
  border: none;
  background: var(--color-gold, #d4a853);
  color: #0a0a0a;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.sipo-modal-btn:hover {
  background: #c89b3f;
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(212, 168, 83, 0.35);
}

/* ==========================================
   DYNAMIC MENU ITEMS
   ========================================== */
.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.menu-item-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 20px;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  transition: var(--transition);
}

.menu-item-card:hover {
  border-color: rgba(212, 168, 83, 0.25);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
  transform: translateY(-1px);
}

.menu-item-img {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}

.menu-item-left {
  flex: 1;
  min-width: 0;
}

.menu-item-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  color: var(--color-text);
  margin-bottom: 2px;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  line-height: 1.4;
  margin-bottom: 4px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-item-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--color-gold);
  flex-shrink: 0;
  white-space: nowrap;
  align-self: center;
}

.menu-item-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-right: 4px;
}

.badge-popular {
  background: rgba(212, 168, 83, 0.12);
  color: var(--color-gold);
  border: 1px solid rgba(212, 168, 83, 0.2);
}

.badge-veg {
  background: rgba(34, 197, 94, 0.1);
  color: #22c55e;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.menu-category {
  margin-bottom: 40px;
}

.menu-category-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-gold);
  display: flex;
  align-items: center;
  gap: 10px;
}

.menu-category-title span {
  width: 4px;
  height: 20px;
  background: var(--color-gold);
  border-radius: 2px;
}

@media (max-width: 480px) {
  .menu-item-img {
    width: 48px;
    height: 48px;
  }

  .menu-item-card {
    padding: 12px 14px;
  }
}

/* ==========================================
   CATERING FEATURES
   ========================================== */
.catering-features {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.catering-feature-card {
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  transition: var(--transition);
}

.catering-feature-card:hover {
  border-color: rgba(212, 168, 83, 0.25);
  transform: translateY(-2px);
  box-shadow: var(--shadow-card);
}

.catering-feature-icon {
  width: 52px;
  height: 52px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: rgba(212, 168, 83, 0.08);
  color: var(--color-gold);
}

.catering-feature-card h4 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

.catering-feature-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  line-height: 1.5;
}