/*
  Design rationale: Gunmetal charcoal with muted matcha sage echoes the cafe's raw concrete walls, bamboo whisks, and ceremonial-grade green tea — a Japanese industrial aesthetic that feels warm and unhurried.
  Heading: Shippori Mincho — a Japanese-inspired serif that carries the weight of tradition with quiet elegance
  Body: Hind — a clean humanist sans with slightly warm undertones that pairs naturally with the display font
*/

/* ─────────────────────────────────────────────────────────────────────────────
   1. Reset & Custom Properties
───────────────────────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&family=Hind:wght@300;400;500;600&display=swap');

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

:root {
  --dark:       #191C18;
  --bg-alt:     #222820;
  --accent:     #7AAE7D;
  --highlight:  #D4B483;
  --cream:      #F4F1EB;
  --cream-dim:  rgba(244,241,235,0.65);
  --accent-dim: rgba(122,174,125,0.14);
  --border:     rgba(122,174,125,0.22);
  --ff-display: 'Shippori Mincho', serif;
  --ff-body:    'Hind', sans-serif;
  --nav-h:      72px;
  --radius:     8px;
  --trans:      0.3s ease;
}

html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--cream-dim);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ─────────────────────────────────────────────────────────────────────────────
   2. Typography
───────────────────────────────────────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  color: var(--cream);
  line-height: 1.2;
}
h1 { font-size: clamp(2.4rem, 6vw, 4.8rem); font-weight: 700; }
h2 { font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 600; }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.9rem); font-weight: 500; }
h4 { font-size: 1.15rem; font-weight: 600; }
p  { color: var(--cream-dim); }
.label {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

/* ─────────────────────────────────────────────────────────────────────────────
   3. Buttons
───────────────────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.8rem;
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--trans);
  border: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover { background: #91c694; transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-ghost:hover { background: var(--accent-dim); transform: translateY(-2px); }
.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(244,241,235,0.3);
}
.btn-outline:hover { border-color: var(--cream); transform: translateY(-2px); }
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* ─────────────────────────────────────────────────────────────────────────────
   4. Navbar
───────────────────────────────────────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  padding: 0 5%;
  transition: background var(--trans), box-shadow var(--trans);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}
.nav-logo {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--border);
}
.nav-brand-name {
  font-family: var(--ff-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--cream);
  letter-spacing: 0.03em;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  margin: 0 auto;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream-dim);
  transition: color var(--trans);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 1.5px;
  background: var(--accent);
  transition: width var(--trans);
}
.nav-links a:hover,
.nav-links a.active { color: var(--cream); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: auto; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--cream);
  transition: all var(--trans);
  border-radius: 2px;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.nav-overlay.open { display: flex; }
.nav-overlay a {
  font-family: var(--ff-display);
  font-size: 1.8rem;
  color: var(--cream);
  font-weight: 600;
  transition: color var(--trans);
}
.nav-overlay a:hover { color: var(--accent); }

/* ─────────────────────────────────────────────────────────────────────────────
   5. Hero
───────────────────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(25,28,24,0.55) 0%, rgba(25,28,24,0.7) 60%, rgba(25,28,24,0.92) 100%);
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 2rem;
}
.hero-content .label { font-size: 0.75rem; letter-spacing: 0.25em; margin-bottom: 1rem; }
.hero-content h1 { margin-bottom: 1rem; }
.hero-tagline {
  font-size: 1.1rem;
  color: var(--cream-dim);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.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.4rem;
  color: var(--cream-dim);
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}
.scroll-indicator .scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50% { opacity: 0.4; transform: scaleY(0.6); }
}

/* ─────────────────────────────────────────────────────────────────────────────
   6. Features Strip
───────────────────────────────────────────────────────────────────────────── */
.features-strip {
  background: var(--accent-dim);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 3.5rem 5%;
}
.features-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.8rem;
}
.feature-icon {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.feature-icon svg { width: 24px; height: 24px; }
.feature-item h4 { font-size: 1rem; margin: 0; }
.feature-item p { font-size: 0.85rem; color: var(--cream-dim); }

/* ─────────────────────────────────────────────────────────────────────────────
   7. Offerings Grid (3×3 home, filter grid on offerings page)
───────────────────────────────────────────────────────────────────────────── */
.offerings-section {
  padding: 6rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.offerings-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.offerings-section .section-header h2 { margin-bottom: 0.8rem; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5px;
}
.offering-tile {
  position: relative;
  overflow: hidden;
  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-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25,28,24,0.88) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--trans);
}
.offering-tile:hover .offering-tile-overlay { opacity: 1; }
.offering-tile-overlay .label { margin-bottom: 0.2rem; font-size: 0.65rem; }
.offering-tile-overlay h4 { font-size: 1rem; color: var(--cream); }

/* ─────────────────────────────────────────────────────────────────────────────
   8. Brand Teaser Split
───────────────────────────────────────────────────────────────────────────── */
.brand-teaser {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.brand-teaser-img {
  position: relative;
  overflow: hidden;
}
.brand-teaser-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.brand-teaser-img:hover img { transform: scale(1.04); }
.brand-teaser-copy {
  background: var(--bg-alt);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.brand-teaser-copy h2 { margin-bottom: 0.5rem; }
.brand-teaser-copy p { font-size: 0.95rem; line-height: 1.8; }

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

/* ─────────────────────────────────────────────────────────────────────────────
   10. Review Cards
───────────────────────────────────────────────────────────────────────────── */
.reviews-section {
  padding: 6rem 5%;
}
.reviews-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.review-stars { display: flex; gap: 3px; color: var(--highlight); }
.review-stars svg { width: 16px; height: 16px; }
.review-text {
  font-size: 0.92rem;
  line-height: 1.8;
  font-style: italic;
  flex: 1;
}
.reviewer-name {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.05em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   11. Social CTA + Platform Buttons
───────────────────────────────────────────────────────────────────────────── */
.social-cta {
  background: var(--bg-alt);
  padding: 5rem 5%;
  text-align: center;
  border-top: 1px solid var(--border);
}
.social-cta h2 { margin-bottom: 0.8rem; }
.social-cta p { margin-bottom: 2rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.social-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.social-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  font-size: 0.88rem;
  font-weight: 600;
  transition: all var(--trans);
  border: 1.5px solid var(--border);
  color: var(--cream);
}
.social-btn:hover { border-color: var(--accent); color: var(--accent); transform: translateY(-2px); }
.social-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.social-btn.wa-btn {
  background: rgba(37,211,102,0.12);
  border-color: rgba(37,211,102,0.35);
  color: #25D366;
}
.social-btn.wa-btn:hover { background: rgba(37,211,102,0.22); }

/* ─────────────────────────────────────────────────────────────────────────────
   12. Social Feed Grid
───────────────────────────────────────────────────────────────────────────── */
.social-feed {
  padding: 0;
}
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
.feed-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
}
.feed-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.feed-item:hover img { transform: scale(1.08); }
.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(122,174,125,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
  color: white;
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { width: 32px; height: 32px; }

/* ─────────────────────────────────────────────────────────────────────────────
   13. Footer
───────────────────────────────────────────────────────────────────────────── */
.footer {
  background: #0F1110;
  border-top: 1px solid var(--border);
  padding: 5rem 5% 2rem;
}
.footer-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-brand { margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-socials { display: flex; gap: 0.8rem; }
.footer-social-link {
  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 var(--trans);
}
.footer-social-link:hover {
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
}
.footer-social-link svg { width: 16px; height: 16px; }
.footer-col h4 {
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-col ul li a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin-bottom: 1rem;
}
.footer-contact-item .contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.footer-contact-item a,
.footer-contact-item p {
  font-size: 0.88rem;
  color: var(--cream-dim);
}
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 0.82rem; color: rgba(244,241,235,0.4); }
.footer-badges { display: flex; gap: 0.8rem; }
.footer-badge {
  font-size: 0.72rem;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  letter-spacing: 0.08em;
}

/* ─────────────────────────────────────────────────────────────────────────────
   14. Page Hero (inner pages)
───────────────────────────────────────────────────────────────────────────── */
.page-hero {
  position: relative;
  height: 55vh;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0 5% 4rem;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(25,28,24,0.4) 0%, rgba(25,28,24,0.82) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}
.page-hero-content .label { margin-bottom: 0.6rem; }
.page-hero-content h1 { margin-bottom: 0.6rem; font-size: clamp(2rem, 5vw, 3.8rem); }
.page-hero-content p { font-size: 1.05rem; max-width: 500px; }

/* ─────────────────────────────────────────────────────────────────────────────
   15. About Page
───────────────────────────────────────────────────────────────────────────── */
.about-origin {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.about-origin-img {
  position: relative;
  overflow: hidden;
}
.about-origin-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-origin-copy {
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.about-origin-copy h2 { margin-bottom: 0.5rem; }
.about-origin-copy p { font-size: 0.95rem; line-height: 1.9; }

.philosophy-section {
  padding: 6rem 5%;
  background: var(--bg-alt);
}
.philosophy-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.philosophy-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
}
.philosophy-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.philosophy-icon svg { width: 22px; height: 22px; }
.philosophy-card h3 { margin-bottom: 0.8rem; font-size: 1.2rem; }
.philosophy-card p { font-size: 0.9rem; line-height: 1.8; }

.values-section {
  padding: 6rem 5%;
  max-width: 900px;
  margin: 0 auto;
}
.values-section .section-header { margin-bottom: 3rem; }
.values-list { display: flex; flex-direction: column; gap: 0; }
.value-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 2rem 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);
  opacity: 0.4;
  line-height: 1;
  padding-top: 0.2rem;
}
.value-content h4 { margin-bottom: 0.4rem; font-size: 1.05rem; }
.value-content p { font-size: 0.9rem; }

.timeline-section {
  padding: 6rem 5%;
  background: var(--bg-alt);
}
.timeline-section .section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 80px;
  top: 0; bottom: 0;
  width: 1px;
  background: var(--border);
}
.timeline-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  padding: 0 0 3rem;
  position: relative;
}
.timeline-date {
  font-family: var(--ff-display);
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  text-align: right;
  padding-top: 0.2rem;
  padding-right: 1.5rem;
}
.timeline-dot {
  position: absolute;
  left: 76px;
  top: 6px;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg-alt);
}
.timeline-content h4 { margin-bottom: 0.4rem; }
.timeline-content p { font-size: 0.9rem; }

.about-cta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 460px;
}
.about-cta-img { overflow: hidden; }
.about-cta-img img { width: 100%; height: 100%; object-fit: cover; }
.about-cta-copy {
  background: var(--dark);
  padding: 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}
.about-cta-copy .cta-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────────────────────
   16. Offerings Page
───────────────────────────────────────────────────────────────────────────── */
.disclaimer-bar {
  background: var(--accent-dim);
  border-bottom: 1px solid var(--border);
  padding: 1rem 5%;
  text-align: center;
  font-size: 0.88rem;
  color: var(--cream-dim);
}
.disclaimer-bar a { color: var(--accent); }

.category-tiles-section {
  padding: 4rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.category-tiles-section .section-header {
  text-align: center;
  margin-bottom: 2.5rem;
}
.category-tiles-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.category-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  aspect-ratio: 3/4;
  border: 1px solid var(--border);
  text-decoration: none;
}
.category-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.category-tile:hover img { transform: scale(1.07); }
.category-tile-info {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(25,28,24,0.92) 0%, rgba(25,28,24,0.3) 60%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
}
.category-tile-info h3 { font-size: 1.2rem; color: var(--cream); margin-bottom: 0.3rem; }
.item-count {
  font-size: 0.78rem;
  color: var(--accent);
  letter-spacing: 0.1em;
}

.menu-categories {
  padding: 4rem 5%;
  max-width: 900px;
  margin: 0 auto;
}
.menu-category-section {
  margin-bottom: 4rem;
}
.menu-category-section:last-child { margin-bottom: 0; }
.cat-header {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.cat-header h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 0.4rem;
}
.cat-header p { font-size: 0.9rem; }
.menu-items-list { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  padding: 1.6rem 0;
  border-bottom: 1px solid rgba(122,174,125,0.1);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-top {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.menu-item h4 { font-size: 1.05rem; color: var(--cream); margin: 0; }
.item-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.2rem 0.6rem;
  border-radius: 20px;
  flex-shrink: 0;
}
.badge-signature { background: rgba(122,174,125,0.2); color: var(--accent); }
.badge-bestseller { background: rgba(212,180,131,0.2); color: var(--highlight); }
.badge-new { background: rgba(212,180,131,0.15); color: var(--highlight); border: 1px solid rgba(212,180,131,0.3); }
.menu-item p { font-size: 0.88rem; line-height: 1.7; }

.menu-cta {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 5rem 5%;
  text-align: center;
}
.menu-cta h2 { margin-bottom: 1rem; }
.menu-cta p { margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.menu-cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────────────────────
   17. Gallery Page
───────────────────────────────────────────────────────────────────────────── */
.gallery-filter {
  padding: 2rem 5% 0;
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
}
.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 20px;
  font-size: 0.82rem;
  font-weight: 600;
  border: 1.5px solid var(--border);
  color: var(--cream-dim);
  background: transparent;
  cursor: pointer;
  transition: all var(--trans);
  letter-spacing: 0.05em;
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent);
}

.gallery-groups {
  padding: 3rem 5%;
  max-width: 1200px;
  margin: 0 auto;
}
.gallery-group {
  margin-bottom: 3rem;
}
.gallery-group-header {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}
.gallery-group-header h3 { font-size: 1.2rem; }
.gallery-group-date { font-size: 0.78rem; color: var(--cream-dim); }
.masonry-grid {
  columns: 4;
  column-gap: 8px;
}
.masonry-item {
  break-inside: avoid;
  margin-bottom: 8px;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}
.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.4s ease;
}
.masonry-item:hover img { transform: scale(1.04); }
.masonry-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(122,174,125,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.masonry-item:hover .masonry-item-overlay { opacity: 1; }
.masonry-item-overlay svg { width: 28px; height: 28px; color: white; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}
.lightbox-close:hover { background: rgba(255,255,255,0.2); }
.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px; height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: none;
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-prev:hover,
.lightbox-next:hover { background: rgba(255,255,255,0.25); }
.lightbox-prev svg,
.lightbox-next svg { width: 22px; height: 22px; }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.6);
  background: rgba(0,0,0,0.4);
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
}

.gallery-cta {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 5rem 5%;
  text-align: center;
}
.gallery-cta h2 { margin-bottom: 1rem; }
.gallery-cta p { margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.gallery-cta-buttons { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ─────────────────────────────────────────────────────────────────────────────
   18. Contact Page
───────────────────────────────────────────────────────────────────────────── */
.contact-main {
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
.contact-blocks { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-block {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.8rem;
}
.contact-block-header {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-bottom: 1rem;
  color: var(--accent);
}
.contact-block-header svg { width: 20px; height: 20px; flex-shrink: 0; }
.contact-block-header h4 {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}
.contact-block p,
.contact-block a { font-size: 0.9rem; color: var(--cream-dim); }
.contact-block a:hover { color: var(--accent); }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table tr { border-bottom: 1px solid rgba(122,174,125,0.1); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.5rem 0; font-size: 0.88rem; color: var(--cream-dim); }
.hours-table td:last-child { text-align: right; }
.hours-table tr.peak-day td { color: var(--highlight); font-weight: 500; }
.hours-table tr.closed-day td { color: rgba(244,241,235,0.3); }

.inquiry-form-wrap {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem;
}
.inquiry-form-wrap h3 { margin-bottom: 0.5rem; }
.inquiry-form-wrap > p { font-size: 0.9rem; margin-bottom: 2rem; }
.form-group { margin-bottom: 1.2rem; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
  margin-bottom: 0.5rem;
}
.form-group label .req { color: var(--accent); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--dark);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  transition: border-color var(--trans);
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error { border-color: #E05555; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark); }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-submit { width: 100%; justify-content: center; margin-top: 0.5rem; }
#formSuccess {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
#formSuccess .success-icon {
  width: 64px; height: 64px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--accent);
}
#formSuccess .success-icon svg { width: 30px; height: 30px; }
#formSuccess h3 { margin-bottom: 0.8rem; }
#formSuccess p { font-size: 0.9rem; }

.map-section {
  padding: 0 5% 5rem;
  max-width: 1200px;
  margin: 0 auto;
}
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.map-pin {
  width: 52px; height: 52px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.map-pin svg { width: 26px; height: 26px; }
.map-placeholder h3 { margin: 0; }
.map-placeholder p { font-size: 0.9rem; max-width: 480px; }

/* ─────────────────────────────────────────────────────────────────────────────
   19. FAQ Accordion
───────────────────────────────────────────────────────────────────────────── */
.faq-section {
  padding: 5rem 5%;
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
}
.faq-section .section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 0;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  background: transparent;
  border: none;
  width: 100%;
  text-align: left;
  transition: color var(--trans);
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  width: 18px; height: 18px;
  flex-shrink: 0;
  transition: transform var(--trans);
  color: var(--accent);
}
.faq-item.open .faq-question svg { transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}
.faq-answer-inner {
  padding-bottom: 1.4rem;
  font-size: 0.9rem;
  line-height: 1.8;
}

/* Contact social CTA */
.contact-social-cta {
  padding: 4rem 5%;
  text-align: center;
  border-top: 1px solid var(--border);
}
.contact-social-cta h3 { margin-bottom: 0.8rem; }
.contact-social-cta p { margin-bottom: 1.8rem; }

/* ─────────────────────────────────────────────────────────────────────────────
   20. Scroll-to-Top
───────────────────────────────────────────────────────────────────────────── */
#scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--accent);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: all var(--trans);
  z-index: 500;
}
#scroll-top.visible { opacity: 1; pointer-events: auto; transform: translateY(0); }
#scroll-top:hover { background: #91c694; 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-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .category-tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser-copy { padding: 3rem; }
  .about-origin-copy { padding: 3rem; }
  .about-cta-copy { padding: 3rem; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .brand-teaser { grid-template-columns: 1fr; }
  .brand-teaser-img { aspect-ratio: 16/9; }
  .about-origin { grid-template-columns: 1fr; }
  .about-origin-img { aspect-ratio: 16/9; }
  .about-cta { grid-template-columns: 1fr; }
  .about-cta-img { aspect-ratio: 16/9; }
  .reviews-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .contact-main { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry-grid { columns: 2; }
  .timeline::before { left: 60px; }
  .timeline-item { grid-template-columns: 60px 1fr; }
  .timeline-dot { left: 56px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .category-tiles-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .hero-ctas { flex-direction: column; align-items: center; }
  .offerings-grid { grid-template-columns: 1fr; }
  .category-tiles-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .brand-teaser-copy { padding: 2rem; }
  .about-origin-copy { padding: 2rem; }
  .about-cta-copy { padding: 2rem; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
}
