/*
  Design rationale: Deep indigo-charcoal on muted dusty rose and warm champagne evokes the refined,
  Japanese-Taiwanese artisanal bakery aesthetic — intimate, premium, and handcrafted without being
  overly sweet or rustic.
  Heading: Gilda Display — elegant classical roman serif with refined proportions, feels artisanal
            and elevated without the heaviness of slab serifs used in previous builds.
  Body: Barlow — clean, humanist sans-serif with open letterforms; highly legible for product
        descriptions and menu copy, never previously used as a body font in this portfolio.
*/

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

/* ============================================================
   1. RESET & CUSTOM PROPERTIES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --dark:       #1A1625;
  --bg-alt:     #231D30;
  --accent:     #C47A8A;
  --highlight:  #E8C98A;
  --cream:      #F7F2EC;
  --cream-dim:  rgba(247, 242, 236, 0.65);
  --accent-dim: rgba(196, 122, 138, 0.14);
  --border:     rgba(196, 122, 138, 0.22);
  --ff-display: 'Gilda Display', serif;
  --ff-body:    'Barlow', sans-serif;
  --nav-h:      72px;
  --transition: 0.3s ease;
  --radius:     8px;
  --shadow:     0 4px 24px rgba(0,0,0,0.35);
}

html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--ff-body); cursor: pointer; border: none; background: none; }

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4 {
  font-family: var(--ff-display);
  line-height: 1.2;
  color: var(--cream);
}
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.1rem; font-family: var(--ff-body); font-weight: 600; }
p  { color: var(--cream-dim); line-height: 1.8; }
.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}
.section-header { text-align: center; margin-bottom: 3rem; }
.section-header h2 { margin-bottom: 0.5rem; }
.section-header p   { max-width: 560px; margin: 0 auto; }

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  font-family: var(--ff-body); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em; border-radius: var(--radius);
  transition: all var(--transition); white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.btn-primary {
  background: var(--accent); color: var(--dark);
}
.btn-primary:hover { background: #d48d9c; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(196,122,138,0.4); }
.btn-ghost {
  background: transparent; color: var(--cream);
  border: 1.5px solid rgba(247,242,236,0.4);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(247,242,236,0.08); }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: var(--accent-dim); }
.btn-highlight {
  background: var(--highlight); color: var(--dark);
}
.btn-highlight:hover { background: #f0d49e; transform: translateY(-2px); }

/* ============================================================
   4. NAVBAR
   ============================================================ */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  height: var(--nav-h);
  display: flex; align-items: center;
  padding: 0 5%;
  transition: background var(--transition), box-shadow var(--transition);
}
.navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.nav-logo {
  display: flex; align-items: center; gap: 0.75rem;
  font-family: var(--ff-display); font-size: 1.1rem; color: var(--cream);
  text-decoration: none; flex-shrink: 0;
}
.nav-logo img {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--accent);
}
.nav-links {
  display: flex; align-items: center; gap: 2rem;
  margin: 0 auto;
  padding: 0;
}
.nav-links a {
  font-size: 0.88rem; font-weight: 500; letter-spacing: 0.04em;
  color: var(--cream-dim);
  transition: color var(--transition); padding-bottom: 2px;
  border-bottom: 1.5px solid transparent;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--cream);
  border-bottom-color: var(--accent);
}
.nav-cta { margin-left: auto; }
.hamburger {
  display: none; flex-direction: column; justify-content: space-between;
  width: 28px; height: 20px; cursor: pointer; margin-left: auto;
}
.hamburger span {
  display: block; width: 100%; height: 2px;
  background: var(--cream); border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
.mobile-nav {
  display: none; position: fixed; inset: 0; z-index: 999;
  background: var(--dark);
  flex-direction: column; align-items: center; justify-content: center;
  gap: 2.5rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-family: var(--ff-display); font-size: 1.8rem;
  color: var(--cream); transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav-cta { margin-top: 1rem; }

/* ============================================================
   5. HERO
   ============================================================ */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: center;
  background-image: url('images/banner.jpg');
  background-size: cover; background-position: center;
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg,
    rgba(26,22,37,0.82) 0%,
    rgba(26,22,37,0.55) 60%,
    rgba(26,22,37,0.35) 100%);
}
.hero-content {
  position: relative; z-index: 1;
  padding: 0 5%; max-width: 700px;
}
.hero-content .label { margin-bottom: 1rem; }
.hero-content h1 { margin-bottom: 1.25rem; color: var(--cream); }
.hero-content p {
  font-size: 1.15rem; margin-bottom: 2.5rem;
  color: rgba(247,242,236,0.85);
}
.hero-btns { 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.5rem;
  color: var(--cream-dim); font-size: 0.75rem; letter-spacing: 0.1em;
  animation: bounce 2s infinite;
}
.scroll-indicator svg { width: 20px; height: 20px; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   6. FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--accent);
  padding: 2.5rem 5%;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  max-width: 1200px; margin: 0 auto;
}
.feature-item {
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 0.75rem;
}
.feature-item svg { width: 32px; height: 32px; color: var(--dark); }
.feature-item h4 { color: var(--dark); font-size: 0.95rem; font-weight: 700; margin: 0; }
.feature-item p  { color: rgba(26,22,37,0.7); font-size: 0.82rem; line-height: 1.5; margin: 0; }

/* ============================================================
   7. OFFERINGS GRID (home 3×3 + offerings page filter grid)
   ============================================================ */
.offerings-section { padding: 6rem 5%; }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1200px; margin: 0 auto;
}
.offering-tile {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 1;
  cursor: pointer;
  background: var(--bg-alt);
}
.offering-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.offering-tile:hover img { transform: scale(1.08); }
.offering-tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,37,0.9) 0%, transparent 50%);
  opacity: 0; transition: opacity var(--transition);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 1.25rem;
}
.offering-tile:hover .offering-tile-overlay { opacity: 1; }
.offering-tile-overlay .label { color: var(--highlight); margin-bottom: 0.25rem; }
.offering-tile-overlay h4 { color: var(--cream); }
/* placeholder tiles when no image */
.offering-tile.placeholder-tile {
  background: var(--bg-alt);
  display: flex; align-items: center; justify-content: center;
}
.tile-placeholder-inner {
  text-align: center; padding: 1.5rem;
}
.tile-placeholder-inner svg { width: 40px; height: 40px; color: var(--accent); margin-bottom: 0.5rem; }
.tile-placeholder-inner span { font-size: 0.85rem; color: var(--cream-dim); }

/* Offerings page filter grid */
.filter-bar {
  display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.5rem 1.25rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem; font-weight: 500;
  color: var(--cream-dim);
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--accent); color: var(--dark);
  border-color: var(--accent);
}
.category-tile {
  position: relative; overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
  aspect-ratio: 4/3;
}
.category-tile:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.category-tile img { width: 100%; height: 100%; object-fit: cover; }
.category-tile-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.25rem;
  background: linear-gradient(to top, rgba(26,22,37,0.95) 0%, transparent 100%);
}
.category-tile-info h3 { font-size: 1.2rem; margin-bottom: 0.2rem; }
.category-tile-info span { font-size: 0.78rem; color: var(--accent); font-weight: 500; }

/* ============================================================
   8. BRAND TEASER SPLIT
   ============================================================ */
.brand-teaser {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 560px;
}
.brand-teaser-image {
  position: relative; overflow: hidden;
}
.brand-teaser-image img {
  width: 100%; height: 100%; object-fit: cover;
}
.brand-teaser-image.placeholder-img {
  background: linear-gradient(135deg, var(--bg-alt), var(--accent-dim));
  display: flex; align-items: center; justify-content: center;
  min-height: 400px;
}
.brand-teaser-content {
  background: var(--bg-alt);
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.25rem;
}
.brand-teaser-content .label { margin-bottom: 0; }
.brand-teaser-content h2 { margin-bottom: 0.5rem; }
.brand-teaser-content p  { margin-bottom: 0.75rem; }

/* ============================================================
   9. STATS ROW
   ============================================================ */
.stats-section {
  background: var(--bg-alt);
  padding: 4rem 5%;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 2rem; max-width: 1200px; margin: 0 auto; text-align: center;
}
.stat-item h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--accent); margin-bottom: 0.35rem;
}
.stat-item p { font-size: 0.9rem; color: var(--cream-dim); margin: 0; }

/* ============================================================
   10. REVIEW CARDS
   ============================================================ */
.reviews-section { padding: 6rem 5%; }
.reviews-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; max-width: 1200px; margin: 0 auto;
}
.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; }
.review-stars svg { width: 16px; height: 16px; color: var(--highlight); }
.review-text { color: var(--cream-dim); font-style: italic; flex: 1; }
.review-author { font-weight: 600; font-size: 0.9rem; color: var(--accent); }
.review-city   { font-size: 0.8rem; color: var(--cream-dim); }

/* ============================================================
   11. SOCIAL CTA + PLATFORM BUTTONS
   ============================================================ */
.social-cta-section {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 5rem 5%; text-align: center;
}
.social-cta-section h2 { margin-bottom: 1rem; }
.social-cta-section p  { max-width: 480px; margin: 0 auto 2rem; }
.platform-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }
.platform-btn {
  display: inline-flex; align-items: center; gap: 0.6rem;
  padding: 0.7rem 1.5rem;
  border: 1.5px solid var(--border);
  border-radius: 100px;
  font-size: 0.88rem; font-weight: 500;
  color: var(--cream);
  transition: all var(--transition);
}
.platform-btn svg { width: 20px; height: 20px; }
.platform-btn:hover { background: var(--accent-dim); border-color: var(--accent); color: var(--accent); }
.platform-btn.whatsapp:hover { background: rgba(37,211,102,0.1); border-color: #25D366; color: #25D366; }
.platform-btn.instagram:hover { background: rgba(196,122,138,0.1); border-color: var(--accent); color: var(--accent); }
.platform-btn.facebook:hover { background: rgba(24,119,242,0.1); border-color: #1877F2; color: #1877F2; }

/* ============================================================
   12. SOCIAL FEED GRID
   ============================================================ */
.social-feed-section { padding: 6rem 5%; }
.social-feed-header {
  text-align: center; margin-bottom: 2.5rem;
}
.social-feed-grid {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem; max-width: 1200px; margin: 0 auto;
}
.feed-item {
  aspect-ratio: 1; overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  background: var(--bg-alt);
  cursor: pointer;
}
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.feed-item:hover img { transform: scale(1.1); }
.feed-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(26,22,37,0.3);
  opacity: 0; transition: opacity var(--transition);
}
.feed-item:hover::after { opacity: 1; }
/* placeholder feed items */
.feed-item.placeholder-feed {
  display: flex; align-items: center; justify-content: center;
  background: var(--bg-alt);
}
.feed-item.placeholder-feed svg { width: 32px; height: 32px; color: var(--border); }

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
  background: var(--dark);
  border-top: 1px solid var(--border);
  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: 4rem;
}
.footer-brand .nav-logo { margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; color: var(--cream-dim); margin-bottom: 1.5rem; max-width: 260px; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 38px; height: 38px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%;
  color: var(--cream-dim);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.footer-social svg { width: 18px; height: 18px; }
.footer-col h4 { color: var(--cream); font-weight: 600; font-size: 0.9rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 1.25rem; }
.footer-col ul { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-col ul a {
  font-size: 0.88rem; color: var(--cream-dim);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex; gap: 0.75rem; align-items: flex-start;
  margin-bottom: 1rem;
}
.footer-contact-item svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.footer-contact-item p { font-size: 0.85rem; color: var(--cream-dim); margin: 0; }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 0;
  max-width: 1200px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: 0.82rem; color: var(--cream-dim); margin: 0; }
.footer-badges { display: flex; gap: 0.75rem; }
.footer-badge {
  font-size: 0.75rem; font-weight: 500;
  padding: 0.3rem 0.85rem;
  border: 1px solid var(--border);
  border-radius: 100px;
  color: var(--cream-dim);
}

/* ============================================================
   14. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative; height: 50vh; min-height: 380px;
  display: flex; align-items: flex-end;
  padding: 0 5% 4rem;
  background-image: var(--page-hero-bg, url('images/banner.jpg'));
  background-size: cover; background-position: center;
  margin-top: var(--nav-h);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,22,37,0.92) 0%, rgba(26,22,37,0.35) 100%);
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero-content .label { margin-bottom: 0.75rem; }
.page-hero-content h1 { margin-bottom: 0.5rem; }
.page-hero-content p  { font-size: 1.1rem; color: rgba(247,242,236,0.8); margin: 0; }

/* ============================================================
   15. ABOUT PAGE SECTIONS
   ============================================================ */
.about-origin {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; max-width: 1200px; margin: 0 auto;
  padding: 6rem 5%;
  align-items: center;
}
.about-origin-image {
  border-radius: var(--radius); overflow: hidden;
  aspect-ratio: 3/4;
  background: var(--bg-alt);
}
.about-origin-image img { width: 100%; height: 100%; object-fit: cover; }
.about-origin-image.placeholder-img {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--bg-alt), var(--accent-dim));
}
.origin-text .label { margin-bottom: 0.75rem; }
.origin-text h2 { margin-bottom: 1.5rem; }
.origin-text p  { margin-bottom: 1rem; }
.philosophy-section { background: var(--bg-alt); padding: 6rem 5%; }
.philosophy-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}
.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  text-align: center;
}
.philosophy-card svg { width: 40px; height: 40px; color: var(--accent); margin-bottom: 1.25rem; }
.philosophy-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.philosophy-card p  { font-size: 0.9rem; }
.values-section { padding: 6rem 5%; max-width: 1200px; margin: 0 auto; }
.value-item {
  display: grid; grid-template-columns: 80px 1fr;
  gap: 2rem; align-items: start;
  padding: 2rem 0; border-bottom: 1px solid var(--border);
}
.value-item:last-child { border-bottom: none; }
.value-number { font-family: var(--ff-display); font-size: 2.5rem; color: var(--border); line-height: 1; }
.value-text h3 { margin-bottom: 0.5rem; font-size: 1.1rem; }
.value-text p  { font-size: 0.9rem; margin: 0; }
.timeline-section { background: var(--bg-alt); padding: 6rem 5%; }
.timeline {
  max-width: 800px; margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: ''; position: absolute; left: 120px; top: 0; bottom: 0;
  width: 1px; background: var(--border);
}
.timeline-item {
  display: grid; grid-template-columns: 120px 1fr;
  gap: 2rem; margin-bottom: 3rem; position: relative;
}
.timeline-item::before {
  content: ''; position: absolute;
  left: 112px; top: 6px;
  width: 16px; height: 16px;
  background: var(--accent);
  border: 3px solid var(--dark);
  border-radius: 50%;
}
.timeline-date {
  text-align: right; font-size: 0.85rem;
  color: var(--accent); font-weight: 600; padding-top: 2px;
}
.timeline-content h4 { margin-bottom: 0.5rem; color: var(--cream); }
.timeline-content p  { font-size: 0.9rem; }
.about-cta-split {
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 420px;
}
.about-cta-image { overflow: hidden; background: var(--bg-alt); }
.about-cta-image img { width: 100%; height: 100%; object-fit: cover; }
.about-cta-image.placeholder-img {
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--accent-dim), var(--bg-alt));
}
.about-cta-content {
  padding: 5rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
  gap: 1.25rem; background: var(--dark);
}
.about-cta-content h2 { margin-bottom: 0.5rem; }
.about-cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* ============================================================
   16. OFFERINGS PAGE
   ============================================================ */
.offerings-page { padding: 5rem 5%; max-width: 1200px; margin: 0 auto; }
.category-tiles-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem; margin-bottom: 5rem;
}
.category-section { margin-bottom: 5rem; }
.category-section-header {
  display: flex; align-items: center; gap: 1.5rem;
  margin-bottom: 2.5rem; padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--border);
}
.category-section-header h2 { font-size: 1.8rem; }
.category-desc { color: var(--cream-dim); font-size: 0.95rem; max-width: 500px; }
.menu-items-list { display: flex; flex-direction: column; gap: 1.5rem; }
.menu-item {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem 2rem;
  position: relative;
}
.menu-item-header {
  display: flex; align-items: flex-start;
  justify-content: space-between; gap: 1rem;
  margin-bottom: 0.75rem;
}
.menu-item h4 { font-size: 1.1rem; color: var(--cream); }
.menu-item p   { color: var(--cream-dim); font-size: 0.92rem; line-height: 1.7; margin: 0; }
.badge {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.25rem 0.75rem; border-radius: 100px;
  white-space: nowrap; flex-shrink: 0;
}
.badge-signature { background: var(--accent); color: var(--dark); }
.badge-bestseller { background: var(--highlight); color: var(--dark); }
.badge-new { background: rgba(100,220,160,0.2); color: #64DCA0; border: 1px solid #64DCA0; }
.disclaimer-bar {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 3rem;
}
.disclaimer-bar svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; }
.disclaimer-bar p  { font-size: 0.88rem; margin: 0; }
.offerings-bottom-cta {
  text-align: center; padding: 5rem 5%;
  background: var(--bg-alt); border-radius: var(--radius);
  margin: 3rem 0;
}
.offerings-bottom-cta h2 { margin-bottom: 1rem; }
.offerings-bottom-cta p  { max-width: 480px; margin: 0 auto 2rem; }

/* ============================================================
   17. GALLERY PAGE
   ============================================================ */
.gallery-page { padding: 4rem 5%; }
.gallery-filter { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 3rem; }
.gallery-section { margin-bottom: 4rem; }
.gallery-section-header { margin-bottom: 1.5rem; }
.gallery-section-header h3 { font-size: 1.3rem; margin-bottom: 0.25rem; }
.gallery-section-header span { font-size: 0.8rem; color: var(--accent); font-weight: 500; }
.masonry-grid {
  columns: 4; column-gap: 0.75rem;
}
.masonry-item {
  break-inside: avoid; margin-bottom: 0.75rem;
  border-radius: var(--radius); overflow: hidden;
  cursor: pointer; position: relative;
  display: block;
}
.masonry-item img { width: 100%; display: block; }
.masonry-item::after {
  content: ''; position: absolute; inset: 0;
  background: rgba(26,22,37,0.3);
  opacity: 0; transition: opacity var(--transition);
}
.masonry-item:hover::after { opacity: 1; }
/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(26,22,37,0.97);
  align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox-img {
  max-width: 90vw; max-height: 85vh;
  object-fit: contain; border-radius: var(--radius);
}
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%;
  color: var(--cream); font-size: 1.25rem; cursor: pointer;
  transition: all var(--transition);
}
.lightbox-close:hover { background: var(--accent); border-color: var(--accent); color: var(--dark); }
.lightbox-prev, .lightbox-next {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 48px; height: 48px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--border); border-radius: 50%;
  color: var(--cream); cursor: pointer;
  transition: all var(--transition);
}
.lightbox-prev { left: 2rem; }
.lightbox-next { right: 2rem; }
.lightbox-prev:hover, .lightbox-next:hover {
  background: var(--accent); border-color: var(--accent); color: var(--dark);
}
.lightbox-prev svg, .lightbox-next svg, .lightbox-close svg { width: 20px; height: 20px; }
.lightbox-counter {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  font-size: 0.85rem; color: var(--cream-dim);
}
.gallery-cta {
  text-align: center; padding: 4rem 5%;
  background: var(--bg-alt); margin-top: 3rem; border-radius: var(--radius);
}
.gallery-cta h2 { margin-bottom: 1rem; }
.gallery-cta p  { max-width: 480px; margin: 0 auto 2rem; }
.gallery-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-page {
  padding: 5rem 5%; max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.25fr;
  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.75rem;
}
.contact-block-header {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1rem;
}
.contact-block-header svg { width: 22px; height: 22px; color: var(--accent); }
.contact-block-header h4 { font-size: 1rem; color: var(--cream); margin: 0; }
.contact-block p { font-size: 0.9rem; color: var(--cream-dim); margin: 0; }
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 0.4rem 0; font-size: 0.88rem; color: var(--cream-dim); }
.hours-table td:first-child { font-weight: 500; color: var(--cream); min-width: 140px; }
.hours-table tr.highlight td { color: var(--accent); }
.contact-link {
  color: var(--accent); font-size: 0.9rem; font-weight: 500;
  display: inline-flex; align-items: center; gap: 0.35rem;
  transition: color var(--transition);
}
.contact-link:hover { color: var(--cream); }
/* Form */
.contact-form-wrapper { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-form-wrapper h2 { margin-bottom: 0.5rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group label { font-size: 0.85rem; font-weight: 500; color: var(--cream); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-family: var(--ff-body); font-size: 0.9rem;
  color: var(--cream);
  transition: border-color var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none; border-color: var(--accent);
}
.form-group input.invalid,
.form-group select.invalid,
.form-group textarea.invalid {
  border-color: #e05555;
}
.form-group select option { background: var(--dark); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; }
#formSuccess {
  display: none; text-align: center;
  padding: 3rem 2rem;
  background: var(--bg-alt); border: 1px solid var(--border);
  border-radius: var(--radius);
}
#formSuccess svg { width: 48px; height: 48px; color: var(--accent); margin-bottom: 1rem; }
#formSuccess h3 { margin-bottom: 0.75rem; }
#formSuccess p  { font-size: 0.9rem; }
/* Map placeholder */
.map-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 3rem 2rem;
  text-align: center;
  margin-top: 2rem;
  grid-column: 1 / -1;
}
.map-placeholder svg { width: 40px; height: 40px; color: var(--accent); margin-bottom: 1rem; }
.map-placeholder h4 { margin-bottom: 0.5rem; }
.map-placeholder p  { font-size: 0.9rem; margin-bottom: 1.25rem; }
.map-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-size: 0.9rem; font-weight: 500; color: var(--accent);
  border: 1px solid var(--accent); border-radius: 100px;
  padding: 0.5rem 1.25rem;
  transition: all var(--transition);
}
.map-link:hover { background: var(--accent); color: var(--dark); }

/* ============================================================
   19. FAQ ACCORDION
   ============================================================ */
.faq-section { padding: 6rem 5%; background: var(--bg-alt); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-question {
  width: 100%; display: flex; justify-content: space-between; align-items: center;
  padding: 1.5rem 0; gap: 1rem;
  font-family: var(--ff-body); font-size: 1rem; font-weight: 600;
  color: var(--cream); text-align: left; cursor: pointer;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-question svg {
  width: 20px; height: 20px; flex-shrink: 0;
  color: var(--accent);
  transition: transform var(--transition);
}
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding-bottom: 1.5rem;
  color: var(--cream-dim); font-size: 0.92rem; line-height: 1.8;
}
.faq-item.open .faq-answer { max-height: 500px; }
.contact-social-cta {
  padding: 5rem 5%; text-align: center;
  border-top: 1px solid var(--border);
}
.contact-social-cta h2 { margin-bottom: 1rem; }
.contact-social-cta p  { max-width: 480px; margin: 0 auto 2rem; }

/* ============================================================
   20. SCROLL-TO-TOP BUTTON
   ============================================================ */
.scroll-top-btn {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 900;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  background: var(--accent); color: var(--dark);
  border-radius: 50%; cursor: pointer;
  box-shadow: 0 4px 16px rgba(196,122,138,0.4);
  opacity: 0; pointer-events: none;
  transition: opacity var(--transition), transform var(--transition);
}
.scroll-top-btn.visible { opacity: 1; pointer-events: auto; }
.scroll-top-btn:hover { transform: translateY(-4px); }
.scroll-top-btn 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 — breakpoints at 1024px, 768px, 480px
   ============================================================ */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .brand-teaser  { grid-template-columns: 1fr; }
  .brand-teaser-image { min-height: 320px; aspect-ratio: unset; }
  .about-origin  { grid-template-columns: 1fr; gap: 3rem; }
  .about-origin-image { aspect-ratio: 16/9; }
  .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .about-cta-split { grid-template-columns: 1fr; }
  .about-cta-image { min-height: 280px; }
  .contact-page  { grid-template-columns: 1fr; }
  .map-placeholder { grid-column: 1; }
  .category-tiles-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid  { columns: 3; }
  .social-feed-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .category-tiles-grid { grid-template-columns: 1fr; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .timeline::before { left: 80px; }
  .timeline-item { grid-template-columns: 80px 1fr; }
  .timeline-item::before { left: 72px; }
  .masonry-grid { columns: 2; }
  .social-feed-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .brand-teaser-content { padding: 3rem 2rem; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  .lightbox-prev { left: 0.75rem; }
  .lightbox-next { right: 0.75rem; }
}
@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .hero-btns { flex-direction: column; }
  .offerings-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .masonry-grid { columns: 2; }
  .social-feed-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .about-cta-btns { flex-direction: column; }
  .platform-buttons { flex-direction: column; align-items: center; }
}
