: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 Page – Location Map Boxes        */
/* ============================================ */
.dish-map-section {
  padding-bottom: 4rem;
}
.dish-map-box {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0;
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 2rem;
}
.dish-map-box:last-child {
  margin-bottom: 0;
}
.dish-map-frame {
  flex: 1 1 55%;
  min-width: 280px;
  position: relative;
  min-height: 340px;
}
.dish-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.dish-map-info {
  flex: 1 1 40%;
  min-width: 260px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.65rem;
}
.dish-map-info h3 {
  font-size: 1.4rem;
  color: var(--headerColor, #1a1a1a);
  margin-bottom: 0.25rem;
}
.dish-map-info p {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  margin: 0;
  color: var(--bodyTextColor, #4e4b66);
  line-height: 1.5;
}
.dish-map-info p i {
  color: #FBB040;
  font-size: 1.15rem;
  margin-top: 2px;
}
.dish-map-info a {
  color: inherit;
  text-decoration: none;
}
.dish-map-info a:hover {
  text-decoration: underline;
}
.dish-directions-btn {
  align-self: flex-start;
  margin-top: 0.75rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.dish-directions-btn:hover {
  text-decoration: none;
}

@media only screen and (max-width: 768px) {
  .dish-map-box {
    flex-direction: column;
  }
  .dish-map-frame {
    flex: 1 1 100%;
    width: 100%;
    min-height: 260px;
  }
  .dish-map-info {
    flex: 1 1 100%;
    padding: 1.5rem;
  }
}
