@keyframes areaGridPanelBorder{
  0%, 100%{
    border-color: rgba(147, 197, 253, 0.35);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.92) inset,
      0 18px 48px rgba(15, 23, 42, 0.07),
      0 0 0 0 rgba(59, 130, 246, 0);
  }
  50%{
    border-color: rgba(96, 165, 250, 0.55);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.92) inset,
      0 18px 48px rgba(15, 23, 42, 0.07),
      0 0 24px rgba(59, 130, 246, 0.12);
  }
}

@keyframes areaGridCellBorder{
  0%, 100%{
    border-color: rgba(147, 197, 253, 0.4);
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  }
  50%{
    border-color: rgba(59, 130, 246, 0.72);
    box-shadow:
      0 1px 2px rgba(15, 23, 42, 0.04),
      0 0 16px rgba(96, 165, 250, 0.22);
  }
}

.areaGrid{
  --areaGrid-gap: 10px;
  --areaGrid-cell-w: 112px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  align-items: stretch;
  gap: var(--areaGrid-gap);
  width: fit-content;
  max-width: min(1080px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: clamp(18px, 2.8vw, 28px);
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.98) 0%, rgba(248, 250, 252, 0.96) 100%);
  border: 1px solid rgba(147, 197, 253, 0.35);
  border-radius: 20px;
  animation: areaGridPanelBorder 3.6s ease-in-out infinite;
}

.areaGrid--zips{
  --areaGrid-cell-w: 112px;
}

.areaGrid--cities{
  --areaGrid-cell-w: 168px;
}

.areaGrid--wide{
  max-width: min(1120px, 100%);
  --areaGrid-cell-w: 152px;
}

.areaGrid__cell{
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  flex: 0 0 var(--areaGrid-cell-w);
  width: var(--areaGrid-cell-w);
  max-width: var(--areaGrid-cell-w);
  min-height: 48px;
  padding: 12px 10px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
  color: #1e293b;
  text-decoration: none;
  text-align: center;
  word-break: break-word;
  background: #ffffff;
  border: 1px solid rgba(147, 197, 253, 0.45);
  border-radius: 12px;
  animation: areaGridCellBorder 3s ease-in-out infinite;
  transition:
    color 0.2s ease,
    background 0.2s ease,
    transform 0.2s ease;
}

.areaGrid__cell:nth-child(3n){
  animation-delay: 0.35s;
}

.areaGrid__cell:nth-child(3n + 1){
  animation-delay: 0.7s;
}

.areaGrid--zips .areaGrid__cell{
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.areaGrid__cell:hover{
  color: #0b5cff;
  border-color: rgba(37, 99, 235, 0.85);
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
  box-shadow:
    0 10px 28px rgba(11, 92, 255, 0.14),
    0 0 20px rgba(96, 165, 250, 0.28);
  transform: translateY(-2px);
  animation-play-state: paused;
}

.areaGrid__cell:focus-visible{
  outline: 2px solid #0b5cff;
  outline-offset: 2px;
}

.areaGrid--visible .areaGrid__cell{
  opacity: 1;
}

.areaGrid__empty{
  width: fit-content;
  max-width: min(720px, 100%);
  margin-left: auto;
  margin-right: auto;
  padding: 18px 22px;
  text-align: center;
  font-weight: 600;
  color: #64748b;
  background: rgba(248, 250, 252, 0.9);
  border: 1px dashed rgba(147, 197, 253, 0.55);
  border-radius: 14px;
}

@media (prefers-reduced-motion: reduce){
  .areaGrid,
  .areaGrid__cell{
    animation: none;
  }
}

@media (max-width: 640px){
  .areaGrid{
    padding: 14px;
    border-radius: 16px;
  }
  .areaGrid--zips{
    --areaGrid-cell-w: 96px;
  }
  .areaGrid--cities{
    --areaGrid-cell-w: 140px;
  }
  .areaGrid--wide{
    --areaGrid-cell-w: 140px;
  }
  .areaGrid__cell{
    min-height: 44px;
    padding: 10px 8px;
    font-size: 0.8125rem;
  }
}

@media (max-width: 440px){
  .areasServeSection__title{ font-size: 22px; }
  .areasServeSection__counts{ font-size: 13px; line-height: 1.5; }
  .areaGrid--zips{
    --areaGrid-cell-w: 88px;
  }
}

.citiesSection--premium .citiesSection__head{
  margin-bottom: 28px;
}

.cityDir{
  max-width: 1100px;
  margin: 0 auto;
}

.cityDir__toolbar{
  margin-bottom: 8px;
}

.cityDir__searchLabel{
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 520px;
  margin: 0 auto;
  padding: 12px 16px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow: 0 10px 34px rgba(15, 23, 42, 0.07);
}

.cityDir__searchIcon{
  flex-shrink: 0;
  color: #64748b;
  display: flex;
}

.cityDir__search{
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 16px;
  font-weight: 600;
  color: #0f172a;
  outline: none;
}

.cityDir__search::placeholder{
  color: #94a3b8;
  font-weight: 500;
}

.cityDir__hint{
  margin: 14px 0 0;
  text-align: center;
  font-size: 14px;
  color: #94a3b8;
  font-weight: 600;
}

.cityDir__alpha{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin: 22px 0 28px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.cityDir__alphaBtn{
  min-width: 38px;
  padding: 8px 11px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-align: center;
  color: #334155;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(15, 23, 42, 0.1);
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
  transition: background 0.18s ease, color 0.18s ease, border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.cityDir__alphaBtn:hover{
  background: #0b5cff;
  color: #fff;
  border-color: #0b5cff;
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(11, 92, 255, 0.25);
}

.cityDir__groups{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cityDir__group{
  scroll-margin-top: 150px;
  margin-bottom: 28px;
}

.cityDir__group:last-child{
  margin-bottom: 0;
}

.cityDir__letter{
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0b5cff;
}

.cityDir__letter span{
  display: inline-block;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(11, 92, 255, 0.28);
}

.cityDir__grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.citiesSection--premium .cityDir__item{
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.citiesSection--premium .cityDir__item:hover{
  transform: none;
  box-shadow: none;
}

.cityDir__link{
  display: flex;
  align-items: center;
  min-height: 46px;
  padding: 11px 15px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.05);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease, color 0.18s ease;
}

.cityDir__link:hover{
  border-color: rgba(11, 92, 255, 0.4);
  box-shadow: 0 10px 28px rgba(11, 92, 255, 0.12);
  transform: translateY(-2px);
  color: #0b5cff;
  background: #fff;
}

@media (max-width: 900px){
  .cityDir__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px){
  .cityDir__grid{
    grid-template-columns: 1fr;
  }

  .cityDir__searchLabel{
    max-width: none;
  }

  .cityDir__alpha{
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: 14px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }

  .cityDir__alphaBtn{
    flex: 0 0 auto;
  }
}

.citiesSection .citiesGrid:not(.citiesGrid--zips){
  margin: 12px auto 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px 12px;
  max-width: 1100px;
}

.citiesSection .citiesGrid:not(.citiesGrid--zips) .citiesGrid__item{
  background: #f6f8fc;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 12px;
  padding: 6px 10px;
  font-weight: 800;
  font-size: 12px;
  color: #0f172a;
  line-height: 1.1;
  box-shadow: 0 8px 16px rgba(2,6,23,.06);
  transition: transform .14s ease, box-shadow .14s ease;
}

.citiesSection .citiesGrid:not(.citiesGrid--zips) .citiesGrid__item:hover{
  transform: none;
  box-shadow: 0 10px 22px rgba(2,6,23,.10);
}

/* Responsive */
@media (max-width: 1100px){
  .citiesSection .citiesGrid:not(.citiesGrid--zips){ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 820px){
  .citiesSection .citiesGrid:not(.citiesGrid--zips){ grid-template-columns: repeat(4, minmax(0, 1fr)); }
}
@media (max-width: 520px){
  .citiesSection .citiesGrid:not(.citiesGrid--zips){ grid-template-columns: 1fr; }
}

/* State page: remove the small marker to keep cards compact */
.citiesSection .citiesGrid:not(.citiesGrid--zips) li::before{
  content: none;
}

/* Clickable city links */
.citiesGrid__link{
  display:block;
  width:100%;
  height:100%;
  text-decoration:none;
  color:inherit;
}

/* Premium city directory overrides (state page) */
.citiesSection--premium .cityDir__link.citiesGrid__link{
  display:flex;
  width:100%;
  height:auto;
  text-align:left;
}

/* State page: city names — left-aligned so multi-word names stay grouped (avoid justify spread) */
.citiesSection .citiesGrid:not(.citiesGrid--zips) .citiesGrid__link{
  text-align: left;
}

/* ZIP codes (city page) — clickable neighbourhood explorer */
.citiesGrid__zip{
  display: block;
  width: 100%;
  text-align: center;
  font-variant-numeric: tabular-nums;
}
button.citiesGrid__zip--btn{
  appearance: none;
  margin: 0;
  padding: 8px 10px;
  border: 1px solid rgba(11, 92, 255, 0.22);
  border-radius: 12px;
  background: linear-gradient(180deg, #fff 0%, #f8fafc 100%);
  font: inherit;
  font-weight: 700;
  color: #0f172a;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(2, 6, 23, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}
button.citiesGrid__zip--btn:hover{
  transform: translateY(-2px);
  border-color: rgba(11, 92, 255, 0.45);
  color: #0b5cff;
  box-shadow: 0 8px 22px rgba(11, 92, 255, 0.18);
}
button.citiesGrid__zip--btn:focus-visible{
  outline: 2px solid var(--brand, #0b5cff);
  outline-offset: 2px;
}
.citiesGrid--zips .citiesGrid__item:hover{
  transform: none;
}

/* Nearby cities (Areas We Serve subsection + landmark cards) */
.citiesSection__head--nearby{
  margin-top: clamp(32px, 4.5vw, 52px);
}

.nearbyCitiesList{
  margin-top: 8px;
}

/* Nearby cities — single-line professional heading + balanced city row */
.citiesSection__title--nearby{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem 0.65rem;
  text-transform: none;
  font-size: clamp(1.05rem, 2.1vw, 1.45rem);
  letter-spacing: 0.02em;
  line-height: 1.35;
  max-width: min(960px, 100%);
  margin-left: auto;
  margin-right: auto;
}

.citiesSection__titleLabel{
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  font-size: 0.92em;
  color: #0f172a;
  white-space: nowrap;
}

.citiesSection__titleDot{
  color: #94a3b8;
  font-weight: 500;
  font-size: 1.15em;
  line-height: 1;
  user-select: none;
}

.citiesSection__titleLocation{
  font-weight: 700;
  color: #334155;
  white-space: nowrap;
}

#areas.citiesSection .nearbyCitiesList--cities.areaGrid--cities{
  --areaGrid-gap: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  align-content: center;
  gap: var(--areaGrid-gap);
  width: 100%;
  max-width: min(1200px, 100%);
  margin-left: auto;
  margin-right: auto;
  overflow: visible;
  box-sizing: border-box;
}

#areas.citiesSection .nearbyCitiesList--cities .areaGrid__cell{
  flex: 0 1 auto;
  width: auto;
  min-width: min(100%, 108px);
  max-width: 100%;
  min-height: 48px;
  height: auto;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  word-break: normal;
  overflow-wrap: anywhere;
  padding: 12px 18px;
  line-height: 1.4;
  text-align: center;
}

#areas.citiesSection .nearbyLandmarksList.areaGrid--landmarks{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  max-width: min(1100px, 100%);
  overflow: visible;
}

#areas.citiesSection .nearbyLandmarksList .areaGrid__cell{
  flex: 0 1 auto;
  width: auto;
  min-width: 140px;
  max-width: 100%;
  white-space: normal;
  overflow: visible;
  text-overflow: unset;
  word-break: normal;
  overflow-wrap: anywhere;
  line-height: 1.4;
  padding: 12px 16px;
  min-height: 52px;
}

@media (max-width: 720px){
  .citiesSection__title--nearby{
    flex-direction: column;
    gap: 0.35rem;
  }

  .citiesSection__titleDot{
    display: none;
  }

  .citiesSection__titleLocation{
    white-space: normal;
  }

  #areas.citiesSection .nearbyCitiesList--cities .areaGrid__cell{
    flex: 1 1 calc(50% - var(--areaGrid-gap));
    min-width: calc(50% - var(--areaGrid-gap));
    max-width: 100%;
  }

  #areas.citiesSection .nearbyLandmarksList .areaGrid__cell{
    flex: 1 1 calc(50% - var(--areaGrid-gap));
    min-width: 0;
    max-width: none;
  }
}

.nav__areasSub--nearby{
  margin-top: 14px;
}

.landmarkHub__card--nearby{
  cursor: default;
}

.landmarkHub__card--nearby:hover{
  transform: none;
  box-shadow: var(--shadow-sm, 0 8px 24px rgba(15, 23, 42, .08));
}

.landmarkHub--nearby .landmarkHub__grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 20px;
}

.landmarkHub--nearby .landmarkHub__card--nearby{
  flex: 0 1 280px;
  max-width: 420px;
  width: 100%;
  text-align: left;
}

.landmarkHub--nearby .landmarkHub__cardTitle{
  margin-bottom: 10px;
}

.landmarkHub--nearby .landmarkHub__cardText{
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

/* Nearby city neighbourhood cards — no “AREA” kicker above each name */
.landmarkHub--nearby .landmarkHub__cardKicker{
  display: none;
}

/* City / service page — ZIP + nearby city grids */
#areas.citiesSection{
  padding: 48px 0 64px;
  background: #f8fafc;
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  text-align: center;
}

#areas.citiesSection .container{
  width: min(1200px, calc(100% - 40px));
}

#areas.citiesSection .areaGrid,
#areas.citiesSection .areaGrid__empty{
  margin-left: auto;
  margin-right: auto;
}

#areas.citiesSection .citiesSection__head{
  margin-bottom: 20px;
}

#areas.citiesSection .areaGrid + .citiesSection__head,
#areas.citiesSection .areaGrid__empty + .citiesSection__head{
  margin-top: clamp(28px, 4vw, 44px);
}

/* Neighbourhood hub — between metrics and services */
.landmarkHub{
  padding: 56px 0 64px;
  background:
    linear-gradient(180deg, #f8fafc 0%, #eef2ff 55%, #f1f5f9 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.landmarkHub__head{
  text-align: center;
  margin-bottom: 36px;
}

.landmarkHub__eyebrow{
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3b5bdb;
  text-align: center;
  text-justify: auto;
  width: 100%;
  padding-left: 0.2em;
}

.landmarkHub__title{
  margin: 0;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(22px, 2.8vw, 32px);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.landmarkHub__underline{
  width: 56px;
  height: 3px;
  border-radius: 999px;
  margin: 16px auto 0;
  background: linear-gradient(90deg, #0b5cff, #6366f1);
}

.landmarkHub__head--zip{
  margin-bottom: 40px;
}

.landmarkHub__zipHeadRow{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin: 0 0 14px;
}

.landmarkHub__zipHeadBadge{
  display: inline-flex;
  align-items: center;
  padding: 7px 16px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1e3a8a;
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
  border: 1px solid rgba(59, 130, 246, 0.22);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 8px 22px rgba(37, 99, 235, 0.08);
}

.landmarkHub__zipHeadDot{
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
}

.landmarkHub__zipHeadMeta{
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  letter-spacing: 0.02em;
}

.landmarkHub__sub--zip{
  margin: 14px auto 0;
  max-width: 520px;
  font-size: 15px;
  line-height: 1.6;
  color: #64748b;
  font-weight: 500;
  text-align: center;
}

.landmarkHub__grid{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch;
}

/* Primary city — centre postal-code neighbourhood cards under the heading (e.g. 1–2 cards) */
.landmarkHub:not(.landmarkHub--zip):not(.landmarkHub--nearby) .landmarkHub__grid{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
}

.landmarkHub:not(.landmarkHub--zip):not(.landmarkHub--nearby) .landmarkHub__card--link{
  flex: 0 1 280px;
  max-width: 360px;
  width: 100%;
}

.landmarkHub .metrics-section{
  padding: 0 0 40px;
  border-bottom: none;
  text-align: center;
}

.landmarkHub .metrics-intro{
  margin-left: auto;
  margin-right: auto;
}

.landmarkHub .metrics-grid{
  max-width: 960px;
  margin-left: auto;
  margin-right: auto;
}

.landmarkHub__card{
  position: relative;
  border-radius: 20px;
  padding: 22px 22px 24px;
  background: linear-gradient(180deg, #ffffff 0%, #fafbff 100%);
  border: 1px solid rgba(15, 23, 42, 0.08);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 18px 44px rgba(2, 6, 23, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.landmarkHub__card--link{
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

/* “Notable neighbourhoods by postal code”: neighbourhood first, then ZIP */
.landmarkHub__card--link .landmarkHub__cardTitle{
  order: 1;
  margin: 0 0 8px;
}
.landmarkHub__card--link .landmarkHub__cardZip{
  order: 2;
  margin: 0 0 12px;
}
.landmarkHub__card--link .landmarkHub__cardCta{
  order: 3;
  width: 100%;
  text-align: center;
}

.landmarkHub__card--link:hover{
  transform: translateY(-4px);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 1) inset,
    0 24px 56px rgba(11, 92, 255, 0.12);
}

.landmarkHub__cardKicker{
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
  margin-bottom: 8px;
}

.landmarkHub__cardZip{
  display: inline-block;
  font-size: 12px;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.12em;
  color: #3b5bdb;
  margin-bottom: 10px;
}

.landmarkHub__cardTitle{
  margin: 0 0 12px;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.landmarkHub__cardText{
  margin: 0 0 10px;
  font-size: 14px;
  line-height: 1.55;
  color: #475569;
}

.landmarkHub__cardText:last-child{
  margin-bottom: 0;
}

.landmarkHub__cardCta{
  margin-top: auto;
  padding-top: 14px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0b5cff;
}

@media (max-width: 520px){
  .landmarkHub{
    padding: 44px 0 48px;
  }
  .landmarkHub__grid{
    grid-template-columns: 1fr;
  }
}

/* ZIP page — tabbed spotlight (one neighbourhood at a time) */
@keyframes landmarkHubTabsBorder{
  0%, 100%{
    border-color: rgba(147, 197, 253, 0.32);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 12px 32px rgba(15, 23, 42, 0.06),
      0 0 0 0 rgba(59, 130, 246, 0);
  }
  50%{
    border-color: rgba(96, 165, 250, 0.62);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.9) inset,
      0 12px 32px rgba(15, 23, 42, 0.06),
      0 0 24px rgba(59, 130, 246, 0.14);
  }
}

@keyframes landmarkHubPanelBorder{
  0%, 100%{
    border-color: rgba(147, 197, 253, 0.38);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98) inset,
      0 28px 64px -24px rgba(15, 23, 42, 0.18),
      0 14px 36px rgba(2, 6, 23, 0.06),
      0 0 0 0 rgba(59, 130, 246, 0);
  }
  50%{
    border-color: rgba(59, 130, 246, 0.7);
    box-shadow:
      0 1px 0 rgba(255, 255, 255, 0.98) inset,
      0 28px 64px -24px rgba(15, 23, 42, 0.18),
      0 14px 36px rgba(2, 6, 23, 0.06),
      0 0 32px rgba(96, 165, 250, 0.22);
  }
}

@keyframes landmarkHubTabIdleBorder{
  0%, 100%{
    border-color: rgba(147, 197, 253, 0.22);
    box-shadow: none;
  }
  50%{
    border-color: rgba(96, 165, 250, 0.48);
    box-shadow: 0 0 12px rgba(59, 130, 246, 0.1);
  }
}

@keyframes landmarkHubTabActiveBorder{
  0%, 100%{
    border-color: rgba(96, 165, 250, 0.55);
    box-shadow:
      0 10px 28px rgba(15, 23, 42, 0.22),
      0 1px 0 rgba(255, 255, 255, 0.12) inset,
      0 0 0 0 rgba(59, 130, 246, 0);
  }
  50%{
    border-color: rgba(147, 197, 253, 0.85);
    box-shadow:
      0 10px 28px rgba(15, 23, 42, 0.22),
      0 1px 0 rgba(255, 255, 255, 0.12) inset,
      0 0 22px rgba(96, 165, 250, 0.35);
  }
}

.landmarkHub--zip .landmarkHub__grid--zip{
  display: block;
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}

.landmarkHub__zipSpotlight{
  position: relative;
}

.landmarkHub--zip .landmarkHub__zipTabsWrap{
  margin: 0 0 22px;
  padding: 4px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(147, 197, 253, 0.35);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.9) inset,
    0 12px 32px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  animation: landmarkHubTabsBorder 3.6s ease-in-out infinite;
}

.landmarkHub__zipTabs{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.landmarkHub--zip .landmarkHub__zipTab{
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 12px 14px;
  margin: 0;
  border: 1px solid rgba(147, 197, 253, 0.22);
  border-radius: 12px;
  background: transparent;
  color: #475569;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
  text-align: center;
  cursor: pointer;
  width: 100%;
  min-width: 0;
  min-height: 48px;
  max-width: none;
  animation: landmarkHubTabIdleBorder 3.2s ease-in-out infinite;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}

.landmarkHub--zip .landmarkHub__zipTab:nth-child(3n){
  animation-delay: 0.35s;
}

.landmarkHub--zip .landmarkHub__zipTab:nth-child(3n + 1){
  animation-delay: 0.7s;
}

.landmarkHub--zip .landmarkHub__zipTab:hover{
  animation-play-state: paused;
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(96, 165, 250, 0.55);
  color: #0f172a;
  box-shadow: 0 0 14px rgba(59, 130, 246, 0.12);
}

.landmarkHub--zip .landmarkHub__zipTab[aria-selected="true"]{
  background: linear-gradient(145deg, #0f172a 0%, #1e3a5f 100%);
  color: #f8fafc;
  animation: landmarkHubTabActiveBorder 2.8s ease-in-out infinite;
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.22),
    0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.landmarkHub--zip .landmarkHub__zipTab[aria-selected="true"]:hover{
  color: #fff;
  transform: translateY(-1px);
  animation-play-state: paused;
  border-color: rgba(191, 219, 254, 0.9);
  box-shadow:
    0 10px 28px rgba(15, 23, 42, 0.22),
    0 0 24px rgba(96, 165, 250, 0.35);
}

.landmarkHub__zipTab:focus-visible{
  outline: 2px solid #2563eb;
  outline-offset: 3px;
}

.landmarkHub__zipTab[aria-selected="true"]:focus-visible{
  outline-color: #93c5fd;
}

.landmarkHub__zipTabIx{
  flex-shrink: 0;
  min-width: 2.1em;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  opacity: 0.75;
}

.landmarkHub__zipTab[aria-selected="true"] .landmarkHub__zipTabIx{
  opacity: 0.95;
  color: #93c5fd;
}

.landmarkHub__zipTabLbl{
  display: block;
  width: 100%;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
  line-height: 1.3;
}

@media (min-width: 768px){
  .landmarkHub__zipTabs{
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 640px){
  .landmarkHub--zip .landmarkHub__zipTabsWrap{
    padding: 8px 0;
    overflow: hidden;
  }

  .landmarkHub__zipTabs{
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 12px;
    padding: 0 12px 10px;
    margin: 0;
    gap: 10px;
    scrollbar-width: thin;
  }

  .landmarkHub--zip .landmarkHub__zipTab{
    flex: 0 0 auto;
    width: auto;
    min-width: 156px;
    max-width: 200px;
    scroll-snap-align: start;
    padding: 12px 16px;
  }
}

.landmarkHub__zipPanel{
  outline: none;
}

.landmarkHub--zip .landmarkHub__zipPanelInner{
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 55%, #f1f5f9 100%);
  border: 1px solid rgba(147, 197, 253, 0.4);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.98) inset,
    0 28px 64px -24px rgba(15, 23, 42, 0.18),
    0 14px 36px rgba(2, 6, 23, 0.06);
  animation: landmarkHubPanelBorder 3.4s ease-in-out infinite;
}

.landmarkHub__zipPanelInner{
  position: relative;
  border-radius: 24px;
  overflow: hidden;
}

.landmarkHub__zipPanelAccent{
  height: 4px;
  width: 100%;
  background: linear-gradient(90deg, #0b5cff, #6366f1, #a855f7);
  opacity: 0.95;
}

.landmarkHub__zipPanelBody{
  padding: 28px 32px 34px;
}

.landmarkHub__zipPlace{
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #64748b;
}

.landmarkHub__zipPanelTitle{
  margin: 0 0 18px;
  font-family: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  font-size: clamp(22px, 2.4vw, 30px);
  font-weight: 800;
  letter-spacing: -0.035em;
  line-height: 1.18;
  color: #0f172a;
}

.landmarkHub__zipProse{
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 65ch;
}

.landmarkHub__zipLead{
  margin: 0;
  font-size: 16px;
  line-height: 1.65;
  font-weight: 500;
  color: #334155;
}

.landmarkHub__zipPara{
  margin: 0;
  font-size: 14.5px;
  line-height: 1.62;
  color: #64748b;
}

@media (max-width: 520px){
  .landmarkHub__zipPanelBody{
    padding: 22px 20px 26px;
  }
}

/* ZIP page — neighbourhood block: scroll reveal + stagger + hover polish */
.landmarkHub--zip{
  position: relative;
  overflow: hidden;
  padding: 64px 0 76px;
  background:
    linear-gradient(180deg, #e8edf5 0%, #eef2ff 38%, #f8fafc 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.landmarkHub--zip::before{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(140px, 28vh);
  background: radial-gradient(ellipse 90% 100% at 50% 0%, rgba(11, 92, 255, 0.09), transparent 72%);
  pointer-events: none;
  z-index: 0;
}

.landmarkHub--zip .container{
  position: relative;
  z-index: 1;
}

.landmarkHub--zip .landmarkHub__head .landmarkHub__eyebrow,
.landmarkHub--zip .landmarkHub__head .landmarkHub__title{
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

.landmarkHub--zip .landmarkHub__head .landmarkHub__title{
  transition-delay: 0.06s;
}

.landmarkHub--zip .landmarkHub__head .landmarkHub__zipHeadRow,
.landmarkHub--zip .landmarkHub__head .landmarkHub__sub--zip{
  opacity: 0;
  transform: translateY(14px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.landmarkHub--zip .landmarkHub__head .landmarkHub__zipHeadRow{
  transition-delay: 0.04s;
}

.landmarkHub--zip .landmarkHub__head .landmarkHub__sub--zip{
  transition-delay: 0.14s;
}

.landmarkHub--zip.landmarkHub--inview .landmarkHub__head .landmarkHub__zipHeadRow,
.landmarkHub--zip.landmarkHub--inview .landmarkHub__head .landmarkHub__sub--zip{
  opacity: 1;
  transform: translateY(0);
}

.landmarkHub--zip .landmarkHub__head .landmarkHub__underline{
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.12s;
}

.landmarkHub--zip.landmarkHub--inview .landmarkHub__head .landmarkHub__eyebrow,
.landmarkHub--zip.landmarkHub--inview .landmarkHub__head .landmarkHub__title{
  opacity: 1;
  transform: translateY(0);
}

.landmarkHub--zip.landmarkHub--inview .landmarkHub__head .landmarkHub__underline{
  transform: scaleX(1);
}

.landmarkHub--zip .landmarkHub__zipSpotlight{
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: 0.12s;
  will-change: opacity, transform;
}

.landmarkHub--zip.landmarkHub--inview .landmarkHub__zipSpotlight{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .landmarkHub--zip .landmarkHub__head .landmarkHub__eyebrow,
  .landmarkHub--zip .landmarkHub__head .landmarkHub__title,
  .landmarkHub--zip .landmarkHub__head .landmarkHub__zipHeadRow,
  .landmarkHub--zip .landmarkHub__head .landmarkHub__sub--zip{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .landmarkHub--zip .landmarkHub__head .landmarkHub__underline{
    transform: scaleX(1) !important;
    transition: none !important;
  }
  .landmarkHub--zip .landmarkHub__zipSpotlight{
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
    will-change: auto;
  }
  .landmarkHub--zip .landmarkHub__zipTabsWrap,
  .landmarkHub--zip .landmarkHub__zipTab,
  .landmarkHub--zip .landmarkHub__zipPanelInner{
    animation: none !important;
  }
}

/* Areas We Serve nav flyout (City + Near By City) */
.main-header .has-dropdown .dropdown.nav-dropdown-content,
.nav-dropdown-content:has(.areasServeZipFlyout) {
  padding: 0 !important;
  overflow: hidden !important;
  max-height: none !important;
  min-width: min(320px, calc(100vw - 32px));
  border-radius: 0 0 12px 12px;
}

.areasServeZipFlyout {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 280px;
  max-height: min(520px, 72vh);
  overflow: hidden;
}

.areasServeZipFlyout__section {
  display: flex;
  flex-direction: column;
  min-height: 0;
  flex: 1 1 50%;
  border-bottom: 1px solid #e2e8f0;
}

.areasServeZipFlyout__section--nearby {
  border-bottom: 0;
}

.areasServeZipFlyout__head {
  flex-shrink: 0;
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 12px 16px 10px;
  margin: 0;
  font-weight: 800;
  font-size: 11px;
  line-height: 1.2;
  color: #475569;
  text-align: left;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
}

.areasServeZipFlyout__head--nearby {
  border-top: 0;
}

.areasServeZipFlyout__list {
  flex: 1 1 auto;
  min-height: 0;
  max-height: min(220px, 34vh);
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(100, 116, 139, 0.45) transparent;
  padding: 6px 4px 10px;
}

.areasServeZipFlyout__list--city {
  scrollbar-color: rgba(37, 99, 235, 0.55) transparent;
}

.areasServeZipFlyout__list--nearby {
  scrollbar-color: rgba(13, 148, 136, 0.55) transparent;
}

.areasServeZipFlyout__list::-webkit-scrollbar {
  width: 6px;
}

.areasServeZipFlyout__list::-webkit-scrollbar-track {
  background: rgba(241, 245, 249, 0.9);
  border-radius: 999px;
  margin: 4px 0;
}

.areasServeZipFlyout__list--city::-webkit-scrollbar-thumb {
  background: rgba(37, 99, 235, 0.55);
  border-radius: 999px;
}

.areasServeZipFlyout__list--nearby::-webkit-scrollbar-thumb {
  background: rgba(13, 148, 136, 0.55);
  border-radius: 999px;
}

.areasServeZipFlyout__list .dropdown-item,
.areasServeZipFlyout__list .nav__areaLink {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 14px 10px 12px;
  margin: 0;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.25;
  text-align: left;
  text-decoration: none;
  color: #1e293b;
  border-radius: 8px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.2s ease, color 0.2s ease;
}

.areasServeZipFlyout__list .nav__areaLink:hover {
  background: rgba(11, 63, 191, 0.06);
  color: #0b3fbf;
  padding-left: 12px;
}

.areasServeZipFlyout__list .nav__areaLabel {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}

.areasServeZipFlyout__empty {
  margin: 0;
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-align: left;
}

/* ── City page: premium landmark showcase (split nav + panel) ─────────────── */

.landmarkHub--showcase {
  position: relative;
  padding: clamp(56px, 7vw, 88px) 0;
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(11, 63, 191, 0.07), transparent 55%),
    linear-gradient(180deg, #f8fafc 0%, #f1f5f9 48%, #eef2ff 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  overflow: hidden;
}

.landmarkHub--showcase .landmarkHub__head--showcase {
  margin-bottom: clamp(28px, 4vw, 44px);
}

.landmarkHub--showcase .landmarkHub__eyebrow {
  margin-bottom: 12px;
  color: var(--landmark-accent, #0b3fbf);
  letter-spacing: 0.16em;
}

.landmarkHub--showcase .landmarkHub__title {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 800;
  letter-spacing: -0.035em;
}

.landmarkHub--showcase .landmarkHub__sub--zip {
  max-width: 640px;
  font-size: 16px;
  line-height: 1.65;
  color: #475569;
}

.landmarkHub--showcase .landmarkHub__grid--showcase {
  display: block;
  max-width: 1120px;
  margin: 0 auto;
}

.landmarkShowcase {
  --landmark-accent: #0b3fbf;
  --landmark-accent-soft: rgba(11, 63, 191, 0.1);
  --landmark-ink: #0f172a;
  --landmark-muted: #64748b;
  --landmark-border: rgba(15, 23, 42, 0.08);
  --landmark-radius: 22px;
}

.landmarkShowcase__layout {
  display: grid;
  grid-template-columns: minmax(280px, 340px) minmax(0, 1fr);
  gap: 0;
  align-items: stretch;
  border-radius: var(--landmark-radius);
  overflow: hidden;
  border: 1px solid var(--landmark-border);
  box-shadow:
    0 1px 0 rgba(255, 255, 255, 0.95) inset,
    0 24px 64px -32px rgba(15, 23, 42, 0.28),
    0 8px 24px rgba(15, 23, 42, 0.06);
  background: #fff;
}

.landmarkShowcase__nav {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 10px;
  background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  max-height: min(560px, 70vh);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(148, 163, 184, 0.5) transparent;
}

.landmarkShowcase__navItem {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 14px 14px 14px 12px;
  border: 1px solid transparent;
  border-radius: 14px;
  background: transparent;
  color: #cbd5e1;
  font-family: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    background 0.22s ease,
    color 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.landmarkShowcase__navItem:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #f8fafc;
}

.landmarkShowcase__navItem[aria-selected="true"],
.landmarkShowcase__navItem.is-active {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.06) 100%);
  border-color: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.landmarkShowcase__navMarker {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #93c5fd;
}

.landmarkShowcase__navItem[aria-selected="true"] .landmarkShowcase__navMarker,
.landmarkShowcase__navItem.is-active .landmarkShowcase__navMarker {
  background: var(--landmark-accent, #0b3fbf);
  color: #fff;
}

.landmarkShowcase__navCopy {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.landmarkShowcase__navTitle {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: inherit;
}

.landmarkShowcase__navExcerpt {
  display: block;
  font-size: 12px;
  line-height: 1.45;
  font-weight: 500;
  color: #94a3b8;
  opacity: 0.92;
}

.landmarkShowcase__navItem[aria-selected="true"] .landmarkShowcase__navExcerpt,
.landmarkShowcase__navItem.is-active .landmarkShowcase__navExcerpt {
  color: #cbd5e1;
}

.landmarkShowcase__navChevron {
  flex-shrink: 0;
  display: none;
  align-self: center;
  opacity: 0.55;
}

.landmarkShowcase__stage {
  position: relative;
  min-height: 320px;
  background: linear-gradient(165deg, #ffffff 0%, #f8fafc 100%);
}

.landmarkShowcase__panel {
  height: 100%;
  animation: landmarkPanelIn 0.35s ease;
}

.landmarkShowcase__panel[hidden] {
  display: none !important;
}

@keyframes landmarkPanelIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.landmarkShowcase__panelCard {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: clamp(24px, 3.5vw, 36px) clamp(22px, 3.2vw, 40px) clamp(28px, 3.5vw, 40px);
}

.landmarkShowcase__panelTop {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 22px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(15, 23, 42, 0.07);
}

.landmarkShowcase__panelIcon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  color: var(--landmark-accent, #0b3fbf);
  background: var(--landmark-accent-soft, rgba(11, 63, 191, 0.1));
  border: 1px solid rgba(11, 63, 191, 0.12);
}

.landmarkShowcase__panelMeta {
  flex: 1 1 auto;
  min-width: 0;
}

.landmarkShowcase__panelEyebrow {
  margin: 0 0 6px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--landmark-muted, #64748b);
}

.landmarkShowcase__panelTitle {
  margin: 0;
  font-family: "Source Sans 3", "Inter", system-ui, sans-serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.03em;
  color: var(--landmark-ink, #0f172a);
}

.landmarkShowcase__panelIndex {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.08em;
  color: #94a3b8;
  padding: 8px 12px;
  border-radius: 999px;
  background: #f1f5f9;
  border: 1px solid rgba(15, 23, 42, 0.06);
}

.landmarkShowcase__panelBody {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 68ch;
}

.landmarkShowcase__panelText {
  margin: 0;
  font-size: 15px;
  line-height: 1.68;
  color: var(--landmark-muted, #64748b);
}

.landmarkShowcase__panelText--lead {
  font-size: 17px;
  line-height: 1.65;
  font-weight: 500;
  color: #334155;
}

/* Scroll reveal for showcase section */
.landmarkHub--showcase .landmarkHub__head .landmarkHub__eyebrow,
.landmarkHub--showcase .landmarkHub__head .landmarkHub__title,
.landmarkHub--showcase .landmarkHub__head .landmarkHub__zipHeadRow,
.landmarkHub--showcase .landmarkHub__head .landmarkHub__sub--zip {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
}

.landmarkHub--showcase .landmarkHub__head .landmarkHub__underline {
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.08s;
}

.landmarkHub--showcase .landmarkShowcase {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s,
    transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) 0.1s;
}

.landmarkHub--showcase.landmarkHub--inview .landmarkHub__head .landmarkHub__eyebrow,
.landmarkHub--showcase.landmarkHub--inview .landmarkHub__head .landmarkHub__title,
.landmarkHub--showcase.landmarkHub--inview .landmarkHub__head .landmarkHub__zipHeadRow,
.landmarkHub--showcase.landmarkHub--inview .landmarkHub__head .landmarkHub__sub--zip {
  opacity: 1;
  transform: translateY(0);
}

.landmarkHub--showcase.landmarkHub--inview .landmarkHub__head .landmarkHub__underline {
  transform: scaleX(1);
}

.landmarkHub--showcase.landmarkHub--inview .landmarkShowcase {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .landmarkShowcase__layout {
    grid-template-columns: 1fr;
    border-radius: 18px;
  }

  .landmarkShowcase__nav {
    flex-direction: column;
    max-height: none;
    overflow: visible;
    padding: 8px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .landmarkShowcase__navItem {
    padding: 12px;
  }

  .landmarkShowcase__navChevron {
    display: flex;
  }

  .landmarkShowcase__navExcerpt {
    display: none;
  }

  .landmarkShowcase__stage {
    min-height: 0;
  }

  .landmarkShowcase__panelCard {
    padding: 20px 18px 24px;
  }

  .landmarkShowcase__panelTop {
    flex-wrap: wrap;
    gap: 12px;
  }

  .landmarkShowcase__panelIndex {
    order: -1;
    width: 100%;
    text-align: center;
  }
}

@media (prefers-reduced-motion: reduce) {
  .landmarkShowcase__panel {
    animation: none;
  }

  .landmarkHub--showcase .landmarkHub__head .landmarkHub__eyebrow,
  .landmarkHub--showcase .landmarkHub__head .landmarkHub__title,
  .landmarkHub--showcase .landmarkHub__head .landmarkHub__zipHeadRow,
  .landmarkHub--showcase .landmarkHub__head .landmarkHub__sub--zip,
  .landmarkHub--showcase .landmarkShowcase {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .landmarkHub--showcase .landmarkHub__head .landmarkHub__underline {
    transform: scaleX(1) !important;
  }
}

.landmarkShowcase__more {
  max-width: 920px;
  margin: clamp(28px, 4vw, 40px) auto 0;
  padding: 24px 26px 26px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(15, 23, 42, 0.07);
  box-shadow: 0 10px 32px rgba(15, 23, 42, 0.05);
}

.landmarkShowcase__moreHead {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 16px;
}

.landmarkShowcase__moreTitle {
  margin: 0;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.01em;
  color: #0f172a;
}

.landmarkShowcase__moreMeta {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
}

.landmarkShowcase__chipList {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(148px, 1fr));
  gap: 8px 10px;
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 148px;
  overflow-y: auto;
  scrollbar-width: thin;
}

@media (max-width: 640px) {
  .landmarkShowcase__chipList {
    max-height: none;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .landmarkShowcase__chipItem {
    font-size: 14px;
    padding: 10px 12px;
  }
}

.landmarkShowcase__chipItem {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  color: #334155;
  background: #f8fafc;
  border: 1px solid rgba(15, 23, 42, 0.08);
  line-height: 1.3;
  text-align: center;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
}