:root {
  --primaryLight: #B8921A;
  --secondary: #B8921A;
  --secondaryLight: #D4A820;
  --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: Google Maps section ───────────────────────────────────────── */
.map-section {
  background-color: #f9f5f0;
}

.map-container {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 0;
  align-items: stretch;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.map-iframe-wrapper {
  min-height: 400px;
  overflow: hidden;
}

.map-iframe-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  display: block;
  border: 0;
}

.map-details {
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  border-left: 1px solid #e5e7eb;
}

.map-details h3 {
  font-size: 1.35rem;
  color: #18181b;
  margin-bottom: 0.25rem;
}

.map-details h4 {
  font-size: 0.95rem;
  font-weight: 700;
  color: #18181b;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.map-details p {
  color: #6b7280;
  font-size: 0.9rem;
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  line-height: 1.6;
  margin: 0;
}

.map-details p i {
  color: #B8921A;
  margin-top: 3px;
  flex-shrink: 0;
  font-size: 1rem;
}

.map-details .map-phone a {
  color: #B8921A;
  font-weight: 600;
  text-decoration: none;
}

.map-details .map-phone a:hover {
  text-decoration: underline;
}

.map-details .btn {
  align-self: flex-start;
  margin-top: 0.75rem;
}

@media (max-width: 768px) {
  .map-container {
    grid-template-columns: 1fr;
  }

  .map-iframe-wrapper,
  .map-iframe-wrapper iframe {
    min-height: 280px;
  }

  .map-details {
    padding: 1.5rem;
    border-left: none;
    border-top: 1px solid #e5e7eb;
  }
}
