/* satellite.somemaps.com - one stylesheet for every page, 2026-09-23 */
:root {
  --ink: #0f1b2d;
  --muted: #5a6678;
  --line: #e1e7ef;
  --bg: #f2f5f9;
  --card: #ffffff;
  --accent: #0b6bcb;
  --accent-soft: #e7f0fb;
  --night: #0b1f33;
  --night-2: #12304d;
  --hot: #f5a524;
  --hot-ink: #1d1400;
  --radius: 14px;
  --shadow: 0 1px 2px rgba(15, 27, 45, .06), 0 4px 16px rgba(15, 27, 45, .05);
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font: 15px/1.5 "Segoe UI", system-ui, -apple-system, Roboto, "Helvetica Neue", Arial, sans-serif;
}
a { color: var(--accent); }
img, iframe { max-width: 100%; }
button { font: inherit; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.top {
  position: sticky; top: 0; z-index: 30;
  background: var(--night);
  box-shadow: 0 1px 0 rgba(255, 255, 255, .06), 0 2px 10px rgba(0, 0, 0, .18);
}
.top-in {
  max-width: 1640px; margin: 0 auto; padding: 10px 16px;
  display: flex; align-items: center; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 9px; color: #fff; text-decoration: none; flex: none; }
.brand-mark { width: 30px; height: 30px; }
.brand-name { font-weight: 700; font-size: 18px; letter-spacing: -.01em; }
.brand-sub {
  font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
  color: #8fb3d6; border-left: 1px solid rgba(255, 255, 255, .18); padding-left: 9px;
}

.search {
  position: relative; flex: 1; max-width: 760px;
  display: flex; align-items: center; gap: 6px;
  background: #fff; border-radius: 11px; padding: 4px;
}
.search-ico { position: absolute; left: 12px; width: 18px; height: 18px; color: var(--muted); pointer-events: none; }
.search-in {
  flex: 1; min-width: 0; border: 0; background: transparent; color: var(--ink);
  font-size: 15px; padding: 8px 8px 8px 36px; outline: none;
}
.search-in::-webkit-search-cancel-button { cursor: pointer; }

.btn {
  display: inline-flex; align-items: center; gap: 7px; height: 38px; padding: 0 14px;
  border: 1px solid var(--line); border-radius: 10px; background: #fff; color: var(--ink);
  font-size: 14px; font-weight: 600; text-decoration: none; cursor: pointer; white-space: nowrap;
  transition: background .15s, border-color .15s;
}
.btn:hover { background: #f4f7fb; border-color: #cfd8e4; }
.btn svg { width: 18px; height: 18px; flex: none; }
.btn-go { background: var(--accent); border-color: var(--accent); color: #fff; }
.btn-go:hover { background: #095bb0; border-color: #095bb0; }
.btn-near {
  background: var(--accent-soft); border-color: transparent; color: var(--accent);
  max-width: 220px; overflow: hidden; text-overflow: ellipsis; display: inline-block; line-height: 36px;
}
.btn-near:hover { background: #d9e8f8; border-color: transparent; }
.btn-hotels { background: var(--hot); border-color: var(--hot); color: var(--hot-ink); }
.btn-hotels:hover { background: #eb9a12; border-color: #eb9a12; }
.btn-back { margin-left: auto; color: var(--accent); }

.suggest {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0; z-index: 40;
  background: #fff; border: 1px solid var(--line); border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 27, 45, .18); overflow: hidden;
}
.suggest-h { margin: 0; padding: 8px 14px 4px; font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.suggest a { display: block; padding: 8px 14px; color: var(--ink); text-decoration: none; }
.suggest a small { display: block; color: var(--muted); font-size: 12.5px; }
.suggest a[aria-selected="true"], .suggest a:hover { background: var(--accent-soft); }

.wrap { max-width: 1640px; margin: 0 auto; padding: 12px 16px 36px; }

.crumbs ol { display: flex; flex-wrap: wrap; gap: 2px 0; margin: 2px 0 8px; padding: 0; list-style: none; font-size: 13px; color: var(--muted); }
.crumbs li + li::before { content: "›"; margin: 0 8px; color: #a3aebd; }
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--accent); text-decoration: underline; }

.head { display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 12px 24px; margin: 0 0 14px; }
.head h1 { margin: 0; font-size: clamp(26px, 3.2vw, 38px); line-height: 1.15; font-weight: 750; letter-spacing: -.015em; }
.lead { margin: 6px 0 0; color: var(--muted); font-size: 15px; }
.lead-tag {
  display: inline-block; margin-right: 6px; padding: 2px 8px; border-radius: 999px;
  background: var(--accent-soft); color: var(--accent);
  font-size: 11px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; vertical-align: 1px;
}
.alt { font-style: italic; }

.facts { display: flex; flex-wrap: wrap; gap: 8px; margin: 0; padding: 0; list-style: none; }
.fact {
  display: flex; flex-direction: column; gap: 1px; padding: 7px 12px;
  background: var(--card); border: 1px solid var(--line); border-radius: 11px;
}
.fact-k { font-size: 10.5px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--muted); }
.fact-v { font-size: 15px; font-weight: 600; font-variant-numeric: tabular-nums; color: var(--ink); }
.fact-v small { font-weight: 400; color: var(--muted); }
button.fact-v { display: inline-flex; align-items: center; gap: 6px; padding: 0; border: 0; background: none; cursor: pointer; }
button.fact-v svg { width: 15px; height: 15px; color: var(--muted); }
button.fact-v:hover svg { color: var(--accent); }

.stage { display: grid; grid-template-columns: minmax(0, 1fr); gap: 16px; align-items: start; }
.main { min-width: 0; }
.side-l, .side-r { display: none; position: sticky; top: 74px; width: 160px; min-height: 600px; }
@media (min-width: 600px) {
  .stage { grid-template-columns: 160px minmax(0, 1fr); }
  .side-l { display: block; }
}
@media (min-width: 1100px) {
  .stage { grid-template-columns: 160px minmax(0, 1fr) 160px; }
  .side-r { display: block; }
}

.map-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.map { position: relative; height: clamp(360px, calc(100vh - 250px), 1100px); background: #1d2a36; }
.map iframe { display: block; width: 100%; height: 100%; border: 0; }
.map-card-short .map { height: clamp(300px, 52vh, 640px); }
.actions { display: flex; flex-wrap: wrap; gap: 8px; padding: 10px 12px; border-top: 1px solid var(--line); }

.below-map { margin: 16px 0; min-height: 90px; text-align: center; }

.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 16px; }
.card { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px 18px; box-shadow: var(--shadow); margin: 0 0 16px; }
.cards .card { margin: 0; }
.card h2 { margin: 0 0 10px; font-size: 16px; font-weight: 700; letter-spacing: -.005em; }
.card-wide { grid-column: 1 / -1; }
.about p { margin: 0 0 8px; color: #33404f; }
.about p:last-child { margin: 0; }

.plist { margin: 0; padding: 0; list-style: none; }
.plist a {
  display: grid; grid-template-columns: minmax(0, 1fr) auto auto; align-items: baseline; gap: 12px;
  padding: 7px 0; border-bottom: 1px solid #edf1f6; color: var(--ink); text-decoration: none;
}
.plist li:last-child a { border-bottom: 0; }
.plist a:hover .pn { color: var(--accent); text-decoration: underline; }
.pn { font-weight: 500; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.pn small { font-weight: 400; color: var(--muted); }
.pp, .pd { color: var(--muted); font-size: 13.5px; font-variant-numeric: tabular-nums; white-space: nowrap; }
.pp:empty { display: none; }
.arrow {
  display: inline-block; width: 9px; height: 12px; margin-right: 6px; vertical-align: -1px;
  background: var(--accent); clip-path: polygon(50% 0, 100% 100%, 50% 74%, 0 100%);
  transform: rotate(var(--deg));
}

.links { margin: 0; padding: 0; list-style: none; }
.links a { display: flex; justify-content: space-between; padding: 7px 0; border-bottom: 1px solid #edf1f6; text-decoration: none; font-weight: 500; }
.links li:last-child a { border-bottom: 0; }
.links a::after { content: "↗"; color: var(--muted); }
.links a:hover { text-decoration: underline; }

.chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 0; padding: 0; list-style: none; }
.chips a {
  display: inline-block; padding: 5px 11px; border: 1px solid var(--line); border-radius: 999px;
  background: #f7f9fc; color: var(--ink); font-size: 14px; text-decoration: none;
}
.chips a:hover { border-color: var(--accent); color: var(--accent); }
.more { margin: 12px 0 0; font-size: 14px; font-weight: 600; }
.more a { text-decoration: none; }

.regions { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 8px; margin: 0; padding: 0; list-style: none; }
.regions a {
  display: flex; justify-content: space-between; align-items: baseline; gap: 10px; padding: 10px 12px;
  border: 1px solid var(--line); border-radius: 11px; color: var(--ink); text-decoration: none; font-weight: 500;
}
.regions a:hover { border-color: var(--accent); background: var(--accent-soft); }
.regions small { color: var(--muted); font-variant-numeric: tabular-nums; }

.letters { display: flex; flex-wrap: wrap; gap: 4px; margin: 0 0 14px; }
.letters a { min-width: 32px; padding: 4px 8px; border: 1px solid var(--line); border-radius: 8px; text-align: center; text-decoration: none; font-weight: 600; }
.letters a[aria-current] { background: var(--accent); border-color: var(--accent); color: #fff; }
.cols { columns: 4 200px; column-gap: 24px; margin: 0; padding: 0; list-style: none; }
.cols li { break-inside: avoid; padding: 3px 0; }
.cols a { color: var(--ink); text-decoration: none; }
.cols a:hover { color: var(--accent); text-decoration: underline; }

.countries { display: grid; grid-template-columns: repeat(auto-fill, minmax(270px, 1fr)); gap: 16px; margin: 0; padding: 0; list-style: none; }
.country h2 { font-size: 19px; margin: 0 0 2px; }
.country h2 a { color: var(--ink); text-decoration: none; }
.country h2 a:hover { color: var(--accent); }
.country-n { margin: 0 0 8px; color: var(--muted); font-size: 14px; }
.country-top { margin: 0; font-size: 14px; }

.foot { background: var(--night); color: #b9c9da; }
.foot-in { max-width: 1640px; margin: 0 auto; padding: 26px 16px 30px; }
.foot-h { margin: 0 0 12px; font-size: 13px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: #8fb3d6; }
.foot-list { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0 0 18px; padding: 0; list-style: none; }
.foot-list a { color: #fff; text-decoration: none; font-weight: 500; }
.foot-list a:hover { text-decoration: underline; }
.foot-list span { color: #7f95ab; font-size: 13px; font-variant-numeric: tabular-nums; }
.foot-small { margin: 0; font-size: 13px; }
.foot-small a { color: #b9c9da; }

@media (max-width: 760px) {
  .top-in { flex-wrap: wrap; gap: 8px 12px; padding: 8px 12px 10px; }
  .top { position: static; }
  .search { flex-basis: 100%; max-width: none; flex-wrap: wrap; }
  .search-ico { top: 14px; }
  .search-in { flex-basis: 100%; }
  .search .btn { flex: 1 1 0; justify-content: center; text-align: center; max-width: none; }
  .wrap { padding: 10px 12px 28px; }
  .head { align-items: flex-start; }
  .map { height: clamp(320px, calc(100vh - 290px), 720px); }
  .actions .btn { flex: 1 1 auto; justify-content: center; }
  .btn-back { margin-left: 0; }
  .cards { grid-template-columns: minmax(0, 1fr); }
  .card { padding: 14px 14px; }
}
@media (max-width: 420px) {
  .brand-sub { display: none; }
  .search-in { font-size: 16px; }
}
