.page-hero--locations {
  background:
    radial-gradient(ellipse 85% 65% at 18% 12%, rgb(20 170 60 / 0.1) 0%, transparent 58%),
    linear-gradient(180deg, #fff 0%, #eef9f2 100%);
  padding: clamp(48px, 6vw, 72px) 0;
}

.page-hero--locations .page-hero__subtitle {
  margin: 0 0 12px;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--color-heading, #17202a);
}

.locations-hero__media img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.locations-map-band {
  padding: 0 0 clamp(40px, 5vw, 56px);
  background: linear-gradient(180deg, #eef9f2 0%, #fff 100%);
}

.locations-map-band__frame {
  padding: clamp(20px, 3vw, 28px);
  border-radius: 16px;
  background: #e8f7ef;
  border: 1px solid rgb(20 170 60 / 0.12);
}

.locations-map-band__frame img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  max-height: 420px;
  object-fit: contain;
  border-radius: 16px 16px 32px 32px;
}

.locations-list-section .section-intro {
  max-width: 52ch;
  margin-bottom: 28px;
}

.location-region {
  font-size: clamp(1.25rem, 2.5vw, 1.5rem);
  font-weight: 700;
  margin: 32px 0 16px;
  padding-top: 8px;
  border-top: 1px solid var(--color-border);
}

.location-region:first-of-type {
  border-top: none;
  margin-top: 0;
}

.location-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.location-row {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto auto auto;
  gap: 6px 12px;
  align-items: center;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  color: inherit;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.location-row:hover {
  box-shadow: var(--shadow-md);
}

.location-row__main {
  grid-column: 1;
  grid-row: 1;
}

.location-row__tags {
  grid-column: 2;
  grid-row: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: flex-end;
}

.location-row__tag {
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--color-bg-mint);
  color: var(--color-primary-dark);
}

.location-row__addrs {
  grid-column: 1 / -1;
  grid-row: 2;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.location-row__addr {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

.location-row__chev {
  display: none;
}

@media (min-width: 768px) {
  .location-row {
    grid-template-columns: minmax(200px, 1fr) auto 1fr auto;
    grid-template-rows: auto;
    align-items: center;
  }

  .location-row__tags {
    grid-column: 2;
    grid-row: 1;
  }

  .location-row__addrs {
    grid-column: 3;
    grid-row: 1;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px 24px;
  }

  .location-row__chev {
    display: block;
    grid-column: 4;
    grid-row: 1;
    color: var(--color-text-muted);
    font-size: 1.25rem;
  }
}

.locations-icon-grid__grid {
  display: grid;
  gap: 32px 24px;
}

@media (min-width: 768px) {
  .locations-icon-grid__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .locations-icon-grid__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.locations-icon-grid__item {
  padding: 8px 4px;
}

.locations-icon-grid__item h2 {
  margin: 0 0 8px;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.3;
}

.locations-icon-grid__item p {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--color-text-muted);
}

.locations-icon-grid__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 48px;
  height: 48px;
  margin-bottom: 12px;
  color: var(--color-primary, #14aa3c);
}

.locations-icon-grid__icon svg {
  width: 40px;
  height: 40px;
}

.locations-featured {
  padding: clamp(48px, 6vw, 72px) 0;
}

.locations-featured__inner {
  display: grid;
  gap: 40px;
  align-items: center;
}

@media (min-width: 1024px) {
  .locations-featured__inner {
    grid-template-columns: 1fr minmax(280px, 38%);
    gap: 48px;
  }
}

.locations-featured .featured-quote__tag {
  margin: 0 0 12px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.85);
}

.locations-featured h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.2;
  color: #fff;
}

.locations-featured__text {
  margin: 0;
  max-width: 56ch;
  font-size: 1.05rem;
  line-height: 1.65;
  font-style: normal;
  color: rgba(255, 255, 255, 0.92);
}

.locations-featured__decor {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.locations-featured__decor-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.locations-featured__decor-card svg {
  width: 48px;
  height: 48px;
  opacity: 0.9;
}

.cta-banner--locations .cta-banner__copy {
  flex: 1 1 280px;
}

.cta-banner--locations h2 {
  margin: 0;
}

.cta-banner--locations .cta-banner__line2 {
  margin: 4px 0 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  color: #fff;
}
