/* Design rationale: Warm persimmon-red accent echoes the logo's Chinese-red palette; cool slate-teal highlight creates energy contrast fitting for a lively student-area cafe.
   Heading: Bitter — a bold workhorse slab serif with warmth; rare in portfolio, evokes printed menus and traditional restaurant signage.
   Body: Plus Jakarta Sans — clean, highly legible humanist sans ideal for student/family audiences browsing on mobile. */

/* =============================================================
   1. RESET & CUSTOM PROPERTIES
   ============================================================= */
@import url('https://fonts.googleapis.com/css2?family=Bitter:ital,wght@0,400;0,600;0,700;0,800;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

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

:root {
  --dark:       #0E0B08;
  --bg-alt:     #1A1410;
  --accent:     #D45F40;
  --highlight:  #3E8FA0;
  --cream:      #F8F2EA;
  --cream-dim:  rgba(248, 242, 234, 0.65);
  --accent-dim: rgba(212, 95, 64, 0.14);
  --border:     rgba(212, 95, 64, 0.22);
  --ff-display: 'Bitter', Georgia, serif;
  --ff-body:    'Plus Jakarta Sans', sans-serif;
  --nav-h:      72px;
  --radius:     6px;
  --trans:      0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}

/* =============================================================
   2. TYPOGRAPHY
   ============================================================= */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.2;
  color: var(--cream);
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); font-weight: 800; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 700; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1rem; color: var(--cream-dim); }

.label {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-intro { max-width: 640px; margin: 0 auto; text-align: center; }
.section-intro h2 { margin-bottom: 1rem; }
.section-intro p  { margin-bottom: 0; }

/* =============================================================
   3. BUTTONS
   ============================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--trans);
  letter-spacing: 0.02em;
}
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: transparent;
  color: var(--accent);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(248,242,234,0.4);
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(248,242,234,0.08);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: #fff;
}

/* =============================================================
   4. NAVBAR
   ============================================================= */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  padding: 4px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}
.nav-links a {
  color: var(--cream);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 600;
  opacity: 0.85;
  transition: opacity var(--trans), color var(--trans);
}
.nav-links a:hover,
.nav-links a.active { opacity: 1; color: var(--accent); }
.nav-cta { margin-left: 1.5rem; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: var(--trans);
}
/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  transition: color var(--trans);
}
.nav-overlay a:hover { color: var(--accent); }
.nav-overlay-close {
  position: absolute;
  top: 1.5rem; right: 5%;
  background: none; border: none;
  color: var(--cream); font-size: 2rem;
  cursor: pointer; line-height: 1;
}

/* =============================================================
   5. HERO
   ============================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 6s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(14,11,8,0.75) 0%,
    rgba(14,11,8,0.55) 50%,
    rgba(14,11,8,0.80) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
}
.hero-content .label { margin-bottom: 1.2rem; }
.hero-content h1 { margin-bottom: 1rem; text-shadow: 0 2px 12px rgba(0,0,0,0.5); }
.hero-subtitle {
  font-size: clamp(1.05rem, 2vw, 1.3rem);
  color: var(--cream-dim);
  margin-bottom: 0.8rem;
  font-style: italic;
}
.hero-tagline {
  font-size: clamp(0.9rem, 1.5vw, 1.1rem);
  color: rgba(248,242,234,0.75);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto; margin-right: auto;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.6;
}
.scroll-indicator span {
  display: block;
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--cream), transparent);
  animation: scrollPulse 1.6s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* =============================================================
   6. FEATURES STRIP
   ============================================================= */
.features { padding: 5rem 5%; background: var(--bg-alt); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1200px;
  margin: 3rem auto 0;
}
.feature-card {
  text-align: center;
  padding: 2rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
}
.feature-card:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}
.feature-icon {
  width: 52px; height: 52px;
  margin: 0 auto 1rem;
  color: var(--accent);
}
.feature-card h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.feature-card p  { font-size: 0.875rem; }

/* =============================================================
   7. OFFERINGS GRID (3x3 home + 3-col filter grid on menu page)
   ============================================================= */
.offerings-preview { padding: 5rem 5%; }
.offerings-preview .section-intro { margin-bottom: 3rem; }
.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto 2.5rem;
}
.food-grid-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
}
.food-grid-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.food-grid-item:hover img { transform: scale(1.06); }
.food-grid-item-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem 0.8rem;
  background: linear-gradient(to top, rgba(14,11,8,0.85), transparent);
  font-size: 0.9rem;
  font-weight: 700;
  font-family: var(--ff-display);
}
.offerings-preview-cta { text-align: center; }

/* Filter bar on menu page */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  background: transparent;
  color: var(--cream-dim);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--trans);
}
.filter-btn.active,
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--cream);
  background: var(--accent-dim);
}

/* =============================================================
   8. BRAND TEASER SPLIT
   ============================================================= */
.brand-teaser { padding: 5rem 5%; }
.brand-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.brand-teaser-img {
  border-radius: var(--radius);
  overflow: hidden;
}
.brand-teaser-img img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.brand-teaser-text .label { margin-bottom: 0.8rem; }
.brand-teaser-text h2 { margin-bottom: 1.5rem; }
.brand-teaser-text p  { margin-bottom: 1rem; }
.brand-teaser-text .btn { margin-top: 1rem; }

/* =============================================================
   9. STATS ROW
   ============================================================= */
.stats { padding: 5rem 5%; background: var(--bg-alt); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.85rem;
  color: var(--cream-dim);
  font-weight: 600;
  letter-spacing: 0.05em;
}

/* =============================================================
   10. REVIEW CARDS (reserved — omitted per no real reviews found)
   ============================================================= */

/* =============================================================
   11. SOCIAL CTA + PLATFORM BUTTONS
   ============================================================= */
.social-cta {
  padding: 5rem 5%;
  background: var(--dark);
  border-top: 1px solid var(--border);
  text-align: center;
}
.social-cta h2 { margin-bottom: 1rem; }
.social-cta p  { margin-bottom: 2.5rem; }
.platform-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: var(--trans);
  border: 2px solid transparent;
}
.platform-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.platform-btn-ig  { background: #c13584; color: #fff; }
.platform-btn-ig:hover  { background: #a01060; }
.platform-btn-fb  { background: #1877f2; color: #fff; }
.platform-btn-fb:hover  { background: #0e5ed4; }
.platform-btn-wa  { background: #25d366; color: #fff; }
.platform-btn-wa:hover  { background: #1aab52; }

/* =============================================================
   12. SOCIAL FEED GRID
   ============================================================= */
.social-feed { padding: 5rem 5%; background: var(--bg-alt); }
.social-feed .section-intro { margin-bottom: 3rem; }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  position: relative;
}
.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.feed-item:hover img {
  transform: scale(1.07);
  opacity: 0.8;
}

/* =============================================================
   13. FOOTER
   ============================================================= */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 4rem 5% 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand-logo {
  height: 56px;
  width: auto;
  object-fit: contain;
  background: rgba(255,255,255,0.95);
  border-radius: 50%;
  padding: 4px;
  margin-bottom: 1rem;
}
.footer-tagline {
  font-size: 0.875rem;
  color: var(--cream-dim);
  margin-bottom: 1.5rem;
  max-width: 240px;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  color: var(--cream-dim);
  transition: var(--trans);
}
.footer-social-link svg { width: 16px; height: 16px; }
.footer-social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-dim);
}
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.footer-col ul a {
  color: var(--cream-dim);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--cream); }
.footer-visit p {
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
}
.footer-visit a {
  color: var(--cream-dim);
  text-decoration: none;
  transition: color var(--trans);
}
.footer-visit a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--cream-dim);
  opacity: 0.7;
  margin: 0;
}
.footer-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.3rem 0.8rem;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-size: 0.75rem;
  color: var(--cream-dim);
  font-weight: 600;
}

/* =============================================================
   14. PAGE HERO (inner pages)
   ============================================================= */
.page-hero {
  position: relative;
  height: clamp(320px, 45vh, 520px);
  display: flex;
  align-items: flex-end;
  padding-bottom: 3rem;
  overflow: hidden;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(14,11,8,0.35) 0%,
    rgba(14,11,8,0.75) 100%
  );
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 5%;
}
.page-hero-content .label { margin-bottom: 0.6rem; }
.page-hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.2rem);
}
.page-hero-content p {
  margin-top: 0.5rem;
  font-size: 1.05rem;
  color: var(--cream-dim);
}

/* =============================================================
   15. ABOUT PAGE SECTIONS
   ============================================================= */
.about-story { padding: 5rem 5%; }
.about-story-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.about-story-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-story-text .label { margin-bottom: 0.8rem; }
.about-story-text h2 { margin-bottom: 1.5rem; }
.about-story-text p  { margin-bottom: 1rem; }

.philosophy { padding: 5rem 5%; background: var(--bg-alt); }
.philosophy .section-intro { margin-bottom: 3rem; }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.philosophy-card {
  padding: 2.5rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: var(--trans);
}
.philosophy-card:hover {
  background: var(--accent-dim);
  border-color: var(--accent);
}
.philosophy-icon {
  width: 48px; height: 48px;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.philosophy-card h3 { margin-bottom: 0.75rem; }

.brand-values { padding: 5rem 5%; }
.brand-values-inner {
  max-width: 800px;
  margin: 0 auto;
}
.brand-values-inner .label,
.brand-values-inner h2 { text-align: center; }
.brand-values-inner h2 { margin-bottom: 3rem; }
.value-item {
  display: grid;
  grid-template-columns: 4rem 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.value-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}
.value-item h4 { margin-bottom: 0.3rem; font-size: 1rem; }
.value-item p  { font-size: 0.9rem; margin: 0; }

.timeline { padding: 5rem 5%; background: var(--bg-alt); }
.timeline .section-intro { margin-bottom: 3rem; }
.timeline-list {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding: 0 0 2.5rem 1.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -5px; top: 6px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--dark);
}
.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 0.3rem;
}
.timeline-item h4 { margin-bottom: 0.3rem; }
.timeline-item p  { font-size: 0.9rem; margin: 0; }

.about-cta { padding: 5rem 5%; }
.about-cta-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-cta-img img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}
.about-cta-text .label { margin-bottom: 0.8rem; }
.about-cta-text h2 { margin-bottom: 1rem; }
.about-cta-text p  { margin-bottom: 1rem; }
.about-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* =============================================================
   16. MENU PAGE
   ============================================================= */
.menu-disclaimer {
  background: var(--accent-dim);
  border-left: 4px solid var(--accent);
  padding: 1rem 2rem;
  margin: 0 5% 3rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.menu-disclaimer p { font-size: 0.9rem; margin: 0; }

.category-tiles {
  padding: 0 5% 3rem;
}
.category-tiles h2 { text-align: center; margin-bottom: 2rem; }
.category-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.category-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-tile:hover img { transform: scale(1.06); }
.category-tile-label {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(14,11,8,0.85) 0%, transparent 60%);
}
.category-tile-label h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.category-tile-label span {
  font-size: 0.78rem;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.menu-sections { padding: 1rem 5% 5rem; }
.menu-section {
  max-width: 900px;
  margin: 0 auto 4rem;
  scroll-margin-top: calc(var(--nav-h) + 1rem);
}
.menu-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.menu-section-header h2 { font-size: 1.6rem; }
.menu-section-count {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 0.15rem 0.7rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.menu-items { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-info { flex: 1; }
.menu-item-info h4 {
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.menu-badge {
  display: inline-block;
  padding: 0.1rem 0.55rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-family: var(--ff-body);
}
.badge-signature { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border); }
.badge-bestseller { background: rgba(62,143,160,0.15); color: var(--highlight); border: 1px solid rgba(62,143,160,0.3); }
.badge-new { background: rgba(100,200,100,0.1); color: #7dc87d; border: 1px solid rgba(100,200,100,0.25); }
.menu-item-info p { font-size: 0.875rem; margin: 0; }
.menu-bottom-cta {
  text-align: center;
  padding: 3rem 0;
  border-top: 1px solid var(--border);
  max-width: 900px;
  margin: 0 auto;
}
.menu-bottom-cta p { margin-bottom: 1.5rem; }

/* =============================================================
   17. GALLERY PAGE
   ============================================================= */
.gallery-section { padding: 4rem 5% 5rem; }
.gallery-section .section-intro { margin-bottom: 3rem; }

.masonry {
  columns: 4;
  column-gap: 1rem;
  max-width: 1300px;
  margin: 0 auto;
}
.masonry-item {
  display: block;
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.masonry-item:hover img {
  transform: scale(1.04);
  opacity: 0.85;
}
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(14,11,8,0);
  transition: background 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.masonry-overlay svg { opacity: 0; color: #fff; width: 32px; height: 32px; transition: opacity 0.3s; }
.masonry-item:hover .masonry-overlay { background: rgba(14,11,8,0.35); }
.masonry-item:hover .masonry-overlay svg { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 2rem;
  background: none; border: none;
  color: #fff; font-size: 2rem;
  cursor: pointer; line-height: 1; opacity: 0.8;
  transition: opacity var(--trans);
}
.lightbox-close:hover { opacity: 1; }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.5rem;
  padding: 0.8rem 1rem;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background var(--trans);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.3); }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  font-family: var(--ff-body);
}
.gallery-cta {
  padding: 3rem 5% 5rem;
  text-align: center;
  border-top: 1px solid var(--border);
}
.gallery-cta p { margin-bottom: 2rem; }
.gallery-cta .platform-buttons { justify-content: center; }

/* =============================================================
   18. CONTACT PAGE
   ============================================================= */
.contact-section { padding: 5rem 5%; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-blocks { display: flex; flex-direction: column; gap: 2rem; }
.contact-block h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.contact-block p,
.contact-block a {
  font-size: 0.9rem;
  color: var(--cream-dim);
  text-decoration: none;
  display: block;
  margin-bottom: 0.3rem;
  transition: color var(--trans);
}
.contact-block a:hover { color: var(--accent); }
.contact-block .contact-link-icon {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.contact-block .contact-link-icon svg { width: 16px; height: 16px; color: var(--accent); }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.hours-table td { padding: 0.4rem 0; }
.hours-table .peak-day { color: var(--cream); font-weight: 600; }
.hours-table td:last-child { text-align: right; color: var(--cream-dim); }

.contact-form-wrap {}
.contact-form-wrap h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
  color: var(--cream);
  letter-spacing: 0.03em;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  background: rgba(255,255,255,0.06);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: border-color var(--trans);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(248,242,234,0.35); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group select { appearance: none; cursor: pointer; }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group.invalid input,
.form-group.invalid select,
.form-group.invalid textarea { border-color: #e05050; }
.form-success {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.form-success svg { width: 56px; height: 56px; color: var(--highlight); margin: 0 auto 1rem; }
.form-success h3 { margin-bottom: 0.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.map-placeholder { padding: 5rem 5%; background: var(--bg-alt); }
.map-box {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.map-pin-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}
.map-pin-visual svg { width: 80px; height: 80px; color: var(--accent); }
.map-info h3 { margin-bottom: 1rem; }
.map-info p { font-size: 0.9rem; margin-bottom: 0.5rem; }
.map-info a {
  color: var(--accent);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 700;
}
.map-info a:hover { text-decoration: underline; }

/* =============================================================
   19. FAQ ACCORDION
   ============================================================= */
.faq { padding: 5rem 5%; }
.faq .section-intro { margin-bottom: 3rem; }
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  transition: color var(--trans);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 20px; height: 20px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--trans);
}
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding: 0 0 1.5rem;
  font-size: 0.9rem;
  color: var(--cream-dim);
}

/* =============================================================
   20. SCROLL-TO-TOP BUTTON
   ============================================================= */
#scrollTop {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 500;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(212,95,64,0.4);
  transition: var(--trans);
}
#scrollTop.show { display: flex; }
#scrollTop:hover { background: #b84e32; transform: translateY(-2px); }
#scrollTop svg { width: 20px; height: 20px; }

/* =============================================================
   21. FADE-IN ANIMATION
   ============================================================= */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: none;
}

/* =============================================================
   22. RESPONSIVE
   ============================================================= */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 2fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .brand-teaser-inner { gap: 2.5rem; }
  .about-story-inner { gap: 2.5rem; }
  .category-tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 3; }
  .map-box { grid-template-columns: 1fr; }
  .map-pin-visual { display: none; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .hamburger { display: flex; }
  .nav-links, .nav-cta { display: none; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .food-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser-inner { grid-template-columns: 1fr; }
  .brand-teaser-img img { height: 320px; }
  .about-story-inner { grid-template-columns: 1fr; }
  .about-story-img img { height: 300px; }
  .about-cta-inner { grid-template-columns: 1fr; }
  .about-cta-img img { height: 280px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 2; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .menu-disclaimer { flex-direction: column; align-items: flex-start; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  :root { --nav-h: 56px; }
  h1 { font-size: 2.2rem; }
  .features-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .food-grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .category-tiles-grid { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .masonry { columns: 2; column-gap: 0.5rem; }
  .masonry-item { margin-bottom: 0.5rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .platform-buttons { flex-direction: column; align-items: center; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); gap: 0.4rem; }
}
