.about-locations {
  --about-location-line: rgba(11, 90, 51, 0.2);
  --about-location-line: color-mix(in srgb, var(--green, #0b5a33) 20%, transparent);
  display: grid;
  gap: clamp(26px, 3.5vw, 44px);
  background: var(--surface, #fff);
}

.about-locations > * {
  box-sizing: border-box;
  width: 100%;
}

.about-locations-heading {
  display: grid;
  gap: 12px;
  justify-items: start;
}

.about-locations-heading > * {
  margin: 0;
}

.about-locations-heading h2 {
  max-width: 22ch;
  font-size: clamp(32px, 4.2vw, 62px);
  line-height: 1.04;
}

.about-location-list {
  border-top: 1px solid var(--about-location-line);
}

.about-location-row {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.42fr);
  gap: clamp(34px, 5.8vw, 84px);
  align-items: center;
  min-width: 0;
  padding: clamp(34px, 4.6vw, 62px) 0;
  border-bottom: 1px solid var(--about-location-line);
}

.about-location-row-copy,
.about-location-row-map {
  min-width: 0;
}

.about-location-row-copy h3 {
  margin: 0 0 clamp(24px, 3vw, 36px);
  color: var(--green, #0b5a33);
  font-size: clamp(28px, 3.2vw, 46px);
  line-height: 1.05;
}

.about-location-row-copy dl,
.about-location-row-copy dd {
  margin: 0;
}

.about-location-row-copy dl {
  display: grid;
  gap: clamp(20px, 2.6vw, 30px);
}

.about-location-row-copy dl > div {
  display: grid;
  gap: 8px;
}

.about-location-row-copy dt {
  color: var(--muted, #66726d);
  font-size: 11px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-location-row-copy dd {
  color: var(--navy, #082c32);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 560;
  line-height: 1.6;
  overflow-wrap: anywhere;
}

.about-location-row-map .about-location-map-preview {
  border: 1px solid var(--about-location-line);
  border-radius: var(--radius-card, 18px);
}

.about-location-row-map .about-location-map-attribution {
  display: inline-block;
  margin: 10px 2px 0;
}

.about-locations-table-wrap {
  overflow: hidden;
  border-top: 1px solid var(--about-location-line);
  border-bottom: 1px solid var(--about-location-line);
}

.about-locations-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
}

.about-locations-table caption {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.about-locations-table th,
.about-locations-table td {
  box-sizing: border-box;
  padding: 18px clamp(20px, 2.4vw, 36px);
  text-align: left;
  vertical-align: top;
}

.about-locations-table tr > * + * {
  border-left: 1px solid var(--about-location-line);
}

.about-locations-table thead th {
  padding-top: 22px;
  padding-bottom: 20px;
  color: var(--green, #0b5a33);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.about-locations-table thead th:first-child,
.about-locations-table tbody th {
  width: clamp(118px, 12vw, 170px);
}

.about-locations-table tbody th {
  padding-top: 24px;
  color: var(--muted, #66726d);
  font-size: 12px;
  font-weight: 650;
  letter-spacing: 0.04em;
}

.about-locations-table tbody td {
  padding-top: 22px;
  padding-bottom: 24px;
  color: var(--navy, #082c32);
  font-size: clamp(16px, 1.35vw, 19px);
  font-weight: 560;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.about-locations-table tbody tr + tr > * {
  padding-top: 10px;
  padding-bottom: 30px;
}

.about-locations-mobile {
  display: none;
}

.about-location-maps {
  display: grid;
  gap: 20px;
}

.about-location-maps > h3 {
  margin: 0;
  color: var(--navy, #082c32);
  font-size: clamp(23px, 2.4vw, 34px);
  line-height: 1.16;
}

.about-location-map-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.about-location-map-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--about-location-line);
  border-radius: var(--radius-card, 18px);
  background: var(--canvas, #f5f7f4);
}

.about-location-map-preview {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 2 / 1;
  color: inherit;
  background: var(--panel, #edf2ee);
}

.about-location-map-preview::after {
  position: absolute;
  inset: auto 0 0;
  height: 42%;
  background: linear-gradient(180deg, transparent, rgba(5, 42, 35, 0.54));
  content: "";
  pointer-events: none;
}

.about-location-map-preview img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), filter 180ms ease;
}

.about-location-map-preview:hover img,
.about-location-map-preview:focus-visible img {
  filter: saturate(1.06) contrast(1.02);
  transform: scale(1.015);
}

.about-location-map-preview:focus-visible {
  outline: 3px solid var(--green, #0b5a33);
  outline-offset: -3px;
}

.about-location-map-marker {
  position: absolute;
  z-index: 1;
  right: clamp(14px, 2vw, 22px);
  bottom: clamp(13px, 2vw, 20px);
  left: clamp(14px, 2vw, 22px);
  display: flex;
  gap: 11px;
  align-items: center;
  color: #f7faf8;
  pointer-events: none;
}

.about-location-map-marker .ph {
  flex: 0 0 auto;
  font-size: 26px;
}

.about-location-map-marker small,
.about-location-map-marker strong {
  display: block;
}

.about-location-map-marker small {
  margin-bottom: 2px;
  color: rgba(247, 250, 248, 0.78);
  font-size: 10px;
  font-weight: 680;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-location-map-marker strong {
  font-size: 16px;
  font-weight: 680;
}

.about-location-map-copy {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 2.2vw, 26px);
}

.about-location-map-copy h4,
.about-location-map-copy p {
  margin: 0;
}

.about-location-map-copy h4 {
  color: var(--navy, #082c32);
  font-size: 19px;
  line-height: 1.25;
}

.about-location-map-copy p {
  min-height: 3.2em;
  color: var(--muted, #66726d);
  font-size: 13px;
  line-height: 1.6;
}

.about-location-map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-top: 2px;
}

.about-location-map-actions a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 15px;
  border: 1px solid var(--about-location-line);
  border-radius: var(--radius-control, 999px);
  color: var(--green, #0b5a33);
  background: var(--surface, #fff);
  font-size: 12px;
  font-weight: 680;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color 180ms ease, color 180ms ease, transform 120ms ease;
}

.about-location-map-actions a:hover,
.about-location-map-actions a:focus-visible {
  color: #f7faf8;
  background: var(--green, #0b5a33);
}

.about-location-map-actions a:focus-visible {
  outline: 2px solid var(--green, #0b5a33);
  outline-offset: 2px;
}

.about-location-map-actions a:active {
  transform: translateY(1px);
}

.about-location-map-attribution {
  width: fit-content;
  color: var(--muted, #66726d);
  font-size: 10px;
  line-height: 1.4;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 3px;
}

.about-location-map-attribution:hover,
.about-location-map-attribution:focus-visible {
  color: var(--green, #0b5a33);
  text-decoration-color: currentColor;
}

.about-location-contacts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: 100%;
  max-width: none;
  justify-self: stretch;
  overflow: hidden;
  border: 1px solid var(--about-location-line);
  border-radius: var(--radius-card, 18px);
  background: var(--about-location-line);
}

.about-location-contact-link {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 22px clamp(18px, 2.5vw, 30px);
  color: inherit;
  background: var(--canvas, #f5f7f4);
  text-decoration: none;
  transition: background-color 180ms ease, color 180ms ease;
}

.about-location-contact-link:hover,
.about-location-contact-link:focus-visible {
  color: var(--green, #0b5a33);
  background: var(--green-soft, #edf5ef);
}

.about-location-contact-link:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: -3px;
}

.about-location-contact-link .ph {
  color: var(--green, #0b5a33);
  font-size: 26px;
}

.about-location-contact-link small,
.about-location-contact-link strong {
  display: block;
}

.about-location-contact-link small {
  margin-bottom: 4px;
  color: var(--muted, #66726d);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.about-location-contact-link strong {
  overflow-wrap: anywhere;
  font-size: clamp(13px, 1.25vw, 16px);
  font-weight: 620;
}

@media (max-width: 900px) {
  .about-location-row {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .about-location-row-copy {
    max-width: 42rem;
  }
}

@media (max-width: 760px) {
  .about-locations-heading,
  .about-location-contacts {
    grid-template-columns: 1fr;
  }

  .about-locations-heading h2 {
    max-width: 18ch;
  }

  .about-location-row {
    padding: 30px 0 34px;
  }

  .about-location-row-copy h3 {
    margin-bottom: 24px;
  }

  .about-locations-table-wrap {
    display: none;
  }

  .about-location-map-grid {
    grid-template-columns: 1fr;
  }

  .about-location-map-copy p {
    min-height: 0;
  }

  .about-location-map-card:last-child .about-location-map-copy {
    padding-bottom: calc(clamp(18px, 2.2vw, 26px) + 88px);
  }

  .about-locations-mobile {
    display: grid;
    border-top: 1px solid var(--about-location-line);
    border-bottom: 1px solid var(--about-location-line);
  }

  .about-location-card {
    min-width: 0;
    padding: 26px 0 30px;
  }

  .about-location-card + .about-location-card {
    border-top: 1px solid var(--about-location-line);
  }

  .about-location-city {
    margin: 0 0 22px;
    color: var(--green, #0b5a33);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
  }

  .about-location-card dl,
  .about-location-card dd {
    margin: 0;
  }

  .about-location-card dl {
    display: grid;
    gap: 22px;
  }

  .about-location-card dl > div {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .about-location-card dt {
    margin-bottom: 7px;
    color: var(--muted, #66726d);
    font-size: 12px;
    font-weight: 650;
    letter-spacing: 0.04em;
  }

  .about-location-card dd {
    color: var(--navy, #082c32);
    font-size: 16px;
    font-weight: 560;
    line-height: 1.6;
    overflow-wrap: anywhere;
  }
}

@media (max-width: 420px) {
  .about-location-map-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .about-location-map-actions a {
    padding-inline: 10px;
  }

  .about-location-map-actions a:only-child {
    grid-column: 1 / -1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .about-location-contact-link,
  .about-location-map-preview img,
  .about-location-map-actions a {
    transition: none;
  }
}
