/*
  Design rationale: Teal and gold pulled directly from the Atina Cafe coffee-cup logo — deep teal dark evokes the lush botanical interior, warm gold echoes the logo's saucer accent and gold cutlery seen in food photography.
  Heading: Raleway — elegant art-deco geometric sans; approachable yet refined for a modern bistro
  Body: Poppins — clean geometric humanist sans; highly legible, modern, pairs perfectly with Raleway
*/

@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Poppins:wght@300;400;500;600&display=swap');

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

:root {
  --dark:       #1C3D38;
  --bg-alt:     #24514A;
  --accent:     #2E7D72;
  --highlight:  #C9A227;
  --cream:      #FDF9F2;
  --cream-dim:  rgba(253,249,242,0.65);
  --accent-dim: rgba(46,125,114,0.14);
  --border:     rgba(46,125,114,0.25);
  --ff-display: 'Raleway', sans-serif;
  --ff-body:    'Poppins', sans-serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--dark); color: var(--cream); line-height: 1.7; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* 2. Typography */
h1, h2, h3, h4 { font-family: var(--ff-display); font-weight: 700; line-height: 1.15; }
h1 { font-size: clamp(2.6rem, 6vw, 5.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }
h4 { font-size: 1.05rem; font-weight: 600; }
p { color: var(--cream-dim); font-size: 0.97rem; }
.section-label { font-family: var(--ff-display); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--highlight); display: block; margin-bottom: 0.5rem; }
.section-title { color: var(--cream); margin-bottom: 1rem; }

/* 3. Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.5rem; font-family: var(--ff-display); font-size: 0.85rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.75rem 1.75rem; border-radius: 3px; transition: all 0.25s ease; cursor: pointer; border: none; }
.btn-primary { background: var(--highlight); color: var(--dark); }
.btn-primary:hover { background: #dbb533; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(201,162,39,0.35); }
.btn-ghost { background: transparent; color: var(--cream); border: 1.5px solid rgba(253,249,242,0.4); }
.btn-ghost:hover { border-color: var(--cream); background: rgba(253,249,242,0.08); }
.btn-outline { background: transparent; color: var(--accent); border: 1.5px solid var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--cream); }

/* 4. Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 900; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 5%; transition: background 0.35s ease, padding 0.35s ease, box-shadow 0.35s ease; }
.navbar.scrolled { background: var(--dark); padding: 0.7rem 5%; 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: 44px; height: 44px; object-fit: contain; background: var(--dark); border-radius: 6px; padding: 4px; }
.nav-logo span { font-family: var(--ff-display); font-weight: 700; font-size: 1.1rem; letter-spacing: 0.04em; color: var(--cream); }
.nav-links { display: flex; align-items: center; gap: 2.2rem; list-style: none; }
.nav-links a { font-family: var(--ff-display); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; 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(--highlight); }
.nav-cta { font-size: 0.78rem !important; padding: 0.55rem 1.3rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cream); transition: all 0.3s ease; border-radius: 2px; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { display: none; position: fixed; inset: 0; background: var(--dark); z-index: 800; 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; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); }
.mobile-menu a:hover { color: var(--highlight); }
.mobile-menu .btn { margin-top: 1rem; font-size: 0.95rem; padding: 0.9rem 2.5rem; }

/* 5. Hero */
.hero { position: relative; height: 100vh; min-height: 600px; display: flex; align-items: center; background-image: url('images/banner.jpg?v=1'); background-size: cover; background-position: center; }
.hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(135deg, rgba(28,61,56,0.82) 0%, rgba(28,61,56,0.55) 60%, rgba(0,0,0,0.4) 100%); }
.hero-content { position: relative; z-index: 1; padding: 0 8%; max-width: 680px; }
.hero-content h1 { color: var(--cream); margin-bottom: 0.5rem; }
.hero-subtitle { font-family: var(--ff-display); font-size: 1rem; font-weight: 500; letter-spacing: 0.22em; text-transform: uppercase; color: var(--highlight); margin-bottom: 1.2rem; }
.hero-tagline { font-size: 1.1rem; color: var(--cream-dim); margin-bottom: 2rem; font-style: italic; }
.hero-ctas { display: flex; gap: 1rem; 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; opacity: 0.6; }
.scroll-indicator span { font-family: var(--ff-display); font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--cream); }
.scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--cream), transparent); animation: scrollDrop 1.5s ease infinite; }
@keyframes scrollDrop { 0%,100% { transform: scaleY(1); opacity: 0.6; } 50% { transform: scaleY(0.5); opacity: 0.2; } }

/* 6. Features strip */
.features-strip { background: var(--accent); padding: 3.5rem 5%; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; }
.feature-item { text-align: center; }
.feature-icon { width: 44px; height: 44px; margin: 0 auto 1rem; color: var(--cream); }
.feature-item h3 { font-size: 1rem; font-weight: 700; color: var(--cream); margin-bottom: 0.4rem; }
.feature-item p { font-size: 0.82rem; color: rgba(253,249,242,0.75); }

/* 7. Offerings grid */
.offerings-section { padding: 6rem 5%; background: var(--dark); }
.section-header { text-align: center; margin-bottom: 3rem; }
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto 2.5rem; }
.offering-tile { position: relative; overflow: hidden; border-radius: 4px; 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(28,61,56,0.9) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem; opacity: 0.9; transition: opacity 0.3s; }
.offering-tile:hover .offering-tile-overlay { opacity: 1; }
.offering-tile-overlay span { font-family: var(--ff-display); font-size: 0.65rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--highlight); margin-bottom: 0.2rem; }
.offering-tile-overlay h3 { font-size: 1rem; color: var(--cream); }
.offerings-cta { text-align: center; }

/* 8. Brand teaser split */
.brand-teaser { display: grid; grid-template-columns: 1fr 1fr; min-height: 520px; }
.teaser-image { overflow: hidden; }
.teaser-image img { width: 100%; height: 100%; object-fit: cover; }
.teaser-content { background: var(--bg-alt); display: flex; flex-direction: column; justify-content: center; padding: 5rem 4rem; }
.teaser-content p { margin-bottom: 1rem; }
.teaser-content .btn { margin-top: 1.5rem; align-self: flex-start; }

/* 9. Stats row */
.stats-row { background: var(--highlight); padding: 4rem 5%; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1200px; margin: 0 auto; text-align: center; }
.stat-item .stat-number { font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; color: var(--dark); line-height: 1; }
.stat-item .stat-label { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(28,61,56,0.75); margin-top: 0.4rem; }

/* 10. Review cards */
.reviews-section { padding: 6rem 5%; background: var(--bg-alt); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; }
.review-card { background: var(--dark); border: 1px solid var(--border); border-radius: 6px; padding: 2rem; display: flex; flex-direction: column; gap: 1rem; }
.review-stars { display: flex; gap: 3px; }
.review-stars svg { width: 16px; height: 16px; color: var(--highlight); }
.review-text { font-size: 0.9rem; color: var(--cream-dim); line-height: 1.8; font-style: italic; flex: 1; }
.reviewer { font-family: var(--ff-display); font-size: 0.8rem; font-weight: 600; color: var(--cream); letter-spacing: 0.05em; }

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

/* 12. Social feed grid */
.feed-section { padding: 5rem 5%; background: var(--bg-alt); }
.feed-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 3px; max-width: 1200px; margin: 1.5rem auto 0; }
.feed-item { aspect-ratio: 1; overflow: hidden; }
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s, opacity 0.4s; }
.feed-item:hover img { transform: scale(1.06); opacity: 0.8; }

/* 13. Footer */
.footer { background: #111F1D; padding: 5rem 5% 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; max-width: 1200px; margin: 0 auto; padding-bottom: 3rem; border-bottom: 1px solid var(--border); }
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.85rem; color: var(--cream-dim); margin-bottom: 1.5rem; max-width: 280px; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--cream-dim); transition: all 0.25s; }
.footer-social a:hover { border-color: var(--accent); color: var(--accent); background: var(--accent-dim); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: var(--ff-display); font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--highlight); margin-bottom: 1.2rem; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--cream-dim); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--accent); }
.footer-contact-line { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.82rem; color: var(--cream-dim); margin-bottom: 0.7rem; }
.footer-contact-line svg { width: 15px; height: 15px; color: var(--accent); flex-shrink: 0; 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.75rem; color: rgba(253,249,242,0.4); }
.footer-badges { display: flex; gap: 0.75rem; }
.badge { font-size: 0.68rem; font-family: var(--ff-display); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 20px; border: 1px solid var(--border); color: var(--cream-dim); }

/* 14. Page hero */
.page-hero { position: relative; height: 55vh; min-height: 380px; display: flex; align-items: flex-end; background-image: var(--page-hero-bg); background-size: cover; background-position: center; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,61,56,0.9) 0%, rgba(28,61,56,0.45) 100%); }
.page-hero-content { position: relative; z-index: 1; padding: 4rem 8%; }
.page-hero-content h1 { color: var(--cream); margin-bottom: 0.5rem; }
.page-hero-content p { font-size: 1.05rem; color: var(--cream-dim); max-width: 550px; }

/* 15. About page sections */
.about-origin { display: grid; grid-template-columns: 1fr 1fr; gap: 0; min-height: 560px; }
.origin-image { overflow: hidden; }
.origin-image img { width: 100%; height: 100%; object-fit: cover; }
.origin-content { background: var(--bg-alt); padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.origin-content p { margin-bottom: 1.2rem; }
.philosophy-section, .values-section, .timeline-section { padding: 6rem 5%; }
.philosophy-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; max-width: 1200px; margin: 3rem auto 0; }
.philosophy-card { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 6px; padding: 2.5rem 2rem; }
.philosophy-card .card-icon { width: 48px; height: 48px; color: var(--highlight); margin-bottom: 1.5rem; }
.philosophy-card h3 { color: var(--cream); margin-bottom: 0.75rem; font-size: 1.1rem; }
.values-list { max-width: 800px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1.5rem; }
.value-item { display: flex; gap: 2rem; align-items: flex-start; padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.value-number { font-family: var(--ff-display); font-size: 2rem; font-weight: 800; color: var(--border); line-height: 1; min-width: 60px; }
.value-item h4 { color: var(--cream); margin-bottom: 0.3rem; font-size: 1rem; }
.timeline { max-width: 750px; margin: 3rem auto 0; position: relative; }
.timeline::before { content: ''; position: absolute; left: 110px; top: 0; bottom: 0; width: 1px; background: var(--border); }
.timeline-item { display: flex; gap: 2rem; margin-bottom: 2.5rem; align-items: flex-start; }
.timeline-date { font-family: var(--ff-display); font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; color: var(--highlight); text-transform: uppercase; min-width: 90px; text-align: right; padding-top: 4px; }
.timeline-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); flex-shrink: 0; margin-top: 6px; }
.timeline-body h4 { color: var(--cream); margin-bottom: 0.3rem; }
.cta-split { display: grid; grid-template-columns: 1fr 1fr; min-height: 460px; }
.cta-split-image { overflow: hidden; }
.cta-split-image img { width: 100%; height: 100%; object-fit: cover; }
.cta-split-content { background: var(--accent); padding: 5rem 4rem; display: flex; flex-direction: column; justify-content: center; }
.cta-split-content p { margin-bottom: 1rem; color: rgba(253,249,242,0.8); }
.cta-split-buttons { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.5rem; }

/* 16. Offerings page */
.offerings-page-section { padding: 6rem 5%; }
.disclaimer-bar { background: var(--accent-dim); border: 1px solid var(--border); padding: 1rem 2rem; text-align: center; font-size: 0.85rem; color: var(--cream-dim); border-radius: 4px; max-width: 900px; margin: 0 auto 4rem; display: flex; align-items: center; justify-content: center; gap: 1.5rem; flex-wrap: wrap; }
.category-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto 5rem; }
.category-tile { position: relative; overflow: hidden; border-radius: 6px; cursor: pointer; aspect-ratio: 3/4; transition: transform 0.3s; }
.category-tile:hover { transform: translateY(-4px); }
.category-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.category-tile:hover img { transform: scale(1.06); }
.category-tile-info { position: absolute; inset: 0; background: linear-gradient(to top, rgba(28,61,56,0.95) 0%, transparent 55%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.category-tile-info h3 { color: var(--cream); font-size: 1.2rem; margin-bottom: 0.3rem; }
.category-tile-info span { font-size: 0.75rem; color: var(--highlight); font-family: var(--ff-display); font-weight: 600; letter-spacing: 0.1em; }
.menu-section { max-width: 900px; margin: 0 auto 5rem; }
.menu-section-header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 0.5rem; padding-bottom: 1rem; border-bottom: 2px solid var(--accent); }
.menu-section-header h2 { font-size: 1.6rem; color: var(--cream); }
.menu-section-desc { font-size: 0.9rem; color: var(--cream-dim); margin-bottom: 2rem; }
.menu-items { display: flex; flex-direction: column; gap: 0; }
.menu-item { padding: 1.5rem 0; border-bottom: 1px solid var(--border); }
.menu-item-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.4rem; }
.menu-item h4 { color: var(--cream); font-size: 1rem; }
.badge { font-size: 0.65rem; font-family: var(--ff-display); font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 0.2rem 0.6rem; border-radius: 20px; }
.badge-signature { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border); }
.badge-bestseller { background: rgba(201,162,39,0.15); color: var(--highlight); border: 1px solid rgba(201,162,39,0.3); }
.badge-new { background: rgba(46,125,114,0.2); color: #7ECFC7; border: 1px solid rgba(46,125,114,0.3); }
.menu-item p { font-size: 0.88rem; }
.offerings-bottom-cta { text-align: center; padding: 4rem 5%; background: var(--bg-alt); }

/* 17. Gallery page */
.gallery-section { padding: 5rem 5%; }
.filter-bar { display: flex; gap: 0.75rem; flex-wrap: wrap; justify-content: center; margin-bottom: 3rem; }
.filter-btn { font-family: var(--ff-display); font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.5rem 1.2rem; border-radius: 20px; border: 1.5px solid var(--border); background: transparent; color: var(--cream-dim); cursor: pointer; transition: all 0.25s; }
.filter-btn.active, .filter-btn:hover { border-color: var(--accent); background: var(--accent); color: var(--cream); }
.gallery-group { margin-bottom: 4rem; }
.gallery-group-header { display: flex; align-items: baseline; gap: 1rem; margin-bottom: 1.5rem; }
.gallery-group-header h3 { font-size: 1.2rem; color: var(--cream); }
.gallery-group-header span { font-size: 0.75rem; color: var(--cream-dim); font-family: var(--ff-display); letter-spacing: 0.08em; }
.masonry { columns: 4; 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, opacity 0.3s; }
.masonry-item:hover img { transform: scale(1.04); opacity: 0.85; }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 9000; align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 4px; }
.lightbox-close { position: absolute; top: 1.5rem; right: 2rem; font-size: 2rem; color: var(--cream); cursor: pointer; opacity: 0.7; background: none; border: none; line-height: 1; }
.lightbox-close:hover { opacity: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(28,61,56,0.6); border: 1px solid var(--border); color: var(--cream); padding: 0.75rem 1rem; cursor: pointer; font-size: 1.3rem; border-radius: 3px; transition: background 0.2s; }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover, .lightbox-next:hover { background: var(--accent); }
.lightbox-counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); font-family: var(--ff-display); font-size: 0.8rem; letter-spacing: 0.1em; color: var(--cream-dim); }
.gallery-cta { text-align: center; padding: 4rem 5%; background: var(--bg-alt); display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* 18. Contact page */
.contact-section { padding: 6rem 5%; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; max-width: 1200px; margin: 0 auto; }
.contact-block { margin-bottom: 2rem; }
.contact-block h3 { font-size: 0.75rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--highlight); font-family: var(--ff-display); margin-bottom: 1rem; }
.contact-info-line { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 0.6rem; font-size: 0.88rem; color: var(--cream-dim); }
.contact-info-line svg { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.contact-info-line a { color: var(--cream-dim); transition: color 0.2s; }
.contact-info-line a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.85rem; margin-top: 0.5rem; }
.hours-table td { padding: 0.45rem 0; color: var(--cream-dim); }
.hours-table td:first-child { font-weight: 500; color: var(--cream); padding-right: 1.5rem; }
.hours-table tr.peak td { color: var(--highlight); font-weight: 500; }
.inquiry-form { background: var(--bg-alt); border-radius: 8px; padding: 2.5rem; border: 1px solid var(--border); }
.inquiry-form h3 { color: var(--cream); margin-bottom: 0.5rem; font-size: 1.3rem; }
.inquiry-form > p { font-size: 0.85rem; margin-bottom: 2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1.1rem; }
.form-group label { font-size: 0.75rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream); font-family: var(--ff-display); }
.form-group input, .form-group select, .form-group textarea { background: var(--dark); border: 1.5px solid var(--border); border-radius: 4px; padding: 0.7rem 1rem; color: var(--cream); font-family: var(--ff-body); font-size: 0.9rem; 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.error, .form-group select.error, .form-group textarea.error { border-color: #E25050; }
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 0.9rem; font-size: 0.88rem; }
#formSuccess { display: none; text-align: center; padding: 2rem; }
#formSuccess svg { width: 56px; height: 56px; color: var(--accent); margin: 0 auto 1rem; }
#formSuccess h3 { color: var(--cream); margin-bottom: 0.5rem; }
.map-placeholder { margin-top: 2rem; background: var(--bg-alt); border: 1px solid var(--border); border-radius: 6px; padding: 2rem; text-align: center; }
.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.85rem; margin-bottom: 1.2rem; }
.map-placeholder a { font-family: var(--ff-display); font-size: 0.8rem; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent); border: 1.5px solid var(--accent); padding: 0.5rem 1.2rem; border-radius: 3px; display: inline-block; transition: all 0.25s; }
.map-placeholder a:hover { background: var(--accent); color: var(--cream); }

/* 19. FAQ accordion */
.faq-section { padding: 6rem 5%; background: var(--bg-alt); }
.faq-list { max-width: 800px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; justify-content: space-between; align-items: center; padding: 1.4rem 0; cursor: pointer; gap: 1rem; }
.faq-question h4 { color: var(--cream); font-size: 0.95rem; font-weight: 600; }
.faq-icon { width: 22px; height: 22px; flex-shrink: 0; color: var(--accent); transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer p { font-size: 0.88rem; padding-bottom: 1.2rem; color: var(--cream-dim); line-height: 1.85; }

/* 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: all; }
.scroll-top:hover { transform: translateY(-3px); background: var(--highlight); }
.scroll-top svg { width: 20px; height: 20px; color: var(--cream); }

/* 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); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 3; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero-content { padding: 0 6%; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser { grid-template-columns: 1fr; }
  .teaser-image { height: 320px; }
  .teaser-content { padding: 3rem 2rem; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-origin { grid-template-columns: 1fr; }
  .origin-image { height: 320px; }
  .origin-content { padding: 3rem 2rem; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .cta-split { grid-template-columns: 1fr; }
  .cta-split-image { height: 280px; }
  .cta-split-content { padding: 3rem 2rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 80px; }
  .masonry { columns: 2; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .offerings-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .category-tiles { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 1; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-ctas { flex-direction: column; }
  .features-grid { grid-template-columns: 1fr; }
}
