html {
  scroll-behavior: smooth;
}

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400;1,700;1,900&family=DM+Sans:wght@300;400;500;600;700&family=Cormorant+Garamond:ital,wght@1,400;1,600&family=Caveat:wght@500;700&display=swap');

/* ═══════════════════════════
   DESIGN TOKENS
   ═══════════════════════════ */
:root {
  --olive:       #4a5e2a;
  --olive-lt:    #5d7535;
  --olive-dk:    #374820;
  --olive-deep:  #2d3a1a;
  --red:         #8b1a1a;
  --red-lt:      #a52020;
  --red-dk:      #6a1212;
  --cream:       #f5f0e8;
  --cream-2:     #ece5d8;
  --cream-dark:  #e8dfce;
  --white:       #ffffff;

  --text:        #1e1e1b;
  --text-mid:    #4a4a45;
  --text-muted:  #7a7a74;

  --border:      rgba(74,94,42,0.14);
  --gold:        #c8963c;

  --font-serif:  'Playfair Display', Georgia, serif;
  --font-sans:   'DM Sans', system-ui, sans-serif;
  --font-italic: 'Cormorant Garamond', Georgia, serif;
  --font-script: 'Caveat', cursive;
}

/* RESET */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-sans);
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ══════════════
   NAV
   ══════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 900; height: 88px;
  background: rgba(245, 240, 232, 0.97);
  backdrop-filter: blur(16px);
  transition: box-shadow .3s, background .3s;
  border-bottom: 1px solid rgba(74,94,42,0.08);
}
.navbar.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,.06); border-bottom-color: transparent; }
.nav-inner {
  max-width: 1280px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 2rem;
}
.nav-logo { text-decoration: none; display: flex; align-items: center; }
.nav-logo img {
  height: 56px;
  width: auto;
  max-width: 180px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.nav-links { display: flex; align-items: center; gap: .25rem; list-style: none; justify-content: center; }
.nav-links a {
  display: block; padding: .5rem 1rem; text-decoration: none;
  color: var(--olive-dk); font-size: .95rem; font-weight: 500;
  transition: color .2s; font-family: var(--font-sans);
}
.nav-links a:hover { color: var(--red); }
.nav-links a.active { color: var(--red); font-weight: 600; }
.nav-cta { display: flex; justify-content: flex-end; align-items: center; }
.nav-order {
  background: var(--olive); color: #fff;
  border-radius: 30px;
  padding: .85rem 2.1rem;
  font-weight: 600;
  font-size: .98rem;
  letter-spacing: .02em;
  text-decoration: none;
  transition: all .25s;
  box-shadow: 0 6px 18px rgba(74,94,42,.28), 0 2px 4px rgba(74,94,42,.15);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-order:hover {
  background: var(--olive-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(74,94,42,.4), 0 3px 8px rgba(74,94,42,.2);
}
.nav-burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; padding: 4px; }
.nav-burger span { display: block; width: 24px; height: 2px; background: var(--olive-dk); border-radius: 2px; }
.nav-mobile {
  display: none; position: fixed; top: 88px; left: 0; right: 0;
  background: var(--cream); border-bottom: 1px solid var(--border);
  padding: 0 2rem 1rem; z-index: 899; flex-direction: column; gap: 0;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: block; padding: .75rem 0; text-decoration: none;
  color: var(--olive-dk); font-size: 1rem; font-weight: 500;
  border-bottom: 1px solid var(--border);
}
.nav-mobile a:last-child { border-bottom: none; color: var(--olive); font-weight: 600; }

.page-top { padding-top: 100px; }

/* ══════════════
   DELIVERY STRIP
   ══════════════ */
.del-strip {
  background: var(--red); color: #fff; text-align: center;
  padding: .65rem 1rem; font-size: .82rem; font-weight: 500; letter-spacing: .02em;
}
.del-strip .sep { opacity: .4; margin: 0 .65rem; }

/* ══════════════
   BUTTONS
   ══════════════ */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: .8rem 1.9rem; border-radius: 30px;
  font-family: var(--font-sans); font-size: .92rem; font-weight: 500;
  text-decoration: none; cursor: pointer; border: none;
  transition: all .25s; white-space: nowrap;
}
.btn-olive  { background: var(--olive); color: #fff; }
.btn-olive:hover { background: var(--olive-lt); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(74,94,42,.28); }
.btn-outline-olive { background:fixed; color: var(--olive); border: 2px solid var(--olive); }
.btn-outline-olive:hover { background:transparent var(--olive); color: #fff; }
.btn-red    { background: var(--red); color: #fff; }
.btn-red:hover { background: var(--red-lt); transform: translateY(-2px); }
.btn-white  { background: #fff; color: var(--red); font-weight: 600; }
.btn-white:hover { background: var(--cream); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,.5); }
.btn-outline-white:hover { background: rgba(255,255,255,.12); }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ══════════════
   HERO
   ══════════════ */
.hero {
  background: var(--cream);
  padding: 120px 2rem 4rem;
  position: relative;
  overflow: hidden;
}
.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-left h1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem,5.8vw,5rem);
  font-weight: 700; color: var(--olive);
  line-height: 1.05; margin-bottom: 1.5rem; letter-spacing: -0.01em;
}
.hero-left h1 em {
  font-style: italic; color: var(--red); position: relative; display: inline-block;
}
.hero-left h1 em::after {
  content: '';
  position: absolute;
  bottom: -10px; left: -2%; right: -2%;
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 14' preserveAspectRatio='none'%3E%3Cpath d='M2 8 Q 25 1, 50 7 T 100 7 T 150 7 T 198 7' stroke='%238b1a1a' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: 100% 100%;
}
.hero-desc {
  font-size: 1rem; color: var(--text-mid); line-height: 1.7;
  max-width: 380px; margin-bottom: 2.25rem;
}
.hero-actions { display: flex; gap: 1.5rem; align-items: center; flex-wrap: wrap; }

.btn-story {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--olive-dk); font-size: .95rem; font-weight: 500;
  text-decoration: none; transition: color .2s;
}
.btn-story:hover { color: var(--red); }
.play-circle {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--red-dk); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: background .2s;
  box-shadow: 0 4px 16px rgba(74,94,42,.25);
}
.play-circle svg { width: 12px; height: 12px; margin-left: 2px; }

/* Hero right column — stacked layout with food image + pill */
.hero-right {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  width: 100%;
}

/* HERO FOOD IMAGE */
.hero-food-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  aspect-ratio: 1;
  order: 1;
}
.hero-food-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform .6s ease;
}
.hero-food-wrap:hover .hero-food-img {
  transform: scale(1.04);
}

/* Fresh Tasty Everyday badge — legacy, hidden */
.fresh-badge { display: none; }

/* Delivery pill — stacked under food image on desktop */
.delivery-pill {
  background: #fff;
  border: 1.5px dashed var(--red);
  border-radius: 60px;
  padding: .5rem 1.25rem;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  box-shadow: 0 8px 24px rgba(139,26,26,.12);
  max-width: 280px;
  order: 2;
  margin: -1rem auto 0;
}
.delivery-pill-icon {
  width: 28px; height: 28px;
  background: var(--red);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.delivery-pill-icon svg { width: 14px; height: 14px; color: #fff; }
.delivery-pill-text {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--red);
  line-height: 1.2;
}
.delivery-pill-text > span { display: block; font-size: .9rem; }
.delivery-pill-text strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--red-dk);
  margin-top: 2px;
}

/* ══════════════
   SCALLOPED EDGE DIVIDER
   ══════════════ */
.scalloped-edge {
  position: relative;
  height: 40px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
}
.scalloped-edge::before {
  content: '';
  position: absolute;
  left: 12%; right: 12%;
  top: 50%;
  height: 1px;
  background-image: linear-gradient(to right, transparent, rgba(74,94,42,.25) 30%, rgba(74,94,42,.25) 70%, transparent);
}
.scalloped-edge::after {
  content: '❧';
  position: relative;
  font-size: 1.4rem;
  color: var(--red);
  background: var(--cream);
  padding: 0 1rem;
  z-index: 2;
  line-height: 1;
}

/* ══════════════
   MENU PREVIEW (HOME)
   ══════════════ */
.menu-home { background: var(--cream); padding: 1rem 2rem 4rem; }
.menu-arrows {
  display: flex; align-items: center; justify-content: center;
  gap: 1.25rem; margin-bottom: .5rem;
}
.menu-arrows-txt {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem,3vw,2.2rem);
  font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--olive-dk);
}
.deco {
  color: var(--red); font-size: 1.4rem; font-weight: 400;
  display: inline-block;
}
.deco-l { transform: scaleX(-1); }
.rule { width: 50px; height: 2px; background: var(--red); margin: .5rem auto 2rem; }

.ftabs {
  display: flex; justify-content: center; gap: .25rem;
  flex-wrap: wrap; margin-bottom: 2.5rem;
}
.ftab {
  padding: .5rem 1.4rem; border-radius: 30px;
  font-size: .92rem; font-weight: 500;
  cursor: pointer; border: none; background: transparent;
  color: var(--olive-dk); transition: all .2s; font-family: var(--font-sans);
}
.ftab:hover { color: var(--olive); }
.ftab.active { background: var(--olive); color: #fff; }

.mgrid {
  display: grid; grid-template-columns: repeat(4,1fr);
  gap: 1.5rem; max-width: 1180px; margin: 0 auto;
}
.mgrid-6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 1180px;
  margin: 0 auto;
}
.mhcta { text-align: center; margin-top: 2.5rem; }

/* MENU CARDS */
.mcard {
  background: var(--cream-dark); border-radius: 16px; overflow: hidden;
  transition: transform .3s, box-shadow .3s;
  display: flex; flex-direction: column;
}
.mcard:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.1); }
.mcard-img-wrap {
  width: calc(100% - 1.5rem);
  height: 180px;
  border-radius: 12px;
  overflow: hidden;
  margin: .75rem .75rem 0;
}
.mcard-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.mcard-body { padding: 1rem 1.25rem 1.5rem; }
.mcard-name {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 700;
  color: var(--olive-dk); margin-bottom: .35rem;
}
.mcard-desc {
  font-size: .82rem; color: var(--text-muted);
  line-height: 1.5; margin-bottom: .85rem;
}
.mcard-price {
  font-family: var(--font-serif);
  font-size: 1.1rem; font-weight: 700; color: var(--red);
}

/* ══════════════
   OUR STORY (homepage)
   ══════════════ */
.our-story {
  background: var(--cream);
  padding: 4rem 2rem;
  position: relative;
}
.story-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: center;
}
.story-img-col { position: relative; }
.story-img-col img {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.story-text-col h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--olive-dk);
  line-height: 1.15;
  margin: .5rem 0 1.5rem;
}
.story-text-col h2 em { font-style: italic; color: var(--red); }
.story-text-col p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 1.25rem;
}
.story-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--olive);
  font-weight: 600;
  font-size: .92rem;
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
  margin-top: .5rem;
}
.story-link:hover { color: var(--red); border-bottom-color: var(--red); }

/* ══════════════
   BBQ BANNER
   ══════════════ */
.bbq-wrap { background: var(--cream); padding: 2rem; }
.bbq {
  max-width: 1080px; margin: 0 auto;
  background: var(--red);
  border-radius: 16px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
  min-height: 380px;
}
.bbq-l {
  padding: 2.5rem 2rem;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 1rem;
  overflow: hidden;
}
.bbq-l > * { position: relative; z-index: 2; }
.bbq-l h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.3rem,2vw,1.7rem);
  font-weight: 600; color: #fff; line-height: 1.2;
}
.bbq-l p {
  font-size: .88rem; color: rgba(255,255,255,.8);
  line-height: 1.55; max-width: 280px;
}
.bbq-l .btn-white {
  padding: .55rem 1.5rem;
  font-size: .82rem;
  font-weight: 500;
  background: var(--cream);
  color: var(--olive-dk);
  border: 1px solid rgba(0,0,0,.08);
}
.bbq-l .btn-white:hover { background: #fff; }

/* BBQ ghost watermark logo */
.bbq-ghost {
  position: absolute;
  height: 250px;
  width: 260px;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  pointer-events: none;
  z-index: 1;
}

.bbq-r {
  position: relative;
  display: block;
  overflow: hidden;
}
.bbq-food-img {
  width: 100%; height: 100%; min-height: 380px;
  object-fit: cover; object-position: center;
  display: block;
}

/* 100% FRESH stamp badge */
.bbq-fbadge {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 96px; height: 96px;
  background: var(--cream);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-align: center;
  font-family: var(--font-serif);
  font-size: .82rem; font-weight: 700;
  letter-spacing: .04em; text-transform: uppercase;
  color: var(--red); line-height: 1.2;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0,0,0,.25);
  border: 1.5px dashed var(--red);
}
.bbq-fbadge::before {
  content: '';
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  border: 1px solid rgba(139,26,26,.2);
}
.bbq-fbadge span { display: block; position: relative; z-index: 2; }

/* ══════════════
   FEATURED DISHES STRIP
   ══════════════ */
.featured-strip {
  background: var(--cream);
  padding: 3rem 2rem 3.5rem;
  position: relative;
}
.featured-inner { max-width: 1180px; margin: 0 auto; }
.featured-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 2rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.featured-head-left .eyebrow { margin-bottom: .5rem; }
.featured-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
  font-weight: 700;
  color: var(--olive-dk);
  line-height: 1.1;
}
.featured-head h2 em { font-style: italic; color: var(--red); }
.featured-head-link {
  font-family: var(--font-sans);
  font-size: .88rem;
  font-weight: 600;
  color: var(--olive);
  text-decoration: none;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: color .2s;
}
.featured-head-link:hover { color: var(--red); }
.featured-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.fcell {
  position: relative;
  aspect-ratio: 1;
  border-radius: 12px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}
.fcell:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(0,0,0,.14);
}
.fcell img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s;
}
.fcell:hover img { transform: scale(1.06); }
.fcell-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1rem .8rem;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff;
  font-family: var(--font-serif);
  font-size: .88rem;
  font-weight: 700;
}

/* ══════════════
   TESTIMONIALS
   ══════════════ */
.testimonials {
  background: var(--cream-2);
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -80px; left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 24rem;
  color: rgba(139,26,26,.05);
  line-height: 1;
  pointer-events: none;
}
.testimonials-inner {
  max-width: 1180px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  text-align: center;
}
.testimonials-head { margin-bottom: 3rem; }
.testimonials-head .eyebrow { justify-content: center; }
.testimonials-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--olive-dk);
  margin-bottom: .5rem;
}
.testimonials-head h2 em { font-style: italic; color: var(--red); }
.testimonials-head p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.testi-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem 1.75rem;
  text-align: left;
  position: relative;
  box-shadow: 0 4px 24px rgba(0,0,0,.05);
  border-top: 3px solid var(--olive);
  transition: transform .3s, box-shadow .3s;
}
.testi-card:nth-child(2) { border-top-color: var(--red); }
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
}
.testi-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 1rem;
}
.testi-stars svg { width: 16px; height: 16px; color: #f4b400; }
.testi-quote {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.02rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 1.5rem;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,.06);
}
.testi-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--olive);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}
.testi-card:nth-child(2) .testi-avatar { background: var(--red); }
.testi-card:nth-child(3) .testi-avatar { background: var(--olive-dk); }
.testi-name {
  font-family: var(--font-sans);
  font-size: .92rem;
  font-weight: 700;
  color: var(--olive-dk);
  margin-bottom: 2px;
}
.testi-meta {
  font-size: .75rem;
  color: var(--text-muted);
  letter-spacing: .04em;
}
.testi-tag {
  display: inline-block;
  background: rgba(74,94,42,.08);
  color: var(--olive);
  font-size: .62rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 3px;
  margin-left: 6px;
  vertical-align: middle;
}

/* ══════════════
   INSTAGRAM WALL
   ══════════════ */
.ig-wall {
  background: var(--cream);
  padding: 5rem 2rem;
}
.ig-wall-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.ig-wall-head {
  text-align: center;
  margin-bottom: 3rem;
}
.ig-wall-head .eyebrow { justify-content: center; }
.ig-wall-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--olive-dk);
  margin: .75rem 0 .5rem;
  font-weight: 600;
}
.ig-wall-head h2 em {
  font-family: var(--font-italic);
  color: var(--red);
  font-style: italic;
  font-weight: 500;
}
.ig-wall-head p {
  color: var(--text-muted);
  font-size: 1rem;
  margin: 0;
}
.ig-wall-head p a {
  color: var(--olive);
  font-weight: 600;
  text-decoration: none;
}
.ig-wall-head p a:hover { color: var(--red); }

.ig-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: .75rem;
  margin-bottom: 2.5rem;
}
.ig-tile {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
  border-radius: 8px;
  display: block;
  background: #e8e2d6;
  box-shadow: 0 4px 12px rgba(0,0,0,.08);
  transition: transform .3s ease, box-shadow .3s ease;
}
.ig-tile img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .5s ease;
}
.ig-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,94,42,0) 40%, rgba(74,94,42,.92) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 1rem .75rem;
  opacity: 0;
  transition: opacity .3s ease;
  color: #fff;
  text-align: center;
}
.ig-overlay svg { width: 28px; height: 28px; margin-bottom: .5rem; }
.ig-overlay span {
  font-family: var(--font-sans);
  font-size: .85rem;
  font-weight: 500;
  line-height: 1.3;
}
.ig-tile:hover { transform: translateY(-4px); box-shadow: 0 8px 20px rgba(0,0,0,.15); }
.ig-tile:hover img { transform: scale(1.08); }
.ig-tile:hover .ig-overlay { opacity: 1; }

.ig-wall-cta { text-align: center; }

/* ══════════════
   CATERING (expanded with bullets + photo)
   ══════════════ */
.cat-dl { background: var(--cream); padding: 0 2rem 5rem; }
.cat-dl-expanded { padding: 3rem 2rem 4rem; }
.cat-dl-box {
  max-width: 1180px; margin: 0 auto;
  background: var(--olive-dk);
  border-radius: 20px;
  padding: 2.5rem 3rem;
  display: flex; align-items: center; gap: 2.5rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.cat-dl-box::before {
  content: '';
  position: absolute;
  right: -40px; top: -40px;
  width: 200px; height: 200px;
  background: rgba(255,255,255,.04);
  border-radius: 50%;
}
.cat-dl-expanded .cat-dl-box {
  flex-direction: row;
  flex-wrap: wrap;
  padding: 0;
  overflow: hidden;
  align-items: stretch;
  gap: 0;
}
.cat-icon { width: 56px; height: 56px; flex-shrink: 0; position: relative; z-index: 2; }
.cat-txt { flex: 1; min-width: 220px; position: relative; z-index: 2; }
.cat-txt h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem; font-weight: 700; color: #fff;
  margin-bottom: .5rem;
}
.cat-txt p {
  font-size: .9rem; color: rgba(255,255,255,.7);
  line-height: 1.65;
}
.cat-acts {
  display: flex; gap: 1rem; align-items: center;
  flex-wrap: wrap; flex-shrink: 0;
  position: relative; z-index: 2;
}
.cat-photo {
  flex: 0 0 42%;
  min-height: 360px;
  background-image: url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?w=900&q=85&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  position: relative;
}
.cat-photo::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(55,72,32,.2) 0%, transparent 50%);
}
.cat-content {
  flex: 1;
  min-width: 320px;
  padding: 2.5rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
  position: relative;
  z-index: 2;
}
.cat-content .eyebrow {
  color: var(--gold);
  margin-bottom: 0;
}
.cat-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 2.6vw, 2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}
.cat-content h3 em { font-style: italic; color: var(--gold); }
.cat-content > p {
  font-size: .92rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  margin: 0;
}
.cat-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .85rem 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.cat-features li {
  display: flex;
  align-items: flex-start;
  gap: .55rem;
  font-size: .85rem;
  color: rgba(255,255,255,.85);
  line-height: 1.45;
}
.cat-features li svg {
  width: 16px; height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
}
.cat-price-tag {
  display: inline-block;
  background: rgba(200,150,60,.18);
  color: var(--gold);
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  padding: .35rem 1rem;
  border-radius: 30px;
  border: 1px solid rgba(200,150,60,.4);
  align-self: flex-start;
}
.cat-acts-row {
  display: flex;
  gap: .85rem;
  align-items: center;
  flex-wrap: wrap;
  margin-top: .5rem;
}

/* ══════════════
   WHY CHOOSE
   ══════════════ */
.why { background: var(--cream); padding: 4rem 2rem; }
.why-inner {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.why-img-wrap { position: relative; }
.why-bubble {
  background: var(--olive);
  border-radius: 16px;
  padding: 1.5rem;
  position: relative;
  min-height: 320px;
}
.why-img {
  width: 100%; height: 100%; min-height: 280px;
  object-fit: cover; border-radius: 10px;
}
.why-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem,2.6vw,2rem);
  font-weight: 600; color: var(--olive-dk);
  text-transform: uppercase; letter-spacing: .04em;
  margin-bottom: .25rem;
}
.why-text h2 em {
  display: block; font-style: italic; font-weight: 700;
  font-size: 1.3em; color: var(--red); text-transform: none;
  letter-spacing: -0.01em; margin-top: .25rem;
}
.why-divider { width: 50px; height: 2px; background: var(--red); margin: 1rem 0 2rem; }

.wfeats { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem 2rem; }
.wfi { display: flex; align-items: flex-start; gap: 1rem; }
.wfi-icon { width: 36px; height: 36px; flex-shrink: 0; margin-top: .15rem; }
.wfi h4 {
  font-family: var(--font-sans);
  font-size: .98rem; font-weight: 700; color: var(--red);
  margin-bottom: .35rem;
}
.wfi p {
  font-size: .82rem; color: var(--text-mid);
  line-height: 1.55;
}
.wfeats-6 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem 1.75rem;
  margin-top: 1.5rem;
}
.wfi-stat {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
}
.wfi-stat-icon {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  background: rgba(139,26,26,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.wfi-stat-icon.olive { background: rgba(74,94,42,.1); }
.wfi-stat-icon svg { width: 22px; height: 22px; color: var(--red); }
.wfi-stat-icon.olive svg { color: var(--olive); }
.wfi-stat h4 {
  font-family: var(--font-sans);
  font-size: .98rem;
  font-weight: 700;
  color: var(--olive-dk);
  margin-bottom: .25rem;
  letter-spacing: -0.01em;
}
.wfi-stat p {
  font-size: .8rem;
  color: var(--text-mid);
  line-height: 1.5;
  margin: 0;
}

/* ══════════════
   FIND US (homepage location)
   ══════════════ */
.find-us { background: var(--cream); padding: 4rem 2rem; }
.find-us-inner { max-width: 1180px; margin: 0 auto; }
.find-us-head {
  text-align: center;
  margin-bottom: 3rem;
}
.find-us-head .eyebrow { justify-content: center; }
.find-us-head h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  font-weight: 700;
  color: var(--olive-dk);
  margin-bottom: .5rem;
}
.find-us-head p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
}
.find-us-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
.find-us-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  min-height: 380px;
}
.find-us-map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
.find-us-directions {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: var(--olive);
  color: #fff;
  padding: .75rem 1.5rem;
  border-radius: 30px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
  transition: all .25s;
  white-space: nowrap;
}
.find-us-directions:hover {
  background: var(--olive-lt);
  transform: translateX(-50%) translateY(-2px);
}
.find-us-info {
  background: var(--olive-dk);
  border-radius: 16px;
  padding: 2rem;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.find-us-block h4 {
  font-family: var(--font-sans);
  font-size: .82rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .65rem;
}
.find-us-block p {
  font-size: .95rem;
  color: rgba(255,255,255,.85);
  line-height: 1.6;
  margin-bottom: .25rem;
}
.find-us-block a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}
.find-us-block a:hover { color: var(--gold); }
.hours-list .hrow {
  display: flex;
  justify-content: space-between;
  padding: .35rem 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: .88rem;
}
.hours-list .hrow:first-child {
  font-weight: 700;
  color: #fff;
  padding-bottom: .65rem;
  margin-bottom: .25rem;
}
.hours-list .hrow:last-child { border-bottom: none; }
.hours-list .hday { color: rgba(255,255,255,.65); }
.hours-list .htime { color: #fff; font-weight: 600; }
.find-us-visit-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--red);
  color: #fff;
  padding: .9rem 1.5rem;
  border-radius: 30px;
  font-size: .95rem;
  font-weight: 600;
  text-decoration: none;
  margin-top: auto;
  align-self: flex-start;
  transition: all .25s;
  box-shadow: 0 6px 20px rgba(139,26,26,.3);
}
.find-us-visit-btn:hover {
  background: var(--red-lt);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(139,26,26,.4);
}

/* ══════════════
   FOOTER
   ══════════════ */
footer {
  background: var(--olive);
  color: #fff;
  padding: 4rem 2rem 1rem;
  position: relative;
}
.ft-grid {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1.3fr 1fr;
  gap: 2.5rem;
  padding-bottom: 1.5rem;
  align-items: start;
}
.ft-brand img {
  height: auto;
  width: 240px;
  max-width: 100%;
  margin-bottom: 1rem;
  margin-left: -8px;
  filter: brightness(0) invert(1);
}
.ft-brand p {
  font-size: 1rem;
  color: rgba(255,255,255,.7);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 1.5rem;
}
.ft-social { display: flex; gap: .65rem; }
.ft-social a {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.3);
  display: flex; align-items: center; justify-content: center;
  color: #fff; text-decoration: none; transition: all .2s;
}
.ft-social a:hover { background: #fff; color: var(--olive); border-color: #fff; }
.ft-social svg { width: 18px; height: 18px; }

.ft-col h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 1.25rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.ft-col p {
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  line-height: 1.75;
  margin-bottom: .65rem;
}
.ft-col p svg, .ft-col p .fi {
  display: inline-block; width: 18px; height: 18px;
  margin-right: 6px; vertical-align: -3px;
  opacity: .8;
}
.ft-col a {
  color: rgba(255,255,255,.75); text-decoration: none;
  transition: color .2s;
}
.ft-col a:hover { color: #fff; }

.ft-hours-divider {
  width: 24px; height: 1px;
  background: rgba(255,255,255,.3);
  margin: .75rem 0;
}
.ft-thanks {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1.05rem;
  color: rgba(255,255,255,.7);
  line-height: 1.55;
  margin-top: 1rem;
}
.ft-heart { color: var(--red-lt); }

/* Footer WhatsApp Pill */
.ft-whatsapp-pill {
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: fit-content;
  background: #25D366;
  color: #fff;
  padding: .6rem 1.2rem .6rem .9rem;
  border-radius: 30px;
  font-size: .9rem;
  font-weight: 600;
  gap: 8px;
  margin: 0 0 .85rem 0;
  box-shadow: 0 4px 12px rgba(37,211,102,.25);
  transition: all .25s;
  text-decoration: none;
}
.ft-whatsapp-pill:hover {
  background: #1ebe5b;
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(37,211,102,.4);
}
.ft-whatsapp-pill .ft-wa-icon {
  width: 16px;
  height: 16px;
  color: #fff;
  flex-shrink: 0;
}

/* Good Food Good Mood column */
.ft-mood-col {
  text-align: right;
  padding-top: 0;
}
.ft-mood-text {
  font-family: var(--font-script);
  font-size: 4rem;
  line-height: 1;
  text-align: right;
  color: #fff;
  font-weight: 500;
  letter-spacing: -.01em;
}
.ft-mood-coffee {
  display: block;
  text-align: right;
  margin-top: 1.5rem;
  color: rgba(255,255,255,.65);
}
.ft-mood-coffee svg {
  width: 130px;
  height: auto;
  margin-left: auto;
  display: block;
}

/* Bottom red strip */
.ft-bottom {
  background: var(--red);
  padding: .75rem 2rem;
  text-align: center;
  margin-left: -2rem; margin-right: -2rem; margin-bottom: -1rem;
  margin-top: 1rem;
}
.ft-bottom p {
  font-size: .76rem; color: rgba(255,255,255,.85);
}
.ft-bottom a { color: #fff; text-decoration: none; }
.ft-bottom a:hover { text-decoration: underline; }

/* ══════════════
   WHATSAPP FLOAT
   ══════════════ */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 800;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 24px rgba(37,211,102,.4); text-decoration: none;
  transition: transform .2s; animation: wap 2.5s ease-in-out infinite;
}
.wa-float:hover { transform: scale(1.1); animation: none; }
.wa-float svg { width: 28px; height: 28px; }
@keyframes wap {
  0%,100% { box-shadow: 0 6px 24px rgba(37,211,102,.4); }
  50%      { box-shadow: 0 6px 40px rgba(37,211,102,.65), 0 0 0 12px rgba(37,211,102,.07); }
}

/* ══════════════
   PAGE HERO (inner pages)
   ══════════════ */
.pg-hero {
  background: var(--olive-dk); padding: 5rem 2rem 4rem;
  text-align: center; position: relative; overflow: hidden;
}
.pg-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 100% at 50% 0%, rgba(139,26,26,.18) 0%, transparent 60%);
}
.pg-hero-inner { position: relative; z-index: 2; }
.pg-hero h1 {
  font-family: var(--font-serif); font-size: clamp(2.2rem,5vw,3.4rem);
  font-weight: 700; color: #fff; margin-bottom: .5rem;
}
.pg-hero h1 em { font-style: italic; color: var(--gold); }
.pg-hero p {
  font-family: var(--font-italic); font-style: italic;
  font-size: 1.15rem; color: rgba(255,255,255,.65);
}
.breadcrumb {
  display: flex; align-items: center; justify-content: center;
  gap: .4rem; font-size: .75rem; color: rgba(255,255,255,.4);
  margin-bottom: 1rem; letter-spacing: .05em;
}
.breadcrumb a { color: rgba(255,255,255,.55); text-decoration: none; }
.breadcrumb a:hover { color: #fff; }

/* ══════════════
   MENU PAGE
   ══════════════ */
.filter-bar {
  background: var(--cream); border-bottom: 1px solid var(--border);
  position: sticky; top: 88px; z-index: 800;
  padding: 0 2rem; overflow-x: auto; scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar { display: none; }
.fb-inner { max-width: 1180px; margin: 0 auto; display: flex; gap: 0; white-space: nowrap; }
.fbtab {
  padding: 1rem 1.2rem; font-size: .82rem; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase; color: var(--text-muted);
  background: none; border: none; border-bottom: 2px solid transparent;
  cursor: pointer; transition: all .2s; font-family: var(--font-sans); white-space: nowrap;
}
.fbtab:hover { color: var(--olive); }
.fbtab.active { color: var(--olive); border-bottom-color: var(--olive); }

.menu-body { max-width: 1180px; margin: 0 auto; padding: 3rem 2rem 6rem; }
.msec {
  margin-bottom: 3.5rem;
  scroll-margin-top: 160px;
}
.msec-hd {
  display: flex; align-items: center; gap: 1.25rem;
  margin-bottom: 1.25rem; padding-bottom: .85rem;
  border-bottom: 1px solid rgba(0,0,0,.08);
}
.msec-icon {
  width: 44px; height: 44px; background: var(--olive);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; font-size: 1.3rem; flex-shrink: 0;
}
.msec-title {
  font-family: var(--font-serif); font-size: 1.4rem;
  font-weight: 700; color: var(--olive-dk);
}
.msec-note {
  font-size: .78rem; color: var(--text-muted);
  font-style: italic; margin-top: .15rem;
}
.mitems {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(310px,1fr));
  gap: 1px; background: rgba(0,0,0,.06);
  border: 1px solid rgba(0,0,0,.06); border-radius: 8px; overflow: hidden;
}
.mitem {
  background: #fff; padding: .9rem 1.1rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; transition: background .15s;
}
.mitem:hover { background: var(--cream); }
.ml { display: flex; align-items: flex-start; gap: 9px; flex: 1; }
.vd { width: 13px; height: 13px; border-radius: 2px; flex-shrink: 0; margin-top: 3px; }
.vd.v  { border: 1.5px solid #2d7a2d; }
.vd.v::after  {
  content: ''; display: block;
  width: 5px; height: 5px; border-radius: 50%;
  background: #2d7a2d; margin: 2.5px auto;
}
.vd.nv { border: 1.5px solid var(--red); }
.vd.nv::after {
  content: ''; display: block; width: 0; height: 0;
  border-left: 2.5px solid transparent;
  border-right: 2.5px solid transparent;
  border-bottom: 5.5px solid var(--red);
  margin: 3px auto 0;
}
.iname {
  font-size: .9rem; font-weight: 500;
  color: var(--text); line-height: 1.3;
}
.inote {
  font-size: .73rem; color: var(--text-muted);
  margin-top: 2px; font-style: italic;
}
.iprice {
  font-family: var(--font-serif); font-size: .95rem;
  font-weight: 700; color: var(--olive);
  white-space: nowrap; flex-shrink: 0; text-align: right;
}
.iprice .cur {
  font-family: var(--font-sans); font-size: .68rem;
  font-weight: 400; color: var(--text-muted);
  display: block; margin-top: 1px;
}
.adv {
  display: inline-block; background: rgba(200,150,60,.12);
  color: var(--gold); font-size: .62rem; font-weight: 700;
  letter-spacing: .07em; text-transform: uppercase;
  padding: 2px 6px; border-radius: 3px; margin-left: 5px; vertical-align: middle;
}
.legend {
  display: flex; align-items: center; gap: 1.5rem;
  padding: 1rem 2rem; max-width: 1180px; margin: 0 auto;
  font-size: .78rem; color: var(--text-muted);
}
.li { display: flex; align-items: center; gap: 6px; }
.order-strip {
  position: sticky; bottom: 0; background: var(--olive);
  color: #fff; padding: .9rem 2rem; text-align: center; z-index: 700;
}
.order-strip a {
  color: #fff; text-decoration: none;
  font-size: .9rem; font-weight: 600;
  display: inline-flex; align-items: center; gap: 8px;
}
#menu-items { scroll-margin-top: 160px; }

/* ══════════════
   ABOUT PAGE
   ══════════════ */
.story { background: var(--cream); padding: 5rem 2rem; }
.story-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
}
.story-img-wrap { position: relative; }
.story-img-main {
  width: 100%; aspect-ratio: 4/5; border-radius: 12px;
  overflow: hidden; box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.story-img-main img { width: 100%; height: 100%; object-fit: cover; }
.story-badge {
  position: absolute; top: -1rem; left: -1rem;
  background: var(--red); color: #fff;
  padding: 1rem 1.25rem; border-radius: 8px;
  box-shadow: 0 8px 24px rgba(139,26,26,.3);
}
.story-badge-num { font-size: 2rem; line-height: 1; }
.story-badge-txt {
  font-size: .65rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  margin-top: 4px;
}

.story-text h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem,3.2vw,2.6rem);
  font-weight: 700; color: var(--olive-dk);
  line-height: 1.15; margin-bottom: 1.5rem;
}
.story-text h2 em { font-style: italic; color: var(--red); }
.story-text p {
  font-size: 1rem; line-height: 1.85;
  color: var(--text-mid); margin-bottom: 1.25rem;
}
.story-text p strong { color: var(--olive-dk); font-weight: 600; }
.story-stats {
  display: grid; grid-template-columns: repeat(3,1fr);
  margin-top: 2.5rem;
  border: 1px solid rgba(74,94,42,.15);
  border-radius: 8px; overflow: hidden;
}
.stat-item {
  padding: 1.25rem 1rem; text-align: center;
  border-right: 1px solid rgba(74,94,42,.15);
}
.stat-item:last-child { border-right: none; }
.stat-n {
  font-family: var(--font-serif); font-size: 1.8rem;
  font-weight: 900; color: var(--red-dk);
}
.stat-l {
  font-size: .72rem; color: var(--text-muted);
  margin-top: 3px; text-transform: uppercase; letter-spacing: .06em;
}

.quote-break {
  background: var(--olive-dk);
  padding: 5rem 2rem; text-align: center; position: relative;
}
.quote-break blockquote {
  font-family: var(--font-italic); font-style: italic;
  font-size: clamp(1.6rem,3.5vw,2.4rem);
  color: #fff; max-width: 720px; margin: 0 auto;
  line-height: 1.5;
}
.quote-break cite {
  display: block; font-family: var(--font-sans);
  font-size: .8rem; font-style: normal;
  color: rgba(255,255,255,.4); margin-top: 1.5rem;
  letter-spacing: .15em; text-transform: uppercase;
}

.values { background: var(--cream); padding: 5rem 2rem; }
.values-inner { max-width: 1180px; margin: 0 auto; text-align: center; }
.values .eyebrow { justify-content: center; }
.values h2.sec-title {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem,3.5vw,2.8rem);
  font-weight: 700; color: var(--olive-dk);
  margin-bottom: 1rem;
}
.values .sec-sub {
  font-size: 1rem; color: var(--text-muted);
  max-width: 500px; margin: 0 auto;
}
.vals-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 1.5rem; margin-top: 3rem;
}
.val-card {
  background: #fff; border-radius: 8px;
  padding: 2.5rem 2rem; text-align: left;
  border-top: 3px solid var(--olive);
  transition: transform .3s, box-shadow .3s;
}
.val-card:nth-child(2) { border-top-color: var(--red); }
.val-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.08); }
.val-num {
  font-family: var(--font-serif); font-size: 3rem;
  font-weight: 900; color: rgba(74,94,42,.12);
  line-height: 1; margin-bottom: .5rem;
}
.val-title {
  font-family: var(--font-serif); font-size: 1.2rem;
  font-weight: 700; color: var(--olive-dk);
  margin-bottom: .75rem;
}
.val-desc {
  font-size: .9rem; color: var(--text-mid);
  line-height: 1.7;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: var(--red);
  margin-bottom: .75rem;
}
.eyebrow::before, .eyebrow::after { content: '❧'; }

/* ══════════════
   GALLERY PAGE
   ══════════════ */
.g-intro { background: var(--cream); padding: 4rem 2rem 0; text-align: center; }
.g-intro .eyebrow { justify-content: center; }
.g-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem,3.2vw,2.6rem);
  font-weight: 700; color: var(--olive-dk);
  margin-bottom: .5rem;
}
.g-intro h2 em { font-style: italic; color: var(--red); }
.g-intro p {
  font-size: .95rem; color: var(--text-muted);
  max-width: 500px; margin: .5rem auto 0; line-height: 1.7;
}
.gfilter {
  display: flex; justify-content: center; gap: .25rem;
  flex-wrap: wrap; padding: 2rem 2rem 0; background: var(--cream);
}
.gftab {
  padding: .5rem 1.4rem; border-radius: 30px;
  font-size: .92rem; font-weight: 500;
  cursor: pointer; border: none; background: transparent;
  color: var(--olive-dk); transition: all .2s; font-family: var(--font-sans);
}
.gftab:hover { color: var(--olive); }
.gftab.active { background: var(--olive); color: #fff; }

.gallery-wrap { background: var(--cream); padding: 2rem 2rem 5rem; }
.gallery-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}
.gcell {
  border-radius: 12px; overflow: hidden;
  position: relative; aspect-ratio: 1;
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
  transition: transform .3s, box-shadow .3s;
}
.gcell:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.16); }
.gcell.tall { aspect-ratio: auto; grid-row: span 2; }
.gcell img { width: 100%; height: 100%; object-fit: cover; }
.gcell-overlay {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 1.5rem 1.25rem .85rem;
  background: linear-gradient(transparent, rgba(0,0,0,.7));
  color: #fff;
  transform: translateY(100%); transition: transform .3s;
}
.gcell:hover .gcell-overlay { transform: translateY(0); }
.gcell-cat {
  font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: rgba(255,255,255,.7); margin-bottom: .25rem;
}
.gcell-name {
  font-family: var(--font-serif); font-size: 1rem;
  font-weight: 700;
}

.ig-strip {
  background: var(--olive-dk); padding: 4rem 2rem;
  text-align: center;
}
.ig-strip h3 {
  font-family: var(--font-serif); font-size: 1.8rem;
  font-weight: 700; color: #fff; margin-bottom: .5rem;
}
.ig-strip p {
  font-size: .95rem; color: rgba(255,255,255,.6);
  margin-bottom: 1.75rem;
}

/* ══════════════
   CONTACT PAGE
   ══════════════ */
.contact-wrap { background: var(--cream); padding: 5rem 2rem; }
.contact-grid {
  max-width: 1180px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.contact-left h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem,3vw,2.4rem);
  font-weight: 700; color: var(--olive-dk);
  margin-bottom: 2rem;
}
.contact-left h2 em { font-style: italic; color: var(--red); }
.citem {
  display: flex; align-items: flex-start; gap: 1rem;
  margin-bottom: 1.5rem; padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.citem:last-of-type { border-bottom: none; }
.cicon {
  width: 44px; height: 44px; background: var(--olive);
  border-radius: 8px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0;
}
.cicon svg { width: 20px; height: 20px; }
.clabel {
  font-size: .7rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--text-muted);
  margin-bottom: 4px;
}
.cval { font-size: 1rem; color: var(--text); font-weight: 500; }
.cval a { color: var(--olive); text-decoration: none; }
.cval a:hover { text-decoration: underline; }

.hours-card {
  background: var(--olive-dk); border-radius: 12px;
  padding: 2rem; margin-top: 2rem;
}
.hours-card h4 {
  font-family: var(--font-serif); font-size: 1.1rem;
  font-weight: 700; color: #fff; margin-bottom: 1.25rem;
  display: flex; align-items: center; gap: .5rem;
}
.hrow {
  display: flex; justify-content: space-between; align-items: center;
  padding: .65rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.hrow:last-child { border-bottom: none; }
.hday { font-size: .85rem; color: rgba(255,255,255,.6); }
.htime { font-size: .85rem; color: #fff; font-weight: 600; }
.htime.closed { color: rgba(255,255,255,.3); font-weight: 400; }

.del-box {
  background: #fff;
  border-radius: 12px; padding: 1.75rem;
  margin-top: 1.5rem; border-left: 4px solid var(--olive);
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.del-box h4 {
  font-size: .82rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--olive); margin-bottom: 1rem;
}
.del-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.del-list li {
  font-size: .88rem; color: var(--text-mid);
  display: flex; align-items: flex-start; gap: .6rem;
  line-height: 1.55;
}
.del-list li::before { content: '→'; color: var(--olive); flex-shrink: 0; }

.map-box {
  border-radius: 12px; overflow: hidden;
  box-shadow: 0 4px 28px rgba(0,0,0,.1);
}
.map-box iframe { width: 100%; height: 440px; border: 0; display: block; }
.map-btn { margin-top: 1rem; text-align: center; }

.wa-order { background: var(--red); padding: 5rem 2rem; text-align: center; }
.wa-order h2 {
  font-family: var(--font-serif); font-size: clamp(1.8rem,3.5vw,2.6rem);
  font-weight: 700; color: #fff; margin-bottom: .6rem;
}
.wa-order p {
  font-size: .95rem; color: rgba(255,255,255,.75);
  margin-bottom: 2rem; max-width: 480px;
  margin-left: auto; margin-right: auto; line-height: 1.7;
}
.wa-big-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: #fff; color: var(--red);
  padding: 1.1rem 2.5rem; border-radius: 30px;
  text-decoration: none; font-size: 1rem; font-weight: 700;
  transition: all .25s; box-shadow: 0 8px 32px rgba(0,0,0,.2);
}
.wa-big-btn:hover { background: var(--cream); transform: translateY(-3px); }
.wa-big-btn svg { width: 22px; height: 22px; flex-shrink: 0; }

/* ══════════════
   CONTACT FORM
   ══════════════ */
.form-section {
  background: #fff;
  padding: 5rem 2rem;
  border-top: 1px solid rgba(0,0,0,.05);
}
.form-wrap {
  max-width: 760px;
  margin: 0 auto;
}
.form-intro {
  text-align: center;
  margin-bottom: 2.5rem;
}
.form-intro .eyebrow { justify-content: center; }
.form-intro h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem,3.2vw,2.6rem);
  font-weight: 700;
  color: var(--olive-dk);
  margin-bottom: .75rem;
}
.form-intro p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
  max-width: 500px;
  margin: 0 auto;
}

.cform {
  background: var(--cream);
  border-radius: 16px;
  padding: 2.5rem;
  border: 1px solid var(--border);
}
.cform-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}
.cform-field {
  margin-bottom: 1.25rem;
  display: flex;
  flex-direction: column;
}
.cform-row .cform-field { margin-bottom: 0; }
.cform-field label {
  display: block;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--olive-dk);
  margin-bottom: .5rem;
}
.cform-field input,
.cform-field textarea {
  width: 100%;
  padding: .85rem 1rem;
  font-family: var(--font-sans);
  font-size: .95rem;
  color: var(--text);
  background: #fff;
  border: 1.5px solid rgba(74,94,42,.18);
  border-radius: 8px;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.cform-field input::placeholder,
.cform-field textarea::placeholder {
  color: rgba(0,0,0,.3);
}
.cform-field input:focus,
.cform-field textarea:focus {
  border-color: var(--olive);
  box-shadow: 0 0 0 3px rgba(74,94,42,.1);
}
.cform-field textarea {
  resize: vertical;
  min-height: 120px;
  font-family: var(--font-sans);
}
.cform-submit {
  text-align: center;
  margin-top: 1.5rem;
}
.cform-submit .btn {
  padding: .9rem 2.5rem;
  font-size: 1rem;
  cursor: pointer;
}
.hidden-field {
  position: absolute;
  left: -10000px;
  top: -10000px;
}

/* Thank-you page */
.thanks-wrap {
  background: var(--cream);
  padding: 6rem 2rem;
  text-align: center;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.thanks-inner { max-width: 600px; }
.thanks-icon {
  width: 80px;
  height: 80px;
  background: var(--olive);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
}
.thanks-icon svg { width: 40px; height: 40px; color: #fff; }
.thanks-wrap h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem,4vw,3rem);
  font-weight: 700;
  color: var(--olive-dk);
  margin-bottom: 1rem;
}
.thanks-wrap h1 em { font-style: italic; color: var(--red); }
.thanks-wrap p {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.thanks-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* ══════════════
   ANIMATIONS
   ══════════════ */
@keyframes fadeUp { from { opacity: 0; transform: translateY(26px); } to { opacity: 1; transform: translateY(0); } }
.a1 { animation: fadeUp .8s 0s ease both; }
.a2 { animation: fadeUp .8s .15s ease both; }
.a3 { animation: fadeUp .8s .3s ease both; }

/* ═════════════════════════════════════════
   RESPONSIVE — TABLET (max 1024px)
   ═════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-inner { padding: 0 1.5rem; gap: 1rem; }
  .nav-logo img { height: 38px; max-width: 120px; }

  .mgrid { grid-template-columns: repeat(2,1fr); }
  .mgrid-6 { grid-template-columns: repeat(2,1fr); }
  .ft-grid { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 2rem; }
  .vals-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .gcell.tall { grid-row: span 1; aspect-ratio: 1; }
  .featured-grid { grid-template-columns: repeat(2,1fr); }
  .testi-grid { grid-template-columns: 1fr; max-width: 640px; margin: 0 auto; }
  .cat-photo { flex: 0 0 100%; min-height: 260px; }
  .cat-content { padding: 2rem; }
  .cat-features { grid-template-columns: 1fr 1fr; }
  .map-box iframe { height: 380px; }

  .hero-food-wrap { max-width: 460px; }
}

/* ═════════════════════════════════════════
   RESPONSIVE — MOBILE (max 768px)
   ═════════════════════════════════════════ */
@media (max-width: 768px) {
  /* NAV */
  .navbar { height: 60px; }
  .page-top { padding-top: 80px; }
  .nav-mobile { top: 60px; }
  .filter-bar { top: 70px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .nav-cta { display: none; }
  .nav-inner { grid-template-columns: 1fr auto; padding: 0 1rem; gap: 0; }
  .nav-logo img { height: 52px; max-width: 160px; }

  /* HERO — tightened, image first, pill overlapping */
  .hero,
  .hero.page-top {
    padding: 90px 1.25rem 2rem;
  }
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .hero-left {
    margin-top: .5rem;
  }
  .hero-left h1 {
    font-size: 2.1rem;
    margin-bottom: .75rem;
    line-height: 1.1;
  }
  .hero-desc {
    font-size: .92rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
  }
  .hero-actions {
    gap: .75rem;
    align-items: center;
  }
  .hero-actions .btn-olive {
    padding: .7rem 1.4rem;
    font-size: .88rem;
  }
  .btn-story {
    font-size: .82rem;
    gap: 8px;
  }
  .play-circle {
    width: 32px;
    height: 32px;
  }
  .play-circle svg {
    width: 10px;
    height: 10px;
  }

  /* Hero right column — image with overlapping pill */
  .hero-right {
    order: -1;
    margin: 0 auto;
    width: 100%;
    gap: 0;
  }
  .hero-food-wrap {
    max-width: 88%;
    aspect-ratio: 4/3;
    margin: 0 auto;
    border-radius: 14px;
    box-shadow: 0 10px 28px rgba(0,0,0,.15);
  }
  .hero-food-img {
    object-position: 70% center;
  }
  .delivery-pill {
    position: absolute;
    bottom: -18px;
    right: -8px;
    margin: 0;
    transform: rotate(-3deg);
    z-index: 10;
    padding: .5rem .9rem .5rem .6rem;
    box-shadow: 0 8px 20px rgba(0,0,0,.15), 0 2px 6px rgba(139,26,26,.2);
    max-width: none;
  }
  .delivery-pill-icon {
    width: 26px;
    height: 26px;
  }
  .delivery-pill-icon svg {
    width: 13px;
    height: 13px;
  }
  .delivery-pill-text {
    font-size: .55rem;
  }
  .delivery-pill-text > span {
    font-size: .55rem;
  }
  .delivery-pill-text strong {
    font-size: .82rem;
  }

  /* OUR STORY */
  .our-story { padding: 3rem 1.25rem; }
  .story-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-img-col img { aspect-ratio: 16/10; }
  .story-text-col h2 { font-size: 1.7rem; margin-bottom: 1rem; }
  .story-text-col p { font-size: .92rem; }

  /* MENU PREVIEW */
  .menu-home { padding: 2rem 1rem 3rem; }
  .mgrid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .mgrid-6 { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .mcard-img-wrap { height: 140px; }
  .mcard-body { padding: .85rem 1rem 1.2rem; }
  .mcard-name { font-size: .98rem; }
  .mcard-desc { font-size: .76rem; }
  .mcard-price { font-size: 1rem; }
  .ftabs { gap: .15rem; margin-bottom: 1.5rem; }
  .ftab { padding: .45rem 1rem; font-size: .85rem; }

  /* BBQ */
  .bbq-wrap { padding: 1.5rem 1rem; }
  .bbq {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .bbq-l {
    padding: 1.5rem 1.25rem;
    min-height: auto;
  }
  .bbq-l h2 {
    font-size: 1.7rem;
    margin-bottom: .5rem;
  }
  .bbq-l p {
    font-size: .85rem;
    margin-bottom: 1rem;
  }
  .bbq-r {
    min-height: 220px;
    max-height: 260px;
  }
  .bbq-food-img {
    min-height: 220px;
    max-height: 260px;
  }
  .bbq-fbadge { display: none; }
  .bbq-ghost { display: none; }

  /* FEATURED */
  .featured-strip { padding: 3rem 1.25rem; }
  .featured-head { flex-direction: column; align-items: flex-start; margin-bottom: 1.25rem; gap: .5rem; }
  .featured-grid { grid-template-columns: repeat(2,1fr); gap: .65rem; }
  .fcell-label { font-size: .76rem; padding: 1rem .7rem .6rem; }

  /* TESTIMONIALS */
  .testimonials { padding: 3rem 1.25rem; }
  .testimonials::before { font-size: 16rem; top: -40px; }
  .testimonials-head { margin-bottom: 2rem; }
  .testi-card { padding: 1.5rem 1.25rem; }
  .testi-quote { font-size: .96rem; }

  /* INSTAGRAM WALL */
  .ig-wall { padding: 3.5rem 1.25rem; }

  /* CATERING */
  .cat-dl-expanded { padding: 3rem 1rem; }
  .cat-dl-expanded .cat-dl-box {
    flex-direction: column;
    padding: 0;
    gap: 0;
    border-radius: 16px;
    overflow: hidden;
  }
  .cat-photo { flex: 0 0 100%; min-height: 220px; width: 100%; }
  .cat-content { padding: 1.75rem 1.5rem; text-align: left; gap: 1rem; }
  .cat-content h3 { font-size: 1.5rem; }
  .cat-features { grid-template-columns: 1fr; gap: .65rem; }
  .cat-acts-row { justify-content: flex-start; gap: .65rem; }
  .cat-acts-row .btn { padding: .65rem 1.2rem; font-size: .85rem; }
  .cat-dl-box { flex-direction: column; gap: 1.5rem; padding: 2rem; text-align: center; }
  .cat-acts { justify-content: center; }

  /* WHY */
  .why { padding: 3rem 1.25rem; }
  .why-inner { grid-template-columns: 1fr; gap: 2rem; }
  .why-bubble { padding: 1.25rem; min-height: 240px; }
  .why-img { min-height: 220px; }
  .wfeats-6 { grid-template-columns: 1fr; gap: 1rem; }
  .wfi-stat h4 { font-size: .96rem; }
  .wfi-stat p { font-size: .82rem; }

  /* FIND US */
  .find-us { padding: 3rem 1.25rem; }
  .find-us-head { margin-bottom: 2rem; }
  .find-us-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .find-us-map { min-height: 280px; }
  .find-us-map iframe { min-height: 280px; }
  .find-us-info { padding: 1.5rem; gap: 1.25rem; }

  /* CONTACT PAGE */
  .contact-wrap { padding: 3rem 1.25rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-left h2 { font-size: 1.7rem; margin-bottom: 1.5rem; }
  .map-box iframe { height: 280px; }
  .hours-card { padding: 1.5rem; }
  .form-section { padding: 3rem 1.25rem; }
  .cform { padding: 1.5rem 1.25rem; }
  .cform-row { grid-template-columns: 1fr; gap: 0; }
  .cform-row .cform-field { margin-bottom: 1.25rem; }
  .wa-order { padding: 3rem 1.25rem; }

  /* FOOTER */
  footer { padding: 2.5rem 1.25rem 1rem; }
  .ft-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 1.5rem;
    text-align: center;
  }
  .ft-brand { text-align: center; }
  .ft-brand img { width: 160px; margin: 0 auto .5rem auto; display: block; }
  .ft-brand p { font-size: .8rem; max-width: 100%; margin: 0 auto 1rem auto; }
  .ft-social { justify-content: center; }
  .ft-col { text-align: center; }
  .ft-col h4 { margin-bottom: .65rem; text-align: center; }
  .ft-col p {
    font-size: .82rem;
    text-align: center;
    justify-content: center;
  }
  .ft-col p svg, .ft-col p .fi { margin: 0 6px 0 0; }
  .ft-whatsapp-pill { margin: .75rem auto 0; }
  .ft-mood-text, .ft-mood-coffee { display: none; }
  .ft-bottom { padding: .8rem 1.25rem; margin-left: -1.25rem; margin-right: -1.25rem; }
  .ft-bottom p { font-size: .72rem; }

  /* PAGE HERO */
  .pg-hero { padding: 3rem 1.25rem 2.5rem; }
  .pg-hero h1 { font-size: 2rem; }
  .pg-hero p { font-size: 1rem; }

  /* ABOUT */
  .story { padding: 3rem 1.25rem; }
  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-badge { display: none; }
  .story-text h2 { font-size: 1.7rem; }
  .quote-break { padding: 3rem 1.25rem; }
  .quote-break blockquote { font-size: 1.4rem; }
  .values { padding: 3rem 1.25rem; }
  .vals-grid { grid-template-columns: 1fr; }
  .val-card { padding: 1.75rem 1.5rem; }

  /* MENU PAGE */
  .menu-body { padding: 2rem 1rem 4rem; }
  .legend { gap: 1rem; padding: .75rem 1.25rem; }
  .msec-hd { gap: 1rem; padding-bottom: .65rem; }
  .msec-title { font-size: 1.2rem; }
  .msec { scroll-margin-top: 130px; }
  #menu-items { scroll-margin-top: 130px; }
  .mitems { grid-template-columns: 1fr; }
  .mitem { padding: .75rem 1rem; }

  /* GALLERY */
  .g-intro { padding: 3rem 1.25rem 0; }
  .gallery-wrap { padding: 2rem 1.25rem 3rem; }
  .gallery-grid { gap: .65rem; }
  .ig-strip { padding: 3rem 1.25rem; }
}

/* ═════════════════════════════════════════
   RESPONSIVE — IG WALL TABLET (max 900px)
   ═════════════════════════════════════════ */
@media (max-width: 900px) {
  .ig-grid {
    grid-template-columns: repeat(3,1fr);
    gap: .6rem;
  }
}

/* ═════════════════════════════════════════
   RESPONSIVE — IG WALL MOBILE (max 560px)
   ═════════════════════════════════════════ */
@media (max-width: 560px) {
  .ig-grid {
    grid-template-columns: repeat(2,1fr);
    gap: .5rem;
  }
  .ig-overlay {
    opacity: 1;
    background: linear-gradient(180deg, rgba(74,94,42,0) 55%, rgba(74,94,42,.85) 100%);
    padding: .75rem .5rem;
  }
  .ig-overlay svg {
    width: 22px;
    height: 22px;
    margin-bottom: .3rem;
  }
  .ig-overlay span {
    font-size: .7rem;
  }
}

/* ═════════════════════════════════════════
   RESPONSIVE — SMALL PHONES (max 480px)
   ═════════════════════════════════════════ */
@media (max-width: 480px) {
  .nav-logo img { height: 46px; max-width: 140px; }
  .navbar { height: 54px; }
  .page-top { padding-top: 70px; }
  .nav-mobile { top: 54px; }
  .filter-bar { top: 64px; }

  .hero-left h1 { font-size: 1.85rem; }
  .hero-food-wrap { max-width: 92%; aspect-ratio: 4/3; border-radius: 12px; }

  .mgrid { grid-template-columns: 1fr; }
  .mgrid-6 { grid-template-columns: 1fr; }
  .mcard-img-wrap { height: 200px; }
  .gallery-grid { grid-template-columns: 1fr; }
  .featured-grid { grid-template-columns: 1fr 1fr; }

  .ftabs { gap: .15rem; }
  .ftab { padding: .4rem .8rem; font-size: .78rem; }

  .map-box iframe { height: 240px; }

  .ft-brand img { width: 140px; }
}

/* ═══════════════════════════
   CATERING PAGE
   ═══════════════════════════ */

/* INTRO */
.cat-intro {
    background: var(--cream);
    padding: 4rem 2rem 3rem;
    text-align: center;
  }
  .cat-intro-inner {
    max-width: 760px;
    margin: 0 auto;
  }
  .cat-intro .eyebrow { justify-content: center; }
  .cat-intro h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: var(--olive-dk);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .cat-intro h2 em { font-style: italic; color: var(--red); }
  .cat-intro p {
    font-size: 1.05rem;
    color: var(--text-mid);
    line-height: 1.75;
  }
  
  /* WHAT WE CATER - tag cards */
  .cat-tags-section {
    background: var(--cream);
    padding: 2rem 2rem 5rem;
  }
  .cat-tags-inner { max-width: 1180px; margin: 0 auto; }
  .cat-tags-head { text-align: center; margin-bottom: 3rem; }
  .cat-tags-head .eyebrow { justify-content: center; }
  .cat-tags-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.6rem, 2.8vw, 2.2rem);
    font-weight: 700;
    color: var(--olive-dk);
  }
  .cat-tags-head h2 em { font-style: italic; color: var(--red); }
  .cat-tags-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  .cat-tag-card {
    background: #fff;
    border-radius: 14px;
    padding: 2rem 1.75rem;
    text-align: center;
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
    border-top: 3px solid var(--olive);
    transition: transform .3s, box-shadow .3s;
  }
  .cat-tag-card:nth-child(2),
  .cat-tag-card:nth-child(4),
  .cat-tag-card:nth-child(6) { border-top-color: var(--red); }
  .cat-tag-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,.1);
  }
  .cat-tag-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(74,94,42,.08);
    color: var(--olive);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
  }
  .cat-tag-card:nth-child(2) .cat-tag-icon,
  .cat-tag-card:nth-child(4) .cat-tag-icon,
  .cat-tag-card:nth-child(6) .cat-tag-icon {
    background: rgba(139,26,26,.08);
    color: var(--red);
  }
  .cat-tag-icon svg { width: 28px; height: 28px; }
  .cat-tag-card h4 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--olive-dk);
    margin-bottom: .5rem;
  }
  .cat-tag-card p {
    font-size: .88rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin: 0;
  }
  
  /* PHOTO GALLERY */
  .cat-gallery {
    background: var(--cream);
    padding: 4rem 2rem;
  }
  .cat-gallery-inner { max-width: 1180px; margin: 0 auto; }
  .cat-gallery-head { text-align: center; margin-bottom: 3rem; }
  .cat-gallery-head .eyebrow { justify-content: center; }
  .cat-gallery-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: var(--olive-dk);
    margin-bottom: .5rem;
  }
  .cat-gallery-head h2 em { font-style: italic; color: var(--red); }
  .cat-gallery-head p {
    font-family: var(--font-italic);
    font-style: italic;
    font-size: 1.05rem;
    color: var(--text-muted);
  }
  .cat-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
  .cat-photo-tile {
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,.08);
    background: var(--cream-dark);
    transition: transform .3s, box-shadow .3s;
  }
  .cat-photo-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(0,0,0,.14);
  }
  .cat-photo-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s;
  }
  .cat-photo-tile:hover img { transform: scale(1.06); }
  
  /* STANDARD PACKAGE CARD */
  .cat-package {
    background: var(--cream);
    padding: 5rem 2rem;
  }
  .cat-package-inner { max-width: 760px; margin: 0 auto; }
  .cat-package-card {
    background: linear-gradient(135deg, var(--red-dk) 0%, var(--red-dk) 100%);
    border-radius: 24px;
    padding: 3rem 2.5rem;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(55,72,32,.25);
  }
  .cat-package-card::before {
    content: '';
    position: absolute;
    top: -60px; right: -60px;
    width: 220px; height: 220px;
    background: rgba(200,150,60,.1);
    border-radius: 50%;
  }
  .cat-package-card::after {
    content: '';
    position: absolute;
    bottom: -80px; left: -80px;
    width: 260px; height: 260px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
  }
  .cat-package-card > * { position: relative; z-index: 2; }
  .cat-package-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--olive-deep);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .35rem .9rem;
    border-radius: 30px;
    margin-bottom: 1rem;
  }
  .cat-package-card .eyebrow {
    color: var(--gold);
    margin-bottom: .5rem;
  }
  .cat-package-card h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.2vw, 2.4rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: .75rem;
    line-height: 1.2;
  }
  .cat-package-card h2 em { font-style: italic; color: var(--gold); }
  .cat-package-sub {
    font-size: 1rem;
    color: rgba(255,255,255,.75);
    line-height: 1.6;
    margin-bottom: 2rem;
  }
  .cat-package-price {
    display: flex;
    align-items: baseline;
    gap: .35rem;
    margin-bottom: 2rem;
    padding-bottom: 1.75rem;
    border-bottom: 1px solid rgba(255,255,255,.15);
  }
  .cat-price-currency {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--gold);
  }
  .cat-price-amount {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
  }
  .cat-price-per {
    font-size: .92rem;
    color: rgba(255,255,255,.6);
    margin-left: .35rem;
  }
  .cat-package-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: .85rem;
    margin: 0 0 2rem 0;
    padding: 0;
  }
  .cat-package-list li {
    display: flex;
    align-items: flex-start;
    gap: .75rem;
    font-size: .95rem;
    color: rgba(255,255,255,.92);
    line-height: 1.5;
  }
  .cat-package-list li svg {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    margin-top: 2px;
    color: var(--gold);
  }
  .cat-package-list li strong { color: #fff; font-weight: 700; }
  .cat-package-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .cat-package-actions .btn-outline-olive {
    background: transparent;
    color: var(--gold);
    border-color: rgba(200,150,60,.5);
  }
  .cat-package-actions .btn-outline-olive:hover {
    background: var(--gold);
    color: var(--olive-deep);
    border-color: var(--gold);
  }
  
  /* FULL MENU SHOWCASE */
  .cat-menu-showcase {
    background: var(--cream);
    padding: 4rem 2rem 5rem;
  }
  .cat-menu-inner { max-width: 1180px; margin: 0 auto; }
  .cat-menu-head { text-align: center; margin-bottom: 3.5rem; }
  .cat-menu-head .eyebrow { justify-content: center; }
  .cat-menu-head h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.2vw, 2.6rem);
    font-weight: 700;
    color: var(--olive-dk);
    margin-bottom: .5rem;
  }
  .cat-menu-head h2 em { font-style: italic; color: var(--red); }
  .cat-menu-head p {
    font-size: 1rem;
    color: var(--text-muted);
    max-width: 540px;
    margin: 0 auto;
    line-height: 1.6;
  }
  .cat-menu-section {
    background: #fff;
    border-radius: 16px;
    padding: 2rem 2rem 2.25rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
    border: 1px solid var(--border);
  }
  .cat-menu-section-head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.75rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(0,0,0,.06);
  }
  .cat-menu-icon {
    width: 52px;
    height: 52px;
    background: var(--cream-dark);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
  }
  .cat-menu-section-head h3 {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--olive-dk);
    line-height: 1.2;
  }
  .cat-menu-section-note {
    font-size: .82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: .15rem;
  }
  .cat-menu-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .cat-menu-cols-3 {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
  .cat-menu-col-label {
    display: inline-block;
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .14em;
    text-transform: uppercase;
    padding: .3rem .75rem;
    border-radius: 30px;
    margin-bottom: 1rem;
  }
  .cat-menu-col-label.cat-veg {
    background: rgba(45,122,45,.12);
    color: #2d7a2d;
  }
  .cat-menu-col-label.cat-nonveg {
    background: rgba(139,26,26,.1);
    color: var(--red);
  }
  .cat-menu-col-label.cat-rice {
    background: rgba(200,150,60,.15);
    color: var(--gold);
  }
  .cat-menu-col-label.cat-dessert {
    background: rgba(74,94,42,.1);
    color: var(--olive);
  }
  .cat-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }
  .cat-menu-list li {
    font-size: .92rem;
    color: var(--text-mid);
    line-height: 1.5;
    padding-left: 1.2rem;
    position: relative;
  }
  .cat-menu-list li::before {
    content: '•';
    color: var(--olive);
    position: absolute;
    left: 0;
    top: -1px;
    font-size: 1.2rem;
    line-height: 1.4;
  }
  
  .cat-station-card {
    background: #fff;
    border-radius: 14px;
    padding: 0 0 1.25rem;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,.05);
    border: 1px solid var(--border);
    transition: transform .3s, box-shadow .3s, border-color .3s;
    text-decoration: none;
    display: block;
    overflow: hidden;
    color: inherit;
  }
  .cat-station-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0,0,0,.12);
    border-color: var(--olive);
  }
  .cat-station-img-wrap {
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: var(--cream-dark);
  }
  .cat-station-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
  }
  .cat-station-card:hover .cat-station-img-wrap img {
    transform: scale(1.08);
  }
  .cat-station-card h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--olive-dk);
    margin: 1rem 1rem 0;
  }
  .cat-stations-note {
    text-align: center;
    font-size: .82rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 2rem;
  }
  
  /* BEVERAGES & SERVICE EXTRAS */
  .cat-extras {
    background: var(--cream);
    padding: 2rem 2rem 5rem;
  }
  .cat-extras-inner { max-width: 1180px; margin: 0 auto; }
  .cat-extras-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .cat-extras-card {
    background: #fff;
    border-radius: 16px;
    padding: 2.25rem 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,.05);
    border: 1px solid var(--border);
    border-top: 4px solid var(--olive);
  }
  .cat-extras-card:last-child { border-top-color: var(--red); }
  .cat-extras-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(74,94,42,.1);
    color: var(--olive);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
  }
  .cat-extras-card:last-child .cat-extras-icon {
    background: rgba(139,26,26,.08);
    color: var(--red);
  }
  .cat-extras-icon svg { width: 24px; height: 24px; }
  .cat-extras-card h3 {
    font-family: var(--font-serif);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--olive-dk);
    margin-bottom: .35rem;
  }
  .cat-extras-sub {
    font-size: .9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 1.25rem;
  }
  .cat-extras-list {
    list-style: none;
    margin: 0 0 1.25rem 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: .55rem;
  }
  .cat-extras-list li {
    font-size: .92rem;
    color: var(--text-mid);
    line-height: 1.5;
    padding-left: 1.4rem;
    position: relative;
  }
  .cat-extras-list li::before {
    content: '→';
    color: var(--olive);
    position: absolute;
    left: 0;
    font-weight: 700;
  }
  .cat-extras-card:last-child .cat-extras-list li::before { color: var(--red); }
  .cat-extras-note {
    font-size: .76rem;
    color: var(--text-muted);
    font-style: italic;
    padding-top: .75rem;
    border-top: 1px solid rgba(0,0,0,.06);
    margin: 0;
  }
  
  /* CATERING TESTIMONIAL */
  .cat-testi {
    background: var(--olive-dk);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
  }
  .cat-testi-inner {
    max-width: 720px;
    margin: 0 auto;
  }
  .cat-testi-stars {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-bottom: 1.5rem;
  }
  .cat-testi-stars svg {
    width: 22px;
    height: 22px;
    color: var(--gold);
  }
  .cat-testi blockquote {
    font-family: var(--font-italic);
    font-style: italic;
    font-size: clamp(1.3rem, 2.6vw, 1.8rem);
    color: #fff;
    line-height: 1.6;
    margin-bottom: 1.5rem;
  }
  .cat-testi cite {
    font-family: var(--font-sans);
    font-style: normal;
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--gold);
  }
  
  /* FINAL CTA */
  .cat-final-cta {
    background: var(--red);
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cat-final-cta::before {
    content: '';
    position: absolute;
    top: -100px; left: -100px;
    width: 300px; height: 300px;
    background: rgba(255,255,255,.04);
    border-radius: 50%;
  }
  .cat-final-cta::after {
    content: '';
    position: absolute;
    bottom: -120px; right: -80px;
    width: 280px; height: 280px;
    background: rgba(0,0,0,.06);
    border-radius: 50%;
  }
  .cat-final-cta-inner {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .cat-final-cta h2 {
    font-family: var(--font-serif);
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .cat-final-cta h2 em {
    font-style: italic;
    color: var(--gold);
  }
  .cat-final-cta p {
    font-size: 1.05rem;
    color: rgba(255,255,255,.85);
    margin-bottom: 2rem;
    line-height: 1.6;
  }
  .cat-final-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }
  
  /* ═══════════════════════════
     RESPONSIVE — CATERING PAGE
     ═══════════════════════════ */
  
  @media (max-width: 1024px) {
    .cat-tags-grid { grid-template-columns: repeat(2, 1fr); }
    .cat-gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-stations-grid { grid-template-columns: repeat(3, 1fr); }
    .cat-menu-cols-3 { grid-template-columns: 1fr 1fr; }
    .cat-extras-grid { grid-template-columns: 1fr; }
  }
  
  @media (max-width: 768px) {
    .cat-intro { padding: 3rem 1.25rem 2rem; }
    .cat-tags-section { padding: 1rem 1.25rem 3rem; }
    .cat-tags-head { margin-bottom: 2rem; }
    .cat-tags-grid { grid-template-columns: 1fr; gap: 1rem; }
    .cat-tag-card { padding: 1.5rem 1.25rem; }
  
    .cat-gallery { padding: 3rem 1.25rem; }
    .cat-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: .65rem; }
  
    .cat-package { padding: 3rem 1.25rem; }
    .cat-package-card { padding: 2.25rem 1.75rem; border-radius: 20px; }
    .cat-price-amount { font-size: 3rem; }
    .cat-package-actions { flex-direction: column; }
    .cat-package-actions .btn { width: 100%; justify-content: center; }
  
    .cat-menu-showcase { padding: 3rem 1.25rem; }
    .cat-menu-head { margin-bottom: 2.5rem; }
    .cat-menu-section { padding: 1.5rem 1.25rem 1.75rem; }
    .cat-menu-section-head { gap: .75rem; margin-bottom: 1.25rem; padding-bottom: 1rem; }
    .cat-menu-icon { width: 44px; height: 44px; font-size: 1.3rem; }
    .cat-menu-section-head h3 { font-size: 1.2rem; }
    .cat-menu-cols { grid-template-columns: 1fr; gap: 1.75rem; }
    .cat-menu-cols-3 { grid-template-columns: 1fr; gap: 1.75rem; }
  
    .cat-stations { padding: 3rem 1.25rem; }
    .cat-stations-head { margin-bottom: 2rem; }
    .cat-stations-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
    .cat-station-card { padding: 1.25rem 1rem; }
    .cat-station-emoji { font-size: 1.8rem; }
    .cat-station-card h4 { font-size: .88rem; }
  
    .cat-extras { padding: 1rem 1.25rem 3rem; }
    .cat-extras-card { padding: 1.75rem 1.5rem; }
  
    .cat-testi { padding: 3rem 1.25rem; }
    .cat-testi blockquote { font-size: 1.25rem; }
  
    .cat-final-cta { padding: 3rem 1.25rem; }
    .cat-final-cta-actions { flex-direction: column; }
    .cat-final-cta-actions .btn { width: 100%; justify-content: center; }
  }
  
  @media (max-width: 480px) {
    .cat-gallery-grid { grid-template-columns: 1fr; }
    .cat-stations-grid { grid-template-columns: 1fr 1fr; }
  }

  

/* ════════════════════════════════════════════════════════════
   CONSOLIDATED OVERRIDES — REFACTORED CLEAN VERSION
   Replaces every duplicated block at the bottom of style.css
   ════════════════════════════════════════════════════════════ */


/* ─── Hero eyebrow brand mark ─── */
.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-script);
  font-size: 1.5rem;
  color: var(--red);
  margin-bottom: .5rem;
  letter-spacing: .01em;
}


/* ─── Hero carousel ─── */
.hero-carousel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transition: opacity .5s ease;
  display: block;
}
.hero-slide.active {
  opacity: 1;
}
.hero-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.5);
  cursor: pointer;
  padding: 0;
  transition: background .25s, transform .25s;
}
.hero-dot:hover {
  background: rgba(255,255,255,.8);
}
.hero-dot.active {
  background: #fff;
  transform: scale(1.3);
}


/* ─── Contact page kitchen banner (above contact-wrap) ─── */
.contact-kitchen-banner {
  background: var(--cream);
  padding: 4rem 2rem 1rem;
}
.contact-kitchen-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
}
.contact-kitchen-banner img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  object-position: center bottom;
  border-radius: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.contact-kitchen-caption .eyebrow {
  margin-bottom: .75rem;
}
.contact-kitchen-caption h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 700;
  color: var(--olive-dk);
  line-height: 1.2;
  margin-bottom: 1rem;
}
.contact-kitchen-caption h2 em {
  font-style: italic;
  color: var(--red);
}
.contact-kitchen-caption p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.7;
}


/* ─── Homepage Find Us kitchen photo (interactive banner) ─── */
.find-us-kitchen-photo {
  position: relative;
  max-width: 1180px;
  margin: 0 auto 2.5rem;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,.18);
  isolation: isolate;
}
.find-us-kitchen-photo img {
  width: 100%;
  aspect-ratio: 21/9;
  object-fit: cover;
  object-position: center bottom;
  display: block;
  transition: transform 1.2s ease;
}
.find-us-kitchen-photo:hover img {
  transform: scale(1.04);
}
.find-us-kitchen-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(0,0,0,0) 0%,
    rgba(0,0,0,.15) 35%,
    rgba(45,58,26,.85) 100%);
  z-index: 1;
}
.find-us-kitchen-content {
  position: absolute;
  bottom: 1.75rem;
  left: 2rem;
  right: 2rem;
  z-index: 2;
  color: #fff;
  max-width: 60%;
}
.find-us-kitchen-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: .4rem .9rem .4rem .75rem;
  border-radius: 30px;
  font-family: var(--font-sans);
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: .9rem;
  border: 1px solid rgba(255,255,255,.25);
}
.find-us-kitchen-pulse {
  width: 8px;
  height: 8px;
  background: #5eff85;
  border-radius: 50%;
  box-shadow: 0 0 0 0 rgba(94,255,133,.7);
  animation: kitchenPulse 2s infinite;
}
@keyframes kitchenPulse {
  0%   { box-shadow: 0 0 0 0 rgba(94,255,133,.7); }
  70%  { box-shadow: 0 0 0 10px rgba(94,255,133,0); }
  100% { box-shadow: 0 0 0 0 rgba(94,255,133,0); }
}
.find-us-kitchen-content h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 700;
  color: #fff;
  margin: 0 0 .35rem;
  line-height: 1.15;
  letter-spacing: -0.01em;
}
.find-us-kitchen-content h3 em {
  font-style: italic;
  color: var(--gold);
}
.find-us-kitchen-content p {
  font-family: var(--font-italic);
  font-style: italic;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
  margin: 0;
}
.find-us-kitchen-stats {
  position: absolute;
  bottom: 1.75rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  gap: 1.25rem;
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.18);
  padding: 1rem 1.5rem;
  border-radius: 16px;
}
.kitchen-stat {
  text-align: center;
  color: #fff;
}
.kitchen-stat-n {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
  letter-spacing: -0.02em;
}
.kitchen-stat-l {
  font-family: var(--font-sans);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.85);
}


/* ─── Catering breadcrumb spacing (only catering has a breadcrumb) ─── */
.pg-hero .breadcrumb {
  margin-top: 2rem;
}


/* ─── Contact page — Hours | Delivery bottom row ─── */
.contact-bottom-grid {
  max-width: 1180px;
  margin: 2rem auto 0;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: stretch;
}
.contact-bottom-grid .hours-card,
.contact-bottom-grid .del-box {
  margin: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
}


/* ════════════════════════════════════════════════════════════
   RESPONSIVE OVERRIDES (mobile-only)
   ════════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
  /* Find Us kitchen photo — hide stats, full-width caption */
  .find-us-kitchen-content { max-width: 100%; }
  .find-us-kitchen-stats { display: none; }

  /* Contact kitchen banner — stack vertically */
  .contact-kitchen-banner {
    padding: 2.5rem 1.25rem 1rem;
  }
  .contact-kitchen-banner-inner {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  .contact-kitchen-banner img {
    aspect-ratio: 16/10;
    border-radius: 14px;
  }
  .contact-kitchen-caption {
    text-align: left;
  }
  .contact-kitchen-caption h2 {
    font-size: 1.6rem;
    margin-bottom: .75rem;
  }
  .contact-kitchen-caption p {
    font-size: .95rem;
    line-height: 1.65;
  }
}

@media (max-width: 768px) {
  /* Hero eyebrow smaller on mobile */
  .hero-eyebrow {
    font-size: 1.25rem;
  }

  /* Find Us kitchen photo — change aspect for mobile */
  .find-us-kitchen-photo {
    border-radius: 14px;
    margin-bottom: 1.5rem;
  }
  .find-us-kitchen-photo img {
    aspect-ratio: 4/3;
  }
  .find-us-kitchen-content {
    bottom: 1rem;
    left: 1.25rem;
    right: 1.25rem;
  }
  .find-us-kitchen-tag {
    font-size: .65rem;
    padding: .35rem .8rem .35rem .65rem;
    margin-bottom: .65rem;
  }
  .find-us-kitchen-content h3 {
    font-size: 1.3rem;
  }
  .find-us-kitchen-content p {
    font-size: .9rem;
  }

  /* Catering breadcrumb — tighter on mobile */
  .pg-hero .breadcrumb {
    margin-top: 1rem;
  }

  /* Contact bottom grid — stack vertically */
  .contact-bottom-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    padding: 0 1.25rem;
    margin-top: 1.5rem;
  }
}

/* Inner pages — remove pg-hero's own top padding when wrapped in .page-top */
.page-top > .pg-hero {
  padding-top: 1.5rem;
}
@media (max-width: 768px) {
  .page-top > .pg-hero {
    padding-top: 1rem;
  }
}

/* About page — team photo (landscape aspect to fit group shot) */
.story-img-main {
  aspect-ratio: 16/10;
}
.story-img-main img {
  object-position: center top;
}

@media (max-width: 768px) {
  .story-img-main {
    aspect-ratio: 16/11;
  }
}

/* About page — team photo proper sizing */
.story-img-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.story-img-main {
  aspect-ratio: 4/5;
  width: 100%;
  max-width: 100%;
}
.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Mobile */
@media (max-width: 768px) {
  .story-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .story-img-main {
    aspect-ratio: 4/3;
    width: 100%;
  }
  .story-img-main img {
    object-position: center top;
  }
  .story-badge {
    display: block !important;
    position: absolute;
    top: -.75rem;
    left: -.75rem;
    padding: .65rem .9rem;
  }
  .story-badge-num {
    font-size: 1.4rem;
  }
  .story-badge-txt {
    font-size: .55rem;
  }
}

/* About page — stack: full-width team photo on top, story text below */
.story-grid {
  grid-template-columns: 1fr !important;
  gap: 3rem;
  max-width: 1080px;
}
.story-img-wrap {
  width: 100%;
  max-width: 100%;
}
.story-img-main {
  aspect-ratio: 16/9;
  width: 100%;
  max-width: 100%;
}
.story-img-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

/* Story text — readable max-width, centered under photo */
.story-text {
  max-width: 760px;
  margin: 0 auto;
}

/* Mobile */
@media (max-width: 768px) {
  .story-grid {
    gap: 2rem;
  }
  .story-img-main {
    aspect-ratio: 16/10;
  }
  .story-badge {
    top: -.75rem;
    left: -.75rem;
    padding: .65rem .9rem;
  }
  .story-badge-num {
    font-size: 1.4rem;
  }
  .story-badge-txt {
    font-size: .55rem;
  }
}

/* Catering gallery — video tiles */
.cat-video-tile {
  position: relative;
  cursor: pointer;
  background: var(--olive-dk);
}
.cat-video-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cat-video-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(255,255,255,.95);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
  transition: transform .25s, background .25s;
  z-index: 3;
}
.cat-video-play::before {
  content: '';
  width: 0;
  height: 0;
  border-left: 18px solid var(--red);
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  margin-left: 5px;
}
.cat-video-tile:hover .cat-video-play {
  transform: translate(-50%, -50%) scale(1.1);
  background: #fff;
}
.cat-video-tile.playing .cat-video-play {
  opacity: 0;
  pointer-events: none;
}
.cat-video-tile.playing {
  cursor: default;
}

/* Slight gradient overlay on video poster so play button stands out */
.cat-video-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.15) 0%, transparent 30%, transparent 70%, rgba(0,0,0,.25) 100%);
  z-index: 1;
  pointer-events: none;
  transition: opacity .3s;
}
.cat-video-tile.playing::after {
  opacity: 0;
}

@media (max-width: 768px) {
  .cat-video-play {
    width: 52px;
    height: 52px;
  }
  .cat-video-play::before {
    border-left-width: 15px;
    border-top-width: 9px;
    border-bottom-width: 9px;
  }
}

/* Gallery — remove overlay labels, add subtle hover zoom */
.gcell {
  cursor: zoom-in;
  position: relative;
  overflow: hidden;
}
.gcell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.gcell:hover img {
  transform: scale(1.06);
}
/* Hide any existing overlay just in case */
.gcell-overlay {
  display: none !important;
}
/* Filter bar — hide if it exists */
.gfilter {
  display: none !important;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(15, 20, 10, .96);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity .25s ease;
}
.lightbox.open {
  display: flex;
  opacity: 1;
}
.lb-img {
  max-width: 92vw;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 30px 80px rgba(0,0,0,.5);
}
.lb-close,
.lb-prev,
.lb-next {
  position: absolute;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.25);
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  line-height: 1;
  border-radius: 50%;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: system-ui, sans-serif;
  transition: background .2s, transform .2s;
}
.lb-close:hover,
.lb-prev:hover,
.lb-next:hover {
  background: rgba(255,255,255,.2);
  transform: scale(1.08);
}
.lb-close {
  top: 1.5rem;
  right: 1.5rem;
  font-size: 1.8rem;
}
.lb-prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lb-prev:hover { transform: translateY(-50%) scale(1.08); }
.lb-next:hover { transform: translateY(-50%) scale(1.08); }
.lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,.7);
  font-family: 'DM Sans', sans-serif;
  font-size: .85rem;
  letter-spacing: .15em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .lb-close,
  .lb-prev,
  .lb-next {
    width: 44px;
    height: 44px;
    font-size: 1.5rem;
  }
  .lb-close { top: 1rem; right: 1rem; }
  .lb-prev { left: .5rem; }
  .lb-next { right: .5rem; }
  .gcell:hover img {
    transform: none; /* no hover zoom on mobile */
  }
}

#menu-items {
  scroll-margin-top: 170px;  /* nav 88px + filter bar ~50px + breathing room */
}
#menu,
#gallery,
#story,
#catering,
#contact {
  scroll-margin-top: 120px;
}

@media (max-width: 768px) {
  #menu-items {
    scroll-margin-top: 140px;  /* mobile nav 60px + filter bar ~40px + breathing */
  }
  #menu,
  #gallery,
  #story,
  #catering,
  #contact {
    scroll-margin-top: 90px;
  }
}
/* Footer — restore Good Food Good Mood column width */
footer .ft-mood-col {
  min-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
}
footer .ft-mood-text {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 3rem;
  line-height: 1.05;
  color: #fff;
  white-space: nowrap;
  display: block;
  margin-bottom: 1.5rem;
}
footer .ft-mood-coffee {
  display: block;
  width: 78px;
  height: 60px;
  color: rgba(255,255,255,.85);
  margin-top: .5rem;
}
footer .ft-mood-coffee svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 900px) {
  footer .ft-mood-text {
    font-size: 2.5rem;
    white-space: normal;
  }
  footer .ft-mood-col {
    align-items: center;
    text-align: center;
  }
}

/* ════════════════════════════════════════
   MOBILE STICKY CTA BAR — iMessage style
   Round side icons + center pill
   ════════════════════════════════════════ */
   .m-cta-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 850;
    background:var(--cream);
    border-top: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 -4px 24px rgba(0,0,0,.1);
    padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom, 0));
    align-items: center;
    gap: .75rem;
  }
  
  /* All buttons reset */
  .m-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-family: var(--font-sans);
    transition: transform .15s, box-shadow .2s, background .2s;
    cursor: pointer;
  }
  
  /* Side icons — round outline buttons (Call & Menu) */
  .m-cta-call,
  .m-cta-menu {
    flex: 0 0 auto;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--cream);
    border: 1.5px solid rgba(74,94,42,.18);
    color: var(--olive-dk);
    flex-direction: column;
    gap: 2px;
  }
  .m-cta-call svg,
  .m-cta-menu svg {
    width: 22px;
    height: 22px;
    color: var(--olive-dk);
  }
  .m-cta-call:active,
  .m-cta-menu:active {
    background: var(--cream-dark);
    transform: scale(0.95);
  }
  /* Hide the text labels on side icons (icons speak for themselves) */
  .m-cta-call span,
  .m-cta-menu span {
    display: none;
  }
  
  /* Center primary — big WhatsApp pill */
  .m-cta-primary {
    flex: 1;
    height: 52px;
    border-radius: 30px;
    background: #25D366;
    color: #fff;
    font-weight: 700;
    font-size: .95rem;
    letter-spacing: .01em;
    gap: 8px;
    box-shadow: 0 6px 18px rgba(37,211,102,.4);
  }
  .m-cta-primary svg {
    width: 22px;
    height: 22px;
    color: #fff;
  }
  .m-cta-primary:active {
    background: #1ebe5b;
    transform: scale(0.97);
    box-shadow: 0 4px 12px rgba(37,211,102,.5);
  }
  
  /* Mobile only */
  @media (max-width: 768px) {
    .m-cta-bar {
      display: flex;
    }
    .wa-float {
      display: none;
    }
    body {
      padding-bottom: 88px;
    }
    .order-strip {
      bottom: 88px;
    }
  }

  /* ════════════════════════════════════════
   CTA BANDS — Mid-page conversion blocks
   3 color variants: olive, red, cream
   ════════════════════════════════════════ */
.cta-band {
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band-inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.cta-band h3 {
  font-family: var(--font-serif);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: .75rem;
}
.cta-band h3 em {
  font-style: italic;
}
.cta-band p {
  font-size: 1.05rem;
  line-height: 1.6;
  margin-bottom: 1.75rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.cta-band-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-band-actions .btn {
  font-size: 1rem;
  padding: .9rem 1.75rem;
}
.cta-btn-wa svg {
  flex-shrink: 0;
}

/* Olive variant — after testimonials */
.cta-band-olive {
  background: var(--olive-dk);
  color: #fff;
}
.cta-band-olive h3 { color: #fff; }
.cta-band-olive h3 em { color: var(--gold); }
.cta-band-olive p { color: rgba(255,255,255,.78); }
.cta-band-olive::before {
  content: '';
  position: absolute;
  top: -80px;
  left: -80px;
  width: 240px;
  height: 240px;
  background: rgba(200,150,60,.06);
  border-radius: 50%;
  z-index: 1;
}
.cta-band-olive::after {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -60px;
  width: 200px;
  height: 200px;
  background: rgba(255,255,255,.03);
  border-radius: 50%;
  z-index: 1;
}

/* Red variant — after featured dishes */
.cta-band-red {
  background: var(--red);
  color: #fff;
}
.cta-band-red h3 { color: #fff; }
.cta-band-red h3 em { color: var(--gold); }
.cta-band-red p { color: rgba(255,255,255,.85); }
.cta-band-red::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 280px;
  height: 280px;
  background: rgba(0,0,0,.06);
  border-radius: 50%;
  z-index: 1;
}

/* Cream variant — after why choose */
.cta-band-cream {
  background: var(--cream-2);
  color: var(--olive-dk);
}
.cta-band-cream h3 { color: var(--olive-dk); }
.cta-band-cream h3 em { color: var(--red); }
.cta-band-cream p { color: var(--text-mid); }

/* Mobile */
@media (max-width: 768px) {
  .cta-band {
    padding: 3rem 1.25rem;
  }
  .cta-band h3 {
    font-size: 1.5rem;
  }
  .cta-band p {
    font-size: .95rem;
    margin-bottom: 1.25rem;
  }
  .cta-band-actions {
    flex-direction: column;
    gap: .65rem;
  }
  .cta-band-actions .btn {
    width: 100%;
    justify-content: center;
    padding: .85rem 1.5rem;
    font-size: .95rem;
  }
}

/* Menu page — louder delivery strip */
.del-strip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .25rem;
  padding: .9rem 1rem;
  background: var(--red);
  color: #fff;
  text-align: center;
}
.del-strip-main {
  font-family: var(--font-sans);
  font-size: .95rem;
  font-weight: 700;
  letter-spacing: .04em;
}
.del-strip-main strong {
  color: var(--gold);
  font-weight: 700;
  letter-spacing: .06em;
}
.del-strip-sub {
  font-size: .75rem;
  font-weight: 500;
  opacity: .85;
  letter-spacing: .02em;
}
.del-strip-sub .sep {
  margin: 0 .4rem;
  opacity: .5;
}

@media (max-width: 768px) {
  .del-strip {
    padding: .75rem .75rem;
  }
  .del-strip-main {
    font-size: .82rem;
  }
  .del-strip-sub {
    font-size: .68rem;
  }
  .del-strip-sub .sep {
    margin: 0 .25rem;
  }
}

