/* ============================================================
   Lola's Plates and Pours — styles.css
   Design rationale: Deep rose-wine on inky aubergine-black evokes candlelit
   evening dining and the warmth of a grandmother's best cooking; burnished
   antique gold anchors a sense of occasion without feeling stiff.
   Heading: EB Garamond — literary, warm, old-world elegance that honors "Lola"
   Body: DM Sans — clean geometric humanist that keeps menus scannable
   ============================================================ */

/* ============================================================
   1. RESET & CUSTOM PROPERTIES
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
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: inherit; }

:root {
  --dark:       #160C0F;
  --bg-alt:     #221118;
  --accent:     #B8415E;
  --highlight:  #D4A45A;
  --cream:      #FAF4ED;
  --cream-dim:  rgba(250,244,237,0.65);
  --accent-dim: rgba(184,65,94,0.14);
  --border:     rgba(184,65,94,0.22);
  --ff-display: 'EB Garamond', Georgia, serif;
  --ff-body:    'DM Sans', system-ui, sans-serif;
  --nav-h:      72px;
  --radius:     6px;
  --shadow:     0 4px 24px rgba(0,0,0,0.45);
}

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
body {
  font-family: var(--ff-body);
  background: var(--dark);
  color: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: var(--ff-display);
  font-weight: 500;
  line-height: 1.2;
  color: var(--cream);
}

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

p { color: var(--cream-dim); font-size: 1rem; }

.section-label {
  display: inline-block;
  font-family: var(--ff-body);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.6rem;
}

.section-sub {
  max-width: 540px;
  margin: 0.7rem auto 0;
  color: var(--cream-dim);
  font-size: 1.05rem;
}

/* ============================================================
   3. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  transition: all 0.25s ease;
  cursor: pointer;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  border: 2px solid var(--accent);
}
.btn-primary:hover { background: #a03452; border-color: #a03452; transform: translateY(-2px); box-shadow: 0 6px 20px rgba(184,65,94,0.4); }

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 2px solid rgba(250,244,237,0.35);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(250,244,237,0.06); transform: translateY(-2px); }

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

/* ============================================================
   4. NAVBAR
   ============================================================ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.35s ease, box-shadow 0.35s ease;
}

#navbar.scrolled {
  background: var(--dark);
  box-shadow: 0 2px 20px rgba(0,0,0,0.6);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo img {
  height: 44px;
  width: auto;
  filter: invert(1);
  transition: opacity 0.2s;
}
.nav-logo:hover img { opacity: 0.8; }

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

#nav-links li a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--cream-dim);
  padding: 0.45rem 0.75rem;
  border-radius: var(--radius);
  transition: color 0.2s, background 0.2s;
}
#nav-links li a:hover { color: var(--cream); background: var(--accent-dim); }
#nav-links li a.active { color: var(--accent); }
#nav-links li a.nav-cta {
  background: var(--accent);
  color: #fff;
  padding: 0.45rem 1.1rem;
  margin-left: 0.5rem;
}
#nav-links li a.nav-cta:hover { background: #a03452; }

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

/* ============================================================
   5. HERO (homepage)
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(22,12,15,0.55) 0%,
    rgba(22,12,15,0.4) 40%,
    rgba(22,12,15,0.75) 85%,
    rgba(22,12,15,0.95) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 780px;
  padding: 2rem;
  margin-top: var(--nav-h);
}

.hero-content .section-label { color: var(--highlight); }

.hero-content h1 {
  font-size: clamp(2.8rem, 6vw, 5rem);
  margin-bottom: 1.1rem;
  font-style: italic;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: var(--cream-dim);
  max-width: 560px;
  margin: 0 auto 2.2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  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: 6px;
  color: var(--cream-dim);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.scroll-dot {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollPulse 2s ease infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.15); }
}

/* ============================================================
   6. FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--bg-alt);
  padding: 3.5rem 2rem;
}

.features-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.5rem;
}

.feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.75rem;
  padding: 1.5rem 1rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: border-color 0.25s, background 0.25s;
}
.feature-item:hover { border-color: var(--accent); background: var(--accent-dim); }

.feature-icon {
  width: 44px; height: 44px;
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
}
.feature-icon svg { width: 30px; height: 30px; }

.feature-item h4 {
  font-family: var(--ff-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream);
}

.feature-item p {
  font-size: 0.83rem;
  color: var(--cream-dim);
  line-height: 1.5;
}

/* ============================================================
   7. OFFERINGS GRID
   ============================================================ */
.section {
  padding: 5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

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

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

.offering-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 4/3;
  cursor: pointer;
  background: var(--bg-alt);
}

.offering-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}
.offering-card:hover img { transform: scale(1.07); }

.offering-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,12,15,0.88) 0%, rgba(22,12,15,0.2) 55%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.25rem;
  transition: background 0.3s;
}
.offering-card:hover .offering-card-overlay { background: linear-gradient(to top, rgba(22,12,15,0.92) 0%, rgba(22,12,15,0.3) 60%, rgba(22,12,15,0.05) 100%); }

.offering-card-overlay h3 {
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 0.25rem;
}
.offering-card-overlay p {
  font-size: 0.78rem;
  color: var(--cream-dim);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.3s, transform 0.3s;
}
.offering-card:hover .offering-card-overlay p { opacity: 1; transform: none; }

/* Menu page filter/category grid */
.filter-bar {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  justify-content: center;
}
.filter-btn {
  font-family: var(--ff-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.2rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  background: transparent;
  transition: all 0.2s;
  cursor: pointer;
}
.filter-btn.active,
.filter-btn:hover { background: var(--accent); color: #fff; border-color: var(--accent); }

/* ============================================================
   8. BRAND TEASER SPLIT
   ============================================================ */
.teaser-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  min-height: 520px;
  align-items: stretch;
}

.teaser-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
}
.teaser-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.teaser-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent 70%, var(--bg-alt) 100%);
  pointer-events: none;
}

.teaser-body {
  background: var(--bg-alt);
  padding: 4rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
}

.teaser-body p { font-size: 1rem; }

.teaser-btns {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
}

/* ============================================================
   9. STATS ROW
   ============================================================ */
.stats-section {
  background: var(--accent);
  padding: 3rem 2rem;
}

.stats-grid {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item { display: flex; flex-direction: column; gap: 0.4rem; }

.stat-number {
  font-family: var(--ff-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 500;
  color: #fff;
  line-height: 1;
}

.stat-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
}

/* ============================================================
   10. REVIEW CARDS
   ============================================================ */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.review-card {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color 0.25s;
}
.review-card:hover { border-color: var(--accent); }

.review-stars { display: flex; gap: 3px; color: var(--highlight); }
.review-stars svg { width: 16px; height: 16px; }

.review-text {
  font-size: 0.95rem;
  color: var(--cream-dim);
  font-style: italic;
  line-height: 1.7;
  flex: 1;
}

.review-author {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.review-author span { color: var(--highlight); margin-left: 0.35rem; font-weight: 400; }

/* ============================================================
   11. SOCIAL CTA + PLATFORM BUTTONS
   ============================================================ */
.social-cta {
  background: var(--bg-alt);
  padding: 5rem 2rem;
  text-align: center;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.social-cta h2 { margin-bottom: 0.75rem; }
.social-cta p { margin-bottom: 2rem; }

.social-platforms {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}

.platform-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--ff-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 0.7rem 1.4rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  color: var(--cream-dim);
  background: transparent;
  transition: all 0.25s;
  cursor: pointer;
  text-decoration: none;
}
.platform-btn svg { width: 18px; height: 18px; flex-shrink: 0; }
.platform-btn:hover { background: var(--accent-dim); border-color: var(--accent); color: var(--cream); }
.platform-btn.fb:hover { background: rgba(24,119,242,0.12); border-color: #1877F2; }
.platform-btn.ig:hover { background: rgba(195,71,146,0.12); border-color: #C34792; }
.platform-btn.tiktok:hover { background: rgba(105,201,208,0.12); border-color: #69C9D0; }
.platform-btn.wa:hover { background: rgba(37,211,102,0.12); border-color: #25D366; }
.platform-btn.yt:hover { background: rgba(255,0,0,0.12); border-color: #FF0000; }

/* ============================================================
   12. SOCIAL FEED GRID
   ============================================================ */
.social-feed-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.25rem;
}

.feed-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--bg-alt);
}
.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::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(184,65,94,0.35);
  opacity: 0;
  transition: opacity 0.3s;
}
.feed-item:hover::after { opacity: 1; }

/* ============================================================
   13. FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding-top: 4rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem 3rem;
  display: grid;
  grid-template-columns: 2fr 1fr 1.2fr 1.2fr;
  gap: 3rem;
}

.footer-brand img {
  height: 48px;
  width: auto;
  filter: invert(1);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.6;
  max-width: 240px;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  color: var(--cream-dim);
  transition: all 0.25s;
}
.footer-socials a svg { width: 16px; height: 16px; }
.footer-socials a:hover { background: var(--accent); border-color: var(--accent); color: #fff; }

.footer-nav h4,
.footer-menu h4,
.footer-contact h4 {
  font-family: var(--ff-body);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

.footer-nav ul,
.footer-menu ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav ul li a,
.footer-menu ul li a {
  font-size: 0.88rem;
  color: var(--cream-dim);
  transition: color 0.2s;
}
.footer-nav ul li a:hover,
.footer-menu ul li a:hover { color: var(--cream); }

.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.25rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(250,244,237,0.4);
}

.footer-badges {
  display: flex;
  gap: 0.75rem;
}
.footer-badge {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  border: 1px solid var(--border);
  color: var(--cream-dim);
}

/* ============================================================
   14. PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: var(--page-hero-bg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(22,12,15,0.6) 0%, rgba(22,12,15,0.55) 60%, rgba(22,12,15,0.85) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 2rem;
  margin-top: var(--nav-h);
}

.page-hero-content h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-style: italic; }
.hero-sub { font-size: 1.05rem; max-width: 560px; margin: 0.75rem auto 0; color: var(--cream-dim); }

/* ============================================================
   15. ABOUT PAGE SECTIONS
   ============================================================ */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 4rem;
  align-items: start;
}

.about-story-text { display: flex; flex-direction: column; gap: 1.1rem; }

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

.philosophy-card {
  background: var(--dark);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  transition: border-color 0.25s, transform 0.25s;
}
.philosophy-card:hover { border-color: var(--accent); transform: translateY(-4px); }

.phi-icon {
  width: 48px; height: 48px;
  background: var(--accent-dim);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
}
.phi-icon svg { width: 22px; height: 22px; }

.philosophy-card h3 { font-size: 1.1rem; }

.values-list { display: flex; flex-direction: column; gap: 0; }

.value-item {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 1.5rem;
  padding: 1.75rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}

.value-num {
  font-family: var(--ff-display);
  font-size: 2.5rem;
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
  opacity: 0.7;
}

.value-item h4 { font-size: 1.05rem; margin-bottom: 0.35rem; }

.timeline { max-width: 680px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; }

.timeline-item {
  padding: 1.75rem 0 1.75rem 2rem;
  border-left: 2px solid var(--border);
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -6px; top: 2rem;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--dark);
}
.tl-year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.3rem;
}
.timeline-item h4 { font-size: 1rem; margin-bottom: 0.4rem; }

.about-cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.about-cta-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  min-height: 400px;
}

.about-cta-body {
  background: var(--bg-alt);
  padding: 4rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.1rem;
}

.about-cta-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-top: 0.5rem; }

/* ============================================================
   16. MENU PAGE
   ============================================================ */
.disclaimer-bar {
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.disclaimer-bar p { font-size: 0.88rem; margin: 0; }

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

.category-tile {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3/2;
  cursor: pointer;
  background: var(--bg-alt);
  text-decoration: none;
}

.category-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.category-tile:hover img { transform: scale(1.08); }

.category-tile-label {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(22,12,15,0.85) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}
.category-tile-label h4 { font-size: 0.95rem; color: var(--cream); margin-bottom: 0.15rem; }
.category-tile-label span { font-size: 0.7rem; color: var(--cream-dim); }

.menu-section { margin-bottom: 4rem; scroll-margin-top: calc(var(--nav-h) + 1rem); }

.menu-section-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.menu-section-header h2 { font-size: 1.8rem; }

.menu-list { display: flex; flex-direction: column; gap: 0; }

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem 2rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
  transition: background 0.2s;
}
.menu-item:last-child { border-bottom: none; }

.menu-item-body { display: flex; flex-direction: column; gap: 0.3rem; }
.menu-item-body h4 { font-size: 1rem; display: flex; align-items: center; gap: 0.5rem; flex-wrap: wrap; }
.menu-item-body p { font-size: 0.88rem; line-height: 1.55; }

.badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.2rem 0.55rem;
  border-radius: 100px;
  vertical-align: middle;
}
.badge-sig { background: rgba(184,65,94,0.18); color: var(--accent); border: 1px solid rgba(184,65,94,0.35); }
.badge-best { background: rgba(212,164,90,0.18); color: var(--highlight); border: 1px solid rgba(212,164,90,0.35); }
.badge-new { background: rgba(100,200,100,0.15); color: #7DC47D; border: 1px solid rgba(100,200,100,0.3); }

.menu-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   17. GALLERY PAGE
   ============================================================ */
.gallery-section { padding-top: 3rem; }

.masonry-grid {
  columns: 3;
  column-gap: 1rem;
  margin-top: 2rem;
}

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

.masonry-item img {
  width: 100%;
  display: block;
  transition: transform 0.45s ease;
}
.masonry-item:hover img { transform: scale(1.06); }

.masonry-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(22,12,15,0.85), transparent);
  padding: 1.5rem 1rem 0.75rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--cream);
  transform: translateY(100%);
  transition: transform 0.3s ease;
}
.masonry-item:hover .masonry-caption { transform: none; }

/* Lightbox */
#lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(22,12,15,0.95);
  display: none;
  align-items: center;
  justify-content: center;
}
#lightbox.open { display: flex; }

#lightbox-img {
  max-width: 88vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: var(--shadow);
  user-select: none;
}

.lb-close, .lb-prev, .lb-next {
  position: absolute;
  background: rgba(22,12,15,0.7);
  border: 1px solid var(--border);
  color: var(--cream);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1.1rem;
}
.lb-close:hover, .lb-prev:hover, .lb-next:hover { background: var(--accent); border-color: var(--accent); }

.lb-close { top: 1.5rem; right: 1.5rem; font-size: 1.4rem; }
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }

.lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 0.8rem;
  color: var(--cream-dim);
  letter-spacing: 0.08em;
}

.cta-strip {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 3.5rem 2rem;
}

.cta-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}

.cta-strip-btns { display: flex; gap: 0.75rem; flex-wrap: wrap; }

/* ============================================================
   18. CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.contact-blocks { display: flex; flex-direction: column; gap: 2rem; }

.contact-block {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-block-icon {
  width: 44px; height: 44px;
  background: var(--accent-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
}
.contact-block-icon svg { width: 18px; height: 18px; }

.contact-block h4 {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--highlight);
  margin-bottom: 0.4rem;
}

.contact-block p {
  font-size: 0.92rem;
  line-height: 1.6;
}
.contact-block a { color: var(--cream-dim); transition: color 0.2s; }
.contact-block a:hover { color: var(--accent); }

.hours-table { width: 100%; border-collapse: collapse; font-size: 0.88rem; }
.hours-table tr { border-bottom: 1px solid var(--border); }
.hours-table tr:last-child { border-bottom: none; }
.hours-table td { padding: 0.5rem 0; color: var(--cream-dim); }
.hours-table td:last-child { text-align: right; }
.hours-highlight td { color: var(--highlight); font-weight: 600; }

.contact-form-wrap { display: flex; flex-direction: column; gap: 1.5rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream-dim);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  color: var(--cream);
  font-family: var(--ff-body);
  font-size: 0.92rem;
  transition: border-color 0.2s;
  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: #e25c5c; }
.form-group select { appearance: none; cursor: pointer; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--dark); }

#formSuccess {
  display: none;
  text-align: center;
  padding: 2.5rem;
  background: var(--bg-alt);
  border: 1px solid rgba(125,200,125,0.3);
  border-radius: var(--radius);
}
#formSuccess svg { color: #7DC87D; margin: 0 auto 1rem; }
#formSuccess h3 { font-size: 1.4rem; margin-bottom: 0.5rem; }
#formSuccess p { font-size: 0.95rem; }

.map-placeholder {
  margin-top: 4rem;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 200px;
}

.map-graphic {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 3rem 2rem;
  background: rgba(0,0,0,0.2);
  color: var(--accent);
}
.map-graphic svg { width: 40px; height: 40px; opacity: 0.7; }

.map-info {
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.75rem;
}
.map-info h4 { font-size: 1rem; }
.map-info p { font-size: 0.9rem; }
.map-info a {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-top: 0.5rem;
  text-decoration: none;
  transition: color 0.2s;
}
.map-info a:hover { color: var(--highlight); }

/* ============================================================
   19. FAQ ACCORDION
   ============================================================ */
.faq-section { padding: 5rem 2rem; background: var(--bg-alt); }

.faq-list { max-width: 740px; margin: 2.5rem auto 0; }

.faq-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--cream);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  transition: color 0.2s;
}
.faq-question:hover { color: var(--accent); }
.faq-question.open { color: var(--accent); }

.faq-icon {
  width: 20px; height: 20px;
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--accent);
  font-size: 1rem;
  transition: transform 0.3s, background 0.2s;
}
.faq-question.open .faq-icon { transform: rotate(45deg); background: var(--accent); color: #fff; }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.faq-answer-inner {
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: var(--cream-dim);
  line-height: 1.7;
}

/* ============================================================
   20. SCROLL-TO-TOP
   ============================================================ */
#back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  width: 44px; height: 44px;
  background: var(--accent);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 16px rgba(184,65,94,0.4);
}
#back-to-top.visible { opacity: 1; pointer-events: auto; transform: none; }
#back-to-top:hover { background: #a03452; }
#back-to-top svg { width: 18px; height: 18px; }

/* ============================================================
   21. FADE-IN ANIMATION
   ============================================================ */
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.fade-in.visible { opacity: 1; transform: none; }

/* ============================================================
   22. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .features-inner { grid-template-columns: repeat(3, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .category-tiles { grid-template-columns: repeat(3, 1fr); }
  .teaser-split { grid-template-columns: 1fr; }
  .teaser-img::after { display: none; }
  .about-cta-split { grid-template-columns: 1fr; }
  .about-cta-img img { min-height: 280px; }
}

@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  #hamburger { display: flex; }

  #nav-links {
    position: fixed;
    top: 0; right: 0; bottom: 0;
    width: min(320px, 80vw);
    background: var(--dark);
    flex-direction: column;
    justify-content: center;
    padding: 2rem;
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.35s ease;
    z-index: 1050;
    box-shadow: -8px 0 32px rgba(0,0,0,0.5);
  }
  #nav-links.open { transform: translateX(0); }
  #nav-links li a {
    font-size: 1rem;
    padding: 0.75rem 1rem;
    display: block;
    border-radius: var(--radius);
  }
  #nav-links li a.nav-cta { margin: 0.5rem 0 0; text-align: center; }

  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; gap: 1rem; }
  .about-story { grid-template-columns: 1fr; gap: 2rem; }
  .philosophy-grid { grid-template-columns: 1fr; }
  .teaser-body { padding: 2.5rem 1.75rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .masonry-grid { columns: 2; }
  .social-feed-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .features-inner { grid-template-columns: repeat(2, 1fr); }
  .cta-strip-inner { flex-direction: column; align-items: flex-start; }
  .map-placeholder { grid-template-columns: 1fr; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .about-story-text { gap: 0.9rem; }
  .about-cta-body { padding: 2.5rem 1.75rem; }
}

@media (max-width: 480px) {
  .section { padding: 3.5rem 1.25rem; }
  .offerings-grid { grid-template-columns: 1fr; }
  .masonry-grid { columns: 1; }
  .social-feed-grid { grid-template-columns: repeat(2, 1fr); }
  .features-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .category-tiles { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
}
