/*
  Design rationale: Filipino specialty coffee palette — rich teal on deep charcoal directly matches the brand's iconic teal circle logo; clean, minimal, modern coffeehouse identity.
  Heading: Yanone Kaffeesatz — inspired by traditional café menu typography; geometric, clean, slightly retro, perfect for specialty coffee branding.
  Body: Merriweather — robust screen-optimised serif with strong readability; provides editorial warmth against the teal palette.
*/

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

:root {
  --dark:       #0C1E28;
  --bg-alt:     #122433;
  --accent:     #1C7090;
  --highlight:  #E8A040;
  --cream:      #F0EDE8;
  --cream-dim:  rgba(240, 237, 232, 0.65);
  --accent-dim: rgba(28, 112, 144, 0.14);
  --border:     rgba(28, 112, 144, 0.22);
  --ff-display: 'Yanone Kaffeesatz', sans-serif;
  --ff-body:    'Merriweather', 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; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 2. Typography */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.15; letter-spacing: 0.5px; }
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; }
p { color: var(--cream-dim); font-size: 0.97rem; }
.label { font-family: var(--ff-display); font-size: 0.78rem; letter-spacing: 2.5px; text-transform: uppercase; color: var(--accent); }
.section-tag { font-family: var(--ff-display); font-size: 0.8rem; letter-spacing: 3px; text-transform: uppercase; color: var(--highlight); margin-bottom: 0.5rem; display: block; }

/* 3. Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; padding: 0.75rem 1.8rem; border-radius: 4px; font-family: var(--ff-display); font-size: 1.05rem; font-weight: 700; letter-spacing: 1px; cursor: pointer; transition: all 0.25s ease; border: 2px solid transparent; }
.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn-ghost { background: transparent; border-color: var(--cream); color: var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--dark); }
.btn-outline { background: transparent; border-color: var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--dark); }
.btn-highlight { background: var(--highlight); color: var(--dark); }
.btn-highlight:hover { background: transparent; border-color: var(--highlight); color: var(--highlight); }

/* 4. Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.2rem 2rem; display: flex; align-items: center; justify-content: space-between; transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease; }
.navbar.scrolled { background: rgba(12, 30, 40, 0.97); padding: 0.8rem 2rem; box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav-logo { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); }
.nav-logo-name { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700; color: var(--cream); letter-spacing: 0.5px; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-family: var(--ff-display); font-size: 1.05rem; letter-spacing: 0.5px; color: var(--cream); opacity: 0.85; transition: opacity 0.2s, color 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; color: var(--accent); }
.nav-cta { margin-left: 1.5rem; }
.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); border-radius: 2px; transition: all 0.3s ease; }
.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-overlay { display: none; position: fixed; inset: 0; background: var(--dark); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-overlay.open { display: flex; }
.mobile-overlay a { font-family: var(--ff-display); font-size: 2rem; font-weight: 700; color: var(--cream); letter-spacing: 1px; }
.mobile-overlay a:hover { color: var(--accent); }
.mobile-overlay .btn { font-size: 1.1rem; }

/* 5. Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; background-size: cover; background-position: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(17,24,32,0.55) 0%, rgba(17,24,32,0.4) 50%, rgba(17,24,32,0.75) 100%); }
.hero-content { position: relative; z-index: 1; max-width: 780px; padding: 2rem; }
.hero-subtitle { font-family: var(--ff-display); font-size: 1.1rem; letter-spacing: 4px; text-transform: uppercase; color: var(--accent); margin-bottom: 1rem; }
.hero h1 { color: var(--cream); margin-bottom: 1.2rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-tagline { font-size: 1.15rem; color: rgba(240,237,232,0.85); margin-bottom: 2.5rem; font-style: italic; }
.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; opacity: 0.6; 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-strip { background: var(--accent); padding: 3rem 2rem; }
.features-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.feature-item { display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0.6rem; }
.feature-item svg { width: 32px; height: 32px; color: var(--dark); }
.feature-item h3 { font-family: var(--ff-display); font-size: 1.15rem; color: var(--dark); font-weight: 700; }
.feature-item p { font-size: 0.82rem; color: rgba(17,24,32,0.75); }

/* 7. Offerings Grid */
.offerings-section { padding: 5rem 2rem; }
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { color: var(--cream); margin-bottom: 0.75rem; }
.offerings-grid { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5px; }
.offering-tile { position: relative; aspect-ratio: 1; overflow: hidden; 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(17,24,32,0.9) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem; opacity: 0; transition: opacity 0.3s ease; }
.offering-tile:hover .offering-tile-overlay { opacity: 1; }
.offering-tile-overlay h4 { font-family: var(--ff-display); font-size: 1.1rem; color: var(--cream); }
.offering-tile-overlay .label { color: var(--accent); font-size: 0.72rem; }

/* 8. Brand Teaser Split */
.brand-teaser { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.brand-teaser-img { position: relative; overflow: hidden; border-radius: 4px; aspect-ratio: 4/5; }
.brand-teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.brand-teaser-text { }
.brand-teaser-text h2 { color: var(--cream); margin-bottom: 1.5rem; }
.brand-teaser-text p { margin-bottom: 1rem; }
.brand-teaser-text .btn { margin-top: 1.5rem; }

/* 9. Stats Row */
.stats-row { background: var(--bg-alt); padding: 4rem 2rem; }
.stats-inner { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; gap: 2rem; }
.stat-item { }
.stat-number { font-family: var(--ff-display); font-size: 3rem; font-weight: 700; color: var(--accent); line-height: 1; }
.stat-label { font-family: var(--ff-display); font-size: 0.85rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--cream-dim); margin-top: 0.4rem; }

/* 10. Review Cards */
.reviews-section { padding: 5rem 2rem; }
.reviews-grid { max-width: 1100px; margin: 2rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.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; }
.review-stars svg { width: 16px; height: 16px; fill: var(--highlight); }
.review-card p { font-style: italic; font-size: 0.95rem; color: var(--cream-dim); margin-bottom: 1.2rem; }
.reviewer { font-family: var(--ff-display); font-size: 0.95rem; color: var(--accent); font-weight: 700; }

/* 11. Social CTA */
.social-cta { background: var(--bg-alt); padding: 4rem 2rem; text-align: center; }
.social-cta h2 { color: var(--cream); margin-bottom: 1rem; }
.social-cta p { max-width: 500px; margin: 0 auto 2rem; }
.platform-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.platform-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.5rem; border: 2px solid var(--border); border-radius: 4px; font-family: var(--ff-display); font-size: 1rem; font-weight: 700; color: var(--cream); transition: all 0.25s ease; }
.platform-btn:hover { border-color: var(--accent); color: var(--accent); }
.platform-btn svg { width: 20px; height: 20px; }

/* 12. Social Feed Grid */
.social-feed { padding: 5rem 2rem; }
.feed-grid { max-width: 1100px; margin: 2rem auto 0; display: grid; grid-template-columns: repeat(6, 1fr); gap: 4px; }
.feed-item { aspect-ratio: 1; overflow: hidden; }
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.feed-item:hover img { transform: scale(1.08); }

/* 13. Footer */
footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 4rem 2rem 1.5rem; }
.footer-inner { max-width: 1200px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-brand img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; border: 2px solid var(--accent); margin-bottom: 1rem; }
.footer-brand-name { font-family: var(--ff-display); font-size: 1.3rem; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; }
.footer-brand p { font-size: 0.88rem; margin-bottom: 1.2rem; }
.footer-socials { display: flex; gap: 0.75rem; }
.footer-socials a { color: var(--cream-dim); transition: color 0.2s; }
.footer-socials a:hover { color: var(--accent); }
.footer-socials svg { width: 20px; height: 20px; }
.footer-col h4 { font-family: var(--ff-display); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.9rem; color: var(--cream-dim); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--cream); }
.footer-contact-item { display: flex; gap: 0.6rem; margin-bottom: 0.75rem; align-items: flex-start; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); margin-top: 3px; }
.footer-contact-item span { font-size: 0.88rem; color: var(--cream-dim); }
.footer-bottom { max-width: 1200px; margin: 1.5rem auto 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.82rem; color: rgba(240,237,232,0.4); }
.footer-badges { display: flex; gap: 0.75rem; }
.footer-badge { font-family: var(--ff-display); font-size: 0.75rem; letter-spacing: 1px; padding: 0.3rem 0.8rem; border-radius: 20px; border: 1px solid var(--border); color: var(--cream-dim); }

/* 14. Page Hero (inner pages) */
.page-hero { position: relative; min-height: 55vh; display: flex; align-items: center; justify-content: center; text-align: center; background-image: var(--page-hero-bg); background-size: cover; background-position: center; margin-top: 0; padding-top: 80px; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(17,24,32,0.6) 0%, rgba(17,24,32,0.5) 100%); }
.page-hero-content { position: relative; z-index: 1; max-width: 700px; padding: 4rem 2rem 3rem; }
.page-hero-content h1 { color: var(--cream); margin-bottom: 1rem; }
.page-hero-content p { font-size: 1.05rem; color: rgba(240,237,232,0.85); }

/* 15. About Page */
.about-origin { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; align-items: center; }
.about-origin-img { overflow: hidden; border-radius: 4px; }
.about-origin-img img { width: 100%; height: 480px; object-fit: cover; }
.about-origin-text h2 { color: var(--cream); margin-bottom: 1.5rem; }
.about-origin-text p { margin-bottom: 1rem; }
.philosophy-section { background: var(--bg-alt); padding: 5rem 2rem; }
.philosophy-grid { max-width: 1100px; margin: 2.5rem auto 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.philosophy-card { background: var(--accent-dim); border: 1px solid var(--border); border-radius: 6px; padding: 2rem; }
.philosophy-card svg { width: 36px; height: 36px; color: var(--accent); margin-bottom: 1rem; }
.philosophy-card h3 { font-size: 1.3rem; color: var(--cream); margin-bottom: 0.75rem; }
.values-section { padding: 5rem 2rem; }
.values-inner { max-width: 900px; margin: 2.5rem auto 0; }
.value-item { display: grid; grid-template-columns: 60px 1fr; gap: 1.5rem; padding: 1.5rem 0; border-bottom: 1px solid var(--border); align-items: start; }
.value-number { font-family: var(--ff-display); font-size: 2.5rem; font-weight: 700; color: var(--accent-dim); color: rgba(107,157,184,0.3); line-height: 1; }
.value-item h4 { color: var(--cream); font-family: var(--ff-display); font-size: 1.2rem; margin-bottom: 0.35rem; }
.timeline-section { background: var(--bg-alt); padding: 5rem 2rem; }
.timeline { max-width: 900px; margin: 2.5rem auto 0; }
.timeline-item { display: grid; grid-template-columns: 140px 1px 1fr; gap: 0 2rem; margin-bottom: 2.5rem; }
.timeline-date { font-family: var(--ff-display); font-size: 0.9rem; letter-spacing: 1px; color: var(--highlight); text-align: right; padding-top: 4px; }
.timeline-line { background: var(--border); position: relative; }
.timeline-line::before { content: ''; position: absolute; top: 6px; left: 50%; transform: translateX(-50%); width: 10px; height: 10px; border-radius: 50%; background: var(--accent); }
.timeline-content { padding-bottom: 1rem; }
.timeline-content h4 { color: var(--cream); font-family: var(--ff-display); font-size: 1.15rem; margin-bottom: 0.4rem; }
.about-cta { max-width: 1200px; margin: 0 auto; padding: 5rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-cta-img { overflow: hidden; border-radius: 4px; }
.about-cta-img img { width: 100%; height: 380px; object-fit: cover; }
.about-cta-text h2 { color: var(--cream); margin-bottom: 1rem; }
.about-cta-text p { margin-bottom: 1rem; }
.about-cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* 16. Menu/Offerings Page */
.disclaimer-bar { background: var(--accent-dim); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 1rem 2rem; text-align: center; }
.disclaimer-bar p { font-size: 0.9rem; color: var(--cream-dim); }
.disclaimer-bar a { color: var(--accent); }
.cat-tiles-section { padding: 4rem 2rem 2rem; }
.cat-tiles-grid { max-width: 1200px; margin: 2rem auto 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cat-tile { position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; aspect-ratio: 3/4; }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(17,24,32,0.85) 0%, rgba(17,24,32,0.1) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.cat-tile-overlay h3 { font-family: var(--ff-display); font-size: 1.35rem; color: var(--cream); }
.cat-tile-overlay span { font-family: var(--ff-display); font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-top: 0.25rem; display: block; }
.menu-categories { padding: 2rem; }
.menu-cat-section { max-width: 900px; margin: 0 auto 4rem; }
.menu-cat-header { margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--border); }
.menu-cat-header h2 { color: var(--accent); }
.menu-cat-header p { font-size: 0.92rem; margin-top: 0.4rem; }
.menu-item { padding: 1.2rem 0; border-bottom: 1px solid var(--border); }
.menu-item h4 { color: var(--cream); font-family: var(--ff-display); font-size: 1.15rem; margin-bottom: 0.3rem; display: flex; align-items: center; gap: 0.75rem; }
.menu-item p { font-size: 0.9rem; }
.badge { font-family: var(--ff-display); font-size: 0.65rem; letter-spacing: 1.5px; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 20px; background: var(--highlight); color: var(--dark); white-space: nowrap; }
.badge-new { background: var(--accent); color: var(--dark); }
.badge-sig { background: var(--highlight); color: var(--dark); }
.menu-cta-bar { background: var(--bg-alt); padding: 4rem 2rem; text-align: center; }

/* 17. Gallery Page */
.filter-bar { padding: 2rem; max-width: 900px; margin: 0 auto; display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; }
.filter-btn { font-family: var(--ff-display); font-size: 1rem; letter-spacing: 0.5px; padding: 0.5rem 1.4rem; border: 2px solid var(--border); border-radius: 30px; background: transparent; color: var(--cream-dim); cursor: pointer; transition: all 0.25s; }
.filter-btn.active, .filter-btn:hover { border-color: var(--accent); color: var(--accent); }
.gallery-section { padding: 0 2rem 5rem; }
.gallery-group { max-width: 1200px; margin: 0 auto 4rem; }
.gallery-group-header { margin-bottom: 1.5rem; }
.gallery-group-header h3 { color: var(--cream); }
.gallery-group-header .label { margin-top: 0.25rem; display: block; }
.masonry { columns: 4; column-gap: 6px; }
.masonry-item { break-inside: avoid; margin-bottom: 6px; cursor: pointer; overflow: hidden; display: block; }
.masonry-item img { width: 100%; height: auto; display: block; transition: transform 0.4s ease; }
.masonry-item:hover img { transform: scale(1.04); }
.lightbox { display: none; position: fixed; inset: 0; z-index: 2000; background: rgba(0,0,0,0.95); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 90vw; max-height: 90vh; object-fit: contain; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: var(--cream); cursor: pointer; background: none; border: none; line-height: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(107,157,184,0.2); border: none; color: var(--cream); font-size: 2rem; padding: 1rem; cursor: pointer; border-radius: 4px; transition: background 0.2s; }
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(107,157,184,0.4); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }
.lightbox-counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-family: var(--ff-display); font-size: 0.9rem; color: var(--cream-dim); }
.gallery-cta { background: var(--bg-alt); padding: 4rem 2rem; text-align: center; }

/* 18. Contact Page */
.contact-grid { max-width: 1100px; margin: 0 auto; padding: 5rem 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-block { margin-bottom: 2rem; }
.contact-block h4 { font-family: var(--ff-display); font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.75rem; }
.contact-block-inner { background: var(--accent-dim); border: 1px solid var(--border); border-radius: 6px; padding: 1.2rem 1.5rem; }
.contact-block-inner p, .contact-block-inner a { font-size: 0.9rem; color: var(--cream-dim); }
.contact-block-inner a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.4rem 0; font-size: 0.88rem; color: var(--cream-dim); }
.hours-table .peak { color: var(--highlight); font-weight: 600; }
.hours-table tr td:last-child { text-align: right; }
.form-group { margin-bottom: 1.2rem; }
.form-group label { display: block; font-family: var(--ff-display); font-size: 0.82rem; letter-spacing: 1.5px; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--accent-dim); border: 1px solid var(--border); border-radius: 4px; color: var(--cream); font-family: var(--ff-body); font-size: 0.9rem; padding: 0.75rem 1rem; outline: none; transition: border-color 0.25s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--accent); }
.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid { border-color: #e05050; }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
#formSuccess { display: none; text-align: center; padding: 3rem; }
#formSuccess svg { width: 56px; height: 56px; color: var(--accent); margin: 0 auto 1rem; }
#formSuccess h3 { color: var(--cream); margin-bottom: 0.5rem; }
.map-placeholder { background: var(--accent-dim); border: 1px solid var(--border); border-radius: 6px; padding: 3rem 2rem; text-align: center; margin-top: 2rem; }
.map-placeholder svg { width: 40px; height: 40px; color: var(--accent); margin: 0 auto 1rem; }
.map-placeholder h4 { color: var(--cream); margin-bottom: 0.5rem; }
.map-placeholder p { font-size: 0.88rem; margin-bottom: 1rem; }

/* 19. FAQ Accordion */
.faq-section { background: var(--bg-alt); padding: 5rem 2rem; }
.faq-inner { max-width: 800px; margin: 2.5rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { width: 100%; background: none; border: none; color: var(--cream); font-family: var(--ff-display); font-size: 1.1rem; font-weight: 700; text-align: left; padding: 1.2rem 0; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 1rem; }
.faq-question svg { flex-shrink: 0; width: 18px; height: 18px; color: var(--accent); transition: transform 0.3s ease; }
.faq-question.open svg { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 1.2rem; font-size: 0.93rem; color: var(--cream-dim); }

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

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

/* 22. Responsive */
@media (max-width: 1024px) {
  .features-inner { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .cat-tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-origin, .about-cta { grid-template-columns: 1fr; }
  .about-origin-img img { height: 320px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .timeline-item { grid-template-columns: 100px 1px 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .features-inner { grid-template-columns: 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .cat-tiles-grid { grid-template-columns: 1fr; }
  .stats-inner { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .masonry { columns: 1; }
  .timeline-item { grid-template-columns: 1fr; }
  .timeline-date { text-align: left; }
  .timeline-line { display: none; }
}
