/* =============================================================
   CHAMAN RESTAURANT — main.css v3.0
   MH Tech Solutions
   ============================================================= */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { overflow-x: hidden; scroll-behavior: smooth; }
body { font-family: 'Inter', system-ui, sans-serif; color: var(--green-dark); background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* ── Tokens ── */
:root {
  --green:      #1A3A2A;
  --green-mid:  #2D6A4F;
  --green-dark: #0D1F15;
  --gold:       #C9A84C;
  --gold-lt:    #E8C96A;
  --white:      #ffffff;
  --off-white:  #F5F1EB;
  --font-h:     'Oswald', sans-serif;
  --font-b:     'Inter', system-ui, sans-serif;
  --r:          12px;
  --shadow:     0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 48px rgba(0,0,0,0.18);
}

/* ── Container ── */
.container { max-width: 1200px; margin-inline: auto; padding-inline: 1.5rem; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .8rem 1.9rem; border-radius: 999px;
  font-family: var(--font-h); font-size: 1rem; font-weight: 600;
  letter-spacing: .04em; cursor: pointer; border: 2px solid transparent;
  transition: transform .22s, box-shadow .22s, background .22s, color .22s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn--gold    { background: var(--gold); color: var(--green-dark); }
.btn--gold:hover { background: var(--gold-lt); box-shadow: 0 8px 24px rgba(201,168,76,.45); }
.btn--outline { background: transparent; border-color: rgba(255,255,255,.55); color: #fff; }
.btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }
.btn--lg { padding: 1rem 2.4rem; font-size: 1.05rem; }
.btn--outline-dark { background: transparent; border-color: var(--green-dark); color: var(--green-dark); }
.btn--outline-dark:hover { background: var(--green-dark); color: #fff; }

/* ═══════════════════════════════════════════════════════════
   HEADER  —  fixed, transparent → solid on scroll
   Layout: [nav left] [logo center] [order right]
   ═══════════════════════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  background: rgba(10,24,16,0.15);
  transition: background .35s, box-shadow .35s;
}
.site-header.scrolled {
  background: rgba(10,24,16,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,.5);
}

.hdr-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 90px;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 .75rem;
  position: relative;
}

/* ── Nav — left ── */
/* ── Left: Hamburger — always visible ── */
.hdr-left { flex: 1; display: flex; align-items: center; }

.hdr-burger {
  display: flex; flex-direction: column; gap: 5px;
  padding: .5rem; background: none; border: none; cursor: pointer;
  flex-shrink: 0;
}
.hdr-burger span {
  display: block; width: 26px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hdr-burger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.is-open span:nth-child(2) { opacity: 0; }
.hdr-burger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Logo — absolute center ── */
.hdr-logo {
  position: absolute;
  left: 50%; transform: translateX(-50%);
}
.hdr-logo a { display: flex; align-items: center; }
.hdr-logo__img {
  height: 72px; width: auto;
  display: block; object-fit: contain;
}
.hdr-logo__text {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 700;
  color: #fff; line-height: 1; white-space: nowrap;
}
.hdr-logo__text em { color: var(--gold); font-style: normal; }

/* ── Right: Order Now — always visible ── */
.hdr-right {
  flex: 1; display: flex; align-items: center;
  justify-content: flex-end;
}

.hdr-order-btn {
  display: inline-flex; align-items: center;
  padding: .6rem 1.5rem; border-radius: 999px;
  background: var(--gold); color: var(--green-dark);
  font-family: var(--font-h); font-size: .88rem; font-weight: 700; letter-spacing: .04em;
  white-space: nowrap;
  transition: background .2s, transform .2s;
}
.hdr-order-btn:hover { background: var(--gold-lt); transform: translateY(-1px); }

/* ── Nav — dropdown, hidden by default, opened by hamburger ── */
.hdr-nav {
  display: none;
  position: absolute; top: 90px; left: 0; right: 0;
  background: rgba(10,24,16,.98);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(201,168,76,.15);
  padding: .75rem 0 1.25rem;
  z-index: 9998;
}
.hdr-nav.is-open { display: block; }
.hdr-nav__list { display: flex; flex-direction: column; margin: 0; padding: 0; list-style: none; }
.hdr-nav__list li { list-style: none; border: none; outline: none; margin: 0; padding: 0; }
.hdr-nav__list li::before, .hdr-nav__list li::after { display: none; }
.hdr-nav__list a {
  display: block; padding: .85rem 2rem;
  font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,.85);
  border-bottom: 1px solid rgba(255,255,255,.06);
  transition: color .2s, background .2s;
  background: none;
}
.hdr-nav__list a:hover { color: var(--gold); background: rgba(201,168,76,.06); }
.hdr-nav__list .current-menu-item > a { color: var(--gold); font-weight: 600; }

/* ═══════════════════════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════════════════════ */
.site-main { padding-top: 0; }

.hero {
  position: relative;
  background-image: url('https://chamanrestaurant.com/wp-content/uploads/2026/06/chaman-hero-bg.webp');
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  overflow: hidden;
  min-height: 100vh;
}

.hero::before { display: none; }

.hero__bg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  max-width: 1200px;
  width: 100%;
  margin-inline: auto;
  padding-inline: 1.5rem;
  padding-block: 9rem 5rem;
  position: relative; z-index: 1;
}

.hero__left { max-width: 600px; }

/* ── Left column ── */
.hero__left { display: flex; flex-direction: column; }

.hero__tag {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .73rem; font-weight: 600; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold);
  background: rgba(201,168,76,.1); border: 1px solid rgba(201,168,76,.25);
  border-radius: 999px; padding: .4rem 1rem;
  margin-bottom: 1.5rem; width: fit-content;
}
.hero__tag svg { flex-shrink: 0; }

.hero__title {
  font-family: var(--font-h);
  font-size: clamp(3.8rem, 8vw, 7.5rem);
  font-weight: 700;
  line-height: .92;
  color: #fff;
  letter-spacing: -.01em;
  text-transform: uppercase;
  margin-bottom: 1.75rem;
}
.hero__title--gold { color: var(--gold); }

.hero__sub {
  font-size: 1rem; color: rgba(255,255,255,.62);
  line-height: 1.7; max-width: 420px;
  margin-bottom: 2rem;
}

.hero__cats {
  display: flex; gap: .6rem; flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.hero__cat {
  padding: .35rem .95rem; border-radius: 999px;
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18);
  color: rgba(255,255,255,.8); font-size: .82rem; font-weight: 500;
  transition: background .2s, border-color .2s, color .2s;
}
.hero__cat:hover { background: var(--gold); border-color: var(--gold); color: var(--green-dark); }

.hero__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3rem; }

/* Stats */
.hero__stats {
  display: flex; align-items: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.1);
}
.hero__stat { display: flex; flex-direction: column; gap: .2rem; padding-right: 2rem; }
.hero__stat strong {
  display: flex; align-items: center; gap: .35rem;
  font-family: var(--font-h); font-size: 1.8rem; font-weight: 700;
  color: var(--gold); line-height: 1;
}
.hero__stat strong svg { color: var(--gold); flex-shrink: 0; }
.hero__stat span {
  font-size: .72rem; text-transform: uppercase;
  letter-spacing: 1.5px; color: rgba(255,255,255,.45); font-weight: 500;
}
.hero__stat-sep {
  width: 1px; height: 38px;
  background: rgba(255,255,255,.15);
  margin-right: 2rem; flex-shrink: 0;
}

/* ── Right column — image ── */
.hero__right {
  display: flex; align-items: stretch; justify-content: flex-end;
  position: relative; overflow: visible;
}
.hero__img-wrap { position: relative; width: 100%; height: 100%; display: flex; align-items: center; justify-content: flex-end; }
.hero__img-glow {
  position: absolute; bottom: -40px; left: 50%; transform: translateX(-50%);
  width: 520px; height: 520px;
  background: radial-gradient(circle, rgba(201,168,76,.22) 0%, transparent 65%);
  border-radius: 50%; filter: blur(40px); pointer-events: none;
}
.hero__img {
  position: relative; z-index: 1;
  width: 115%; max-width: none;
  height: auto;
  object-fit: contain; object-position: center right;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.7));
}
.hero__img-placeholder {
  position: relative; z-index: 1;
  font-size: 10rem; line-height: 1;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,.5));
}

/* Wave */
.hero__wave {
  position: absolute; bottom: -2px; left: 0; right: 0; z-index: 2; line-height: 0;
}
.hero__wave svg { display: block; width: 100%; }

/* ═══════════════════════════════════════════════════════════
   SECTION 2 · ABOUT
   ═══════════════════════════════════════════════════════════ */
.about { background: #fff; padding: 6rem 0; }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about__eyebrow {
  display: block;
  font-size: .72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 3px; color: var(--gold); margin-bottom: .75rem;
}
.about__title {
  font-family: var(--font-h);
  font-size: clamp(2.4rem, 4.5vw, 3.8rem);
  font-weight: 700; text-transform: uppercase;
  line-height: .95; color: var(--green-dark);
  margin-bottom: 1.5rem;
}
.about__title--gold { color: var(--gold); }
.about__desc {
  font-size: 1rem; color: #555; line-height: 1.75;
  margin-bottom: 1.75rem; max-width: 480px;
}
.about__features {
  display: flex; flex-direction: column; gap: .65rem;
  margin-bottom: 2rem; list-style: none;
}
.about__features li {
  display: flex; align-items: center; gap: .6rem;
  font-size: .95rem; font-weight: 500; color: var(--green-dark);
}
.about__features a { color: var(--green-mid); font-weight: 600; }
.about__features a:hover { color: var(--gold); }
.about__ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.about__image { position: relative; min-width: 0; }
.about__image img {
  width: 100%; border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  object-fit: cover; max-height: 560px;
}

/* Scrolling gallery in about section */
.about__gallery-scroll {
  height: 420px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
  box-shadow: 0 24px 64px rgba(0,0,0,.18);
  position: relative;
}
.about__gallery-scroll::before,
.about__gallery-scroll::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 60px;
  z-index: 2;
  pointer-events: none;
}
.about__gallery-scroll::before {
  left: 0;
  background: linear-gradient(to right, #fff 0%, transparent 100%);
}
.about__gallery-scroll::after {
  right: 0;
  background: linear-gradient(to left, #fff 0%, transparent 100%);
}
.about__gallery-track {
  display: flex;
  flex-direction: row;
  gap: 10px;
  height: 100%;
  animation: aboutScrollRight 12s linear infinite;
}
.about__gallery-scroll:hover .about__gallery-track {
  animation-play-state: paused;
}
.about__gallery-item {
  flex-shrink: 0;
  width: 300px;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
}
.about__gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s ease;
}
.about__gallery-item:hover img { transform: scale(1.04); }

@keyframes aboutScrollRight {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.about__badge {
  position: absolute;
  bottom: 1rem; left: 1rem;
  background: var(--gold); color: var(--green-dark);
  border-radius: 16px; padding: 1rem 1.5rem;
  display: flex; align-items: center; gap: .75rem;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  z-index: 3;
}
.about__badge-text strong {
  display: block; font-family: var(--font-h);
  font-size: 1.5rem; font-weight: 700; line-height: 1;
}
.about__badge-text span { font-size: .8rem; font-weight: 600; opacity: .8; }

@media (max-width: 768px) {
  .about { padding: 4rem 0; }
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__image { order: -1; margin-bottom: 1.5rem; }
  .about__badge { bottom: .75rem; left: .75rem; }
  .about__gallery-scroll { height: 220px; }
  .about__gallery-item { width: 200px; }
}

/* ═══════════════════════════════════════════════════════════
   MOBILE  ≤768px
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  .hdr-order-btn { padding: .5rem 1rem; font-size: .78rem; }
  .hdr-logo__img { height: 54px; }

  /* Hero */
  .hero__bg { grid-template-columns: 1fr; padding-block: 6rem 3rem; }
  .hero__right { display: none; }
  .hero__title { font-size: clamp(3rem, 13vw, 5rem); }
  .hero__stat-sep { display: none; }
  .hero__stat { padding-right: 1.5rem; }
  .hero::before {
    display: block;
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.68);
    z-index: 0;
  }
  .hero__bg { position: relative; z-index: 1; }
}

@media (max-width: 480px) {
  .hero__title { font-size: clamp(2.6rem, 14vw, 3.8rem); }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2c · SPECIALS BANNERS
   ═══════════════════════════════════════════════════════════ */
.specials { background: #F8F6F2; padding: 6rem 0; }

.specials__header { text-align: center; margin-bottom: 2.5rem; }
.specials__eyebrow {
  display: block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: .5rem;
}
.specials__title {
  font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; text-transform: uppercase; color: var(--green-dark);
}

/* ── Grid: 2 large top + 3 small bottom ── */
.specials__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.25rem;
}

/* Large cards span 1 col each, small cards in a 3-col sub-row */
.special-card--large { grid-column: span 1; }
.special-card--small:first-of-type,
.special-card--small {
  /* small cards go in a 3-col inner row — achieved via subgrid trick below */
}

/* Override: make the 3 small cards sit in bottom row as 3 cols */
.specials__grid {
  grid-template-columns: repeat(6, 1fr);
}
.special-card--large { grid-column: span 3; }
.special-card--small { grid-column: span 2; }

/* ── Card base ── */
.special-card {
  position: relative;
  border-radius: 16px;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2rem 1.5rem 2rem 2rem;
  min-height: 200px;
  transition: transform .25s, box-shadow .25s;
  cursor: pointer;
  text-decoration: none;
}
.special-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.2);
}
.special-card--large { min-height: 270px; }
.special-card--small { min-height: 210px; padding: 1.5rem 1rem 1.5rem 1.5rem; }

/* Color variants */
.special-card--green { background: var(--green); }
.special-card--gold  { background: #E8B84B; }
.special-card--red   { background: #C0392B; }
.special-card--dark  { background: #111827; }
.special-card--olive { background: #2C3E1A; }

/* ── Text content ── */
.special-card__content {
  display: flex; flex-direction: column;
  gap: .6rem; flex: 1; z-index: 1;
}
.special-card__tag {
  font-family: var(--font-h);
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  color: rgba(255,255,255,.7);
  font-style: italic;
}
.special-card--gold .special-card__tag { color: rgba(0,0,0,.55); }

.special-card__name {
  font-family: var(--font-h);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 700; text-transform: uppercase;
  color: #fff; line-height: 1.05; letter-spacing: .02em;
}
.special-card--gold .special-card__name { color: var(--green-dark); }

.special-card__cta {
  display: inline-flex; align-items: center; gap: .4rem;
  font-family: var(--font-h); font-size: .8rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
  color: #fff; text-decoration: underline; text-underline-offset: 3px;
  margin-top: .25rem; width: fit-content;
  transition: gap .2s;
}
.special-card__cta:hover { gap: .7rem; }
.special-card__cta--gold { color: var(--gold); }
.special-card--gold .special-card__cta { color: var(--green-dark); }

/* ── Image area ── */
.special-card__img-wrap {
  position: relative;
  flex-shrink: 0;
  width: 260px; height: 260px;
  display: flex; align-items: center; justify-content: center;
}
.special-card--small .special-card__img-wrap { width: 200px; height: 200px; }
.special-card__img {
  width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  display: block;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,.25));
}

/* Price badge — default round */
.special-card__price-badge {
  position: absolute;
  top: -8px; right: -8px;
  background: #fff;
  color: var(--green-dark);
  width: 56px; height: 56px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-h); font-weight: 900;
  font-size: 1.1rem; line-height: 1;
  text-align: center; z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,.25);
}
.special-card__price-badge small { font-size: .6rem; font-weight: 600; display: block; }
.special-card__price-from { font-size: .5rem; text-transform: uppercase; letter-spacing: 1px; display: block; }

/* Diamond badge variant */
.special-card__price-badge--diamond {
  border-radius: 4px;
  transform: rotate(45deg);
  width: 60px; height: 60px;
}
.special-card__price-badge--diamond > * { transform: rotate(-45deg); }

/* Small badge */
.special-card__price-badge--sm {
  width: 48px; height: 48px; font-size: .95rem;
  bottom: -4px; right: -4px; top: auto;
}

/* Gold badge */
.special-card__price-badge--gold {
  background: var(--gold); color: var(--green-dark);
  bottom: -4px; right: -4px; top: auto;
  width: 52px; height: 52px;
}

/* Circle with large price text */
.special-card__price-badge--circle {
  background: var(--gold); color: var(--green-dark);
  width: 70px; height: 70px;
  font-size: .55rem; text-transform: uppercase;
  bottom: -8px; right: -8px; top: auto;
  line-height: 1.2;
}
.special-card__price-big {
  font-size: 1.4rem; font-weight: 900; color: #C0392B;
  font-family: var(--font-h); display: block;
}
.special-card--gold .special-card__price-big { color: var(--green-dark); }

/* ── Responsive ── */
@media (max-width: 900px) {
  .specials__grid { grid-template-columns: repeat(2, 1fr); }
  .special-card--large { grid-column: span 1; }
  .special-card--small { grid-column: span 1; }
}
@media (max-width: 600px) {
  .specials__grid { grid-template-columns: 1fr; }
  .special-card--large,
  .special-card--small { grid-column: span 1; }
  .special-card { min-height: 180px; padding: 1.5rem; }
  .special-card--large { min-height: 220px; }
  .special-card__img-wrap { width: 160px; height: 160px; }
  .special-card--large .special-card__img-wrap { width: 190px; height: 190px; }
  .special-card__name { font-size: 1.3rem; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 2b · WHY PEOPLE LOVE CHAMAN
   ═══════════════════════════════════════════════════════════ */
.why-love {
  background: var(--green);
  padding: 4.5rem 0;
  position: relative;
  overflow: hidden;
}
.why-love::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.why-love__inner { position: relative; z-index: 1; }

.why-love__title {
  font-family: var(--font-h);
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700; text-transform: uppercase;
  color: #fff; text-align: center;
  letter-spacing: .04em; margin-bottom: 3rem;
}
.why-love__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
.why-love__item {
  display: flex; flex-direction: column;
  align-items: center; text-align: center; gap: 1.25rem;
}
.why-love__icon {
  width: 76px; height: 76px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  transition: transform .3s;
}
.why-love__item:hover .why-love__icon { transform: translateY(-5px); }
.why-love__icon svg { width: 100%; height: 100%; }
.why-love__label {
  font-family: var(--font-h);
  font-size: .95rem; font-weight: 700;
  color: var(--gold); text-transform: uppercase;
  letter-spacing: .04em; line-height: 1.4;
}
@media (max-width: 768px) {
  .why-love__grid { grid-template-columns: repeat(2, 1fr); gap: 2rem 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   CATERING SECTION
   ═══════════════════════════════════════════════════════════ */
.catering-section {
  background: #0a0f0a;
  position: relative;
  overflow: hidden;
}

/* Subtle starfield texture */
.catering-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px),
    radial-gradient(circle, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px, 30px 30px;
  background-position: 0 0, 15px 15px;
  pointer-events: none;
}

/* Top — centered text block */
.catering-section__top {
  position: relative; z-index: 1;
  padding: 5rem 0 3.5rem;
  text-align: center;
}

.catering-section__title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: .01em;
}

.catering-section__desc {
  font-size: 1rem;
  color: rgba(255,255,255,.65);
  line-height: 1.75;
  max-width: 620px;
  margin: 0 auto 2.5rem;
}

/* CTA buttons */
.catering-section__ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-catering {
  display: inline-flex; align-items: center;
  padding: .85rem 2.25rem;
  border-radius: 4px;
  font-family: var(--font-h);
  font-size: .9rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px;
  transition: background .2s, transform .2s, box-shadow .2s;
  cursor: pointer;
}
.btn-catering:hover { transform: translateY(-2px); }

.btn-catering--outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
}
.btn-catering--outline:hover {
  background: var(--gold);
  color: #0a0f0a;
}

.btn-catering--gold {
  background: var(--gold);
  border: 2px solid var(--gold);
  color: #0a0f0a;
}
.btn-catering--gold:hover {
  background: var(--gold-lt);
  border-color: var(--gold-lt);
  box-shadow: 0 8px 24px rgba(201,168,76,.4);
}

/* Bottom — 4 photos in a row */
.catering-section__photos {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  padding: 0 2rem 2rem;
  max-width: 1280px;
  margin: 0 auto;
}

.catering-section__photo {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4/3;
}

.catering-section__photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
  display: block;
}
.catering-section__photo:hover img { transform: scale(1.05); }

/* Responsive */
@media (max-width: 768px) {
  .catering-section__photos { grid-template-columns: repeat(2, 1fr); padding: 0 1rem 1.5rem; }
  .catering-section__top { padding: 3.5rem 0 2.5rem; }
}
@media (max-width: 480px) {
  .catering-section__photos { grid-template-columns: 1fr 1fr; gap: .5rem; }
  .catering-section__ctas { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .catering-section__ctas .btn-catering { flex: 1; min-width: 0; text-align: center; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   SECTION 3 · ONLINE ORDERING
   ═══════════════════════════════════════════════════════════ */
.ordering {
  background: #fff;
  overflow: hidden;
}

.ordering__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 480px;
}

/* Left — full-bleed image */
.ordering__image {
  position: relative;
  overflow: hidden;
}
.ordering__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right — text content */
.ordering__content {
  padding: 5rem 5rem 5rem 4.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.25rem;
}

.ordering__eyebrow {
  font-size: .82rem;
  font-weight: 700;
  color: var(--green-mid);
  letter-spacing: .5px;
}

.ordering__title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.05;
  text-transform: uppercase;
}

.ordering__desc {
  font-size: 1rem;
  color: #555;
  line-height: 1.7;
  max-width: 420px;
}

/* Platform buttons */
.ordering__platforms {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
  margin-top: .75rem;
}

/* Plain inline logo — no box, no border */
.plat-inline {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  transition: opacity .2s, transform .2s;
}
.plat-inline:hover { opacity: .8; transform: translateY(-2px); }
.plat-inline__img {
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* ── Platform wordmarks ── */
.plat-wordmark--ue {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.6rem;
  font-weight: 900;
  letter-spacing: -.03em;
  display: inline-flex;
  align-items: baseline;
  line-height: 1;
}
.plat-wordmark__black { color: #000; }
.plat-wordmark__green { color: #06C167; }

.plat-wordmark--dd {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  letter-spacing: .02em;
  color: #FF3008;
  text-transform: uppercase;
  line-height: 1;
}

/* ═══════════════════════════════════════════════════════════
   SECTION 4 · MENU WITH TABS
   ═══════════════════════════════════════════════════════════ */
.menu-section {
  background: #F8F6F2;
  padding: 6rem 0;
}

.menu-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.menu-section__eyebrow {
  display: block;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: .6rem;
}
.menu-section__title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; text-transform: uppercase;
  color: var(--green-dark); line-height: 1.05;
  margin-bottom: .75rem;
}
.menu-section__sub {
  font-size: .98rem; color: #666; max-width: 480px; margin-inline: auto;
}

/* ── Tabs ── */
.menu-tabs {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 2.5rem;
}
.menu-tab {
  padding: .6rem 1.4rem;
  border-radius: 999px;
  border: 2px solid #e0ddd8;
  background: #fff;
  font-family: var(--font-h);
  font-size: .88rem; font-weight: 600;
  letter-spacing: .04em;
  color: #555;
  cursor: pointer;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
}
.menu-tab:hover {
  border-color: var(--gold);
  color: var(--green-dark);
  transform: translateY(-1px);
}
.menu-tab--active {
  background: var(--green-dark) !important;
  border-color: var(--green-dark) !important;
  color: #fff !important;
}

/* Hidden item */
.menu-item--hidden { display: none; }

/* 2-col list layout */
.menu-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #e8e4dc;
}

.menu-list .menu-item {
  border-bottom: 1px solid #e8e4dc;
  transition: background .18s;
}
.menu-list .menu-item:nth-child(odd) { border-right: 1px solid #e8e4dc; }
.menu-list .menu-item:hover { background: #fff; }

.menu-item__link {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.25rem 1.35rem;
  text-decoration: none;
}

.menu-item__img {
  position: relative;
  flex-shrink: 0;
  width: 110px; height: 110px;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}
.menu-item__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .35s;
}
.menu-list .menu-item:hover .menu-item__img img { transform: scale(1.06); }

.menu-item__badge {
  display: inline-block;
  background: var(--green-dark);
  color: var(--gold);
  font-size: .6rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 1.5px;
  padding: .22rem .65rem; border-radius: 999px;
  width: fit-content;
}

.menu-item__content {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column; gap: .45rem;
}

.menu-item__top {
  display: flex;
  align-items: baseline;
  gap: .4rem;
}
.menu-item__name {
  font-family: var(--font-h);
  font-size: .95rem; font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.menu-item__dots {
  flex: 1;
  border-bottom: 2px dotted #ccc;
  margin-bottom: .2rem;
  min-width: 12px;
}
.menu-item__price { flex-shrink: 0; }
.menu-item__price--regular {
  font-family: var(--font-h);
  font-size: 1.05rem; font-weight: 700;
  color: var(--gold);
}
.menu-item__price--sale {
  font-family: var(--font-h);
  font-size: 1.05rem; font-weight: 700;
  color: #e53e3e;
}
.menu-item__price--old {
  font-size: .82rem; color: #aaa;
  text-decoration: line-through;
  margin-right: .25rem;
}
.menu-item__desc {
  font-size: .82rem; color: #777;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.menu-section__footer { text-align: center; margin-top: 3rem; }
.menu-section__footer-platforms {
  display: flex; align-items: center; justify-content: center;
  gap: 1rem; margin-top: 1.25rem;
}
.menu-section__footer-platforms .plat-inline__img { height: 36px; }

@media (max-width: 900px) {
  .menu-list { grid-template-columns: 1fr; }
  .menu-list .menu-item:nth-child(odd) { border-right: none; }
}
@media (max-width: 768px) {
  .menu-tabs { flex-wrap: nowrap; overflow-x: auto; justify-content: flex-start; padding-bottom: .5rem; scrollbar-width: none; gap: .4rem; }
  .menu-tabs::-webkit-scrollbar { display: none; }
  .menu-tab { padding: .5rem 1rem; font-size: .82rem; flex-shrink: 0; }
  .menu-item__link { padding: 1rem; }
  .menu-item__img { width: 90px; height: 90px; }
  .menu-item__name { font-size: .88rem; white-space: normal; }
}


/* ── Official platform logo CSS fixes ── */
.platform-btn--ubereats { border-color: #06C167; }
.platform-btn--ubereats:hover { border-color: #06C167; box-shadow: 0 8px 24px rgba(6,193,103,.2); }
.platform-btn--doordash { border-color: #FF3008; }
.platform-btn--doordash:hover { border-color: #FF3008; box-shadow: 0 8px 24px rgba(255,48,8,.2); }
.platform-btn--clover { border-color: #1A6B3A; }
.platform-btn--clover:hover { border-color: #1A6B3A; box-shadow: 0 8px 24px rgba(26,107,58,.2); }

/* Ordering mobile */
@media (max-width: 768px) {
  .ordering__inner { grid-template-columns: 1fr; }
  .ordering__image { height: 280px; }
  .ordering__content { padding: 3rem 1.5rem; }
}

/* About mobile */
@media (max-width: 768px) {
  .about { padding: 4rem 0; }
  .about__inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .about__image { order: -1; }
  .about__badge { bottom: -1rem; left: -0.5rem; }
}

/* ═══════════════════════════════════════════════════════════
   GOOGLE REVIEWS SECTION
   ═══════════════════════════════════════════════════════════ */
.reviews-section {
  background: #F8F6F2;
  padding: 6rem 0;
}

.reviews-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.reviews-section__eyebrow {
  display: block;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: .6rem;
}
.reviews-section__title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; text-transform: uppercase;
  color: var(--green-dark); line-height: 1.05;
  margin-bottom: .75rem;
}
.reviews-section__sub {
  font-size: .98rem; color: #666; max-width: 480px; margin-inline: auto;
}

.reviews-section__summary {
  display: flex; align-items: center;
  justify-content: center; gap: 2rem; flex-wrap: wrap;
}
.reviews-summary-score {
  display: flex; align-items: center; gap: .75rem;
}
.reviews-summary-score__number {
  font-family: var(--font-h);
  font-size: 2.5rem; font-weight: 900;
  color: var(--green-dark); line-height: 1;
}
.reviews-summary-score__stars { display: flex; gap: 2px; }
.reviews-summary-score__count {
  font-size: .88rem; color: #666; font-weight: 500;
}
.reviews-section__write-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .6rem 1.25rem; border-radius: 999px;
  border: 2px solid var(--green-dark); color: var(--green-dark);
  font-size: .82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  transition: background .2s, color .2s;
}
.reviews-section__write-btn:hover {
  background: var(--green-dark); color: #fff;
}

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

.review-card {
  background: #fff;
  border-radius: 16px;
  padding: 1.75rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  display: flex; flex-direction: column; gap: 1rem;
  transition: transform .25s, box-shadow .25s;
}
.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,.12);
}

.review-card__header {
  display: flex; align-items: center; gap: .75rem;
}
.review-card__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  background: var(--green);
}
.review-card__avatar-fallback {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--green); color: var(--gold);
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 700;
  align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-card__author { flex: 1; min-width: 0; }
.review-card__name {
  display: block; font-size: .9rem; font-weight: 700; color: var(--green-dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.review-card__date { font-size: .75rem; color: #999; }
.review-card__google { margin-left: auto; flex-shrink: 0; }

.review-card__stars { display: flex; gap: 2px; }

.review-card__text {
  font-size: .9rem; color: #444; line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.reviews-section__footer { text-align: center; }

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .reviews-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.site-footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.7);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.2fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 1.5rem 4rem;
}

/* Brand col */
.footer-brand__logo { margin-bottom: 1.25rem; }
.footer-brand__logo img { height: 180px; width: auto; }
.footer-brand__name {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 700;
  color: #fff; line-height: 1;
}
.footer-brand__name span { color: var(--gold); }
.footer-brand__desc {
  font-size: .88rem; color: rgba(255,255,255,.5);
  line-height: 1.65; margin-top: .75rem; max-width: 260px;
}
.footer-brand__halal {
  display: inline-flex; align-items: center; gap: .4rem;
  margin-top: 1.25rem;
  padding: .35rem .9rem;
  background: rgba(201,168,76,.1);
  border: 1px solid rgba(201,168,76,.25);
  border-radius: 999px;
  font-size: .78rem; font-weight: 700; color: var(--gold);
}

/* Column headings */
.footer-col__title {
  font-family: var(--font-h);
  font-size: .7rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2.5px;
  color: var(--gold); margin-bottom: 1.25rem;
}

/* Links */
.footer-links { display: flex; flex-direction: column; gap: .6rem; list-style: none; }
.footer-links a {
  font-size: .88rem; color: rgba(255,255,255,.55);
  transition: color .2s;
}
.footer-links a:hover { color: var(--gold); }

/* Contact */
.footer-contact { display: flex; flex-direction: column; gap: .8rem; }
.footer-contact__item {
  display: flex; align-items: flex-start; gap: .65rem;
  font-size: .88rem; color: rgba(255,255,255,.55); line-height: 1.5;
}
.footer-contact__item svg { flex-shrink: 0; margin-top: 2px; color: var(--gold); }
.footer-contact__item a { color: rgba(255,255,255,.75); }
.footer-contact__item a:hover { color: var(--gold); }

/* Hours */
.footer-hours { display: flex; flex-direction: column; gap: .5rem; }
.footer-hours__row {
  display: flex; justify-content: space-between;
  font-size: .85rem; color: rgba(255,255,255,.55);
  padding-bottom: .5rem;
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.footer-hours__day { font-weight: 600; color: rgba(255,255,255,.75); }

/* Bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: .5rem;
}
.footer-bottom__copy { font-size: .8rem; color: rgba(255,255,255,.35); }
.footer-bottom__credit { font-size: .8rem; color: rgba(255,255,255,.3); }
.footer-bottom__credit a { color: rgba(255,255,255,.4); }
.footer-bottom__credit a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 560px) {
  .footer-top { grid-template-columns: 1fr; padding: 3rem 1.5rem 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════
   GALLERY SECTION
   ═══════════════════════════════════════════════════════════ */
.gallery-section {
  background: #fff;
  padding: 6rem 0;
  overflow: visible;
}

.gallery-section__header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.gallery-section__eyebrow {
  display: block;
  font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: .6rem;
}
.gallery-section__title {
  font-family: var(--font-h);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--green-dark);
  text-transform: uppercase;
  line-height: 1.05;
  margin-bottom: 0;
}

/* ── Mosaic layout ── */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.gallery-mosaic__center { display: contents; }

.gallery-mosaic__item--left,
.gallery-mosaic__item--right,
.gallery-mosaic__item--top,
.gallery-mosaic__item--bottom {
  grid-column: auto;
  grid-row: auto;
  height: auto;
  align-self: stretch;
}

/* All items */
.gallery-mosaic__item {
  border-radius: 14px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4/3;
}
.gallery-mosaic__item img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.gallery-mosaic__item:hover img { transform: scale(1.05); }

/* Tablet */
@media (max-width: 900px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
/* Mobile */
@media (max-width: 600px) {
  .gallery-mosaic {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS CAROUSEL
   ═══════════════════════════════════════════════════════════ */
.reviews-section {
  background: #f9f9f9;
  padding: 5rem 0;
  overflow: hidden; /* prevent page scroll bleed */
}

.reviews-layout {
  display: flex;
  align-items: center;
  gap: 3rem;
}

/* Left — rating summary */
.reviews-summary {
  flex-shrink: 0;
  width: 200px;
  text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: .75rem;
}
.reviews-summary__label {
  font-family: var(--font-h);
  font-size: 1.8rem; font-weight: 900;
  color: var(--green-dark); letter-spacing: .05em;
}
.reviews-summary__stars { display: flex; gap: 3px; }
.reviews-summary__count { font-size: .88rem; color: #555; line-height: 1.4; }
.reviews-summary__count strong { color: var(--green-dark); }
.reviews-summary__google-logo { margin-top: .25rem; }

/* Right — carousel */
.reviews-carousel-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-width: 0;
  position: relative;
}

.reviews-carousel {
  display: flex;
  gap: 1.25rem;
  overflow-x: scroll;
  overflow-y: visible;
  flex: 1;
  width: 0; /* force flex child to not overflow parent */
  min-width: 0;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 4px; /* prevent card shadow cropping at bottom */
}
.reviews-carousel::-webkit-scrollbar { display: none; }
.reviews-carousel .rcard {
  scroll-snap-align: start;
  scroll-snap-stop: always;
  flex-shrink: 0; /* prevent cards from shrinking */
}

/* Arrow buttons */
.reviews-carousel__btn {
  flex-shrink: 0;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #e0e0e0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: #555;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  transition: background .2s, color .2s, box-shadow .2s;
}
.reviews-carousel__btn:hover {
  background: var(--green);
  color: #fff;
  border-color: var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,.15);
}

/* Individual review card */
.rcard {
  flex: 0 0 calc(33.333% - .85rem);
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex; flex-direction: column; gap: .85rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: transform .25s, box-shadow .25s;
  min-width: 0;
}
.rcard:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,.1);
}

.rcard__header {
  display: flex; align-items: center; gap: .65rem;
}
.rcard__avatar-wrap { flex-shrink: 0; position: relative; width: 46px; height: 46px; }
.rcard__avatar {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; display: block;
}
.rcard__avatar-init {
  width: 46px; height: 46px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.2rem;
  font-weight: 700; color: var(--gold);
}
.rcard__meta { flex: 1; min-width: 0; }
.rcard__name {
  display: block; font-size: .9rem; font-weight: 700; color: var(--green-dark);
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.rcard__date { font-size: .75rem; color: #999; }
.rcard__google-icon { flex-shrink: 0; margin-left: auto; }

.rcard__stars { display: flex; align-items: center; gap: 2px; }
.rcard__verified { margin-left: 4px; }

.rcard__text {
  font-size: .88rem; color: #444; line-height: 1.6;
  flex: 1;
}
.rcard__read-more {
  font-size: .82rem; color: #999;
  text-decoration: none; font-weight: 500;
  transition: color .2s;
}
.rcard__read-more:hover { color: var(--green); }

/* Mobile */
@media (max-width: 900px) {
  .reviews-layout { flex-direction: column; gap: 2rem; }
  .reviews-summary { width: 100%; flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .reviews-carousel-wrap { width: 100%; }
  .rcard { flex: 0 0 calc(50% - .65rem); }
}
@media (max-width: 600px) {
  .rcard { flex: 0 0 85vw; min-width: 85vw; }
  .reviews-carousel-wrap { width: 100%; overflow: visible; }
  .reviews-carousel__btn { width: 32px; height: 32px; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER UPDATES
   ═══════════════════════════════════════════════════════════ */
.footer-brand__logo-img {
  height: 180px;
  width: auto;
  object-fit: contain;
}

.footer-social {
  display: flex; gap: .75rem; margin-top: 1rem;
}
.footer-social__link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.7);
  transition: background .2s, color .2s, border-color .2s;
}
.footer-social__link:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--green-dark);
}

.footer-order-logos {
  display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.25rem;
  justify-content: flex-start;
}
.footer-order-logo {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none; background: none !important; border: none !important;
  padding: 0 !important;
  transition: opacity .2s, transform .2s;
}
.footer-order-logo:hover { opacity: .85; transform: translateY(-2px); }
.footer-order-logo img,
.footer-order-logo__img { height: 54px; width: auto; display: block; background: none; }

/* Page templates */
.page-hero {
  background: linear-gradient(135deg, var(--green-dark), var(--green));
  padding: 7rem 0 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(201,168,76,.06) 1px, transparent 1px);
  background-size: 28px 28px; pointer-events: none;
}
.page-hero__eyebrow {
  display: block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: .75rem; position: relative;
}
.page-hero__title {
  font-family: var(--font-h); font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700; text-transform: uppercase; color: #fff;
  line-height: 1.05; margin-bottom: .75rem; position: relative;
}
.page-hero__sub {
  font-size: 1rem; color: rgba(255,255,255,.6); position: relative;
}

/* About page */
.about-page { padding: 6rem 0; background: #fff; }
.about-page__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.about-page__eyebrow { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: .75rem; }
.about-page__title { font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; text-transform: uppercase; color: var(--green-dark); line-height: 1.05; margin-bottom: 1.5rem; }
.about-page__title span { color: var(--gold); }
.about-page__body { font-size: .98rem; color: #555; line-height: 1.75; margin-bottom: 1rem; }
.about-page__image img { width: 100%; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.15); }

.about-stats { background: var(--green); padding: 4rem 0; }
.about-stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; text-align: center; }
.about-stats__item strong { display: block; font-family: var(--font-h); font-size: 2.5rem; font-weight: 900; color: var(--gold); }
.about-stats__item span { font-size: .85rem; color: rgba(255,255,255,.65); text-transform: uppercase; letter-spacing: 1px; }

.about-why { padding: 6rem 0; background: #F8F6F2; }
.about-why__header { text-align: center; margin-bottom: 3rem; }
.about-why__eyebrow { display: block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: .5rem; }
.about-why__title { font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; text-transform: uppercase; color: var(--green-dark); }
.about-why__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.about-why__card { background: #fff; border-radius: 16px; padding: 2rem; box-shadow: 0 2px 16px rgba(0,0,0,.06); }
.about-why__icon { width: 52px; height: 52px; background: rgba(201,168,76,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 1rem; }
.about-why__card-title { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--green-dark); text-transform: uppercase; margin-bottom: .5rem; }
.about-why__card-desc { font-size: .88rem; color: #666; line-height: 1.65; }

.about-cta { padding: 5rem 0; background: var(--green-dark); text-align: center; }
.about-cta__title { font-family: var(--font-h); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; color: #fff; text-transform: uppercase; margin-bottom: .75rem; }
.about-cta__sub { font-size: .98rem; color: rgba(255,255,255,.6); margin-bottom: 2rem; }
.about-cta__btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Contact page */
.contact-page { padding: 5rem 0; background: #fff; }
.contact-page__grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 4rem; }
.contact-info-card { display: flex; gap: 1rem; padding: 1.5rem; background: #F8F6F2; border-radius: 12px; margin-bottom: 1rem; }
.contact-info-card__icon { width: 44px; height: 44px; background: var(--green); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--gold); flex-shrink: 0; }
.contact-info-card__title { font-family: var(--font-h); font-size: .9rem; font-weight: 700; text-transform: uppercase; color: var(--green-dark); margin-bottom: .35rem; }
.contact-info-card p { font-size: .9rem; color: #555; line-height: 1.5; }
.contact-info-card a { color: var(--green-mid); font-weight: 600; }
.contact-info-card a:hover { color: var(--gold); }
.contact-info-card__link { display: inline-block; margin-top: .35rem; font-size: .82rem; font-weight: 700; color: var(--gold); }
.contact-info-card__note { font-size: .8rem; color: #999; margin-top: .25rem; }

.contact-map { margin-bottom: 1.5rem; }
.contact-map iframe { border-radius: 12px; display: block; }
.contact-cta-box {
  background: var(--green-dark); border-radius: 16px;
  padding: 2.5rem 2rem; text-align: center;
}
.contact-cta-box__eyebrow { font-size: .78rem; text-transform: uppercase; letter-spacing: 3px; color: var(--gold); margin-bottom: .6rem; }
.contact-cta-box__title { font-family: var(--font-h); font-size: 1.7rem; font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: .85rem; }
.contact-cta-box__sub { font-size: .95rem; color: rgba(255,255,255,.65); line-height: 1.7; margin-bottom: 1.75rem; }
.contact-cta-box__btn { width: 100%; justify-content: center; font-size: 1.15rem; }
.contact-hours { width: 100%; font-size: .88rem; color: #555; border-collapse: collapse; }
.contact-hours td { padding: .3rem 0; }
.contact-hours td:first-child { font-weight: 600; width: 50%; }

@media (max-width: 768px) {
  .about-page__grid { grid-template-columns: 1fr; }
  .about-stats__grid { grid-template-columns: repeat(2, 1fr); }
  .about-why__grid { grid-template-columns: 1fr 1fr; }
  .contact-page__grid { grid-template-columns: 1fr; }
  .contact-form__row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .about-why__grid { grid-template-columns: 1fr; }
  .about-stats__grid { grid-template-columns: 1fr 1fr; }
}

/* Platform logo images */
.plat-btn__logo-img {
  height: 36px;
  width: auto;
  display: block;
  object-fit: contain;
}

/* Footer platform logo images */
.footer-order-logo__img {
  height: 28px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: .8;
  transition: opacity .2s;
}
.footer-order-logo:hover .footer-order-logo__img {
  opacity: 1;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT SINGLE PAGE
   ═══════════════════════════════════════════════════════════ */
.product-single-section { padding: 5rem 0; background: #fff; }
.product-single {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: start;
}
.product-single__img img {
  width: 100%; border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
}
.product-single__img-placeholder {
  aspect-ratio: 1; background: var(--green);
  border-radius: 16px; display: flex;
  align-items: center; justify-content: center;
}
.product-single__cat {
  display: inline-block; background: var(--green-dark); color: var(--gold);
  font-size: .65rem; font-weight: 800; text-transform: uppercase;
  letter-spacing: 1.5px; padding: .25rem .7rem; border-radius: 999px;
  margin-bottom: .75rem;
}
.product-single__title {
  font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; text-transform: uppercase; color: var(--green-dark);
  line-height: 1.05; margin-bottom: .75rem;
}
.product-single__price {
  font-family: var(--font-h); font-size: 2rem; font-weight: 800;
  color: var(--gold); margin-bottom: 1.25rem;
}
.product-single__desc { font-size: 1rem; color: #555; line-height: 1.75; margin-bottom: 1.5rem; }
.product-single__halal {
  display: inline-flex; align-items: center; gap: .5rem;
  background: #E8F5E9; color: #2E7D32; border: 1px solid #A5D6A7;
  border-radius: 999px; padding: .4rem 1rem;
  font-size: .85rem; font-weight: 600; margin-bottom: 1.75rem;
}
.product-single__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 1.5rem; }
.product-single__back a { color: var(--green-mid); font-size: .9rem; font-weight: 600; }
.product-single__back a:hover { color: var(--gold); }
@media (max-width: 768px) {
  .product-single { grid-template-columns: 1fr; gap: 2rem; }
}

/* ═══════════════════════════════════════════════════════════
   PDF MENU VIEWER
   ═══════════════════════════════════════════════════════════ */
.pdf-menu-section { padding: 4rem 0; background: #F8F6F2; }
.pdf-menu-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; flex-wrap: wrap; gap: 1rem;
}
.pdf-menu-title {
  font-family: var(--font-h); font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700; text-transform: uppercase; color: var(--green-dark);
}
.pdf-viewer {
  width: 100%; border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  background: #525659;
}
.pdf-viewer__iframe {
  width: 100%; height: 85vh;
  min-height: 600px; border: none;
  display: block;
}
.pdf-viewer__fallback {
  padding: 3rem; text-align: center; color: #fff;
}
.pdf-mobile-cta {
  display: none;
}

/* Mobile PDF: hide iframe + header, show styled card only */
@media (max-width: 768px) {
  .pdf-viewer { display: none; }
  .pdf-menu-header { display: none; }
  .pdf-mobile-cta {
    display: flex; flex-direction: column; align-items: center;
    gap: 1rem; margin-top: 0;
    background: var(--green-dark); border-radius: 16px;
    padding: 2.5rem 1.5rem; text-align: center;
  }
  .pdf-mobile-cta::before {
    content: '📋';
    font-size: 3rem; line-height: 1;
    display: block; margin-bottom: .25rem;
  }
  .pdf-mobile-cta p {
    color: rgba(255,255,255,.8); font-size: 1rem;
    line-height: 1.6; margin: 0;
    font-weight: 500;
  }
  .pdf-mobile-cta .btn { width: 100%; justify-content: center; }
}

/* ═══════════════════════════════════════════════════════════
   MENU PAGE
   ═══════════════════════════════════════════════════════════ */
.menu-page-section { padding: 5rem 0; background: #fff; }
.menu-page-header { text-align: center; margin-bottom: 2.5rem; }
.menu-page__eyebrow {
  display: block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: .5rem;
}
.menu-page__title {
  font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; text-transform: uppercase; color: var(--green-dark);
}
.menu-page-ctas {
  display: flex; align-items: center; gap: 1.5rem;
  justify-content: center; margin-top: 3rem; flex-wrap: wrap;
}
.menu-order-pill {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
}
.menu-order-pill:hover { transform: translateY(-3px); opacity: .85; }
.menu-order-logo { height: 72px; width: auto; display: block; }
@media (max-width: 600px) {
  .menu-page-ctas { flex-direction: row; gap: 1.5rem; }
  .menu-order-logo { height: 56px; }
}

/* ═══════════════════════════════════════════════════════════
   CATERING PAGE
   ═══════════════════════════════════════════════════════════ */
.catering-page__intro { padding: 5rem 0; background: #fff; }
.catering-page__eyebrow {
  display: block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: .6rem;
}
.catering-page__intro-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.catering-page__intro-title {
  font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; text-transform: uppercase; color: var(--green-dark);
  line-height: 1.05; margin-bottom: 1.25rem;
}
.catering-page__intro-title span { color: var(--gold); }
.catering-page__intro-text p { font-size: .98rem; color: #555; line-height: 1.75; margin-bottom: 1rem; }
.catering-page__intro-ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }
.catering-page__intro-imgs {
  display: grid; grid-template-columns: 1fr 1fr; gap: .75rem;
}
.catering-page__intro-img { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.catering-page__intro-img img { width: 100%; height: 100%; object-fit: cover; }

.catering-page__offers { padding: 5rem 0; background: #F8F6F2; }
.catering-page__offers-header { text-align: center; margin-bottom: 3rem; }
.catering-page__offers-header p { color: #666; max-width: 600px; margin: .75rem auto 0; font-size: .98rem; line-height: 1.7; }
.catering-page__section-title {
  font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; text-transform: uppercase; color: var(--green-dark);
}
.catering-page__offers-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.catering-page__offer-card {
  background: #fff; border-radius: 16px; padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
.catering-page__offer-icon {
  width: 52px; height: 52px; background: rgba(201,168,76,.1);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--gold); margin-bottom: 1rem;
}
.catering-page__offer-card h3 {
  font-family: var(--font-h); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: .5rem;
}
.catering-page__offer-card p { font-size: .88rem; color: #666; line-height: 1.65; }

.catering-page__process { padding: 5rem 0; background: #fff; }
.catering-page__steps {
  display: flex; align-items: flex-start;
  gap: 0; margin-top: 2rem;
}
.catering-page__step {
  flex: 1; padding: 2rem;
  background: #F8F6F2; border-radius: 16px; text-align: center;
}
.catering-page__step-num {
  font-family: var(--font-h); font-size: 3rem; font-weight: 900;
  color: var(--gold); opacity: .3; line-height: 1; margin-bottom: .75rem;
}
.catering-page__step h3 {
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: .75rem;
}
.catering-page__step p { font-size: .9rem; color: #666; line-height: 1.65; }
.catering-page__step-arrow {
  flex-shrink: 0; display: flex; align-items: center;
  padding: 0 1rem; margin-top: 3rem;
}

.catering-page__form-section {
  padding: 5rem 0; background: var(--green);
}
.catering-page__form-grid {
  display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; align-items: start;
}

@media (max-width: 900px) {
  .catering-page__intro-grid { grid-template-columns: 1fr; }
  .catering-page__offers-grid { grid-template-columns: 1fr 1fr; }
  .catering-page__steps { flex-direction: column; gap: 1rem; }
  .catering-page__step-arrow { transform: rotate(90deg); margin: 0 auto; padding: 0; }
  .catering-page__form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 600px) {
  .catering-page__offers-grid { grid-template-columns: 1fr; }
  .catering-page__intro-imgs { grid-template-columns: 1fr 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   FOOTER PLATFORM LOGOS — 50/50 on mobile, fixed sizing
   ═══════════════════════════════════════════════════════════ */
.footer-order-logos {
  display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.25rem;
  align-items: center;
}
.footer-order-logo {
  display: inline-flex; align-items: center; justify-content: center;
  text-decoration: none;
  background: #fff;
  border-radius: 8px;
  padding: .4rem .75rem;
  transition: opacity .2s, transform .2s;
  flex: 1; min-width: 0;
}
.footer-order-logo:hover { opacity: .9; transform: translateY(-2px); }
.footer-order-logo__img {
  height: 30px;
  width: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  filter: none;
  opacity: 1;
}

@media (max-width: 768px) {
  .footer-order-logos { gap: .5rem; justify-content: flex-start; }
  .footer-order-logo { flex: 0 0 calc(50% - .25rem); }
  .footer-order-logo__img { height: 28px; }
}

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

/* Hero CTAs */
.page-hero__ctas {
  display: flex; gap: 1rem; justify-content: center;
  flex-wrap: wrap; margin-top: 2rem;
}

/* Shared helpers */
.cat-eyebrow {
  display: block; font-size: .72rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 3px;
  color: var(--gold); margin-bottom: .6rem;
}
.cat-section-header { text-align: center; margin-bottom: 3rem; }
.cat-section-title {
  font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; text-transform: uppercase; color: var(--green-dark);
  margin-bottom: .75rem;
}
.cat-section-sub { font-size: .98rem; color: #666; max-width: 520px; margin-inline: auto; }

/* ── Intro ── */
.cat-intro { padding: 5.5rem 0; background: #fff; }
.cat-intro__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.cat-intro__title {
  font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; text-transform: uppercase; color: var(--green-dark);
  line-height: 1.05; margin-bottom: 1.25rem;
}
.cat-intro__title span { color: var(--gold); }
.cat-intro__text p { font-size: .98rem; color: #555; line-height: 1.75; }
.cat-intro__badges {
  display: flex; gap: .75rem; flex-wrap: wrap; margin-top: 1.75rem;
}
.cat-badge {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(26,58,42,.08); color: var(--green);
  border: 1px solid rgba(26,58,42,.2); border-radius: 999px;
  padding: .35rem .9rem; font-size: .82rem; font-weight: 600;
}
.cat-intro__photos {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  gap: .75rem; height: 440px;
}
.cat-intro__photo { border-radius: 12px; overflow: hidden; }
.cat-intro__photo--featured { grid-row: span 2; }
.cat-intro__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ── Services ── */
.cat-services { padding: 5.5rem 0; background: #F8F6F2; }
.cat-services__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cat-service-card {
  background: #fff; border-radius: 16px; padding: 2rem;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: transform .25s, box-shadow .25s;
}
.cat-service-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.1); }
.cat-service-card__icon {
  width: 52px; height: 52px; background: rgba(201,168,76,.1);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; color: var(--gold); margin-bottom: 1rem;
}
.cat-service-card h3 {
  font-family: var(--font-h); font-size: .95rem; font-weight: 700;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: .5rem;
}
.cat-service-card p { font-size: .88rem; color: #666; line-height: 1.65; }

/* ── Process ── */
.cat-process { padding: 5.5rem 0; background: #fff; }
.cat-process__steps {
  display: flex; align-items: flex-start; gap: 0;
}
.cat-step {
  flex: 1; text-align: center; padding: 2.5rem 2rem;
  background: #F8F6F2; border-radius: 16px; position: relative;
}
.cat-step__num {
  font-family: var(--font-h); font-size: 4rem; font-weight: 900;
  color: var(--gold); opacity: .2; line-height: 1; position: absolute;
  top: 1rem; right: 1.25rem;
}
.cat-step__icon {
  width: 60px; height: 60px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); margin: 0 auto 1.25rem;
}
.cat-step h3 {
  font-family: var(--font-h); font-size: 1rem; font-weight: 700;
  text-transform: uppercase; color: var(--green-dark); margin-bottom: .75rem;
}
.cat-step p { font-size: .88rem; color: #666; line-height: 1.65; }
.cat-step__connector {
  flex-shrink: 0; width: 60px; display: flex;
  align-items: center; justify-content: center; padding-top: 3rem;
}
.cat-step__connector::before {
  content: ''; display: block; width: 100%; height: 2px;
  background: linear-gradient(to right, var(--gold), rgba(201,168,76,.3));
}

/* ── Form ── */
.cat-form-section { padding: 5.5rem 0; background: var(--green); }
.cat-form-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 5rem; align-items: start; }
.cat-form-title {
  font-family: var(--font-h); font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 700; text-transform: uppercase; color: #fff;
  line-height: 1.05; margin-bottom: 1rem;
}
.cat-form-contact { display: flex; flex-direction: column; gap: 1.25rem; }
.cat-form-contact__item {
  display: flex; align-items: center; gap: 1rem; text-decoration: none;
  padding: 1rem 1.25rem; background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12); border-radius: 12px;
  transition: background .2s;
}
.cat-form-contact__item:hover { background: rgba(255,255,255,.12); }
.cat-form-contact__icon {
  width: 44px; height: 44px; background: rgba(201,168,76,.15);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; color: var(--gold); flex-shrink: 0;
}

.cat-cta-centered { text-align: center; }
.cat-cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .cat-intro__grid { grid-template-columns: 1fr; }
  .cat-intro__photos { height: 320px; }
  .cat-services__grid { grid-template-columns: 1fr 1fr; }
  .cat-process__steps { flex-direction: column; gap: 1rem; align-items: stretch; }
  .cat-step__connector { width: auto; height: 40px; padding: 0; padding-left: 2rem; }
  .cat-step__connector::before { width: 2px; height: 100%; background: linear-gradient(to bottom, var(--gold), rgba(201,168,76,.3)); }
  .cat-form-grid { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 600px) {
  .cat-services__grid { grid-template-columns: 1fr; }
  .cat-intro__photos { grid-template-columns: 1fr 1fr; height: 240px; }
  .cat-intro__photo--featured { grid-row: span 1; }
  .cat-form__row { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   ABOUT PAGE v2
   ═══════════════════════════════════════════════════════════ */
.about-pg__intro { padding: 5.5rem 0; background: #fff; }
.about-pg__intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }

.about-pg__title {
  font-family: var(--font-h); font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700; text-transform: uppercase; color: var(--green-dark);
  line-height: 1.05; margin-bottom: 1.25rem;
}
.about-pg__title span { color: var(--gold); }
.about-pg__text p { font-size: .98rem; color: #555; line-height: 1.78; margin-bottom: .85rem; }
.about-pg__ctas { display: flex; gap: 1rem; flex-wrap: wrap; margin-top: 1.75rem; }

.about-pg__img-wrap { position: relative; }
.about-pg__img-wrap img { width: 100%; border-radius: 16px; box-shadow: 0 20px 60px rgba(0,0,0,.15); }
.about-pg__rating-badge {
  position: absolute; bottom: -1.25rem; left: -1.25rem;
  background: #fff; border-radius: 14px;
  padding: 1rem 1.25rem; display: flex; align-items: center; gap: .75rem;
  box-shadow: 0 8px 32px rgba(0,0,0,.14);
}
.about-pg__rating-badge strong { display: block; font-family: var(--font-h); font-size: 1.6rem; font-weight: 900; color: var(--green-dark); line-height: 1; }
.about-pg__rating-badge span { font-size: .75rem; color: #888; }

/* Stats */
.about-pg__stats { background: var(--green); padding: 3.5rem 0; }
.about-pg__stats-grid { display: flex; align-items: center; justify-content: center; gap: 0; }
.about-pg__stat { text-align: center; padding: 0 3rem; }
.about-pg__stat strong { display: block; font-family: var(--font-h); font-size: 2.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.about-pg__stat span { font-size: .78rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.6); margin-top: .25rem; display: block; }
.about-pg__stat-sep { width: 1px; height: 48px; background: rgba(255,255,255,.15); flex-shrink: 0; }

/* Why */
.about-pg__why { padding: 5.5rem 0; background: #F8F6F2; }
.about-pg__why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.about-pg__why-card { background: #fff; border-radius: 16px; padding: 2rem; box-shadow: 0 2px 16px rgba(0,0,0,.06); transition: transform .25s, box-shadow .25s; }
.about-pg__why-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.1); }
.about-pg__why-icon { width: 52px; height: 52px; background: rgba(201,168,76,.1); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--gold); margin-bottom: 1rem; }
.about-pg__why-card h3 { font-family: var(--font-h); font-size: .95rem; font-weight: 700; text-transform: uppercase; color: var(--green-dark); margin-bottom: .5rem; }
.about-pg__why-card p { font-size: .88rem; color: #666; line-height: 1.65; }

/* Gallery */
.about-pg__gallery { padding: 5.5rem 0; background: #fff; }
.about-pg__gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.about-pg__gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.about-pg__gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; display: block; }
.about-pg__gallery-item:hover img { transform: scale(1.05); }

/* CTA */
.about-pg__cta-section { padding: 5rem 0; background: var(--green-dark); text-align: center; }
.about-pg__cta-title { font-family: var(--font-h); font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 700; text-transform: uppercase; color: #fff; margin-bottom: .75rem; }
.about-pg__cta-sub { font-size: .98rem; color: rgba(255,255,255,.6); margin-bottom: 2rem; }
.about-pg__cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* Responsive */
@media (max-width: 900px) {
  .about-pg__intro-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-pg__img-wrap { order: -1; }
  .about-pg__stats-grid { flex-wrap: wrap; gap: 1.5rem; }
  .about-pg__stat-sep { display: none; }
  .about-pg__why-grid { grid-template-columns: 1fr 1fr; }
  .about-pg__gallery-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .about-pg__why-grid { grid-template-columns: 1fr; }
  .about-pg__gallery-grid { grid-template-columns: 1fr 1fr; }
  .about-pg__stats-grid { gap: 1.5rem 2rem; }
}

/* ═══════════════════════════════════════════════════════════
   REVIEWS — MOBILE OVERFLOW FIX
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  /* Allow card shadows to show; html/body overflow-x:hidden prevents page bleed */
  .reviews-section { overflow: visible; }
  .reviews-carousel { padding: 6px 2px; margin: -6px -2px; }
}

/* ═══════════════════════════════════════════════════════════
   SINGLE PRODUCT PAGE
   ═══════════════════════════════════════════════════════════ */
.prod-breadcrumb { background: #f4f4f2; padding: .65rem 0; font-size: .82rem; }
.prod-breadcrumb .container { display: flex; align-items: center; gap: .4rem; flex-wrap: wrap; }
.prod-breadcrumb a { color: var(--green-dark); text-decoration: none; transition: color .2s; }
.prod-breadcrumb a:hover { color: var(--gold); }
.prod-breadcrumb span { color: #999; }

.prod-main { padding: 4rem 0; }
.prod-main__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }

.prod-gallery__main { border-radius: 16px; overflow: hidden; background: #fff; aspect-ratio: 4/3; position: relative; }
.prod-gallery__img { width: 100%; height: 100%; object-fit: contain; object-position: center; display: block; padding: 1rem; transition: opacity .25s ease; }

/* Gallery thumbnails */
.prod-gallery__thumbs { display: flex; gap: 10px; margin-top: 12px; flex-wrap: wrap; }
.prod-gallery__thumb {
  width: 72px; height: 72px; border-radius: 10px; overflow: hidden; cursor: pointer;
  border: 2px solid transparent; background: #fff;
  transition: border-color .2s, transform .2s;
}
.prod-gallery__thumb--active { border-color: var(--gold); }
.prod-gallery__thumb:hover { transform: scale(1.05); }
.prod-gallery__thumb img { width: 100%; height: 100%; object-fit: contain; padding: 4px; display: block; }
.prod-gallery__placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; min-height: 320px; }
.prod-gallery__badges { display: flex; gap: .65rem; flex-wrap: wrap; margin-top: 1rem; }
.prod-badge { display: inline-flex; align-items: center; gap: .35rem; padding: .35rem .85rem; border-radius: 50px; font-size: .78rem; font-weight: 600; }
.prod-badge--halal { background: rgba(26,58,42,.08); color: var(--green-dark); }
.prod-badge--fresh { background: rgba(201,168,76,.1); color: #7a6020; }

.prod-summary { display: flex; flex-direction: column; gap: .9rem; }
.prod-summary__cat { display: inline-block; font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.5px; color: var(--gold); text-decoration: none; }
.prod-summary__cat:hover { color: var(--green-dark); }
.prod-summary__title { font-family: var(--font-h); font-size: clamp(1.75rem,3vw,2.4rem); font-weight: 700; text-transform: uppercase; color: var(--green-dark); line-height: 1.05; margin: 0; }
.prod-summary__rating { display: flex; align-items: center; gap: .25rem; }
.prod-summary__rating-text { font-size: .82rem; color: #888; margin-left: .35rem; }
.prod-summary__price-amount { font-family: var(--font-h); font-size: 1.9rem; font-weight: 900; color: var(--green-dark); }
.prod-summary__divider { border: none; border-top: 1px solid #ebebeb; margin: 0; }
.prod-summary__desc { font-size: .95rem; color: #555; line-height: 1.75; }
.prod-summary__order-label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #999; }
.prod-summary__order-btns { display: flex; gap: .75rem; align-items: center; flex-wrap: wrap; }

.prod-order-btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: transform .2s, opacity .2s; }
.prod-order-btn:hover { transform: translateY(-2px); opacity: .85; }
.prod-order-btn__logo { height: 64px; width: auto; display: block; }
@media (max-width: 600px) { .prod-order-btn__logo { height: 52px; } }

.prod-summary__meta { display: flex; flex-direction: column; gap: .45rem; }
.prod-summary__meta-row { display: flex; align-items: center; gap: .5rem; font-size: .87rem; }
.prod-summary__meta-label { font-weight: 600; color: var(--green-dark); min-width: 90px; }
.prod-summary__meta-row a { color: var(--green-dark); text-decoration: none; }
.prod-summary__meta-row a:hover { color: var(--gold); }
.prod-summary__in-stock { display: inline-flex; align-items: center; gap: .3rem; color: #2e7d32; font-weight: 600; font-size: .83rem; }
.prod-summary__share { display: flex; align-items: center; gap: .65rem; font-size: .82rem; color: #999; }
.prod-summary__share a { display: inline-flex; align-items: center; justify-content: center; width: 32px; height: 32px; border-radius: 50%; background: #f0f0f0; color: #555; text-decoration: none; transition: background .2s,color .2s; }
.prod-summary__share a:hover { background: var(--green-dark); color: #fff; }

.prod-tabs-section { padding-bottom: 5rem; }
.prod-tabs { display: flex; border-bottom: 2px solid #e8e8e8; margin-bottom: 2.5rem; }
.prod-tab { background: none; border: none; cursor: pointer; padding: .9rem 1.75rem; font-family: var(--font-b); font-size: .88rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: #888; border-bottom: 3px solid transparent; margin-bottom: -2px; transition: color .2s,border-color .2s; }
.prod-tab:hover { color: var(--green-dark); }
.prod-tab--active { color: var(--green-dark); border-bottom-color: var(--gold); }
.prod-tab-panel { display: none; }
.prod-tab-panel--active { display: block; }
.prod-tab-content { max-width: 780px; }
.prod-tab-content p { font-size: .95rem; color: #555; line-height: 1.8; margin-bottom: .85rem; }

.prod-info-table { width: 100%; border-collapse: collapse; }
.prod-info-table th,.prod-info-table td { padding: .85rem 1.1rem; font-size: .9rem; text-align: left; border-bottom: 1px solid #f0f0f0; }
.prod-info-table th { width: 160px; font-weight: 700; color: var(--green-dark); background: #f9f9f7; }
.prod-info-table td { color: #555; }

.prod-reviews-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 1.25rem; }
.prod-review-card { background: #fff; border: 1px solid #e8e8e8; border-radius: 14px; padding: 1.5rem; box-shadow: 0 2px 12px rgba(0,0,0,.05); }
.prod-review-card__header { display: flex; align-items: center; gap: .65rem; margin-bottom: .85rem; }
.prod-review-card__avatar { width: 42px; height: 42px; border-radius: 50%; overflow: hidden; flex-shrink: 0; background: var(--green-dark); display: flex; align-items: center; justify-content: center; }
.prod-review-card__avatar-init { font-family: var(--font-h); font-size: 1.1rem; font-weight: 700; color: var(--gold); }
.prod-review-card__meta { flex: 1; min-width: 0; }
.prod-review-card__meta strong { display: block; font-size: .88rem; color: var(--green-dark); font-weight: 700; }
.prod-review-card__stars { display: flex; gap: 2px; margin-top: 2px; }
.prod-review-card__google { flex-shrink: 0; margin-left: auto; }
.prod-review-card p { font-size: .87rem; color: #555; line-height: 1.65; margin: 0; }

.prod-related { padding: 4rem 0; background: #f9f7f4; }
.prod-related__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.prod-related__title { font-family: var(--font-h); font-size: clamp(1.4rem,2.5vw,1.9rem); font-weight: 700; text-transform: uppercase; color: var(--green-dark); margin: 0; }
.prod-related__nav { display: flex; gap: .5rem; }
.prod-related__btn { width: 40px; height: 40px; border-radius: 50%; background: #fff; border: 1px solid #e0e0e0; display: flex; align-items: center; justify-content: center; cursor: pointer; color: #555; box-shadow: 0 2px 8px rgba(0,0,0,.08); transition: background .2s, color .2s, border-color .2s; }
.prod-related__btn:hover { background: var(--green-dark); color: #fff; border-color: var(--green-dark); }
.prod-related__carousel { display: flex; gap: 1.25rem; overflow-x: scroll; scroll-behavior: smooth; scrollbar-width: none; -webkit-overflow-scrolling: touch; scroll-snap-type: x mandatory; padding-bottom: 4px; }
.prod-related__carousel::-webkit-scrollbar { display: none; }
.prod-related__card { flex: 0 0 calc(25% - 1rem); scroll-snap-align: start; background: #fff; border-radius: 14px; overflow: hidden; text-decoration: none; color: inherit; box-shadow: 0 2px 12px rgba(0,0,0,.06); transition: transform .25s, box-shadow .25s; display: block; }
.prod-related__card:hover { transform: translateY(-4px); box-shadow: 0 10px 30px rgba(0,0,0,.1); }
.prod-related__img { position: relative; aspect-ratio: 4/3; overflow: hidden; background: #f4f4f2; }
.prod-related__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.prod-related__card:hover .prod-related__img img { transform: scale(1.05); }
.prod-related__cat { position: absolute; top: .6rem; left: .6rem; background: var(--green-dark); color: #fff; font-size: .7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; padding: .25rem .6rem; border-radius: 5px; }
.prod-related__body { padding: 1rem 1.1rem; }
.prod-related__body h3 { font-family: var(--font-h); font-size: .92rem; font-weight: 700; text-transform: uppercase; color: var(--green-dark); margin-bottom: .35rem; }
.prod-related__price { font-size: 1rem; font-weight: 700; color: var(--gold); }

@media (max-width: 900px) {
  .prod-main__grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .prod-related__card { flex: 0 0 calc(50% - .65rem); }
  .prod-reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .prod-main { padding: 2.5rem 0; }
  .prod-tabs { overflow-x: auto; }
  .prod-tab { padding: .75rem 1.1rem; font-size: .8rem; white-space: nowrap; }
  .prod-related__card { flex: 0 0 72vw; }
  .prod-reviews-grid { grid-template-columns: 1fr; }
  .prod-order-btn__logo { height: 52px; }
  .prod-gallery__main { aspect-ratio: 4/3; }
}

/* ═══════════════════════════════════════════════════════════
   LIGHTBOX
   ═══════════════════════════════════════════════════════════ */
.lb-overlay { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.88); align-items: center; justify-content: center; cursor: zoom-out; animation: lb-in .2s ease; }
.lb-overlay.lb-open { display: flex; }
@keyframes lb-in { from { opacity: 0; } to { opacity: 1; } }
.lb-overlay img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: 8px; box-shadow: 0 20px 60px rgba(0,0,0,.6); cursor: default; }
.lb-close { position: absolute; top: 1rem; right: 1rem; width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.15); border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1.6rem; line-height: 1; transition: background .2s; }
.lb-close:hover { background: rgba(255,255,255,.3); }

/* ─── Reviews: explicit mobile width fix ─── */
@media (max-width: 600px) {
  .reviews-section { overflow: visible; }
  .reviews-carousel-wrap { overflow: visible; border-radius: 4px; }
  .reviews-carousel { width: 100% !important; flex: none; overflow-x: scroll; }
  .rcard { flex: 0 0 calc(100vw - 4rem); min-width: calc(100vw - 4rem); }
}

/* ─── About page: Google icon shadow so it shows on any background ─── */
.about-pg__rating-badge > svg {
  filter: drop-shadow(0 1px 3px rgba(0,0,0,.25));
  flex-shrink: 0;
}
/* Extra padding-bottom on img wrap so badge is never clipped */
.about-pg__img-wrap { padding-bottom: 1.5rem; }
@media (max-width: 900px) {
  .about-pg__rating-badge { left: .5rem; bottom: .25rem; }
}

/* ═══════════════════════════════════════════════════════════
   CATERING MENU / FAMILY TRAYS
   ═══════════════════════════════════════════════════════════ */
.cat-menu { padding: 5.5rem 0; background: #fff; }

.cat-menu__sub-heading {
  font-family: var(--font-h); font-size: 1.1rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 2px; color: var(--gold);
  text-align: center; margin-bottom: 2rem; margin-top: -1rem;
}

.cat-menu__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.cat-tray-card {
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 1.5rem;
  display: flex; flex-direction: column; justify-content: space-between;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: transform .25s, box-shadow .25s;
  text-decoration: none; color: inherit;
}
.cat-tray-card:hover { transform: translateY(-4px); box-shadow: 0 10px 32px rgba(0,0,0,.1); }

.cat-tray-card__img {
  width: 100%; height: 160px;
  border-radius: 10px; overflow: hidden;
  margin-bottom: 1rem;
}
.cat-tray-card__img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .35s ease;
}
.cat-tray-card:hover .cat-tray-card__img img { transform: scale(1.05); }

.cat-tray-card__body { display: flex; gap: 1rem; align-items: flex-start; margin-bottom: 1.25rem; }

.cat-tray-card__name {
  font-family: var(--font-h); font-size: .95rem; font-weight: 700;
  text-transform: uppercase; color: var(--green-dark);
  margin: 0 0 .35rem;
}
.cat-tray-card__desc { font-size: .85rem; color: #666; line-height: 1.6; margin: 0; }

.cat-tray-card__footer {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 1rem; border-top: 1px solid #f0f0f0;
}
.cat-tray-card__price {
  font-family: var(--font-h); font-size: 1.4rem; font-weight: 900; color: var(--green-dark);
}
.cat-tray-card__cta {
  display: inline-flex; align-items: center;
  padding: .4rem 1rem; border-radius: 8px;
  background: var(--gold); color: var(--green-dark);
  font-size: .8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .5px; text-decoration: none;
  transition: background .2s, color .2s;
}
.cat-tray-card__cta:hover { background: var(--green-dark); color: #fff; }

.cat-menu__note {
  text-align: center; font-size: .85rem; color: #888;
  margin-top: 2rem; line-height: 1.6;
}
.cat-menu__note a { color: var(--green-dark); text-decoration: none; font-weight: 600; }
.cat-menu__note a:hover { color: var(--gold); }

@media (max-width: 900px) {
  .cat-menu__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .cat-menu__grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT PAGE — HEADER FIX
   Header is fixed/transparent on hero pages. On product pages
   (white background) force it scrolled/dark immediately.
   ═══════════════════════════════════════════════════════════ */
.single-product .site-header {
  background: rgba(10,24,16,0.97);
  box-shadow: 0 4px 24px rgba(0,0,0,.35);
}
/* Push content below fixed header */
.single-product .prod-breadcrumb {
  margin-top: 90px;
}

/* ═══════════════════════════════════════════════════════════
   PRODUCT VARIATIONS
   ═══════════════════════════════════════════════════════════ */
.prod-summary__price-from { font-size: .9rem; color: #888; font-weight: 400; margin-right: .25rem; font-family: var(--font-b); }
.prod-variations { margin-top: .25rem; }
.prod-variations__label { font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: #999; margin-bottom: .65rem; }
.prod-variations__grid { display: flex; flex-direction: column; gap: .5rem; }
.prod-variation-card {
  display: flex; align-items: center; justify-content: space-between;
  padding: .65rem 1rem; border-radius: 10px;
  border: 1.5px solid #e8e8e8; background: #fafaf8;
  transition: border-color .2s, background .2s;
  cursor: pointer;
}
.prod-variation-card:hover { border-color: var(--gold); background: #fff; }
.prod-variation-card--active { border-color: var(--gold); background: #fff; box-shadow: 0 0 0 2px var(--gold); }
.prod-variation-card__name { font-size: .9rem; color: var(--green-dark); font-weight: 500; }
.prod-variation-card__price { font-family: var(--font-h); font-size: 1rem; font-weight: 700; color: var(--green-dark); }
