:root {
  --primaryLight: #ffba43;
  --secondary: #ffba43;
  --secondaryLight: #ffba43;
  --headerColor: #ffffff;
  --bodyTextColor: #e0e0e0;
  --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;
  background-color: #000;
  color: #fff;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

.cs-title,
h1, h2,
.section__header {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  letter-spacing: -0.01em;
}

.cs-topper {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
}

*,
*: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              */
/* ============================================ */
.faq-link-container {
  padding: clamp(2.5rem, 5vw, 4rem) 1rem;
}

.faq-link-card {
  max-width: 1100px;
  margin: 0 auto;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1010 100%);
  border: 1px solid rgba(248, 59, 69, 0.35);
  border-radius: 16px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.faq-link-content {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex: 1 1 320px;
  min-width: 0;
}

.faq-link-content > i {
  font-size: clamp(2rem, 4vw, 2.75rem);
  color: #f83b45;
  flex-shrink: 0;
}

.faq-link-content h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  margin: 0 0 0.35rem 0;
  color: #ffffff;
  line-height: 1.2;
}

.faq-link-content p {
  margin: 0;
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.5;
}

.faq-link-btn {
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.faq-link-btn i {
  transition: transform 0.2s ease;
}

.faq-link-btn:hover i {
  transform: translateX(3px);
}

@media (max-width: 640px) {
  .faq-link-card {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .faq-link-btn {
    align-self: flex-start;
  }
}

/* ============================================ */
/* Dish page — Location & Map box (tag pages)   */
/* ============================================ */
.dish-location-section {
  padding: clamp(2.5rem, 5vw, 4rem) 1rem;
}

.dish-location-section .section__header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.dish-location-container {
  max-width: 1100px;
  margin: 0 auto;
}

.dish-location-wrapper {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  background: linear-gradient(135deg, #1a1a1a 0%, #2a1010 100%);
  border: 1px solid rgba(213, 0, 0, 0.35);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
}

.dish-map-container {
  min-height: 100%;
  line-height: 0;
}

.dish-map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: 0;
  display: block;
}

.dish-contact-info {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.dish-contact-info h3 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.25rem, 2.5vw, 1.6rem);
  line-height: 1.2;
}

.dish-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.dish-contact-item > i {
  font-size: 1.2rem;
  color: #D50000;
  flex-shrink: 0;
  margin-top: 0.15rem;
  width: 1.25rem;
  text-align: center;
}

.dish-contact-item strong {
  display: block;
  color: #ffffff;
  font-size: 0.95rem;
  margin-bottom: 0.15rem;
}

.dish-contact-item p {
  margin: 0;
  color: #cfcfcf;
  font-size: 0.95rem;
  line-height: 1.5;
}

.dish-contact-item p a {
  color: #cfcfcf;
  text-decoration: none;
}

.dish-contact-item p a:hover {
  color: #ffffff;
}

.dish-directions-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 0.25rem;
  padding: 0.75rem 1.5rem;
  background-color: #D50000;
  color: #ffffff;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  transition: 0.2s ease;
  align-self: flex-start;
}

.dish-directions-btn:hover {
  background-color: #b30000;
  color: #ffffff;
}

@media (max-width: 900px) {
  .dish-location-wrapper {
    grid-template-columns: 1fr;
  }
  .dish-map-container iframe {
    min-height: 320px;
  }
  .dish-directions-btn {
    align-self: stretch;
  }
}
