: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);
}

/* Location & Contact Box (index.html) */
.location__container {
  text-align: center;
}
.location-box {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 0;
  max-width: 1100px;
  margin: 2rem auto 0;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  text-align: left;
}
.location-box__map {
  position: relative;
  min-height: 380px;
}
.location-box__map iframe {
  width: 100%;
  height: 100%;
  min-height: 380px;
  border: 0;
  display: block;
}
.location-box__info {
  display: flex;
  flex-direction: column;
  padding: 2rem clamp(1.25rem, 2.5vw, 2.25rem);
}
.location-box__info h3 {
  margin: 0 0 1.25rem;
  font-size: clamp(1.25rem, 2.2vw, 1.625rem);
  color: var(--headerColor);
}
.location-box__details {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}
.location-box__details li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: var(--bodyTextColor);
  font-size: 0.975rem;
  line-height: 1.5;
}
.location-box__details i {
  color: #ca0000;
  font-size: 1.1rem;
  margin-top: 0.15rem;
  flex-shrink: 0;
}
.location-box__details a {
  color: var(--bodyTextColor);
  text-decoration: none;
}
.location-box__details a:hover {
  color: #ca0000;
}
.location-box__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: auto;
  padding-top: 1rem;
  justify-content: flex-end;
}
.location-box__actions .btn {
  padding: 0.7rem 1.25rem;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  .location-box {
    grid-template-columns: 1fr;
  }
  .location-box__map,
  .location-box__map iframe {
    min-height: 280px;
  }
  .location-box__actions {
    justify-content: stretch;
  }
  .location-box__actions .btn {
    flex: 1 1 auto;
    text-align: center;
  }
}
