/* ============================================================
   El Poco Cantina — styles.css
   Palette derived from logo: teal background, orange-red text,
   yellow accent. Warm, festive, earthy Mexican cantina energy.
   Display: Fjalla One | Body: IBM Plex Sans
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Fjalla+One&family=IBM+Plex+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

:root {
  --dark:       #1C0D07;   /* deep espresso */
  --bg-alt:     #251208;   /* warm dark brown */
  --accent:     #D4501A;   /* brand orange-red */
  --highlight:  #F5B618;   /* brand yellow */
  --cream:      #FDF5E8;   /* warm near-white */
  --cream-dim:  rgba(253,245,232,0.65);
  --accent-dim: rgba(212,80,26,0.14);
  --border:     rgba(212,80,26,0.22);
  --teal:       #0E9B87;   /* logo teal */
  --teal-dim:   rgba(14,155,135,0.15);
  --ff-display: 'Fjalla One', sans-serif;
  --ff-body:    'IBM Plex Sans', sans-serif;
}

/* ── Reset & Base ── */
*, *::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;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--ff-display); line-height: 1.1; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 900; letter-spacing: -0.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 800; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p { color: var(--cream-dim); }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--highlight);
  background: rgba(245,182,24,0.12);
  border: 1px solid rgba(245,182,24,0.3);
  padding: 4px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.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: 6px;
  transition: all 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
}
.btn-primary:hover { background: #c0451a; transform: translateY(-2px); }
.btn-outline {
  border: 2px solid var(--border);
  color: var(--cream);
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.btn-teal {
  background: var(--teal);
  color: var(--cream);
}
.btn-teal:hover { background: #0c897a; transform: translateY(-2px); }

/* ── Fade-in ── */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ── Navbar ── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: background 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}
.navbar.scrolled {
  background: var(--dark);
  padding: 12px 0;
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: 50%;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--highlight); }
.nav-cta { flex-shrink: 0; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.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); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('images/banner.jpg?v=1') center center / cover no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(28,13,7,0.92) 0%, rgba(28,13,7,0.65) 60%, rgba(14,155,135,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 120px 24px 80px;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--highlight);
  background: rgba(245,182,24,0.1);
  border: 1px solid rgba(245,182,24,0.3);
  padding: 6px 16px;
  border-radius: 100px;
  margin-bottom: 24px;
}
.hero h1 { color: var(--cream); margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero-bio {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 540px;
  margin-bottom: 36px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream-dim);
  animation: bounce 2s infinite;
}
.hero-scroll svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── Features Strip ── */
.features {
  background: var(--bg-alt);
  padding: 60px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 32px 24px;
  border-right: 1px solid var(--border);
}
.feature-item:last-child { border-right: none; }
.feature-icon {
  width: 52px;
  height: 52px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--accent);
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-item h4 {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 6px;
}
.feature-item p { font-size: 0.82rem; color: var(--cream-dim); }

/* ── Section generic ── */
section { padding: 100px 0; }
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 64px;
}
.section-header p { margin-top: 12px; font-size: 1rem; }

/* ── Offerings Grid (home) ── */
.offerings-preview { background: var(--dark); }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}
.offering-card {
  background: var(--bg-alt);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.offering-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}
.offering-card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.offering-card-body { padding: 20px; }
.offering-card-tag {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 8px;
}
.offering-card-body h3 { color: var(--cream); margin-bottom: 8px; font-size: 1.1rem; }
.offering-card-body p { font-size: 0.85rem; }

/* ── Brand Teaser ── */
.brand-teaser { background: var(--bg-alt); }
.brand-teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.brand-teaser-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
}
.brand-teaser-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}
.brand-teaser-img-badge {
  position: absolute;
  bottom: 24px;
  right: 24px;
  background: var(--accent);
  color: var(--cream);
  font-family: var(--ff-display);
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 10px 18px;
  border-radius: 8px;
}
.brand-teaser-text p { margin: 16px 0 28px; }

/* ── Stats Row ── */
.stats-row {
  background: var(--accent);
  padding: 72px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  text-align: center;
}
.stat-item {
  padding: 24px;
  border-right: 1px solid rgba(253,245,232,0.2);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(253,245,232,0.7);
}

/* ── Reviews ── */
.reviews { 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: 12px;
  padding: 28px;
  transition: transform 0.3s ease;
}
.review-card:hover { transform: translateY(-4px); }
.review-stars { color: var(--highlight); font-size: 1rem; margin-bottom: 14px; letter-spacing: 2px; }
.review-text {
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  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-weight: 800;
  font-size: 1rem;
  color: var(--accent);
  flex-shrink: 0;
}
.review-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--cream);
}
.review-platform { font-size: 0.75rem; color: var(--cream-dim); }

/* ── Social CTA ── */
.social-cta { background: var(--bg-alt); padding: 80px 0; }
.social-cta-inner {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}
.social-cta h2 { margin-bottom: 12px; }
.social-cta p { margin-bottom: 32px; }
.social-btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 24px;
  border-radius: 8px;
  transition: all 0.25s;
}
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-btn-ig {
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
  color: #fff;
}
.social-btn-fb { background: #1877F2; color: #fff; }
.social-btn-wa { background: #25D366; color: #fff; }
.social-btn:hover { transform: translateY(-2px); opacity: 0.92; }

/* ── Social Feed Preview ── */
.social-feed { background: var(--dark); padding: 80px 0; }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-top: 48px;
}
.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
}
.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.feed-item:hover img { transform: scale(1.08); }
.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,13,7,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--cream);
}
.feed-item-overlay svg { width: 28px; height: 28px; }
.feed-item:hover .feed-item-overlay { opacity: 1; }

/* ── 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;
  margin-bottom: 56px;
}
.footer-logo img {
  height: 60px;
  width: 60px;
  border-radius: 50%;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 0.88rem;
  color: var(--cream-dim);
  margin-bottom: 20px;
  max-width: 260px;
  line-height: 1.6;
}
.footer-social { display: flex; gap: 12px; }
.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:hover { background: var(--accent); color: var(--cream); border-color: var(--accent); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--cream); }
.footer-contact p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin-bottom: 10px;
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.footer-contact p svg { flex-shrink: 0; width: 16px; height: 16px; margin-top: 3px; color: var(--accent); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.78rem; color: var(--cream-dim); margin: 0; }
.footer-bottom a { color: var(--accent); }

/* ── Page Hero ── */
.page-hero {
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 64px;
  margin-top: 0;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,13,7,0.95) 0%, rgba(28,13,7,0.5) 60%, rgba(28,13,7,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 120px;
}
.page-hero h1 { color: var(--cream); margin-bottom: 12px; }
.page-hero .page-hero-sub {
  font-size: 1.05rem;
  color: var(--cream-dim);
  max-width: 560px;
}
.page-hero-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 16px;
}
.page-hero-breadcrumb a { color: var(--highlight); }
.page-hero-breadcrumb span { color: var(--cream-dim); }

/* ── About Page ── */
.origin-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.origin-img {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}
.origin-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.origin-img-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--teal);
  color: var(--cream);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: 6px;
}
.origin-text p { margin-bottom: 16px; }
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.philosophy-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  border-top: 3px solid var(--accent);
}
.philosophy-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-dim);
  line-height: 1;
  margin-bottom: 12px;
}
.philosophy-card h3 { color: var(--cream); margin-bottom: 10px; }
.philosophy-card p { font-size: 0.88rem; }

.values-list { counter-reset: values; }
.value-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  width: 56px; height: 56px;
  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-weight: 900;
  font-size: 1.2rem;
  color: var(--accent);
  flex-shrink: 0;
}
.value-text h4 { color: var(--cream); margin-bottom: 6px; font-size: 1rem; }
.value-text p { font-size: 0.88rem; }

/* ── Timeline ── */
.timeline { position: relative; padding: 0; }
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}
.timeline-item {
  display: grid;
  grid-template-columns: 1fr 48px 1fr;
  gap: 24px;
  margin-bottom: 48px;
  align-items: start;
}
.timeline-item:nth-child(odd) .timeline-content { grid-column: 1; text-align: right; }
.timeline-item:nth-child(odd) .timeline-spacer { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-content { grid-column: 3; }
.timeline-item:nth-child(even) .timeline-spacer { grid-column: 1; }
.timeline-dot {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  position: relative;
  grid-column: 2;
}
.timeline-dot svg { width: 20px; height: 20px; color: var(--cream); }
.timeline-year {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--highlight);
  text-transform: uppercase;
  margin-bottom: 6px;
}
.timeline-content h4 { color: var(--cream); margin-bottom: 6px; font-size: 1rem; }
.timeline-content p { font-size: 0.85rem; }
.timeline-spacer {}

/* ── Menu Page ── */
.disclaimer-bar {
  background: var(--teal);
  padding: 16px 0;
  text-align: center;
}
.disclaimer-bar p {
  color: var(--cream);
  font-size: 0.85rem;
  font-family: var(--ff-display);
  font-weight: 600;
  letter-spacing: 0.04em;
  margin: 0;
}
.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 80px;
}
.cat-tile {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border-color 0.2s, transform 0.2s;
}
.cat-tile:hover, .cat-tile.active {
  border-color: var(--accent);
  transform: translateY(-3px);
}
.cat-tile img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.cat-tile-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px 16px 16px;
  background: linear-gradient(to top, rgba(28,13,7,0.95), transparent);
  font-family: var(--ff-display);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--cream);
}
.menu-section { padding: 48px 0; border-bottom: 1px solid var(--border); }
.menu-section:last-child { border-bottom: none; }
.menu-section-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 32px;
}
.menu-section-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.menu-section-icon svg { width: 24px; height: 24px; }
.menu-section-header h2 { font-size: 1.8rem; color: var(--cream); }
.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.menu-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 24px;
  transition: border-color 0.2s;
}
.menu-item:hover { border-color: var(--accent); }
.menu-item-name {
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 6px;
}
.menu-item-desc { font-size: 0.85rem; color: var(--cream-dim); }
.menu-item-tag {
  display: inline-block;
  font-family: var(--ff-display);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 3px 10px;
  border-radius: 100px;
  margin-top: 8px;
}
.tag-signature { background: rgba(245,182,24,0.15); color: var(--highlight); }
.tag-new { background: rgba(14,155,135,0.15); color: var(--teal); }
.tag-spicy { background: rgba(212,80,26,0.15); color: var(--accent); }
.tag-bestseller { background: rgba(212,80,26,0.2); color: var(--accent); }

/* ── Gallery Page ── */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-btn {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  background: transparent;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}
.masonry {
  columns: 4;
  column-gap: 16px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 16px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img { width: 100%; display: block; border-radius: 10px; transition: transform 0.4s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,13,7,0.55);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--cream);
}
.masonry-item-overlay svg { width: 32px; height: 32px; }
.masonry-item:hover .masonry-item-overlay { opacity: 1; }

/* ── Lightbox ── */
#lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9000;
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.active { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.lightbox-close {
  position: absolute;
  top: -44px;
  right: 0;
  width: 36px; height: 36px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  cursor: pointer;
  font-size: 1.2rem;
  font-weight: 700;
  border: none;
}
#lightboxImg.lightbox-img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
}
#lightboxCounter {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.5);
  margin-top: 12px;
}
.lightbox-prev, .lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background 0.2s;
}
.lightbox-prev { left: 24px; }
.lightbox-next { right: 24px; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }
.lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }

/* ── Contact Page ── */
.contact-blocks {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 64px;
}
.contact-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 32px 28px;
  text-align: center;
}
.contact-block-icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--accent);
}
.contact-block-icon svg { width: 24px; height: 24px; }
.contact-block h4 { color: var(--cream); margin-bottom: 8px; }
.contact-block p { font-size: 0.88rem; }
.contact-block a { color: var(--highlight); transition: color 0.2s; }
.contact-block a:hover { color: var(--accent); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrap h3 { color: var(--cream); margin-bottom: 24px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 8px;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 16px;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: var(--bg-alt); }
#formSuccess {
  display: none;
  background: rgba(14,155,135,0.12);
  border: 1px solid var(--teal);
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  color: var(--teal);
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 0.95rem;
  margin-top: 16px;
}
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 12px;
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  color: var(--cream-dim);
  font-family: var(--ff-display);
  margin-top: 32px;
}
.map-placeholder svg { width: 36px; height: 36px; color: var(--accent); }

/* ── FAQ ── */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 24px 0;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-chevron {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.3s, background 0.2s;
  color: var(--accent);
}
.faq-chevron svg { width: 14px; height: 14px; }
.faq-item.open .faq-chevron { transform: rotate(180deg); background: var(--accent); color: var(--cream); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding-bottom: 24px; font-size: 0.9rem; color: var(--cream-dim); }

/* ── CTA Section ── */
.cta-section { background: var(--teal); padding: 80px 0; }
.cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cta-text h2 { color: var(--cream); margin-bottom: 12px; }
.cta-text p { color: rgba(253,245,232,0.8); }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }

/* ── Scroll to top ── */
#scrollTop {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px; height: 44px;
  background: var(--accent);
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  z-index: 900;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,0.3);
  transition: transform 0.2s, opacity 0.2s;
}
#scrollTop.visible { display: flex; }
#scrollTop:hover { transform: translateY(-3px); }
#scrollTop svg { width: 18px; height: 18px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-item:nth-child(3) { border-right: none; }
  .feature-item:nth-child(4), .feature-item:nth-child(5) { border-top: 1px solid var(--border); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); flex-wrap: wrap; }
  .timeline::before { left: 24px; }
  .timeline-item { grid-template-columns: 48px 1fr; gap: 16px; }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content { grid-column: 2; text-align: left; }
  .timeline-item:nth-child(odd) .timeline-spacer,
  .timeline-item:nth-child(even) .timeline-spacer { display: none; }
  .timeline-dot { grid-column: 1; }
  .masonry { columns: 3; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--dark);
    justify-content: center;
    align-items: center;
    gap: 32px;
    z-index: 999;
  }
  .nav-links.open a { font-size: 1.4rem; }
  .hamburger { z-index: 1001; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .feature-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .feature-item:nth-child(even) { border-right: none; }
  .feature-item:nth-child(n+3) { border-top: 1px solid var(--border); }
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .brand-teaser-inner { grid-template-columns: 1fr; gap: 40px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .stat-item:nth-child(3), .stat-item:nth-child(4) { border-top: 1px solid rgba(253,245,232,0.2); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .origin-split { grid-template-columns: 1fr; gap: 40px; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .contact-blocks { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .masonry { columns: 2; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-actions { justify-content: flex-start; }
  .menu-items-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .category-tiles { grid-template-columns: 1fr 1fr; }
  .hero-actions { flex-direction: column; }
}
