/*
  Design rationale: Deep military olive-forest green grounds the earthy, candlelit warmth of a Poblacion neo-Filipino bistro; the warm blush-rose accent mirrors the exact brand color in the Lámpara wordmark logo.
  Heading: Julius Sans One — elegant, spaced-out humanist caps with artisanal personality that pairs perfectly with "Neo-Filipino" fine dining
  Body: Mada — clean, modern Arabic-origin sans that reads beautifully in paragraph text and complements Julius's wider letterforms
*/

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

:root {
  --dark:      #1E2A12;
  --bg-alt:    #29381A;
  --accent:    #C8977A;
  --highlight: #E0C07A;
  --cream:     #F5F0E8;
  --cream-dim: rgba(245,240,232,0.65);
  --accent-dim:rgba(200,151,122,0.14);
  --border:    rgba(200,151,122,0.22);
  --ff-display:'Julius Sans One', sans-serif;
  --ff-body:   'Mada', sans-serif;
}

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

/* 2. Typography */
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 400; line-height: 1.2; letter-spacing: 0.04em; }
h1 { font-size: clamp(2.4rem,6vw,4.5rem); }
h2 { font-size: clamp(1.8rem,3.5vw,2.8rem); }
h3 { font-size: clamp(1.2rem,2.5vw,1.6rem); }
h4 { font-size: 1.1rem; }
p  { color: var(--cream-dim); }
.label { font-size: 0.72rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); font-family: var(--ff-body); font-weight: 600; }
.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-sub { text-align: center; color: var(--cream-dim); max-width: 620px; margin: 0 auto 3rem; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* 3. Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.75rem; border-radius: 3px; font-family: var(--ff-body); font-size: 0.9rem; letter-spacing: 0.1em; cursor: pointer; transition: all 0.25s ease; border: none; text-transform: uppercase; font-weight: 600; }
.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: var(--highlight); color: var(--dark); }
.btn-ghost { background: transparent; color: var(--cream); border: 1px solid rgba(245,240,232,0.4); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn-outline { background: transparent; color: var(--accent); border: 1px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--dark); }

/* 4. Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 100; padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between; transition: background 0.35s ease, padding 0.35s ease; }
.navbar.scrolled { background: var(--dark); padding: 0.85rem 2rem; box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.navbar-brand { display: flex; align-items: center; gap: 0.75rem; z-index: 1; }
.navbar-brand img { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; }
.navbar-brand span { font-family: var(--ff-display); font-size: 1.1rem; letter-spacing: 0.08em; color: var(--cream); }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim); transition: color 0.2s; font-weight: 600; }
.nav-links a:hover, .nav-links a.active { color: var(--accent); }
.nav-cta { margin-left: 1rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; z-index: 101; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: all 0.3s; }
.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; inset: 0; background: var(--dark); z-index: 99; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: var(--ff-display); font-size: 1.5rem; color: var(--cream); letter-spacing: 0.08em; transition: color 0.2s; }
.mobile-menu a:hover { color: var(--accent); }
.mobile-menu .btn { margin-top: 1rem; }

/* 5. Hero */
.hero { position: relative; height: 100vh; min-height: 560px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: var(--hero-img, none); background-size: cover; background-position: center; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,42,18,0.55) 0%, rgba(30,42,18,0.75) 100%); }
.hero-content { position: relative; z-index: 1; text-align: center; max-width: 800px; padding: 0 1.5rem; }
.hero-content .label { margin-bottom: 1.25rem; }
.hero-content h1 { color: var(--cream); margin-bottom: 1rem; }
.hero-content p { font-size: 1.15rem; color: rgba(245,240,232,0.85); max-width: 560px; margin: 0 auto 2rem; }
.hero-btns { 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.4rem; z-index: 1; }
.scroll-indicator span { display: block; width: 1px; height: 40px; background: linear-gradient(to bottom, transparent, var(--accent)); animation: scrollPulse 1.8s ease infinite; }
@keyframes scrollPulse { 0%,100%{opacity:0.3;transform:scaleY(0.6)} 50%{opacity:1;transform:scaleY(1)} }

/* 6. Features strip */
.features-strip { background: var(--accent); padding: 3rem 2rem; }
.features-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; }
.feature-item { text-align: center; }
.feature-icon { width: 48px; height: 48px; margin: 0 auto 0.75rem; color: var(--dark); }
.feature-item h4 { font-family: var(--ff-display); font-size: 0.95rem; letter-spacing: 0.1em; color: var(--dark); margin-bottom: 0.35rem; }
.feature-item p { font-size: 0.85rem; color: rgba(30,42,18,0.7); line-height: 1.5; }

/* 7. Offerings grid (3×3 home grid) */
.offerings-section { padding: 5rem 2rem; }
.offerings-section .container { max-width: 1200px; margin: 0 auto; }
.offerings-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.offering-tile { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 1; cursor: pointer; }
.offering-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.offering-tile:hover img { transform: scale(1.06); }
.offering-tile-info { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,42,18,0.88) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; }
.offering-tile-info .label { margin-bottom: 0.35rem; font-size: 0.65rem; }
.offering-tile-info h4 { color: var(--cream); font-size: 1rem; }

/* 8. Brand teaser */
.brand-teaser { padding: 5rem 2rem; background: var(--bg-alt); }
.brand-teaser .container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.brand-teaser img { width: 100%; height: 460px; object-fit: cover; border-radius: 4px; }
.brand-teaser-text .label { margin-bottom: 1rem; }
.brand-teaser-text h2 { margin-bottom: 1.5rem; }
.brand-teaser-text p { margin-bottom: 1rem; }
.brand-teaser-text .btn { margin-top: 1.5rem; }

/* 9. Stats row */
.stats-row { padding: 4rem 2rem; background: var(--dark); }
.stats-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; text-align: center; }
.stat-item .stat-number { font-family: var(--ff-display); font-size: clamp(2rem,5vw,3.5rem); color: var(--accent); letter-spacing: 0.04em; line-height: 1; }
.stat-item .stat-label { font-size: 0.8rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--cream-dim); margin-top: 0.4rem; }

/* 10. Review cards */
.reviews-section { padding: 5rem 2rem; background: var(--bg-alt); }
.reviews-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-top: 3rem; }
.review-card { background: var(--accent-dim); border: 1px solid var(--border); border-radius: 6px; padding: 2rem; }
.review-stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--highlight); }
.review-stars svg { width: 16px; height: 16px; }
.review-text { font-style: italic; color: var(--cream-dim); margin-bottom: 1rem; line-height: 1.7; }
.reviewer-name { font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); font-weight: 600; }

/* 11. Social CTA + platform buttons */
.social-cta { padding: 5rem 2rem; background: var(--dark); text-align: center; }
.social-cta h2 { margin-bottom: 0.75rem; }
.social-cta p { max-width: 480px; margin: 0 auto 2rem; }
.platform-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; margin-top: 2rem; }
.platform-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.4rem; border-radius: 3px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; transition: all 0.25s; border: 1px solid var(--border); color: var(--cream); }
.platform-btn:hover { border-color: var(--accent); color: var(--accent); }
.platform-btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* 12. Social feed grid */
.social-feed { padding: 3rem 2rem 5rem; background: var(--dark); }
.social-feed .container { max-width: 1200px; margin: 0 auto; }
.feed-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 4px; margin-top: 2rem; }
.feed-item { aspect-ratio: 1; overflow: hidden; }
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: opacity 0.3s; }
.feed-item:hover img { opacity: 0.75; }

/* 13. Footer */
.footer { background: #141D0B; padding: 4rem 2rem 0; }
.footer-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-brand img { width: 60px; height: 60px; object-fit: cover; border-radius: 50%; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 36px; height: 36px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--cream-dim); transition: all 0.2s; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h5 { font-family: var(--ff-display); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.25rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.9rem; color: var(--cream-dim); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-visit p { font-size: 0.9rem; margin-bottom: 0.6rem; display: flex; gap: 0.5rem; align-items: flex-start; }
.footer-visit p svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); margin-top: 3px; }
.footer-bottom { max-width: 1200px; margin: 0 auto; padding: 1.5rem 0; 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: 1rem; }
.badge { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.3rem 0.75rem; border: 1px solid var(--border); border-radius: 20px; color: var(--cream-dim); }

/* 14. Page hero (inner pages) */
.page-hero { position: relative; height: 55vh; min-height: 380px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.page-hero::before { content: ''; position: absolute; inset: 0; background-image: var(--page-hero-bg, none); background-size: cover; background-position: center; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(30,42,18,0.6), rgba(30,42,18,0.82)); }
.page-hero-content { position: relative; z-index: 1; text-align: center; padding: 0 1.5rem; }
.page-hero-content .label { margin-bottom: 1rem; }
.page-hero-content h1 { color: var(--cream); }
.page-hero-content p { color: rgba(245,240,232,0.85); margin-top: 0.75rem; font-size: 1.1rem; }

/* 15. About page sections */
.about-origin { padding: 5rem 2rem; }
.about-origin .container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-origin img { width: 100%; height: 500px; object-fit: cover; border-radius: 4px; }
.about-text .label { margin-bottom: 1rem; }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1rem; }
.philosophy-section { padding: 5rem 2rem; background: var(--bg-alt); }
.philosophy-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; margin-top: 3rem; }
.philosophy-card { background: var(--accent-dim); border: 1px solid var(--border); border-radius: 6px; padding: 2rem; }
.philosophy-card svg { width: 40px; height: 40px; color: var(--accent); margin-bottom: 1rem; }
.philosophy-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.philosophy-card p { font-size: 0.92rem; }
.values-section { padding: 5rem 2rem; }
.values-list { max-width: 900px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 0; }
.value-item { display: grid; grid-template-columns: 80px 1fr; gap: 1.5rem; align-items: start; padding: 2rem 0; border-bottom: 1px solid var(--border); }
.value-number { font-family: var(--ff-display); font-size: 2rem; color: var(--accent); opacity: 0.5; }
.value-content h4 { font-size: 1rem; letter-spacing: 0.1em; margin-bottom: 0.4rem; }
.value-content p { font-size: 0.9rem; }
.timeline-section { padding: 5rem 2rem; background: var(--bg-alt); }
.timeline { max-width: 800px; margin: 3rem auto 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 120px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.timeline-item { display: grid; grid-template-columns: 120px 1fr; gap: 2rem; margin-bottom: 3rem; }
.timeline-date { text-align: right; padding-right: 2rem; font-family: var(--ff-display); font-size: 0.9rem; color: var(--accent); padding-top: 4px; }
.timeline-content { padding-left: 2rem; border-left: none; position: relative; }
.timeline-content::before { content: ''; position: absolute; left: -2.4rem; top: 8px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); border: 2px solid var(--dark); }
.timeline-content h4 { margin-bottom: 0.5rem; }
.timeline-content p { font-size: 0.9rem; }
.about-cta { padding: 5rem 2rem; }
.about-cta .container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-cta img { width: 100%; height: 400px; object-fit: cover; border-radius: 4px; }
.about-cta-text h2 { margin-bottom: 1.25rem; }
.about-cta-text p { margin-bottom: 1rem; }
.about-cta-btns { display: flex; gap: 1rem; margin-top: 2rem; flex-wrap: wrap; }
.michelin-badge { display: inline-flex; align-items: center; gap: 0.75rem; background: var(--accent-dim); border: 1px solid var(--border); border-radius: 4px; padding: 0.75rem 1.25rem; margin-bottom: 1.5rem; }
.michelin-badge svg { width: 28px; height: 28px; color: var(--accent); }
.michelin-badge span { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 600; }

/* 16. Offerings page */
.offerings-page { padding: 3rem 2rem; }
.offerings-page .container { max-width: 1200px; margin: 0 auto; }
.disclaimer-bar { background: var(--accent-dim); border: 1px solid var(--border); border-radius: 4px; padding: 1rem 1.5rem; display: flex; align-items: center; justify-content: space-between; margin-bottom: 3rem; gap: 1rem; flex-wrap: wrap; }
.disclaimer-bar p { font-size: 0.9rem; color: var(--cream-dim); }
.category-tiles { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; margin-bottom: 5rem; }
.category-tile { position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; transition: transform 0.3s; }
.category-tile:hover { transform: translateY(-4px); }
.category-tile img { width: 100%; height: 280px; object-fit: cover; transition: transform 0.5s; }
.category-tile:hover img { transform: scale(1.05); }
.category-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(30,42,18,0.9) 0%, rgba(30,42,18,0.3) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.category-tile-overlay h3 { color: var(--cream); margin-bottom: 0.3rem; }
.category-tile-overlay .count { font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); font-weight: 600; }
.menu-section { margin-bottom: 4rem; padding-top: 1.5rem; border-top: 1px solid var(--border); }
.menu-section-header { margin-bottom: 2rem; }
.menu-section-header h2 { margin-bottom: 0.5rem; }
.menu-section-header p { font-size: 0.95rem; }
.menu-items { display: flex; flex-direction: column; gap: 0; }
.menu-item { padding: 1.25rem 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: start; }
.menu-item-name { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.4rem; }
.menu-item-name h4 { font-size: 1.05rem; color: var(--cream); }
.menu-item p { font-size: 0.9rem; }
.badge-sig, .badge-new, .badge-best { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.2rem 0.55rem; border-radius: 2px; font-weight: 700; }
.badge-sig { background: var(--accent); color: var(--dark); }
.badge-new { background: var(--highlight); color: var(--dark); }
.badge-best { background: rgba(224,192,122,0.2); color: var(--highlight); border: 1px solid rgba(224,192,122,0.35); }
.offerings-cta { text-align: center; padding: 4rem 0; border-top: 1px solid var(--border); margin-top: 2rem; }
.offerings-cta h3 { margin-bottom: 0.75rem; }
.offerings-cta p { margin-bottom: 2rem; }

/* 17. Gallery page */
.gallery-page { padding: 3rem 2rem 5rem; }
.gallery-page .container { max-width: 1200px; margin: 0 auto; }
.gallery-filter { display: flex; gap: 0.75rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.filter-btn { padding: 0.55rem 1.25rem; border: 1px solid var(--border); border-radius: 3px; font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); background: transparent; cursor: pointer; transition: all 0.2s; font-weight: 600; }
.filter-btn.active, .filter-btn:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.gallery-group { margin-bottom: 3rem; }
.gallery-group-header { margin-bottom: 1rem; }
.gallery-group-header h3 { font-size: 1.1rem; }
.gallery-group-header p { font-size: 0.85rem; }
.masonry { columns: 4; column-gap: 8px; }
.masonry-item { break-inside: avoid; margin-bottom: 8px; overflow: hidden; cursor: pointer; border-radius: 3px; }
.masonry-item img { width: 100%; display: block; transition: transform 0.4s ease, opacity 0.3s; }
.masonry-item:hover img { transform: scale(1.04); opacity: 0.85; }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(10,15,6,0.96); z-index: 200; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img-wrap { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-img-wrap img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: absolute; top: -40px; right: 0; background: none; border: none; color: var(--cream); font-size: 1.5rem; cursor: pointer; font-family: var(--ff-body); }
.lightbox-prev, .lightbox-next { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(30,42,18,0.7); border: 1px solid var(--border); color: var(--cream); padding: 0.75rem; cursor: pointer; border-radius: 3px; transition: all 0.2s; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.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: absolute; bottom: -35px; left: 50%; transform: translateX(-50%); font-size: 0.8rem; color: var(--cream-dim); white-space: nowrap; }
.gallery-cta { text-align: center; padding: 3rem 0; border-top: 1px solid var(--border); margin-top: 2rem; }
.gallery-cta h3 { margin-bottom: 0.75rem; }
.gallery-cta .platform-btns { margin-top: 1.5rem; }

/* 18. Contact page */
.contact-page { padding: 4rem 2rem 5rem; }
.contact-page .container { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; }
.contact-blocks { display: flex; flex-direction: column; gap: 2rem; }
.contact-block { padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.contact-block:last-child { border-bottom: none; }
.contact-block-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem; }
.contact-block-header svg { width: 22px; height: 22px; color: var(--accent); flex-shrink: 0; }
.contact-block-header h4 { color: var(--cream); letter-spacing: 0.08em; }
.contact-block p, .contact-block a { font-size: 0.95rem; color: var(--cream-dim); display: block; margin-bottom: 0.4rem; }
.contact-block a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table td { padding: 0.35rem 0; font-size: 0.9rem; color: var(--cream-dim); }
.hours-table td:last-child { text-align: right; }
.hours-highlight td { color: var(--accent); }
.inquiry-form { background: var(--accent-dim); border: 1px solid var(--border); border-radius: 6px; padding: 2.5rem; }
.inquiry-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.5rem; font-weight: 600; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: rgba(30,42,18,0.5); border: 1px solid var(--border); border-radius: 3px; padding: 0.7rem 1rem; color: var(--cream); font-family: var(--ff-body); font-size: 0.95rem; transition: border-color 0.2s; }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--cream-dim); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group select option { background: var(--dark); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group.invalid input, .form-group.invalid select, .form-group.invalid textarea { border-color: #e05555; }
#formSuccess { display: none; text-align: center; padding: 2rem; }
#formSuccess svg { width: 56px; height: 56px; color: var(--accent); margin: 0 auto 1.25rem; }
#formSuccess h3 { margin-bottom: 0.75rem; }
.map-placeholder { background: var(--accent-dim); border: 1px solid var(--border); border-radius: 6px; padding: 2.5rem; text-align: center; margin-top: 2rem; }
.map-placeholder svg { width: 48px; height: 48px; color: var(--accent); margin: 0 auto 1rem; }
.map-placeholder h4 { margin-bottom: 0.5rem; }
.map-placeholder p { font-size: 0.9rem; margin-bottom: 1.25rem; }

/* 19. FAQ accordion */
.faq-section { padding: 5rem 2rem; background: var(--bg-alt); }
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; text-align: left; padding: 1.25rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; cursor: pointer; color: var(--cream); font-family: var(--ff-body); font-size: 1rem; font-weight: 600; }
.faq-question:hover { color: var(--accent); }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; border: 1px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 1.25rem; font-size: 0.95rem; color: var(--cream-dim); line-height: 1.7; }

/* 20. Scroll-to-top */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; background: var(--accent); border: none; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; transform: translateY(10px); transition: all 0.3s; z-index: 50; }
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--highlight); }
.scroll-top svg { width: 20px; height: 20px; color: var(--dark); }

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

/* 22. Responsive */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: repeat(2,1fr); }
  .brand-teaser .container { gap: 2.5rem; }
  .category-tiles { grid-template-columns: repeat(2,1fr); }
  .masonry { columns: 3; }
  .contact-page .container { gap: 2.5rem; }
  .about-origin .container { gap: 2.5rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .offerings-grid { grid-template-columns: repeat(2,1fr); }
  .brand-teaser .container { grid-template-columns: 1fr; }
  .brand-teaser img { height: 320px; }
  .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; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .about-origin .container { grid-template-columns: 1fr; }
  .about-origin img { height: 300px; }
  .timeline::before { left: 80px; }
  .timeline-item { grid-template-columns: 80px 1fr; }
  .about-cta .container { grid-template-columns: 1fr; }
  .about-cta img { height: 280px; }
  .category-tiles { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .contact-page .container { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .lightbox-prev { left: 0.5rem; }
  .lightbox-next { right: 0.5rem; }
}
@media (max-width: 480px) {
  .hero-btns { flex-direction: column; align-items: center; }
  .offerings-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .feed-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .timeline { padding-left: 0; }
  .timeline::before { display: none; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.5rem; }
  .timeline-date { text-align: left; padding-right: 0; }
  .masonry { columns: 2; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
