: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 Section      */
/* ============================================ */
.location-section {
  padding: var(--sectionPadding);
}

.location-box {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
}

.location-map {
  flex: 1.2;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: block;
}

.location-details {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-details h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.2rem 0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.location-details p,
.location-details li {
  color: #4e4b66;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.location-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-details a:not(.btn) {
  color: #ca0000;
  text-decoration: none;
}

.location-details a:not(.btn):hover {
  text-decoration: underline;
}

.location-details .btn {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 768px) {
  .location-box {
    flex-direction: column;
  }

  .location-map,
  .location-map iframe {
    min-height: 260px;
  }
}


/* ============================================ */
/*       Dish Page - Location / Map Section      */
/* ============================================ */
.location-section {
  padding: var(--sectionPadding);
}

.location-box {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  align-items: stretch;
}

.location-map {
  flex: 1.2;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  display: block;
}

.location-details {
  flex: 1;
  background: #fff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.location-details h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a1a;
  margin: 0 0 0.2rem 0;
  text-transform: uppercase;
  letter-spacing: 0.07em;
}

.location-details p,
.location-details li {
  color: #4e4b66;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.65;
}

.location-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-details a:not(.btn) {
  color: #ca0000;
  text-decoration: none;
}

.location-details a:not(.btn):hover {
  text-decoration: underline;
}

.location-details .btn {
  align-self: flex-start;
  margin-top: auto;
}

@media (max-width: 768px) {
  .location-box {
    flex-direction: column;
  }

  .location-map,
  .location-map iframe {
    min-height: 260px;
  }
}
