/* Design rationale: Deep espresso-warmth grounds the site in Filipino comfort, while golden amber celebrates the harvest and fiesta spirit at the heart of Ombu Kusina's Modern Filipino identity. Teal-jade adds a tropical freshness unique to the Philippine culinary landscape.
   Heading: Yeseva One — bold, warm serif with Filipino fiesta character and confident presence. Perfect for a restaurant with showpiece signature dishes.
   Body: Nunito Sans — clean, rounded humanist sans with a friendly approachability that suits a warm, welcoming hotel restaurant. */

/* =====================================================
   1. RESET & CUSTOM PROPERTIES
   ===================================================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  font-size: 16px;
}
:root {
  --dark:       #17100C;
  --bg-alt:     #221812;
  --accent:     #E08C28;
  --highlight:  #2E9E88;
  --cream:      #F5EDE4;
  --cream-dim:  rgba(245,237,228,0.65);
  --accent-dim: rgba(224,140,40,0.14);
  --border:     rgba(224,140,40,0.22);
  --ff-display: 'Yeseva One', Georgia, serif;
  --ff-body:    'Nunito Sans', system-ui, sans-serif;
}
img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* =====================================================
   2. TYPOGRAPHY
   ===================================================== */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }
p { color: var(--cream-dim); }
.label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-title { margin-bottom: 1rem; }
.section-sub { max-width: 52ch; margin: 0 auto 3rem; text-align: center; }

/* =====================================================
   3. BUTTONS
   ===================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  border-radius: 6px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: #F0A040;
  border-color: #F0A040;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(224,140,40,0.4);
}
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(245,237,228,0.4);
}
.btn-ghost:hover {
  border-color: var(--cream);
  background: rgba(245,237,228,0.07);
}
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent-dim);
}

/* =====================================================
   4. NAVBAR
   ===================================================== */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
#navbar.scrolled {
  background: rgba(23,16,12,0.97);
  padding: 0.85rem 2rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--ff-display);
  font-size: 1.35rem;
  letter-spacing: -0.01em;
}
.nav-logo img {
  height: 36px;
  width: auto;
  background: var(--cream);
  padding: 3px 8px;
  border-radius: 5px;
}
.nav-logo .logo-text-fallback { display: none; }
.nav-logo.text-only .logo-text-fallback { display: block; }
.nav-logo em { font-style: normal; color: var(--accent); }
#nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
#nav-links a {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--cream-dim);
  transition: color 0.2s;
  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 0.25s ease;
}
#nav-links a:hover,
#nav-links a.active { color: var(--cream); }
#nav-links a:hover::after,
#nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 1rem; }
#hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
#hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* =====================================================
   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?v=1');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(23,16,12,0.5) 0%, rgba(23,16,12,0.65) 55%, rgba(23,16,12,0.9) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 2rem;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.4rem 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 7vw, 5.5rem);
  color: var(--cream);
  margin-bottom: 1rem;
}
.hero-tagline {
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  color: var(--cream-dim);
  margin-bottom: 2.5rem;
  max-width: 60ch;
  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;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 18px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* =====================================================
   6. FEATURES STRIP
   ===================================================== */
.features-strip {
  padding: 4rem 2rem;
  background: var(--bg-alt);
}
.features-strip .inner { max-width: 1100px; margin: 0 auto; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}
.feature-item { padding: 1.5rem 1rem; }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--accent);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-item h4 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.feature-item p { font-size: 0.82rem; }

/* =====================================================
   7. OFFERINGS GRID
   ===================================================== */
.section { padding: 5rem 2rem; }
.section .inner { max-width: 1200px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 3rem; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.offering-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--bg-alt);
}
.offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.offering-card:hover img { transform: scale(1.05); }
.offering-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,16,12,0.88) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: background 0.3s;
}
.offering-card:hover .offering-card-overlay {
  background: linear-gradient(to top, rgba(23,16,12,0.94) 0%, rgba(23,16,12,0.25) 70%);
}
.offering-card-overlay h4 {
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
}
.offering-card-overlay p { font-size: 0.78rem; color: var(--cream-dim); margin-top: 0.2rem; }

/* =====================================================
   8. BRAND TEASER SPLIT
   ===================================================== */
.brand-teaser {
  background: var(--bg-alt);
  padding: 5rem 2rem;
}
.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: 14px;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.brand-teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-teaser-text .label { display: block; margin-bottom: 0.75rem; }
.brand-teaser-text h2 { margin-bottom: 1.25rem; }
.brand-teaser-text p { margin-bottom: 1rem; }
.brand-teaser-text .btn { margin-top: 0.5rem; }

/* =====================================================
   9. STATS ROW
   ===================================================== */
.stats-section {
  padding: 4rem 2rem;
  background: var(--dark);
}
.stats-section .inner {
  max-width: 1100px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 14px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}
.stat-item {
  text-align: center;
  padding: 2.5rem 1rem;
  border-right: 1px solid var(--border);
}
.stat-item:last-child { border-right: none; }
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.82rem;
  color: var(--cream-dim);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* =====================================================
   10. REVIEW CARDS
   ===================================================== */
.reviews-section { padding: 5rem 2rem; background: var(--bg-alt); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.75rem;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--accent);
}
.review-stars svg { width: 16px; height: 16px; }
.review-text {
  font-size: 0.92rem;
  line-height: 1.65;
  color: var(--cream-dim);
  margin-bottom: 1.25rem;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--accent);
}
.review-name { font-size: 0.85rem; font-weight: 700; }
.review-source { font-size: 0.75rem; color: var(--cream-dim); }

/* =====================================================
   11. SOCIAL CTA
   ===================================================== */
.social-cta {
  padding: 4.5rem 2rem;
  background: var(--dark);
  text-align: center;
}
.social-cta h2 { margin-bottom: 0.75rem; }
.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: 8px;
  font-size: 0.88rem;
  font-weight: 700;
  border: 1px solid var(--border);
  background: var(--accent-dim);
  color: var(--cream);
  transition: all 0.2s;
}
.social-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.social-btn:hover { background: var(--border); transform: translateY(-2px); }

/* =====================================================
   12. SOCIAL FEED GRID
   ===================================================== */
.social-feed { padding: 5rem 2rem; background: var(--bg-alt); }
.social-feed .inner { max-width: 1100px; margin: 0 auto; }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
.feed-item {
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
}
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.feed-item:hover img { transform: scale(1.06); }
.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(224,140,40,0.25);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}
.feed-item-overlay svg { width: 32px; color: #fff; }
.feed-item:hover .feed-item-overlay { opacity: 1; }

/* =====================================================
   13. FOOTER
   ===================================================== */
.site-footer {
  background: #0E0905;
  padding: 4rem 2rem 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
}
.footer-brand p { font-size: 0.85rem; max-width: 30ch; margin-top: 0.75rem; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 1.25rem; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  transition: all 0.2s;
}
.footer-social a svg { width: 18px; height: 18px; }
.footer-social a:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.footer-col h5 {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a { font-size: 0.88rem; color: var(--cream-dim); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-info p {
  font-size: 0.85rem;
  margin-bottom: 0.5rem;
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
}
.footer-info svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.footer-info a { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 0;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.8rem; }
.footer-badges { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.footer-badge {
  font-size: 0.72rem;
  padding: 0.3rem 0.8rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  background: var(--accent-dim);
}

/* =====================================================
   14. PAGE HERO (inner pages)
   ===================================================== */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: flex-end;
  padding: 0 2rem 3.5rem;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  padding-top: 80px;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(23,16,12,0.4) 0%, rgba(23,16,12,0.85) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-hero-content .label { display: block; margin-bottom: 0.5rem; }
.page-hero-content h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
.page-hero-content p { margin-top: 0.75rem; font-size: 1.05rem; max-width: 52ch; }

/* =====================================================
   15. ABOUT PAGE
   ===================================================== */
.origin-section { padding: 5rem 2rem; }
.origin-section .inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.origin-text .label { display: block; margin-bottom: 0.75rem; }
.origin-text h2 { margin-bottom: 1.5rem; }
.origin-text p { margin-bottom: 1rem; }
.philosophy-section { padding: 5rem 2rem; background: var(--bg-alt); }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
}
.philosophy-card {
  padding: 2rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.philosophy-card .icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  margin-bottom: 1.25rem;
}
.philosophy-card .icon svg { width: 24px; height: 24px; }
.philosophy-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.philosophy-card p { font-size: 0.88rem; }
.values-section { padding: 5rem 2rem; }
.values-section .inner { max-width: 800px; margin: 0 auto; }
.values-list { margin-top: 2.5rem; }
.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--border);
}
.value-number {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  line-height: 1;
  min-width: 2.5rem;
  color: rgba(224,140,40,0.3);
}
.value-item h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.value-item p { font-size: 0.88rem; }
.timeline-section { padding: 5rem 2rem; background: var(--bg-alt); }
.timeline {
  max-width: 700px;
  margin: 2.5rem auto 0;
  position: relative;
  padding-left: 2rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 6px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
  padding-left: 2rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -7px; top: 5px;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--dark);
  box-shadow: 0 0 0 3px var(--accent-dim);
}
.timeline-year {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}
.timeline-item h4 { font-size: 1rem; margin-bottom: 0.35rem; }
.timeline-item p { font-size: 0.88rem; }
.about-cta { padding: 5rem 2rem; }
.about-cta .inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.about-cta-img { border-radius: 14px; overflow: hidden; aspect-ratio: 4/3; }
.about-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.about-cta-text .label { display: block; margin-bottom: 0.75rem; }
.about-cta-text h2 { margin-bottom: 1rem; }
.about-cta-text p { margin-bottom: 0.85rem; }
.about-cta-text .cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1rem; }

/* =====================================================
   16. MENU PAGE
   ===================================================== */
.disclaimer-bar {
  background: var(--accent-dim);
  border-bottom: 1px solid var(--border);
  padding: 0.85rem 2rem;
  text-align: center;
  font-size: 0.85rem;
  color: var(--cream-dim);
}
.disclaimer-bar a { color: var(--accent); font-weight: 700; }
.menu-section { padding: 5rem 2rem; }
.menu-section .inner { max-width: 1100px; margin: 0 auto; }
.category-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 1rem;
  margin-bottom: 4rem;
}
.cat-tile {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1rem;
  text-align: center;
  cursor: pointer;
  background: rgba(255,255,255,0.03);
  transition: all 0.25s ease;
  text-decoration: none;
  color: inherit;
}
.cat-tile:hover, .cat-tile.active {
  background: var(--accent-dim);
  border-color: var(--accent);
}
.cat-tile svg { width: 28px; height: 28px; color: var(--accent); margin: 0 auto 0.75rem; display: block; }
.cat-tile h4 { font-size: 0.9rem; font-family: var(--ff-body); font-weight: 700; margin-bottom: 0.25rem; }
.cat-tile .item-count { font-size: 0.75rem; color: var(--cream-dim); }
.menu-cat-section {
  margin-bottom: 3.5rem;
  scroll-margin-top: 90px;
}
.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.menu-cat-icon {
  width: 42px; height: 42px;
  background: var(--accent-dim);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
}
.menu-cat-icon svg { width: 22px; height: 22px; }
.menu-cat-header h2 { font-size: 1.5rem; }
.menu-items-list { display: flex; flex-direction: column; }
.menu-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid rgba(224,140,40,0.1);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 1rem;
}
.menu-item:last-child { border-bottom: none; }
.menu-item h4 {
  font-size: 0.98rem;
  font-family: var(--ff-body);
  font-weight: 700;
  margin-bottom: 0.35rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.menu-item p { font-size: 0.85rem; }
.badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  line-height: 1.4;
}
.badge-sig { background: rgba(224,140,40,0.2); color: var(--accent); border: 1px solid var(--accent); }
.badge-new { background: rgba(46,158,136,0.2); color: var(--highlight); border: 1px solid var(--highlight); }
.badge-popular { background: rgba(255,255,255,0.1); color: var(--cream-dim); border: 1px solid var(--border); }
.menu-cta {
  text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.menu-cta p { margin-bottom: 1.5rem; }

/* =====================================================
   17. GALLERY PAGE
   ===================================================== */
.gallery-section { padding: 4rem 2rem 5rem; }
.gallery-section .inner { max-width: 1300px; margin: 0 auto; }
.filter-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn {
  padding: 0.55rem 1.25rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--cream-dim);
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.masonry-grid { columns: 4; column-gap: 1rem; }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.gallery-cta { text-align: center; padding: 4rem 2rem; background: var(--bg-alt); }
.gallery-cta p { margin-bottom: 2rem; }
.gallery-cta .cta-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* =====================================================
   18. CONTACT PAGE
   ===================================================== */
.contact-section { padding: 5rem 2rem; }
.contact-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-blocks { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
}
.contact-block-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-block-header svg { width: 20px; height: 20px; color: var(--accent); }
.contact-block-header h4 { font-family: var(--ff-body); font-size: 0.9rem; font-weight: 700; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; }
.hours-table td { padding: 0.3rem 0; color: var(--cream-dim); }
.hours-table td:first-child { font-weight: 700; color: var(--cream); min-width: 140px; }
.hours-table tr.peak td { color: var(--accent); }
.contact-block a { color: var(--accent); }
.contact-block a:hover { text-decoration: underline; }
.contact-form-wrap h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
.contact-form-wrap p { font-size: 0.88rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream-dim);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 0.7rem 1rem;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--accent); }
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #e05555; }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; justify-content: center; font-size: 1rem; padding: 0.9rem 2rem; }
#formSuccess {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 3rem 2rem;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 12px;
  gap: 1rem;
}
#formSuccess svg { width: 52px; height: 52px; color: var(--accent); }
#formSuccess h3 { font-size: 1.4rem; }
#formSuccess p { font-size: 0.9rem; max-width: 36ch; margin: 0 auto; }
.map-section { padding: 4rem 2rem; background: var(--bg-alt); }
.map-section .inner { max-width: 1100px; margin: 0 auto; }
.map-placeholder {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 2rem;
}
.map-placeholder svg { width: 48px; color: var(--accent); margin: 0 auto 1rem; }
.map-placeholder h4 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.map-placeholder p { font-size: 0.88rem; margin-bottom: 1.5rem; }
.contact-social-cta { padding: 4rem 2rem; text-align: center; }
.contact-social-cta p { margin-bottom: 2rem; }

/* =====================================================
   19. FAQ ACCORDION
   ===================================================== */
.faq-section { padding: 5rem 2rem; }
.faq-list { max-width: 800px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  text-align: left;
  gap: 1rem;
}
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: transform 0.3s ease;
}
.faq-icon svg { width: 14px; height: 14px; }
.faq-item.open .faq-icon { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { font-size: 0.9rem; padding-bottom: 1.25rem; }

/* =====================================================
   20. SCROLL-TO-TOP
   ===================================================== */
#back-to-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  border-radius: 10px;
  background: var(--accent);
  color: var(--dark);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 999;
}
#back-to-top svg { width: 20px; height: 20px; }
#back-to-top.visible { opacity: 1; pointer-events: all; transform: translateY(0); }
#back-to-top:hover { background: #F0A040; box-shadow: 0 4px 16px rgba(224,140,40,0.45); }

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

/* =====================================================
   22. RESPONSIVE
   ===================================================== */
@media (max-width: 1024px) {
  .masonry-grid { columns: 3; }
  .offerings-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-section .inner { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .brand-teaser .inner,
  .origin-section .inner,
  .about-cta .inner { gap: 2.5rem; }
}
@media (max-width: 768px) {
  #nav-links {
    position: fixed;
    inset: 0;
    background: rgba(23,16,12,0.98);
    backdrop-filter: blur(10px);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1000;
  }
  #nav-links.open { transform: translateX(0); }
  .nav-cta { display: none; }
  #hamburger { display: flex; }
  .masonry-grid { columns: 2; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .brand-teaser .inner,
  .origin-section .inner,
  .about-cta .inner { grid-template-columns: 1fr; gap: 2rem; }
  .brand-teaser-img, .about-cta-img { order: -1; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .masonry-grid { columns: 1; }
  .offerings-grid { grid-template-columns: 1fr; }
  .stats-section .inner { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
}

/* LIGHTBOX */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(14,9,5,0.96);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
#lightbox.open { display: flex; }
.lb-img { max-height: 75vh; max-width: 90vw; border-radius: 8px; object-fit: contain; }
.lb-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 40px; height: 40px;
  color: var(--cream);
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.lb-close:hover { background: var(--accent-dim); }
.lb-prev, .lb-next {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 46px; height: 46px;
  font-size: 1.3rem;
  color: var(--cream);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.lb-prev { left: 1.5rem; }
.lb-next { right: 1.5rem; }
.lb-prev:hover, .lb-next:hover { background: var(--accent-dim); border-color: var(--accent); }
.lb-caption { font-size: 0.82rem; color: var(--cream-dim); text-align: center; }
