/* =====================================================================
   CHILLI PEPPERS — REDESIGN SYSTEM (homepage prototype)
   Soft-glass modern: full-screen video hero, floating frosted-glass nav
   and cards, rounded-xl shapes, soft layered shadows. Warm cream canvas,
   chilli-red + turmeric-gold accents — light theme throughout.
   Self-contained: replaces style.css / global.css / parent.css on the
   pages that load it. Fonts are linked in <head>, not @imported here.
   ===================================================================== */

:root {
  /* ---- surfaces ---- */
  --paper:      #fbf2e3;
  --paper-2:    #f4e3c6;
  --card:       #fffdf8;
  --line:       rgba(32, 21, 9, .12);
  --line-soft:  rgba(32, 21, 9, .07);

  /* ---- ink ---- */
  --ink:        #201509;
  --ink-soft:   #5b4a3a;
  --ink-faint:  #8a7a68;

  /* ---- brand ---- */
  --red:        #e0201f;
  --red-deep:   #a8121a;
  --red-tint:   rgba(224, 32, 31, .10);
  --gold:       #de9a2a;
  --gold-deep:  #a86e14;
  --gold-tint:  rgba(222, 154, 42, .14);

  /* ---- glass ---- */
  --glass:        rgba(255, 255, 255, .55);
  --glass-strong: rgba(255, 255, 255, .78);
  --glass-border: rgba(255, 255, 255, .55);
  --glass-on-photo: rgba(255, 255, 255, .14);
  --glass-on-photo-border: rgba(255, 255, 255, .35);
  --blur: 18px;

  /* ---- footer (deep ink band) ---- */
  --footer-bg:  #241608;
  --footer-ink: #f4e9d8;
  --footer-soft:#c9b49b;
  --footer-line:rgba(244, 233, 216, .14);

  /* ---- shadow / shape ---- */
  --shadow-sm:  0 2px 12px rgba(32, 21, 9, .07);
  --shadow-md:  0 16px 38px rgba(32, 21, 9, .12);
  --shadow-lg:  0 30px 70px rgba(32, 21, 9, .20);
  --radius:     26px;
  --radius-lg:  34px;
  --radius-pill:999px;

  /* ---- type ---- */
  --f-display:  'Fraunces', 'Georgia', serif;
  --f-body:     'Work Sans', 'Segoe UI', sans-serif;

  --wrap: 1220px;
}

/* ===================== RESET / BASE ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--paper); overflow-x: clip; }
body {
  margin: 0;
  padding: 0;
  overflow-x: clip;
  max-width: 100%;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--f-body);
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
ul { list-style: none; margin: 0; padding: 0; }
a { text-decoration: none; color: inherit; }
h1, h2, h3, h4 { margin: 0; font-family: var(--f-display); }
p { margin: 0; }
::selection { background: var(--red); color: #fff; }

/* icon fonts must keep their own family */
[class^="ri-"], [class*=" ri-"] { font-family: 'remixicon' !important; }
.fa, .fas, .far, .fa-solid, .fa-regular { font-family: 'Font Awesome 6 Free' !important; }
.fab, .fa-brands { font-family: 'Font Awesome 6 Brands' !important; }

.rd-wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

/* shared eyebrow / heading / lede */
.rd-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--red-deep);
}
.rd-eyebrow::before {
  content: "";
  width: 22px; height: 2px;
  background: var(--gold);
  display: inline-block;
  border-radius: 2px;
}
.rd-heading {
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.08;
  color: var(--ink);
  margin: .35em 0 .4em;
}
.rd-heading em { font-style: italic; color: var(--red); }
.rd-lede {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 620px;
  line-height: 1.75;
}
.rd-center { text-align: center; margin-left: auto; margin-right: auto; }

.rd-section-head {
  max-width: var(--wrap);
  margin: 0 auto 44px;
  text-align: center;
}
.rd-section-head .rd-eyebrow { justify-content: center; }
.rd-section-head .rd-lede { margin-left: auto; margin-right: auto; }

/* buttons */
.rd-btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .03em;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  white-space: nowrap;
}
.rd-btn--solid {
  background: var(--red);
  color: #fff;
  box-shadow: 0 10px 26px rgba(224, 32, 31, .35);
}
.rd-btn--solid:hover { background: var(--red-deep); transform: translateY(-2px); color: #fff; }
.rd-btn--ghost {
  background: var(--glass);
  border-color: var(--line);
  color: var(--ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.rd-btn--ghost:hover { background: var(--ink); border-color: var(--ink); color: var(--paper); transform: translateY(-2px); }
.rd-btn--glass {
  background: rgba(255, 255, 255, .16);
  border-color: rgba(255, 255, 255, .5);
  color: #fff;
  backdrop-filter: blur(14px) saturate(150%);
  -webkit-backdrop-filter: blur(14px) saturate(150%);
}
.rd-btn--glass:hover { background: rgba(255, 255, 255, .32); transform: translateY(-2px); color: #fff; }

/* =====================================================================
   NAV — floating frosted-glass pill (fixed, overlays the full-screen hero)
   ===================================================================== */
.cp-topbar { display: none; }

.nav__container {
  position: fixed;
  top: 18px; left: 18px; right: 18px;
  z-index: 999;
}
.nav__container nav {
  max-width: var(--wrap);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 10px 10px 24px;
  background: var(--glass);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-pill);
  backdrop-filter: blur(var(--blur)) saturate(160%);
  -webkit-backdrop-filter: blur(var(--blur)) saturate(160%);
  box-shadow: 0 14px 34px rgba(32, 21, 9, .16);
  transition: background .3s ease;
}
.nav__header {
  width: auto;
  height: auto;
  padding: 0;
  background: transparent;
  display: flex;
  align-items: center;
}
.logo__wrapper { display: flex; align-items: center; }
.logo__image, .nav__logo img {
  height: 44px;
  width: auto;
  background: transparent;
  border-radius: 0;
  margin: 0;
}
.logo__wrapper:hover .logo__image { animation: rd-wiggle .5s ease; }
@keyframes rd-wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-4deg); }
  60% { transform: rotate(3deg); }
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 26px;
}
.nav__links a {
  position: relative;
  font-family: var(--f-body);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: .1em;
  font-size: .76rem;
  color: var(--ink);
  padding: 6px 0;
}
.nav__links a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.nav__links a:hover, .nav__links a.active { color: var(--red-deep); }
.nav__links a:hover::after, .nav__links a.active::after { transform: scaleX(1); }

.nav__links a.nav-order-online {
  background: var(--red);
  color: #fff !important;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  box-shadow: 0 8px 20px rgba(224, 32, 31, .32);
}
.nav__links a.nav-order-online::after { display: none; }
.nav__links a.nav-order-online:hover { background: var(--red-deep); transform: translateY(-1px); }

.nav__links li:has(.nav-menu)         { order: 1; }
.nav__links li:has(.nav-menu-gallery) { order: 2; }
.nav__links li:has(.nav-catering)     { order: 3; }
.nav__links li:has(.nav-franchising)  { order: 4; }
.nav__links li:has(.nav-blogs)        { order: 5; }
.nav__links li:has(.nav-contact-us)   { order: 6; }
.nav__links li:has(.nav-order-online) { order: 10; margin-left: 4px; }

.nav__menu__btn { display: none; }

@media (max-width: 940px) {
  .nav__container { top: 14px; left: 14px; right: 14px; }
  /* Solid pill on mobile: dropping backdrop-filter also stops `nav` from
     becoming the containing block for the fixed full-screen menu overlay,
     so the overlay can cover the true viewport edge-to-edge. */
  .nav__container nav {
    padding: 8px 8px 8px 18px;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }
  .logo__image, .nav__logo img { height: 36px; }

  /* keep logo + close button above the full-screen menu overlay,
     and push the menu toggle button to the far right of the bar */
  .nav__header { position: relative; z-index: 1001; width: 100%; justify-content: space-between; }

  .nav__menu__btn {
    display: inline-flex !important;
    align-items: center; justify-content: center;
    width: 42px; height: 42px;
    border: 1px solid var(--glass-border);
    border-radius: 50%;
    background: var(--glass-strong);
    color: var(--ink);
    font-size: 1.3rem;
  }

  .nav__links {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 100px 30px 40px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    background: var(--paper);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    background-image: radial-gradient(120% 55% at 50% 0%, var(--red-tint), transparent 55%);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
    z-index: 1000;
  }
  .nav__links.open { opacity: 1; visibility: visible; transform: none; }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    width: 100%;
    padding: 18px 2px;
    font-family: var(--f-display);
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1.3rem;
    border-bottom: 1px solid var(--line);
  }
  .nav__links a::after { display: none; }
  .nav__links li:has(.nav-order-online) { margin-top: auto; }
  .nav__links a.nav-order-online {
    text-align: center;
    margin-top: 22px;
    padding: 16px;
    border-bottom: 0;
    font-family: var(--f-body);
    text-transform: uppercase;
  }
}

/* ===================== FLOATING MOBILE ORDER BUTTON ===================== */
.floating-btn-wrapper { display: none; }
@media (max-width: 768px) {
  .floating-btn-wrapper {
    display: flex;
    justify-content: center;
    position: fixed;
    left: 0; right: 0; bottom: 0;
    z-index: 998;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    background: rgba(251, 242, 227, .9);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(32, 21, 9, .12);
  }
  .floating-btn-wrapper .btn.order-float {
    width: 100%;
    max-width: 480px;
    text-align: center;
    background: var(--red);
    color: #fff;
    font-family: var(--f-body);
    font-weight: 700;
    letter-spacing: .03em;
    padding: 15px;
    border-radius: var(--radius-pill);
    box-shadow: 0 10px 24px rgba(224, 32, 31, .38);
    animation: rd-bob 3s ease-in-out infinite;
  }
}
@keyframes rd-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

/* =====================================================================
   HERO — true full-screen video, centered frosted-glass content card
   ===================================================================== */
.rd-hero {
  position: relative;
  height: 100vh;
  height: 100svh;
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  background: var(--ink);
}
.rd-hero video,
.rd-hero__poster {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.rd-hero::before {
  content: "";
  position: absolute; inset: 0;
  z-index: 1;
  background: linear-gradient(190deg, rgba(20, 10, 4, .18) 10%, rgba(20, 10, 4, .58) 100%);
}
.rd-hero__glass {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 740px;
  margin: 0 24px;
  padding: clamp(36px, 5vw, 56px) clamp(28px, 5vw, 64px);
  border-radius: var(--radius-lg);
  background: var(--glass-on-photo);
  border: 1px solid var(--glass-on-photo-border);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
  color: #fff;
}
.rd-hero__glass .rd-eyebrow { color: var(--gold); justify-content: center; }
.rd-hero__glass .rd-eyebrow::before { background: var(--gold); }
.rd-hero__title {
  font-weight: 900;
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  line-height: 1.04;
  color: #fff;
  letter-spacing: -.01em;
  margin: .3em 0 .32em;
  text-shadow: 0 6px 30px rgba(0, 0, 0, .3);
}
.rd-hero__title em { font-style: italic; color: var(--gold); }
.rd-hero__sub {
  font-size: 1.12rem;
  color: rgba(255, 255, 255, .88);
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.7;
}
.rd-hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 26px; }
.rd-hero__stats {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 26px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, .22);
}
.rd-stat { display: flex; flex-direction: column; align-items: center; }
.rd-stat b { font-family: var(--f-display); font-size: 1.4rem; color: var(--gold); }
.rd-stat span { font-size: .78rem; color: rgba(255, 255, 255, .75); letter-spacing: .03em; }

.rd-hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 28px;
  transform: translateX(-50%);
  z-index: 2;
  width: 46px; height: 46px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, .14);
  border: 1px solid rgba(255, 255, 255, .4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff;
  font-size: 1.2rem;
  animation: rd-scrollcue 2s ease-in-out infinite;
}
@keyframes rd-scrollcue {
  0%, 100% { transform: translate(-50%, 0); opacity: .6; }
  50% { transform: translate(-50%, 8px); opacity: 1; }
}

@media (max-width: 640px) {
  .rd-hero__glass { padding: 32px 22px; }
  .rd-hero__stats { gap: 20px; }
  .rd-hero__scroll { display: none; }
}

/* =====================================================================
   AWARD — frosted glass card
   ===================================================================== */
.rd-award {
  background: var(--paper-2);
  padding: clamp(64px, 8vw, 100px) 24px;
  text-align: center;
}
.rd-award__card {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-top: 32px;
  padding: 44px clamp(32px, 6vw, 64px);
  border-radius: var(--radius-lg);
  background: var(--glass-strong);
  border: 1px solid rgba(255, 255, 255, .7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: var(--shadow-md);
}
.rd-award__stamp {
  width: 190px;
  margin: 0 auto 18px;
  filter: drop-shadow(0 14px 26px rgba(32, 21, 9, .22));
}
.rd-award__cap {
  font-family: var(--f-body);
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  font-size: .85rem;
  color: var(--gold-deep);
}

/* =====================================================================
   PROMO BAND (options-band.jpg) — photo + frosted glass card
   ===================================================================== */
.rd-promo {
  position: relative;
  min-height: 460px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 80px 24px;
  overflow: hidden;
}
.rd-promo__bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
}
.rd-promo::before {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(20, 10, 4, .2) 0%, rgba(20, 10, 4, .55) 100%);
}
.rd-promo__inner {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding: clamp(32px, 5vw, 52px) clamp(28px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: var(--glass-on-photo);
  border: 1px solid var(--glass-on-photo-border);
  backdrop-filter: blur(22px) saturate(150%);
  -webkit-backdrop-filter: blur(22px) saturate(150%);
  box-shadow: 0 30px 70px rgba(0, 0, 0, .3);
  color: #fff;
}
.rd-promo__eyebrow {
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  font-size: .8rem;
  color: var(--gold);
  margin-bottom: 14px;
  display: inline-block;
}
.rd-promo__title {
  font-weight: 800;
  font-size: clamp(2rem, 4.4vw, 3rem);
  line-height: 1.08;
  margin-bottom: 14px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}
.rd-promo__title em { font-style: italic; color: var(--gold); }
.rd-promo__sub { font-size: 1.08rem; opacity: .92; margin-bottom: 28px; }

/* =====================================================================
   POPULAR DISHES — clean glass-chip cards
   ===================================================================== */
.rd-dishes { background: var(--paper); padding: clamp(70px, 9vw, 110px) 24px; }
.rd-dishes__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--wrap);
  margin: 0 auto 48px;
  flex-wrap: wrap;
}
.rd-dishes__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.rd-dish {
  background: var(--card);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
  display: flex;
  flex-direction: column;
}
.rd-dish:hover { transform: translateY(-8px); box-shadow: var(--shadow-md); }
.rd-dish__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.rd-dish__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.rd-dish:hover .rd-dish__media img { transform: scale(1.06); }
.rd-dish__tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--glass-strong);
  color: var(--red-deep);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(255, 255, 255, .7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 6px 14px rgba(32, 21, 9, .16);
}
.rd-dish__body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.rd-dish__title { font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.rd-dish__title a { transition: color .2s ease; }
.rd-dish__title a:hover { color: var(--red-deep); }
.rd-dish__desc { font-size: .93rem; color: var(--ink-soft); line-height: 1.65; flex: 1; }
.rd-dish__stars { color: var(--gold); font-size: .85rem; letter-spacing: 2px; }

/* =====================================================================
   ABOUT — clean aligned photo grid + copy
   ===================================================================== */
.rd-about {
  background: var(--paper-2);
  padding: clamp(70px, 9vw, 110px) 24px;
}
.rd-about__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.rd-about__collage {
  position: relative;
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  min-height: 420px;
}
.rd-about__collage img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}
.rd-about__collage .rd-ph-1 { grid-row: 1 / 3; }
.rd-about__copy p { color: var(--ink-soft); margin-bottom: 18px; line-height: 1.85; }
.rd-about__copy .rd-btn { margin-top: 8px; }

@media (max-width: 900px) {
  .rd-about__grid { grid-template-columns: 1fr; gap: 40px; }
  .rd-about__collage { min-height: 320px; }
}

/* =====================================================================
   CHEF SPOTLIGHT — clean image + floating glass credential chip
   ===================================================================== */
.rd-chef { background: var(--paper); padding: clamp(70px, 9vw, 110px) 24px; }
.rd-chef__grid {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  align-items: center;
}
.rd-chef__img-wrap { position: relative; }
.rd-chef__img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.rd-chef__chip {
  position: absolute;
  left: 28px;
  bottom: -22px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  background: var(--glass-strong);
  border: 1px solid rgba(255, 255, 255, .7);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: var(--shadow-md);
  font-weight: 700;
  font-size: .85rem;
  color: var(--red-deep);
}
.rd-chef__chip i { color: var(--gold-deep); }
.rd-chef__name { font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 800; margin: .2em 0 0; }
.rd-chef__role {
  text-transform: uppercase;
  letter-spacing: .16em;
  font-size: .82rem;
  color: var(--ink-faint);
  margin: 8px 0 20px;
}
.rd-chef__bio { color: var(--ink-soft); line-height: 1.85; }

@media (max-width: 860px) {
  .rd-chef__grid { grid-template-columns: 1fr; gap: 44px; }
  .rd-chef__img { height: 340px; }
}

/* =====================================================================
   FAQ (keeps existing faq__* class names — JS toggles rely on them)
   ===================================================================== */
.faq__container {
  background: var(--paper-2);
  padding: clamp(70px, 9vw, 110px) 24px;
  max-width: none;
}
.faq__accordion {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 420px), 1fr));
  gap: 26px;
  margin-top: 44px;
  max-width: var(--wrap);
  margin-left: auto;
  margin-right: auto;
}
.faq__category {
  background: var(--glass-strong);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: var(--radius);
  padding: 30px 30px 12px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: var(--shadow-sm);
}
.faq__category h3 {
  font-family: var(--f-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--red-deep);
  margin: 0 0 18px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--gold-tint);
}
.faq__item { border-bottom: 1px solid var(--line-soft); padding-bottom: 8px; margin-bottom: 8px; }
.faq__question { display: flex; justify-content: space-between; align-items: center; cursor: pointer; padding: 12px 0; gap: 16px; }
.faq__question h4 { font-family: var(--f-body); font-size: 1.02rem; font-weight: 600; color: var(--ink); margin: 0; }
.faq__icon { color: var(--red); font-size: 1.2rem; transition: transform .3s ease; flex-shrink: 0; }
.faq__item.active .faq__icon { transform: rotate(45deg); color: var(--gold-deep); }
.faq__answer { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .35s ease; }
.faq__item.active .faq__answer { max-height: 1200px; padding-bottom: 14px; }
.faq__answer p { color: var(--ink-soft); font-size: .95rem; line-height: 1.7; margin: 0 0 10px; }
.faq__answer ul { padding-left: 4px; margin-top: 6px; }
.faq__answer li { color: var(--ink-soft); margin-bottom: 8px; padding-left: 18px; position: relative; }
.faq__answer li::before { content: "—"; position: absolute; left: 0; color: var(--gold-deep); }
.faq__answer a { color: var(--red-deep); font-weight: 600; }
.faq__answer a:hover { text-decoration: underline; }

/* =====================================================================
   FOOTER — deep ink band (single dark band on an otherwise light site)
   ===================================================================== */
.footer { background: var(--footer-bg); color: var(--footer-soft); }
.footer__container {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 72px 24px 40px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px 32px;
}
.footer__logo__img { width: 190px; height: auto; margin-bottom: 16px; }
.footer__col .section__description { color: var(--footer-soft); font-size: .95rem; line-height: 1.7; }
.footer__col h4 {
  font-family: var(--f-body);
  color: var(--footer-ink);
  text-transform: uppercase;
  letter-spacing: .1em;
  font-size: .85rem;
  margin-bottom: 16px;
}
.footer__links { display: grid; gap: 10px; }
.footer__links a, .footer__links li { color: var(--footer-soft); font-size: .93rem; }
.footer__links a:hover { color: var(--gold); }
.social-icons-wrapper { display: flex; gap: 10px; margin-top: 14px; }
.social-icons a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: rgba(244, 233, 216, .08);
  border: 1px solid rgba(244, 233, 216, .14);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  color: var(--footer-soft);
  font-size: 1rem;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.social-icons a:hover { background: var(--red); border-color: var(--red); color: #fff; transform: translateY(-3px); }
.footer__policy, .footer__bar, .footer__company {
  border-top: 1px solid var(--footer-line);
  background: var(--footer-bg);
  text-align: center;
  padding: 16px;
  font-size: .85rem;
  color: var(--footer-soft);
}
.footer__policy { display: flex; justify-content: center; gap: 20px; padding-bottom: 0; border-top: 1px solid var(--footer-line); }
.footer__policy a:hover { color: var(--gold); }
.footer__company { border-top: 0; padding-top: 6px; }
.footer__company a span { color: var(--gold); }

@media (max-width: 860px) {
  .footer__container { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer__container { grid-template-columns: 1fr; padding: 56px 24px 30px; }
}

/* =====================================================================
   SITEWIDE ROLLOUT — shared legacy component families
   These target class names still used by the other ~47 pages (menu,
   about, catering, franchising, blogs, menu-gallery, contact-us,
   our-food, privacy/terms, edmonton-indo-chinese-restaurant.html, and
   the templated tags/dishes + tags/places + tags-root pages) so those
   pages only need their <link> tags swapped to this stylesheet — no
   markup rename required.
   ===================================================================== */

:root {
  --cp-red: var(--red-deep);
  --primary: var(--red);
  --primaryLight: var(--red-deep);
}

/* normalize old hardcoded teal (#20E3B2) + pure-black inline colors */
[style*="20E3B2"] { color: var(--red-deep) !important; }
[style*="color: #000000"], [style*="color:#000000"],
[style*="color: #000"], [style*="color:#000"] { color: var(--ink) !important; }

/* generic button used across every legacy page (order/menu/directions CTAs) */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  font-family: var(--f-body);
  font-weight: 700;
  font-size: .92rem;
  letter-spacing: .02em;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  border: 2px solid transparent;
  background: var(--red);
  color: #fff;
  cursor: pointer;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  box-shadow: 0 8px 20px rgba(224, 32, 31, .3);
}
.btn:hover { background: var(--red-deep); transform: translateY(-2px); color: #fff; }
.menu-btn-wrapper { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-top: 20px; }

/* ---- breadcrumb (nearly every inner page) ---- */
.breadcrumb-container {
  background: var(--paper-2);
  border-bottom: 1px solid var(--line);
  padding: 108px 24px 16px;
}
.breadcrumb-wrapper { max-width: var(--wrap); margin: 0 auto; }
.breadcrumb { display: flex; flex-wrap: wrap; gap: 6px; align-items: center; font-size: .85rem; color: var(--ink-faint); }
.breadcrumb li { display: flex; align-items: center; gap: 6px; }
.breadcrumb li:not(:last-child)::after { content: "/"; color: var(--ink-faint); opacity: .6; }
.breadcrumb a { color: var(--ink-soft); font-weight: 600; }
.breadcrumb a:hover { color: var(--red-deep); }

/* ---- generic section wrapper + heading/description (section__*, cp-section-title) ---- */
.section__container, .section__container2 {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: clamp(60px, 8vw, 100px) 24px;
}
.section__header, .cp-section-title, .best-dishes-header h2, .dish-category-title h2 {
  font-family: var(--f-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  line-height: 1.12;
  color: var(--ink);
  text-align: center;
  margin: 0 0 16px;
}
.section__header span { display: block; font-size: .55em; color: var(--red-deep); font-weight: 600; margin-top: 8px; }
.section__description, .cp-section-sub, .contact__section__description {
  font-size: 1.05rem;
  color: var(--ink-soft);
  line-height: 1.7;
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
}

/* =====================================================================
   PAGE HEROES — cs-* family
   Group A (.cs-background): full-bleed photo + centered frosted glass
   card — #home-hero (places/tags-root/edmonton page), #contact-section-hero.
   Group B (.cs-picture): plain cream two-column layout with a rounded
   decorative photo — #about-section-hero, #gallery-header.
   ===================================================================== */
#home-hero, #contact-section-hero {
  position: relative;
  min-height: 66vh;
  display: grid;
  place-items: center;
  text-align: center;
  overflow: hidden;
  padding: 90px 20px 70px;
  background: var(--ink) center/cover no-repeat;
}
#home-hero .cs-background, #contact-section-hero .cs-background {
  position: absolute; inset: 0; z-index: 0;
}
#home-hero .cs-background img, #contact-section-hero .cs-background img {
  width: 100%; height: 100%; object-fit: cover;
}
#home-hero::before, #contact-section-hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(190deg, rgba(20, 10, 4, .25) 10%, rgba(20, 10, 4, .6) 100%);
}
#home-hero .cs-container, #contact-section-hero .cs-container {
  position: relative;
  z-index: 2;
  max-width: 720px;
  margin: 0 auto;
  padding: clamp(30px, 5vw, 50px) clamp(26px, 5vw, 56px);
  border-radius: var(--radius-lg);
  background: var(--glass-on-photo);
  border: 1px solid var(--glass-on-photo-border);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 26px 64px rgba(0, 0, 0, .3);
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#home-hero .cs-content { display: flex; flex-direction: column; align-items: center; }
#home-hero .cs-topper, #contact-section-hero .cs-topper {
  color: var(--gold); font-weight: 700; letter-spacing: .18em; text-transform: uppercase; font-size: .8rem; margin-bottom: .5em;
}
#home-hero .cs-title, #contact-section-hero .cs-title {
  font-family: var(--f-display); font-weight: 900; font-size: clamp(1.9rem, 4.6vw, 3rem);
  line-height: 1.1; color: #fff; margin: 0 0 .3em; text-shadow: 0 4px 20px rgba(0, 0, 0, .3);
}
#home-hero .cs-subtitle { font-size: 1.05rem; color: rgba(255, 255, 255, .9); margin-bottom: .6em; }
#home-hero .cs-text, #contact-section-hero .cs-text {
  color: rgba(255, 255, 255, .88); text-align: center; max-width: 520px; margin: 0 auto;
}
#home-hero .cs-button-group { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 20px; }
#home-hero .cs-button-solid, #contact-section-hero .cs-button-solid {
  display: inline-flex; align-items: center; gap: .5em; font-weight: 700; font-size: .92rem;
  padding: 15px 30px; border-radius: var(--radius-pill); background: var(--red); color: #fff;
  box-shadow: 0 10px 26px rgba(224, 32, 31, .35); transition: all .2s ease; margin-top: 18px;
}
#home-hero .cs-button-solid:hover, #contact-section-hero .cs-button-solid:hover { background: var(--red-deep); transform: translateY(-2px); color: #fff; }

#about-section-hero, #gallery-header {
  position: relative;
  background: var(--paper);
  overflow: hidden;
  padding: 110px 24px clamp(60px, 8vw, 90px);
}
#about-section-hero .cs-container, #gallery-header .cs-container {
  max-width: var(--wrap);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}
.cs-content, .cs-flex-group { display: flex; flex-direction: column; gap: 14px; }
#about-section-hero .cs-topper, #gallery-header .cs-topper {
  color: var(--red-deep); font-weight: 700; letter-spacing: .16em; text-transform: uppercase; font-size: .8rem;
}
#about-section-hero .cs-title, #gallery-header .cs-title {
  font-family: var(--f-display); font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.6rem); color: var(--ink); line-height: 1.15; margin: 0;
}
#about-section-hero .cs-text, #gallery-header .cs-text { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.75; }
#about-section-hero .cs-button-solid, #gallery-header .cs-button-solid {
  align-self: flex-start; margin-top: 8px; display: inline-flex; align-items: center; gap: .5em;
  font-weight: 700; font-size: .92rem; padding: 14px 28px; border-radius: var(--radius-pill);
  background: var(--red); color: #fff; box-shadow: 0 8px 20px rgba(224, 32, 31, .3);
}
#about-section-hero .cs-button-solid:hover, #gallery-header .cs-button-solid:hover { background: var(--red-deep); }
.cs-card-group { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }
.cs-item { background: var(--glass-strong); border: 1px solid rgba(255, 255, 255, .7); border-radius: var(--radius); padding: 22px 24px; backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); box-shadow: var(--shadow-sm); }
.cs-number { display: inline-block; font-family: var(--f-display); font-weight: 900; font-size: 1.3rem; color: var(--gold-deep); margin-right: 10px; }
.cs-item-text { display: inline; color: var(--ink-soft); font-size: .9rem; line-height: 1.65; }
.cs-picture { border-radius: 0 60px 0 60px; overflow: hidden; box-shadow: var(--shadow-lg); }
.cs-picture img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cs-wave { display: none; }
@media (max-width: 900px) {
  #about-section-hero .cs-container, #gallery-header .cs-container { grid-template-columns: 1fr; }
  .cs-picture { order: -1; max-height: 320px; }
}

/* about.html: services + gallery */
#about-services { padding: clamp(60px, 8vw, 90px) 24px; background: var(--paper-2); text-align: center; }
#about-services .cs-item, #our-story-container .cs-item { display: flex; flex-direction: column; align-items: center; }
#about-services .cs-item-text { display: block; }
.cs-icon-wrapper { width: 60px; height: 60px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 50%; background: var(--red-tint); }
.cs-icon { width: 28px; height: 28px; }
.cs-h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); margin: 0 0 10px; }
#about-gallery-container { padding: clamp(60px, 8vw, 90px) 24px; }
.cs-gallery { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.cs-image img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); }
@media (max-width: 900px) { .cs-gallery { grid-template-columns: repeat(2, 1fr); } }

/* about.html: testimonials (utility-class system) */
#testimonial-section { padding: clamp(70px, 9vw, 100px) 24px; text-align: center; }
.testimonial-heading { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.8rem, 3.6vw, 2.4rem); color: var(--ink); margin: 0 0 40px; }
.testimonial-grid { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 22px; text-align: left; }
.testimonial { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-sm); }
.testimonial p { color: var(--ink-soft); line-height: 1.65; margin: 0 0 14px; font-size: .95rem; }
.testimonial .name { font-weight: 700; color: var(--ink); font-size: .95rem; }
.testimonial .position { color: var(--ink-faint); font-size: .8rem; }
.bg-primary-400, .bg-secondary-500, .bg-neutral-100 { background: var(--card) !important; }
.text-neutral-100, .text-secondary-400 { color: var(--ink-soft) !important; }

/* about.html + our-food.html: shared photo grid */
.about-container { max-width: var(--wrap); margin: 0 auto; padding: clamp(60px, 8vw, 90px) 24px; }
.about-content { display: flex; flex-direction: column; gap: 20px; }
.wrapper, .dish-wrapper {
  max-width: var(--wrap); margin: 0 auto;
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); grid-auto-rows: 220px; gap: 16px;
}
.single-box { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
.single-box img, .single-box a { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.single-box:hover img { transform: scale(1.06); }
.dish-card-container { padding: clamp(60px, 8vw, 90px) 24px; text-align: center; }

/* ---- explore__* two-column band (places / tags-root / edmonton page) ---- */
.explore__container { display: flex; align-items: center; gap: 48px; flex-wrap: wrap; }
.explore__image { flex: 1 1 380px; }
.explore__image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.explore__content { flex: 1 1 380px; }
.explore__content .section__header, .explore__content .section__description {
  text-align: left; margin-left: 0; max-width: none;
}
.explore__btn { margin-top: 20px; }
@media (max-width: 860px) {
  .explore__container { flex-direction: column; }
  .explore__content .section__header, .explore__content .section__description { text-align: center; margin: 0 auto; }
}

/* ---- special__* featured dish grid (places pages) ---- */
.special__container { padding: clamp(60px, 8vw, 90px) 24px; text-align: center; }
.special__grid { max-width: var(--wrap); margin: 36px auto 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 22px; }
.special__card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 26px; text-align: center; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.special__card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.special-card-title { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; color: var(--ink); margin: 0 0 10px; }
.special__card p { color: var(--ink-soft); font-size: .92rem; line-height: 1.6; margin: 0; }

/* ---- header__* family (menu.html hero, contact-us.html, privacy/terms, takeout page) ---- */
.header__container {
  max-width: var(--wrap); margin: 0 auto; padding: clamp(50px, 7vw, 90px) 24px;
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.header__image, .map-container { flex: 1 1 420px; }
.header__content, .header__contact__content { flex: 1 1 380px; }
.header__image img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.map-container { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); min-height: 360px; }
.map-container iframe { width: 100%; height: 100%; min-height: 360px; border: 0; display: block; }
.header__content h1 { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.8rem, 3.6vw, 2.6rem); color: var(--ink); margin: 0 0 .3em; }
.header__content h1 span { display: block; font-family: var(--f-body); font-weight: 600; font-size: 1rem; color: var(--red-deep); text-transform: uppercase; letter-spacing: .06em; margin-top: 10px; }
.header__contact__content h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--ink); margin: 0 0 .4em; }
.header__btn { margin-top: 22px; }
.contact-list { display: flex; flex-direction: column; gap: 14px; margin-top: 22px; }
.contact-list a { display: inline-flex; align-items: center; gap: 10px; font-weight: 600; color: var(--ink); }
.contact-list a:hover { color: var(--red-deep); }
.contact-list i { color: var(--red); width: 20px; text-align: center; }
.header__terms { padding-top: 130px; }
.header__image .privacy__image { border-radius: var(--radius); }

/* ---- privacy-policy.html / terms-of-use.html ---- */
.privacy-policy-content { max-width: 820px; margin: 0 auto; padding: clamp(50px, 7vw, 80px) 24px; display: flex; flex-direction: column; gap: 8px; }
.privacy-main-desc { color: var(--ink-soft); line-height: 1.8; font-size: 1.02rem; padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 12px; }
.privacy-content-lists { display: flex; flex-direction: column; gap: 22px; }
.privacy-item { display: flex; flex-direction: column; gap: 8px; }
.privacy-title { font-family: var(--f-display); font-weight: 700; font-size: 1.15rem; color: var(--red-deep); }
.privacy-desc { color: var(--ink-soft); line-height: 1.75; }

/* =====================================================================
   MENU.HTML — search/filter/list UI (class + id names kept exactly as
   script.js expects; only presentation changes)
   ===================================================================== */
.mobile-menu-controls { max-width: var(--wrap); margin: 0 auto; padding: 16px 24px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
#menu-search {
  flex: 1 1 240px; padding: 12px 18px; border-radius: var(--radius-pill); border: 1px solid var(--line);
  background: var(--card); font-family: var(--f-body); font-size: .95rem; color: var(--ink);
}
#menu-search:focus { outline: none; border-color: var(--red); box-shadow: 0 0 0 3px var(--red-tint); }
.dropdown { position: relative; }
.dropbtn {
  display: inline-flex; align-items: center; gap: 8px; padding: 12px 20px; border-radius: var(--radius-pill);
  border: 1px solid var(--line); background: var(--card); font-family: var(--f-body); font-weight: 600; font-size: .9rem; color: var(--ink); cursor: pointer;
}
.dropdown-content {
  position: absolute; top: calc(100% + 8px); left: 0; min-width: 220px; max-height: 320px; overflow-y: auto;
  background: var(--card); border: 1px solid var(--line); border-radius: 16px; box-shadow: var(--shadow-md); padding: 8px; z-index: 20;
  display: none;
}
.dropdown-content a { display: block; padding: 10px 14px; border-radius: 10px; color: var(--ink); font-size: .9rem; font-weight: 600; }
.dropdown-content a:hover { background: var(--paper-2); color: var(--red-deep); }

.best-dishes { padding: clamp(60px, 8vw, 90px) 24px 20px; text-align: center; }
.best-dishes-header h2 { margin-bottom: 36px; }
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 26px; max-width: var(--wrap); margin: 0 auto; }
.cards_item { display: flex; }
.card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); display: flex; flex-direction: column; width: 100%; transition: transform .3s ease, box-shadow .3s ease; }
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card_image { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
.card_image img { width: 100%; height: 100%; object-fit: cover; }
.card_content { padding: 20px 22px 24px; max-height: none; overflow-y: visible; margin: 0; }
.card_title { font-size: 1.15rem; font-weight: 700; color: var(--ink); text-align: left; margin: 0 0 12px; padding-bottom: 0; }
.card_title::after { display: none; }
.card_text p { font-size: .92rem; color: var(--ink-soft); line-height: 1.6; margin: 0 0 14px; }
.card_text hr { border: 0; border-top: 1px solid var(--line); margin: 14px 0; }

.menu-heading { padding: 50px 24px 10px; text-align: center; }
.menu-heading-wrapper { display: flex; flex-direction: column; align-items: center; gap: 10px; }
.menu-title { font-family: var(--f-display); font-weight: 900; font-size: clamp(2.2rem, 6vw, 3.6rem); color: var(--ink); }

.menu { padding: 20px 24px clamp(70px, 9vw, 100px); }
.menu-container { max-width: var(--wrap); margin: 0 auto; }
.menu-buttons { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; margin: 0 0 40px; }
.menu-button { font-family: var(--f-body); font-weight: 600; font-size: .92rem; padding: 10px 20px; border-radius: var(--radius-pill); border: 1px solid var(--line); background: var(--card); color: var(--ink-soft); cursor: pointer; transition: all .2s ease; }
.menu-button:hover { border-color: var(--red); color: var(--red-deep); }
.menu-button.active-button { background: var(--red); border-color: var(--red); color: #fff; }
.fixed-nav { position: sticky; top: 76px; z-index: 50; background: rgba(251, 242, 227, .92); backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px); padding: 14px 0; margin: 0 0 20px; border-radius: var(--radius-pill); box-shadow: var(--shadow-sm); }
.menu-items { display: grid; grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr)); gap: 18px; }
.category-header { grid-column: 1 / -1; font-family: var(--f-display); font-weight: 800; font-size: 1.5rem; color: var(--red-deep); margin: 28px 0 4px; padding-bottom: 10px; border-bottom: 2px solid var(--gold-tint); }
.category-header:first-child { margin-top: 0; }
.menu-item { display: flex; justify-content: space-between; align-items: flex-start; gap: 16px; padding: 18px 20px; background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); box-shadow: var(--shadow-sm); }
.item-name { font-weight: 700; color: var(--ink); font-size: 1.02rem; }
.item-price { font-weight: 700; color: var(--red-deep); white-space: nowrap; }
.item-desc { color: var(--ink-soft); font-size: .88rem; margin-top: 4px; }
.item-desc span { color: var(--ink-faint); font-size: .78rem; }

/* =====================================================================
   DISH PAGES (tags/dishes/*.html) — Set 1 review-card, hero, CTA, map
   ===================================================================== */
.dish-hero { padding: clamp(50px, 7vw, 90px) 24px; }
.dish-hero-container { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 1.1fr 1fr; gap: 48px; align-items: center; }
.dish-hero-content h1 { font-family: var(--f-display); font-weight: 900; font-size: clamp(2rem, 4vw, 2.8rem); color: var(--ink); margin: 0 0 .4em; }
.dish-rating { display: flex; align-items: center; gap: 6px; color: var(--gold); margin-bottom: 16px; }
.rating-count { color: var(--ink-faint); font-size: .85rem; margin-left: 6px; }
.dish-description { color: var(--ink-soft); font-size: 1.02rem; line-height: 1.7; margin-bottom: 20px; }
.dish-details { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.dish-detail { display: flex; align-items: center; gap: 10px; color: var(--ink-soft); font-size: .92rem; }
.dish-detail i { color: var(--red); width: 20px; text-align: center; }
.dish-hero-image img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
@media (max-width: 900px) { .dish-hero-container { grid-template-columns: 1fr; } }

.dish-description-container { text-align: center; }
.dish-description-content { max-width: 760px; margin: 0 auto; }

.reviews-container, .cta-container { text-align: center; }
.reviews-grid { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 22px; text-align: left; }
.review-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); }
.review-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; margin-bottom: 12px; }
.reviewer-info h4 { font-size: 1rem; color: var(--ink); margin: 0 0 2px; }
.reviewer-info p { font-size: .82rem; color: var(--ink-faint); margin: 0; }
.review-rating { color: var(--gold); font-size: .85rem; letter-spacing: 2px; }
.review-text { color: var(--ink-soft); font-size: .93rem; line-height: 1.65; }

.cta-content { max-width: 640px; margin: 0 auto; }
.cta-content h2 { font-family: var(--f-display); font-weight: 800; font-size: clamp(1.6rem, 3.2vw, 2.2rem); color: var(--ink); margin: 0 0 .4em; }
.cta-content p { color: var(--ink-soft); font-size: 1.05rem; margin: 0 0 20px; }

.dish-location-container { padding-bottom: clamp(60px, 8vw, 90px); }
.dish-location-box { display: grid; grid-template-columns: 1fr 1fr; gap: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); background: var(--card); }
.dish-map iframe { display: block; width: 100%; height: 100%; min-height: 360px; border: 0; }
.dish-location-info { padding: 32px; display: flex; flex-direction: column; gap: 12px; }
.dish-location-info h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.3rem; color: var(--ink); margin: 0 0 4px; }
.dish-location-info ul { list-style: none; padding: 0; margin: 0; }
.dish-location-info .info-row { display: flex; align-items: flex-start; gap: 10px; color: var(--ink-soft); font-size: .94rem; margin-bottom: 0; }
.dish-location-info .info-row i { color: var(--red); margin-top: 2px; }
.dish-location-info a { color: var(--red-deep); font-weight: 600; }
.dish-hours li { color: var(--ink-soft); margin-bottom: 4px; list-style: none; }
.directions-btn { align-self: flex-start; margin-top: 8px; }
@media (max-width: 768px) { .dish-location-box { grid-template-columns: 1fr; } .dish-map iframe { min-height: 280px; } }

/* =====================================================================
   edmonton-indo-chinese-restaurant.html — one-off Set-2 review card
   (scoped under #local-reviews so it never collides with the dish-page
   .review-card above), delivery-area (no -card suffix), dash-based FAQ
   ===================================================================== */
#local-reviews { text-align: center; }
#local-reviews .reviews-grid { text-align: left; }
#local-reviews .review-card { display: flex; flex-direction: column; gap: 10px; }
.review-stars { color: var(--gold); font-size: .9rem; letter-spacing: 2px; }
.reviewer-name { color: var(--ink-faint); font-size: .85rem; font-weight: 600; margin: 0; }

.delivery-area { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.delivery-area h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.25rem; color: var(--red-deep); margin: 0 0 14px; }
.delivery-area ul { display: grid; gap: 8px; }
.delivery-area li { color: var(--ink-soft); font-size: .94rem; padding-left: 18px; position: relative; }
.delivery-area li::before { content: "\2022"; position: absolute; left: 0; color: var(--gold-deep); }
.delivery-note { text-align: center; color: var(--ink-soft); margin-top: 24px; font-size: .95rem; }

.faq-wrapper { max-width: 840px; margin: 36px auto 0; display: grid; gap: 16px; text-align: left; }
.faq-item { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 24px 28px; box-shadow: var(--shadow-sm); }
.faq-question { font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; color: var(--red-deep); margin: 0 0 10px; }
.faq-answer { color: var(--ink-soft); font-size: .95rem; line-height: 1.7; margin: 0; }

/* =====================================================================
   tags-root pages (delivery / takeout / order-online) — delivery grid,
   how-to-order steps, CTA band
   ===================================================================== */
.delivery-areas-grid { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 24px; }
.delivery-area-card { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); }
.delivery-area-card h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.25rem; color: var(--red-deep); margin: 0 0 14px; }
.delivery-area-card ul { display: grid; gap: 8px; }
.delivery-area-card li { color: var(--ink-soft); font-size: .94rem; padding-left: 18px; position: relative; }
.delivery-area-card li::before { content: "\2022"; position: absolute; left: 0; color: var(--gold-deep); }
.delivery-features { display: flex; flex-direction: column; gap: 8px; margin: 16px 0; }
.delivery-features li { color: var(--ink-soft); display: flex; align-items: center; gap: 8px; }
.delivery-features i { color: var(--red); }

.how-to-order-steps { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 22px; }
.order-step { background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); padding: 28px 24px; text-align: center; box-shadow: var(--shadow-sm); }
.step-number { width: 40px; height: 40px; margin: 0 auto 14px; display: grid; place-items: center; border-radius: 50%; background: var(--red); color: #fff; font-weight: 800; font-family: var(--f-display); }
.order-step h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.05rem; color: var(--ink); margin: 0 0 10px; }
.order-step p { color: var(--ink-soft); font-size: .9rem; line-height: 1.6; }
.order-cta, .cta__container { text-align: center; margin-top: 36px; }

/* =====================================================================
   cp-* family — blogs.html, catering.html, franchising.html, menu-gallery.html
   ===================================================================== */
.cp-pagehero {
  position: relative; min-height: 46vh; display: grid; place-items: center; text-align: center;
  padding: 150px 24px 70px; background-size: cover; background-position: center; overflow: hidden;
}
.cp-pagehero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(190deg, rgba(20, 10, 4, .35) 10%, rgba(20, 10, 4, .62) 100%); }
.cp-pagehero__title { position: relative; z-index: 1; font-family: var(--f-display); font-weight: 900; font-size: clamp(2.2rem, 5vw, 3.4rem); color: #fff; text-shadow: 0 4px 24px rgba(0, 0, 0, .35); margin: 0; }

.cp-section { padding: clamp(64px, 8vw, 100px) 24px; background: var(--paper); }
.cp-section--light { background: var(--paper-2); }
.cp-wrap { max-width: var(--wrap); margin: 0 auto; }

.cp-intro-split { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: 1.15fr 1fr; gap: 48px; align-items: center; }
.cp-rich p { color: var(--ink-soft); line-height: 1.85; margin: 0 0 20px; font-size: 1.02rem; }
.cp-rich h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.4rem; color: var(--ink); margin: 30px 0 12px; }
.cp-rich strong { color: var(--ink); }
.cp-feature-img img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
@media (max-width: 860px) { .cp-intro-split { grid-template-columns: 1fr; gap: 32px; } }

.cp-cards { max-width: 900px; margin: 44px auto 0; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.cp-card { background: var(--glass-strong); border: 1px solid rgba(255, 255, 255, .7); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); border-radius: var(--radius); padding: 30px; text-align: center; box-shadow: var(--shadow-sm); }
.cp-card h3 { font-family: var(--f-display); font-weight: 700; font-size: 1.2rem; color: var(--red-deep); margin: 0 0 12px; }
.cp-card p { color: var(--ink-soft); line-height: 1.7; margin: 0; }
@media (max-width: 680px) { .cp-cards { grid-template-columns: 1fr; } }

.cp-form-embed { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-md); }
.cp-form-embed iframe { display: block; width: 100%; border: 0; }

.cp-gallery { max-width: var(--wrap); margin: 0 auto; display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.cp-gallery img { width: 100%; height: 280px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-sm); transition: transform .3s ease; }
.cp-gallery img:hover { transform: scale(1.03); }
@media (max-width: 860px) { .cp-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .cp-gallery { grid-template-columns: 1fr; } }

.cp-btn { display: inline-flex; align-items: center; gap: .5em; font-weight: 700; font-size: .92rem; padding: 15px 30px; border-radius: var(--radius-pill); }
.cp-btn--solid { background: var(--red); color: #fff; box-shadow: 0 10px 26px rgba(224, 32, 31, .35); }
.cp-btn--solid:hover { background: var(--red-deep); }

.cp-blog { max-width: 900px; margin: 0 auto; display: grid; gap: 28px; }
.cp-blog__card { display: grid; grid-template-columns: 280px 1fr; gap: 0; background: var(--card); border: 1px solid var(--line-soft); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); transition: transform .3s ease, box-shadow .3s ease; }
.cp-blog__card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.cp-blog__card img { width: 100%; height: 100%; object-fit: cover; }
.cp-blog__body { padding: 28px 30px; }
.cp-blog__date { color: var(--red-deep); font-weight: 700; font-size: .75rem; letter-spacing: .1em; text-transform: uppercase; }
.cp-blog__title { font-family: var(--f-display); font-weight: 700; font-size: 1.35rem; color: var(--ink); margin: 10px 0 12px; line-height: 1.3; }
.cp-blog__excerpt { color: var(--ink-soft); line-height: 1.7; }
@media (max-width: 640px) { .cp-blog__card { grid-template-columns: 1fr; } .cp-blog__card img { height: 200px; } }

/* ===================== MOTION: entrance + reduced-motion ===================== */
.rd-rise { animation: rd-rise .9s ease both; }
@keyframes rd-rise { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .rd-rise { animation: none; }
  .logo__wrapper:hover .logo__image { animation: none; }
  a.order-float { animation: none; }
  .rd-hero__scroll { animation: none; }
}
