/* Design rationale: Warm botanical palette reflecting March•May Café's lush alfresco space — taupe mocha from the logo, sage green from the iconic green door and trailing plants, on a soft warm-cream canvas.
   Heading: Rozha One — bold expressive serif with warm, approachable personality suited to a creative café brand
   Body: Public Sans — clean, variable humanist sans with excellent legibility for menus and long-form copy */

/* ============================================================
   1. RESET & CUSTOM PROPERTIES
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Rozha+One&family=Public+Sans:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

:root {
  --dark:        #3D2E22;
  --bg-alt:      #F0EAE0;
  --accent:      #7B6355;
  --highlight:   #5A8A6A;
  --cream:       #FAF8F4;
  --cream-dim:   rgba(250,248,244,0.65);
  --accent-dim:  rgba(123,99,85,0.14);
  --border:      rgba(123,99,85,0.22);
  --ff-display:  'Rozha One', serif;
  --ff-body:     'Public Sans', sans-serif;
  --nav-h:       72px;
  --radius:      10px;
  --shadow:      0 4px 24px rgba(61,46,34,0.10);
  --trans:       0.3s ease;
}

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
body {
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--cream);
}
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.2; }
h1 { font-size: clamp(2.4rem, 5vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.15rem; font-family: var(--ff-body); font-weight: 700; }
p { color: #5A4A3C; }
.label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}
.section-head .label { margin-bottom: 0.5rem; }
.section-head h2 { margin-bottom: 0.75rem; }

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.92rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
}
.btn-primary:hover { background: var(--dark); border-color: var(--dark); transform: translateY(-2px); }
.btn-ghost {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}
.btn-ghost:hover { background: var(--cream); color: var(--dark); }
.btn-outline {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-outline:hover { background: var(--accent); color: var(--cream); }
.btn-green {
  background: var(--highlight);
  color: #fff;
  border-color: var(--highlight);
}
.btn-green:hover { background: #4a7a5a; border-color: #4a7a5a; transform: translateY(-2px); }

/* ============================================================
   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(61,46,34,0.18);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img {
  height: 46px;
  width: auto;
  border-radius: 50%;
}
.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--cream);
  opacity: 0.88;
  letter-spacing: 0.02em;
  transition: opacity var(--trans);
}
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-cta { margin-left: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: all var(--trans);
}
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-display);
  font-size: 2rem;
  color: var(--cream);
  opacity: 0.88;
  transition: opacity var(--trans);
}
.mobile-nav a:hover { opacity: 1; color: var(--highlight); }
.mobile-nav .btn { margin-top: 1rem; }
.mobile-close {
  position: absolute;
  top: 1.5rem;
  right: 5%;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--cream);
  font-size: 2rem;
  line-height: 1;
}

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(61,46,34,0.68) 0%, rgba(61,46,34,0.38) 55%, rgba(90,138,106,0.25) 100%);
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 2rem) 5% 4rem;
  max-width: 760px;
}
.hero-content .label { color: rgba(250,248,244,0.80); margin-bottom: 0.75rem; }
.hero-content h1 { color: var(--cream); margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.25); }
.hero-tagline {
  font-size: 1.1rem;
  color: rgba(250,248,244,0.88);
  max-width: 520px;
  margin-bottom: 2rem;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  animation: bounce 2s infinite;
}
.scroll-indicator span {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  color: rgba(250,248,244,0.7);
}
.scroll-indicator svg { color: rgba(250,248,244,0.7); }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   6. FEATURES STRIP
   ============================================================ */
.features {
  background: var(--dark);
  padding: 4rem 5%;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
}
.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight);
  flex-shrink: 0;
  border: 1.5px solid var(--border);
}
.feature-item h4 {
  font-family: var(--ff-body);
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.feature-item p {
  font-size: 0.80rem;
  color: rgba(250,248,244,0.60);
  line-height: 1.5;
}

/* ============================================================
   7. OFFERINGS GRID
   ============================================================ */
.offerings-section {
  padding: 5rem 5%;
  background: var(--cream);
}
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto;
}
.offering-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: pointer;
  box-shadow: var(--shadow);
}
.offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.offering-card:hover img { transform: scale(1.06); }
.offering-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,46,34,0.72) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  transition: background var(--trans);
}
.offering-card:hover .offering-card-overlay { background: linear-gradient(to top, rgba(61,46,34,0.85) 0%, rgba(61,46,34,0.15) 55%); }
.offering-card-label {
  color: var(--cream);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
}
.offerings-cta {
  text-align: center;
  margin-top: 2.5rem;
}

/* Filter bar (offerings page) */
.filter-bar {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  border: 1.5px solid var(--border);
  background: transparent;
  font-family: var(--ff-body);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  cursor: pointer;
  transition: all var(--trans);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--accent);
  color: var(--cream);
  border-color: var(--accent);
}

/* ============================================================
   8. BRAND TEASER SPLIT
   ============================================================ */
.teaser {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.teaser-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.teaser-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 4/5;
}
.teaser-img img { width: 100%; height: 100%; object-fit: cover; }
.teaser-text .label { margin-bottom: 0.5rem; }
.teaser-text h2 { margin-bottom: 1.25rem; }
.teaser-text p { margin-bottom: 1rem; }
.teaser-text .btn { margin-top: 0.5rem; }

/* ============================================================
   9. STATS ROW
   ============================================================ */
.stats {
  padding: 4rem 5%;
  background: var(--accent);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
}
.stat-item {}
.stat-num {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--cream);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-label {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250,248,244,0.72);
}

/* ============================================================
   10. REVIEW CARDS
   ============================================================ */
.reviews {
  padding: 5rem 5%;
  background: var(--cream);
}
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.stars { display: flex; gap: 3px; color: #E8A030; }
.stars svg { width: 16px; height: 16px; }
.review-text { font-size: 0.92rem; line-height: 1.65; color: #5A4A3C; font-style: italic; flex: 1; }
.reviewer {
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.reviewer::before {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background: var(--highlight);
  border-radius: 2px;
}

/* ============================================================
   11. SOCIAL CTA + PLATFORM BUTTONS
   ============================================================ */
.social-cta {
  padding: 4.5rem 5%;
  background: var(--dark);
  text-align: center;
}
.social-cta h2 { color: var(--cream); margin-bottom: 0.75rem; }
.social-cta p { color: rgba(250,248,244,0.70); max-width: 480px; margin: 0 auto 2rem; }
.platform-btns {
  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-radius: 50px;
  font-size: 0.88rem;
  font-weight: 600;
  font-family: var(--ff-body);
  border: 1.5px solid rgba(250,248,244,0.30);
  color: var(--cream);
  background: rgba(250,248,244,0.08);
  cursor: pointer;
  transition: all var(--trans);
}
.platform-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.platform-btn:hover { background: rgba(250,248,244,0.18); border-color: rgba(250,248,244,0.60); }
.platform-btn.wa:hover { background: #25D366; border-color: #25D366; }
.platform-btn.fb:hover { background: #1877F2; border-color: #1877F2; }
.platform-btn.ig:hover { background: #E1306C; border-color: #E1306C; }

/* ============================================================
   12. SOCIAL FEED GRID
   ============================================================ */
.feed {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  max-width: 1100px;
  margin: 0 auto;
}
.feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.feed-item:hover img { transform: scale(1.08); }
.feed-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(61,46,34,0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--trans);
}
.feed-item:hover .feed-item-overlay { opacity: 1; }
.feed-item-overlay svg { color: #fff; width: 28px; height: 28px; }

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  padding: 4rem 5% 0;
  color: rgba(250,248,244,0.70);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.footer-brand .nav-logo img { height: 48px; margin-bottom: 1rem; }
.footer-tagline {
  font-size: 0.88rem;
  line-height: 1.6;
  color: rgba(250,248,244,0.65);
  margin-bottom: 1.25rem;
}
.footer-socials {
  display: flex;
  gap: 0.75rem;
}
.footer-socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,248,244,0.65);
  transition: all var(--trans);
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }
.footer-col h5 {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  color: var(--cream);
  margin-bottom: 1.25rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(250,248,244,0.65);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--cream); }
.footer-col address { font-style: normal; font-size: 0.85rem; line-height: 1.7; }
.footer-col .footer-contact-item {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.85rem;
  color: rgba(250,248,244,0.65);
  margin-bottom: 0.5rem;
}
.footer-col .footer-contact-item svg { width: 16px; height: 16px; margin-top: 3px; flex-shrink: 0; color: var(--highlight); }
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(250,248,244,0.40);
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.footer-badge {
  padding: 0.3rem 0.9rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  font-size: 0.72rem;
  color: rgba(250,248,244,0.50);
  letter-spacing: 0.06em;
}

/* ============================================================
   14. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 52vh;
  min-height: 320px;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: flex-end;
  padding: 0 5% 3rem;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,46,34,0.75) 0%, rgba(61,46,34,0.25) 60%, transparent 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
}
.page-hero-content .label { color: rgba(250,248,244,0.75); margin-bottom: 0.4rem; }
.page-hero-content h1 { color: var(--cream); font-size: clamp(2rem, 4vw, 3.2rem); }

/* ============================================================
   15. ABOUT PAGE SECTIONS
   ============================================================ */
.about-story {
  padding: 5rem 5%;
  background: var(--cream);
}
.about-story-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
  max-width: 1100px;
  margin: 0 auto;
}
.about-story-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-story-img img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.about-story-text .label { margin-bottom: 0.5rem; }
.about-story-text h2 { margin-bottom: 1.5rem; }
.about-story-text p { margin-bottom: 1rem; }

.philosophy {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}
.phil-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.phil-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--highlight);
  margin-bottom: 1.25rem;
  border: 1.5px solid var(--border);
}
.phil-card h3 { font-size: 1.15rem; margin-bottom: 0.75rem; }
.phil-card p { font-size: 0.88rem; }

.values {
  padding: 5rem 5%;
  background: var(--cream);
}
.values-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; padding-bottom: 0; }
.value-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  line-height: 1;
  color: var(--accent);
  opacity: 0.25;
  min-width: 56px;
}
.value-item h4 { margin-bottom: 0.3rem; }
.value-item p { font-size: 0.88rem; }

.timeline {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.timeline-list {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  padding-left: 2rem;
}
.timeline-list::before {
  content: '';
  position: absolute;
  left: 6px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
  border-radius: 2px;
}
.timeline-item {
  position: relative;
  padding-left: 2rem;
  margin-bottom: 2.5rem;
}
.timeline-item:last-child { margin-bottom: 0; }
.timeline-dot {
  position: absolute;
  left: -2rem;
  top: 4px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--highlight);
  border: 3px solid var(--bg-alt);
  box-shadow: 0 0 0 2px var(--highlight);
}
.timeline-date {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.timeline-item h4 { margin-bottom: 0.25rem; }
.timeline-item p { font-size: 0.88rem; }

.about-cta {
  padding: 5rem 5%;
  background: var(--dark);
}
.about-cta-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1100px;
  margin: 0 auto;
}
.about-cta-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.about-cta-img img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.about-cta-text .label { color: rgba(250,248,244,0.65); margin-bottom: 0.5rem; }
.about-cta-text h2 { color: var(--cream); margin-bottom: 1rem; }
.about-cta-text p { color: rgba(250,248,244,0.70); margin-bottom: 1rem; }
.about-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* ============================================================
   16. OFFERINGS PAGE
   ============================================================ */
.offerings-page {
  padding: 5rem 5%;
  background: var(--cream);
}
.disclaimer-bar {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  font-size: 0.88rem;
  color: #5A4A3C;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1100px;
  margin: 0 auto 3rem;
  flex-wrap: wrap;
}
.disclaimer-bar .btn { white-space: nowrap; flex-shrink: 0; }
.category-tiles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
  max-width: 1100px;
  margin: 0 auto 4rem;
}
.cat-tile {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  text-decoration: none;
}
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61,46,34,0.82) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
}
.cat-tile-name {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.2;
}
.cat-tile-count {
  font-size: 0.75rem;
  color: rgba(250,248,244,0.70);
  font-weight: 600;
  letter-spacing: 0.08em;
}
.menu-category {
  max-width: 1100px;
  margin: 0 auto 4rem;
  padding-top: 1rem;
}
.menu-category-header {
  border-bottom: 2px solid var(--border);
  padding-bottom: 1rem;
  margin-bottom: 2rem;
  display: flex;
  align-items: baseline;
  gap: 1rem;
}
.menu-category-header h2 { font-size: 1.8rem; }
.menu-category-header .label { margin-bottom: 0; }
.menu-items { display: flex; flex-direction: column; gap: 0; }
.menu-item {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: start;
}
.menu-item:last-child { border-bottom: none; }
.menu-item-info h4 { margin-bottom: 0.3rem; color: var(--dark); }
.menu-item-info p { font-size: 0.88rem; }
.badge {
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  white-space: nowrap;
  margin-top: 3px;
}
.badge-signature { background: var(--accent); color: var(--cream); }
.badge-bestseller { background: var(--highlight); color: #fff; }
.badge-new { background: #E8A030; color: #fff; }
.menu-cta {
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  padding: 3rem;
  background: var(--bg-alt);
  border-radius: var(--radius);
}
.menu-cta h3 { margin-bottom: 0.75rem; }
.menu-cta p { margin-bottom: 1.5rem; }

/* ============================================================
   17. GALLERY PAGE
   ============================================================ */
.gallery-page {
  padding: 5rem 5%;
  background: var(--cream);
}
.masonry {
  columns: 4;
  column-gap: 0.75rem;
  max-width: 1200px;
  margin: 0 auto;
}
.masonry-item {
  display: inline-block;
  width: 100%;
  margin-bottom: 0.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
  break-inside: avoid;
}
.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(61,46,34,0.45);
  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 { color: #fff; width: 32px; height: 32px; }

/* Lightbox */
.lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  align-items: center;
  justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 88vh;
  border-radius: var(--radius);
  object-fit: contain;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-close:hover { background: rgba(255,255,255,0.30); }
.lightbox-prev, .lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: none;
  cursor: pointer;
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans);
}
.lightbox-prev:hover, .lightbox-next:hover { background: rgba(255,255,255,0.30); }
.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }
.lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.82rem;
  color: rgba(255,255,255,0.65);
  font-family: var(--ff-body);
}
.gallery-section-label {
  max-width: 1200px;
  margin: 0 auto 1rem;
  padding: 0;
}
.gallery-cta {
  max-width: 1200px;
  margin: 3rem auto 0;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 3rem;
  text-align: center;
}
.gallery-cta h3 { margin-bottom: 0.75rem; }
.gallery-cta p { margin-bottom: 1.5rem; }
.gallery-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-page {
  padding: 5rem 5%;
  background: var(--cream);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  max-width: 1100px;
  margin: 0 auto;
}
.contact-block {
  margin-bottom: 2rem;
}
.contact-block h3 { font-size: 1.05rem; margin-bottom: 1rem; font-family: var(--ff-body); font-weight: 700; color: var(--dark); }
.contact-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}
.contact-item svg { width: 18px; height: 18px; color: var(--highlight); flex-shrink: 0; margin-top: 2px; }
.contact-item a { color: var(--accent); }
.contact-item a:hover { color: var(--dark); }
.hours-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table td { padding: 0.5rem 0; }
.hours-table td:last-child { text-align: right; font-weight: 600; }
.hours-table .peak { color: var(--highlight); font-weight: 700; }
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.contact-form-wrap h3 { margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1.25rem; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.9rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--trans);
  outline: none;
}
.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: #c0392b;
}
.form-group textarea { resize: vertical; min-height: 120px; }
#formSuccess {
  display: none;
  text-align: center;
  padding: 2rem;
}
#formSuccess svg { width: 56px; height: 56px; color: var(--highlight); margin: 0 auto 1rem; }
#formSuccess h3 { margin-bottom: 0.5rem; }
#formSuccess p { font-size: 0.9rem; }

.map-placeholder {
  max-width: 1100px;
  margin: 4rem auto 0;
  background: var(--bg-alt);
  border-radius: var(--radius);
  padding: 3rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: center;
  border: 1px solid var(--border);
}
.map-pin { color: var(--highlight); flex-shrink: 0; }
.map-pin svg { width: 40px; height: 40px; }
.map-info h4 { margin-bottom: 0.4rem; font-size: 1rem; }
.map-info p { font-size: 0.88rem; margin-bottom: 0.6rem; }
.map-note {
  font-size: 0.8rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 0.75rem;
}

/* ============================================================
   19. FAQ ACCORDION
   ============================================================ */
.faq {
  padding: 5rem 5%;
  background: var(--bg-alt);
}
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.faq-item {
  background: var(--cream);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-align: left;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
}
.faq-icon {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  color: var(--accent);
  transition: all var(--trans);
}
.faq-item.open .faq-icon { background: var(--accent); color: var(--cream); border-color: var(--accent); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 1.5rem 1.25rem;
  font-size: 0.9rem;
  color: #5A4A3C;
  line-height: 1.7;
}

/* ============================================================
   20. SCROLL-TO-TOP
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent);
  color: var(--cream);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(61,46,34,0.20);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans), transform var(--trans);
  z-index: 500;
}
.scroll-top.visible { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--dark); 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(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .masonry { columns: 3; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .about-cta-inner { grid-template-columns: 1fr; }
  .about-cta-img { max-height: 300px; overflow: hidden; }
  .contact-inner { grid-template-columns: 1fr; }
  .map-placeholder { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .teaser-inner { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .about-story-inner { grid-template-columns: 1fr; }
  .masonry { columns: 2; }
  .feed-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .category-tiles { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr 1fr; }
  .offerings-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 1; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
  .category-tiles { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
}
