:root {
  --ink: #08261f;
  --forest: #0b3d31;
  --deep: #061c1a;
  --deep-2: #082a25;
  --green: #1fd28b;
  --green-soft: #88e6bd;
  --cyan: #39d7e1;
  --blue: #247b91;
  --terracotta: #c96b4b;
  --ivory: #f7f4ec;
  --sand: #e8ddc8;
  --white: #ffffff;
  --muted: #a8beb5;
  --shadow: 0 28px 70px rgba(0, 15, 13, 0.28);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--ink);
  font-family:
    Inter, Manrope, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.sr-only {
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  height: 1px;
  overflow: hidden;
  position: absolute;
  white-space: nowrap;
  width: 1px;
}

.skip-link {
  left: 16px;
  padding: 12px 18px;
  position: fixed;
  top: -80px;
  z-index: 9999;
  border-radius: 10px;
  background: var(--white);
  color: var(--deep);
  font-weight: 800;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  min-height: 88px;
  padding: 12px clamp(22px, 4vw, 68px);
  display: grid;
  grid-template-columns: minmax(245px, 1fr) auto minmax(160px, 1fr);
  align-items: center;
  gap: 28px;
  color: var(--white);
  background: rgba(5, 27, 24, 0.97);
  border-bottom: 1px solid rgba(116, 222, 193, 0.18);
  position: relative;
  z-index: 1000;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  width: fit-content;
}

.brand img {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  object-fit: contain;
  background: white;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2);
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-size: 1.6rem;
  letter-spacing: 0.08em;
}

.brand-copy small {
  max-width: 205px;
  margin-top: 7px;
  color: #b8cec5;
  font-size: 0.68rem;
  line-height: 1.25;
}

.primary-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3.2vw, 52px);
}

.primary-nav a {
  padding: 30px 0 24px;
  color: #d8e6e0;
  font-size: 0.94rem;
  position: relative;
}

.primary-nav a::after {
  width: 0;
  height: 2px;
  position: absolute;
  right: 0;
  bottom: 17px;
  left: 0;
  margin: auto;
  content: "";
  background: var(--cyan);
  transition: width 0.2s ease;
}

.primary-nav a:hover::after,
.primary-nav a:focus-visible::after,
.primary-nav a.active::after {
  width: 100%;
}

.header-cta {
  justify-self: end;
  padding: 13px 20px;
  border: 1px solid rgba(117, 227, 185, 0.75);
  border-radius: 12px;
  color: #ebfff6;
  font-size: 0.9rem;
  font-weight: 700;
  transition:
    background 0.2s ease,
    color 0.2s ease;
}

.header-cta:hover,
.header-cta:focus-visible {
  background: var(--green);
  color: var(--deep);
}

.menu-toggle {
  display: none;
}

.hero {
  min-height: calc(100vh - 88px);
  padding: clamp(24px, 3.5vw, 52px) clamp(20px, 3.8vw, 60px) clamp(36px, 5vw, 72px);
  display: grid;
  grid-template-columns: minmax(330px, 0.78fr) minmax(580px, 1.45fr);
  gap: clamp(24px, 3vw, 48px);
  overflow: hidden;
  position: relative;
  color: var(--white);
  background:
    radial-gradient(circle at 72% 42%, rgba(34, 216, 155, 0.1), transparent 30%),
    linear-gradient(145deg, #061b19 0%, #072c27 48%, #061d1b 100%);
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  opacity: 0.18;
}

.hero::before {
  inset: 0;
  background-image:
    linear-gradient(rgba(80, 206, 177, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(80, 206, 177, 0.08) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: radial-gradient(circle at 68% 48%, black, transparent 63%);
}

.hero::after {
  width: 520px;
  height: 520px;
  right: -220px;
  bottom: -230px;
  border: 1px solid var(--cyan);
  border-radius: 50%;
  box-shadow:
    0 0 0 60px rgba(57, 215, 225, 0.05),
    0 0 0 120px rgba(57, 215, 225, 0.03);
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(12px);
  pointer-events: none;
}

.hero-glow-one {
  width: 320px;
  height: 320px;
  top: -120px;
  left: 26%;
  background: rgba(26, 211, 137, 0.08);
}

.hero-glow-two {
  width: 280px;
  height: 280px;
  right: 12%;
  bottom: -120px;
  background: rgba(57, 215, 225, 0.07);
}

.story-panel,
.map-column {
  position: relative;
  z-index: 2;
}

.story-panel {
  align-self: stretch;
  padding: clamp(28px, 3.5vw, 48px);
  border: 1px solid rgba(109, 216, 185, 0.24);
  border-radius: 26px;
  background:
    linear-gradient(145deg, rgba(6, 35, 31, 0.88), rgba(5, 26, 24, 0.72)),
    rgba(6, 30, 27, 0.76);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.eyebrow {
  margin: 0 0 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: #68e2d9;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.19em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 26px;
  height: 2px;
  background: currentColor;
}

.story-panel h1 {
  max-width: 560px;
  margin: 0;
  font-size: clamp(2.55rem, 4.2vw, 4.5rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero-copy {
  max-width: 530px;
  margin: 26px 0 28px;
  color: #c1d3cc;
  font-size: clamp(1rem, 1.25vw, 1.2rem);
  line-height: 1.7;
}

.stats {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.stats article {
  min-height: 96px;
  padding: 17px;
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 12px;
  border: 1px solid rgba(89, 216, 179, 0.2);
  border-radius: 17px;
  background: rgba(9, 55, 48, 0.54);
}

.stat-icon {
  width: 43px;
  height: 43px;
  grid-row: 1 / 3;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--green);
  background: rgba(31, 210, 139, 0.11);
  border: 1px solid rgba(31, 210, 139, 0.35);
  font-size: 1.35rem;
}

.stat-icon-blue {
  color: var(--cyan);
  border-color: rgba(57, 215, 225, 0.35);
  background: rgba(57, 215, 225, 0.1);
}

.stats strong {
  color: var(--green);
  font-size: 2rem;
  line-height: 1;
}

.stats article:nth-child(2) strong {
  color: var(--cyan);
}

.stats small {
  color: #bbd0c7;
  font-size: 0.77rem;
}

.actor-detail {
  min-height: 218px;
  margin-top: 18px;
}

.detail-placeholder,
.detail-content {
  height: 100%;
  min-height: 218px;
  border-radius: 18px;
}

.detail-placeholder {
  padding: 24px;
  display: grid;
  place-items: center;
  text-align: center;
  border: 1px dashed rgba(139, 223, 200, 0.22);
  color: #a8beb5;
  background: rgba(4, 29, 26, 0.38);
}

.detail-placeholder span {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(57, 215, 225, 0.32);
  border-radius: 50%;
  color: var(--cyan);
  font-size: 1.35rem;
}

.detail-placeholder p {
  margin: 0;
  max-width: 320px;
  line-height: 1.55;
}

.detail-content {
  padding: 19px;
  border: 1px solid rgba(119, 230, 197, 0.28);
  background: linear-gradient(145deg, rgba(11, 64, 54, 0.8), rgba(7, 39, 35, 0.83));
  animation: reveal 0.3s ease both;
}

.detail-head {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: center;
}

.detail-head img {
  width: 64px;
  height: 64px;
  padding: 5px;
  object-fit: contain;
  border-radius: 50%;
  background: white;
  border: 2px solid rgba(138, 231, 203, 0.75);
}

.detail-head small,
.card-location {
  display: block;
  color: #69e0ca;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.detail-head h2 {
  margin: 5px 0 0;
  font-size: 1.08rem;
  line-height: 1.25;
}

.detail-content p {
  margin: 15px 0;
  color: #bdd1c9;
  font-size: 0.86rem;
  line-height: 1.58;
}

.detail-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.detail-location {
  color: #86aaa0;
  font-size: 0.76rem;
}

.detail-actions a {
  color: var(--cyan);
  font-size: 0.8rem;
  font-weight: 800;
}

.explore-link {
  width: 100%;
  margin-top: 18px;
  padding-top: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid rgba(112, 219, 189, 0.18);
  color: #d7e8e1;
  font-size: 0.86rem;
  font-weight: 700;
}

.explore-link span {
  color: var(--green);
  font-size: 1.2rem;
}

.map-column {
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.map-topbar {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #a9c3ba;
  font-size: 0.75rem;
}

.map-topbar > div {
  display: flex;
  gap: 18px;
}

.map-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.map-status i {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 12px rgba(31, 210, 139, 0.8);
}

.map-status-warm i {
  background: var(--terracotta);
  box-shadow: 0 0 12px rgba(201, 107, 75, 0.6);
}

.map-reference {
  padding: 7px 11px;
  border: 1px solid rgba(95, 208, 178, 0.2);
  border-radius: 999px;
  white-space: nowrap;
}

.map-frame {
  min-height: 680px;
  flex: 1;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(99, 220, 188, 0.28);
  border-radius: 28px;
  box-shadow: var(--shadow);
  background: #061f1c;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 680px;
  z-index: 2;
  background: #061f1c;
}

.topographic-lines {
  inset: 0;
  z-index: 1;
  position: absolute;
  pointer-events: none;
  opacity: 0.35;
  background:
    radial-gradient(ellipse at 15% 75%, transparent 0 28%, rgba(55, 214, 190, 0.08) 28.3% 28.7%, transparent 29% 35%, rgba(55, 214, 190, 0.06) 35.3% 35.7%, transparent 36%),
    radial-gradient(ellipse at 85% 18%, transparent 0 26%, rgba(55, 214, 190, 0.07) 26.3% 26.7%, transparent 27% 34%, rgba(55, 214, 190, 0.05) 34.3% 34.7%, transparent 35%);
}

.map-instruction {
  padding: 10px 14px;
  position: absolute;
  z-index: 600;
  right: 18px;
  bottom: 18px;
  display: flex;
  align-items: center;
  gap: 9px;
  border: 1px solid rgba(103, 221, 191, 0.27);
  border-radius: 12px;
  color: #c5d8d1;
  background: rgba(5, 33, 29, 0.85);
  box-shadow: 0 10px 30px rgba(0, 15, 12, 0.28);
  backdrop-filter: blur(12px);
  font-size: 0.73rem;
  pointer-events: none;
}

.map-instruction span {
  color: var(--cyan);
}

.map-note {
  margin: 12px 5px 0;
  color: #829f96;
  font-size: 0.7rem;
  text-align: right;
}

.leaflet-container {
  font-family: inherit;
}

.leaflet-control-zoom a {
  color: #d9fff2 !important;
  background: rgba(5, 42, 36, 0.94) !important;
  border-color: rgba(93, 211, 178, 0.3) !important;
}

.leaflet-control-zoom a:hover {
  background: #0d594b !important;
}

.leaflet-control-attribution {
  color: #91aaa2 !important;
  background: rgba(4, 28, 25, 0.8) !important;
}

.leaflet-control-attribution a {
  color: #62ddd0 !important;
}

.leaflet-control-scale-line {
  color: #d6e7e1;
  border-color: #8edbc4;
  background: rgba(4, 31, 27, 0.7);
}

.actor-marker-shell {
  border: 0;
  background: transparent;
}

.actor-map-logo {
  width: 56px;
  height: 56px;
  padding: 4px;
  border: 3px solid #f8fff9;
  border-radius: 50%;
  object-fit: contain;
  background: white;
  box-shadow:
    0 0 0 3px rgba(31, 210, 139, 0.85),
    0 0 24px rgba(31, 210, 139, 0.62),
    0 12px 24px rgba(0, 20, 16, 0.45);
  transition:
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.founder-marker .actor-map-logo {
  box-shadow:
    0 0 0 3px rgba(201, 107, 75, 0.95),
    0 0 24px rgba(201, 107, 75, 0.55),
    0 12px 24px rgba(0, 20, 16, 0.45);
}

.actor-marker-shell:hover .actor-map-logo,
.actor-marker-shell.is-selected .actor-map-logo {
  transform: translateY(-4px) scale(1.08);
  box-shadow:
    0 0 0 4px rgba(57, 215, 225, 0.95),
    0 0 30px rgba(57, 215, 225, 0.8),
    0 16px 28px rgba(0, 20, 16, 0.5);
}

.actor-tooltip {
  padding: 8px 11px !important;
  border: 1px solid rgba(90, 220, 185, 0.35) !important;
  border-radius: 10px !important;
  color: #e7fff6 !important;
  background: rgba(5, 40, 34, 0.94) !important;
  box-shadow: 0 10px 25px rgba(0, 16, 13, 0.35) !important;
  font-size: 0.72rem;
  font-weight: 800;
}

.actor-tooltip::before {
  border-top-color: rgba(5, 40, 34, 0.94) !important;
}

.territory-tooltip {
  padding: 7px 10px !important;
  border: 1px solid rgba(83, 214, 178, 0.3) !important;
  border-radius: 999px !important;
  color: #e3fff4 !important;
  background: rgba(5, 38, 33, 0.88) !important;
  box-shadow: 0 8px 22px rgba(0, 14, 12, 0.28) !important;
  font-size: 0.72rem;
  font-weight: 800;
}

.territory-tooltip::before {
  display: none;
}

.custom-cluster {
  border: 0;
  background: transparent;
}

.cluster-stack {
  width: 74px;
  height: 74px;
  position: relative;
  border: 1px solid rgba(92, 223, 185, 0.8);
  border-radius: 50%;
  background: rgba(4, 43, 36, 0.94);
  box-shadow:
    0 0 0 5px rgba(31, 210, 139, 0.1),
    0 0 30px rgba(31, 210, 139, 0.56);
}

.cluster-stack img {
  width: 34px;
  height: 34px;
  padding: 2px;
  position: absolute;
  object-fit: contain;
  border: 2px solid white;
  border-radius: 50%;
  background: white;
}

.cluster-stack img:nth-child(1) {
  top: 10px;
  left: 9px;
}

.cluster-stack img:nth-child(2) {
  top: 8px;
  right: 8px;
}

.cluster-stack img:nth-child(3) {
  right: 19px;
  bottom: 8px;
}

.cluster-count {
  min-width: 24px;
  height: 24px;
  padding: 0 6px;
  position: absolute;
  right: -7px;
  bottom: -2px;
  display: grid;
  place-items: center;
  border: 2px solid #eafff8;
  border-radius: 999px;
  color: var(--deep);
  background: var(--green);
  font-size: 0.7rem;
  font-weight: 900;
}

.directory-section {
  padding: clamp(72px, 9vw, 130px) clamp(22px, 6vw, 96px);
  background:
    radial-gradient(circle at 8% 15%, rgba(75, 143, 59, 0.07), transparent 22%),
    radial-gradient(circle at 90% 12%, rgba(36, 123, 145, 0.07), transparent 24%),
    var(--ivory);
}

.section-heading {
  max-width: 1380px;
  margin: 0 auto 34px;
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(260px, 0.58fr);
  align-items: end;
  gap: 42px;
}

.eyebrow-dark {
  color: #3a8c76;
}

.section-heading h2 {
  max-width: 900px;
  margin: 0;
  color: #123d31;
  font-size: clamp(2.15rem, 4.4vw, 4.3rem);
  line-height: 1.04;
  letter-spacing: -0.045em;
}

.section-heading > p {
  margin: 0 0 7px;
  color: #557269;
  line-height: 1.7;
}

.territory-filters {
  max-width: 1380px;
  margin: 0 auto 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.territory-filters button {
  padding: 10px 14px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border: 1px solid #d6d8c9;
  border-radius: 999px;
  color: #385b50;
  background: rgba(255, 255, 255, 0.68);
  cursor: pointer;
  font-size: 0.82rem;
  font-weight: 750;
  transition: 0.2s ease;
}

.territory-filters button span {
  width: 23px;
  height: 23px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e7e8db;
  font-size: 0.68rem;
}

.territory-filters button:hover,
.territory-filters button:focus-visible,
.territory-filters button.is-active {
  border-color: #1d725d;
  color: white;
  background: #1b624f;
  transform: translateY(-1px);
}

.territory-filters button.is-active span,
.territory-filters button:hover span {
  color: #164f41;
  background: #aee6ca;
}

.actors-grid {
  max-width: 1380px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.actor-card {
  min-height: 305px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  border: 1px solid #dedccc;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 15px 35px rgba(32, 68, 54, 0.06);
  cursor: pointer;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    border-color 0.22s ease;
}

.actor-card:hover,
.actor-card:focus-visible,
.actor-card.is-selected {
  outline: none;
  border-color: #59a989;
  transform: translateY(-7px);
  box-shadow: 0 22px 45px rgba(29, 85, 65, 0.14);
}

.card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.actor-card img {
  width: 68px;
  height: 68px;
  padding: 5px;
  object-fit: contain;
  border: 1px solid #d9decf;
  border-radius: 50%;
  background: white;
}

.member-badge {
  padding: 6px 9px;
  border-radius: 999px;
  color: #26745e;
  background: #dff2e8;
  font-size: 0.62rem;
  font-weight: 850;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.member-badge.founder {
  color: #8b422d;
  background: #f5e3dc;
}

.actor-card h3 {
  margin: 19px 0 7px;
  color: #123f32;
  font-size: 1rem;
  line-height: 1.25;
}

.actor-card p {
  margin: 13px 0 20px;
  color: #60766f;
  font-size: 0.77rem;
  line-height: 1.55;
}

.card-action {
  margin-top: auto;
  padding-top: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e5e4d8;
  color: #1c705a;
  font-size: 0.76rem;
  font-weight: 850;
}

.actor-card[hidden] {
  display: none;
}

.network-cta {
  margin: 0 clamp(20px, 6vw, 96px) clamp(72px, 8vw, 110px);
  padding: clamp(28px, 4vw, 48px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  overflow: hidden;
  position: relative;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(circle at 85% 0%, rgba(57, 215, 225, 0.18), transparent 35%),
    linear-gradient(125deg, #0a3c32, #061e1b);
}

.network-cta > div {
  display: flex;
  align-items: center;
  gap: 24px;
}

.network-cta img {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: white;
}

.network-cta p {
  margin: 0 0 8px;
  color: #70ddc6;
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.network-cta h2 {
  max-width: 790px;
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 2.35rem);
  line-height: 1.18;
}

.network-cta > a {
  min-width: 190px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid rgba(118, 228, 196, 0.65);
  border-radius: 12px;
  color: #ecfff8;
  font-size: 0.84rem;
  font-weight: 800;
}

footer {
  min-height: 126px;
  padding: 30px clamp(22px, 6vw, 96px);
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  color: #9cb7ae;
  background: #051a18;
}

footer > div {
  display: grid;
  gap: 5px;
}

footer strong {
  color: white;
  letter-spacing: 0.08em;
}

footer span,
footer p {
  margin: 0;
  font-size: 0.72rem;
}

footer .credits {
  grid-column: 1 / -1;
  color: #718d84;
}

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

@media (max-width: 1180px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .primary-nav {
    order: 3;
    grid-column: 1 / -1;
    border-top: 1px solid rgba(116, 222, 193, 0.15);
  }

  .primary-nav a {
    padding-top: 18px;
  }

  .header-cta {
    grid-column: 2;
    grid-row: 1;
  }

  .hero {
    grid-template-columns: minmax(320px, 0.68fr) minmax(480px, 1fr);
    padding-inline: 28px;
  }

  .map-frame,
  #map {
    min-height: 640px;
  }

  .actors-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .site-header {
    min-height: 76px;
    display: flex;
    justify-content: space-between;
  }

  .brand img {
    width: 50px;
    height: 50px;
  }

  .brand-copy strong {
    font-size: 1.35rem;
  }

  .header-cta {
    display: none;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    padding: 10px;
    display: grid;
    align-content: center;
    gap: 5px;
    border: 1px solid rgba(105, 221, 189, 0.4);
    border-radius: 11px;
    background: rgba(9, 53, 46, 0.8);
  }

  .menu-toggle span:not(.sr-only) {
    width: 100%;
    height: 2px;
    background: white;
  }

  .primary-nav {
    padding: 10px 22px 20px;
    position: absolute;
    right: 0;
    top: 76px;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(5, 27, 24, 0.98);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    padding: 14px 0;
  }

  .primary-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .story-panel {
    padding: 30px;
  }

  .map-column {
    min-height: 710px;
  }

  .map-frame,
  #map {
    min-height: 650px;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .actors-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .network-cta {
    align-items: flex-start;
    flex-direction: column;
  }

  footer {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand-copy small {
    display: none;
  }

  .hero {
    padding: 18px 14px 42px;
    gap: 22px;
  }

  .story-panel {
    padding: 24px 20px;
    border-radius: 21px;
  }

  .story-panel h1 {
    font-size: 2.65rem;
  }

  .stats article {
    min-height: 90px;
    padding: 12px;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }

  .stat-icon {
    display: none;
  }

  .stats strong {
    font-size: 1.8rem;
  }

  .map-column {
    min-height: 610px;
  }

  .map-topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
    padding-bottom: 9px;
  }

  .map-topbar > div {
    gap: 12px;
  }

  .map-reference {
    align-self: flex-end;
  }

  .map-frame,
  #map {
    min-height: 540px;
    border-radius: 21px;
  }

  .map-instruction {
    right: 10px;
    bottom: 10px;
    left: 10px;
    justify-content: center;
  }

  .directory-section {
    padding: 68px 16px;
  }

  .section-heading h2 {
    font-size: 2.35rem;
  }

  .actors-grid {
    grid-template-columns: 1fr;
  }

  .actor-card {
    min-height: 0;
  }

  .network-cta {
    margin: 0 14px 60px;
  }

  .network-cta > div {
    align-items: flex-start;
  }

  .network-cta img {
    width: 58px;
    height: 58px;
  }

  .network-cta > a {
    width: 100%;
  }

  footer {
    padding-inline: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
