/* Design rationale: Bold, festive Chinese restaurant identity rooted in the brand's iconic red-and-white mascot logo.
   Heading: Abril Fatface — punchy display serif with strong personality matching the brand's bold, confident Chinese-food character.
   Body: Outfit — clean modern grotesque that keeps menus legible and inviting without competing with display headings. */

/* ==========================================================
   1. RESET & CUSTOM PROPERTIES
   ========================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #1A0808;
  --bg-alt:     #261010;
  --accent:     #C8181C;
  --highlight:  #E8A020;
  --cream:      #FDF5E8;
  --cream-dim:  rgba(253,245,232,0.65);
  --accent-dim: rgba(200,24,28,0.14);
  --border:     rgba(200,24,28,0.22);
  --ff-display: 'Abril Fatface', serif;
  --ff-body:    'Outfit', sans-serif;
  --nav-h:      72px;
  --radius:     6px;
  --trans:      0.3s ease;
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--dark); color: var(--cream); line-height: 1.6; overflow-x: hidden; }
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ==========================================================
   2. TYPOGRAPHY
   ========================================================== */
h1,h2,h3,h4 { font-family: var(--ff-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-family: var(--ff-body); font-size: 1.1rem; font-weight: 700; }
p  { font-size: 1rem; line-height: 1.75; color: var(--cream-dim); }
.label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--highlight);
}
.section-title { margin-bottom: 0.5rem; }
.section-subtitle { color: var(--cream-dim); max-width: 60ch; }

/* ==========================================================
   3. BUTTONS
   ========================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background var(--trans), color var(--trans), border-color var(--trans), transform 0.15s;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary  { background: var(--accent); color: var(--cream); border-color: var(--accent); }
.btn-primary:hover  { background: #a51215; border-color: #a51215; }
.btn-ghost   { background: transparent; color: var(--cream); border-color: var(--cream); }
.btn-ghost:hover   { background: var(--cream); color: var(--dark); }
.btn-outline  { background: transparent; color: var(--accent); border-color: var(--accent); }
.btn-outline:hover  { background: var(--accent); color: var(--cream); }

/* ==========================================================
   4. NAVBAR
   ========================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 2rem;
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 50%;
}
.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--cream);
  line-height: 1.1;
}
.nav-logo-text span {
  display: block;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--highlight);
  text-transform: uppercase;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--cream-dim);
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }

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

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 800;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--cream);
  transition: color var(--trans);
}
.nav-overlay a:hover { color: var(--accent); }
.nav-overlay .btn { margin-top: 1rem; }

/* ==========================================================
   5. HERO
   ========================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  background: url('images/banner.jpg?v=1') center/cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,8,8,0.85) 0%, rgba(26,8,8,0.5) 60%, rgba(26,8,8,0.3) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero-content .label { margin-bottom: 1rem; }
.hero-content h1 { margin-bottom: 0.5rem; }
.hero-tagline {
  font-size: 1.1rem;
  color: var(--cream-dim);
  margin-bottom: 2rem;
  max-width: 50ch;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream-dim);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-indicator::after {
  content: '';
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollDown 1.5s ease infinite;
}
@keyframes scrollDown {
  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 {
  background: var(--bg-alt);
  padding: 5rem 2rem;
}
.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.features-inner .section-subtitle { margin: 0.75rem auto 3rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
}
.feature-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1.5rem;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: transform var(--trans), border-color var(--trans);
}
.feature-card:hover { transform: translateY(-4px); border-color: var(--accent); }
.feature-icon {
  width: 52px; height: 52px;
  color: var(--accent);
}
.feature-card h4 { font-size: 1rem; }
.feature-card p { font-size: 0.875rem; text-align: center; }

/* ==========================================================
   7. OFFERINGS GRID (home 3×3 + offerings page filter grid)
   ========================================================== */
.offerings-preview {
  padding: 5rem 2rem;
  background: var(--dark);
}
.offerings-preview .section-header {
  max-width: 1280px;
  margin: 0 auto 3rem;
}
.offerings-grid-home {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.offering-item {
  position: relative;
  aspect-ratio: 1;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
}
.offering-item img { transition: transform 0.5s ease; }
.offering-item:hover img { transform: scale(1.06); }
.offering-item-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,8,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity var(--trans);
}
.offering-item:hover .offering-item-overlay { opacity: 1; }
.offering-item-overlay h4 { color: var(--cream); margin-bottom: 0.25rem; }
.offering-item-overlay .label { color: var(--highlight); }

/* ==========================================================
   8. BRAND TEASER SPLIT
   ========================================================== */
.brand-teaser {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}
.brand-teaser-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.brand-teaser-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  overflow: hidden;
}
.brand-teaser-img::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  z-index: -1;
}
.brand-teaser-text .label { margin-bottom: 0.75rem; }
.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: 4rem 2rem;
  background: var(--accent);
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--cream);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(253,245,232,0.75);
}

/* ==========================================================
   10. REVIEW CARDS
   ========================================================== */
.reviews {
  padding: 5rem 2rem;
  background: var(--dark);
}
.reviews-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.reviews-inner .section-header { margin-bottom: 3rem; }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars { display: flex; gap: 4px; color: var(--highlight); }
.review-stars svg { width: 16px; height: 16px; }
.review-text { font-size: 0.95rem; font-style: italic; color: var(--cream-dim); flex: 1; }
.review-author {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}
.review-platform { font-size: 0.75rem; color: var(--cream-dim); opacity: 0.6; }

/* ==========================================================
   11. SOCIAL CTA + PLATFORM BUTTONS
   ========================================================== */
.social-cta {
  padding: 5rem 2rem;
  background: var(--bg-alt);
  text-align: center;
}
.social-cta-inner {
  max-width: 720px;
  margin: 0 auto;
}
.social-cta h2 { margin-bottom: 1rem; }
.social-cta p { margin-bottom: 2.5rem; }
.social-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform var(--trans), background var(--trans);
}
.social-btn:hover { transform: translateY(-2px); }
.social-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.social-btn.instagram { background: linear-gradient(135deg, #833ab4, #e1306c, #fd1d1d); color: #fff; }
.social-btn.facebook  { background: #1877F2; color: #fff; }
.social-btn.whatsapp  { background: #25D366; color: #fff; }
.social-btn.foodpanda { background: #D70F64; color: #fff; }

/* ==========================================================
   12. SOCIAL FEED GRID
   ========================================================== */
.social-feed {
  padding: 5rem 2rem;
  background: var(--dark);
}
.social-feed-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.social-feed-inner .section-header { margin-bottom: 2.5rem; }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.feed-item img { transition: transform 0.5s ease; }
.feed-item:hover img { transform: scale(1.08); }
.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(200,24,28,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 32px; height: 32px; color: #fff; }

/* ==========================================================
   13. FOOTER
   ========================================================== */
.footer {
  background: #0E0404;
  padding: 4rem 2rem 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { margin-bottom: 1.25rem; }
.footer-tagline { font-size: 0.875rem; color: var(--cream-dim); margin-bottom: 1.5rem; max-width: 28ch; }
.footer-social { display: flex; gap: 1rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background var(--trans), border-color var(--trans);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--highlight); margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.875rem; color: var(--cream-dim); transition: color var(--trans); }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: var(--cream-dim);
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; color: var(--accent); }
.footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--cream-dim); opacity: 0.6; }
.footer-badges { display: flex; gap: 1rem; }
.footer-badge {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 2rem;
  border: 1px solid var(--border);
  color: var(--cream-dim);
}

/* ==========================================================
   14. PAGE HERO (inner pages)
   ========================================================== */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  padding: 3rem 2rem;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,8,0.9) 0%, rgba(26,8,8,0.4) 60%, rgba(26,8,8,0.2) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
}
.page-hero-content .label { margin-bottom: 0.5rem; }
.page-hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); }

/* ==========================================================
   15. ABOUT PAGE SECTIONS
   ========================================================== */
.about-story {
  padding: 5rem 2rem;
  background: var(--dark);
}
.about-story-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.about-story-img {
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  position: sticky;
  top: calc(var(--nav-h) + 2rem);
}
.about-story-text .label { margin-bottom: 0.75rem; }
.about-story-text h2 { margin-bottom: 2rem; }
.about-story-text p { margin-bottom: 1.25rem; }
.philosophy {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}
.philosophy-inner {
  max-width: 1280px;
  margin: 0 auto;
  text-align: center;
}
.philosophy-inner .section-subtitle { margin: 0.75rem auto 3rem; }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.philosophy-card {
  padding: 2.5rem 2rem;
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--trans);
}
.philosophy-card:hover { border-color: var(--accent); }
.phil-icon { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 1rem; }
.philosophy-card h3 { margin-bottom: 0.75rem; font-size: 1.25rem; }
.values {
  padding: 5rem 2rem;
  background: var(--dark);
}
.values-inner {
  max-width: 900px;
  margin: 0 auto;
}
.values-inner .section-header { text-align: center; margin-bottom: 3rem; }
.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--accent);
  opacity: 0.4;
  line-height: 1;
}
.value-item h4 { margin-bottom: 0.25rem; font-size: 1rem; }
.timeline {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}
.timeline-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.timeline-inner .section-subtitle { margin: 0.75rem auto 3rem; }
.timeline-list { position: relative; text-align: left; }
.timeline-list::before {
  content: '';
  position: absolute;
  left: 16px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 1.5rem;
  padding: 0 0 2.5rem 0;
  align-items: start;
}
.timeline-dot {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 1;
}
.timeline-dot::after {
  content: '';
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--cream);
}
.timeline-year {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--highlight);
  margin-bottom: 0.25rem;
}
.timeline-item p { font-size: 0.875rem; }
.about-cta-split {
  padding: 5rem 2rem;
  background: var(--dark);
}
.about-cta-split-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-cta-img { aspect-ratio: 4/3; border-radius: var(--radius); overflow: hidden; }
.about-cta-text h2 { margin-bottom: 1.5rem; }
.about-cta-text p { margin-bottom: 1rem; }
.about-cta-buttons { display: flex; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }

/* ==========================================================
   16. OFFERINGS PAGE (filter bar, list items, badges)
   ========================================================== */
.disclaimer-bar {
  background: var(--accent-dim);
  border-bottom: 1px solid var(--border);
  padding: 1rem 2rem;
  text-align: center;
  font-size: 0.875rem;
  color: var(--cream-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.category-tiles {
  padding: 4rem 2rem;
  background: var(--dark);
}
.category-tiles-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.category-tiles-inner .section-header { margin-bottom: 2.5rem; }
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}
.category-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  display: block;
  text-decoration: none;
}
.category-tile img { transition: transform 0.5s ease; }
.category-tile:hover img { transform: scale(1.06); }
.category-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,8,8,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.category-tile h3 { color: var(--cream); font-size: 1.3rem; margin-bottom: 0.25rem; }
.category-tile .label { color: var(--highlight); }
.menu-sections { padding: 2rem 2rem 5rem; background: var(--dark); }
.menu-sections-inner { max-width: 900px; margin: 0 auto; }
.menu-section { margin-bottom: 4rem; }
.menu-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.menu-section-icon {
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  flex-shrink: 0;
}
.menu-section-icon svg { width: 22px; height: 22px; }
.menu-item {
  padding: 1.25rem 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 h4 { margin-bottom: 0.35rem; }
.menu-item-info p { font-size: 0.875rem; }
.menu-badge {
  flex-shrink: 0;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.65rem;
  border-radius: 2rem;
}
.badge-signature { background: var(--accent); color: var(--cream); }
.badge-bestseller { background: var(--highlight); color: var(--dark); }
.badge-new { background: transparent; border: 1px solid var(--highlight); color: var(--highlight); }
.menu-cta {
  padding: 4rem 2rem;
  background: var(--bg-alt);
  text-align: center;
}
.menu-cta-inner { max-width: 600px; margin: 0 auto; }
.menu-cta h2 { margin-bottom: 1rem; }
.menu-cta p { margin-bottom: 2rem; }

/* ==========================================================
   17. GALLERY PAGE (masonry + lightbox)
   ========================================================== */
.gallery-section {
  padding: 4rem 2rem 5rem;
  background: var(--dark);
}
.gallery-inner { max-width: 1280px; margin: 0 auto; }
.filter-bar {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 2rem;
  font-family: var(--ff-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  cursor: pointer;
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  transition: all var(--trans);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}
.masonry-grid {
  columns: 4;
  column-gap: 1rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img { height: auto; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item.hidden { display: none; }
.gallery-cta {
  padding: 4rem 2rem;
  background: var(--bg-alt);
  text-align: center;
}
.gallery-cta-inner { max-width: 600px; margin: 0 auto; }
.gallery-cta h2 { margin-bottom: 1rem; }
.gallery-cta p { margin-bottom: 2rem; }
.gallery-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(10,2,2,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.open { opacity: 1; pointer-events: all; }
.lightbox-img-wrap {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 85vh;
  width: auto;
  height: auto;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 2rem;
  z-index: 9001;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,8,8,0.7);
  border: none;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.5rem;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }
.lightbox-prev { left: -70px; }
.lightbox-next { right: -70px; }
.lightbox-counter {
  position: absolute;
  bottom: -2.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--cream-dim);
}

/* ==========================================================
   18. CONTACT PAGE
   ========================================================== */
.contact-section {
  padding: 5rem 2rem;
  background: var(--dark);
}
.contact-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.contact-blocks h2 { margin-bottom: 2rem; }
.contact-block { margin-bottom: 2rem; }
.contact-block h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.75rem;
}
.contact-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
  transition: color var(--trans);
}
.contact-link:hover { color: var(--accent); }
.contact-link svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.hours-table td { padding: 0.4rem 0; color: var(--cream-dim); }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--cream); }
.hours-table tr.peak td { color: var(--highlight); }

/* Inquiry Form */
.contact-form h2 { margin-bottom: 0.5rem; }
.contact-form p.form-desc { margin-bottom: 2rem; font-size: 0.875rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: border-color var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid { border-color: #ff4444; }
.form-group textarea { height: 120px; resize: vertical; }
.form-group select option { background: var(--dark); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#formSuccess {
  display: none;
  padding: 3rem 2rem;
  text-align: center;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--accent);
}
#formSuccess svg { width: 56px; height: 56px; color: var(--accent); margin: 0 auto 1rem; }
#formSuccess h3 { margin-bottom: 0.5rem; }

/* Map placeholder */
.map-placeholder {
  padding: 5rem 2rem;
  background: var(--bg-alt);
}
.map-placeholder-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.map-box {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: center;
  padding: 2rem;
}
.map-box svg { width: 48px; height: 48px; color: var(--accent); }
.map-box p { font-size: 0.875rem; color: var(--cream-dim); }
.map-info h3 { margin-bottom: 1rem; }
.map-info p { font-size: 0.9rem; margin-bottom: 0.75rem; }
.map-directions { display: flex; flex-direction: column; gap: 0.5rem; margin-top: 1rem; font-size: 0.875rem; color: var(--cream-dim); }

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

/* ==========================================================
   20. SCROLL-TO-TOP BUTTON
   ========================================================== */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top 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) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .brand-teaser-inner,
  .about-story-inner,
  .about-cta-split-inner,
  .map-placeholder-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-story-img { position: static; aspect-ratio: 16/9; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry-grid { columns: 3; }
  .contact-inner { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 1.5rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .offerings-grid-home { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .masonry-grid { columns: 2; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .tiles-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 2.2rem; }
  .offerings-grid-home { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .masonry-grid { columns: 1; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev { left: -50px; }
  .lightbox-next { right: -50px; }
  .hero-cta { flex-direction: column; }
}
