: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);
}

/* ==========================================================
   Dish landing page — "Visit / Get Directions" boxed section
   Map left, info right; stacks vertically on mobile (≤768px).
   ========================================================== */
.dish-location {
  padding: clamp(2.5rem, 6vw, 5rem) 1rem;
}
.dish-location-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  max-width: 1200px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 14px;
  box-shadow: 0 12px 32px rgba(26, 26, 26, 0.08);
  overflow: hidden;
}
.dish-location-map {
  position: relative;
  min-height: 380px;
}
.dish-location-map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.dish-location-info {
  padding: clamp(1.5rem, 3vw, 2.5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--bodyTextColor);
}
.dish-location-info .section__header {
  margin-top: 0;
  margin-bottom: 1rem;
  color: var(--headerColor);
}
.dish-location-info h3 {
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--headerColor);
  margin: 1rem 0 0.35rem 0;
}
.dish-location-info p,
.dish-location-info ul {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
}
.dish-location-info p a {
  color: var(--headerColor);
  font-weight: 600;
  text-decoration: none;
}
.dish-location-info p a:hover {
  text-decoration: underline;
}
.dish-location-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}
.dish-location-hours li {
  padding: 0.15rem 0;
}
.dish-location-cta {
  align-self: flex-start;
  margin-top: 1.5rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.dish-location-cta i {
  margin-left: 0.25rem;
}

@media (max-width: 768px) {
  .dish-location-box {
    grid-template-columns: 1fr;
  }
  .dish-location-map {
    min-height: 280px;
  }
  .dish-location-info {
    padding: 1.25rem;
  }
  .dish-location-cta {
    align-self: stretch;
    justify-content: center;
  }
}

.dish-tagline {
  font-size: 1.125rem;
  font-weight: 600;
  color: #009E00;
  margin: 0.25rem 0 1rem 0;
  line-height: 1.4;
}
