/* ============================================================
   LOCATIONS LIST
============================================================ */
.locations-list {
  padding-top: 0;
  padding-bottom: 0;
}

.location-section {
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.location-divider {
  border-top: 1px solid rgba(26,42,34,0.12);
}

/* Header row */
.location-section__header {
  margin-bottom: 2.5rem;
}
.location-section__eyebrow {
  color: var(--tuscany);
  margin-bottom: 0.625rem;
}
.location-section__headline {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -1.4px;
  color: var(--racing);
}

/* Body: map + info side by side */
.location-section__body {
  display: grid;
  grid-template-columns: 1fr 25rem;
  gap: 4rem;
  align-items: start;
}

/* ============================================================
   MAP
============================================================ */
.location-section__map {
  position: relative;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 30rem;
  background: var(--periglacial);
}

.location-section__map > a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.location-section__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  pointer-events: none; /* clicks pass through to the anchor */
}

.map-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem 1.25rem;
  background: linear-gradient(to top, rgba(26,42,34,0.6) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.2s;
}
.location-section__map > a:hover .map-overlay {
  opacity: 1;
}
.map-overlay__label {
  font-family: var(--font-dm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ecru);
}

/* ============================================================
   INFO COLUMN
============================================================ */
.location-section__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.info-block {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.info-block__label {
  color: var(--tom-thumb);
  margin-bottom: 0.25rem;
}

.info-block__primary {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--racing);
  line-height: 1.3;
}

.info-block__secondary {
  font-family: var(--font-serif);
  font-size: 1.0625rem;
  line-height: 1.55;
  color: rgba(26,42,34,0.75);
}

.info-block__link {
  font-family: var(--font-dm);
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--tom-thumb);
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transition: opacity 0.15s;
  margin-top: 0.125rem;
}
.info-block__link:hover { opacity: 0.7; }

.info-block__phone {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--racing);
  letter-spacing: -0.3px;
  transition: color 0.15s;
}
.info-block__phone:hover { color: var(--tom-thumb); }

.info-block__email {
  font-family: var(--font-dm);
  font-size: 0.9375rem;
  color: var(--tom-thumb);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.1875rem;
  transition: opacity 0.15s;
}
.info-block__email:hover { opacity: 0.7; }

/* Hours grid */
.hours-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.375rem 1.5rem;
  font-family: var(--font-dm);
  font-size: 0.9375rem;
  color: rgba(26,42,34,0.85);
}
.hours-grid span:nth-child(even) {
  text-align: right;
  color: rgba(26,42,34,0.6);
}

/* CTA link */
.location-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-family: var(--font-dm);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--ecru);
  background: var(--tuscany);
  padding: 0.875rem 1.5rem;
  border-radius: 999px;
  transition: opacity 0.15s;
  align-self: flex-start;
  margin-top: 0.5rem;
}
.location-cta:hover { opacity: 0.88; }

/* ============================================================
   TELEHEALTH STRIP
============================================================ */
.telehealth-strip {
  background: var(--celtic);
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.telehealth-strip .inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4rem;
  align-items: center;
}
.telehealth-strip__eyebrow {
  color: rgba(246,241,234,0.6);
  margin-bottom: 0.75rem;
}
.telehealth-strip__headline {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.8px;
  color: var(--ecru);
  margin-bottom: 1rem;
}
.telehealth-strip__body {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  line-height: 1.6;
  color: rgba(246,241,234,0.78);
  max-width: 40rem;
}
.telehealth-strip__cta {
  font-family: var(--font-dm);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(246,241,234,0.85);
  border: 1px solid rgba(246,241,234,0.35);
  border-radius: 999px;
  padding: 0.875rem 1.5rem;
  white-space: nowrap;
  transition: background 0.15s;
  flex-shrink: 0;
}
.telehealth-strip__cta:hover { background: rgba(246,241,234,0.1); }

/* ============================================================
   RESPONSIVE — 64rem
============================================================ */
@media (max-width: 64rem) {
  .location-section__body {
    grid-template-columns: 1fr 21.25rem;
    gap: 3rem;
  }
  .location-section__headline { font-size: 2.75rem; }
  .telehealth-strip .inner { grid-template-columns: 1fr; gap: 2rem; }
  .telehealth-strip__cta { align-self: flex-start; }
}

/* ============================================================
   RESPONSIVE — 48rem
============================================================ */
@media (max-width: 48rem) {
  .location-section { padding-top: 3.5rem; padding-bottom: 3.5rem; }

  .location-section__body {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .location-section__map { height: 20rem; }
  .location-section__headline { font-size: 2.25rem; }

  .telehealth-strip { padding-top: 3rem; padding-bottom: 3rem; }
  .telehealth-strip__headline { font-size: 1.875rem; }
}

/* ============================================================
   RESPONSIVE — 30rem
============================================================ */
@media (max-width: 30rem) {
  .location-section__headline { font-size: 1.875rem; }
  .location-section__map { height: 16.25rem; }
  .info-block__phone { font-size: 1.25rem; }
}
