: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: Visit Us / Location boxed layout ====================== */
.dish-visit-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 2rem auto 4rem auto;
  padding: 1.5rem;
  background: #fff;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  align-items: stretch;
}
.dish-visit-box__map {
  width: 100%;
  min-height: 320px;
  border-radius: 8px;
  overflow: hidden;
}
.dish-visit-box__map iframe {
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
  display: block;
}
.dish-visit-box__info {
  padding: 0.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.dish-visit-box__info h3 {
  margin: 0 0 0.75rem 0;
  font-size: 1.5rem;
  color: #222;
}
.dish-visit-box__info p {
  margin: 0.4rem 0;
  color: #444;
  line-height: 1.55;
}
.dish-visit-box__info i {
  color: #ca0000;
  margin-right: 0.4rem;
}
.dish-visit-box__info a {
  color: #ca0000;
  text-decoration: none;
}
.dish-visit-box__info a:hover {
  text-decoration: underline;
}
.dish-visit-box__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1rem;
  align-self: flex-start;
}
@media (max-width: 768px) {
  .dish-visit-box {
    grid-template-columns: 1fr;
    padding: 1rem;
    gap: 1.25rem;
    margin: 1.5rem 1rem 3rem 1rem;
  }
  .dish-visit-box__map,
  .dish-visit-box__map iframe {
    min-height: 260px;
  }
  .dish-visit-box__info h3 {
    font-size: 1.25rem;
  }
}
