*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --maroon: #b64038;
  --dark:   #7A1E22;
  --blush:  #f3ddd4;
  --cream:  #f8f0e6;
  --white:  #ffffff;
  --muted:  #71524a;
  --radius: 16px;
}
body {
  font-family: 'DM Sans', sans-serif;
  background:
    radial-gradient(circle at top left, rgba(182,64,56,0.08), transparent 34%),
    linear-gradient(180deg, #fffaf2 0%, var(--cream) 42%, #f5ecdf 100%);
  color: var(--maroon);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: sticky; top: 10px; z-index: 100;
  margin: 10px 12px 0;
  background: var(--dark);
  border-radius: 28px;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  box-shadow: 0 4px 24px rgba(42,29,27,0.24);
  flex-wrap: wrap;
}
.nav-links { display: none; gap: 8px; }
.nav-links a {
  color: rgba(255,255,255,0.75); text-decoration: none;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  cursor: pointer; transition: color 0.2s; white-space: nowrap;
  display: block;
}
.nav-links a:hover, .nav-links a.active { color: #fff; }
.nav-logo {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-weight: 800; font-size: 16px; letter-spacing: 0.08em;
  color: #fff; cursor: pointer; white-space: nowrap;
}
.nav-socials { display: none; gap: 12px; align-items: center; }
.nav-socials a { color: rgba(255,255,255,0.75); display: flex; align-items: center; transition: color 0.2s; }
.nav-socials a:hover { color: #fff; }
.nav-toggle {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255,255,255,0.24);
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
nav.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
nav.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
nav.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
nav.nav-open .nav-links,
nav.nav-open .nav-socials {
  display: flex;
  flex-basis: 100%;
}
nav.nav-open .nav-links {
  flex-direction: column;
  order: 3;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid rgba(255,255,255,0.14);
}
nav.nav-open .nav-links a {
  width: 100%;
  padding: 13px 4px;
  font-size: 14px;
  color: rgba(255,255,255,0.82);
}
nav.nav-open .nav-socials {
  order: 4;
  justify-content: flex-start;
  padding-top: 10px;
}
nav.nav-open .nav-socials a {
  width: 38px;
  height: 38px;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
}

/* ── TICKER ── */
.ticker-wrap { overflow: hidden; padding: 9px 0; }
.ticker-wrap.blush { background: var(--blush); }
.ticker-wrap.white { background: var(--white); }
.ticker-wrap.picks-wrap { background: var(--blush); }
.ticker-track { display: flex; width: max-content; animation: ticker 25s linear infinite; }
.ticker-item {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px; font-weight: 600; color: var(--maroon);
  white-space: nowrap; padding: 0 16px;
  display: flex; align-items: center; gap: 10px;
}
.picks-ticker {
  gap: 10px;
  padding: 0 12px;
}
.picks-ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border: 1px solid rgba(182,64,56,0.16);
  border-radius: 999px;
  background: linear-gradient(180deg, #fff 0%, #fff4ec 100%);
  box-shadow: 0 2px 8px rgba(42,29,27,0.06);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.picks-ticker span:first-child,
.picks-ticker span:nth-child(6) {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}
.flavor-ticker {
  gap: 10px;
  padding: 0 12px;
}
.flavor-ticker span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 6px 12px;
  border: 1px solid rgba(182,64,56,0.16);
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 8px rgba(42,29,27,0.06);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.flavor-ticker span:first-child,
.flavor-ticker span:nth-child(6) {
  background: var(--maroon);
  border-color: var(--maroon);
  color: #fff;
}
@keyframes ticker { from { transform: translateX(0) } to { transform: translateX(-50%) } }

.scroll-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0ms);
}
.scroll-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ── HERO ── */
.hero {
  margin: 12px; border-radius: var(--radius);
  overflow: hidden; position: relative; height: 260px;
}
.hero img { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(120deg, rgba(42,29,27,0.55) 0%, rgba(182,64,56,0.12) 54%, transparent 72%);
}
.hero-title {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(32px, 8vw, 80px); font-weight: 800;
  color: #fff; text-align: center; line-height: 1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
  width: 90%;
}

/* ── SECTION CARDS ── */
.section-cards {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 12px; padding: 20px 12px;
}
.section-card-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  touch-action: manipulation;
  -webkit-tap-highlight-color: transparent;
}
.section-card {
  border-radius: var(--radius); overflow: hidden; aspect-ratio: 4/3;
  box-shadow: 0 4px 12px rgba(42,29,27,0.10);
  transition: transform 0.3s, box-shadow 0.3s;
}
.section-card:hover { transform: translateY(-3px); box-shadow: 3px 3px 0 var(--maroon); }
.section-card img { width: 100%; height: 100%; object-fit: cover; display: block; }
.card-label {
  text-align: center;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(13px, 3vw, 18px); font-weight: 800;
}

/* ── CAROUSEL ── */
.carousel-section {
  width: min(100%, 1240px);
  margin-inline: auto;
  padding: 0 12px;
}
.carousel-outer {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 3px 3px 0 var(--maroon); position: relative;
}
.carousel-track {
  display: flex;
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slide {
  min-width: 100%; display: grid;
  grid-template-columns: 1fr;
  background: var(--white);
  height: auto;
}
.slide-img { overflow: hidden; aspect-ratio: 4 / 3; }
.slide-img img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.slide-img img[alt="Shawarma"] { object-position: center 22%; }
.slide-info {
  min-height: 220px;
  padding: 24px 22px 28px;
  display: flex; flex-direction: column; justify-content: center; gap: 8px;
}
.slide-rank { font-size: 10px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; opacity: 0.65; }
.slide-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(15px, 3vw, 22px); font-weight: 800; line-height: 1.2; }
.slide-price { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(16px, 3vw, 20px); font-weight: 400; }
.slide-desc { font-size: clamp(11px, 2vw, 13px); line-height: 1.5; color: var(--muted); display: none; }
.slide-btn {
  display: inline-block; border: 1.5px solid var(--maroon); color: var(--maroon);
  padding: 8px 16px; border-radius: 100px;
  font-family: 'Bricolage Grotesque', sans-serif; font-size: 12px; font-weight: 600;
  text-decoration: none; align-self: flex-start;
  box-shadow: 2px 2px 0 var(--maroon); transition: background 0.2s, color 0.2s;
}
.slide-btn:hover { background: var(--maroon); color: #fff; }
.c-prev, .c-next {
  position: absolute; top: min(36vw, 150px); transform: translateY(-50%);
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--white); border: 1.5px solid var(--maroon);
  color: var(--maroon); font-size: 14px; cursor: pointer; z-index: 5;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 2px 2px 0 var(--maroon); transition: background 0.2s, color 0.2s;
}
.c-prev:hover, .c-next:hover { background: var(--maroon); color: #fff; }
.c-prev { left: 8px; }
.c-next { right: 8px; }
.carousel-dots { display: flex; justify-content: center; gap: 7px; margin-top: 12px; }
.dot { width: 7px; height: 7px; border-radius: 50%; background: rgba(182,64,56,0.24); border: none; cursor: pointer; transition: background 0.2s, transform 0.2s; }
.dot.active { background: var(--maroon); transform: scale(1.3); }

/* ── INSTA STRIP ── */
.insta-strip { display: flex; gap: 10px; padding: 20px 12px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.insta-handle {
  min-width: 120px; height: 120px; background: var(--blush);
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; flex-shrink: 0;
}
.insta-handle .follow { font-size: 10px; color: var(--muted); }
.insta-handle .handle { font-family: 'Bricolage Grotesque', sans-serif; font-size: 11px; font-weight: 700; text-align: center; padding: 0 8px; }
.insta-img { width: 120px; height: 120px; flex-shrink: 0; border-radius: var(--radius); overflow: hidden; }
.insta-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* ── INSTA STRIP Done ── */
.insta-handle {
  min-width: 120px; height: 120px; background: var(--blush);
  border-radius: var(--radius); display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 5px; flex-shrink: 0;
}
.insta-handle .follow { font-size: 10px; color: var(--muted); }
.insta-handle .handle { font-family: 'Bricolage Grotesque', sans-serif; font-size: 11px; font-weight: 700; text-align: center; padding: 0 8px; }
.insta-img { width: 120px; height: 120px; flex-shrink: 0; border-radius: var(--radius); overflow: hidden; }
.insta-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── FOOTER ── */
footer { background: var(--white); border-top: 1px solid rgba(42,29,27,0.10); padding: 36px 16px 24px; }
.footer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; text-align: center; margin-bottom: 24px; }
.footer-grid h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 800; margin-bottom: 8px; }
.footer-grid p { font-size: 12px; line-height: 1.7; color: var(--muted); }
.footer-address {
  color: inherit;
  text-decoration: none;
}
.footer-address:hover {
  color: var(--maroon);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-legal {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin: -8px 0 18px;
  font-size: 12px;
}
.footer-legal a {
  color: var(--muted);
  text-decoration: none;
}
.footer-legal a:hover {
  color: var(--maroon);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.footer-bottom { text-align: center; font-size: 11px; color: #bbb; border-top: 1px solid rgba(42,29,27,0.08); padding-top: 16px; }

.legal-page {
  max-width: 960px;
  margin: 24px auto 56px;
  padding: 0 18px;
}
.legal-card {
  background: var(--white);
  border: 1px solid rgba(42,29,27,0.10);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(42,29,27,0.08);
  padding: 28px;
}
.legal-card h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 24px;
  line-height: 1.1;
  margin: 28px 0 10px;
}
.legal-card h2:first-child { margin-top: 0; }
.legal-card p,
.legal-card li {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
}
.legal-card ul {
  padding-left: 20px;
  margin: 8px 0 18px;
}

/* ── SHARED COMPONENTS ── */
.btn { display: inline-block; background: transparent; border: 1.5px solid var(--maroon); color: var(--maroon); padding: 10px 22px; border-radius: 100px; font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; font-weight: 600; cursor: pointer; text-decoration: none; box-shadow: 3px 3px 0 var(--maroon); transition: background 0.2s, color 0.2s; }
.btn:hover { background: var(--maroon); color: #fff; }
.btn-filled { background: var(--maroon); color: #fff; }
.btn-filled:hover { background: var(--dark); }
.btn-ubereats {
  background: #06c167;
  border-color: #06c167;
  color: #fff;
  box-shadow: 3px 3px 0 #0b7f45;
}
.btn-ubereats:hover {
  background: #048f4d;
  border-color: #048f4d;
  color: #fff;
}
.btn-sm { padding: 6px 14px; font-size: 11px; border-radius: 100px; background: transparent; border: 1.5px solid var(--maroon); color: var(--maroon); cursor: pointer; font-family: 'Bricolage Grotesque', sans-serif; font-weight: 600; transition: background 0.2s, color 0.2s; text-decoration: none; display: inline-block; }
.btn-sm:hover { background: var(--maroon); color: #fff; }

/* ── PAGE HERO ── */
.page-hero { margin: 12px; border-radius: var(--radius); background: var(--maroon); padding: 48px 32px; color: #fff; }
.page-hero .eyebrow { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; margin-bottom: 8px; }
.page-hero h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(28px, 7vw, 64px); font-weight: 800; line-height: 1; margin-bottom: 12px; }
.page-hero p { opacity: 0.75; font-size: 14px; line-height: 1.6; }

/* ── PICKUP BANNER ── */
.pickup-banner { margin: 12px; background: var(--blush); border-radius: var(--radius); padding: 28px 24px; }
.pickup-banner h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 18px; font-weight: 800; margin-bottom: 6px; }
.pickup-banner p { font-size: 13px; color: var(--muted); line-height: 1.5; margin-bottom: 16px; }
.pickup-steps { display: flex; flex-direction: column; gap: 8px; }
.pickup-step { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 500; }
.pickup-steps .btn-ubereats { align-self: flex-start; margin-top: 8px; }
.step-num { width: 24px; height: 24px; border-radius: 50%; background: var(--maroon); color: #fff; flex-shrink: 0; display: flex; align-items: center; justify-content: center; font-family: 'Bricolage Grotesque', sans-serif; font-size: 11px; font-weight: 800; }

/* ── MENU ── */
.menu-section { padding: 24px 12px; }
.menu-filter {
  display: flex;
  gap: 10px;
  margin: 0 0 22px;
  padding: 4px 0 8px;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.menu-filter::-webkit-scrollbar { display: none; }
.menu-filter-btn {
  flex: 0 0 auto;
  border: 1.5px solid rgba(182,64,56,0.18);
  border-radius: 999px;
  background: var(--white);
  color: var(--maroon);
  cursor: pointer;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
  padding: 10px 16px;
  box-shadow: 0 2px 8px rgba(42,29,27,0.06);
  transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s;
  white-space: nowrap;
}
.menu-filter-btn:hover,
.menu-filter-btn.active {
  background: var(--dark);
  border-color: var(--dark);
  color: #fff;
}
.menu-filter-btn:hover { transform: translateY(-1px); }
.menu-category.is-hidden { display: none; }
.menu-cat-title { font-family: 'Bricolage Grotesque', sans-serif; font-size: 20px; font-weight: 800; margin-bottom: 16px; padding-bottom: 8px; border-bottom: 2px solid var(--blush); }
.menu-cat-note {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
  margin: -8px 0 16px;
}
.menu-grid { display: grid; grid-template-columns: 1fr; gap: 14px; margin-bottom: 32px; }
.menu-card { background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: 0 2px 10px rgba(42,29,27,0.07); display: grid; grid-template-columns: 120px 1fr; }
.menu-card.menu-card-text { display: block; }
.menu-card img { width: 120px; height: 120px; object-fit: cover; display: block; }
.menu-card-body { padding: 14px 16px; display: flex; flex-direction: column; justify-content: space-between; gap: 14px; min-height: 100%; }
.menu-card-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.menu-card-desc { font-size: 11px; color: var(--muted); line-height: 1.4; margin-bottom: 10px; }
.menu-card-footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; }
.menu-card-price { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; font-weight: 700; }

/* ── BUTCHERY ── */
.butchery-hero { margin: 12px; border-radius: var(--radius); background: var(--maroon); overflow: hidden; }
.butchery-hero-img { width: 100%; height: 200px; overflow: hidden; }
.butchery-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.butchery-hero-text { padding: 32px 28px; color: #fff; display: flex; flex-direction: column; gap: 10px; }
.butchery-hero-text .eyebrow { font-size: 10px; letter-spacing: 0.12em; text-transform: uppercase; opacity: 0.6; }
.butchery-hero-text h1 {
  max-width: 310px;
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(24px, 6.4vw, 52px);
  font-weight: 800;
  line-height: 1.05;
}
.butchery-hero-text p { max-width: 330px; opacity: 0.75; font-size: 13px; line-height: 1.5; }
.cuts-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 20px 12px; }
.cut-card { background: var(--white); border-radius: 14px; overflow: hidden; box-shadow: 0 2px 8px rgba(42,29,27,0.07); }
.cut-card img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.cut-card-body { padding: 10px 12px 12px; }
.cut-card-name { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; font-weight: 800; margin-bottom: 2px; }
.cut-card-detail { font-size: 10px; color: var(--muted); }
.cut-card-price { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 700; margin-top: 4px; }
.butchery-gallery-section { padding: 28px 12px 20px; }
.butchery-gallery-intro {
  max-width: 680px;
  margin-bottom: 18px;
}
.butchery-gallery-intro .eyebrow {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 8px;
}
.butchery-gallery-intro h2 {
  font-family: 'Bricolage Grotesque', sans-serif;
  font-size: clamp(26px, 7vw, 44px);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 10px;
}
.butchery-gallery-intro p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}
.butchery-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
.butchery-photo {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  box-shadow: 0 4px 14px rgba(42,29,27,0.10);
}
.butchery-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.butchery-cta { margin: 0 12px 32px; background: var(--blush); border-radius: var(--radius); padding: 36px 24px; text-align: center; }
.butchery-cta h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 8px; }
.butchery-cta p { font-size: 13px; color: var(--muted); margin-bottom: 20px; line-height: 1.5; }

/* ── GROCERY ── */
.grocery-hero { margin: 12px; border-radius: var(--radius); overflow: hidden; border: 1.5px solid rgba(182,64,56,0.16); background: var(--blush); }
.grocery-hero-img { width: 100%; height: 200px; overflow: hidden; }
.grocery-hero-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.grocery-hero-text { padding: 28px 24px; }
.grocery-hero-text h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(26px, 7vw, 56px); font-weight: 800; line-height: 1; margin-bottom: 10px; }
.grocery-hero-text p { font-size: 13px; line-height: 1.6; color: var(--muted); margin-bottom: 18px; }
.cat-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; padding: 20px 12px; }
.cat-tile { border-radius: var(--radius); padding: 20px 18px; }
.cat-tile.pink { background: var(--blush); }
.cat-tile.white { background: var(--white); border: 1.5px solid rgba(182,64,56,0.16); }
.cat-tile.dark { background: var(--maroon); }
.cat-icon { font-size: 26px; margin-bottom: 8px; }
.cat-tile h3 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 14px; font-weight: 800; margin-bottom: 4px; }
.cat-tile:not(.dark) h3, .cat-tile:not(.dark) p { color: var(--maroon); }
.cat-tile.dark h3, .cat-tile.dark p { color: #fff; }
.cat-tile p { font-size: 11px; line-height: 1.5; }
.specials-section { margin: 0 12px 32px; background: var(--maroon); border-radius: var(--radius); padding: 32px 24px; color: #fff; }
.specials-section h2 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 18px; }
.specials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.special-item { background: rgba(255,255,255,0.1); border-radius: 12px; padding: 16px; }
.special-item .tag { font-size: 9px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.6; margin-bottom: 4px; }
.special-item h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 13px; font-weight: 800; margin-bottom: 6px; }
.price-row { display: flex; gap: 8px; align-items: baseline; }
.new-price { font-family: 'Bricolage Grotesque', sans-serif; font-size: 17px; font-weight: 800; }
.old-price { font-size: 11px; opacity: 0.45; text-decoration: line-through; }

/* ── OFFERS ── */
.offers-hero { margin: 12px; background: var(--maroon); border-radius: var(--radius); padding: 40px 28px; color: #fff; }
.offers-hero h1 { font-family: 'Bricolage Grotesque', sans-serif; font-size: clamp(28px, 8vw, 56px); font-weight: 800; line-height: 1.1; margin-bottom: 8px; }
.offers-hero p { color: rgba(255,255,255,0.65); font-size: 14px; }
.deals-grid { display: grid; grid-template-columns: 1fr; gap: 12px; padding: 20px 12px; }
.deal-card { background: var(--white); border-radius: var(--radius); padding: 20px; display: flex; gap: 16px; align-items: center; box-shadow: 0 2px 8px rgba(42,29,27,0.07); border: 1.5px solid rgba(42,29,27,0.08); }
.deal-badge { width: 64px; height: 64px; border-radius: 50%; background: var(--blush); display: flex; flex-direction: column; align-items: center; justify-content: center; flex-shrink: 0; }
.deal-badge .pct { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; font-weight: 800; line-height: 1; }
.deal-badge .off { font-size: 9px; font-weight: 600; line-height: 1.05; text-align: center; }
.deal-body { min-width: 0; }
.deal-body h4 { font-family: 'Bricolage Grotesque', sans-serif; font-size: 15px; font-weight: 800; margin-bottom: 4px; }
.deal-body p { font-size: 12px; color: var(--muted); line-height: 1.4; margin-bottom: 8px; overflow-wrap: break-word; }
.deal-code { font-size: 10px; font-weight: 600; letter-spacing: 0.08em; background: var(--blush); padding: 3px 10px; border-radius: 100px; display: inline-block; }
/* navigation added manually */

.contact-cta {
  width: calc(100% - 24px);
  max-width: 1400px;

  margin: 24px auto;
  background: var(--white);
  border-radius: 24px;

  padding: 48px 40px;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.contact-cta-left {
  max-width: 760px;
}

.contact-cta .eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);

  margin-bottom: 14px;
}

.contact-cta h2 {
  font-family: 'Bricolage Grotesque', sans-serif;

  font-size: clamp(32px, 4vw, 68px);

  line-height: 1.05;

  color: var(--maroon);

  margin-bottom: 18px;
}

.contact-cta p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.5;
}

.contact-cta-buttons {
  display: flex;
  gap: 16px;
  flex-shrink: 0;
}

@media (max-width: 900px) {

  .contact-cta {
    flex-direction: column;
    align-items: flex-start;

    padding: 34px 22px;
  }

  .contact-cta-buttons {
    width: 100%;
    flex-wrap: wrap;
  }

  .contact-cta h2 {
    font-size: 48px;
  }
}
/* ── DESKTOP OVERRIDES ── */
@media (min-width: 768px) {
  nav { margin: 16px 24px 0; padding: 14px 28px; border-radius: 50px; flex-wrap: nowrap; }
  .nav-toggle { display: none; }
  .nav-links,
  .nav-socials,
  nav.nav-open .nav-links,
  nav.nav-open .nav-socials { display: flex; flex-basis: auto; margin-top: 0; padding-top: 0; border-top: 0; }
  .nav-links { flex-direction: row; order: 0; }
  .nav-socials { order: 0; justify-content: initial; }
  nav.nav-open .nav-links a { width: auto; padding: 0; font-size: 13px; }
  nav.nav-open .nav-socials a { width: auto; height: auto; border: 0; border-radius: 0; background: transparent; }
  .nav-links a { font-size: 13px; gap: 24px; }
  .nav-links { gap: 24px; }
  .nav-logo { font-size: 18px; }
  .hero { margin: 24px; height: 400px; }
  .section-cards { gap: 20px; padding: 40px 24px; }
  .card-label { font-size: 18px; }
  .carousel-section { padding: 0 24px; }
  .slide { grid-template-columns: minmax(0, 52%) minmax(340px, 48%); height: clamp(310px, 25vw, 360px); }
  .slide-img { aspect-ratio: auto; height: 100%; }
  .slide-info { min-height: 0; padding: 34px clamp(34px, 5vw, 62px); gap: 12px; }
  .slide-rank { font-size: 11px; }
  .slide-name { font-size: 22px; }
  .slide-price { font-size: 20px; }
  .slide-desc { display: block; }
  .slide-btn { font-size: 13px; padding: 10px 22px; }
  .c-prev, .c-next { top: 50%; }
  .c-prev { left: 12px; } .c-next { right: 12px; }
  .insta-strip { padding: 40px 24px; }
  .insta-handle { min-width: 150px; height: 150px; }
  .insta-img { width: 150px; height: 150px; }
  footer { padding: 50px 24px 30px; }
  .footer-grid { gap: 40px; }
  .footer-grid h4 { font-size: 17px; }
  .footer-grid p { font-size: 14px; }
  .page-hero { margin: 24px; padding: 70px 60px; }
  .page-hero h1 { font-size: clamp(36px, 5vw, 64px); }
  .pickup-banner { margin: 24px; padding: 36px 48px; display: grid; grid-template-columns: 1fr auto; gap: 40px; align-items: center; }
  .pickup-banner p { margin-bottom: 0; }
  .pickup-steps { flex-direction: column; }
  .menu-section { padding: 36px 24px; }
  .menu-filter { gap: 12px; margin-bottom: 28px; }
  .menu-filter-btn { font-size: 13px; padding: 11px 18px; }
  .menu-grid { grid-template-columns: repeat(3, 1fr); }
  .menu-card { display: block; }
  .menu-card img { width: 100%; height: auto; aspect-ratio: 4/3; }
  .menu-card-body { padding: 16px 18px 18px; }
  .menu-card-name { font-size: 16px; }
  .menu-card-desc { font-size: 12px; }
  .menu-cat-title { font-size: 24px; }
  .butchery-hero { display: grid; grid-template-columns: 1fr 1fr; margin: 24px; min-height: 340px; box-shadow: 4px 4px 0 var(--dark); }
  .butchery-hero-img { height: auto; }
  .butchery-hero-text { padding: 60px 50px; }
  .butchery-hero-text h1 { max-width: none; font-size: clamp(32px, 3.5vw, 52px); }
  .butchery-hero-text p { max-width: none; }
  .cuts-grid { grid-template-columns: repeat(4, 1fr); gap: 16px; padding: 36px 24px; }
  .cut-card-name { font-size: 14px; }
  .butchery-gallery-section { padding: 42px 24px 28px; }
  .butchery-gallery-intro { margin-bottom: 24px; }
  .butchery-gallery-intro h2 { font-size: clamp(34px, 4vw, 54px); }
  .butchery-gallery-intro p { font-size: 15px; }
  .butchery-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }
  .butchery-cta { margin: 0 24px 40px; padding: 48px; }
  .butchery-cta h3 { font-size: 28px; }
  .grocery-hero { display: grid; grid-template-columns: 1fr 1fr; margin: 24px; background: linear-gradient(135deg, var(--blush) 0%, var(--white) 100%); padding: 0; }
  .grocery-hero-img { height: auto; }
  .grocery-hero-text { padding: 60px; }
  .grocery-hero-text h1 { font-size: clamp(32px, 4vw, 56px); margin-bottom: 14px; }
  .grocery-hero-text p { font-size: 15px; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 36px 24px; }
  .cat-tile { padding: 28px; }
  .cat-icon { font-size: 32px; }
  .cat-tile h3 { font-size: 18px; }
  .cat-tile p { font-size: 13px; }
  .specials-section { margin: 0 24px 40px; padding: 48px; }
  .specials-section h2 { font-size: 30px; }
  .specials-grid { grid-template-columns: repeat(3, 1fr); }
  .special-item { padding: 20px; }
  .special-item h4 { font-size: 16px; }
  .new-price { font-size: 20px; }
  .offers-hero { margin: 24px; padding: 60px; display: flex; justify-content: space-between; align-items: center; }
  .offers-emoji { font-size: 64px; display: block; }
  .deals-grid { grid-template-columns: repeat(2, 1fr); gap: 18px; padding: 36px 24px; }
  .deal-card { padding: 28px; gap: 20px; }
  .deal-badge { width: 76px; height: 76px; }
  .deal-badge .pct { font-size: 18px; }
  .deal-body h4 { font-size: 17px; }
  .deal-body p { font-size: 12px; }
}

