/* =====================================================================
   parent.css — Chilli Peppers DARK theme (redesign/dark-theme)
   Adapted design language: deep warm-charcoal backgrounds, orange accent,
   high-contrast serif display headings with italic-orange emphasis,
   floating pill nav, orange pill buttons, editorial section toppers.
   Loaded AFTER style.css / global.css so it overrides the local theme.
   Fonts: Playfair Display (serif display) | Jost (UI) | Open Sans (body)
   ===================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400..700&family=Fraunces:ital,opsz,wght@0,9..144,400..900;1,9..144,400..700&family=Marcellus&family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;0,900;1,500;1,600;1,700;1,800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gochi+Hand&family=Patrick+Hand&display=swap');



:root {
  /* deep muted wine/burgundy surfaces (Indo-Chinese red/gold theme) */
  --cp-bg:        #141210;   /* page background (neutral warm charcoal) */
  --cp-bg-2:      #1e1b18;   /* elevated panels / bands */
  --cp-bg-3:      #292420;   /* cards (lighter charcoal) */
  --cp-line:      rgba(217, 182, 91, .20);  /* gold-tinted hairlines */

  /* brand red accent (kept from Chilli Peppers brand) */
  --cp-orange:    #c81d34;   /* primary accent = brand red (less vivid) */
  --cp-orange-2:  #e05060;   /* softer red for emphasis / hover / gradients */
  --cp-amber:     #e9a7af;   /* light red tint (award caption) */

  --cp-red:       #c8102e;   /* brand red */
  --cp-red-dark:  #8e0b20;

  /* warm cream text on maroon — brightened for readability */
  --cp-ink:       #fdf6ec;   /* primary text (bright warm cream) */
  --cp-grey:      #f1e0d0;   /* secondary/body text (high contrast) */
  --cp-faint:     #d6bcaa;   /* captions / least-important text */

  --cp-light:     #292420;   /* legacy "light section" -> elevated charcoal panel */
  --cp-gold:      #e3bd62;   /* festive gold */

  --cp-display: 'Gochi Hand', 'Patrick Hand', cursive;
  --cp-head:    'Gochi Hand', 'Patrick Hand', cursive;
  --cp-ui:      'Patrick Hand', 'Gochi Hand', cursive;
  --cp-body:    'Patrick Hand', 'Gochi Hand', cursive;
}

/* ===================== GLOBAL HANDWRITTEN FONT =====================
   Force the Veganmatey stack on all text site-wide (parent.css loads last,
   so this beats hardcoded font-family rules in style.css/global.css).
   Icon fonts are explicitly preserved below so glyphs don't break. */
body, h1, h2, h3, h4, h5, h6,
p, a, span, li, ul, ol, dl, dt, dd,
button, input, select, textarea, label,
blockquote, figcaption, table, th, td,
small, strong, em, b, code, .btn {
  font-family: var(--cp-body) !important;
}

/* Preserve icon fonts (RemixIcon + Font Awesome) — never override these. */
[class^="ri-"], [class*=" ri-"] { font-family: 'remixicon' !important; }
.fa, .fas, .far, .fal, .fat, .fad,
.fa-solid, .fa-regular, .fa-light, .fa-thin, .fa-duotone {
  font-family: 'Font Awesome 6 Free' !important;
}
.fab, .fa-brands { font-family: 'Font Awesome 6 Brands' !important; }

/* ---------- base: dark canvas ---------- */
/* Proportional type scale-up: bumping the root rem unit grows every
   rem-based font size AND its rem-based spacing together, so the whole
   page enlarges without losing proportion. */
html { background: var(--cp-bg); font-size: 125%; }
body {
  font-family: var(--cp-body);
  color: var(--cp-ink);
  background: var(--cp-bg);
}
.cp h1, .cp h2, .cp h3, .cp h4,
.cp-section-title, .cp-hero__title, .cp-band__title,
.cp-pagehero__title, .cp-chef__name {
  font-family: var(--cp-head);
  letter-spacing: 0;
}
/* showpiece titles get the fancy script display face */
.cp-hero__title, .cp-pagehero__title, .cp-band__title,
.cp-section-title, .cp-chef__name {
  font-family: var(--cp-display);
  font-weight: 700;
  letter-spacing: .01em;
  line-height: 1.22;
}
/* warm radial glow helper used behind hero/bands */
.cp-glow::after {
  content: '';
  position: absolute; inset: auto 0 -1px 0;
  height: 240px; pointer-events: none;
  background: radial-gradient(60% 120% at 50% 100%, rgba(209,26,53,.20), transparent 70%);
}

/* ===================== TOP UTILITY BAR ===================== */
.cp-topbar {
  background: #141210;
  border-bottom: 1px solid var(--cp-line);
  font-family: var(--cp-ui);
  font-size: .82rem;
  color: var(--cp-grey);
}
.cp-topbar__inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.cp-topbar__social { display: flex; gap: 10px; }
.cp-topbar__social a {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 6px;
  background: rgba(255,255,255,.06);
  color: var(--cp-grey);
  transition: .2s;
  font-size: .8rem;
}
.cp-topbar__social a:hover { background: var(--cp-orange); color: #ffffff; }
.cp-topbar__tag { letter-spacing: .03em; color: var(--cp-faint); }
@media (max-width: 640px) { .cp-topbar__tag { display: none; } }

/* ===================== HEADER / NAV — floating pill ===================== */
.nav__container {
  position: sticky;
  top: 0;
  z-index: 999;
  background: transparent;
  box-shadow: none;
  padding: 14px 16px 0;
}
.nav__container nav {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 14px 10px 22px;
  background: rgba(26, 23, 20, .88);
  border: 1px solid var(--cp-line);
  border-radius: 999px;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 34px rgba(0,0,0,.45);
}
.nav__links {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
}
.nav__links a {
  font-family: var(--cp-ui);
  text-transform: none;
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .01em;
  color: var(--cp-grey);
  transition: color .2s;
}
.nav__links a:hover,
.nav__links a.active { color: var(--cp-ink); }

/* the Order Online link in the nav becomes an orange pill CTA */
.nav__links a.nav-order-online {
  background: linear-gradient(180deg, var(--cp-orange-2), var(--cp-orange));
  color: #ffffff;
  font-weight: 600;
  padding: 11px 22px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(209,26,53,.35);
}
.nav__links a.nav-order-online:hover { filter: brightness(1.06); color: #ffffff; }

.logo__image, .nav__logo img {
  height: 50px;
  width: auto;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

/* ---------- mobile header / hamburger ---------- */
@media (max-width: 768px) {
  .cp-topbar { display: none; }
  .nav__container { padding: 10px 12px 0; }
  .nav__container nav { padding: 8px 10px 8px 16px; border-radius: 18px; }
  .nav__header {
    width: 100%;
    height: auto;
    padding: 0;
    background: transparent;
    box-shadow: none;
    display: flex; align-items: center; justify-content: space-between;
  }
  .logo__image, .nav__logo img { height: 42px; }
  .nav__menu__btn { display: block; color: var(--cp-ink); font-size: 1.8rem; }
  .nav__links { top: 100%; padding: 0; gap: 0; }
  .nav__links li { width: 100%; }
  .nav__links a {
    display: block;
    width: 100%;
    padding: 15px 20px;
    text-align: center;
    border-bottom: 1px solid var(--cp-line);
  }
  .nav__links a.nav-order-online { border-radius: 0; box-shadow: none; }
}

/* ===================== BUTTONS ===================== */
.cp-btn {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  font-family: var(--cp-ui);
  text-transform: none;
  letter-spacing: .01em;
  font-size: .98rem;
  font-weight: 600;
  padding: 14px 30px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(180deg, var(--cp-orange-2), var(--cp-orange));
  cursor: pointer;
  transition: all .25s ease;
  box-shadow: 0 8px 22px rgba(209,26,53,.30);
}
.cp-btn:hover { filter: brightness(1.06); transform: translateY(-1px); color: #ffffff; }

/* outline / secondary variant */
.cp-btn--light {
  background: rgba(255,255,255,.04);
  border-color: var(--cp-line);
  color: var(--cp-ink);
  box-shadow: none;
}
.cp-btn--light:hover { background: rgba(255,255,255,.10); color: var(--cp-ink); filter: none; }
.cp-btn--solid { background: linear-gradient(180deg, var(--cp-orange-2), var(--cp-orange)); color: #ffffff; }
.cp-btn--solid:hover { filter: brightness(1.06); }

/* homepage transparent overlay nav no longer needed — pill works on all pages */
@media (min-width: 901px) {
  body.cp-home #header-container { position: relative; z-index: 30; }
  body.cp-home .nav__container { position: sticky; }
}

/* ===================== HERO ===================== */
.cp-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cp-ink);
  background: var(--cp-bg) center/cover no-repeat;
}
.cp-hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.cp-hero::before {
  content: '';
  position: absolute; inset: 0;
  z-index: 1;
  background:
    radial-gradient(75% 65% at 50% 38%, rgba(150,16,30,.40), rgba(58,10,17,.86)),
    linear-gradient(180deg, rgba(120,12,26,.55), rgba(45,8,14,.94));
}
.cp-hero__inner { position: relative; z-index: 2; padding: 90px 20px; max-width: 980px; }
.cp-hero__title {
  font-weight: 700;
  text-transform: none;
  line-height: 1.04;
  font-size: clamp(2.8rem, 7vw, 5.6rem);
  margin: 0;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 30px rgba(0,0,0,.5);
}
/* italic-orange emphasis word in serif headlines */
.cp-hero__title em,
.cp-em {
  font-style: italic;
  color: var(--cp-orange-2);
}
.cp-hero__sub {
  font-family: var(--cp-body);
  font-size: clamp(1.05rem, 2.2vw, 1.35rem);
  color: var(--cp-grey);
  margin: 24px 0 36px;
  letter-spacing: .01em;
}

/* small uppercase orange topper */
.cp-topper, .cp-eyebrow {
  display: inline-block;
  font-family: var(--cp-ui);
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: .8rem;
  font-weight: 600;
  color: var(--cp-orange);
  margin-bottom: 14px;
}

/* ===================== GENERIC SECTION ===================== */
.cp-section { padding: 96px 20px; background: var(--cp-bg); }
.cp-section--light { background: var(--cp-bg-2); }
.cp-wrap { max-width: 1080px; margin: 0 auto; }
.cp-section-title {
  text-align: center;
  text-transform: none;
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  line-height: 1.1;
  color: var(--cp-ink);
  margin: 0 0 16px;
}
.cp-section-sub {
  text-align: center;
  color: var(--cp-grey);
  font-size: 1.12rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto;
}

/* ===================== AWARD ===================== */
.cp-award { text-align: center; }
.cp-award img {
  width: 220px; max-width: 60%; margin: 38px auto 16px;
  filter: drop-shadow(0 10px 30px rgba(0,0,0,.5));
}
.cp-award__cap { font-weight: 600; color: var(--cp-amber); letter-spacing: .02em; }

/* ===================== FULL-WIDTH BAND ===================== */
.cp-band {
  position: relative;
  min-height: 560px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cp-ink);
  background: var(--cp-bg-2) center/cover no-repeat;
  padding: 96px 20px;
  overflow: hidden;
}
.cp-band::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(65% 85% at 50% 50%, rgba(0,0,0,.4), rgba(0,0,0,.7)),
    linear-gradient(180deg, rgba(0,0,0,.5), rgba(0,0,0,.62));
}
.cp-band::after {
  content: '';
  position: absolute; left: 0; right: 0; bottom: -1px; height: 280px;
  pointer-events: none;
  background: radial-gradient(50% 120% at 50% 100%, rgba(209,26,53,.22), transparent 72%);
}
.cp-band__inner { position: relative; z-index: 2; }
.cp-band__title {
  text-transform: none;
  font-weight: 700;
  font-size: clamp(2.2rem, 5.4vw, 3.8rem);
  line-height: 1.06;
  margin: 0 0 12px;
  text-shadow: 0 4px 24px rgba(0,0,0,.55);
}
.cp-band__sub { font-size: 1.15rem; color: var(--cp-grey); margin-bottom: 30px; }

@media (min-width: 1025px) {
  .cp-hero,
  .cp-band { background-attachment: fixed; }
}

/* ===================== ABOUT TEXT ===================== */
.cp-about { text-align: center; }
.cp-about p {
  max-width: 820px;
  margin: 0 auto 22px;
  color: var(--cp-grey);
  font-size: 1.08rem;
  line-height: 1.9;
}
.cp-about .cp-btn { margin-top: 18px; }
.cp-about .cp-gallery { margin-bottom: 44px; }

/* ===================== CHEF ===================== */
.cp-chef { background: var(--cp-bg-2); }
.cp-chef__grid {
  max-width: 1080px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 52px;
  align-items: center;
}
.cp-chef__img {
  width: 100%;
  height: 540px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 26px 60px rgba(0,0,0,.5);
  border: 1px solid var(--cp-line);
}
.cp-chef__eyebrow {
  text-transform: uppercase;
  letter-spacing: .22em;
  color: var(--cp-orange);
  font-weight: 600;
  font-size: .82rem;
  margin-bottom: 12px;
}
.cp-chef__name {
  text-transform: none;
  font-weight: 700;
  font-size: 2.6rem;
  line-height: 1.1;
  margin: 0 0 6px;
}
.cp-chef__role {
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--cp-faint);
  font-size: .9rem;
  margin-bottom: 22px;
}
.cp-chef__bio { color: var(--cp-grey); line-height: 1.9; font-size: 1.06rem; }
@media (max-width: 820px) {
  .cp-chef__grid { grid-template-columns: 1fr; }
  .cp-chef__img { height: 420px; }
}

/* ===================== PAGE HERO (inner pages) ===================== */
.cp-pagehero {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  text-align: center;
  color: var(--cp-ink);
  background: var(--cp-bg) center/cover no-repeat;
  overflow: hidden;
}
.cp-pagehero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(72% 82% at 50% 40%, rgba(150,16,30,.45), rgba(58,10,17,.88)),
    linear-gradient(180deg, rgba(120,12,26,.6), rgba(45,8,14,.94));
}
.cp-pagehero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -1px; height: 220px;
  pointer-events: none;
  background: radial-gradient(50% 120% at 50% 100%, rgba(209,26,53,.20), transparent 72%);
}
.cp-pagehero__title {
  position: relative; z-index: 2;
  text-transform: none;
  font-weight: 700;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0;
  letter-spacing: -0.01em;
}

/* ===================== RICH TEXT BLOCK ===================== */
.cp-rich { max-width: 860px; margin: 0 auto; }
.cp-rich p { color: var(--cp-grey); line-height: 1.95; font-size: 1.07rem; margin: 0 0 20px; }
.cp-rich h3 {
  font-family: var(--cp-head);
  text-transform: none;
  color: var(--cp-ink);
  margin: 34px 0 12px;
  font-size: 1.6rem;
  font-weight: 700;
}
.cp-rich strong { color: var(--cp-ink); }
.cp-rich a { color: var(--cp-orange-2); }

/* ===================== GALLERY GRID ===================== */
.cp-gallery {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.cp-gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 14px;
  cursor: pointer;
  border: 1px solid var(--cp-line);
  transition: transform .35s ease, filter .35s ease;
}
.cp-gallery img:hover { transform: scale(1.02); filter: brightness(1.08); }
@media (max-width: 860px) { .cp-gallery { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .cp-gallery { grid-template-columns: 1fr; } }

/* ===================== FORM ===================== */
.cp-form {
  max-width: 640px;
  margin: 0 auto;
  display: grid;
  gap: 16px;
}
.cp-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cp-form label {
  display: block;
  font-weight: 600;
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--cp-grey);
  margin-bottom: 6px;
}
.cp-form input, .cp-form textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--cp-line);
  border-radius: 12px;
  font-family: var(--cp-body);
  font-size: 1rem;
  background: var(--cp-bg-3);
  color: var(--cp-ink);
}
.cp-form input::placeholder, .cp-form textarea::placeholder { color: var(--cp-faint); }
.cp-form input:focus, .cp-form textarea:focus {
  outline: none;
  border-color: var(--cp-orange);
  box-shadow: 0 0 0 3px rgba(209,26,53,.18);
}
.cp-form textarea { min-height: 130px; resize: vertical; }
@media (max-width: 560px) { .cp-form__row { grid-template-columns: 1fr; } }

/* ===================== INFO CARDS (catering) ===================== */
.cp-cards {
  max-width: 980px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.cp-card {
  background: var(--cp-bg-3);
  border: 1px solid var(--cp-line);
  border-radius: 18px;
  padding: 34px;
  text-align: center;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.cp-card h3 {
  font-family: var(--cp-head);
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 12px;
  color: var(--cp-orange-2);
}
.cp-card p { color: var(--cp-grey); line-height: 1.75; margin: 0; }
@media (max-width: 680px) { .cp-cards { grid-template-columns: 1fr; } }

/* featured image block (e.g. catering page) */
.cp-feature-img {
  max-width: 980px;
  margin: 44px auto 0;
}

/* text-left / image-right split (catering intro) */
.cp-intro-split {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 48px;
  align-items: center;
}
.cp-intro-split .cp-rich { max-width: none; margin: 0; }
.cp-intro-split .cp-feature-img {
  max-width: none;
  margin: 0;
  align-self: start;
  position: sticky;
  top: 100px;
}
@media (max-width: 860px) {
  .cp-intro-split { grid-template-columns: 1fr; gap: 32px; }
  .cp-intro-split .cp-feature-img { order: -1; position: static; }
}
.cp-feature-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 26px;
  border: 1px solid var(--cp-line);
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}

/* ===================== BLOG LIST ===================== */
.cp-blog {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  gap: 30px;
}
.cp-blog__card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 26px;
  background: var(--cp-bg-3);
  border: 1px solid var(--cp-line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
  transition: transform .25s ease, border-color .25s ease;
}
.cp-blog__card:hover { transform: translateY(-3px); border-color: rgba(209,26,53,.4); }
.cp-blog__card img { width: 100%; height: 100%; min-height: 200px; object-fit: cover; }
.cp-blog__body { padding: 28px 28px 28px 0; }
.cp-blog__date { color: var(--cp-orange); font-weight: 600; font-size: .78rem; letter-spacing: .12em; text-transform: uppercase; }
.cp-blog__title {
  font-family: var(--cp-head);
  text-transform: none;
  font-size: 1.5rem;
  font-weight: 700;
  margin: 10px 0 12px;
  color: var(--cp-ink);
  line-height: 1.25;
}
.cp-blog__excerpt { color: var(--cp-grey); line-height: 1.75; }
@media (max-width: 640px) { .cp-blog__card { grid-template-columns: 1fr; } .cp-blog__body { padding: 0 24px 26px; } }

/* ===================== DARK FOOTER ===================== */
.footer {
  background: #141210;
  color: var(--cp-grey);
  border-top: 1px solid var(--cp-line);
}
.footer h4 { color: var(--cp-ink); font-family: var(--cp-ui); text-transform: uppercase; letter-spacing: .14em; font-size: .82rem; }
.footer a { color: var(--cp-grey); }
.footer a:hover { color: var(--cp-orange-2); }
.footer__logo__img { height: 60px; width: auto; background: transparent; padding: 0; border-radius: 0; }
.footer .social-icons a { color: var(--cp-grey); }
.footer .social-icons a:hover { color: var(--cp-orange-2); }
.footer__bar, .footer__policy a, .footer__company a { color: var(--cp-faint); }
.footer__company span { color: var(--cp-orange-2); }
.footer__policy, .footer__bar, .footer__company {
  background: #141210;
  border-top: 1px solid var(--cp-line);
}
.footer__policy a:hover, .footer__company a:hover { color: var(--cp-orange-2); }

/* ===================== MOBILE NAV PANEL ===================== */
@media (max-width: 900px) {
  .nav__links {
    position: fixed;
    top: 0; right: -100%;
    height: 100vh;
    width: 78%;
    max-width: 330px;
    background: var(--cp-bg-2);
    flex-direction: column;
    align-items: stretch;
    padding: 90px 0 30px;
    gap: 0;
    box-shadow: -8px 0 40px rgba(0,0,0,.6);
    border-left: 1px solid var(--cp-line);
    transition: right .3s ease;
    z-index: 1000;
  }
  .nav__links.open { right: 0; }
}

/* ===================== FLOATING ORDER BUTTON ===================== */
.floating-btn-wrapper .order-float,
a.order-float {
  background: linear-gradient(180deg, var(--cp-orange-2), var(--cp-orange));
  color: #ffffff;
  border: none;
  box-shadow: 0 10px 26px rgba(209,26,53,.4);
}

/* =====================================================================
   DARK OVERRIDES for style.css / global.css components
   (inner pages: menu, about, our-food, contact, our menu, dish & place
   tag pages, policies). parent.css loads last, so retargeting the
   cascading CSS variables here flips most components to dark at once,
   then the per-component rules below clean up hard-coded light values.
   ===================================================================== */

:root {
  /* --- global.css tokens --- */
  --primary:            var(--cp-orange);
  --primaryLight:       var(--cp-orange);
  --secondary:          var(--cp-orange);
  --secondaryLight:     var(--cp-orange-2);
  --headerColor:        var(--cp-ink);
  --bodyTextColor:      var(--cp-grey);
  --bodyTextColorWhite: var(--cp-ink);

  /* --- style.css tokens --- */
  --primary-color:       var(--cp-orange);
  --primary-color-dark:  var(--cp-orange);
  /* used both as light TEXT (cs hero numbers/copy) and faint accents — keep light */
  --primary-color-light: var(--cp-ink);
  --text-dark:           var(--cp-ink);
  --text-light:          var(--cp-grey);
  --bg-shade:            var(--cp-bg-2);
}

/* ---- generic section text ---- */
.section__header { color: var(--cp-ink); }
.section__description { color: var(--cp-grey); }
.section__title { color: var(--cp-ink); }

/* ---- CodeStitch (cs-*) primitives ---- */
.cs-title, .cs-h3, .cs-h2 { color: var(--cp-ink); }
.cs-text, .cs-text2 { color: var(--cp-grey); }
.cs-topper { color: var(--cp-orange); }
.cs-button-solid {
  background: linear-gradient(180deg, var(--cp-orange-2), var(--cp-orange));
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 8px 22px rgba(209,26,53,.30);
}
.cs-button-solid:hover { filter: brightness(1.06); }

/* ---- legacy .btn (tag pages, our-food, dish pages) -> red pill ---- */
.btn {
  background-color: var(--cp-orange);
  border-color: var(--cp-orange);
  color: #fff;
  border-radius: 999px;
}
.btn:hover {
  background-color: var(--cp-orange-2);
  border-color: var(--cp-orange-2);
  color: #fff;
}

/* ---- FAQ accordion ---- */
.faq__container { background-color: var(--cp-bg-2); }
.faq__category {
  background-color: var(--cp-bg-3);
  border: 1px solid var(--cp-line);
  box-shadow: 0 14px 34px rgba(0,0,0,.4);
}
.faq__category h3 { color: var(--cp-orange-2); border-bottom-color: var(--cp-line); }
.faq__item { border-bottom-color: var(--cp-line); }
.faq__question h4 { color: var(--cp-ink); }
.faq__icon { color: var(--cp-orange-2); }
.faq__answer p, .faq__answer li { color: var(--cp-grey); }
.faq__answer a { color: var(--cp-orange-2); text-decoration: none; }
.faq__answer a:hover { color: var(--cp-gold); text-decoration: underline; }
.faq-question { color: var(--cp-ink); }
.faq-answer { color: var(--cp-grey); }
.faq-item { border-bottom-color: var(--cp-line); }

/* ---- Popular Dishes (special grid) ---- */
.special__container { background-color: var(--cp-bg); }
.special__card {
  background-color: var(--cp-bg-3);
  border: 1px solid var(--cp-line);
  box-shadow: 0 14px 34px rgba(0,0,0,.4);
}
.special__card:hover {
  border-color: var(--cp-gold) !important;
  box-shadow: 0 22px 52px rgba(0,0,0,.5), 0 0 0 1px var(--cp-gold-soft);
  transform: translateY(-3px);
}
.special__card .special-card-title,
.special__card .special-card-title a { color: var(--cp-ink); text-decoration: none; }
.special__card .special-card-title a:hover { color: var(--cp-orange-2); }
.special__card p { color: var(--cp-grey); }
.special__ratings { color: var(--cp-gold); }

/* circular "plate" holders for the popular-dish photos (double gold ring) */
.special__card img {
  width: min(230px, 72%);
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--cp-gold);
  box-shadow:
    0 0 0 6px var(--cp-bg-3),
    0 0 0 7px var(--cp-gold-soft),
    0 18px 44px rgba(0,0,0,.5);
  filter: none;
  transition: transform .25s ease, filter .25s ease;
}
.special__card img:hover { transform: scale(1.04); filter: brightness(1.06); }

/* ---- breadcrumb ---- */
.breadcrumb-container { background-color: var(--cp-bg-2); border-bottom-color: var(--cp-line); }
.breadcrumb li { color: var(--cp-grey); }
.breadcrumb li:not(:last-child)::after { color: var(--cp-faint); }
.breadcrumb a { color: var(--cp-ink); }
.breadcrumb a:hover { color: var(--cp-orange-2); }

/* ---- dish menu / category galleries ---- */
.dish-category-name {
  color: var(--cp-ink);
  background-color: rgba(26,23,20,.88);
  border-color: rgba(227,189,98,.30);
  backdrop-filter: blur(6px);
}
.dish-category-name a { color: var(--cp-ink); }
.dish-category-name:hover {
  background-color: var(--cp-orange);
  border-color: var(--cp-orange);
  color: #fff;
}
.dish-card-name { color: var(--cp-ink); }
.dish-menu-title h1, .dish-category-title h1 { color: var(--cp-ink); text-shadow: none; }

/* ---- dish detail (single-dish tag pages) ---- */
.dish-hero { background-color: var(--cp-bg-2); }
.dish-hero-content h1 { color: var(--cp-ink); }
.dish-rating span, .dish-detail i, .dish-rating .stars { color: var(--cp-orange-2); }
.rating-count, .dish-description { color: var(--cp-grey); }
.dish-detail { color: var(--cp-ink); }
.price, .dish-price .price { color: var(--cp-orange-2); }
.dish-hero-image img { box-shadow: 0 18px 44px rgba(0,0,0,.5); border: 1px solid var(--cp-line); }
.dish-description-content h3 { color: var(--cp-ink); }
.ingredients-list h4, .nutrition-info h4 { color: var(--cp-ink); }
.ingredients-list li, .nutrition-info li, .nutrition-info p small { color: var(--cp-grey); }

/* ---- review cards (dish pages) ---- */
.reviews-container { background-color: var(--cp-bg-2); }
.review-card {
  background-color: var(--cp-bg-3);
  border: 1px solid var(--cp-line);
  box-shadow: 0 14px 34px rgba(0,0,0,.4);
}
.review-stars, .review-rating span { color: var(--cp-orange-2); }
.review-text { color: var(--cp-grey); }
.reviewer-name, .reviewer-info h4 { color: var(--cp-ink); }
.reviewer-info p, .review-date { color: var(--cp-faint); }

/* ---- testimonials (about page: utility-class grid) ---- */
.testimonial { box-shadow: 0 18px 40px rgba(0,0,0,.45); border: 1px solid var(--cp-line); }
.bg-neutral-100 { background: var(--cp-bg-3) !important; }
.bg-secondary-500 { background: var(--cp-bg-2) !important; }
.bg-secondary-400 { background: linear-gradient(180deg, var(--cp-bg-3), var(--cp-bg-2)) !important; }
.bg-primary-400  { background: linear-gradient(160deg, var(--cp-orange), var(--cp-red-dark)) !important; }
.text-secondary-400 { color: var(--cp-grey) !important; }
.testimonial-heading, .testimonial__author h4 { color: var(--cp-ink); }
.testimonial__card {
  background: var(--cp-bg-3);
  border: 1px solid var(--cp-line);
}
.testimonial__content p { color: var(--cp-grey); }
.testimonial__rating span { color: var(--cp-orange-2); }
.testimonial__author p { color: var(--cp-faint); }

/* ---- misc cards / panels that hard-code white ---- */
.wrapper, .single-box-text {
  color: var(--cp-ink);
}

/* scoped CodeStitch cards that hard-code a white background -> dark */
#about-services .cs-item,
#our-story-container .cs-item,
#about-gallery-container .cs-item,
.cs-card-group .cs-item.bg-neutral-100,
section[id$="-services"] .cs-item {
  background-color: var(--cp-bg-3);
  border: 1px solid var(--cp-line);
  box-shadow: 0 16px 44px rgba(0,0,0,.4);
}
#about-services .cs-h3,
#our-story-container .cs-h3,
#about-services .cs-item-text,
#our-story-container .cs-item-text { color: var(--cp-ink); }
#about-services .cs-item-text,
#our-story-container .cs-item-text { color: var(--cp-grey); }

/* ---- generic links inside content ---- */
.cs-text a, .section__description a, .dish-description a { color: var(--cp-orange-2); }

/* ---- neutralise hard-coded inline colours across all pages ----
   a stylesheet !important beats a non-important inline style, so these
   fix every page at once without editing 40 HTML files. */
[style*="#20E3B2"], [style*="20E3B2"] { color: var(--cp-orange-2) !important; }
[style*="color: #000000"], [style*="color:#000000"],
[style*="color: #000"], [style*="color:#000"] { color: var(--cp-ink) !important; }

/* =====================================================================
   DARK OVERRIDES — remaining hard-coded light panels & cards
   (menu, menu-gallery, catering, contact, delivery/place tag pages)
   ===================================================================== */

/* best-dishes cards (menu / home) */
.cards .card, .best-dishes .card {
  background-color: var(--cp-bg-3);
  border: 1px solid var(--cp-line);
  box-shadow: 0 16px 44px rgba(0,0,0,.45);
}
.card_title { color: var(--cp-ink); }
.card_text p { color: var(--cp-grey); }
.card_content::-webkit-scrollbar-thumb { background: rgba(255,255,255,.18); }
.note {
  background-color: rgba(26,23,20,.9);
  color: var(--cp-ink);
  border: 1px solid var(--cp-line);
}

/* menu page: sticky category nav, mobile controls, dropdowns */
.fixed-nav { background-color: var(--cp-bg-2) !important; box-shadow: 0 6px 20px rgba(0,0,0,.5); }
.mobile-menu-controls { background-color: var(--cp-bg-2) !important; box-shadow: 0 2px 12px rgba(0,0,0,.5); }
.dropdown-content { background-color: var(--cp-bg-3) !important; box-shadow: 0 8px 24px rgba(0,0,0,.6); }
#menu-search { background: var(--cp-bg-3); border-color: var(--cp-line); color: var(--cp-ink); }

/* menu-gallery header band */
#gallery-header { background-color: var(--cp-bg-2) !important; }

/* delivery / place tag pages */
.delivery-area { background-color: var(--cp-bg-3); border: 1px solid var(--cp-line); box-shadow: 0 14px 34px rgba(0,0,0,.4); }
.delivery-area-card, .order-step, .package-card {
  background-color: var(--cp-bg-3);
  border: 1px solid var(--cp-line);
  box-shadow: 0 14px 34px rgba(0,0,0,.4);
}
.delivery-area-card h3, .package-card h3 { color: var(--cp-orange-2); }
.delivery-area-card li, .order-step p, .package-card p { color: var(--cp-grey); }
.delivery-area-card li a { color: var(--cp-orange-2); }
.order-step h3 { color: var(--cp-ink); }
.step-number { color: #fff; }

/* CTA blocks */
.cta__container { background-color: var(--cp-bg-2); }
.btn-secondary {
  background-color: transparent;
  color: var(--cp-orange-2);
  border: 1px solid var(--cp-orange-2);
}
.btn-secondary:hover { background-color: var(--cp-orange); border-color: var(--cp-orange); color: #fff; }

/* legacy outline-on-hover buttons -> stay red on dark instead of turning white */
.explore__btn a:hover,
.menu-btn-wrapper a:hover,
.header__btn .btn:hover {
  background-color: var(--cp-orange-2) !important;
  color: #fff !important;
  border-color: var(--cp-orange-2) !important;
}

/* promo popup modal panel */
.popup-content { background-color: rgba(26,23,20,.85); border: 1px solid var(--cp-line); }

/* footer logo: keep on a soft light chip so the wordmark stays legible */
.footer__col .footer__logo__img { background: #fff; }

/* =====================================================================
   PREMIUM GOLD ACCENT + WAVY DIVIDERS  (reference adaptation, option 1)
   Red stays the primary CTA colour; gold is the secondary "premium"
   accent used on toppers, decorative underlines, card hovers & dividers.
   ===================================================================== */
:root {
  --cp-gold:   #e3bd62;
  --cp-gold-2: #f4d98c;
  --cp-gold-soft: rgba(227,189,98,.55);
}

/* small uppercase toppers / eyebrows / dates -> gold */
.cs-topper, .cp-topper, .cp-eyebrow, .cp-chef__eyebrow, .cp-blog__date,
#about-services .cs-topper, #about-section-hero .cs-topper {
  color: var(--cp-gold) !important;
}
.cp-award__cap { color: var(--cp-gold-2); }

/* ornamental medallion divider under centred section titles (line–diamond–line) */
.cp-section-title::after, .cp-band__title::after, .best-dishes-header h2::after,
.section__header::after, .testimonial-heading::after {
  content: "";
  display: block;
  width: 134px; height: 18px;
  margin: 18px auto 0;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='134' height='18' viewBox='0 0 134 18'><line x1='6' y1='9' x2='52' y2='9' stroke='%23d9b65b' stroke-width='1.5'/><line x1='82' y1='9' x2='128' y2='9' stroke='%23d9b65b' stroke-width='1.5'/><rect x='61' y='3' width='12' height='12' transform='rotate(45 67 9)' fill='none' stroke='%23d9b65b' stroke-width='1.5'/><circle cx='67' cy='9' r='1.6' fill='%23d9b65b'/></svg>") no-repeat center;
}

/* decorative hairlines / underlines -> gold */
.card_title::after { background-color: var(--cp-gold) !important; }
hr { border-top-color: var(--cp-gold) !important; }
.faq__category h3 { border-bottom-color: var(--cp-gold-soft) !important; }

/* premium rounded cards + gold hover ring */
.cp-card, .review-card, .testimonial__card, .delivery-area-card,
.package-card, .order-step, .cards .card, .faq__category,
.delivery-area, #about-services .cs-item, .cp-blog__card {
  border-radius: 20px;
  transition: border-color .25s ease, box-shadow .25s ease, transform .25s ease;
}
.cp-card:hover, .review-card:hover, .testimonial__card:hover,
.delivery-area-card:hover, .package-card:hover, .order-step:hover,
.cards .card:hover, .faq__category:hover, #about-services .cs-item:hover,
.cp-blog__card:hover {
  border-color: var(--cp-gold) !important;
  box-shadow: 0 22px 52px rgba(0,0,0,.5), 0 0 0 1px var(--cp-gold-soft);
  transform: translateY(-3px);
}

/* gold accent on the nav order pill border + award/glow warmth */
.nav__links a.nav-order-online { box-shadow: 0 6px 18px rgba(209,26,53,.35), 0 0 0 1px var(--cp-gold-soft); }

/* wavy gold divider above the footer */
.footer { position: relative; }
.footer::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: -13px;
  height: 14px;
  pointer-events: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='14' viewBox='0 0 120 14'><path d='M0 8 Q 30 0 60 8 T 120 8' fill='none' stroke='%23d9b65b' stroke-width='2'/></svg>") repeat-x center;
  opacity: .55;
}

/* wavy gold divider above the full-width band + chef panel */
.cp-band, .cp-chef, .cp-section--light { position: relative; }
.cp-band::after { z-index: 1; } /* keep existing glow above the wave */
.cp-chef::before, .cp-section--light::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 0;
  height: 14px;
  pointer-events: none;
  background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='120' height='14' viewBox='0 0 120 14'><path d='M0 8 Q 30 0 60 8 T 120 8' fill='none' stroke='%23d9b65b' stroke-width='2'/></svg>") repeat-x center;
  opacity: .4;
}

/* =====================================================================
   INDO-CHINESE ORIENTAL MOTIFS
   Faint traditional gold lattice (Chinese window-screen motif) on flat
   dark sections + small diamond accents on toppers, for a subtle
   Indo-Chinese feel without changing any content.
   ===================================================================== */

/* faint gold diamond-lattice texture layered over the dark section colour */
.cp-section, .cp-chef, .footer,
.faq__container, .reviews-container, .cta__container,
.delivery-areas, .how-to-order-container, .related-dishes-container,
.dish-description-container {
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='52' height='52' viewBox='0 0 52 52'><path d='M26 1 51 26 26 51 1 26Z' fill='none' stroke='%23d9b65b' stroke-opacity='0.05' stroke-width='1'/></svg>");
  background-size: 52px 52px;
  background-position: center;
}

/* small gold diamond accent before section toppers / eyebrows */
.cs-topper::before, .cp-topper::before,
.cp-eyebrow::before, .cp-chef__eyebrow::before {
  content: "\25C6";          /* ◆ */
  margin-right: .55em;
  color: var(--cp-gold);
  font-size: .72em;
  vertical-align: 1px;
  opacity: .85;
}

/* =====================================================================
   READABILITY PASS
   Stronger contrast for copy over image banners + tidier body text.
   ===================================================================== */

/* legibility shadow for text sitting over hero / banner photos */
.cp-hero__title, .cp-hero__sub,
.cp-band__title, .cp-band__sub,
.cp-pagehero__title,
#about-section-hero .cs-title, #about-section-hero .cs-topper,
#about-section-hero .cs-item-text, #about-section-hero .cs-number,
#gallery-header .cs-title, #gallery-header .cs-topper {
  text-shadow: 0 2px 14px rgba(20, 4, 8, .85), 0 1px 3px rgba(20, 4, 8, .9);
}

/* body copy: brighter, comfortable line length & spacing */
.cp-about p, .cp-chef__bio, .cp-rich p,
.section__description, .cs-text, .cp-section-sub,
.card_text p, .review-text, .dish-description,
.faq__answer p, .delivery-area-card li, .package-card p {
  color: var(--cp-grey);
  line-height: 1.85;
}

/* keep the lattice from competing with text — a touch fainter */
.cp-section, .cp-chef, .footer,
.faq__container, .reviews-container, .cta__container,
.delivery-areas, .how-to-order-container, .related-dishes-container,
.dish-description-container {
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54'><path d='M27 1 53 27 27 53 1 27Z' fill='none' stroke='%23e3bd62' stroke-opacity='0.035' stroke-width='1'/></svg>");
  background-size: 54px 54px;
}

/* slightly stronger banner overlays so cream text always clears the photo */
.cp-hero::before {
  background:
    radial-gradient(75% 65% at 50% 38%, rgba(0,0,0,.28), rgba(0,0,0,.55)),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.68));
}
.cp-pagehero::before {
  background:
    radial-gradient(72% 82% at 50% 40%, rgba(0,0,0,.4), rgba(0,0,0,.7)),
    linear-gradient(180deg, rgba(0,0,0,.48), rgba(0,0,0,.8));
}

/* =====================================================================
   ROUND, CHINESE-STYLE IMAGE FRAMES
   Decorative galleries become circular "plate" frames with a gold
   moon-gate ring; other photo holders get rounder corners + gold frames.
   ===================================================================== */

/* decorative gallery photos -> circular plates with a double gold ring */
.cp-gallery img {
  aspect-ratio: 1 / 1;
  height: auto;
  border-radius: 50%;
  border: 2px solid var(--cp-gold);
  box-shadow:
    0 0 0 5px var(--cp-bg),
    0 0 0 6px var(--cp-gold-soft),
    0 18px 44px rgba(0,0,0,.5);
}
.cp-gallery img:hover { transform: scale(1.04); filter: brightness(1.06); }

/* rounder corners on photo holders across the site */
.cp-chef__img,
.dish-hero-image img,
.cp-blog__card img,
.single-box a,
.dish-menu-wrapper .single-box a,
.dish-wrapper .single-box a,
.card_image, .card_image img {
  border-radius: 26px;
}

/* gold frame on the feature portraits */
.cp-chef__img,
.dish-hero-image img {
  border: 2px solid var(--cp-gold-soft);
  box-shadow: 0 0 0 6px rgba(26,23,20,.6), 0 22px 50px rgba(0,0,0,.5);
}

/* gold ring on the food tiles */
.single-box a,
.dish-menu-wrapper .single-box a,
.dish-wrapper .single-box a {
  box-shadow: 0 0 0 1.5px var(--cp-gold-soft), 0 14px 34px rgba(0,0,0,.45);
}

/* a touch rounder cards overall */
.cp-card, .review-card, .testimonial__card, .delivery-area-card,
.package-card, .order-step, .cards .card, .faq__category,
.delivery-area, #about-services .cs-item, .cp-blog__card {
  border-radius: 26px;
}

/* =====================================================================
   MOBILE NAV — full-screen festive overlay menu
   Replaces the side drawer with a centred full-screen overlay:
   large serif links, gold accents, lattice backdrop, red CTA pill.
   ===================================================================== */
@media (max-width: 900px) {
  /* keep the header (logo + hamburger/X) above the overlay */
  .nav__container { z-index: 1001; }
  .nav__header { position: relative; z-index: 1003; }
  .nav__menu__btn { position: relative; z-index: 1003; color: var(--cp-gold); font-size: 1.9rem; }

  /* the overlay */
  .nav__links {
    position: fixed;
    inset: 0;
    top: 0; right: 0; left: 0; bottom: 0;
    width: 100%;
    max-width: none;
    height: 100vh;
    height: 100dvh;
    margin: 0;
    padding: 104px 28px 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0;
    border: none;
    box-shadow: none;
    background:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54'><path d='M27 1 53 27 27 53 1 27Z' fill='none' stroke='%23e3bd62' stroke-opacity='0.05' stroke-width='1'/></svg>") repeat,
      radial-gradient(130% 70% at 50% 0%, rgba(120,18,30,.55), transparent 62%),
      linear-gradient(180deg, #2c0a0f, #160508);
    background-size: 54px 54px, auto, auto;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .35s ease, transform .35s ease, visibility .35s;
    z-index: 1000;
  }
  .nav__links.open {
    right: 0;
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* links */
  .nav__links li {
    width: 100%;
    max-width: 340px;
    text-align: center;
  }
  .nav__links a {
    display: block;
    width: 100%;
    padding: 17px 0;
    text-align: center;
    font-family: var(--cp-head);
    font-size: 1.55rem;
    font-weight: 600;
    letter-spacing: .01em;
    color: var(--cp-ink);
    border-bottom: 1px solid var(--cp-line);
    transition: color .2s ease;
  }
  .nav__links a:hover,
  .nav__links a.active { color: var(--cp-gold); }

  /* push the Order Online CTA to the bottom and make it a red pill */
  .nav__links li:has(> a.nav-order-online) { order: 9; max-width: none; }
  .nav__links a.nav-order-online {
    display: inline-block;
    width: auto;
    margin-top: 26px;
    padding: 15px 46px;
    border: none;
    border-radius: 999px;
    font-family: var(--cp-ui);
    font-size: 1.05rem;
    color: #fff;
    background: linear-gradient(180deg, var(--cp-orange-2), var(--cp-orange));
    box-shadow: 0 10px 26px rgba(200,16,46,.45), 0 0 0 1px var(--cp-gold-soft);
  }
}

/* =====================================================================
   LIGHT / WHITE THEME  (loads last → wins over the dark rules above)
   Flips the whole site to a clean, appealing light palette: white page,
   warm-cream bands, white cards with soft shadows. Brand red stays the
   primary CTA colour; gold becomes a deeper, readable accent on white.
   Hero / band / page-hero photos keep a dark scrim + white text so the
   headline copy stays crisp and legible over imagery.
   ===================================================================== */
:root {
  /* light surfaces */
  --cp-bg:    #ffffff;   /* page background (white) */
  --cp-bg-2:  #f7f2ea;   /* elevated bands / panels (warm cream) */
  --cp-bg-3:  #ffffff;   /* cards (white + border + soft shadow) */
  --cp-line:  rgba(45, 33, 20, .12);   /* soft warm hairlines */

  /* dark text on light */
  --cp-ink:   #211711;   /* primary text (near-black warm) */
  --cp-grey:  #4d453d;   /* secondary / body text */
  --cp-faint: #8a8075;   /* captions / least-important text */

  --cp-light: #f7f2ea;

  /* deeper gold that reads on white (used for small toppers/eyebrows) */
  --cp-gold-ink: #a2750f;
  --cp-gold-soft: rgba(162, 117, 15, .45);

  /* soft elevation shadows (replace heavy black) */
  --cp-shadow:       0 14px 34px rgba(45, 33, 20, .10);
  --cp-shadow-hover: 0 22px 50px rgba(45, 33, 20, .15);
}

/* ---- base canvas ---- */
html, body { background: var(--cp-bg); color: var(--cp-ink); }

/* ---- top utility bar ---- */
.cp-topbar { background: var(--cp-bg-2); border-bottom: 1px solid var(--cp-line); color: var(--cp-grey); }
.cp-topbar__social a { background: rgba(45, 33, 20, .06); color: var(--cp-grey); }

/* ---- floating pill nav ---- */
.nav__container nav {
  background: rgba(255, 255, 255, .9);
  border: 1px solid var(--cp-line);
  box-shadow: 0 8px 26px rgba(45, 33, 20, .12);
}
.nav__menu__btn { color: var(--cp-orange) !important; }

/* ---- secondary / outline button on light ---- */
.cp-btn--light { background: rgba(45, 33, 20, .04); border-color: var(--cp-line); color: var(--cp-ink); }
.cp-btn--light:hover { background: rgba(45, 33, 20, .08); color: var(--cp-ink); }

/* ---- keep hero / band / page-hero copy white over the photo scrim ---- */
.cp-hero__title, .cp-hero__sub,
.cp-band__title, .cp-band__sub,
.cp-pagehero__title,
#about-section-hero .cs-title,
#about-section-hero .cs-text,
#about-section-hero .cs-item-text,
#about-section-hero .cs-number,
#about-section-hero .cs-h3 { color: #ffffff !important; }

/* ---- soften every heavy black shadow on cards / panels / photos ---- */
.cp-card, .review-card, .testimonial, .testimonial__card, .delivery-area,
.delivery-area-card, .package-card, .order-step, .cards .card, .best-dishes .card,
.faq__category, .cp-blog__card, .special__card,
#about-services .cs-item, #our-story-container .cs-item, #about-gallery-container .cs-item {
  box-shadow: var(--cp-shadow);
}
.cp-card:hover, .review-card:hover, .testimonial__card:hover,
.delivery-area-card:hover, .package-card:hover, .order-step:hover,
.cards .card:hover, .faq__category:hover, #about-services .cs-item:hover,
.cp-blog__card:hover, .special__card:hover {
  border-color: var(--cp-gold) !important;
  box-shadow: var(--cp-shadow-hover), 0 0 0 1px var(--cp-gold-soft) !important;
  transform: translateY(-3px);
}
.cp-chef__img, .dish-hero-image img {
  border: 2px solid var(--cp-gold-soft);
  box-shadow: 0 0 0 6px rgba(255, 255, 255, .7), 0 18px 44px rgba(45, 33, 20, .15);
}
.cp-gallery img {
  box-shadow: 0 0 0 5px var(--cp-bg), 0 0 0 6px var(--cp-gold-soft), 0 16px 38px rgba(45, 33, 20, .14);
}
.special__card img {
  box-shadow: 0 0 0 6px var(--cp-bg-3), 0 0 0 7px var(--cp-gold-soft), 0 16px 38px rgba(45, 33, 20, .14);
}
.cp-feature-img img { box-shadow: var(--cp-shadow); }

/* ---- flip white-on-dark tints to dark-on-light ---- */
.card_content::-webkit-scrollbar-thumb { background: rgba(45, 33, 20, .18); }

/* ---- panels that hard-coded a dark surface ---- */
.dish-category-name {
  background-color: rgba(255, 255, 255, .92);
  border-color: var(--cp-gold-soft);
  color: var(--cp-ink);
}
.note { background-color: rgba(255, 255, 255, .95); color: var(--cp-ink); border: 1px solid var(--cp-line); }
.popup-content { background-color: rgba(255, 255, 255, .96); border: 1px solid var(--cp-line); }

/* menu page sticky category nav (was dark with white buttons) */
.menu-buttons.fixed-nav { background-color: var(--cp-bg-2) !important; box-shadow: 0 6px 20px rgba(45, 33, 20, .12); }
.menu-buttons.fixed-nav .menu-button { color: var(--cp-ink); }
.fixed-nav, .mobile-menu-controls { box-shadow: 0 4px 16px rgba(45, 33, 20, .12) !important; }
.dropdown-content { box-shadow: 0 8px 24px rgba(45, 33, 20, .16) !important; }

/* testimonial utility backgrounds */
.bg-neutral-100 { background: #ffffff !important; }
.bg-secondary-500 { background: var(--cp-bg-2) !important; }
.bg-secondary-400 { background: linear-gradient(180deg, #ffffff, var(--cp-bg-2)) !important; }

/* ---- small uppercase toppers / eyebrows / dates -> deep readable gold ---- */
.cs-topper, .cp-topper, .cp-eyebrow, .cp-chef__eyebrow, .cp-blog__date,
#about-services .cs-topper { color: var(--cp-gold-ink) !important; }
/* but toppers sitting over the dark hero scrim stay light gold */
#about-section-hero .cs-topper, #gallery-header .cs-topper,
.cp-hero .cp-topper, .cp-band .cp-topper { color: var(--cp-gold) !important; }

/* ---- footer -> light ---- */
.footer { background: var(--cp-bg-2); color: var(--cp-grey); border-top: 1px solid var(--cp-line); }
.footer h4 { color: var(--cp-ink); }
.footer a, .footer .social-icons a { color: var(--cp-grey); }
/* plain-text list items (opening hours, service line) match the other footer text */
.footer__links li { color: var(--cp-grey); }
.footer__policy, .footer__bar, .footer__company {
  background: var(--cp-bg-2);
  border-top: 1px solid var(--cp-line);
  color: var(--cp-faint);
}
.footer__col .footer__logo__img { background: transparent; }

/* ---- mobile full-screen nav overlay -> light festive ---- */
@media (max-width: 900px) {
  .nav__links {
    background:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='54' height='54' viewBox='0 0 54 54'><path d='M27 1 53 27 27 53 1 27Z' fill='none' stroke='%23a2750f' stroke-opacity='0.07' stroke-width='1'/></svg>") repeat,
      radial-gradient(130% 70% at 50% 0%, rgba(200, 16, 46, .08), transparent 60%),
      linear-gradient(180deg, #ffffff, var(--cp-bg-2));
    background-size: 54px 54px, auto, auto;
  }
  .nav__links a { color: var(--cp-ink); border-bottom: 1px solid var(--cp-line); }
  .nav__links a:hover, .nav__links a.active { color: var(--cp-gold-ink); }
  .nav__menu__btn { color: var(--cp-orange); }
}

/* =====================================================================
   NAV REDESIGN — professional header (loads last → wins)
   Desktop: clean full-width sticky white bar; logo left, elegant
   uppercase links with an animated underline, refined red CTA pill right.
   Mobile: full-screen white overlay, bordered icon toggle, spaced links,
   full-width CTA pinned to the bottom. Switch point: 992px.
   ===================================================================== */

/* ---- top utility bar ---- */
.cp-topbar {
  background: var(--cp-bg-2);
  border-bottom: 1px solid var(--cp-line);
  color: var(--cp-grey);
  font-family: 'Marcellus', Georgia, serif;
  font-size: .82rem;
}
.cp-topbar__inner { max-width: 1280px; padding: 8px 28px; }
.cp-topbar__right { display: flex; align-items: center; gap: 22px; }
.cp-topbar__tag { color: var(--cp-faint); letter-spacing: .04em; }
.cp-topbar__phone {
  display: inline-flex; align-items: center; gap: 8px;
  color: var(--cp-ink); font-weight: 400; letter-spacing: .04em;
  transition: color .2s ease;
}
.cp-topbar__phone i { color: var(--cp-orange); font-size: .82em; }
.cp-topbar__phone:hover { color: var(--cp-orange); }

/* ---- header shell: solid sticky bar (replaces the floating pill) ---- */
.nav__container {
  position: sticky; top: 0; z-index: 999;
  padding: 0;
  background: rgba(255, 255, 255, .96);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--cp-line);
  box-shadow: 0 2px 18px rgba(45, 33, 20, .06);
}
.nav__container nav {
  max-width: 1280px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 12px 28px;
  background: transparent; border: 0; border-radius: 0;
  box-shadow: none; -webkit-backdrop-filter: none; backdrop-filter: none;
}

/* ---- logo ---- */
.logo__image, .nav__logo img {
  height: 56px; width: auto;
  margin: 0; padding: 0;
  background: transparent; border-radius: 0;
}

/* ---- desktop link row ---- */
.nav__links {
  display: flex; align-items: center; gap: 30px;
  margin: 0; padding: 0; list-style: none;
}
.nav__links li { display: flex; }
.nav__links a {
  font-family: 'Marcellus', Georgia, serif !important;
  position: relative;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: .8rem;
  font-weight: 400;
  color: var(--cp-ink);
  padding: 6px 0;
  transition: color .2s ease;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 100%; bottom: 0;
  height: 2px; background: var(--cp-orange);
  transition: right .25s ease;
}
.nav__links a:hover { color: var(--cp-orange); }
.nav__links a:hover::after,
.nav__links a.active::after { right: 0; }
.nav__links a.active { color: var(--cp-orange); }

/* ---- sensible link order: Menu first, CTA last ---- */
.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; }

/* ---- Order Online -> refined red pill (no underline) ---- */
.nav__links a.nav-order-online {
  font-family: 'Marcellus', Georgia, serif !important;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #fff;
  background: linear-gradient(180deg, var(--cp-orange-2), var(--cp-orange));
  padding: 11px 24px;
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(200, 16, 46, .28);
}
.nav__links a.nav-order-online::after { display: none; }
.nav__links a.nav-order-online:hover { filter: brightness(1.06); color: #fff; transform: translateY(-1px); }

/* hamburger hidden on desktop */
.nav__menu__btn { display: none; }

/* ===================== MOBILE / TABLET (<= 992px) ===================== */
@media (max-width: 992px) {
  .cp-topbar { display: none; }

  /* keep the header (logo + toggle) above the overlay */
  .nav__container { z-index: 1001; padding: 0; }
  .nav__container nav { padding: 12px 18px; }
  .nav__header {
    position: relative; z-index: 1003;
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    background: transparent; padding: 0;
  }
  .logo__image, .nav__logo img { height: 46px; }

  /* refined icon-button toggle */
  .nav__menu__btn {
    display: inline-flex !important; align-items: center; justify-content: center;
    width: 46px; height: 46px; margin: 0;
    border: 1px solid var(--cp-line); border-radius: 12px;
    background: #fff;
    color: var(--cp-ink) !important; font-size: 1.5rem;
    transition: border-color .2s ease, color .2s ease;
  }
  .nav__menu__btn:hover { border-color: var(--cp-orange); color: var(--cp-orange) !important; }

  /* full-screen clean white overlay */
  .nav__links {
    position: fixed; inset: 0; top: 0;
    width: 100%; max-width: none; height: 100vh; height: 100dvh;
    margin: 0; padding: 104px 28px 40px;
    display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0;
    background: #fff;
    background-image: radial-gradient(120% 55% at 50% 0%, rgba(200, 16, 46, .05), transparent 60%);
    border: 0; box-shadow: none;
    opacity: 0; visibility: hidden; transform: translateY(-8px);
    transition: opacity .3s ease, transform .3s ease, visibility .3s;
    z-index: 1000;
  }
  .nav__links.open { right: 0; opacity: 1; visibility: visible; transform: none; }

  .nav__links li { width: 100%; display: block; max-width: none; }
  .nav__links a {
    display: block; width: 100%;
    padding: 18px 4px; text-align: left;
    font-size: 1.15rem; letter-spacing: .14em;
    color: var(--cp-ink);
    border-bottom: 1px solid var(--cp-line);
  }
  .nav__links a::after { display: none; }
  .nav__links a:hover,
  .nav__links a.active { color: var(--cp-orange); }

  /* CTA -> full-width pill pinned to the bottom */
  .nav__links li:has(.nav-order-online) { order: 10; margin-top: auto; }
  .nav__links a.nav-order-online {
    width: 100%; text-align: center;
    margin-top: 24px; padding: 16px;
    border-bottom: 0; font-size: 1rem;
    box-shadow: 0 8px 20px rgba(200, 16, 46, .3);
  }
}

/* =====================================================================
   PLAYFUL MICRO-INTERACTIONS — make the site fun to use
   Tasteful motion & hover delight that fits the brand. Everything is
   disabled under prefers-reduced-motion (see bottom of this block).
   ===================================================================== */

/* smooth in-page scrolling */
html { scroll-behavior: smooth; }

/* --- scroll progress bar (pure CSS, scroll-driven) --- */
.cp-scrollbar {
  position: fixed; top: 0; left: 0;
  height: 4px; width: 100%;
  transform: scaleX(0); transform-origin: 0 50%;
  background: linear-gradient(90deg, var(--cp-gold), var(--cp-orange) 55%, var(--cp-orange-2));
  z-index: 2000; pointer-events: none;
}
@supports (animation-timeline: scroll()) {
  .cp-scrollbar { animation: cp-grow linear both; animation-timeline: scroll(root); }
}
@keyframes cp-grow { to { transform: scaleX(1); } }

/* --- juicy buttons: shine sweep + springy press --- */
.cp-btn, .cs-button-solid, .btn:not(.order-float),
.nav__links a.nav-order-online { position: relative; overflow: hidden; }
.cp-btn::before, .cs-button-solid::before, .btn:not(.order-float)::before,
.nav__links a.nav-order-online::before {
  content: ''; position: absolute; top: 0; left: -120%;
  width: 75%; height: 100%;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, .45), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
  pointer-events: none;
}
.cp-btn:hover::before, .cs-button-solid:hover::before,
.btn:not(.order-float):hover::before,
.nav__links a.nav-order-online:hover::before { left: 130%; }
.cp-btn:active, .cs-button-solid:active, .btn:active,
.nav__links a.nav-order-online:active { transform: scale(.96); }

/* --- food & photo tiles: zoom + playful tilt on hover --- */
.special__card img, .cards .card img, .best-dishes .card img,
.card_image img, .cp-blog__card img, .cp-feature-img img {
  transition: transform .45s cubic-bezier(.2,.7,.2,1), filter .45s ease;
}
.special__card:hover img { transform: scale(1.06) rotate(-2deg); }
.cards .card:hover img, .best-dishes .card:hover img,
.cp-blog__card:hover img { transform: scale(1.05); }
.cp-gallery img { transition: transform .4s cubic-bezier(.2,.8,.2,1), filter .4s ease, box-shadow .4s ease; }
.cp-gallery img:hover { transform: scale(1.06) rotate(2deg); }

/* --- chilli logo: little wiggle on hover --- */
.logo__wrapper:hover .logo__image { animation: cp-wiggle .55s ease; }
@keyframes cp-wiggle {
  0%, 100% { transform: rotate(0); }
  25% { transform: rotate(-5deg); }
  55% { transform: rotate(4deg); }
  80% { transform: rotate(-2deg); }
}

/* --- social icons: bouncy pop --- */
.cp-topbar__social a, .footer .social-icons a {
  transition: transform .25s cubic-bezier(.2,1.7,.4,1), color .2s ease, background .2s ease;
}
.cp-topbar__social a:hover, .footer .social-icons a:hover { transform: translateY(-3px) scale(1.14); }

/* --- award medallion: gentle continuous float --- */
.cp-award img { animation: cp-float 5s ease-in-out infinite; }
@keyframes cp-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }

/* --- floating order button: soft bob + pulsing ring --- */
.floating-btn-wrapper { position: relative; }
a.order-float { animation: cp-bob 3s ease-in-out infinite; }
@keyframes cp-bob { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
.floating-btn-wrapper::after {
  content: ''; position: absolute; inset: 0; z-index: -1;
  border-radius: 999px;
  animation: cp-pulse 2.2s ease-out infinite;
}
@keyframes cp-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(200, 16, 46, .5); }
  100% { box-shadow: 0 0 0 20px rgba(200, 16, 46, 0); }
}

/* --- desktop nav links: tiny lift on hover --- */
@media (min-width: 993px) {
  .nav__links a:not(.nav-order-online):hover { transform: translateY(-1px); }
}

/* --- section headings: playful drop-in for the medallion underline --- */
.cp-section-title:hover::after, .best-dishes-header h2:hover::after,
.section__header:hover::after { animation: cp-pop .4s ease; }
@keyframes cp-pop { 0% { transform: scale(.8); } 60% { transform: scale(1.12); } 100% { transform: scale(1); } }

/* --- accessibility: honour reduced-motion --- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .cp-scrollbar { display: none; }
  .cp-award img, a.order-float, .floating-btn-wrapper::after,
  .logo__wrapper:hover .logo__image { animation: none !important; }
  .special__card:hover img, .cp-gallery img:hover,
  .cards .card:hover img, .cp-blog__card:hover img { transform: none !important; }
}
