:root {
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #1a1a1a;
  --bodyTextColor: #4e4b66;
  --bodyTextColorWhite: #fafbfc;
  --topperFontSize: clamp(0.8125rem, 1.6vw, 1rem);
  --headerFontSize: clamp(1.9375rem, 3.9vw, 3.0625rem);
  --bodyFontSize: 1rem;
  --sectionPadding: clamp(3.75rem, 7.82vw, 6.25rem) 1rem;
}

body {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}
.cs-topper {
  font-size: var(--topperFontSize);
  line-height: 1.2em;
  text-transform: uppercase;
  text-align: inherit;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.25rem;
  display: block;
}

.cs-title {
  font-size: var(--headerFontSize);
  font-weight: 900;
  line-height: 1.2em;
  text-align: inherit;
  max-width: 43.75rem;
  margin: 0 0 1rem 0;
  color: var(--headerColor);
  position: relative;
}

.cs-text {
  font-size: var(--bodyFontSize);
  line-height: 1.5em;
  text-align: inherit;
  width: 100%;
  max-width: 40.625rem;
  margin: 0;
  color: var(--bodyTextColor);
}

/* ──────────────────────────────────────────────────────────────────
   Home FAQ CTA — used on tag pages (dishes & places) to link back
   to the main FAQ on the homepage (index.html#faq).
   ────────────────────────────────────────────────────────────────── */
.home-faq-cta {
  max-width: 960px;
  margin: 2.5rem auto;
  padding: 2rem 1.75rem;
  background: linear-gradient(135deg, #fff7ed 0%, #fff1e0 100%);
  border: 1px solid #f4d8b6;
  border-left: 4px solid #ca0000;
  border-radius: 12px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.05);
}
.home-faq-cta__text {
  flex: 1 1 320px;
  min-width: 0;
}
.home-faq-cta__text h3 {
  margin: 0 0 0.4rem;
  font-size: 1.35rem;
  font-weight: 700;
  color: #1a1a1a;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.home-faq-cta__text h3 i {
  color: #ca0000;
  font-size: 1.5rem;
}
.home-faq-cta__text p {
  margin: 0;
  color: #4e4b66;
  font-size: 0.98rem;
  line-height: 1.55;
}
.home-faq-cta .btn {
  flex: 0 0 auto;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
@media (max-width: 640px) {
  .home-faq-cta {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem 1.25rem;
  }
  .home-faq-cta .btn {
    width: 100%;
    justify-content: center;
  }
}
