/* Design rationale: Deep pine-forest night palette with campfire amber glow captures the outdoor camping-at-dusk atmosphere of Kamp Lilim's bamboo-and-pennant interior.
   Heading: Josefin Sans — geometric, open, adventure-trail energy without being aggressive; perfect for outdoor café signage feel.
   Body: Karla — humanist variable sans with warm Italian proportions; crisp for menu listings and comfortable for longer reads. */

/* ============================================================
   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.65; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

:root {
  --dark:       #252822;
  --bg-alt:     #303428;
  --accent:     #D4872A;
  --highlight:  #A8BE88;
  --cream:      #F4EFE2;
  --cream-dim:  rgba(244,239,226,0.65);
  --accent-dim: rgba(212,135,42,0.14);
  --border:     rgba(212,135,42,0.22);
  --ff-display: 'Josefin Sans', sans-serif;
  --ff-body:    'Karla', sans-serif;
  --nav-h:      72px;
  --max-w:      1200px;
  --radius:     8px;
  --radius-lg:  16px;
  --trans:      0.3s ease;
}

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); font-weight: 700; letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); font-weight: 600; letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); font-weight: 600; }
h4 { font-size: 1.05rem; font-weight: 700; letter-spacing: 0.02em; }
p  { font-size: 1rem; line-height: 1.7; color: var(--cream-dim); }
.label {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header p { max-width: 560px; margin: 1rem auto 0; }
.accent-text { color: var(--accent); }
.container { width: 92%; max-width: var(--max-w); margin: 0 auto; }
section { padding: 90px 0; }

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: var(--radius);
  font-family: var(--ff-display);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}
.btn-primary:hover { background: #e8972e; border-color: #e8972e; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(244,239,226,0.5);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(244,239,226,0.08); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--dark); }
.btn-sm { padding: 9px 18px; font-size: 0.78rem; }

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  max-width: var(--max-w);
  margin: 0 auto;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--ff-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}
.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  border-radius: 50%;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--trans);
}
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { margin-left: 12px; }
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px; height: 18px;
  cursor: pointer;
  padding: 0;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--trans);
}
.hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 999;
  background: var(--dark);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream);
  transition: color var(--trans);
}
.nav-overlay a:hover { color: var(--accent); }
.nav-overlay-close {
  position: absolute;
  top: 24px; right: 24px;
  font-size: 2rem;
  background: none;
  border: none;
  color: var(--cream);
  cursor: pointer;
  line-height: 1;
}

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(37,40,34,0.82) 0%,
    rgba(37,40,34,0.50) 50%,
    rgba(37,40,34,0.72) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 680px;
}
.hero-content .label { margin-bottom: 16px; }
.hero-content h1 { margin-bottom: 16px; }
.hero-tagline {
  font-size: 1.15rem;
  color: var(--cream-dim);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.6;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.6;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   6. FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--bg-alt);
  padding: 70px 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: 14px;
}
.feature-icon {
  width: 56px; height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-item h4 { font-size: 0.92rem; letter-spacing: 0.08em; color: var(--cream); }
.feature-item p { font-size: 0.82rem; color: var(--cream-dim); line-height: 1.5; margin-top: 0; }

/* ============================================================
   7. OFFERINGS GRID
   ============================================================ */
.offerings-section { background: var(--dark); }
.home-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.home-grid-item {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
}
.home-grid-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.home-grid-item:hover img { transform: scale(1.06); }
.home-grid-item .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37,40,34,0.8) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 18px;
  opacity: 0;
  transition: opacity var(--trans);
}
.home-grid-item:hover .overlay { opacity: 1; }
.home-grid-item .overlay span {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.offerings-cta { text-align: center; margin-top: 36px; }

/* ============================================================
   8. BRAND TEASER SPLIT
   ============================================================ */
.brand-teaser { background: var(--bg-alt); }
.teaser-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.teaser-img {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.teaser-img::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  pointer-events: none;
}
.teaser-text .label { margin-bottom: 12px; }
.teaser-text h2 { margin-bottom: 24px; }
.teaser-text p { margin-bottom: 18px; }
.teaser-text .btn { margin-top: 12px; }

/* ============================================================
   9. STATS ROW
   ============================================================ */
.stats-section { background: var(--dark); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-item {
  background: var(--dark);
  padding: 44px 28px;
  text-align: center;
  border: 1px solid transparent;
  transition: background var(--trans);
}
.stat-item:hover { background: var(--bg-alt); }
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ============================================================
   10. REVIEW CARDS
   ============================================================ */
.reviews-section { background: var(--bg-alt); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.review-stars {
  display: flex;
  gap: 3px;
  color: var(--accent);
}
.review-stars svg { width: 16px; height: 16px; }
.review-text {
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.7;
  flex: 1;
}
.review-text::before { content: '\201C'; font-size: 1.5rem; color: var(--accent); line-height: 0; vertical-align: -0.4em; margin-right: 2px; }
.review-text::after  { content: '\201D'; font-size: 1.5rem; color: var(--accent); line-height: 0; vertical-align: -0.4em; margin-left: 2px; }
.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 40px; height: 40px;
  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: 700;
  font-size: 0.9rem;
  color: var(--accent);
}
.review-name { font-family: var(--ff-display); font-weight: 600; font-size: 0.88rem; color: var(--cream); }
.review-source { font-size: 0.75rem; color: var(--cream-dim); }
.review-badge {
  font-size: 0.68rem;
  font-family: var(--ff-display);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  background: rgba(168,190,136,0.12);
  border: 1px solid rgba(168,190,136,0.25);
  border-radius: 4px;
  padding: 3px 8px;
  display: inline-block;
  margin-bottom: 4px;
}

/* ============================================================
   11. SOCIAL CTA + PLATFORM BUTTONS
   ============================================================ */
.social-cta {
  background: var(--bg-alt);
  text-align: center;
  padding: 80px 0;
}
.social-cta h2 { margin-bottom: 16px; }
.social-cta > .container > p { max-width: 520px; margin: 0 auto 36px; }
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-family: var(--ff-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid var(--border);
  color: var(--cream);
  transition: all var(--trans);
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   12. SOCIAL FEED GRID
   ============================================================ */
.feed-section { background: var(--dark); padding-bottom: 0; }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.feed-item:hover img { transform: scale(1.08); }
.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,135,42,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 28px; height: 28px; color: white; }

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: #1A1D18;
  padding: 70px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo { margin-bottom: 16px; }
.footer-brand p { font-size: 0.88rem; line-height: 1.6; margin-bottom: 20px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 50%;
  color: var(--cream-dim);
  transition: all var(--trans);
}
.footer-social a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  transition: color var(--trans);
}
.footer-col ul a:hover { color: var(--cream); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.86rem;
  color: var(--cream-dim);
  line-height: 1.5;
}
.footer-contact-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--accent); margin-top: 2px; }
.footer-bar {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bar p { font-size: 0.78rem; color: var(--cream-dim); }
.footer-badges { display: flex; gap: 10px; }
.footer-badge {
  font-family: var(--ff-display);
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--cream-dim);
}

/* ============================================================
   14. PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37,40,34,0.92) 0%, rgba(37,40,34,0.40) 60%, rgba(37,40,34,0.20) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-content .label { margin-bottom: 10px; }
.page-hero-content h1 { font-size: clamp(2rem, 5vw, 3.6rem); }
.page-hero-content p { max-width: 500px; margin-top: 10px; }

/* ============================================================
   15. ABOUT PAGE SECTIONS
   ============================================================ */
.origin-section { background: var(--dark); }
.origin-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.origin-text .label { margin-bottom: 12px; }
.origin-text h2 { margin-bottom: 28px; }
.origin-text p { margin-bottom: 18px; }
.origin-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: sticky;
  top: 100px;
  aspect-ratio: 4/5;
}
.origin-img img { width: 100%; height: 100%; object-fit: cover; }

.philosophy-section { background: var(--bg-alt); }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
}
.philosophy-card .feature-icon { margin-bottom: 20px; }
.philosophy-card h3 { margin-bottom: 12px; font-size: 1.15rem; }
.philosophy-card p { font-size: 0.9rem; }

.values-section { background: var(--dark); }
.values-list { max-width: 800px; margin: 0 auto; }
.value-item {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  padding: 28px 0;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-num {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--accent);
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 4px 10px;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-body h4 { font-size: 1rem; color: var(--cream); margin-bottom: 6px; }
.value-body p { font-size: 0.88rem; }

.timeline-section { background: var(--bg-alt); }
.timeline { position: relative; max-width: 700px; margin: 0 auto; }
.timeline::before {
  content: '';
  position: absolute;
  left: 28px;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.tl-item {
  display: flex;
  gap: 36px;
  margin-bottom: 44px;
  position: relative;
}
.tl-item:last-child { margin-bottom: 0; }
.tl-dot {
  width: 58px;
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 4px;
}
.tl-dot::before {
  content: '';
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--bg-alt);
  box-shadow: 0 0 0 2px var(--accent);
  flex-shrink: 0;
  margin: 0 auto;
}
.tl-content {}
.tl-date {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 6px;
}
.tl-content h4 { font-size: 1rem; color: var(--cream); margin-bottom: 6px; }
.tl-content p { font-size: 0.88rem; }

.about-cta { background: var(--dark); }
.about-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-cta-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
}
.about-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.about-cta-text .label { margin-bottom: 12px; }
.about-cta-text h2 { margin-bottom: 24px; }
.about-cta-text p { margin-bottom: 16px; }
.about-cta-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 20px; }

/* ============================================================
   16. OFFERINGS PAGE
   ============================================================ */
.offerings-page-section { background: var(--dark); }
.disclaimer-bar {
  background: var(--accent-dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 14px 0;
  text-align: center;
}
.disclaimer-bar p {
  font-size: 0.85rem;
  color: var(--cream-dim);
  margin: 0;
}
.disclaimer-bar strong { color: var(--accent); }
.category-tiles-section { background: var(--bg-alt); padding: 60px 0; }
.category-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.category-tile {
  position: relative;
  aspect-ratio: 3/2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.category-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-tile:hover img { transform: scale(1.06); }
.category-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(37,40,34,0.9) 0%, rgba(37,40,34,0.3) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.category-tile-overlay h3 { color: var(--cream); font-size: 1.2rem; margin-bottom: 4px; }
.category-tile-overlay span {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.menu-categories { background: var(--dark); }
.menu-category-section { padding: 72px 0; border-bottom: 1px solid var(--border); }
.menu-category-section:last-child { border-bottom: none; }
.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
}
.menu-cat-header .feature-icon { flex-shrink: 0; }
.menu-cat-title h2 { font-size: 1.8rem; }
.menu-cat-title p { font-size: 0.85rem; margin-top: 4px; }
.menu-items-list { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: start;
  gap: 20px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(212,135,42,0.10);
}
.menu-item:last-child { border-bottom: none; }
.menu-item h4 { color: var(--cream); font-size: 1rem; margin-bottom: 6px; }
.menu-item p { font-size: 0.88rem; line-height: 1.6; }
.badge {
  font-family: var(--ff-display);
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 4px 9px;
  border-radius: 4px;
  white-space: nowrap;
  flex-shrink: 0;
  margin-top: 3px;
}
.badge-signature { background: rgba(212,135,42,0.15); color: var(--accent); border: 1px solid rgba(212,135,42,0.3); }
.badge-bestseller { background: rgba(168,190,136,0.15); color: var(--highlight); border: 1px solid rgba(168,190,136,0.3); }
.badge-new { background: rgba(80,180,120,0.15); color: #6abf8a; border: 1px solid rgba(80,180,120,0.3); }
.menu-bottom-cta { background: var(--bg-alt); padding: 60px 0; text-align: center; }
.menu-bottom-cta h3 { margin-bottom: 12px; }
.menu-bottom-cta p { max-width: 400px; margin: 0 auto 24px; font-size: 0.9rem; }

/* ============================================================
   17. GALLERY PAGE
   ============================================================ */
.gallery-page { background: var(--dark); }
.gallery-filter { background: var(--bg-alt); padding: 32px 0; }
.filter-bar { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 18px;
  border-radius: var(--radius);
  background: transparent;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  cursor: pointer;
  transition: all var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}
.gallery-masonry { padding: 60px 0; }
.gallery-group { margin-bottom: 60px; }
.gallery-group:last-child { margin-bottom: 0; }
.gallery-group-label {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.gallery-group-label::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}
.masonry-grid { columns: 4; gap: 12px; }
.masonry-item {
  break-inside: avoid;
  margin-bottom: 12px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.5s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,135,42,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay svg { width: 32px; height: 32px; color: white; }
/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(0,0,0,0.95);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lb-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lb-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lb-close {
  position: fixed;
  top: 20px; right: 24px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 44px; height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background var(--trans);
  z-index: 2001;
}
.lb-close:hover { background: rgba(255,255,255,0.2); }
.lb-prev, .lb-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 48px; height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: background var(--trans);
  z-index: 2001;
}
.lb-prev { left: 20px; }
.lb-next { right: 20px; }
.lb-prev:hover, .lb-next:hover { background: rgba(255,255,255,0.25); }
.lb-counter {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--ff-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  color: rgba(255,255,255,0.6);
  z-index: 2001;
}
.gallery-cta { background: var(--bg-alt); padding: 60px 0; text-align: center; }
.gallery-cta h3 { margin-bottom: 12px; }
.gallery-cta p { max-width: 420px; margin: 0 auto 24px; font-size: 0.9rem; }
.gallery-cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--dark); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 64px;
  align-items: start;
}
.contact-block { margin-bottom: 40px; }
.contact-block h4 {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  font-family: var(--ff-display);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.5;
}
.contact-item svg { width: 18px; height: 18px; flex-shrink: 0; color: var(--accent); margin-top: 1px; }
.contact-item a { color: var(--cream-dim); transition: color var(--trans); }
.contact-item a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.86rem; }
.hours-table td { padding: 8px 0; color: var(--cream-dim); border-bottom: 1px solid rgba(212,135,42,0.08); }
.hours-table td:last-child { text-align: right; color: var(--cream); }
.hours-table tr.peak td { color: var(--accent); font-weight: 600; }
.hours-table tr.peak td:last-child { color: var(--accent); }

/* Contact form */
.contact-form-wrap { background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 40px; }
.contact-form-wrap h3 { margin-bottom: 8px; }
.contact-form-wrap > p { font-size: 0.88rem; margin-bottom: 28px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group.full { grid-column: 1/-1; }
.form-group label {
  font-family: var(--ff-display);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.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 var(--trans);
  outline: none;
  resize: none;
}
.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 option { background: var(--dark); }
.form-submit { margin-top: 8px; }
.form-submit .btn { width: 100%; justify-content: center; }
#formSuccess {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
#formSuccess .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 16px;
  color: var(--accent);
}
#formSuccess .success-icon svg { width: 28px; height: 28px; }
#formSuccess h4 { margin-bottom: 8px; }
#formSuccess p { font-size: 0.9rem; }

/* Map placeholder */
.map-section { background: var(--bg-alt); padding: 60px 0; }
.map-placeholder {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}
.map-pin-icon {
  width: 64px; height: 64px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--accent);
}
.map-pin-icon svg { width: 28px; height: 28px; }
.map-placeholder h4 { margin-bottom: 8px; }
.map-placeholder p { font-size: 0.88rem; margin-bottom: 6px; }
.map-note {
  font-size: 0.8rem;
  color: var(--accent);
  margin: 12px 0 20px !important;
}
.contact-social { background: var(--dark); padding: 60px 0; text-align: center; }
.contact-social h3 { margin-bottom: 12px; }
.contact-social p { max-width: 400px; margin: 0 auto 24px; font-size: 0.9rem; }

/* ============================================================
   19. FAQ ACCORDION
   ============================================================ */
.faq-section { background: var(--bg-alt); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  color: var(--cream);
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color var(--trans);
}
.faq-trigger:hover { color: var(--accent); }
.faq-trigger svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
  transition: transform var(--trans);
}
.faq-trigger.open svg { transform: rotate(180deg); }
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-body p { font-size: 0.9rem; line-height: 1.7; padding-bottom: 22px; }

/* ============================================================
   20. SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 500;
  width: 44px; height: 44px;
  background: var(--accent);
  color: var(--dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity var(--trans), transform var(--trans);
  box-shadow: 0 4px 16px rgba(212,135,42,0.4);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: #e8972e; }
.scroll-top svg { width: 20px; height: 20px; }

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

/* ============================================================
   22. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .teaser-split, .origin-split, .about-cta-split { gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 36px; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  section { padding: 64px 0; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .home-grid { grid-template-columns: 1fr 1fr; }
  .home-grid-item:nth-child(9) { display: none; }
  .teaser-split, .origin-split, .about-cta-split { grid-template-columns: 1fr; gap: 36px; }
  .teaser-img, .origin-img, .about-cta-img { aspect-ratio: 16/9; position: static; }
  .philosophy-grid { grid-template-columns: 1fr; gap: 16px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .category-tiles { grid-template-columns: 1fr 1fr; }
  .footer-bar { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }
  .features-grid { grid-template-columns: 1fr; }
  .home-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-btns { flex-direction: column; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
  .category-tiles { grid-template-columns: 1fr; }
  .social-buttons { flex-direction: column; align-items: center; }
}
