/* ─── Locations ─────────────────────────────────────── */
.locations {
  background: var(--ink);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.locations::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(to right, transparent, rgba(235,95,53,.4), transparent);
  pointer-events: none;
}
.loc-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 56px;
  padding: 28px 0;
  border-block: 1px solid rgba(255,255,255,.1);
}
.loc-stats > div { display: flex; flex-direction: column; gap: 8px; }
.loc-stats .num {
  font-family: var(--font-display);
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 700;
  line-height: 1;
  color: var(--white);
  letter-spacing: -.01em;
}
.loc-stats .num em { color: var(--orange); font-style: normal; }
.loc-stats .lbl {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.5);
}

.loc-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 200px;
  gap: 14px;
  margin-top: 48px;
}
.loc-tile {
  position: relative;
  overflow: hidden;
  background: var(--navy-2);
  margin: 0;
  isolation: isolate;
  cursor: pointer;
}
.loc-tile picture {
  display: block;
  width: 100%;
  height: 100%;
}
.loc-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s var(--ease), filter .55s var(--ease);
  filter: saturate(0.9) brightness(0.82);
}
.loc-tile:hover img { transform: scale(1.05); filter: saturate(1.05) brightness(1); }
.loc-tile.l-feat { grid-column: span 7; grid-row: span 2; }
.loc-tile.l-half { grid-column: span 5; grid-row: span 1; }
.loc-tile.l-third { grid-column: span 4; grid-row: span 1; }

.loc-tile figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 20px 22px;
  display: flex; flex-direction: column; gap: 6px;
  background: linear-gradient(to top, rgba(10,24,40,.92) 0%, rgba(10,24,40,.55) 55%, rgba(10,24,40,0) 100%);
  z-index: 2;
}
.loc-tile .t-num {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .25em;
  color: var(--orange);
}
.loc-tile .t-title {
  font-family: var(--font-display);
  font-size: clamp(20px, 1.8vw, 30px);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: -.005em;
  line-height: 1;
  color: var(--white);
}
.loc-tile .t-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.loc-tile.l-feat .t-title { font-size: clamp(32px, 3vw, 50px); }
.loc-tile.l-feat figcaption { padding: 28px 32px; }
.loc-tile::after {
  content: "";
  position: absolute; inset: 0;
  border: 1px solid transparent;
  transition: border-color .35s var(--ease);
  pointer-events: none;
  z-index: 3;
}
.loc-tile:hover::after { border-color: var(--orange); }
.loc-tile .corner {
  position: absolute;
  top: 14px; left: 16px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: .25em;
  color: rgba(255,255,255,.65);
  z-index: 2;
  display: flex; align-items: center; gap: 8px;
}
.loc-tile .corner::before {
  content: ""; width: 6px; height: 6px;
  background: var(--orange);
  border-radius: 50%;
}

.loc-address {
  margin-top: 56px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.addr-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--orange);
}
.addr-line {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(24px, 2.4vw, 36px);
  text-transform: uppercase;
  letter-spacing: -.005em;
  color: var(--white);
}
.addr-line .sep { color: var(--orange); margin: 0 .3em; }

@media (max-width: 1000px) {
  .loc-grid { grid-auto-rows: 180px; }
  .loc-tile.l-feat .t-title { font-size: clamp(26px, 4.4vw, 36px); }
}
@media (max-width: 800px) {
  .loc-stats { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .loc-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 200px;
    gap: 10px;
  }
  .loc-tile.l-feat { grid-column: 1 / -1; grid-row: span 2; }
  .loc-tile.l-half,
  .loc-tile.l-third { grid-column: span 1; grid-row: span 1; }
  .loc-address { grid-template-columns: 1fr; gap: 16px; }
}
