/*
  Design rationale: Deep walnut and warm amber evoke the 50-year-old ancestral house — aged wood floors, vintage lanterns, and the amber glow of a Filipino family kitchen.
  Heading: Yeseva One — a bold display serif with colonial-era warmth, perfect for a heritage dining destination.
  Body: Lato — clean humanist sans that keeps food descriptions legible and approachable.
*/

/* ============================================================
   1. Reset & Custom Properties
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Yeseva+One&family=Lato:wght@300;400;700&display=swap');

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

:root {
  --dark:       #221208;
  --bg-alt:     #2E1A0C;
  --accent:     #C4823A;
  --highlight:  #D45B2A;
  --cream:      #FAF5EC;
  --cream-dim:  rgba(250,245,236,0.65);
  --accent-dim: rgba(196,130,58,0.14);
  --border:     rgba(196,130,58,0.22);
  --ff-display: 'Yeseva One', Georgia, serif;
  --ff-body:    'Lato', 'Helvetica Neue', sans-serif;
  --nav-h:      72px;
  --radius:     6px;
  --transition: 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.7; -webkit-font-smoothing: antialiased; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ============================================================
   2. Typography
   ============================================================ */
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.15; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; }
p  { color: var(--cream-dim); }
.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-heading { text-align: center; margin-bottom: 0.5rem; }
.section-sub { text-align: center; color: var(--cream-dim); max-width: 580px; margin: 0 auto 3rem; }
.section-label { display: block; text-align: center; margin-bottom: 0.8rem; }

/* ============================================================
   3. Buttons
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.78rem 1.8rem; border-radius: var(--radius);
  font-family: var(--ff-body); font-weight: 700; font-size: 0.9rem;
  letter-spacing: 0.06em; transition: var(--transition); white-space: nowrap;
}
.btn-primary {
  background: var(--accent); color: var(--dark);
}
.btn-primary:hover { background: var(--highlight); color: #fff; transform: translateY(-2px); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 2px solid rgba(250,245,236,0.35);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(250,245,236,0.08); }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 2px solid var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--dark); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ============================================================
   4. Navbar
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: var(--nav-h); display: flex; align-items: center;
  padding: 0 4%;
  background: transparent;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-brand {
  display: flex; align-items: center; gap: 0.7rem; flex-shrink: 0;
}
.nav-logo {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--accent);
}
.nav-brand-name {
  font-family: var(--ff-display); font-size: 1.1rem;
  color: var(--cream); line-height: 1.1;
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: var(--cream);
  position: relative; padding-bottom: 3px;
  transition: color var(--transition);
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 100%;
  height: 2px; background: var(--accent); transition: right var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { right: 0; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta { margin-left: 1.5rem; flex-shrink: 0; }
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 32px; margin-left: auto; padding: 4px;
}
.hamburger span {
  display: block; height: 2px; background: var(--cream);
  border-radius: 2px; transition: 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 {
  display: none; position: fixed; inset: 0; z-index: 850;
  background: var(--dark); 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.8rem; color: var(--cream);
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn { margin-top: 1rem; font-size: 1rem; padding: 1rem 2.5rem; }

/* ============================================================
   5. Hero
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('images/banner.jpg');
  background-size: cover; background-position: center;
  transform: scale(1.04); transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(34,18,8,0.7) 0%, rgba(34,18,8,0.5) 50%, rgba(34,18,8,0.75) 100%);
}
.hero-content {
  position: relative; text-align: center; padding: 0 5%;
  max-width: 860px;
}
.hero-eyebrow {
  display: inline-block; padding: 0.35rem 1.2rem;
  border: 1px solid var(--accent); border-radius: 20px;
  font-size: 0.8rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 1.5rem;
}
.hero h1 { color: var(--cream); margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-sub { font-size: 1.15rem; color: var(--cream-dim); margin-bottom: 2.5rem; }
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 0.5rem;
  color: var(--cream-dim); font-size: 0.75rem; letter-spacing: 0.1em; text-transform: uppercase;
  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(6px); } }

/* ============================================================
   6. Features Strip
   ============================================================ */
.features-strip {
  background: var(--accent); padding: 2.2rem 4%;
}
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  max-width: 1200px; margin: 0 auto;
}
.feature-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.6rem;
}
.feature-icon { width: 36px; height: 36px; color: var(--dark); }
.feature-item h4 { font-family: var(--ff-display); font-size: 1rem; color: var(--dark); margin: 0; }
.feature-item p { font-size: 0.82rem; color: rgba(34,18,8,0.75); margin: 0; }

/* ============================================================
   7. Offerings Grid (3×3 home)
   ============================================================ */
.offerings-section { padding: 6rem 4%; background: var(--bg-alt); }
.offerings-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1200px; margin: 0 auto;
}
.offering-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
}
.offering-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.5s ease;
}
.offering-tile:hover img { transform: scale(1.07); }
.offering-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(34,18,8,0.88) 0%, rgba(34,18,8,0.1) 55%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.2rem;
}
.offering-tile-category {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.3rem;
  opacity: 0; transform: translateY(6px); transition: var(--transition);
}
.offering-tile:hover .offering-tile-category { opacity: 1; transform: translateY(0); }
.offering-tile-name {
  font-family: var(--ff-display); font-size: 1.1rem; color: var(--cream);
}

/* ============================================================
   8. Brand Teaser Split
   ============================================================ */
.brand-teaser { display: grid; grid-template-columns: 1fr 1fr; min-height: 500px; }
.teaser-image { overflow: hidden; }
.teaser-image img { width: 100%; height: 100%; object-fit: cover; }
.teaser-content {
  background: var(--dark); padding: 5rem 4%;
  display: flex; flex-direction: column; justify-content: center; gap: 1.2rem;
}
.teaser-content h2 { margin-bottom: 0.5rem; }
.teaser-content p { max-width: 480px; }
.teaser-cta { margin-top: 1rem; }

/* ============================================================
   9. Stats Row
   ============================================================ */
.stats-row {
  background: var(--bg-alt); padding: 4rem 4%;
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem;
  max-width: 1100px; margin: 0 auto; text-align: center;
}
.stat-number {
  font-family: var(--ff-display); font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--accent); line-height: 1;
}
.stat-label { font-size: 0.85rem; color: var(--cream-dim); margin-top: 0.4rem; text-transform: uppercase; letter-spacing: 0.08em; }

/* ============================================================
   10. Review Cards
   ============================================================ */
.reviews-section { padding: 6rem 4%; background: var(--dark); }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem;
  max-width: 1100px; margin: 0 auto;
}
.review-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2rem;
}
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--accent); }
.review-stars svg { width: 18px; height: 18px; }
.review-text { font-size: 0.95rem; color: var(--cream-dim); margin-bottom: 1.2rem; font-style: italic; }
.review-author { font-weight: 700; font-size: 0.88rem; color: var(--cream); }
.review-source { font-size: 0.78rem; color: var(--cream-dim); }

/* ============================================================
   11. Social CTA + Platform Buttons
   ============================================================ */
.social-cta {
  background: var(--bg-alt); padding: 5rem 4%; text-align: center;
  border-top: 1px solid var(--border);
}
.social-cta h2 { margin-bottom: 0.8rem; }
.social-cta p { margin-bottom: 2.5rem; }
.social-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.social-btn {
  display: inline-flex; align-items: center; gap: 0.55rem;
  padding: 0.75rem 1.6rem; border-radius: var(--radius); font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.05em; transition: var(--transition);
}
.social-btn svg { width: 20px; height: 20px; }
.social-btn-wa { background: #25D366; color: #fff; }
.social-btn-wa:hover { background: #1ebe5d; }
.social-btn-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: #fff; }
.social-btn-ig:hover { opacity: 0.88; }
.social-btn-fb { background: #1877F2; color: #fff; }
.social-btn-fb:hover { background: #0e68da; }

/* ============================================================
   12. Social Feed Grid
   ============================================================ */
.social-feed { padding: 5rem 4%; background: var(--dark); }
.feed-grid {
  display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px;
  max-width: 1200px; margin: 0 auto;
}
.feed-item {
  aspect-ratio: 1; overflow: hidden; position: relative;
}
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.feed-item:hover img { transform: scale(1.08); }
.feed-overlay {
  position: absolute; inset: 0; background: rgba(34,18,8,0.5);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--transition);
}
.feed-overlay svg { width: 28px; height: 28px; color: #fff; }
.feed-item:hover .feed-overlay { opacity: 1; }

/* ============================================================
   13. Footer
   ============================================================ */
footer {
  background: #140A04; padding: 5rem 4% 0;
  border-top: 1px solid var(--border);
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem;
  max-width: 1200px; margin: 0 auto; padding-bottom: 4rem;
}
.footer-brand { display: flex; gap: 0.8rem; align-items: flex-start; margin-bottom: 1.2rem; }
.footer-logo { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.footer-brand-name { font-family: var(--ff-display); font-size: 1.05rem; color: var(--cream); line-height: 1.2; }
.footer-tagline { font-size: 0.88rem; color: var(--cream-dim); margin-bottom: 1.5rem; max-width: 280px; }
.footer-socials { display: flex; gap: 0.8rem; }
.footer-social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--accent-dim); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--cream); transition: var(--transition);
}
.footer-social-icon:hover { background: var(--accent); color: var(--dark); }
.footer-social-icon svg { width: 16px; height: 16px; }
.footer-col h5 {
  font-family: var(--ff-display); font-size: 0.95rem; color: var(--cream);
  margin-bottom: 1.2rem; padding-bottom: 0.6rem;
  border-bottom: 1px solid var(--border);
}
.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(--transition); }
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item { display: flex; gap: 0.6rem; margin-bottom: 0.9rem; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 3px; }
.footer-contact-item span { font-size: 0.86rem; color: var(--cream-dim); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid var(--border); padding: 1.5rem 0;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.8rem; color: var(--cream-dim); }
.footer-badges { display: flex; gap: 0.8rem; flex-wrap: wrap; }
.badge {
  padding: 0.3rem 0.8rem; border-radius: 20px; font-size: 0.72rem;
  font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.badge-accent { background: var(--accent-dim); border: 1px solid var(--border); color: var(--accent); }

/* ============================================================
   14. Page Hero (inner pages)
   ============================================================ */
.page-hero {
  position: relative; min-height: 52vh;
  display: flex; align-items: flex-end;
  padding: 0 4% 4rem;
  background-image: var(--page-hero-bg);
  background-size: cover; background-position: center;
  margin-top: 0;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(34,18,8,0.9) 0%, rgba(34,18,8,0.35) 60%);
}
.page-hero-content { position: relative; max-width: 700px; padding-top: var(--nav-h); }
.page-hero-content .label { margin-bottom: 0.6rem; }
.page-hero-content h1 { color: var(--cream); margin-bottom: 0.8rem; }
.page-hero-content p { color: var(--cream-dim); font-size: 1.05rem; }

/* ============================================================
   15. About Page Sections
   ============================================================ */
.about-origin { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 480px; }
.about-origin-img { overflow: hidden; }
.about-origin-img img { width: 100%; height: 100%; object-fit: cover; }
.about-origin-text {
  background: var(--bg-alt); padding: 5rem 4%;
  display: flex; flex-direction: column; justify-content: center; gap: 1.2rem;
}
.about-origin-text h2 { margin-bottom: 0.5rem; }
.philosophy-section { padding: 6rem 4%; background: var(--dark); }
.philosophy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem;
  max-width: 1100px; margin: 0 auto;
}
.philosophy-card {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 2.5rem 2rem;
}
.philosophy-icon { width: 44px; height: 44px; color: var(--accent); margin-bottom: 1.2rem; }
.philosophy-card h3 { margin-bottom: 0.8rem; font-size: 1.2rem; }
.values-section { padding: 6rem 4%; background: var(--bg-alt); }
.values-list {
  max-width: 800px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 2rem;
}
.value-item { display: flex; gap: 2rem; align-items: flex-start; }
.value-number {
  font-family: var(--ff-display); font-size: 2.5rem; color: var(--accent);
  line-height: 1; flex-shrink: 0; width: 60px; opacity: 0.5;
}
.value-text h4 { font-family: var(--ff-display); font-size: 1.1rem; color: var(--cream); margin-bottom: 0.4rem; }
.timeline-section { padding: 6rem 4%; background: var(--dark); }
.timeline {
  max-width: 800px; margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: ''; position: absolute; left: 100px; top: 0; bottom: 0;
  width: 1px; background: var(--border);
}
.timeline-item { display: flex; gap: 2rem; margin-bottom: 3rem; position: relative; }
.timeline-date {
  font-family: var(--ff-display); font-size: 0.95rem; color: var(--accent);
  width: 90px; flex-shrink: 0; text-align: right; padding-top: 4px;
}
.timeline-dot {
  position: absolute; left: 94px; top: 8px;
  width: 12px; height: 12px; border-radius: 50%;
  background: var(--accent); border: 2px solid var(--dark);
}
.timeline-body { padding-left: 2rem; }
.timeline-body h4 { font-family: var(--ff-display); font-size: 1.1rem; color: var(--cream); margin-bottom: 0.4rem; }
.about-cta-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 400px; }
.about-cta-img { overflow: hidden; }
.about-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.about-cta-text {
  background: var(--bg-alt); padding: 5rem 4%;
  display: flex; flex-direction: column; justify-content: center; gap: 1.2rem;
}
.about-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* ============================================================
   16. Menu / Offerings Page
   ============================================================ */
.menu-page { background: var(--dark); }
.disclaimer-bar {
  background: var(--accent-dim); border-bottom: 1px solid var(--border);
  padding: 0.9rem 4%; text-align: center; font-size: 0.86rem; color: var(--cream-dim);
}
.disclaimer-bar a { color: var(--accent); font-weight: 700; }
.category-tiles-section { padding: 4rem 4%; background: var(--bg-alt); }
.category-tiles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
  max-width: 1100px; margin: 0 auto;
}
.category-tile {
  position: relative; border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 4/3; cursor: pointer;
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.category-tile:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(0,0,0,0.5); }
.category-tile img { width: 100%; height: 100%; object-fit: cover; }
.category-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(34,18,8,0.92) 0%, rgba(34,18,8,0.1) 55%);
  display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem;
}
.category-tile-name { font-family: var(--ff-display); font-size: 1.3rem; color: var(--cream); margin-bottom: 0.3rem; }
.category-tile-count { font-size: 0.78rem; color: var(--accent); font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; }
.menu-sections { padding: 0 4% 6rem; max-width: 1100px; margin: 0 auto; }
.menu-category-section { padding: 4rem 0; border-bottom: 1px solid var(--border); }
.menu-category-section:last-child { border-bottom: none; }
.menu-cat-header { margin-bottom: 2.5rem; }
.menu-cat-header h2 { font-size: 1.8rem; margin-bottom: 0.5rem; }
.menu-cat-header p { color: var(--cream-dim); font-size: 0.95rem; }
.menu-items-list { display: flex; flex-direction: column; gap: 1.5rem; }
.menu-item {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.6rem 2rem;
  display: flex; flex-direction: column; gap: 0.4rem;
}
.menu-item-header { display: flex; align-items: center; gap: 0.8rem; flex-wrap: wrap; }
.menu-item h4 { font-family: var(--ff-display); font-size: 1.05rem; color: var(--cream); }
.menu-badge {
  padding: 0.2rem 0.65rem; border-radius: 20px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
}
.badge-sig { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border); }
.badge-best { background: rgba(212,91,42,0.15); color: var(--highlight); border: 1px solid rgba(212,91,42,0.25); }
.badge-new { background: rgba(100,200,100,0.12); color: #6dc96d; border: 1px solid rgba(100,200,100,0.25); }
.menu-item p { color: var(--cream-dim); font-size: 0.9rem; }
.menu-cta { background: var(--bg-alt); padding: 4rem; text-align: center; border-radius: var(--radius); border: 1px solid var(--border); margin: 4rem 4%; }
.menu-cta h3 { margin-bottom: 0.8rem; }
.menu-cta p { margin-bottom: 2rem; }

/* ============================================================
   17. Gallery Page
   ============================================================ */
.gallery-page { background: var(--dark); }
.gallery-filter {
  padding: 2.5rem 4% 0; max-width: 1200px; margin: 0 auto;
  display: flex; gap: 0.8rem; flex-wrap: wrap;
}
.filter-btn {
  padding: 0.55rem 1.4rem; border-radius: 20px;
  font-size: 0.82rem; font-weight: 700; letter-spacing: 0.07em; text-transform: uppercase;
  border: 1px solid var(--border); color: var(--cream-dim);
  transition: var(--transition); background: transparent;
}
.filter-btn.active, .filter-btn:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.gallery-section { padding: 3rem 4%; max-width: 1200px; margin: 0 auto; }
.gallery-section-header { margin-bottom: 1.5rem; }
.gallery-section-header h3 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.gallery-section-header span { font-size: 0.8rem; color: var(--cream-dim); }
.masonry { columns: 4; column-gap: 8px; }
.masonry-item {
  display: block; width: 100%; margin-bottom: 8px;
  border-radius: 4px; overflow: hidden; cursor: pointer;
  break-inside: avoid;
}
.masonry-item img { width: 100%; height: auto; object-fit: cover; transition: transform 0.4s; display: block; }
.masonry-item:hover img { transform: scale(1.04); }
/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 1000;
  background: rgba(20,10,4,0.97);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img { max-width: 90vw; max-height: 82vh; object-fit: contain; border-radius: 4px; }
.lightbox-close {
  position: fixed; top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px; border-radius: 50%;
  background: rgba(250,245,236,0.15); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; transition: var(--transition); cursor: pointer;
  border: 1px solid var(--border);
}
.lightbox-close:hover { background: var(--accent); color: var(--dark); }
.lightbox-prev, .lightbox-next {
  position: fixed; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px; border-radius: 50%;
  background: rgba(250,245,236,0.12); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition); cursor: pointer;
  border: 1px solid var(--border);
}
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); color: var(--dark); }
.lightbox-prev svg, .lightbox-next svg { width: 20px; height: 20px; }
.lightbox-counter {
  position: fixed; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.85rem; color: var(--cream-dim);
}
.gallery-cta { padding: 5rem 4%; text-align: center; background: var(--bg-alt); }
.gallery-cta h3 { margin-bottom: 0.8rem; }
.gallery-cta p { margin-bottom: 2rem; color: var(--cream-dim); }
.gallery-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   18. Contact Page
   ============================================================ */
.contact-page { background: var(--dark); }
.contact-grid {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem;
  max-width: 1100px; margin: 0 auto; padding: 5rem 4%;
}
.contact-blocks { display: flex; flex-direction: column; gap: 2rem; }
.contact-block {
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 1.8rem;
}
.contact-block-header { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.contact-block-header svg { width: 22px; height: 22px; color: var(--accent); }
.contact-block-header h4 { font-family: var(--ff-display); font-size: 1rem; color: var(--cream); }
.contact-block p, .contact-block a { font-size: 0.9rem; color: var(--cream-dim); }
.contact-block a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr:not(:last-child) td { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 0.5rem 0; font-size: 0.88rem; color: var(--cream-dim); }
.hours-table td:last-child { text-align: right; color: var(--cream); }
.hours-peak td { color: var(--accent) !important; font-weight: 700; }
/* Form */
.contact-form-wrap { }
.contact-form { display: flex; flex-direction: column; gap: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
label { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.06em; text-transform: uppercase; color: var(--cream); }
input, select, textarea {
  width: 100%; padding: 0.85rem 1rem;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius); color: var(--cream);
  font-family: var(--ff-body); font-size: 0.95rem;
  transition: border-color var(--transition);
}
input:focus, select:focus, textarea:focus {
  outline: none; border-color: var(--accent);
}
input.error, select.error, textarea.error { border-color: #e55; }
textarea { min-height: 140px; resize: vertical; }
select option { background: var(--dark); }
.form-submit { margin-top: 0.5rem; }
.form-submit .btn { width: 100%; justify-content: center; }
#formSuccess {
  display: none; text-align: center; padding: 3rem 2rem;
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
}
#formSuccess svg { width: 60px; height: 60px; color: var(--accent); margin: 0 auto 1.2rem; }
#formSuccess h3 { margin-bottom: 0.8rem; }
#formSuccess p { color: var(--cream-dim); }
/* Map Placeholder */
.map-placeholder {
  max-width: 1100px; margin: 0 auto 5rem; padding: 0 4%;
}
.map-box {
  background: var(--bg-alt); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 3rem; display: flex; gap: 2rem; align-items: flex-start;
}
.map-pin { width: 36px; height: 36px; color: var(--accent); flex-shrink: 0; margin-top: 4px; }
.map-info h4 { font-family: var(--ff-display); font-size: 1.1rem; color: var(--cream); margin-bottom: 0.5rem; }
.map-info p { color: var(--cream-dim); font-size: 0.9rem; margin-bottom: 0.4rem; }
.map-link { display: inline-flex; align-items: center; gap: 0.4rem; color: var(--accent); font-weight: 700; font-size: 0.88rem; margin-top: 0.8rem; }
.map-link:hover { color: var(--highlight); }

/* ============================================================
   19. FAQ Accordion
   ============================================================ */
.faq-section { padding: 6rem 4%; background: var(--dark); }
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-q {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 0; font-family: var(--ff-display); font-size: 1rem;
  color: var(--cream); text-align: left; cursor: pointer;
  background: transparent;
}
.faq-q svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; transition: transform var(--transition); }
.faq-item.open .faq-q svg { transform: rotate(180deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-a-inner { padding: 0 0 1.4rem; color: var(--cream-dim); font-size: 0.93rem; }

/* ============================================================
   20. Scroll-to-Top Button
   ============================================================ */
#scrollTop {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 800;
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--accent); color: var(--dark);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { transform: translateY(-3px); }
#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 — 1024px, 768px, 480px
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .brand-teaser { grid-template-columns: 1fr; }
  .teaser-image { min-height: 320px; }
  .about-origin { grid-template-columns: 1fr; }
  .about-origin-img { min-height: 300px; }
  .about-cta-split { grid-template-columns: 1fr; }
  .about-cta-img { min-height: 300px; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry { columns: 3; }
  .contact-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .philosophy-grid { grid-template-columns: 1fr; }
  .category-tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 2; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .timeline::before { left: 70px; }
  .timeline-dot { left: 64px; }
  .timeline-date { width: 60px; font-size: 0.82rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .map-box { flex-direction: column; }
}
@media (max-width: 480px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .category-tiles-grid { grid-template-columns: 1fr; }
  .masonry { columns: 1; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .social-buttons { flex-direction: column; align-items: center; }
  .timeline { padding-left: 0; }
  .timeline::before { display: none; }
  .timeline-item { flex-direction: column; gap: 0.3rem; }
  .timeline-date { width: auto; text-align: left; }
  .timeline-dot { display: none; }
  .timeline-body { padding-left: 0; }
  .about-cta-btns { flex-direction: column; }
}
