/* ============================================================
   YUMI'S KITCHEN LAB — styles.css
   ============================================================ */

/* 1. GOOGLE FONTS
   Display: Syne (bold, geometric, modern — not in used list)
   Body: Nunito Sans → replaced with Mulish (clean, not in used list)
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;500;600;700;800&family=Mulish:wght@300;400;500;600;700&display=swap');

/* 2. DESIGN TOKENS
   ============================================================ */
:root {
  /* Palette — derived from logo: lime green + charcoal */
  --dark:       #1E1E1E;   /* deep charcoal background */
  --bg-alt:     #272727;   /* slightly lighter card bg */
  --accent:     #6ABF30;   /* bright lime green from "YUMI'S" wordmark */
  --highlight:  #A8E063;   /* lighter lime for secondary pop */
  --cream:      #F4F2EC;   /* warm off-white */
  --cream-dim:  rgba(244,242,236,0.65);
  --accent-dim: rgba(106,191,48,0.14);
  --border:     rgba(106,191,48,0.22);

  /* Typography */
  --ff-display: 'Syne', sans-serif;
  --ff-body:    'Mulish', sans-serif;

  /* Spacing & sizing */
  --nav-h:      72px;
  --radius:     8px;
  --radius-lg:  16px;
  --shadow:     0 4px 24px rgba(0,0,0,0.35);
  --shadow-sm:  0 2px 10px rgba(0,0,0,0.2);

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style: none;
}

button {
  cursor: pointer;
  font-family: var(--ff-body);
  border: none;
  background: none;
}

/* 4. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ff-display);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; }

p {
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.8;
}

.accent-text { color: var(--accent); }
.highlight-text { color: var(--highlight); }

/* 5. LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

.section-pad {
  padding: 96px 0;
}

.section-pad-sm {
  padding: 64px 0;
}

.text-center { text-align: center; }
.text-left   { text-align: left; }

.section-label {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
}

.section-title {
  margin-bottom: 16px;
}

.section-sub {
  max-width: 580px;
  margin: 0 auto 48px;
  text-align: center;
}

.divider {
  width: 48px;
  height: 3px;
  background: var(--accent);
  margin: 16px 0 32px;
}

.divider-center {
  margin: 16px auto 32px;
}

/* 6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 28px;
  border-radius: var(--radius);
  transition: all 0.25s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--highlight);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(106,191,48,0.35);
}

.btn-outline {
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--dark);
  transform: translateY(-2px);
}

.btn-ghost {
  color: var(--cream);
  border: 2px solid rgba(244,242,236,0.3);
}
.btn-ghost:hover {
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* 7. NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  height: var(--nav-h);
  transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

#navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.nav-brand-text {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
}

.nav-brand-text span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-links a {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.25s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  margin-left: 24px;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 20px;
  padding: 0;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s var(--ease);
}

.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: var(--nav-h);
  left: 0;
  width: 100%;
  background: var(--dark);
  padding: 24px;
  border-top: 1px solid var(--border);
  flex-direction: column;
  gap: 8px;
  z-index: 998;
  box-shadow: var(--shadow);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream-dim);
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.2s;
}

.mobile-menu a:last-child { border-bottom: none; }
.mobile-menu a:hover { color: var(--accent); }

.mobile-menu .btn {
  margin-top: 16px;
  width: 100%;
  justify-content: center;
}

/* 8. HERO — HOME
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(30,30,30,0.85) 0%,
    rgba(30,30,30,0.65) 50%,
    rgba(30,30,30,0.78) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 860px;
  padding: 0 24px;
  padding-top: var(--nav-h);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 6px 16px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.4); }
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 20px;
}

.hero h1 .brand-green { color: var(--accent); }

.hero-tagline {
  font-size: clamp(1rem, 2.5vw, 1.25rem);
  color: var(--cream-dim);
  max-width: 620px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--cream-dim);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounceDown 2s infinite;
}

.scroll-indicator svg {
  width: 20px;
  height: 20px;
}

@keyframes bounceDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* 9. FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.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;
  color: var(--accent);
  flex-shrink: 0;
}

.feature-icon svg {
  width: 24px;
  height: 24px;
}

.feature-item h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
}

.feature-item p {
  font-size: 0.82rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* 10. OFFERINGS GRID
   ============================================================ */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
}

.offering-tile {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  cursor: pointer;
}

.offering-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.offering-tile:hover img {
  transform: scale(1.08);
}

.offering-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,30,0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.offering-tile:hover .offering-tile-overlay {
  opacity: 1;
}

.offering-tile-overlay .tile-category {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.offering-tile-overlay h4 {
  color: var(--cream);
  font-size: 1rem;
}

/* 11. BRAND TEASER (SPLIT)
   ============================================================ */
.brand-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}

.brand-teaser-img {
  position: relative;
  overflow: hidden;
}

.brand-teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-teaser-img-accent {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--accent);
  color: var(--dark);
  padding: 8px 16px;
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius);
}

.brand-teaser-text {
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 60px;
  gap: 24px;
}

.brand-teaser-text p {
  margin-bottom: 0;
}

/* 12. STATS ROW
   ============================================================ */
.stats-row {
  background: var(--accent);
  padding: 64px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item h3 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.stat-item p {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(30,30,30,0.65);
  margin-top: 6px;
}

/* 13. REVIEW CARDS
   ============================================================ */
.reviews-section {
  background: var(--dark);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--accent);
}

.review-stars svg {
  width: 18px;
  height: 18px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 2px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  flex-shrink: 0;
}

.review-author-info .name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cream);
}

.review-author-info .location {
  font-size: 0.78rem;
  color: var(--cream-dim);
}

/* 14. SOCIAL CTA BANNER
   ============================================================ */
.social-cta {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 72px 0;
  text-align: center;
}

.social-cta h2 {
  margin-bottom: 16px;
}

.social-cta p {
  margin-bottom: 40px;
}

.social-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.25s var(--ease);
}

.social-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.social-btn-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}
.social-btn-ig:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(253,29,29,0.4);
}

.social-btn-fb {
  background: #1877F2;
  color: #fff;
}
.social-btn-fb:hover {
  background: #1557b0;
  transform: translateY(-2px);
}

.social-btn-wa {
  background: #25D366;
  color: #fff;
}
.social-btn-wa:hover {
  background: #1dab52;
  transform: translateY(-2px);
}

/* 15. SOCIAL FEED GRID
   ============================================================ */
.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
}

.feed-item:hover img {
  transform: scale(1.08);
  filter: brightness(0.7);
}

.feed-item-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.35s var(--ease);
  color: var(--cream);
}

.feed-item-overlay svg {
  width: 28px;
  height: 28px;
}

.feed-item:hover .feed-item-overlay {
  opacity: 1;
}

/* 16. PAGE HERO (for inner pages)
   ============================================================ */
.page-hero {
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  padding-top: var(--nav-h);
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,30,0.88) 0%, rgba(30,30,30,0.45) 60%, rgba(30,30,30,0.6) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  color: var(--cream);
  margin-bottom: 12px;
}

.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--cream-dim);
}

.page-hero-breadcrumb a:hover { color: var(--accent); }
.page-hero-breadcrumb span { color: var(--accent); }

/* 17. ABOUT PAGE
   ============================================================ */
.origin-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.origin-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.origin-img img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.origin-img-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 100px;
  height: 100px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--dark);
  font-family: var(--ff-display);
  font-weight: 800;
  line-height: 1.1;
  font-size: 0.8rem;
  padding: 12px;
  border: 4px solid var(--dark);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.philosophy-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  transition: transform 0.25s var(--ease);
}

.philosophy-card:hover {
  transform: translateY(-4px);
}

.philosophy-icon {
  width: 56px;
  height: 56px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 20px;
}

.philosophy-icon svg {
  width: 26px;
  height: 26px;
}

.philosophy-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.values-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color 0.25s;
}

.value-item:hover {
  border-color: var(--accent);
}

.value-number {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
  flex-shrink: 0;
  opacity: 0.5;
}

.value-item h4 {
  color: var(--cream);
  margin-bottom: 6px;
}

/* Timeline */
.timeline {
  position: relative;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: 40px;
}

.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
  position: absolute;
  left: -34px;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--dark);
}

.timeline-year {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 4px;
}

.timeline-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 6px;
}

.timeline-desc {
  font-size: 0.9rem;
  color: var(--cream-dim);
}

/* About CTA split */
.about-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-cta-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 460px;
}

.about-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 18. MENU PAGE
   ============================================================ */
.disclaimer-bar {
  background: var(--accent-dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
}

.disclaimer-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.disclaimer-bar p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin: 0;
}

.disclaimer-bar a {
  color: var(--accent);
}

.category-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 0;
}

.category-tile {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}

.category-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s var(--ease);
}

.category-tile:hover img {
  transform: scale(1.07);
}

.category-tile-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,30,30,0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 20px;
}

.category-tile-label h4 {
  color: var(--cream);
  font-size: 1.05rem;
}

/* Category sections */
.category-section {
  padding: 64px 0;
  border-bottom: 1px solid var(--border);
}

.category-section:last-child {
  border-bottom: none;
}

.category-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}

.category-header h2 {
  font-size: 1.8rem;
}

.category-count {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 4px 14px;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 0.08em;
}

.menu-items-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.menu-item-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  transition: border-color 0.25s, transform 0.25s;
}

.menu-item-card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
}

.menu-item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
  gap: 12px;
}

.menu-item-header h4 {
  color: var(--cream);
  font-size: 1rem;
}

.menu-badge {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  white-space: nowrap;
}

.badge-bestseller {
  background: var(--accent-dim);
  color: var(--accent);
  border: 1px solid var(--border);
}

.badge-new {
  background: rgba(168,224,99,0.15);
  color: var(--highlight);
  border: 1px solid rgba(168,224,99,0.25);
}

.badge-spicy {
  background: rgba(255,100,50,0.12);
  color: #ff7043;
  border: 1px solid rgba(255,100,50,0.25);
}

.menu-item-card p {
  font-size: 0.88rem;
  line-height: 1.65;
}

/* Bottom menu CTA */
.menu-bottom-cta {
  background: var(--bg-alt);
  border-radius: var(--radius-lg);
  padding: 56px 48px;
  text-align: center;
  border: 1px solid var(--border);
  margin: 64px 0;
}

.menu-bottom-cta h2 {
  margin-bottom: 16px;
}

.menu-bottom-cta p {
  max-width: 500px;
  margin: 0 auto 32px;
}

.cta-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* 19. GALLERY PAGE
   ============================================================ */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 48px 0 24px;
}

.filter-btn {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  background: transparent;
  transition: all 0.2s var(--ease);
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.gallery-group {
  margin-bottom: 64px;
}

.gallery-group-title {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.gallery-group-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.masonry {
  columns: 3;
  column-gap: 12px;
}

.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  position: relative;
}

.masonry-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s var(--ease), filter 0.4s var(--ease);
}

.masonry-item:hover img {
  transform: scale(1.04);
  filter: brightness(0.75);
}

.masonry-item::after {
  content: '';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  background: rgba(106,191,48,0.15);
  border: 2px solid var(--accent);
  border-radius: var(--radius);
}

.masonry-item:hover::after {
  opacity: 1;
}

/* Gallery hidden state */
.masonry-item[data-hidden="true"] {
  display: none;
}

/* Lightbox */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.94);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}

#lightbox.open {
  display: flex;
}

.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

#lightbox-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.lightbox-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.lb-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.2);
}

.lb-btn:hover { background: var(--accent); color: var(--dark); }

.lb-btn svg { width: 18px; height: 18px; }

.lb-counter {
  font-size: 0.8rem;
  color: var(--cream-dim);
  min-width: 60px;
  text-align: center;
}

.lb-close {
  position: absolute;
  top: -48px;
  right: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.2);
}

.lb-close:hover { background: var(--accent); color: var(--dark); }
.lb-close svg { width: 16px; height: 16px; }

/* Gallery CTA */
.gallery-cta {
  text-align: center;
  padding: 64px 0;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}

/* 20. CONTACT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}

.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: border-color 0.25s;
}

.contact-block:hover {
  border-color: var(--accent);
}

.contact-block-icon {
  width: 42px;
  height: 42px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}

.contact-block-icon svg {
  width: 20px;
  height: 20px;
}

.contact-block-info h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}

.contact-block-info p,
.contact-block-info a {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.6;
}

.contact-block-info a:hover { color: var(--accent); }

/* Hours table */
.hours-table {
  width: 100%;
  border-collapse: collapse;
}

.hours-table tr td {
  padding: 4px 0;
  font-size: 0.88rem;
  color: var(--cream-dim);
}

.hours-table tr td:first-child {
  font-weight: 600;
  color: var(--cream);
  width: 120px;
}

.hours-table tr.today td {
  color: var(--accent);
}

/* Inquiry form */
.inquiry-form-wrapper {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
}

.inquiry-form-wrapper h3 {
  margin-bottom: 8px;
}

.inquiry-form-wrapper > p {
  margin-bottom: 32px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 16px;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

.form-group label .req {
  color: var(--accent);
  margin-left: 2px;
}

.form-group input,
.form-group select,
.form-group textarea {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 12px 16px;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #ff4444;
}

.form-group select option {
  background: var(--dark);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

#formSuccess {
  display: none;
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-dim);
  border: 2px solid var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}

.success-icon svg { width: 30px; height: 30px; }

#formSuccess h3 { color: var(--cream); margin-bottom: 12px; }
#formSuccess p { color: var(--cream-dim); }

/* Map placeholder */
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 40px;
  text-align: center;
  margin: 48px 0;
}

.map-pin-icon {
  width: 64px;
  height: 64px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}

.map-pin-icon svg { width: 32px; height: 32px; }

.branch-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 20px 0;
  text-align: left;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.branch-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: 0.9rem;
  color: var(--cream-dim);
}

.branch-num {
  font-weight: 700;
  color: var(--accent);
  min-width: 20px;
}

/* FAQ accordion */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s;
}

.faq-item.open {
  border-color: var(--accent);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  text-align: left;
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  gap: 16px;
  transition: color 0.2s;
}

.faq-question:hover,
.faq-item.open .faq-question {
  color: var(--accent);
}

.faq-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  transition: transform 0.3s var(--ease);
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease);
}

.faq-answer-inner {
  padding: 0 24px 20px;
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.75;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* 21. FOOTER
   ============================================================ */
footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 72px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--border);
}

.footer-logo-text {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
}

.footer-logo-text span { color: var(--accent); }

.footer-tagline {
  font-size: 0.88rem;
  color: var(--cream-dim);
  max-width: 260px;
  line-height: 1.7;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream-dim);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}

.footer-social svg { width: 16px; height: 16px; }

.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.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(--accent); }

.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 12px;
}

.footer-contact-item svg {
  width: 16px;
  height: 16px;
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item span {
  font-size: 0.85rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bottom p {
  font-size: 0.8rem;
  color: var(--cream-dim);
}

.footer-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--cream-dim);
}

.footer-badge svg {
  width: 12px;
  height: 12px;
  color: var(--accent);
}

/* 22. SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 48px;
  height: 48px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  transition: all 0.3s var(--ease);
  z-index: 900;
  box-shadow: 0 4px 16px rgba(106,191,48,0.4);
  border: none;
}

#scrollTop.visible {
  opacity: 1;
  transform: translateY(0);
}

#scrollTop:hover {
  background: var(--highlight);
  transform: translateY(-3px);
}

#scrollTop svg {
  width: 20px;
  height: 20px;
}

/* 23. 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;
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .offerings-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .brand-teaser {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brand-teaser-img {
    height: 400px;
  }

  .brand-teaser-img img {
    height: 100%;
    object-fit: cover;
  }

  .brand-teaser-text {
    padding: 56px 48px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .origin-split,
  .about-cta-split {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .origin-img {
    order: -1;
  }

  .category-tiles-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  :root {
    --nav-h: 64px;
  }

  .nav-links,
  .nav-cta {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .offerings-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .social-feed-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .masonry {
    columns: 2;
  }

  .menu-items-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .philosophy-grid {
    grid-template-columns: 1fr;
  }

  .values-list {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .brand-teaser-text {
    padding: 40px 28px;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
  }

  .page-hero {
    min-height: 320px;
  }

  .inquiry-form-wrapper {
    padding: 28px 20px;
  }

  .section-pad {
    padding: 64px 0;
  }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  .offerings-grid {
    grid-template-columns: 1fr;
  }

  .features-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .social-feed-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .masonry {
    columns: 1;
  }

  .hero-ctas {
    flex-direction: column;
  }

  .category-tiles-grid {
    grid-template-columns: 1fr;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-badge {
    font-size: 0.62rem;
  }

  .social-buttons {
    flex-direction: column;
  }

  .social-btn {
    width: 100%;
    justify-content: center;
  }
}
