: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 Map & Contact Box          */
/* ============================================ */

.location-box {
  display: flex;
  gap: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  background: #fff;
}

.location-box__map {
  flex: 1 1 55%;
  min-height: 400px;
  position: relative;
}

.location-box__map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.location-box__info {
  flex: 1 1 45%;
  padding: 2rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.location-box__info h3 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--headerColor);
  margin: 0 0 1.25rem 0;
}

.location-box__info address {
  font-style: normal;
  margin-bottom: 1.25rem;
}

.location-box__info address p {
  margin: 0 0 0.5rem 0;
  color: var(--bodyTextColor);
  font-size: 0.95rem;
  line-height: 1.6;
}

.location-box__info address p i {
  color: var(--headerColor);
  width: 20px;
  margin-right: 0.5rem;
}

.location-box__info address a {
  color: var(--bodyTextColor);
  text-decoration: none;
}

.location-box__info address a:hover {
  color: #ca0000;
}

.location-box__hours {
  margin-bottom: 1.5rem;
}

.location-box__hours h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--headerColor);
  margin: 0 0 0.5rem 0;
}

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

.location-box__hours ul li {
  font-size: 0.9rem;
  color: var(--bodyTextColor);
  line-height: 1.8;
}

.location-box__buttons {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.location-box__buttons .btn {
  font-size: 0.9rem;
  padding: 0.6rem 1.25rem;
  text-align: center;
}

/* Mobile - location box stacks vertically */
@media screen and (max-width: 768px) {
  .location-box {
    flex-direction: column;
  }

  .location-box__map {
    min-height: 280px;
    position: relative;
  }

  .location-box__info {
    padding: 1.5rem;
  }

  .location-box__buttons {
    justify-content: center;
  }

  .location-box__buttons .btn {
    flex: 1;
    min-width: 140px;
  }
}
