/* Design rationale: Bold Mexican cantina night energy — near-void warm black with blazing sunset-orange and bright maize gold; Lobster Two brings retro Mexican signage charm; Barlow keeps body text clean and street-food approachable.
   Heading: Lobster Two — retro Mexican cantina script-serif, bold warmth without being cheesy
   Body: Barlow — clean humanist grotesque, modern street-food readability */

/* ==================================================
   1. RESET & CUSTOM PROPERTIES
   ================================================== */
@import url('https://fonts.googleapis.com/css2?family=Lobster+Two:ital,wght@0,400;0,700;1,400;1,700&family=Barlow:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #0A0806;
  --bg-alt:     #161008;
  --accent:     #D4611A;
  --highlight:  #E8C428;
  --cream:      #FAF2E4;
  --cream-dim:  rgba(250,242,228,0.65);
  --accent-dim: rgba(212,97,26,0.14);
  --border:     rgba(212,97,26,0.22);
  --ff-display: 'Lobster Two', cursive;
  --ff-body:    'Barlow', sans-serif;
  --nav-h:      72px;
  --radius:     8px;
  --trans:      0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ==================================================
   2. TYPOGRAPHY
   ================================================== */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.15;
  color: var(--cream);
}
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 700; }
h4 { font-size: 1.15rem; font-weight: 700; font-family: var(--ff-body); letter-spacing: 0.02em; }
p  { color: var(--cream-dim); max-width: 68ch; }
.label {
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
img { display: block; max-width: 100%; }

/* ==================================================
   3. BUTTONS
   ================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45em;
  padding: 0.75em 1.65em;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--trans);
  text-transform: uppercase;
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
}
.btn-primary:hover { background: #C05510; border-color: #C05510; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: rgba(250,242,228,0.45);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(250,242,228,0.08); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--cream); }
.btn-highlight {
  background: var(--highlight);
  color: var(--dark);
  border-color: var(--highlight);
}
.btn-highlight:hover { background: #D4B020; border-color: #D4B020; transform: translateY(-2px); }

/* ==================================================
   4. NAVBAR
   ================================================== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 900;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  background: transparent;
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: rgba(10,8,6,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}
.nav-logo img {
  height: 46px;
  width: 46px;
  object-fit: cover;
  border-radius: var(--radius);
}
.nav-logo span {
  font-family: var(--ff-display);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--cream);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  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: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
  background: none;
  border: none;
  z-index: 910;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all var(--trans);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

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

/* ==================================================
   5. HERO
   ================================================== */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center top;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,8,6,0.88) 0%, rgba(10,8,6,0.5) 60%, rgba(10,8,6,0.2) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 0 8%;
  max-width: 760px;
}
.hero-content .label { margin-bottom: 1rem; }
.hero-content h1 { margin-bottom: 0.5rem; }
.hero-content h1 span { color: var(--accent); }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--cream-dim);
  margin-bottom: 1rem;
  font-style: italic;
  letter-spacing: 0.04em;
}
.hero-tagline {
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 2rem;
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  font-weight: 500;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--cream-dim);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  animation: bounce 2s infinite;
}
.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 {
  background: var(--bg-alt);
  padding: 5rem 8%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.features h2 { text-align: center; margin-bottom: 0.75rem; }
.features-intro { text-align: center; max-width: 55ch; margin: 0 auto 3.5rem; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 2rem;
}
.feature-card {
  text-align: center;
  padding: 2rem 1.2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--trans);
}
.feature-card:hover {
  border-color: var(--accent);
  background: var(--accent-dim);
  transform: translateY(-4px);
}
.feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 1.2rem;
  color: var(--accent);
}
.feature-icon svg { width: 100%; height: 100%; }
.feature-card h3 { font-size: 1.05rem; margin-bottom: 0.5rem; font-family: var(--ff-body); font-weight: 700; }
.feature-card p  { font-size: 0.88rem; margin: 0; }

/* ==================================================
   7. OFFERINGS GRID (home 3×3 + offerings page filter)
   ================================================== */
.offerings-preview {
  padding: 6rem 8%;
}
.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-header .label { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { margin: 0 auto; text-align: center; }

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.offering-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
}
.offering-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offering-card:hover img { transform: scale(1.06); }
.offering-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}
.offering-card-overlay h4 {
  color: var(--cream);
  margin-bottom: 0.2rem;
  font-family: var(--ff-display);
  font-size: 1.1rem;
}
.offering-card-overlay .label { font-size: 0.62rem; }
/* Alias: offering-card-label works same as offering-card-overlay */
.offering-card-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.9) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
}
.offering-card-label h4 {
  color: var(--cream);
  margin-bottom: 0.2rem;
  font-family: var(--ff-display);
  font-size: 1.1rem;
}
.offering-card-label .label { font-size: 0.62rem; }

/* Offerings placeholder (for cards without photos) */
.offering-placeholder {
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
}
.offering-placeholder-inner {
  text-align: center;
  padding: 1.5rem;
}
.offering-placeholder-inner svg {
  width: 40px; height: 40px;
  color: var(--accent);
  margin: 0 auto 0.75rem;
}
.offering-placeholder-inner h4 {
  font-family: var(--ff-display);
  font-size: 1.05rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.offering-placeholder-inner p {
  font-size: 0.8rem;
  color: var(--cream-dim);
  margin: 0;
}

/* Filter grid on menu page */
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5em 1.3em;
  border: 2px solid var(--border);
  border-radius: 2rem;
  background: transparent;
  color: var(--cream-dim);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  text-transform: uppercase;
  transition: all var(--trans);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}

/* ==================================================
   8. BRAND TEASER SPLIT
   ================================================== */
.brand-teaser {
  background: var(--bg-alt);
  padding: 6rem 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.brand-teaser-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.brand-teaser-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.brand-teaser-img::before {
  content: '';
  position: absolute;
  inset: 12px;
  border: 2px solid var(--accent);
  border-radius: var(--radius);
  z-index: 1;
  pointer-events: none;
  opacity: 0.45;
}
.brand-teaser-text .label { margin-bottom: 0.75rem; }
.brand-teaser-text h2 { margin-bottom: 1.5rem; }
.brand-teaser-text p { margin-bottom: 1.2rem; font-size: 1rem; }
.brand-teaser-text p:last-of-type { margin-bottom: 2rem; }

/* ==================================================
   9. STATS ROW
   ================================================== */
.stats {
  padding: 5rem 8%;
  background: var(--accent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item h3 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 0.3rem;
}
.stat-item p {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(10,8,6,0.75);
  margin: 0;
}

/* ==================================================
   10. REVIEW CARDS
   ================================================== */
.reviews {
  padding: 6rem 8%;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.review-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  transition: border-color var(--trans);
}
.review-card:hover { border-color: var(--accent); }
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
  color: var(--highlight);
}
.review-stars svg { width: 16px; height: 16px; }
.review-card blockquote {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--cream-dim);
  font-style: italic;
  margin-bottom: 1.2rem;
}
.review-author {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ==================================================
   11. SOCIAL CTA + PLATFORM BUTTONS
   ================================================== */
.social-cta {
  padding: 5rem 8%;
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.social-cta h2 { margin-bottom: 0.75rem; }
.social-cta > p { margin: 0 auto 2.5rem; max-width: 55ch; }
.social-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.75em 1.5em;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid var(--border);
  background: transparent;
  color: var(--cream);
  transition: all var(--trans);
  text-decoration: none;
}
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-btn:hover { background: var(--accent); border-color: var(--accent); transform: translateY(-2px); }
.social-btn.wa { border-color: rgba(37,211,102,0.4); }
.social-btn.wa:hover { background: #25D366; border-color: #25D366; }
.social-btn.fb { border-color: rgba(24,119,242,0.4); }
.social-btn.fb:hover { background: #1877F2; border-color: #1877F2; }

/* ==================================================
   12. SOCIAL FEED GRID
   ================================================== */
.social-feed {
  padding: 5rem 8%;
  background: var(--bg-alt);
}
.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 3.5rem;
}
.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
  cursor: pointer;
}
.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,97,26,0.7);
  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: 32px; height: 32px; color: var(--cream); }

/* Feed placeholder */
.feed-placeholder {
  background: var(--dark);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feed-placeholder svg { width: 28px; height: 28px; color: var(--accent); opacity: 0.5; }

/* ==================================================
   13. FOOTER
   ================================================== */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  padding: 5rem 8% 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 52px;
  width: 52px;
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}
.footer-brand p { font-size: 0.88rem; margin-bottom: 1.5rem; max-width: 30ch; }
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social a {
  width: 38px; height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--cream-dim);
  transition: all var(--trans);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--cream); }
.footer-social svg { width: 17px; height: 17px; }
.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  margin-bottom: 1.2rem;
  color: var(--cream);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: var(--cream-dim);
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item a { color: var(--cream-dim); transition: color var(--trans); }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bar {
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bar p { font-size: 0.8rem; color: var(--cream-dim); margin: 0; }
.footer-badges { display: flex; gap: 1rem; }
.badge {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.35em 0.85em;
  border: 1px solid var(--border);
  border-radius: 2rem;
  color: var(--cream-dim);
}

/* ==================================================
   14. PAGE HERO (inner pages)
   ================================================== */
.page-hero {
  position: relative;
  padding-top: var(--nav-h);
  height: 52vh;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.92) 0%, rgba(10,8,6,0.4) 60%, rgba(10,8,6,0.15) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding: 2.5rem 8%;
}
.page-hero-content .label { margin-bottom: 0.5rem; }
.page-hero-content h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
.page-hero-content p {
  font-size: 1rem;
  margin: 0;
  margin-top: 0.5rem;
}

/* Page hero fallback (no photo available) */
.page-hero-solid {
  background: var(--bg-alt);
  padding-top: calc(var(--nav-h) + 4rem);
  padding-bottom: 4rem;
  padding-left: 8%;
  padding-right: 8%;
  border-bottom: 1px solid var(--border);
}
.page-hero-solid .label { margin-bottom: 0.75rem; }
.page-hero-solid h1 { margin-bottom: 0.75rem; }

/* ==================================================
   15. ABOUT PAGE SECTIONS
   ================================================== */
.about-origin {
  padding: 6rem 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-origin-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about-origin-img img { width: 100%; height: 100%; object-fit: cover; }
.about-origin-text .label { margin-bottom: 0.75rem; }
.about-origin-text h2 { margin-bottom: 1.5rem; }
.about-origin-text p { margin-bottom: 1.2rem; font-size: 1rem; }

.philosophy {
  padding: 6rem 8%;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3.5rem;
}
.philosophy-card {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--trans);
}
.philosophy-card:hover { border-color: var(--accent); background: var(--accent-dim); }
.philosophy-icon {
  width: 44px; height: 44px;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.philosophy-icon svg { width: 100%; height: 100%; }
.philosophy-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; font-family: var(--ff-body); font-weight: 700; }
.philosophy-card p { font-size: 0.9rem; margin: 0; }

.values {
  padding: 6rem 8%;
}
.values h2 { text-align: center; margin-bottom: 3.5rem; }
.values-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.value-item {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: border-color var(--trans);
}
.value-item:hover { border-color: var(--accent); }
.value-num {
  font-family: var(--ff-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
}
.value-item h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.value-item p { font-size: 0.9rem; margin: 0; }

.timeline {
  padding: 6rem 8%;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.timeline h2 { text-align: center; margin-bottom: 3.5rem; }
.timeline-list {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding-left: 3rem;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 11px; top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.55rem;
  top: 5px;
  width: 12px; height: 12px;
  background: var(--accent);
  border-radius: 50%;
  border: 2px solid var(--dark);
}
.timeline-date {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.4rem;
}
.timeline-item h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.timeline-item p { font-size: 0.9rem; margin: 0; }

.about-cta {
  padding: 6rem 8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  border-top: 1px solid var(--border);
}
.about-cta-img {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 16/9;
}
.about-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.about-cta-text h2 { margin-bottom: 1.2rem; }
.about-cta-text p { margin-bottom: 1.2rem; font-size: 1rem; }
.about-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }

/* ==================================================
   16. OFFERINGS PAGE
   ================================================== */
.menu-section {
  padding: 6rem 8%;
}
.menu-disclaimer {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}
.menu-disclaimer p { font-size: 0.88rem; color: var(--cream-dim); margin: 0; }
.category-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 5rem;
}
.category-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  border: 1px solid var(--border);
  background: var(--bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
}
.category-tile:hover { border-color: var(--accent); transform: translateY(-3px); }
.category-tile-icon { width: 48px; height: 48px; color: var(--accent); margin-bottom: 1rem; }
.category-tile-icon svg { width: 100%; height: 100%; }
.category-tile-inner { text-align: center; padding: 1.5rem; }
/* Image-backed category tiles */
.category-tile-img { border: none; padding: 0; }
.category-tile-img img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-tile-img:hover img { transform: scale(1.06); }
.category-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,8,6,0.85) 0%, rgba(10,8,6,0.2) 60%, transparent 100%);
  display: flex; flex-direction: column;
  align-items: center; justify-content: flex-end;
  padding: 1.5rem; text-align: center;
}
.category-tile h3 {
  font-family: var(--ff-display);
  font-size: 1.3rem;
  margin-bottom: 0.4rem;
}
.category-tile .item-count {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
}
.menu-category {
  margin-bottom: 4rem;
  scroll-margin-top: calc(var(--nav-h) + 2rem);
}
.menu-category-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--accent);
}
.menu-category-header h2 {
  font-size: 1.8rem;
}
.menu-items-list {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.menu-item {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  transition: all var(--trans);
}
.menu-item:hover { border-color: var(--accent); background: var(--accent-dim); }
.menu-item-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.5rem;
}
.menu-item h4 { font-size: 1rem; font-family: var(--ff-body); font-weight: 700; }
.menu-item p  { font-size: 0.9rem; margin: 0; }
.badge-sig {
  display: inline-block;
  padding: 0.2em 0.75em;
  border-radius: 2rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--cream);
  flex-shrink: 0;
}
.badge-best {
  background: var(--highlight);
  color: var(--dark);
}
.badge-new {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}
.menu-bottom-cta {
  text-align: center;
  padding: 4rem 8%;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.menu-bottom-cta h2 { margin-bottom: 1rem; }
.menu-bottom-cta p { max-width: 45ch; margin: 0 auto 2rem; }

/* ==================================================
   17. GALLERY PAGE
   ================================================== */
.gallery-section {
  padding: 4rem 8% 6rem;
}
.masonry-grid {
  columns: 4;
  column-gap: 0.75rem;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 0.75rem;
  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.03); }
.masonry-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,97,26,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.masonry-item:hover .masonry-overlay { opacity: 1; }
.masonry-overlay svg { width: 30px; height: 30px; color: var(--cream); }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(10,8,6,0.97);
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: var(--radius);
}
.lightbox-close,
.lightbox-prev,
.lightbox-next {
  position: absolute;
  background: rgba(10,8,6,0.7);
  border: 1px solid var(--border);
  color: var(--cream);
  cursor: pointer;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--trans);
  padding: 0.6rem;
}
.lightbox-close { top: 1.5rem; right: 1.5rem; }
.lightbox-prev  { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-next  { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover { background: var(--accent); border-color: var(--accent); }
.lightbox-close svg,
.lightbox-prev svg,
.lightbox-next svg { width: 22px; height: 22px; }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  color: var(--cream-dim);
  background: rgba(10,8,6,0.7);
  padding: 0.4em 1em;
  border-radius: 2rem;
}
.gallery-cta {
  text-align: center;
  padding: 4rem 8%;
  border-top: 1px solid var(--border);
  background: var(--bg-alt);
}
.gallery-cta h2 { margin-bottom: 1rem; }
.gallery-cta p { max-width: 50ch; margin: 0 auto 2rem; }
.gallery-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ==================================================
   18. CONTACT PAGE
   ================================================== */
.contact-section {
  padding: 6rem 8%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
}
.contact-blocks h2 { margin-bottom: 2rem; font-size: 1.8rem; }
.contact-block {
  padding: 1.5rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 1.5rem;
}
.contact-block h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.6rem;
  font-size: 0.9rem;
  color: var(--cream-dim);
}
.contact-detail svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-detail a { color: var(--cream-dim); transition: color var(--trans); }
.contact-detail a:hover { color: var(--accent); }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.hours-table td { padding: 0.4rem 0; color: var(--cream-dim); }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table tr.peak td { color: var(--highlight); font-weight: 600; }
.hours-table tr.closed td { color: rgba(250,242,228,0.35); }

.contact-form-col h2 { margin-bottom: 2rem; font-size: 1.8rem; }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); }
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75em 1em;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: border-color var(--trans);
  outline: 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: #e55; }
.form-group select option { background: var(--bg-alt); }
.form-group textarea { resize: vertical; min-height: 120px; }
#formSuccess {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  background: var(--accent-dim);
}
#formSuccess svg { width: 56px; height: 56px; color: var(--accent); margin: 0 auto 1rem; }
#formSuccess h3 { margin-bottom: 0.5rem; }
#formSuccess p { margin: 0; }

.map-section { padding: 0 8% 6rem; }
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
}
.map-placeholder svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 1rem; }
.map-placeholder h3 { margin-bottom: 0.4rem; }
.map-placeholder p { font-size: 0.9rem; margin-bottom: 0.4rem; }
.map-placeholder .entrance-note { font-size: 0.82rem; color: var(--accent); }
.map-placeholder .btn { margin: 1.5rem auto 0; }

/* ==================================================
   19. FAQ ACCORDION
   ================================================== */
.faq {
  padding: 6rem 8%;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.faq h2 { text-align: center; margin-bottom: 3.5rem; }
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: left;
  padding: 1.5rem 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  transition: color var(--trans);
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform var(--trans);
  color: var(--accent);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer p {
  padding-bottom: 1.5rem;
  font-size: 0.93rem;
  margin: 0;
}

/* ==================================================
   20. SCROLL-TO-TOP
   ================================================== */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 46px; height: 46px;
  background: var(--accent);
  border: none;
  border-radius: var(--radius);
  color: var(--cream);
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 800;
  transition: all var(--trans);
  box-shadow: 0 4px 16px rgba(212,97,26,0.4);
}
#scrollTop:hover { background: #C05510; transform: translateY(-3px); }
#scrollTop svg { width: 20px; height: 20px; }
#scrollTop.visible { display: flex; }

/* ==================================================
   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) {
  .offerings-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem; }
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-origin { grid-template-columns: 1fr; gap: 3rem; }
  .about-origin-img { aspect-ratio: 16/9; }
  .about-cta { grid-template-columns: 1fr; gap: 3rem; }
  .contact-section { grid-template-columns: 1fr; gap: 3rem; }
  .masonry-grid { columns: 3; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .brand-teaser { grid-template-columns: 1fr; gap: 3rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .offerings-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .footer-bar { flex-direction: column; align-items: flex-start; }
  .category-tiles { grid-template-columns: 1fr; }
  .social-buttons { flex-direction: column; align-items: center; }
}
