/* ============================================================
   MAILLARD CAFÉ — styles.css
   Palette derived from logo: warm near-black, parchment cream,
   deep espresso-brown accent, warm amber/caramel highlight
   Logo: #f1ede5 background · #0e0c09 near-black text
   ============================================================ */

/* ── 1. CUSTOM PROPERTIES ──────────────────────────────── */
:root {
  --dark:        #110f0c;   /* deep warm espresso-black (from logo bg inverted) */
  --bg-alt:      #1e1a16;   /* slightly lighter warm-dark */
  --accent:      #3d2b1f;   /* deep espresso brown (true to brand) */
  --highlight:   #c8914a;   /* warm amber/caramel (Maillard browning tones) */
  --cream:       #f1ede5;   /* parchment/off-white (exact logo background) */
  --cream-dim:   rgba(241, 237, 229, 0.65);
  --accent-dim:  rgba(61, 43, 31, 0.16);
  --border:      rgba(200, 145, 74, 0.20);
  --ff-display:  'Playfair Display', serif;
  --ff-body:     'Nunito', sans-serif;
}

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

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

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

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

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

ul { list-style: none; }

/* ── 3. TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.2;
  font-weight: 700;
}

h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.1rem; }

p { color: var(--cream-dim); max-width: 65ch; }

.section-label {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--highlight);
  display: block;
  margin-bottom: 0.6rem;
}

.section-title {
  margin-bottom: 0.8rem;
}

/* ── 4. BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.78rem 1.9rem;
  border-radius: 4px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
}
.btn-primary:hover {
  background: transparent;
  color: var(--cream);
  border-color: var(--accent);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream-dim);
}
.btn-outline:hover {
  background: var(--cream);
  color: var(--dark);
  border-color: var(--cream);
}

.btn-gold {
  background: var(--highlight);
  color: var(--dark);
  border-color: var(--highlight);
}
.btn-gold:hover {
  background: transparent;
  color: var(--highlight);
  border-color: var(--highlight);
}

/* ── 5. NAVBAR ──────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease;
}
.navbar.scrolled {
  background: rgba(26, 24, 20, 0.97);
  padding: 0.75rem 0;
  box-shadow: 0 2px 24px rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}
.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 50%;
  background: var(--cream);
  padding: 4px;
}
.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--cream);
}
.nav-logo-text span {
  color: var(--highlight);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  padding: 0.5rem 0.9rem;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cream-dim);
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
  background: var(--accent-dim);
}

.nav-cta {
  flex-shrink: 0;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s ease;
  border-radius: 2px;
}
.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-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(26, 24, 20, 0.98);
  z-index: 999;
  padding: 6rem 2rem 2rem;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--cream); }
.mobile-menu .btn { margin-top: 1.5rem; }

/* ── 6. HERO ────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26, 24, 20, 0.82) 0%,
    rgba(26, 24, 20, 0.55) 60%,
    rgba(26, 24, 20, 0.35) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 6rem;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.2rem;
}
.hero-eyebrow-line {
  width: 40px;
  height: 2px;
  background: var(--highlight);
}
.hero-eyebrow-text {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--highlight);
}

.hero h1 {
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.hero h1 em {
  font-style: italic;
  color: var(--highlight);
}
.hero-subtitle {
  font-family: var(--ff-body);
  font-size: clamp(0.9rem, 2vw, 1.15rem);
  color: var(--cream-dim);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}
.hero-tagline {
  font-family: var(--ff-display);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  color: var(--cream);
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream-dim);
  cursor: pointer;
}
.hero-scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--highlight), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* Page hero (interior pages) */
.page-hero {
  position: relative;
  height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,24,20,0.85) 0%, rgba(26,24,20,0.5) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 5rem;
}
.page-hero-content h1 { color: var(--cream); margin-bottom: 0.5rem; }
.page-hero-content p { color: var(--cream-dim); font-size: 1.05rem; }

/* ── 7. SECTIONS ────────────────────────────────────────── */
.section {
  padding: 6rem 0;
}
.section-alt {
  background: var(--bg-alt);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.section-header {
  margin-bottom: 3rem;
}
.section-header.center {
  text-align: center;
}
.section-header.center p { margin: 0 auto; }

/* ── 8. FEATURES STRIP ──────────────────────────────────── */
.features-strip {
  background: var(--accent);
  padding: 1.5rem 0;
}
.features-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.feature-pill {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
}
.feature-pill svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  opacity: 0.85;
}

/* ── 9. OFFERINGS GRID ──────────────────────────────────── */
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.offering-card {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: 6px;
  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-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.2rem 1rem 0.9rem;
  background: linear-gradient(transparent, rgba(26,24,20,0.88));
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
}

/* ── 10. BRAND TEASER ───────────────────────────────────── */
.brand-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.brand-teaser-img {
  position: relative;
}
.brand-teaser-img img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 8px;
}
.brand-teaser-img::after {
  content: '';
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 70%;
  height: 70%;
  border: 2px solid var(--border);
  border-radius: 8px;
  z-index: -1;
}
.brand-teaser-text p { margin-bottom: 1.2rem; }

.chemistry-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--highlight);
  margin-bottom: 1.5rem;
}

/* ── 11. STATS ROW ──────────────────────────────────────── */
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 4rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stat-item {}
.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--highlight);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}

/* ── 12. REVIEW CARDS ───────────────────────────────────── */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}
.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.review-stars span {
  color: var(--highlight);
  font-size: 1rem;
}
.review-text {
  font-style: italic;
  color: var(--cream-dim);
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
  line-height: 1.7;
}
.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--cream);
  flex-shrink: 0;
}
.review-author {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--cream);
}
.review-source {
  font-size: 0.75rem;
  color: var(--cream-dim);
}

/* ── 13. SOCIAL CTA BAND ────────────────────────────────── */
.social-cta {
  background: var(--accent);
  padding: 4rem 0;
  text-align: center;
}
.social-cta h2 { color: var(--cream); margin-bottom: 0.5rem; }
.social-cta p { color: rgba(240,235,227,0.75); margin: 0 auto 2rem; }
.social-icons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.social-icon-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 2px solid rgba(240,235,227,0.4);
  color: var(--cream);
  transition: all 0.25s;
}
.social-icon-link:hover {
  background: var(--cream);
  border-color: var(--cream);
  color: var(--accent);
}
.social-icon-link svg { width: 20px; height: 20px; }

/* ── 14. SOCIAL FEED GRID ───────────────────────────────── */
.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
}
.feed-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 4px;
}
.feed-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.feed-item:hover img { transform: scale(1.08); }
.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,90,71,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 28px; height: 28px; color: var(--cream); }

/* ── 15. FOOTER ─────────────────────────────────────────── */
.footer {
  background: #111009;
  padding: 4rem 0 2rem;
}
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2rem;
}
.footer-brand img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: var(--cream);
  border-radius: 50%;
  padding: 6px;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  max-width: 28ch;
}
.footer-brand .social-icons { justify-content: flex-start; margin-top: 1.2rem; margin-bottom: 0; }
.footer-brand .social-icon-link {
  width: 36px; height: 36px;
  border-color: var(--border);
}
.footer-brand .social-icon-link svg { width: 16px; height: 16px; }

.footer-col h4 {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 1.2rem;
}
.footer-col ul li {
  margin-bottom: 0.55rem;
}
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-col p {
  font-size: 0.88rem;
  color: var(--cream-dim);
  max-width: none;
}
.footer-col p + p { margin-top: 0.5rem; }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.78rem;
  color: rgba(240,235,227,0.35);
}
.footer-bottom a { color: var(--cream-dim); }
.footer-bottom a:hover { color: var(--cream); }

/* ── 16. ABOUT PAGE ─────────────────────────────────────── */
.origin-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.origin-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 8px;
}

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.philosophy-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2rem;
}
.philosophy-card-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
}
.philosophy-card-icon svg { width: 24px; height: 24px; color: var(--highlight); }
.philosophy-card h3 { margin-bottom: 0.7rem; font-size: 1.1rem; }
.philosophy-card p { font-size: 0.9rem; }

.values-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.value-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.2rem;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 6px;
}
.value-num {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--highlight);
  line-height: 1;
  flex-shrink: 0;
}
.value-item h4 { color: var(--cream); margin-bottom: 0.3rem; }
.value-item p { font-size: 0.85rem; max-width: none; }

.timeline {
  position: relative;
  padding-left: 2.5rem;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent), transparent);
}
.timeline-item {
  position: relative;
  padding-bottom: 2.5rem;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -2.5rem;
  top: 0.35rem;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--highlight);
  border: 2px solid var(--dark);
  transform: translateX(-5px);
}
.timeline-year {
  font-family: var(--ff-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.3rem;
}
.timeline-item h4 { color: var(--cream); margin-bottom: 0.3rem; }
.timeline-item p { font-size: 0.88rem; max-width: none; }

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.cta-panel {
  padding: 3rem;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.cta-panel.dark { background: var(--bg-alt); border: 1px solid var(--border); }
.cta-panel.green { background: var(--accent); }
.cta-panel h3 { color: var(--cream); }
.cta-panel p { font-size: 0.9rem; }
.cta-panel.green p { color: rgba(240,235,227,0.75); }

/* ── 17. MENU PAGE ──────────────────────────────────────── */
.disclaimer-bar {
  background: var(--highlight);
  padding: 0.85rem 0;
  text-align: center;
}
.disclaimer-bar p {
  color: var(--dark);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  max-width: none;
}
.disclaimer-bar a { color: var(--dark); text-decoration: underline; }

.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1rem;
}
.category-tile {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.category-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.category-tile:hover img { transform: scale(1.07); }
.category-tile-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 40%, rgba(26,24,20,0.85) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.category-tile-label h3 { font-size: 1rem; color: var(--cream); }
.category-tile-label span { font-size: 0.75rem; color: var(--cream-dim); }

.menu-section {
  margin-bottom: 4rem;
  scroll-margin-top: 100px;
}
.menu-section-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.menu-section-header h2 { font-size: 1.8rem; }
.menu-section-icon {
  width: 50px; height: 50px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.menu-section-icon svg { width: 24px; height: 24px; color: var(--highlight); }

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.menu-item {
  background: var(--bg-alt);
  padding: 1.4rem 1.6rem;
  transition: background 0.2s;
}
.menu-item:hover { background: #2a2520; }
.menu-item h4 { color: var(--cream); margin-bottom: 0.3rem; font-size: 1rem; }
.menu-item p { font-size: 0.85rem; max-width: none; }

/* ── 18. GALLERY PAGE ───────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.55rem 1.3rem;
  border-radius: 4px;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--cream-dim);
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--cream);
}

.gallery-grid {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26,24,20,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 36px; height: 36px; color: var(--cream); }

.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 9, 7, 0.96);
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.open { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 900px;
  width: 100%;
}
.lightbox-inner img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 6px;
}
.lightbox-close {
  position: absolute;
  top: -3rem;
  right: 0;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2rem;
  cursor: pointer;
  line-height: 1;
}
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(26,24,20,0.8);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--cream);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.6rem 0.9rem;
  transition: background 0.2s;
}
.lightbox-prev { left: -4rem; }
.lightbox-next { right: -4rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }

/* ── 19. CONTACT PAGE ───────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-blocks {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.contact-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1.5rem;
}
.contact-block-icon {
  width: 40px; height: 40px;
  background: var(--accent-dim);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.9rem;
}
.contact-block-icon svg { width: 20px; height: 20px; color: var(--highlight); }
.contact-block h4 {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.6rem;
}
.contact-block p { font-size: 0.9rem; max-width: none; }
.contact-block a { color: var(--cream-dim); transition: color 0.2s; }
.contact-block a:hover { color: var(--cream); }

.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td {
  padding: 0.35rem 0;
  font-size: 0.88rem;
  color: var(--cream-dim);
}
.hours-table td:first-child { font-weight: 600; color: var(--cream); padding-right: 1rem; }

.inquiry-form {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.5rem;
}
.inquiry-form h2 { margin-bottom: 0.4rem; }
.inquiry-form > p { margin-bottom: 2rem; font-size: 0.9rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin-bottom: 1.2rem;
}
.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: rgba(240,235,227,0.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 0.75rem 1rem;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--cream);
  transition: border-color 0.2s;
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(240,235,227,0.3); }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }

#formSuccess {
  display: none;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.2rem 1.5rem;
  color: var(--cream);
  font-size: 0.9rem;
  margin-top: 1rem;
}

.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
}
.map-placeholder-inner {
  padding: 2rem;
  text-align: center;
}
.map-placeholder-inner h3 { margin-bottom: 0.5rem; }
.map-placeholder-inner p { margin: 0 auto 1.5rem; font-size: 0.9rem; }

/* ── 20. FAQ ACCORDION ──────────────────────────────────── */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
  gap: 1rem;
}
.faq-icon {
  width: 24px; height: 24px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight);
  font-size: 1.2rem;
  font-weight: 300;
  transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.2rem;
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ── 21. SCROLL TO TOP ──────────────────────────────────── */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  background: var(--accent);
  border: none;
  border-radius: 4px;
  color: var(--cream);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 500;
}
.scroll-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.scroll-top svg { width: 20px; height: 20px; }

/* ── 22. FADE IN ANIMATION ──────────────────────────────── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.delay-4 { transition-delay: 0.4s; }

/* ── RESPONSIVE: 1024px ─────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .brand-teaser { gap: 3rem; }
  .contact-grid { gap: 2.5rem; }
  .lightbox-prev { left: -1rem; }
  .lightbox-next { right: -1rem; }
}

/* ── RESPONSIVE: 768px ──────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }

  .hero-content { padding-top: 5rem; }

  .features-inner { gap: 0.75rem; }
  .feature-pill { font-size: 0.75rem; }

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

  .brand-teaser { grid-template-columns: 1fr; gap: 2rem; }
  .brand-teaser-img::after { display: none; }

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

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

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

  .cta-split { grid-template-columns: 1fr; }

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

  .gallery-grid { columns: 2; }

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

  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }

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

/* ── RESPONSIVE: 480px ──────────────────────────────────── */
@media (max-width: 480px) {
  .section { padding: 4rem 0; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .offerings-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .category-tiles { grid-template-columns: 1fr; }
  .gallery-grid { columns: 1; }
  .cta-panel { padding: 2rem; }
  .inquiry-form { padding: 1.5rem; }
  .lightbox-prev, .lightbox-next { display: none; }
}
