/* ============================================================
   FLOSSOM KITCHEN + CAFE — styles.css
   Palette: Logo-matched Deep Plum (#4e2e2f) + Warm Rose + Warm Cream
   Fonts: Bodoni Moda (display) + Lato (body)
   ============================================================ */

/* ── 1. GOOGLE FONTS ──────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400;1,6..96,500&family=Lato:ital,wght@0,300;0,400;0,700;0,900;1,300;1,400&display=swap');

/* ── 2. CSS CUSTOM PROPERTIES ─────────────────────────────── */
:root {
  --dark:        #4E2E2F;
  --bg-alt:      #6B3A3C;
  --accent:      #C4756A;
  --highlight:   #8BAF7C;
  --cream:       #FAF3EE;
  --cream-dim:   rgba(250, 243, 238, 0.65);
  --accent-dim:  rgba(196, 117, 106, 0.14);
  --border:      rgba(196, 117, 106, 0.22);
  --gold:        #C9A96A;
  --gold-dim:    rgba(201, 169, 106, 0.18);
  --dark-80:     rgba(78, 46, 47, 0.80);
  --dark-60:     rgba(78, 46, 47, 0.60);
  --white:       #FFFFFF;
  --ff-display:  'Bodoni Moda', Georgia, serif;
  --ff-body:     'Lato', 'Helvetica Neue', Arial, sans-serif;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 4px 24px rgba(78, 46, 47, 0.18);
  --shadow-lg:   0 12px 48px rgba(78, 46, 47, 0.28);
  --transition:  0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── 3. RESET & BASE ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-body);
  background: var(--cream);
  color: var(--dark);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--ff-body); }

/* ── 4. TYPOGRAPHY ────────────────────────────────────────── */
h1, h2, h3, h4, h5 {
  font-family: var(--ff-display);
  font-weight: 600;
  line-height: 1.2;
  color: var(--dark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { font-size: 1.05rem; color: #4A3035; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
  display: block;
}

.section-title { margin-bottom: 1rem; }
.section-intro { font-size: 1.1rem; color: #5C3038; max-width: 640px; }

/* ── 5. LAYOUT UTILITIES ──────────────────────────────────── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.container--wide { max-width: 1400px; margin: 0 auto; padding: 0 2rem; }

section { padding: 80px 0; }

.text-center { text-align: center; }
.text-center .section-intro { margin: 0 auto; }

.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* ── 6. BUTTONS ───────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--ff-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
}

.btn--primary {
  background: var(--accent);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(196, 117, 106, 0.35);
}
.btn--primary:hover {
  background: #B5655A;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 117, 106, 0.45);
}

.btn--secondary {
  background: transparent;
  border: 2px solid var(--accent);
  color: var(--accent);
}
.btn--secondary:hover {
  background: var(--accent);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--ghost {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.6);
  color: var(--white);
  backdrop-filter: blur(4px);
}
.btn--ghost:hover {
  background: rgba(255,255,255,0.25);
  transform: translateY(-2px);
}

.btn--dark {
  background: var(--dark);
  color: var(--cream);
}
.btn--dark:hover {
  background: var(--bg-alt);
  transform: translateY(-2px);
}

/* ── 7. NAVIGATION ────────────────────────────────────────── */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-nav.scrolled {
  background: rgba(78, 46, 47, 0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.2rem 2rem;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
}

.nav-logo-text {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.2;
}
.nav-logo-text span {
  display: block;
  font-size: 0.65rem;
  font-family: var(--ff-body);
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  padding: 0.5rem 0.9rem;
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover,
.nav-links a.active { color: var(--accent); }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all var(--transition);
  border-radius: 2px;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav drawer */
.nav-drawer {
  display: none;
  flex-direction: column;
  background: rgba(78, 46, 47, 0.98);
  padding: 1.5rem 2rem;
  border-top: 1px solid var(--border);
}
.nav-drawer.open { display: flex; }
.nav-drawer a {
  font-size: 1rem;
  font-weight: 600;
  color: var(--cream);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: 0.05em;
}
.nav-drawer a:last-child { border-bottom: none; }

/* ── 8. HERO / PAGE HEROES ────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 8s ease;
}
.hero:hover .hero__bg { transform: scale(1.03); }

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(78, 46, 47, 0.72) 0%,
    rgba(78, 46, 47, 0.45) 50%,
    rgba(78, 46, 47, 0.65) 100%
  );
}

.hero__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  max-width: 860px;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  padding: 0.35rem 1rem;
  border: 1px solid rgba(201, 169, 106, 0.4);
  border-radius: 50px;
  backdrop-filter: blur(4px);
}

.hero__title {
  font-family: var(--ff-display);
  font-size: clamp(2.8rem, 6vw, 5rem);
  color: var(--cream);
  text-shadow: 0 2px 16px rgba(0,0,0,0.3);
  margin-bottom: 0.75rem;
  font-weight: 700;
}

.hero__subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(250, 243, 238, 0.88);
  margin-bottom: 0.5rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.hero__tagline {
  font-family: var(--ff-display);
  font-style: italic;
  font-size: clamp(1.2rem, 2.2vw, 1.6rem);
  color: var(--gold);
  margin-bottom: 2.5rem;
}

.hero__ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.hero__scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.6);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: bounce 2.5s infinite;
}
.hero__scroll svg { width: 20px; height: 20px; }

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* Page hero (shorter) */
.page-hero {
  position: relative;
  height: 400px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}

.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(78, 46, 47,0.85) 0%, rgba(78, 46, 47,0.3) 60%, transparent 100%);
}

.page-hero__content {
  position: relative;
  z-index: 2;
  padding: 3rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-hero__content h1 { color: var(--cream); font-size: clamp(2rem, 4vw, 3.2rem); }
.page-hero__content p {
  color: rgba(250,243,238,0.8);
  font-size: 1.1rem;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* ── 9. FEATURES STRIP ────────────────────────────────────── */
.features-strip {
  background: var(--dark);
  padding: 0;
  overflow: hidden;
}

.features-inner {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background var(--transition);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--bg-alt); }

.feature-item__icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.feature-item__title {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  line-height: 1.3;
}

/* ── 10. OFFERINGS GRID ───────────────────────────────────── */
.offerings-section { background: var(--cream); }

.section-header {
  margin-bottom: 3rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.offering-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
}
.offering-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.offering-card:hover img { transform: scale(1.08); }

.offering-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(78, 46, 47,0.85) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0.9;
  transition: opacity var(--transition);
}
.offering-card:hover .offering-card__overlay { opacity: 1; }

.offering-card__label {
  font-family: var(--ff-display);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  line-height: 1.3;
  text-shadow: 0 1px 8px rgba(0,0,0,0.4);
}
.offering-card__cat {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-top: 0.2rem;
}

/* ── 11. BRAND TEASER ─────────────────────────────────────── */
.brand-teaser { background: #F5EDE8; }

.brand-teaser__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.brand-teaser__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/5;
}

.brand-teaser__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}
.brand-teaser__img:hover img { transform: scale(1.04); }

.brand-teaser__text p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
  color: #4A3035;
}

.brand-teaser__sig {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.brand-teaser__sig-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
}
.brand-teaser__sig-info strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--dark);
}
.brand-teaser__sig-info span {
  font-size: 0.8rem;
  color: var(--accent);
  letter-spacing: 0.05em;
}

/* ── 12. STATS ROW ────────────────────────────────────────── */
.stats-row {
  background: var(--dark);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 2rem 1.5rem;
  border-right: 1px solid rgba(255,255,255,0.1);
  transition: background var(--transition);
}
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: var(--bg-alt); }

.stat-item__number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.4rem;
}

.stat-item__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250, 243, 238, 0.65);
  line-height: 1.4;
}

/* ── 13. REVIEW CARDS ─────────────────────────────────────── */
.reviews-section { background: var(--cream); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.review-stars {
  display: flex;
  gap: 3px;
  margin-bottom: 1rem;
}
.review-stars span { color: #F4B942; font-size: 1rem; }

.review-text {
  font-size: 1rem;
  line-height: 1.75;
  color: #4A3035;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-text::before { content: '\201C'; }
.review-text::after { content: '\201D'; }

.review-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.review-meta__avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--accent);
  font-weight: 600;
}
.review-meta__name {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--dark);
}
.review-meta__source {
  font-size: 0.75rem;
  color: #8A6A6E;
}
.review-rating-badge {
  margin-left: auto;
  background: var(--dark);
  color: var(--cream);
  padding: 0.25rem 0.6rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
}

/* ── 14. SOCIAL CTA ───────────────────────────────────────── */
.social-cta {
  background: linear-gradient(135deg, var(--dark) 0%, var(--bg-alt) 100%);
  text-align: center;
  padding: 80px 0;
}

.social-cta h2 {
  color: var(--cream);
  margin-bottom: 1rem;
}
.social-cta p {
  color: rgba(250,243,238,0.75);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

.social-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--cream);
}
.social-link:hover { transform: translateY(-3px); }
.social-link--ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.social-link--fb { background: #1877f2; }
.social-link--wa { background: #25D366; }

/* ── 15. SOCIAL FEED ──────────────────────────────────────── */
.social-feed { background: #F5EDE8; padding: 80px 0; }

.feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.5rem;
  margin-top: 2.5rem;
}

.feed-item {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
  cursor: pointer;
}

.feed-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition);
}

.feed-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(78, 46, 47,0.6);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feed-item:hover img { transform: scale(1.1); }
.feed-item:hover .feed-item__overlay { opacity: 1; }

.feed-item__overlay svg { color: var(--white); width: 28px; height: 28px; }

.feed-follow {
  text-align: center;
  margin-top: 2rem;
}

/* ── 16. FOOTER ───────────────────────────────────────────── */
.site-footer {
  background: var(--dark);
  color: rgba(250,243,238,0.75);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand img {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  margin-bottom: 1rem;
}
.footer-brand-name {
  font-family: var(--ff-display);
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.footer-tagline {
  font-style: italic;
  font-size: 0.9rem;
  color: var(--accent);
  margin-bottom: 1rem;
}
.footer-desc {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(250,243,238,0.6);
  margin-bottom: 1.5rem;
}

.footer-social-row {
  display: flex;
  gap: 0.75rem;
}
.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(250,243,238,0.7);
  transition: all var(--transition);
  font-size: 0.9rem;
}
.footer-social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--white);
}

.footer-col h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1.2rem;
  font-family: var(--ff-body);
}

.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a {
  font-size: 0.9rem;
  color: rgba(250,243,238,0.65);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.9rem;
  font-size: 0.88rem;
  color: rgba(250,243,238,0.7);
  line-height: 1.5;
}
.footer-contact-icon {
  color: var(--accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.footer-contact-item a { color: rgba(250,243,238,0.7); transition: color var(--transition); }
.footer-contact-item a:hover { color: var(--accent); }

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-hours-row:last-child { border-bottom: none; }
.footer-hours-row span:first-child { color: rgba(250,243,238,0.55); }
.footer-hours-row span:last-child { color: var(--cream); }
.footer-hours-note {
  font-size: 0.78rem;
  color: var(--gold);
  margin-top: 0.75rem;
  font-style: italic;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(250,243,238,0.4);
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom a { color: rgba(250,243,238,0.4); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--accent); }

/* ── 17. ABOUT PAGE ───────────────────────────────────────── */
.origin-section { background: var(--cream); }

.origin-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.origin-text p {
  font-size: 1.05rem;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.philosophy-section { background: #F5EDE8; }

.philosophy-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.philosophy-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  text-align: center;
  border-bottom: 4px solid transparent;
  transition: all var(--transition);
  box-shadow: var(--shadow);
}
.philosophy-card:hover {
  transform: translateY(-6px);
  border-bottom-color: var(--accent);
  box-shadow: var(--shadow-lg);
}

.philosophy-card__icon {
  font-size: 2.5rem;
  margin-bottom: 1.2rem;
}
.philosophy-card h3 {
  margin-bottom: 0.75rem;
  font-size: 1.3rem;
}
.philosophy-card p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: #5C3038;
}

.values-section { background: var(--cream); }

.values-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.value-item {
  text-align: center;
  padding: 2rem 1rem;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.value-item:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-4px);
}
.value-item:hover .value-item__title { color: var(--cream); }
.value-item:hover .value-item__icon { transform: scale(1.2); }

.value-item__icon { font-size: 2rem; margin-bottom: 0.75rem; transition: transform var(--transition); }
.value-item__title {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition);
}

.timeline-section { background: #F5EDE8; }

.timeline {
  position: relative;
  max-width: 800px;
  margin: 3rem auto 0;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 2px;
  background: var(--border);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  gap: 2rem;
  margin-bottom: 3rem;
  position: relative;
  align-items: flex-start;
}
.timeline-item:nth-child(odd) { flex-direction: row-reverse; }
.timeline-item:nth-child(odd) .timeline-content { text-align: right; }

.timeline-dot {
  position: absolute;
  left: 50%;
  top: 1rem;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  transform: translateX(-50%);
  z-index: 1;
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.timeline-content {
  flex: 1;
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.timeline-year {
  font-family: var(--ff-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.timeline-title {
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  margin-bottom: 0.4rem;
  letter-spacing: 0.03em;
}
.timeline-desc { font-size: 0.88rem; color: #5C3038; line-height: 1.6; }

/* CTA Split */
.cta-split {
  background: var(--dark);
  padding: 80px 0;
}
.cta-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
.cta-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 3rem;
  text-align: center;
  transition: background var(--transition);
}
.cta-card:hover { background: rgba(255,255,255,0.1); }
.cta-card h3 { color: var(--cream); margin-bottom: 0.75rem; }
.cta-card p { color: rgba(250,243,238,0.65); font-size: 0.95rem; margin-bottom: 2rem; }

/* ── 18. MENU PAGE ────────────────────────────────────────── */
.menu-disclaimer {
  background: var(--gold-dim);
  border: 1px solid rgba(201,169,106,0.3);
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  font-size: 0.9rem;
  color: #4A3035;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.menu-disclaimer svg { color: var(--gold); flex-shrink: 0; }

.category-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin: 2rem 0 4rem;
}

.cat-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.cat-tile:hover {
  background: var(--dark);
  border-color: var(--dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.cat-tile:hover .cat-tile__name { color: var(--cream); }
.cat-tile:hover .cat-tile__count { color: var(--accent); }

.cat-tile__icon { font-size: 1.6rem; line-height: 1; }
.cat-tile__name {
  font-family: var(--ff-display);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--dark);
  transition: color var(--transition);
}
.cat-tile__count {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 700;
  transition: color var(--transition);
}

.menu-section { margin-bottom: 4rem; scroll-margin-top: 100px; }

.menu-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 2px solid var(--border);
}
.menu-section-icon { font-size: 1.5rem; }
.menu-section-header h2 {
  font-size: 1.6rem;
  color: var(--dark);
}
.menu-section-header .item-count {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  margin-left: auto;
}

.menu-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.menu-item {
  background: var(--white);
  padding: 1.5rem;
  transition: background var(--transition);
}
.menu-item:hover { background: var(--accent-dim); }

.menu-item__name {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.menu-item__desc {
  font-size: 0.88rem;
  color: #5C3038;
  line-height: 1.55;
  margin: 0;
}

.menu-item--bestseller .menu-item__name::after {
  content: 'Best Seller';
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: var(--accent);
  color: var(--white);
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  margin-left: 0.5rem;
  vertical-align: middle;
}

.menu-cta-bar {
  background: var(--dark);
  padding: 3rem;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-top: 3rem;
}
.menu-cta-bar h3 { color: var(--cream); margin-bottom: 0.5rem; }
.menu-cta-bar p { color: rgba(250,243,238,0.7); margin-bottom: 1.5rem; }

/* ── 19. GALLERY PAGE ─────────────────────────────────────── */
.filter-bar {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  padding: 2rem 0;
}

.filter-btn {
  padding: 0.55rem 1.2rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--border);
  color: #5C3038;
  background: var(--white);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn:hover,
.filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: var(--cream);
}

.gallery-section-label {
  font-family: var(--ff-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin: 2.5rem 0 1rem;
}

.gallery-masonry {
  columns: 4;
  column-gap: 1rem;
  margin-bottom: 2rem;
}

.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform var(--transition);
}

.gallery-item__overlay {
  position: absolute;
  inset: 0;
  background: rgba(78, 46, 47,0.55);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item:hover .gallery-item__overlay { opacity: 1; }
.gallery-item__overlay svg { color: var(--cream); width: 32px; height: 32px; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.94);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.open { display: flex; }
.lightbox__img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 0 80px rgba(0,0,0,0.6);
}
.lightbox__close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  width: 48px; height: 48px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: background var(--transition);
}
.lightbox__close:hover { background: rgba(255,255,255,0.25); }
.lightbox__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none;
  border-radius: 50%;
  width: 52px; height: 52px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 1.5rem;
  transition: background var(--transition);
}
.lightbox__nav:hover { background: rgba(255,255,255,0.25); }
.lightbox__prev { left: 1.5rem; }
.lightbox__next { right: 1.5rem; }

.gallery-cta { padding: 60px 0; }

/* ── 20. CONTACT PAGE ─────────────────────────────────────── */
.contact-section { background: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}

.contact-info h2 { margin-bottom: 2rem; }

.contact-block {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.contact-block h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
  font-family: var(--ff-body);
}

.hours-table { width: 100%; }
.hours-table tr td {
  padding: 0.4rem 0;
  font-size: 0.88rem;
  border-bottom: 1px solid rgba(196,117,106,0.1);
}
.hours-table tr:last-child td { border-bottom: none; }
.hours-table td:first-child { color: #5C3038; }
.hours-table td:last-child { text-align: right; font-weight: 600; color: var(--dark); }
.hours-note {
  font-size: 0.82rem;
  color: var(--gold);
  font-style: italic;
  margin-top: 0.6rem;
  padding-top: 0.6rem;
  border-top: 1px dashed var(--border);
}

.contact-link-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(196,117,106,0.1);
  transition: color var(--transition);
  font-size: 0.9rem;
  color: #4A3035;
}
.contact-link-item:last-child { border-bottom: none; }
.contact-link-item:hover { color: var(--accent); }
.contact-link-icon { color: var(--accent); flex-shrink: 0; width: 18px; }

/* Inquiry Form */
.inquiry-form-container {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 3rem;
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}

.inquiry-form-container h2 { margin-bottom: 0.5rem; }
.inquiry-form-container > p { color: #5C3038; margin-bottom: 2rem; }

.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: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 0.4rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--ff-body);
  font-size: 0.95rem;
  color: var(--dark);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(196,117,106,0.15);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  background: var(--highlight);
  color: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.5rem;
}
.form-success.visible { display: block; }

/* Map placeholder */
.map-section { padding: 40px 0; background: #F5EDE8; }

.map-placeholder {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--dark);
  position: relative;
}

.map-embed {
  width: 100%;
  height: 400px;
  border: none;
  display: block;
}

.map-overlay-info {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  background: rgba(250,243,238,0.95);
  backdrop-filter: blur(8px);
  padding: 1.2rem 1.5rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  max-width: 280px;
}
.map-overlay-info strong {
  display: block;
  font-family: var(--ff-display);
  font-size: 1rem;
  color: var(--dark);
  margin-bottom: 0.25rem;
}
.map-overlay-info span {
  font-size: 0.82rem;
  color: #5C3038;
  line-height: 1.5;
}

/* FAQ */
.faq-section { background: var(--cream); }

.faq-list { max-width: 800px; margin: 3rem auto 0; }

.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--dark);
  transition: background var(--transition);
  gap: 1rem;
}
.faq-question:hover { background: var(--accent-dim); }
.faq-item.open .faq-question { background: var(--dark); color: var(--cream); }

.faq-icon {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: transform var(--transition);
  font-size: 1rem;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 1.25rem 1.5rem;
  font-size: 0.95rem;
  color: #5C3038;
  line-height: 1.7;
  background: rgba(250,243,238,0.5);
  border-top: 1px solid var(--border);
}
.faq-item.open .faq-answer { display: block; }

/* ── 21. PRESS / FEATURED BAR ─────────────────────────────── */
.press-bar {
  background: var(--dark);
  padding: 1.5rem 0;
  overflow: hidden;
}
.press-bar-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(250,243,238,0.4);
  white-space: nowrap;
  margin-right: 2rem;
  flex-shrink: 0;
}
.press-bar-inner {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  overflow-x: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.press-bar-inner::-webkit-scrollbar { display: none; }
.press-name {
  font-family: var(--ff-display);
  font-size: 0.85rem;
  font-style: italic;
  color: rgba(250,243,238,0.5);
  white-space: nowrap;
  transition: color var(--transition);
}
.press-name:hover { color: var(--accent); }

/* ── 22. RESPONSIVE ───────────────────────────────────────── */

/* 1024px */
@media (max-width: 1024px) {
  .features-inner { grid-template-columns: repeat(3, 1fr); }
  .feature-item:nth-child(3) { border-right: none; }
  .feature-item:nth-child(4),
  .feature-item:nth-child(5) { border-top: 1px solid rgba(255,255,255,0.08); }

  .offerings-grid { grid-template-columns: repeat(3, 1fr); }
  .brand-teaser__inner { gap: 3rem; }
  .origin-inner { gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .gallery-masonry { columns: 3; }
  .values-list { grid-template-columns: repeat(3, 1fr); }

  .timeline::before { left: 20px; }
  .timeline-item { flex-direction: row !important; }
  .timeline-item .timeline-content { text-align: left !important; }
  .timeline-dot { left: 20px; }
}

/* 768px */
@media (max-width: 768px) {
  section { padding: 60px 0; }

  .nav-links, .nav-cta .btn { display: none; }
  .nav-hamburger { display: flex; }

  .hero__title { font-size: clamp(2rem, 8vw, 3rem); }

  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .feature-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.08); }
  .feature-item:last-child { border-bottom: none; border-right: none; }

  .offerings-grid { grid-template-columns: repeat(2, 1fr); }

  .brand-teaser__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .brand-teaser__img { aspect-ratio: 16/9; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .stat-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.1); }
  .stat-item:last-child { border-bottom: none; }

  .reviews-grid { grid-template-columns: 1fr; }

  .feed-grid { grid-template-columns: repeat(3, 1fr); }

  .footer-grid { grid-template-columns: 1fr; }

  .page-hero { height: 300px; }

  .origin-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .values-list { grid-template-columns: repeat(2, 1fr); }
  .cta-split__inner { grid-template-columns: 1fr; }

  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .menu-items { grid-template-columns: 1fr; }

  .gallery-masonry { columns: 2; }

  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .inquiry-form-container { padding: 2rem; }
}

/* 480px */
@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  section { padding: 50px 0; }

  .hero { min-height: 90vh; }
  .hero__ctas { flex-direction: column; align-items: center; }

  .features-inner { grid-template-columns: 1fr; }
  .feature-item { border-right: none !important; }

  .offerings-grid { grid-template-columns: 1fr; }

  .stats-grid { grid-template-columns: 1fr 1fr; }

  .feed-grid { grid-template-columns: repeat(2, 1fr); }

  .category-tiles { grid-template-columns: 1fr; }

  .values-list { grid-template-columns: 1fr 1fr; }

  .gallery-masonry { columns: 1; }

  .footer-bottom { flex-direction: column; text-align: center; }

  .timeline::before { display: none; }
  .timeline-dot { display: none; }
  .timeline-item { flex-direction: column !important; }
}

/* Utility: visually hidden */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border-width: 0;
}
