/* ==========================================================================
   DESIGN SYSTEM & CSS VARIABLES (LIGHT SAGE, BRICK, WOOD & WHITE THEME)
   ========================================================================== */
:root {
  /* Color Palette based on restaurant interior */
  --bg-primary: #f6f5f0;     /* Cream/Off-white floor/terrazzo feel */
  --bg-secondary: #ffffff;   /* Clean white table tops/plates */
  --bg-tertiary: #edeae2;    /* Warm stone/sand gray */
  --bg-glass: rgba(255, 255, 255, 0.85);
  
  --accent-green: #5a7556;   /* Sage/Olive green walls */
  --accent-green-hover: #475d44;
  --accent-green-glow: rgba(90, 117, 86, 0.12);
  
  --accent-brick: #b65f41;   /* Terracotta brick walls */
  --accent-brick-hover: #984e33;
  --accent-brick-glow: rgba(182, 95, 65, 0.15);
  
  --accent-wood: #7c583f;    /* Solid wood tables/stools */
  --accent-wood-hover: #644631;
  --accent-wood-glow: rgba(124, 88, 63, 0.15);

  --accent-gold: #dcae42;    /* Crane details / premium accent */
  
  --text-primary: #2b2725;   /* Dark charcoal metal accents */
  --text-secondary: #5e685c; /* Sage-muted slate */
  --text-muted: #8d958c;     /* Stone gray text */
  
  --border-light: rgba(90, 117, 86, 0.15);
  --border-brick: rgba(182, 95, 65, 0.15);
  --border-glass: rgba(0, 0, 0, 0.05);

  /* Typography */
  --font-headings: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  /* UI Atoms */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(90, 117, 86, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.03);
  --shadow-lg: 0 20px 25px -5px rgba(124, 88, 63, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow-green: 0 0 20px rgba(90, 117, 86, 0.15);
  --shadow-glow-brick: 0 0 20px rgba(182, 95, 65, 0.15);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  
  --navbar-height: 80px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  scrollbar-gutter: stable;
}

body {
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
  background: var(--bg-tertiary);
  border: 2px solid var(--bg-primary);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-green);
}

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

button, input, select, textarea {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background: none;
  border: none;
}

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

.w-full { width: 100%; }

/* ==========================================================================
   BACKGROUND GLOW DECORATIONS (SAGE & BRICK NATURE BLURS)
   ========================================================================== */
.bg-glow {
  position: fixed;
  width: 45vw;
  height: 45vw;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
  filter: blur(120px);
  opacity: 0.08;
}

.bg-glow-1 {
  top: -10vw;
  right: -10vw;
  background-color: var(--accent-green);
}

.bg-glow-2 {
  bottom: -10vw;
  left: -10vw;
  background-color: var(--accent-brick);
}

/* ==========================================================================
   TYPOGRAPHY
   ========================================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-headings);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  letter-spacing: -0.02em;
}

h2 {
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  letter-spacing: -0.01em;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.6rem);
}

.gradient-text {
  background: linear-gradient(135deg, var(--text-primary) 30%, var(--accent-green) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-headings);
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--accent-brick);
  margin-bottom: 0.75rem;
}

/* ==========================================================================
   UI COMPONENTS (BUTTONS, TAGS)
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  font-family: var(--font-headings);
  font-weight: 600;
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--accent-green);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

.btn-primary:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow-green);
}

.btn-secondary {
  background-color: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-light);
}

.btn-secondary:hover {
  background-color: rgba(90, 117, 86, 0.05);
  border-color: var(--accent-green);
  transform: translateY(-2px);
}

/* ==========================================================================
   NAVBAR HEADER
   ========================================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--navbar-height);
  z-index: 100;
  background-color: transparent;
  border-bottom: 1px solid transparent;
  transition: all var(--transition-normal);
}

.navbar.scrolled {
  background-color: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-light);
  height: 70px;
  box-shadow: 0 4px 20px rgba(90, 117, 86, 0.03);
}

.nav-container {
  max-width: 1300px;
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-headings);
  font-size: 1.6rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  color: var(--text-primary);
}

.logo-accent {
  color: var(--accent-green);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: var(--font-headings);
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-green);
  transition: width var(--transition-fast);
}

.nav-link:hover {
  color: var(--text-primary);
}

.nav-link:hover::after {
  width: 100%;
}

/* Info Badge in Navbar */
.nav-info-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

.badge-text {
  font-family: var(--font-headings);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--accent-green);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
  min-height: 100vh;
  max-width: 1300px;
  margin: 0 auto;
  padding: calc(var(--navbar-height) + 2rem) 2rem 4rem;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 4rem;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.award-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(90, 117, 86, 0.05);
  border: 1px solid var(--border-light);
  padding: 0.4rem 1rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 2rem;
}

.hero-subtitle {
  color: var(--text-secondary);
  font-size: 1.25rem;
  margin-top: 1.5rem;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-ctas {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.hero-status {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  color: var(--text-secondary);
  box-shadow: var(--shadow-sm);
}

.hero-status i {
  color: var(--accent-brick);
}

/* Hero Visual Side */
.hero-visual {
  display: flex;
  justify-content: center;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  padding: 6px;
  background: var(--bg-secondary);
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.hero-image {
  border-radius: calc(var(--radius-lg) - 6px);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}

.hero-overlay-tag {
  position: absolute;
  bottom: 2rem;
  left: -2rem;
  background-color: var(--bg-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border-brick);
  padding: 0.8rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
}

.hero-overlay-tag .tag-title {
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent-brick);
}

.hero-overlay-tag .tag-desc {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--text-primary);
}

/* ==========================================================================
   ABOUT / CRAFT SECTION
   ========================================================================== */
.about-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.about-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 5rem;
  align-items: center;
}

.about-image-side {
  display: flex;
  justify-content: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-lg);
}

.about-image {
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  width: 100%;
}

.about-text-side h2 {
  margin-bottom: 1.5rem;
}

.about-text-side p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.feature-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.feature-item {
  display: flex;
  gap: 1rem;
}

.feature-icon {
  font-size: 1.75rem;
  color: var(--accent-green);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.feature-item h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--text-primary);
}

.feature-item p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 0;
}

/* ==========================================================================
   MENU SECTION
   ========================================================================== */
.menu-section {
  max-width: 1300px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3.5rem;
}

.section-header h2 {
  margin-bottom: 1rem;
}

.section-header p {
  color: var(--text-secondary);
  font-size: 1.1rem;
}

/* Category Menu Tabs */
.menu-tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}

.menu-tabs {
  display: flex;
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  padding: 6px;
  border-radius: var(--radius-lg);
  overflow-x: auto;
  max-width: 100%;
  scrollbar-width: none;
  box-shadow: var(--shadow-sm);
}

.menu-tabs::-webkit-scrollbar {
  display: none;
}

.menu-tab {
  font-family: var(--font-headings);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0.75rem 1.5rem;
  border-radius: calc(var(--radius-lg) - 4px);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  transition: all var(--transition-fast);
}

.menu-tab:hover {
  color: var(--accent-green);
}

.menu-tab.active {
  background-color: var(--accent-green);
  color: #ffffff;
  box-shadow: var(--shadow-sm);
}

/* Menu Grid & Dish Cards */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 2.5rem;
  margin-bottom: 4rem;
  transition: all var(--transition-normal);
}

.dish-card {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-glass);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
  cursor: pointer;
  position: relative;
  transition: all var(--transition-normal);
}

.dish-card:hover {
  transform: translateY(-6px);
  border-color: var(--accent-green);
  box-shadow: var(--shadow-md), 0 10px 30px rgba(90, 117, 86, 0.04);
}

.dish-image-wrapper {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

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

.dish-card:hover .dish-image {
  transform: scale(1.05);
}

.dish-image-wrapper::after {
  content: '\f002';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  inset: 0;
  background-color: rgba(90, 117, 86, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #ffffff;
  opacity: 0;
  transition: opacity var(--transition-fast);
}

.dish-card:hover .dish-image-wrapper::after {
  opacity: 1;
}

.dish-tags {
  position: absolute;
  top: 1rem;
  left: 1rem;
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  z-index: 2;
}

.dish-tag {
  font-family: var(--font-headings);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 0.25rem 0.6rem;
  border-radius: var(--radius-sm);
  color: #ffffff;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.dish-tag.tag-signature {
  background-color: var(--accent-brick);
}

.dish-tag.tag-spicy {
  background-color: #b84c3c;
}

.dish-tag.tag-veg {
  background-color: var(--accent-green);
}

.dish-info {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.dish-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
  gap: 1rem;
}

.dish-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-primary);
}

.dish-pinyin {
  display: block;
  font-size: 0.85rem;
  color: var(--accent-green);
  font-weight: 600;
  margin-top: 0.15rem;
}

.dish-price {
  font-family: var(--font-headings);
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--accent-brick);
  flex-shrink: 0;
}

.dish-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1.25rem;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dish-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0.75rem;
  border-top: 1px solid var(--border-glass);
}

.spiciness-rating {
  font-size: 0.85rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.spicy-pepper {
  color: #b84c3c;
}

.dish-allergens-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.dish-allergens-badge {
  font-size: 0.75rem;
  color: var(--accent-green);
  background-color: rgba(90, 117, 86, 0.05);
  border: 1px solid var(--border-light);
  padding: 0.1rem 0.4rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* Highlight style for signatures */
.dish-card.highlighted {
  border-color: rgba(90, 117, 86, 0.25);
  box-shadow: 0 4px 20px rgba(90, 117, 86, 0.02);
}

/* ==========================================================================
   TEXT-ONLY DRINKS LIST FORMAT
   ========================================================================== */
.drinks-container {
  grid-column: 1 / -1; /* Stretch across the entire grid row */
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow-sm);
}

.drinks-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

@media (max-width: 850px) {
  .drinks-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .drinks-container {
    padding: 1.5rem;
  }
}

.drinks-section-title {
  font-family: var(--font-headings);
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--accent-green);
  border-bottom: 2px solid var(--border-light);
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.drinks-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.drink-item {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all var(--transition-fast);
  padding: 0.5rem;
  border-radius: var(--radius-md);
}

.drink-item:hover {
  background-color: rgba(90, 117, 86, 0.03);
}

.drink-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}

.drink-name-wrap {
  display: flex;
  flex-direction: column;
}

.drink-title {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
}

.drink-pinyin {
  font-size: 0.8rem;
  color: var(--accent-brick);
  font-weight: 500;
}

.drink-leader {
  flex-grow: 1;
  border-bottom: 1px dotted rgba(90, 117, 86, 0.3);
  margin: 0 1rem;
  align-self: flex-end;
  margin-bottom: 0.35rem;
}

.drink-price-tag {
  font-family: var(--font-headings);
  font-size: 1.1rem;
  font-weight: 800;
  color: var(--accent-brick);
}

.drink-desc-text {
  font-size: 0.85rem;
  color: var(--text-secondary);
  margin-top: 0.25rem;
  line-height: 1.4;
}

.drink-meta-row {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.4rem;
  align-items: center;
}

.drink-allergen-pill {
  font-size: 0.7rem;
  color: var(--accent-green);
  border: 1px solid var(--border-light);
  padding: 0.05rem 0.3rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
}

/* ==========================================================================
   ALLERGENS KEY
   ========================================================================== */
.allergen-key-section {
  background-color: var(--bg-secondary);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-top: 4rem;
  box-shadow: var(--shadow-sm);
}

.allergen-key-section h3 {
  font-size: 1.25rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-headings);
  color: var(--accent-green);
  border-bottom: 1px solid var(--border-light);
  padding-bottom: 0.5rem;
}

.allergen-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.allergen-item {
  font-size: 0.85rem;
  color: var(--text-secondary);
  display: flex;
  gap: 0.75rem;
}

.allergen-item strong {
  color: var(--accent-green);
  background-color: rgba(90, 117, 86, 0.05);
  border: 1px solid var(--border-light);
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  font-size: 0.75rem;
  flex-shrink: 0;
}

/* ==========================================================================
   NATIVE DIALOGS & OVERLAY ANIMATIONS
   ========================================================================== */
dialog.dish-dialog {
  margin: auto;
  border: 1px solid var(--border-light);
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  color: var(--text-primary);
  width: 90%;
  max-width: 560px;
  padding: 0;
  overflow: hidden;
}

dialog.dish-dialog::backdrop {
  background-color: rgba(0, 0, 0, 0);
  transition:
    display 0.3s allow-discrete,
    overlay 0.3s allow-discrete,
    background-color 0.3s ease-out;
}

dialog.dish-dialog[open]::backdrop {
  background-color: rgba(43, 41, 38, 0.5); /* Semi-transparent charcoal */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);

  @starting-style {
    background-color: rgba(0, 0, 0, 0);
    backdrop-filter: blur(0px);
    -webkit-backdrop-filter: blur(0px);
  }
}

dialog.dish-dialog {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition-property: opacity, transform, display, overlay;
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  transition-behavior: allow-discrete;
}

dialog.dish-dialog[open] {
  opacity: 1;
  transform: translateY(0) scale(1);

  @starting-style {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
}

@media (prefers-reduced-motion: reduce) {
  dialog.dish-dialog {
    transform: none;
    transition-duration: 0.1s;
  }
  @starting-style {
    dialog.dish-dialog[open] {
      transform: none;
    }
  }
}

/* Modal Dialog Contents */
.dialog-content {
  position: relative;
}

.dialog-hero-image {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.close-dialog-btn {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.8);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-primary);
  z-index: 10;
  transition: all var(--transition-fast);
}

.close-dialog-btn:hover {
  background-color: var(--accent-brick);
  color: #ffffff;
  border-color: var(--accent-brick);
  transform: scale(1.1);
}

.dialog-body {
  padding: 2.25rem;
}

.dialog-title-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.25rem;
  gap: 1.5rem;
}

.dialog-price {
  font-family: var(--font-headings);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-brick);
}

.dialog-pinyin {
  color: var(--accent-green);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

.dialog-desc {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-bottom: 1.75rem;
  line-height: 1.7;
}

/* Informative Customization Tags */
.dialog-details-meta {
  border-top: 1px solid var(--border-light);
  padding-top: 1.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.meta-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.meta-label {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.meta-content {
  font-size: 0.95rem;
  color: var(--text-primary);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.meta-pill {
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  padding: 0.3rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
}

.meta-pill.allergen-pill {
  color: var(--accent-green);
  border-color: var(--border-light);
}

.meta-pill.veg-pill {
  color: var(--accent-green);
  border-color: rgba(90, 117, 86, 0.2);
}

.meta-pill.spicy-pill {
  color: var(--accent-brick);
  border-color: rgba(182, 95, 65, 0.2);
}

/* Dialog Action Footer */
.dialog-footer {
  padding: 1.5rem 2.25rem;
  background-color: var(--bg-tertiary);
  border-top: 1px solid var(--border-glass);
  display: flex;
  justify-content: flex-end;
}

/* ==========================================================================
   CONTACT & FOOTER
   ========================================================================== */
.footer-section {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-light);
  padding: 5rem 2rem 2rem;
}

.footer-container {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  margin-bottom: 4rem;
  align-items: center;
}

.footer-info h3 {
  font-size: 1.75rem;
  margin-bottom: 0.25rem;
  color: var(--text-primary);
}

.footer-tagline {
  color: var(--accent-green);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.contact-details {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.contact-details li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  color: var(--text-secondary);
}

.contact-details li i {
  color: var(--accent-green);
  font-size: 1.25rem;
  margin-top: 0.2rem;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background-color: var(--bg-primary);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  font-size: 1.2rem;
  transition: all var(--transition-fast);
}

.social-links a:hover {
  background-color: var(--accent-green);
  color: #ffffff;
  border-color: var(--accent-green);
  transform: translateY(-3px);
}

/* Footer Map Mock */
.footer-map-card {
  width: 100%;
}

.map-link-wrapper {
  display: block;
}

.map-mock {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #edeae2;
  background-image: 
    radial-gradient(var(--accent-green) 1px, transparent 1px), 
    radial-gradient(var(--accent-brick) 1px, transparent 1px);
  background-size: 24px 24px;
  background-position: 0 0, 12px 12px;
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.map-mock::before {
  content: '';
  position: absolute;
  inset: 0;
  background: 
    linear-gradient(rgba(90, 117, 86, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(90, 117, 86, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.map-marker {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--accent-brick);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 2px solid var(--bg-secondary);
  z-index: 2;
  position: relative;
}

.map-marker-glow {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: var(--accent-green);
  filter: blur(15px);
  opacity: 0.3;
  z-index: 1;
  animation: pulse-glow-map 3s infinite;
}

@keyframes pulse-glow-map {
  0%, 100% { transform: scale(1); opacity: 0.2; }
  50% { transform: scale(1.3); opacity: 0.4; }
}

.map-details {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background-color: var(--bg-glass);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  padding: 0.8rem 1.2rem;
  z-index: 3;
}

.map-details h4 {
  font-size: 1rem;
  margin-bottom: 0.15rem;
  color: var(--text-primary);
}

.map-details p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  margin-bottom: 0.5rem;
}

.map-action {
  font-family: var(--font-headings);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent-green);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.footer-bottom {
  border-top: 1px solid var(--border-light);
  padding-top: 2rem;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   RESPONSIVE LAYOUTS & MEDIA QUERIES
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--navbar-height) + 3rem);
    gap: 3rem;
  }
  .hero-content {
    align-items: center;
  }
  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-ctas {
    justify-content: center;
  }
  
  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .about-image-side {
    order: 2;
  }
  .about-image-wrapper {
    max-width: 480px;
  }
  
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  :root {
    --navbar-height: 70px;
  }
  .nav-links {
    display: none;
  }
  .nav-info-badge {
    padding: 0.5rem 1rem;
  }
  .navbar.scrolled {
    height: 60px;
  }
  .hero-image-wrapper {
    max-width: 420px;
  }
  .hero-overlay-tag {
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    padding: 0.6rem 1rem;
  }
  
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .dialog-body {
    padding: 1.5rem;
  }
  .dialog-footer {
    padding: 1rem 1.5rem;
  }
}

@media (max-width: 480px) {
  .nav-container {
    padding: 0 1rem;
  }
  .logo {
    font-size: 1.3rem;
  }
  .hero-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  .hero-ctas {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
  }
  .hero-ctas a {
    width: 100%;
  }
  .about-section, .menu-section {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
