/*
  Design rationale: Deep charcoal-black grounded in the warm kitchen atmosphere of a Thai street-food stall, with vivid Thai-red accent drawn from the Thai flag's crimson and the brand's elephant logo — energetic, generous, and boldly authentic.
  Heading: Lexend Mega — bold, chunky, high-impact display sans that feels like hand-painted Thai street signage translated to modern digital type.
  Body: Nunito — rounded, friendly humanist sans with warmth and approachability, perfect for a family-run eatery that prides itself on generous portions and genuine hospitality.
*/

/* 1. Reset & Custom Properties */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #0D0B09;
  --bg-alt:     #181411;
  --surface:    #221D19;
  --accent:     #C43830;
  --highlight:  #E8A030;
  --cream:      #F5EFE4;
  --cream-dim:  rgba(245,239,228,.62);
  --accent-dim: rgba(196,56,48,.13);
  --border:     rgba(196,56,48,.22);
  --ff-display: 'Lexend Mega', sans-serif;
  --ff-body:    'Nunito', sans-serif;
  --radius:     8px;
  --radius-lg:  16px;
  --transition: 0.3s ease;
  --nav-h:      70px;
}

html { scroll-behavior: smooth; }

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

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

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

ul { list-style: none; }

/* 2. Typography */
h1, h2, h3 {
  font-family: var(--ff-display);
  line-height: 1.15;
  font-weight: 700;
}
h4, h5, h6 {
  font-family: var(--ff-body);
  line-height: 1.3;
  font-weight: 700;
}
h1 { font-size: clamp(2.2rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--cream-dim); }

.label {
  font-family: var(--ff-display);
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

.section-header { text-align: center; margin-bottom: 3rem; }
.section-header .label { margin-bottom: 0.6rem; }
.section-header h2 { margin-bottom: 0.8rem; }
.section-header p  { max-width: 560px; margin: 0 auto; }

section { padding: 80px 20px; }
.container { max-width: 1200px; margin: 0 auto; }

/* 3. Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform var(--transition), box-shadow var(--transition);
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 20px rgba(196,56,48,.35);
}
.btn-primary:hover { background: #d44440; }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(245,239,228,.3);
}
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: #fff; }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* 4. Navbar */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,.6);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-display);
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.nav-brand img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }
.nav-cta { margin-left: 1rem; }

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

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

/* 5. Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,11,9,.55) 0%, rgba(13,11,9,.70) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 120px 24px 60px;
}
.hero-content .label { margin-bottom: 1rem; }
.hero-content h1 { margin-bottom: 1rem; color: var(--cream); }
.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  color: var(--cream-dim);
  margin-bottom: 0.8rem;
}
.hero-tagline {
  font-size: clamp(1rem, 1.8vw, 1.15rem);
  color: var(--cream);
  font-weight: 600;
  margin-bottom: 2.2rem;
  font-style: italic;
}
.hero-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: .6;
}
.scroll-indicator span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 1.6s ease infinite;
}
@keyframes scrollPulse { 0%,100% { opacity: .4; } 50% { opacity: 1; } }

/* 6. Features strip */
.features {
  background: var(--accent);
  padding: 50px 20px;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}
.feature-item {
  text-align: center;
  padding: 1rem;
}
.feature-icon {
  width: 52px;
  height: 52px;
  background: rgba(255,255,255,.18);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.8rem;
  color: #fff;
}
.feature-icon svg { width: 26px; height: 26px; }
.feature-item h4 {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  color: #fff;
  margin-bottom: 0.3rem;
}
.feature-item p { font-size: 0.82rem; color: rgba(255,255,255,.8); }

/* 7. 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 {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offering-tile:hover img { transform: scale(1.06); }
.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.offering-tile:hover .tile-overlay { opacity: 1; }
.tile-overlay .label { font-size: 0.6rem; margin-bottom: 0.2rem; }
.tile-overlay h4 { color: var(--cream); }

/* 8. Brand teaser split */
.brand-teaser {
  background: var(--bg-alt);
}
.teaser-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.teaser-img {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.teaser-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.teaser-content .label { margin-bottom: 0.6rem; }
.teaser-content h2 { margin-bottom: 1.2rem; }
.teaser-content p { margin-bottom: 1rem; }
.teaser-content p:last-of-type { margin-bottom: 1.8rem; }

/* 9. Stats row */
.stats {
  background: var(--surface);
  padding: 60px 20px;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}
.stat-item {}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label { font-size: 0.88rem; color: var(--cream-dim); }

/* 10. Review cards */
.reviews { background: var(--bg-alt); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--highlight); }
.review-stars svg { width: 16px; height: 16px; }
.review-text {
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}
.review-author { font-weight: 700; color: var(--cream); font-size: 0.9rem; }

/* 11. Social CTA + platform buttons */
.social-cta {
  background: var(--dark);
  text-align: center;
  padding: 80px 20px;
}
.social-cta h2 { margin-bottom: 0.8rem; }
.social-cta p  { margin-bottom: 2rem; }
.platform-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform var(--transition), opacity var(--transition);
}
.platform-btn:hover { transform: translateY(-2px); opacity: .88; }
.platform-btn svg { width: 20px; height: 20px; flex-shrink: 0; }
.platform-btn.instagram { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); color:#fff; }
.platform-btn.facebook  { background: #1877f2; color:#fff; }
.platform-btn.whatsapp  { background: #25d366; color:#fff; }

/* 12. Social feed grid */
.social-feed { background: var(--bg-alt); }
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}
.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
}
.feed-item img {
  position: absolute;
  inset: 0;
  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(196,56,48,.45);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--transition);
  color: #fff;
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 28px; height: 28px; }

/* 13. Footer */
.footer {
  background: #060504;
  padding: 60px 20px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-brand img {
  width: 50px; height: 50px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 0.8rem;
}
.footer-brand .brand-name {
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.6rem;
}
.footer-brand p { font-size: 0.88rem; margin-bottom: 1.2rem; }
.footer-social { display: flex; gap: 0.8rem; }
.footer-social a {
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--surface);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream-dim);
  transition: background var(--transition), color var(--transition);
}
.footer-social a:hover { background: var(--accent); color: #fff; }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  color: var(--cream-dim);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); margin-top: 3px; }
.footer-contact-item span { font-size: 0.88rem; color: var(--cream-dim); }
.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.8rem;
}
.footer-bottom p { font-size: 0.8rem; color: rgba(245,239,228,.35); }
.footer-badges { display: flex; gap: 0.6rem; }
.badge {
  font-size: 0.72rem;
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--cream-dim);
}

/* 14. Page hero */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  margin-top: var(--nav-h);
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,11,9,.55) 0%, rgba(13,11,9,.72) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  padding: 0 24px;
}
.page-hero-content .label { margin-bottom: 0.6rem; }
.page-hero-content h1 { margin-bottom: 0.6rem; }
.page-hero-content p { font-size: 1.1rem; color: var(--cream-dim); max-width: 540px; margin: 0 auto; }

/* 15. About page sections */
.about-origin { background: var(--bg-alt); }
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.origin-img {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.origin-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.origin-content .label { margin-bottom: 0.6rem; }
.origin-content h2 { margin-bottom: 1.2rem; }
.origin-content p  { margin-bottom: 1rem; }

.philosophy-cards { background: var(--dark); }
.phil-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.phil-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.phil-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.2rem;
  color: var(--accent);
}
.phil-icon svg { width: 26px; height: 26px; }
.phil-card h4 { margin-bottom: 0.6rem; }
.phil-card p  { font-size: 0.92rem; }

.values-section { background: var(--bg-alt); }
.values-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 900px; }
.value-item { display: flex; gap: 1.2rem; align-items: flex-start; }
.value-number {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  color: var(--border);
  line-height: 1;
  min-width: 50px;
}
.value-content h4 { margin-bottom: 0.3rem; }
.value-content p  { font-size: 0.9rem; }

.timeline-section { background: var(--dark); }
.timeline {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
}
.timeline-date {
  min-width: 80px;
  font-family: var(--ff-display);
  font-size: 0.78rem;
  color: var(--accent);
  text-align: right;
  padding-top: 0.2rem;
}
.timeline-dot {
  position: absolute;
  left: 72px;
  top: 6px;
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--dark);
}
.timeline-body { padding-left: 1.5rem; }
.timeline-body h4 { margin-bottom: 0.4rem; }
.timeline-body p  { font-size: 0.92rem; }

.about-cta { background: var(--bg-alt); }
.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.cta-img {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.cta-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.cta-content .label { margin-bottom: 0.6rem; }
.cta-content h2 { margin-bottom: 1.2rem; }
.cta-content p  { margin-bottom: 1rem; }
.cta-content p:last-of-type { margin-bottom: 1.8rem; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* 16. Offerings page */
.menu-page { background: var(--dark); }

.disclaimer-bar {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.disclaimer-bar p { font-size: 0.9rem; flex: 1; margin: 0; }

.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}
.cat-tile {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
}
.cat-tile img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.4s ease;
}
.cat-tile:hover img { transform: scale(1.05); }
.cat-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,11,9,.88) 0%, rgba(13,11,9,.2) 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.4rem;
}
.cat-tile-overlay .label { margin-bottom: 0.3rem; font-size: 0.65rem; }
.cat-tile-overlay h3 { color: var(--cream); font-size: 1.2rem; }

.menu-section { margin-bottom: 4rem; }
.menu-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.menu-section-header h2 { font-size: 1.8rem; }
.menu-section-header p  { font-size: 0.9rem; max-width: 400px; text-align: right; }
.menu-items { display: flex; flex-direction: column; gap: 1px; }
.menu-item {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  border: 1px solid transparent;
  transition: border-color var(--transition);
}
.menu-item:hover { border-color: var(--border); }
.menu-item-header { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 0.3rem; }
.menu-item h4 { font-size: 1rem; color: var(--cream); }
.badge-sig {
  font-size: 0.65rem;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
}
.badge-pop {
  font-size: 0.65rem;
  padding: 0.15rem 0.6rem;
  border-radius: 20px;
  background: var(--highlight);
  color: var(--dark);
  font-weight: 700;
}
.menu-item p { font-size: 0.9rem; }

.menu-cta { text-align: center; padding: 60px 20px; background: var(--bg-alt); }
.menu-cta h2 { margin-bottom: 0.8rem; }
.menu-cta p  { margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* 17. Gallery page */
.gallery-section { background: var(--dark); }

.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.1rem;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: transparent;
  color: var(--cream-dim);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }

.gallery-group { margin-bottom: 3.5rem; }
.gallery-group-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.gallery-group-header h3 { font-size: 1.2rem; }
.gallery-group-header span { font-size: 0.8rem; color: var(--cream-dim); }
.masonry {
  columns: 4;
  column-gap: 4px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 4px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.masonry-item img { width: 100%; display: block; transition: transform 0.4s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay {
  position: absolute; inset: 0;
  background: rgba(196,56,48,.35);
  opacity: 0;
  display: flex; align-items: center; justify-content: center;
  transition: opacity var(--transition);
  color: #fff;
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay svg { width: 28px; height: 28px; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(13,11,9,.96);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img-wrap {
  max-width: 90vw;
  max-height: 88vh;
  position: relative;
}
.lightbox-img-wrap img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  display: block;
}
.lightbox-close, .lightbox-prev, .lightbox-next {
  position: fixed;
  background: rgba(245,239,228,.12);
  border: none;
  cursor: pointer;
  color: var(--cream);
  border-radius: 50%;
  width: 46px; height: 46px;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--accent); }
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.2rem; top: 50%; transform: translateY(-50%); }
.lightbox-counter {
  position: fixed;
  bottom: 1.5rem; left: 50%;
  transform: translateX(-50%);
  font-size: 0.85rem;
  color: var(--cream-dim);
}
.lightbox svg { width: 20px; height: 20px; }

.gallery-cta { text-align: center; padding: 60px 20px; background: var(--bg-alt); }
.gallery-cta h2 { margin-bottom: 0.8rem; }
.gallery-cta p  { margin-bottom: 2rem; }

/* 18. Contact page */
.contact-section { background: var(--bg-alt); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
.contact-block {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.2rem;
}
.contact-block-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.contact-block-header svg { width: 20px; height: 20px; color: var(--accent); }
.contact-block-header h4 { font-family: var(--ff-display); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.contact-block p { font-size: 0.92rem; }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.9rem; }
.hours-table tr td { padding: 0.35rem 0; }
.hours-table tr td:last-child { text-align: right; color: var(--cream); }
.hours-table tr.peak td { color: var(--highlight); }
.hours-table tr.closed td { color: rgba(245,239,228,.35); text-decoration: line-through; }

.contact-form-wrap {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; color: var(--cream-dim); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--dark);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  transition: border-color var(--transition);
}
.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: var(--accent); box-shadow: 0 0 0 2px rgba(196,56,48,.2); }
.form-group select option { background: var(--dark); }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#formSuccess {
  display: none;
  text-align: center;
  padding: 2rem;
}
#formSuccess svg { width: 52px; height: 52px; color: var(--highlight); margin: 0 auto 1rem; }
#formSuccess h4 { margin-bottom: 0.5rem; }

.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  margin-top: 2rem;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 1rem; }
.map-placeholder h4 { margin-bottom: 0.4rem; }
.map-placeholder p  { font-size: 0.9rem; margin-bottom: 1.2rem; }

/* 19. FAQ accordion */
.faq-section { background: var(--dark); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 0;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 700;
  gap: 1rem;
}
.faq-chevron {
  width: 22px; height: 22px;
  flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer p { padding-bottom: 1.2rem; font-size: 0.95rem; }

/* 20. Scroll-to-top */
#scrollTop {
  position: fixed;
  bottom: 2rem; right: 1.5rem;
  z-index: 900;
  width: 44px; height: 44px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  color: #fff;
  box-shadow: 0 4px 16px rgba(196,56,48,.4);
  transition: background var(--transition), transform var(--transition);
}
#scrollTop:hover { background: #d44440; transform: translateY(-2px); }
#scrollTop.visible { display: flex; }
#scrollTop 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); }
  .features-grid .feature-item:nth-child(4),
  .features-grid .feature-item:nth-child(5) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  section { padding: 60px 16px; }
  .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); }
  .teaser-grid, .origin-grid, .cta-grid, .contact-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .phil-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .menu-section-header { flex-direction: column; align-items: flex-start; }
  .menu-section-header p { text-align: left; }
  .form-row { grid-template-columns: 1fr; }
  .timeline::before { left: 60px; }
  .timeline-date { min-width: 60px; font-size: 0.7rem; }
  .timeline-dot { left: 53px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .offerings-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .category-tiles { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-btns { flex-direction: column; align-items: center; }
  .platform-btns { flex-direction: column; align-items: center; }
}
