/* ============================================================
   CHACHA SHAANDAAR — Website Stylesheet
   Theme: Warm Vibrant Food-Magazine
   Shared across index.html + catering.html
   ============================================================ */

/* ---- Design tokens ---------------------------------------- */
:root {
  --cream:        #FFF7EC;
  --cream-deep:   #FBE8CE;
  --paper:        #FFFDF8;
  --ink:          #2C1A0F;
  --ink-soft:     #6B5443;
  --ink-faint:    #9A8470;

  --saffron:      #ED9A2E;
  --turmeric:     #F4B53C;
  --paprika:      #C5371C;
  --paprika-dark: #9C2410;
  --chili:        #E0492A;
  --gold:         #D7A33F;
  --curry:        #3F7C44;
  --mint:         #6E9B5C;
  --whatsapp:     #25A95C;
  --whatsapp-dk:  #1d8a4b;

  --shadow-sm: 0 2px 10px rgba(70, 30, 10, .08);
  --shadow-md: 0 12px 34px rgba(80, 35, 12, .14);
  --shadow-lg: 0 26px 60px rgba(80, 35, 12, .22);

  --radius:   18px;
  --radius-lg: 30px;
  --maxw: 1180px;

  --serif: "Fraunces", "Georgia", "Times New Roman", serif;
  --sans:  "DM Sans", -apple-system, "Segoe UI", Roboto, sans-serif;
}

/* ---- Reset ------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -.01em;
  color: var(--ink);
}

::selection { background: var(--turmeric); color: var(--ink); }

/* ---- Layout helpers --------------------------------------- */
.wrap { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 24px; }

.section { padding: 92px 0; }
.section--tight { padding: 64px 0; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans);
  font-size: .78rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--paprika);
}
.eyebrow::before {
  content: ""; width: 26px; height: 2px;
  background: var(--saffron); border-radius: 2px;
}

.section-head { max-width: 640px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.center .eyebrow::before { display: none; }
.section-head h2 {
  font-size: clamp(2.1rem, 4.4vw, 3.3rem);
  margin: 14px 0 12px;
}
.section-head p { color: var(--ink-soft); font-size: 1.06rem; }

.lead { font-size: 1.12rem; color: var(--ink-soft); }

/* ---- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--sans);
  font-weight: 700; font-size: .98rem;
  padding: 15px 28px;
  border-radius: 100px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }

.btn--primary {
  background: var(--paprika); color: #fff;
  box-shadow: 0 10px 24px rgba(197, 55, 28, .34);
}
.btn--primary:hover { background: var(--paprika-dark); transform: translateY(-2px); }

.btn--wa {
  background: var(--whatsapp); color: #fff;
  box-shadow: 0 10px 24px rgba(37, 169, 92, .34);
}
.btn--wa:hover { background: var(--whatsapp-dk); transform: translateY(-2px); }

.btn--ghost {
  background: transparent; color: var(--ink);
  border-color: rgba(44, 26, 15, .25);
}
.btn--ghost:hover { border-color: var(--ink); background: var(--ink); color: var(--cream); }

.btn--gold {
  background: var(--ink); color: var(--cream);
}
.btn--gold:hover { background: var(--paprika); transform: translateY(-2px); }

.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--block { width: 100%; }

/* ---- Header / Nav ----------------------------------------- */
.nav {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 247, 236, .9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(44, 26, 15, .08);
  transition: box-shadow .25s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px;
}
.brand { display: flex; align-items: center; gap: 11px; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 12px;
  background: linear-gradient(145deg, var(--paprika), var(--saffron));
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; color: #fff; font-size: 1.4rem;
  box-shadow: var(--shadow-sm);
}
.brand__name {
  font-family: var(--serif); font-weight: 700; font-size: 1.22rem;
  line-height: 1; letter-spacing: -.01em;
}
.brand__name span { display: block; font-family: var(--sans); font-weight: 600;
  font-size: .62rem; letter-spacing: .22em; text-transform: uppercase;
  color: var(--paprika); margin-top: 4px; }

.nav__links { display: flex; align-items: center; gap: 6px; }
.nav__links a {
  font-weight: 600; font-size: .95rem; padding: 9px 14px;
  border-radius: 9px; color: var(--ink-soft);
  transition: color .15s ease, background .15s ease;
}
.nav__links a:hover { color: var(--ink); background: rgba(237, 154, 46, .16); }
.nav__links a.active { color: var(--paprika); }

.nav__cta { display: flex; align-items: center; gap: 10px; }
.nav__toggle {
  display: none; width: 44px; height: 44px;
  border: none; background: var(--ink); border-radius: 11px;
  cursor: pointer; flex-direction: column; gap: 5px;
  align-items: center; justify-content: center;
}
.nav__toggle span { width: 20px; height: 2px; background: var(--cream); border-radius: 2px; }

/* ---- Hero (home) ------------------------------------------ */
.hero {
  position: relative;
  background:
    radial-gradient(circle at 82% 12%, rgba(244, 181, 60, .42), transparent 46%),
    radial-gradient(circle at 8% 92%, rgba(197, 55, 28, .22), transparent 44%),
    var(--cream);
  overflow: hidden;
}
.hero__grid {
  display: grid; grid-template-columns: 1.05fr .95fr;
  gap: 54px; align-items: center;
  padding: 78px 0 88px;
}
.hero__title {
  font-size: clamp(2.8rem, 6vw, 4.7rem);
  margin: 18px 0 20px;
}
.hero__title em {
  font-style: italic; color: var(--paprika);
}
.hero__sub {
  font-size: 1.16rem; color: var(--ink-soft);
  max-width: 480px; margin-bottom: 30px;
}
.hero__cta { display: flex; flex-wrap: wrap; gap: 14px; }
.hero__meta {
  display: flex; flex-wrap: wrap; gap: 22px;
  margin-top: 34px; padding-top: 26px;
  border-top: 1px solid rgba(44, 26, 15, .12);
}
.hero__meta div { display: flex; flex-direction: column; }
.hero__meta b { font-family: var(--serif); font-size: 1.35rem; color: var(--paprika); }
.hero__meta span { font-size: .82rem; color: var(--ink-soft); font-weight: 600; }

/* hero photo stack */
.hero__art { position: relative; }
.hero__art .foodimg { box-shadow: var(--shadow-lg); }
.hero__art .foodimg:first-child {
  height: 420px; border-radius: var(--radius-lg);
}
.hero__badge {
  position: absolute; left: -22px; bottom: 36px;
  background: var(--paper); border-radius: 20px;
  padding: 16px 20px; box-shadow: var(--shadow-md);
  display: flex; align-items: center; gap: 13px;
  border: 1px solid rgba(44, 26, 15, .07);
}
.hero__badge .dot {
  width: 44px; height: 44px; border-radius: 13px;
  background: linear-gradient(140deg, var(--curry), var(--mint));
  display: grid; place-items: center; font-size: 1.4rem;
}
.hero__badge b { font-family: var(--serif); font-size: 1rem; display: block; }
.hero__badge span { font-size: .8rem; color: var(--ink-soft); }

/* ---- Food image placeholder tiles ------------------------- */
/*  HOW TO ADD REAL PHOTOS:
    Each .foodimg below uses a CSS gradient as a styled placeholder.
    To use a real photo, add an inline style on that element, e.g.
      <div class="foodimg foodimg--biryani"
           style="background-image:url('assets/img/nalli.jpg')"></div>
    The inline background-image overrides the gradient. The caption
    (.foodimg__cap) keeps working on top of a real photo.            */
.foodimg {
  position: relative; width: 100%; height: 260px;
  border-radius: var(--radius);
  background-size: cover; background-position: center;
  overflow: hidden;
  background-image: linear-gradient(150deg, var(--saffron), var(--paprika));
}
.foodimg::after {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 30% 28%, rgba(255,255,255,.34), transparent 38%),
    linear-gradient(180deg, transparent 48%, rgba(30,12,4,.62));
}
.foodimg__cap {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 18px 20px;
  display: flex; align-items: flex-end; justify-content: space-between; gap: 12px;
}
.foodimg__cap b {
  font-family: var(--serif); font-size: 1.18rem; color: #fff;
  text-shadow: 0 2px 12px rgba(0,0,0,.5);
}
.price-chip {
  background: var(--paper); color: var(--ink);
  font-weight: 700; font-size: .82rem;
  padding: 6px 12px; border-radius: 100px;
  box-shadow: var(--shadow-sm); white-space: nowrap;
}
/* gradient flavours */
.foodimg--biryani  { background-image: linear-gradient(150deg, #F4B53C, #D9641B 70%, #9C2410); }
.foodimg--butter   { background-image: linear-gradient(150deg, #F49C3C, #D8401E 72%, #A2210C); }
.foodimg--nihari   { background-image: linear-gradient(150deg, #C9601E, #8E2A12 68%, #531405); }
.foodimg--paneer   { background-image: linear-gradient(150deg, #8FB85A, #3F7C44 72%, #1F4A28); }
.foodimg--tandoori { background-image: linear-gradient(150deg, #E86F2B, #B62A14 70%, #6E1606); }
.foodimg--falooda  { background-image: linear-gradient(150deg, #F2B6C6, #D14E7C 68%, #7C2A52); }
.foodimg--paratha  { background-image: linear-gradient(150deg, #F3CE7E, #D89A36 72%, #9C661A); }
.foodimg--spread   { background-image: linear-gradient(150deg, #F4B53C, #C5371C 60%, #6E1606); }
.foodimg--office   { background-image: linear-gradient(150deg, #EFA94A, #C56A1C 70%, #7E3A0C); }
.foodimg--majlis   { background-image: linear-gradient(150deg, #E8902E, #B23A14 66%, #631808); }
.foodimg--ramadan  { background-image: linear-gradient(150deg, #6E9B8E, #2F6E6A 66%, #14403F); }

/* ---- Trust strip ------------------------------------------ */
.trust {
  background: var(--ink); color: var(--cream);
}
.trust__row {
  display: flex; flex-wrap: wrap; justify-content: space-between;
  gap: 18px; padding: 26px 0;
}
.trust__item {
  display: flex; align-items: center; gap: 11px;
  font-weight: 600; font-size: .95rem;
}
.trust__item .ic {
  width: 34px; height: 34px; border-radius: 9px;
  background: rgba(244, 181, 60, .18);
  display: grid; place-items: center; font-size: 1rem;
}

/* ---- Dish grid -------------------------------------------- */
.grid { display: grid; gap: 26px; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.dish {
  background: var(--paper); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 26, 15, .06);
  transition: transform .18s ease, box-shadow .22s ease;
}
.dish:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.dish .foodimg { height: 210px; border-radius: 0; }
.dish__body { padding: 20px 22px 24px; }
.dish__tag {
  font-size: .72rem; font-weight: 700; letter-spacing: .12em;
  text-transform: uppercase; color: var(--saffron);
}
.dish__name { font-size: 1.32rem; margin: 6px 0 8px; }
.dish__desc { font-size: .93rem; color: var(--ink-soft); margin-bottom: 14px; }
.dish__foot {
  display: flex; align-items: center; justify-content: space-between;
  padding-top: 14px; border-top: 1px dashed rgba(44, 26, 15, .16);
}
.dish__price { font-family: var(--serif); font-size: 1.3rem; color: var(--paprika); }
.dish__price small { font-size: .7rem; color: var(--ink-faint); font-weight: 600; }

.hot {
  display: inline-block; background: var(--paprika); color: #fff;
  font-size: .68rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; padding: 4px 9px; border-radius: 6px;
  margin-left: 8px; vertical-align: middle;
}

/* ---- Catering banner (home) ------------------------------- */
.cater-band {
  position: relative;
  background:
    radial-gradient(circle at 88% 20%, rgba(244,181,60,.5), transparent 42%),
    linear-gradient(135deg, #3a1407, #6E1606 60%, #9C2410);
  color: var(--cream); overflow: hidden;
}
.cater-band__grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 50px;
  align-items: center; padding: 86px 0;
}
.cater-band h2 {
  color: #fff; font-size: clamp(2.2rem, 4.6vw, 3.4rem); margin: 14px 0 16px;
}
.cater-band p { color: rgba(255,247,236,.84); font-size: 1.08rem; margin-bottom: 26px; }
.cater-band .eyebrow { color: var(--turmeric); }
.cater-band .eyebrow::before { background: var(--turmeric); }

.minicards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.minicard {
  background: rgba(255, 247, 236, .07);
  border: 1px solid rgba(255, 247, 236, .16);
  border-radius: var(--radius); padding: 22px 20px;
  backdrop-filter: blur(4px);
}
.minicard .num {
  font-family: var(--serif); font-size: 1rem; color: var(--turmeric);
}
.minicard b { font-family: var(--serif); font-size: 1.22rem; display: block; margin: 4px 0 6px; color:#fff;}
.minicard span { font-size: .86rem; color: rgba(255,247,236,.76); }

/* ---- Catering hero ---------------------------------------- */
.chero {
  background:
    radial-gradient(circle at 84% 16%, rgba(244,181,60,.46), transparent 48%),
    radial-gradient(circle at 12% 88%, rgba(63,124,68,.22), transparent 46%),
    var(--cream);
  text-align: center;
  padding: 84px 0 78px;
}
.chero h1 {
  font-size: clamp(2.7rem, 5.6vw, 4.4rem);
  margin: 18px auto 18px; max-width: 880px;
}
.chero h1 em { font-style: italic; color: var(--paprika); }
.chero p { max-width: 620px; margin: 0 auto 30px; font-size: 1.14rem; color: var(--ink-soft); }
.chero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ---- Package cards ---------------------------------------- */
.pkg {
  background: var(--paper); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid rgba(44, 26, 15, .07);
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .22s ease;
}
.pkg:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pkg.featured { border-color: var(--saffron); box-shadow: var(--shadow-md); }
.pkg .foodimg { height: 170px; border-radius: 0; }
.pkg__body { padding: 24px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.pkg__ribbon {
  align-self: flex-start;
  background: var(--turmeric); color: var(--ink);
  font-size: .7rem; font-weight: 800; letter-spacing: .1em;
  text-transform: uppercase; padding: 5px 11px; border-radius: 7px;
  margin-bottom: 12px;
}
.pkg__name { font-size: 1.5rem; margin-bottom: 6px; }
.pkg__for { font-size: .88rem; color: var(--paprika); font-weight: 700; margin-bottom: 14px; }
.pkg__price {
  font-family: var(--serif); font-size: 2rem; color: var(--ink);
  margin-bottom: 4px;
}
.pkg__price small { font-size: .8rem; color: var(--ink-soft); font-weight: 600; font-family: var(--sans); }
.pkg__min { font-size: .82rem; color: var(--ink-faint); margin-bottom: 18px; }
.pkg__list { margin-bottom: 22px; }
.pkg__list li {
  font-size: .92rem; color: var(--ink-soft);
  padding: 7px 0 7px 26px; position: relative;
  border-bottom: 1px solid rgba(44,26,15,.06);
}
.pkg__list li::before {
  content: ""; position: absolute; left: 0; top: 13px;
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--curry);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='white' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pkg__cta { margin-top: auto; }

/* ---- Steps ------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.step { position: relative; padding-top: 14px; }
.step__n {
  font-family: var(--serif); font-size: 2.6rem; color: var(--cream-deep);
  line-height: 1;
}
.step h3 { font-size: 1.18rem; margin: 8px 0 8px; }
.step p { font-size: .92rem; color: var(--ink-soft); }

/* ---- Catering menu list ----------------------------------- */
.cmenu { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px 40px; }
.cmenu__col h3 {
  font-size: 1.16rem; padding-bottom: 10px; margin-bottom: 6px;
  border-bottom: 2px solid var(--saffron);
  display: flex; align-items: center; gap: 8px;
}
.cmenu__item {
  display: flex; justify-content: space-between; gap: 14px;
  padding: 10px 0; border-bottom: 1px dashed rgba(44,26,15,.14);
}
.cmenu__item span:first-child { font-weight: 600; font-size: .95rem; }
.cmenu__item .p { color: var(--paprika); font-weight: 700; white-space: nowrap; font-size:.92rem;}
.cmenu__note { font-size: .82rem; color: var(--ink-faint); margin-top: 6px; }

/* ---- Menu highlights (home) ------------------------------- */
.mh { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px 48px; }
.mh__item {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 13px 0; border-bottom: 1px dashed rgba(44,26,15,.16);
}
.mh__item .nm { font-weight: 600; }
.mh__item .nm small { display:block; font-weight:400; font-size:.82rem; color:var(--ink-faint); }
.mh__item .pr { font-family: var(--serif); color: var(--paprika); font-size: 1.08rem; white-space: nowrap; }

/* ---- Why / feature list ----------------------------------- */
.feat { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.feat__card {
  background: var(--paper); border-radius: var(--radius);
  padding: 28px 26px; border: 1px solid rgba(44,26,15,.06);
  box-shadow: var(--shadow-sm);
}
.feat__ic {
  width: 52px; height: 52px; border-radius: 14px;
  display: grid; place-items: center; font-size: 1.5rem;
  background: linear-gradient(140deg, var(--turmeric), var(--saffron));
  margin-bottom: 16px;
}
.feat__card h3 { font-size: 1.2rem; margin-bottom: 8px; }
.feat__card p { font-size: .93rem; color: var(--ink-soft); }

/* ---- Quote form ------------------------------------------- */
.quote {
  background:
    radial-gradient(circle at 90% 10%, rgba(244,181,60,.3), transparent 44%),
    var(--cream-deep);
}
.quote__grid {
  display: grid; grid-template-columns: .92fr 1.08fr; gap: 48px;
  align-items: start;
}
.quote__intro h2 { font-size: clamp(2rem,4vw,2.9rem); margin: 14px 0 14px; }
.quote__intro p { color: var(--ink-soft); margin-bottom: 22px; }
.quote__or {
  display: flex; align-items: center; gap: 14px;
  margin: 24px 0; color: var(--ink-faint); font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
}
.quote__or::before, .quote__or::after {
  content: ""; flex: 1; height: 1px; background: rgba(44,26,15,.2);
}
.quote__call {
  background: var(--paper); border-radius: var(--radius);
  padding: 20px 22px; box-shadow: var(--shadow-sm);
  display: flex; align-items: center; gap: 14px;
}
.quote__call .ic {
  width: 46px; height: 46px; border-radius: 12px;
  background: linear-gradient(140deg, var(--curry), var(--mint));
  display: grid; place-items: center; font-size: 1.3rem;
}
.quote__call b { font-family: var(--serif); font-size: 1.1rem; }
.quote__call span { font-size: .85rem; color: var(--ink-soft); }

.form-card {
  background: var(--paper); border-radius: var(--radius-lg);
  padding: 34px; box-shadow: var(--shadow-md);
  border: 1px solid rgba(44,26,15,.07);
}
.field { margin-bottom: 16px; }
.field.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block; font-size: .82rem; font-weight: 700;
  margin-bottom: 6px; color: var(--ink);
}
.field label .req { color: var(--paprika); }
.field input, .field select, .field textarea {
  width: 100%; font-family: var(--sans); font-size: .96rem;
  padding: 12px 14px; border-radius: 11px;
  border: 1.5px solid rgba(44,26,15,.16);
  background: var(--cream); color: var(--ink);
  transition: border-color .15s ease, box-shadow .15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(237,154,46,.2);
}
.field textarea { resize: vertical; min-height: 80px; }
.form-note { font-size: .8rem; color: var(--ink-faint); margin-top: 12px; text-align: center; }
.form-ok {
  display: none; margin-top: 14px; padding: 12px 16px;
  background: rgba(63,124,68,.14); border: 1px solid var(--curry);
  border-radius: 11px; color: var(--curry); font-weight: 600; font-size: .9rem;
}

/* ---- FAQ -------------------------------------------------- */
.faq { max-width: 820px; margin: 0 auto; }
.faq__item {
  background: var(--paper); border-radius: 14px;
  border: 1px solid rgba(44,26,15,.08); margin-bottom: 12px;
  overflow: hidden;
}
.faq__q {
  width: 100%; text-align: left; cursor: pointer;
  background: none; border: none; font-family: var(--sans);
  font-weight: 700; font-size: 1.02rem; color: var(--ink);
  padding: 18px 22px; display: flex; justify-content: space-between;
  align-items: center; gap: 16px;
}
.faq__q .pm {
  width: 26px; height: 26px; flex-shrink: 0; border-radius: 8px;
  background: var(--cream-deep); display: grid; place-items: center;
  font-size: 1.2rem; color: var(--paprika); transition: transform .2s ease;
}
.faq__item.open .faq__q .pm { transform: rotate(45deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .28s ease;
}
.faq__a p { padding: 0 22px 20px; color: var(--ink-soft); font-size: .95rem; }

/* ---- CTA strip -------------------------------------------- */
.cta-strip {
  background: linear-gradient(135deg, var(--paprika), var(--saffron));
  color: #fff; text-align: center;
}
.cta-strip h2 { color: #fff; font-size: clamp(2rem,4.4vw,3.1rem); margin-bottom: 12px; }
.cta-strip p { color: rgba(255,255,255,.9); margin-bottom: 26px; font-size: 1.06rem; }
.cta-strip .btn--ghost { border-color: rgba(255,255,255,.6); color: #fff; }
.cta-strip .btn--ghost:hover { background: #fff; color: var(--paprika); border-color:#fff; }
.cta-strip .btn--gold { background: #fff; color: var(--paprika); }
.cta-strip .btn--gold:hover { background: var(--ink); color: #fff; }

/* ---- Footer ----------------------------------------------- */
.footer { background: var(--ink); color: var(--cream); padding: 64px 0 28px; }
.footer__grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 38px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,247,236,.12);
}
.footer__grid h4 {
  color: var(--turmeric); font-family: var(--sans);
  font-size: .8rem; letter-spacing: .14em; text-transform: uppercase;
  margin-bottom: 16px;
}
.footer p, .footer a, .footer li { color: rgba(255,247,236,.74); font-size: .93rem; }
.footer__grid ul li { margin-bottom: 9px; }
.footer__grid ul a:hover { color: var(--turmeric); }
.footer .brand__name { color: var(--cream); }
.footer__about { max-width: 320px; margin-top: 14px; }
.footer__socials { display: flex; gap: 10px; margin-top: 16px; }
.footer__socials a {
  width: 38px; height: 38px; border-radius: 10px;
  background: rgba(255,247,236,.1); display: grid; place-items: center;
  transition: background .15s ease;
}
.footer__socials a:hover { background: var(--paprika); }
.footer__socials svg { width: 18px; height: 18px; fill: var(--cream); }
.footer__bot {
  padding-top: 22px; display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 10px; font-size: .84rem; color: rgba(255,247,236,.55);
}

/* ---- Reveal animation ------------------------------------- */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .6s ease, transform .6s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---- Responsive ------------------------------------------- */
@media (max-width: 960px) {
  .section { padding: 68px 0; }
  .hero__grid, .cater-band__grid, .quote__grid { grid-template-columns: 1fr; gap: 40px; }
  .hero__art { order: -1; }
  .grid--3, .grid--4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .cmenu { grid-template-columns: repeat(2, 1fr); }
  .feat { grid-template-columns: 1fr; }
  .mh { grid-template-columns: 1fr; gap: 0; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 680px) {
  .wrap { padding: 0 18px; }
  .section { padding: 56px 0; }
  .nav__links { display: none; }
  .nav__toggle { display: flex; }
  .nav__cta .btn--ghost { display: none; }
  .nav.open .nav__links {
    display: flex; position: absolute; top: 76px; left: 0; right: 0;
    flex-direction: column; align-items: stretch;
    background: var(--cream); padding: 14px 18px 22px;
    border-bottom: 1px solid rgba(44,26,15,.1); box-shadow: var(--shadow-md);
  }
  .nav.open .nav__links a { padding: 13px 12px; }
  .grid--3, .grid--4, .grid--2, .minicards, .steps, .cmenu { grid-template-columns: 1fr; }
  .field.row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 28px; }
  .hero__badge { left: 0; }
  .hero__cta .btn, .chero__cta .btn { width: 100%; }
}

/* ============================================================
   CATERING MENU BUILDER  (menu-builder.html)
   ============================================================ */
.builder { display: grid; grid-template-columns: 1fr 358px; gap: 38px; align-items: start; }

.bstep { margin-bottom: 34px; }
.bstep__head { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.bstep__num {
  width: 42px; height: 42px; flex-shrink: 0; border-radius: 12px;
  background: var(--paprika); color: #fff;
  font-family: var(--serif); font-size: 1.3rem; font-weight: 700;
  display: grid; place-items: center;
}
.bstep__head h2 { font-size: 1.45rem; margin-bottom: 2px; }
.bstep__head p { font-size: .9rem; color: var(--ink-soft); }

.occasions { display: grid; grid-template-columns: repeat(5, 1fr); gap: 12px; }
.occ {
  font-family: var(--sans); cursor: pointer; color: var(--ink);
  background: var(--paper); border: 2px solid rgba(44,26,15,.12);
  border-radius: var(--radius); padding: 20px 10px; text-align: center;
  transition: border-color .15s ease, background .15s ease, transform .12s ease;
}
.occ:hover { transform: translateY(-3px); border-color: var(--saffron); }
.occ.selected { border-color: var(--paprika); background: var(--cream-deep); }
.occ__ic { font-size: 1.85rem; line-height: 1; }
.occ b { display: block; font-family: var(--serif); font-size: 1rem; margin-top: 9px; }

.other-wrap { display: none; margin-top: 16px; }

.cat-block { margin-bottom: 26px; }
.cat-block h3 {
  font-size: 1.16rem; padding-bottom: 9px; margin-bottom: 14px;
  border-bottom: 2px solid var(--saffron);
}
.picks { display: grid; grid-template-columns: repeat(auto-fill, minmax(198px, 1fr)); gap: 12px; }
.pick {
  position: relative; cursor: pointer; font-family: var(--sans);
  text-align: left; background: var(--paper);
  border: 2px solid rgba(44,26,15,.12); border-radius: 14px;
  padding: 14px 44px 14px 16px;
  transition: border-color .14s ease, background .14s ease;
}
.pick:hover { border-color: var(--saffron); }
.pick.selected { border-color: var(--curry); background: rgba(63,124,68,.08); }
.pick__name { display: block; font-weight: 600; font-size: .95rem; color: var(--ink); }
.pick__price { font-size: .83rem; color: var(--paprika); font-weight: 700; }
.pick__star { color: var(--saffron); }
.pick__check {
  position: absolute; right: 13px; top: 50%; margin-top: -13px;
  width: 26px; height: 26px; border-radius: 50%;
  border: 2px solid rgba(44,26,15,.2); background: transparent;
}
.pick__check::after {
  content: "+"; position: absolute; inset: 0;
  display: grid; place-items: center;
  font-size: 1.1rem; color: var(--ink-faint); line-height: 1;
}
.pick.selected .pick__check { background: var(--curry); border-color: var(--curry); }
.pick.selected .pick__check::after { content: "\2713"; color: #fff; }

.summary { position: sticky; top: 96px; }
.summary__card {
  background: var(--paper); border-radius: var(--radius-lg);
  border: 1px solid rgba(44,26,15,.08); box-shadow: var(--shadow-md);
  overflow: hidden;
}
.summary__top { background: var(--ink); color: var(--cream); padding: 20px 22px; }
.summary__top h3 { color: #fff; font-size: 1.22rem; }
.summary__top p { font-size: .82rem; color: rgba(255,247,236,.72); }
.summary__body { padding: 18px 22px 22px; }
.summary__row {
  display: flex; justify-content: space-between; gap: 12px;
  padding: 9px 0; font-size: .92rem;
  border-bottom: 1px dashed rgba(44,26,15,.14);
}
.summary__row span { color: var(--ink-soft); font-weight: 600; }
.summary__row b { font-family: var(--serif); font-weight: 600; text-align: right; }
.summary__row--range b { color: var(--paprika); }
.summary__list { margin: 14px 0 4px; max-height: 250px; overflow-y: auto; }
.summary__list li { padding: 9px 0; border-bottom: 1px dashed rgba(44,26,15,.1); font-size: .87rem; }
.summary__list li b {
  display: block; font-family: var(--sans); font-size: .7rem;
  text-transform: uppercase; letter-spacing: .09em;
  color: var(--saffron); margin-bottom: 3px;
}
.summary__list li span { color: var(--ink-soft); }
.summary__empty { color: var(--ink-faint); font-style: italic; }
.summary__count { display: flex; align-items: baseline; gap: 8px; margin: 14px 0 16px; }
.summary__count b { font-family: var(--serif); font-size: 1.7rem; color: var(--paprika); }
.summary__count span { font-size: .86rem; color: var(--ink-soft); }
.summary__note { font-size: .77rem; color: var(--ink-faint); margin-top: 12px; text-align: center; }

.builder-banner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; flex-wrap: wrap;
  background: var(--cream-deep); border: 1px solid rgba(44,26,15,.1);
  border-radius: var(--radius-lg); padding: 28px 32px; margin-top: 30px;
}
.builder-banner b { font-family: var(--serif); font-size: 1.3rem; }
.builder-banner p { font-size: .94rem; color: var(--ink-soft); }

@media (max-width: 960px) {
  .builder { grid-template-columns: 1fr; gap: 30px; }
  .summary { position: static; }
  .occasions { grid-template-columns: repeat(auto-fit, minmax(140px, 1fr)); }
}
@media (max-width: 680px) {
  .occasions { grid-template-columns: 1fr 1fr; }
  .builder-banner { padding: 22px; }
}
