/*
  Design rationale: Deep navy-indigo evoking the intimate late-night atmosphere of Scout Rallos, with warm copper accents reflecting 2b's handcrafted cocktail ethos and the "Familiar / Not Familiar" duality.
  Heading: Fraunces — a playful optical serif that shifts personality like 2b's cocktails shift expectation.
  Body: Plus Jakarta Sans — clean and grounded, keeps the reading experience accessible without stealing the show.
*/

/* 1. Reset & Custom Properties */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --dark:       #080b12;
  --bg-alt:     #10162b;
  --accent:     #c4864f;
  --highlight:  #9b6dbc;
  --cream:      #f2ece6;
  --cream-dim:  rgba(242,236,230,0.65);
  --accent-dim: rgba(196,134,79,0.14);
  --border:     rgba(196,134,79,0.22);
  --ff-display: 'Fraunces', serif;
  --ff-body:    'Plus Jakarta Sans', sans-serif;
}
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--cream); font-family: var(--ff-body); font-size: 16px; line-height: 1.65; overflow-x: hidden; }
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* 2. Typography */
h1,h2,h3,h4 { font-family: var(--ff-display); font-weight: 400; line-height: 1.15; }
h1 { font-size: clamp(2.8rem, 6vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.15rem; font-family: var(--ff-body); font-weight: 600; }
p { color: var(--cream-dim); }
.label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent); }
.section-title { text-align: center; margin-bottom: 0.5rem; }
.section-sub { text-align: center; color: var(--cream-dim); margin-bottom: 3rem; max-width: 540px; margin-left: auto; margin-right: auto; }
section { padding: 6rem 1.5rem; }
.container { max-width: 1180px; margin: 0 auto; }

/* 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.88rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; cursor: pointer; border: none; transition: background 0.25s, color 0.25s, transform 0.15s; }
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--accent); color: var(--dark); }
.btn-primary:hover { background: #d9974f; }
.btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--dark); }
.btn-outline { background: transparent; color: var(--accent); border: 1.5px 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: 1000; padding: 1.25rem 2rem; display: flex; align-items: center; justify-content: space-between; transition: background 0.3s, padding 0.3s, box-shadow 0.3s; }
.navbar.scrolled { background: var(--dark); padding: 0.8rem 2rem; box-shadow: 0 2px 20px rgba(0,0,0,0.4); }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 1.5px solid var(--border); }
.nav-name { font-family: var(--ff-display); font-size: 1.2rem; color: var(--cream); font-weight: 300; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a { font-size: 0.82rem; font-weight: 500; letter-spacing: 0.08em; text-transform: uppercase; 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; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); border-radius: 2px; transition: transform 0.3s, opacity 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-nav { display: none; position: fixed; inset: 0; background: var(--dark); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2.5rem; }
.mobile-nav.open { display: flex; }
.mobile-nav a { font-family: var(--ff-display); font-size: 2rem; color: var(--cream); }
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .btn { margin-top: 1rem; }

/* 5. Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center; filter: brightness(0.45); }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,11,18,0.3) 0%, rgba(8,11,18,0.7) 100%); }
.hero-content { position: relative; z-index: 1; padding: 2rem; max-width: 820px; }
.hero-content .label { margin-bottom: 1.2rem; }
.hero-content h1 { margin-bottom: 1rem; font-style: italic; }
.hero-content p { font-size: 1.1rem; margin-bottom: 2rem; color: rgba(242,236,230,0.8); max-width: 500px; margin-left: auto; margin-right: auto; }
.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.5rem; opacity: 0.5; animation: bounce 2s infinite; }
.scroll-indicator span { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; }
.scroll-line { width: 1px; height: 40px; background: var(--cream); }
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(6px); } }

/* 6. Features strip */
.features-strip { background: var(--accent); padding: 3.5rem 2rem; }
.features-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; }
.feature-item { text-align: center; }
.feature-icon { width: 44px; height: 44px; margin: 0 auto 1rem; color: var(--dark); }
.feature-item h3 { font-size: 1rem; font-family: var(--ff-body); font-weight: 700; color: var(--dark); margin-bottom: 0.3rem; }
.feature-item p { font-size: 0.85rem; color: rgba(8,11,18,0.7); }

/* 7. Offerings grid (homepage 3×3) */
.offerings-grid-section { background: var(--bg-alt); }
.offerings-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px; }
.grid-tile { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; }
.grid-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.grid-tile:hover img { transform: scale(1.05); }
.grid-tile-info { position: absolute; inset: 0; background: linear-gradient(0deg, rgba(8,11,18,0.85) 0%, transparent 60%); opacity: 0; transition: opacity 0.3s; display: flex; flex-direction: column; justify-content: flex-end; padding: 1.25rem; }
.grid-tile:hover .grid-tile-info { opacity: 1; }
.grid-tile-info .label { color: var(--accent); font-size: 0.65rem; }
.grid-tile-info h4 { color: var(--cream); font-size: 1rem; margin-top: 0.2rem; }

/* 8. Brand teaser */
.brand-teaser { background: var(--dark); }
.teaser-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; max-width: 1180px; margin: 0 auto; }
.teaser-image { position: relative; min-height: 520px; }
.teaser-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.teaser-content { padding: 4rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.teaser-content .label { margin-bottom: 1.2rem; }
.teaser-content h2 { margin-bottom: 1.5rem; }
.teaser-content p { margin-bottom: 1rem; }
.teaser-content .btn { margin-top: 1.5rem; align-self: flex-start; }

/* 9. Stats row */
.stats-row { background: var(--bg-alt); padding: 4rem 2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; max-width: 900px; margin: 0 auto; text-align: center; }
.stat-num { font-family: var(--ff-display); font-size: clamp(2.5rem, 5vw, 4rem); color: var(--accent); font-style: italic; line-height: 1; margin-bottom: 0.4rem; }
.stat-label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em; color: var(--cream-dim); }

/* 10. Review cards */
.reviews-section { background: var(--dark); }
.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: 6px; padding: 2rem; }
.stars { display: flex; gap: 3px; margin-bottom: 1rem; color: var(--accent); }
.stars svg { width: 16px; height: 16px; }
.review-text { font-style: italic; margin-bottom: 1.2rem; line-height: 1.7; }
.reviewer-name { font-size: 0.82rem; font-weight: 600; color: var(--accent); }
.reviewer-loc { font-size: 0.78rem; color: var(--cream-dim); }

/* 11. Social CTA */
.social-cta { background: var(--bg-alt); text-align: center; padding: 5rem 2rem; }
.social-cta h2 { margin-bottom: 0.75rem; }
.social-cta p { margin-bottom: 2rem; }
.social-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.social-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.7rem 1.5rem; border-radius: 3px; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.05em; border: 1.5px solid var(--border); color: var(--cream); transition: background 0.2s, border-color 0.2s; }
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-btn:hover { background: var(--accent-dim); border-color: var(--accent); }

/* 12. Social feed grid */
.social-feed { background: var(--dark); }
.feed-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 4px; }
.feed-item { aspect-ratio: 1; overflow: hidden; position: relative; }
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s, filter 0.4s; }
.feed-item:hover img { transform: scale(1.05); filter: brightness(0.75); }

/* 13. Footer */
.footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 4rem 2rem 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; max-width: 1180px; margin: 0 auto; }
.footer-brand .nav-brand { margin-bottom: 1rem; }
.footer-tagline { font-size: 0.88rem; color: var(--cream-dim); margin-bottom: 1.2rem; line-height: 1.5; }
.footer-social { display: flex; gap: 0.75rem; margin-top: 0.5rem; }
.footer-social a { color: var(--cream-dim); transition: color 0.2s; }
.footer-social a:hover { color: var(--accent); }
.footer-social svg { width: 20px; height: 20px; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--accent); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.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(--accent); }
.footer-contact-item { display: flex; gap: 0.6rem; margin-bottom: 0.9rem; }
.footer-contact-item svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--accent); 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); margin-top: 3rem; padding: 1.25rem 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; max-width: 1180px; margin-left: auto; margin-right: auto; }
.footer-copy { font-size: 0.78rem; color: var(--cream-dim); }
.footer-badges { display: flex; gap: 0.75rem; }
.badge { display: inline-flex; align-items: center; gap: 0.35rem; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.7rem; border: 1px solid var(--border); border-radius: 3px; color: var(--cream-dim); }

/* 14. Page hero (inner pages) */
.page-hero { min-height: 55vh; display: flex; align-items: center; justify-content: center; text-align: center; position: relative; overflow: hidden; }
.page-hero-bg { position: absolute; inset: 0; background-image: var(--page-hero-bg); background-size: cover; background-position: center; filter: brightness(0.38); }
.page-hero-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,11,18,0.3) 0%, rgba(8,11,18,0.75) 100%); }
.page-hero-content { position: relative; z-index: 1; padding: 2rem; }
.page-hero-content .label { margin-bottom: 1rem; }
.page-hero-content h1 { margin-bottom: 0.75rem; }
.page-hero-content p { font-size: 1.05rem; color: rgba(242,236,230,0.75); }

/* 15. About page */
.about-origin { background: var(--dark); }
.split-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }
.split-image { position: relative; min-height: 560px; }
.split-image img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split-content { padding: 4rem 3.5rem; display: flex; flex-direction: column; justify-content: center; }
.split-content .label { margin-bottom: 1rem; }
.split-content h2 { margin-bottom: 1.5rem; }
.split-content p { margin-bottom: 1rem; }
.split-content .btn { margin-top: 1.5rem; align-self: flex-start; }
.philosophy-section { background: var(--bg-alt); }
.philosophy-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5rem; }
.philosophy-card { background: var(--dark); border: 1px solid var(--border); border-radius: 6px; padding: 2.5rem 2rem; }
.philosophy-icon { width: 48px; height: 48px; background: var(--accent-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1.5rem; color: var(--accent); }
.philosophy-icon svg { width: 22px; height: 22px; }
.philosophy-card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.philosophy-card p { font-size: 0.9rem; }
.values-section { background: var(--dark); }
.values-list { max-width: 760px; margin: 0 auto; }
.value-item { display: grid; grid-template-columns: auto 1fr; gap: 2rem; padding: 2rem 0; border-bottom: 1px solid var(--border); align-items: start; }
.value-item:last-child { border-bottom: none; }
.value-num { font-family: var(--ff-display); font-size: 3rem; color: var(--accent); font-style: italic; line-height: 1; opacity: 0.6; }
.value-text h4 { font-size: 1.05rem; margin-bottom: 0.4rem; color: var(--cream); }
.value-text p { font-size: 0.9rem; }
.timeline-section { background: var(--bg-alt); }
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding-left: 2rem; }
.timeline::before { content: ''; position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--border); }
.timeline-item { position: relative; padding: 0 0 2.5rem 2.5rem; }
.timeline-dot { position: absolute; left: -5px; top: 4px; width: 10px; height: 10px; border-radius: 50%; background: var(--accent); border: 2px solid var(--dark); }
.timeline-date { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem; }
.timeline-item h4 { margin-bottom: 0.5rem; color: var(--cream); }
.timeline-item p { font-size: 0.88rem; }

/* 16. Menu / Offerings page */
.menu-section { background: var(--dark); }
.disclaimer-bar { background: var(--accent-dim); border: 1px solid var(--border); border-radius: 4px; padding: 1rem 1.5rem; max-width: 880px; margin: 0 auto 3rem; text-align: center; font-size: 0.88rem; color: var(--cream-dim); }
.category-tiles-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 1.5rem; margin-bottom: 5rem; }
.category-tile { position: relative; min-height: 340px; border-radius: 6px; overflow: hidden; cursor: pointer; border: 1px solid var(--border); }
.category-tile img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: brightness(0.55); transition: filter 0.4s; }
.category-tile:hover img { filter: brightness(0.4); }
.category-tile-content { position: relative; z-index: 1; padding: 2.5rem 2rem; display: flex; flex-direction: column; justify-content: flex-end; height: 100%; }
.category-tile-content .label { margin-bottom: 0.5rem; }
.category-tile-content h3 { color: var(--cream); margin-bottom: 0.4rem; }
.category-tile-count { font-size: 0.8rem; color: var(--cream-dim); }
.category-section { padding: 3rem 0 4rem; border-top: 1px solid var(--border); }
.category-section:first-of-type { border-top: none; }
.category-header { margin-bottom: 2rem; }
.category-header h2 { margin-bottom: 0.5rem; }
.items-list { display: flex; flex-direction: column; gap: 0; }
.menu-item { padding: 1.5rem 0; border-bottom: 1px solid var(--border); display: grid; grid-template-columns: 1fr auto; gap: 1.5rem; align-items: start; }
.menu-item:last-child { border-bottom: none; }
.item-info h4 { color: var(--cream); margin-bottom: 0.4rem; }
.item-info p { font-size: 0.9rem; }
.item-badge { display: inline-block; font-size: 0.67rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 2px; white-space: nowrap; }
.badge-signature { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border); }
.badge-new { background: rgba(155,109,188,0.15); color: var(--highlight); border: 1px solid rgba(155,109,188,0.25); }
.badge-favorite { background: rgba(155,109,188,0.15); color: var(--highlight); border: 1px solid rgba(155,109,188,0.25); }
.badge-mocktail { background: rgba(242,236,230,0.08); color: var(--cream-dim); border: 1px solid var(--border); }
.menu-cta { background: var(--bg-alt); text-align: center; padding: 4rem 2rem; }

/* 17. Gallery page */
.gallery-section { background: var(--dark); }
.filter-bar { display: flex; gap: 0.5rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn { padding: 0.5rem 1.25rem; border-radius: 2px; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; cursor: pointer; border: 1.5px solid var(--border); background: transparent; color: var(--cream-dim); transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: var(--accent); color: var(--dark); border-color: var(--accent); }
.gallery-group { margin-bottom: 4rem; }
.gallery-group-header { margin-bottom: 1.5rem; }
.gallery-group-header h3 { font-size: 1.1rem; margin-bottom: 0.2rem; }
.gallery-group-header .label { font-size: 0.68rem; }
.masonry { columns: 4; column-gap: 6px; }
.masonry-item { break-inside: avoid; margin-bottom: 6px; cursor: pointer; overflow: hidden; border-radius: 3px; }
.masonry-item img { width: 100%; display: block; transition: transform 0.4s, filter 0.4s; }
.masonry-item:hover img { transform: scale(1.03); filter: brightness(0.8); }
.gallery-cta { background: var(--bg-alt); text-align: center; padding: 4rem 2rem; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(8,11,18,0.97); z-index: 2000; display: none; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 88vh; object-fit: contain; border-radius: 3px; }
.lightbox-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--cream); cursor: pointer; font-size: 2rem; line-height: 1; opacity: 0.7; transition: opacity 0.2s; }
.lightbox-close:hover { opacity: 1; }
.lightbox-arrow { position: absolute; top: 50%; transform: translateY(-50%); background: var(--accent-dim); border: 1px solid var(--border); border-radius: 50%; width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--cream); transition: background 0.2s; }
.lightbox-arrow:hover { background: var(--accent); color: var(--dark); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-arrow svg { width: 20px; height: 20px; }
.lightbox-counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-size: 0.8rem; color: var(--cream-dim); }

/* 18. Contact page */
.contact-section { background: var(--dark); }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-block { display: flex; gap: 1rem; margin-bottom: 2rem; padding-bottom: 2rem; border-bottom: 1px solid var(--border); }
.contact-block:last-child { border-bottom: none; }
.contact-block-icon { width: 42px; height: 42px; background: var(--accent-dim); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--accent); flex-shrink: 0; }
.contact-block-icon svg { width: 18px; height: 18px; }
.contact-block-content h4 { margin-bottom: 0.4rem; color: var(--cream); }
.contact-block-content p, .contact-block-content a { font-size: 0.9rem; color: var(--cream-dim); }
.contact-block-content a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 0.4rem 0; font-size: 0.86rem; color: var(--cream-dim); }
.hours-table td:last-child { text-align: right; }
.hours-table tr.peak td { color: var(--accent); }
.hours-table tr.closed td { opacity: 0.5; }
.contact-form { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 6px; padding: 2.5rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.07em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 0.5rem; }
.form-group input, .form-group select, .form-group textarea { width: 100%; background: var(--dark); border: 1px solid var(--border); border-radius: 3px; padding: 0.7rem 1rem; color: var(--cream); font-family: var(--ff-body); font-size: 0.9rem; transition: border-color 0.2s; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--accent); }
.form-group input.invalid, .form-group select.invalid, .form-group textarea.invalid { border-color: #e05555; }
.form-group select option { background: var(--dark); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.contact-form .btn { width: 100%; justify-content: center; margin-top: 0.5rem; }
#formSuccess { display: none; text-align: center; padding: 3rem 2rem; }
#formSuccess svg { width: 56px; height: 56px; color: var(--accent); margin: 0 auto 1rem; }
#formSuccess h3 { margin-bottom: 0.5rem; }
#formSuccess p { font-size: 0.9rem; }
.map-placeholder { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 6px; padding: 3rem 2rem; text-align: center; margin-top: 3rem; }
.map-placeholder svg { width: 40px; height: 40px; color: var(--accent); margin: 0 auto 1rem; }
.map-placeholder h4 { margin-bottom: 0.4rem; }
.map-placeholder p { font-size: 0.88rem; margin-bottom: 0.3rem; }
.map-link { display: inline-flex; align-items: center; gap: 0.4rem; margin-top: 1rem; color: var(--accent); font-size: 0.88rem; font-weight: 600; }
.map-link:hover { text-decoration: underline; }

/* 19. FAQ accordion */
.faq-section { background: var(--bg-alt); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 0; cursor: pointer; font-weight: 600; font-size: 0.95rem; color: var(--cream); gap: 1rem; }
.faq-icon { flex-shrink: 0; width: 20px; height: 20px; position: relative; transition: transform 0.3s; }
.faq-icon::before, .faq-icon::after { content: ''; position: absolute; background: var(--accent); border-radius: 2px; }
.faq-icon::before { width: 12px; height: 1.5px; top: 50%; left: 50%; transform: translate(-50%,-50%); }
.faq-icon::after { width: 1.5px; height: 12px; top: 50%; left: 50%; transform: translate(-50%,-50%); transition: transform 0.3s, opacity 0.3s; }
.faq-item.open .faq-icon::after { transform: translate(-50%,-50%) rotate(90deg); opacity: 0; }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-answer p { padding: 0 0 1.4rem; font-size: 0.9rem; color: var(--cream-dim); }

/* 20. Scroll-to-top */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 44px; height: 44px; background: var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; z-index: 500; border: none; }
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 18px; height: 18px; 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); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .stats-grid { grid-template-columns: repeat(2,2fr); }
}
@media (max-width: 768px) {
  section { padding: 4rem 1.25rem; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  h1 { font-size: 2.6rem; }
  h2 { font-size: 2rem; }
  .teaser-grid, .split-grid { grid-template-columns: 1fr; }
  .teaser-image, .split-image { min-height: 300px; position: relative; }
  .offerings-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .category-tiles-grid { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .feed-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero-btns { flex-direction: column; align-items: center; }
  .offerings-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; }
  .masonry { columns: 1; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
