:root {
  --bg: #070706;
  --ink: #f4efe4;
  --dim: #9a9184;
  --yellow: #ffd60a;
  --red: #e10600;
  --line: rgba(244, 239, 228, 0.12);
  --safe: 7vw;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: "Source Serif 4", Georgia, serif;
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

.display {
  font-family: Anton, Impact, sans-serif;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.92;
}

nav {
  position: sticky; top: 0; z-index: 40;
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 14px var(--safe);
  background: rgba(7,7,6,0.86);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.brand {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; font-size: 22px;
}
.brand img { width: 28px; height: 28px; }
.desks-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.desks-nav a, .desks-nav button {
  padding: 7px 11px;
  font-family: Anton, sans-serif;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--dim);
  text-decoration: none;
  border: 1px solid transparent;
}
.desks-nav a:hover, .desks-nav button:hover,
.desks-nav button.is-on {
  color: var(--yellow);
  border-color: var(--yellow);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
}
.hero img.bg {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  filter: saturate(1.15) contrast(1.08);
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(7,7,6,0.2) 0%, rgba(7,7,6,0.15) 40%, rgba(7,7,6,0.92) 100%);
}
.hero-copy {
  position: relative; z-index: 1;
  padding: 0 var(--safe) 64px;
  max-width: 1100px;
}
.kicker {
  font-family: Anton, sans-serif;
  letter-spacing: 0.28em;
  font-size: 13px;
  color: var(--yellow);
  margin-bottom: 16px;
}
.hero h1 { font-size: clamp(56px, 12vw, 148px); }
.hero h1 span { color: var(--yellow); }
.hero p.lede {
  margin-top: 18px;
  font-size: clamp(20px, 2.4vw, 28px);
  max-width: 34ch;
  color: var(--ink);
}
.cta {
  display: inline-block;
  margin-top: 28px;
  padding: 12px 18px;
  background: var(--yellow);
  color: #111;
  text-decoration: none;
  font-family: Anton, sans-serif;
  letter-spacing: 0.08em;
  font-size: 16px;
}
.cta:hover { background: #fff; }

.method {
  padding: 72px var(--safe) 48px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  border-top: 1px solid var(--line);
}
.method h2 { font-size: clamp(36px, 6vw, 64px); }
.method p { color: var(--dim); font-size: 20px; max-width: 48ch; }
.method p + p { margin-top: 14px; }
.method strong { color: var(--ink); font-weight: 600; }

.map-block { padding: 0 var(--safe) 72px; }
.map-head {
  display: flex; justify-content: space-between; align-items: flex-end;
  gap: 16px; flex-wrap: wrap;
  padding: 18px 0 14px;
}
.map-head h2 { font-size: clamp(28px, 5vw, 48px); }
.map-head .meta { color: var(--dim); font-size: 16px; }
.stage {
  display: grid;
  grid-template-columns: 1.6fr 0.9fr;
  min-height: 620px;
  border: 1px solid var(--line);
  background: #0b0b0a;
}
#map { min-height: 620px; background: #111; }
.leaflet-container { background: #111; font-family: inherit; }
.leaflet-popup-content-wrapper {
  background: #111; color: var(--ink); border-radius: 0; box-shadow: none;
  border: 1px solid var(--line);
}
.leaflet-popup-tip { background: #111; }
.leaflet-popup-content { margin: 10px 12px; }
.leaflet-popup-content a { color: var(--yellow); }

.leaflet-div-icon { background: none; border: 0; }
  border: 2px solid var(--yellow);
  background: #000;
  overflow: hidden;
  box-shadow: 0 0 0 1px #000;
}
.pin img { width: 100%; height: 100%; object-fit: cover; }

.side {
  border-left: 1px solid var(--line);
  display: flex; flex-direction: column;
  min-height: 620px;
}
.side-still {
  position: relative; height: 180px; overflow: hidden;
  flex: 0 0 180px;
}
.side-still img { width: 100%; height: 100%; object-fit: cover; filter: saturate(1.1); }
.side-still::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent, #0b0b0a);
}
.side-body { padding: 16px 18px 20px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.side-body h3 { font-size: 28px; }
.side-body .line { color: var(--dim); }
.side-body .count {
  font-family: Anton, sans-serif;
  letter-spacing: 0.08em;
  color: var(--yellow);
  font-size: 13px;
}
.pin-list { list-style: none; overflow: auto; max-height: 280px; }
.pin-list li { border-top: 1px solid var(--line); }
.pin-list a {
  display: grid; grid-template-columns: 64px 1fr; gap: 10px;
  padding: 10px 0; text-decoration: none;
}
.pin-list a:hover .t { color: var(--yellow); }
.pin-list img { width: 64px; height: 40px; object-fit: cover; border: 1px solid var(--line); }
.pin-list .t { font-size: 14px; }
.pin-list .p { font-size: 12px; color: var(--dim); margin-top: 2px; }

.empty {
  padding: 12px 0 4px;
  color: var(--dim);
}
.empty a { color: var(--yellow); }

.beyond { margin-top: 8px; }
.beyond h4 {
  font-family: Anton, sans-serif;
  font-size: 13px; letter-spacing: 0.12em;
  color: var(--red); margin-bottom: 6px;
}

footer {
  padding: 28px var(--safe) 48px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  color: var(--dim); font-size: 14px;
}
footer a { color: var(--yellow); text-decoration: none; }
footer a:hover { text-decoration: underline; }

@media (max-width: 860px) {
  .method, .stage { grid-template-columns: 1fr; }
  .side { border-left: 0; border-top: 1px solid var(--line); }
  #map, .side, .stage { min-height: 420px; }
  .hero { min-height: 78vh; }
}
