: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 & directions boxed layout (map left, details right) */
.dish-location {
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.dish-location__box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid #ececec;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
}
.dish-location__map {
  line-height: 0;
}
.dish-location__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
}
.dish-location__details {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.dish-location__details h3 {
  margin: 0;
  font-size: 1.5rem;
  color: var(--headerColor);
}
.dish-location__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.dish-location__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--bodyTextColor);
  line-height: 1.5em;
}
.dish-location__list i {
  color: #ca0000;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}
.dish-location__list a {
  color: inherit;
  text-decoration: none;
}
.dish-location__list a:hover {
  text-decoration: underline;
}
.dish-location__directions {
  align-self: flex-start;
  margin-top: 0.25rem;
}
@media (max-width: 768px) {
  .dish-location__box {
    grid-template-columns: 1fr;
  }
  .dish-location__map iframe {
    min-height: 280px;
  }
  .dish-location__directions {
    align-self: stretch;
    text-align: center;
  }
}
