/* ─── Locations Hero ─── */
.loc-hero {
  background: #000;
  padding: 160px 2rem 80px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.loc-hero__inner { max-width: 1280px; margin: 0 auto; }
.loc-hero__eyebrow {
  font-family: "Sohne", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #0a5bff;
  margin-bottom: 1.5rem;
}
.loc-hero__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(5rem, 14vw, 12rem);
  line-height: 0.88;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0;
}

/* ─── Location rows ─── */
.loc-list { background: #000; }

.loc-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.loc-row--reverse { direction: rtl; }
.loc-row--reverse > * { direction: ltr; }

.loc-img {
  overflow: hidden;
  position: relative;
  background: #111;
}
.loc-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.loc-row:hover .loc-img img { transform: scale(1.04); }

.loc-img--flag { background: #060606; }
.loc-flag-display {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(6rem, 18vw, 14rem);
  line-height: 1;
  user-select: none;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.loc-row:hover .loc-flag-display { transform: scale(1.08); }

.loc-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 5rem;
}
.loc-content__num {
  font-family: "Sohne", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 2rem;
}
.loc-content__name {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 0.92;
  color: #fff;
  letter-spacing: -0.03em;
  margin: 0 0 0.5rem;
}
.loc-content__country {
  font-family: "Sohne", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #0a5bff;
  margin-bottom: 2rem;
}
.loc-content__desc {
  font-family: "Sohne", sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: #666;
  max-width: 440px;
  text-transform: none;
  margin-bottom: 2.5rem;
}
.loc-content__link {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: "Sohne", sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.9rem 2rem;
  border-radius: 999px;
  transition: background 0.2s ease, border-color 0.2s ease;
  width: fit-content;
}
.loc-content__link:hover { background: rgba(255,255,255,0.06); border-color: rgba(255,255,255,0.3); }
.loc-content__link .arr { transition: transform 0.2s ease; }
.loc-content__link:hover .arr { transform: translateX(4px); }

/* ─── CTA ─── */
.loc-cta {
  background: #000;
  padding: 8rem 2rem 10rem;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
}
.loc-cta__inner { max-width: 680px; margin: 0 auto; }
.loc-cta__eyebrow {
  font-family: "Sohne", sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.38em;
  text-transform: uppercase;
  color: #0a5bff;
  margin-bottom: 1.25rem;
}
.loc-cta__title {
  font-family: "Bebas Neue", sans-serif;
  font-size: clamp(3rem, 6vw, 5rem);
  line-height: 0.97;
  color: #fff;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
}
.loc-cta__copy {
  font-family: "Sohne", sans-serif;
  font-size: 1rem;
  line-height: 1.85;
  color: #666;
  max-width: 480px;
  margin: 0 auto 2.5rem;
  text-transform: none;
}

/* ─── Responsive ─── */
@media screen and (max-width: 980px) {
  .loc-row, .loc-row--reverse { grid-template-columns: 1fr; min-height: auto; direction: ltr; }
  .loc-img { height: 60vw; min-height: 280px; order: 1; }
  .loc-content { order: 2; padding: 3.5rem 2rem; }
  .loc-content__desc { max-width: 100%; }
}
@media screen and (max-width: 640px) {
  .loc-hero { padding: 140px 1.25rem 60px; }
  .loc-content { padding: 2.5rem 1.25rem; }
}
