:root {
  color-scheme: light;
  --bg: #f6f7f8;
  --paper: #ffffff;
  --paper-2: #edf1f3;
  --ink: #191715;
  --muted: #625d56;
  --line: #d8dde1;
  --line-strong: #aeb8bf;
  --accent: #25736f;
  --accent-dark: #1f5552;
  --rose: #e8eef2;
  --blue: #e3f0f6;
  --green: #e5f0ea;
  --gold: #eef0f2;
  --radius: 4px;
  --shadow: 0 2px 5px rgba(31, 28, 24, 0.12), 0 10px 24px rgba(31, 28, 24, 0.08);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: #f6f7f8;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.62;
}

a {
  color: inherit;
}

.site-header,
.site-footer,
main > section {
  padding-left: max(22px, calc((100vw - 1120px) / 2));
  padding-right: max(22px, calc((100vw - 1120px) / 2));
}

.site-header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 52px;
  border-bottom: 2px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.78);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
  max-width: min(100%, 760px);
  text-decoration: none;
  white-space: normal;
}

.brand img {
  display: block;
  width: 95px;
  max-width: 42vw;
  height: auto;
}

.brand span {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  max-width: min(45vw, 470px);
  border-left: 1px solid var(--line);
  padding-left: 14px;
  color: #37312c;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  line-height: 1.25;
  text-transform: uppercase;
  text-wrap: balance;
}

.top-nav {
  position: relative;
  justify-self: end;
  min-width: 0;
  font-size: 0.92rem;
}

.country-nav {
  position: relative;
}

.country-nav summary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 7px 36px 7px 13px;
  background: #ffffff;
  color: #3c3935;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  list-style: none;
  position: relative;
}

.country-nav summary::-webkit-details-marker {
  display: none;
}

.country-nav summary::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-65%) rotate(45deg);
}

.country-nav[open] summary::after {
  transform: translateY(-35%) rotate(225deg);
}

.country-nav summary:hover,
.country-nav summary:focus-visible,
.country-nav[open] summary {
  border-color: var(--accent);
  color: var(--accent-dark);
  outline: none;
}

.country-nav-panel {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(3, minmax(150px, 1fr));
  gap: 8px;
  width: min(640px, calc(100vw - 44px));
  max-height: min(68vh, 560px);
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.country-nav-panel a {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px 10px;
  background: #ffffff;
  color: #3c3935;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.country-nav-panel a:hover,
.country-nav-panel a:focus-visible {
  border-color: var(--accent);
  color: var(--accent-dark);
  outline: none;
}

.country-nav-panel a[aria-current="page"] {
  border-color: var(--accent);
  background: var(--green);
  color: var(--accent-dark);
}

h1,
h2,
h3 {
  line-height: 1.14;
  margin: 0;
}

h1,
h2,
.starting-feature h3 {
  font-family: Georgia, "Times New Roman", serif;
}

h1 {
  max-width: min(100%, 860px);
  margin-top: 16px;
  color: #181613;
  font-size: clamp(2.3rem, 4.6vw, 4.2rem);
  letter-spacing: 0;
  text-wrap: pretty;
}

h2 {
  margin-bottom: 18px;
  color: #181613;
  font-size: clamp(1.45rem, 2.3vw, 2.05rem);
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.eyebrow,
.starting-feature span,
.route-card span,
.decision-card span,
.card-topline span {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow {
  color: var(--accent);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  gap: 34px;
  align-items: end;
  padding-top: 70px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(246, 247, 248, 0.98)),
    linear-gradient(90deg, rgba(37, 115, 111, 0.06), transparent 48%);
}

.home-hero {
  grid-template-columns: minmax(0, 1fr);
  min-height: 360px;
}

.home-hero .hero-copy {
  max-width: 780px;
}

.hero p {
  max-width: 760px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-meta,
.language-switcher {
  display: flex;
  gap: 9px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.hero-meta span,
.language-switcher a,
.card-topline span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 6px 10px;
  background: #ffffff;
  color: #383430;
  text-decoration: none;
}

.hero-meta span:nth-child(2n) {
  background: var(--blue);
}

.hero-meta span:nth-child(3n) {
  background: var(--green);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: flex-start;
  margin-top: 26px;
}

.home-location-action {
  flex: 0 1 360px;
  display: grid;
  gap: 6px;
  max-width: min(100%, 360px);
}

.home-location-button {
  min-height: 42px;
  padding-top: 8px;
  padding-bottom: 8px;
  line-height: 1.2;
  text-align: center;
  white-space: nowrap;
}

.home-location-button:focus-visible {
  outline: 2px solid rgba(23, 79, 76, 0.18);
}

.home-location-status {
  min-height: 18px;
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.home-location-status.is-error {
  color: #8b2e22;
  font-weight: 700;
}

.hero-panel {
  display: grid;
  gap: 0;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.hero-panel > div {
  display: grid;
  grid-template-columns: 78px 1fr;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border-bottom: 1px solid var(--line);
}

.hero-panel > div:last-child {
  border-bottom: 0;
}

.panel-number {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--accent-dark);
  font-size: 2.65rem;
  line-height: 1;
}

.panel-label {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  line-height: 1.3;
  text-transform: uppercase;
}

.language-switcher {
  grid-column: 1 / -1;
  margin-top: 8px;
}

.language-switcher a {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 40px;
  padding: 0;
  isolation: isolate;
  overflow: hidden;
  color: #171412;
  font-weight: 800;
}

.language-switcher a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: var(--flag-image);
  background-position: center;
  background-size: cover;
  opacity: 0.28;
}

.language-switcher a[aria-current="page"] {
  border-color: var(--accent);
  background: var(--gold);
}

.summary-grid,
.content-section {
  padding-top: 48px;
  padding-bottom: 48px;
}

.summary-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) repeat(3, minmax(130px, 1fr));
  gap: 12px;
  align-items: stretch;
}

.summary-grid > div,
.card,
.platform-row,
.source-row,
.disclosure,
.starting-copy,
.starting-feature {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.summary-grid > div {
  padding: 18px 20px;
}

.summary-grid h2 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.summary-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.stat-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 98px;
  border-top: 4px solid var(--accent);
}

.stat {
  display: block;
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2rem;
  line-height: 1;
}

.stat-card > span:not(.stat) {
  font-weight: 800;
  line-height: 1.2;
}

.stat-card small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.25;
}

.starting-point {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: 18px;
  padding-top: 34px;
  padding-bottom: 48px;
}

.starting-copy {
  padding: 28px;
  border-left: 5px solid var(--accent);
}

.starting-copy p,
.starting-feature p,
.route-card p,
.decision-intro p,
.decision-card p {
  color: var(--muted);
}

.starting-feature {
  padding: 28px;
  border-top: 5px solid #191715;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(237, 241, 243, 0.96)),
    var(--paper);
}

.starting-feature span,
.route-card span {
  display: inline-flex;
  margin-bottom: 12px;
  color: var(--accent);
}

.starting-feature h3 {
  font-size: 1.85rem;
}

.starting-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.route-grid {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.route-card {
  padding: 18px 20px;
  border-right: 1px solid var(--line);
}

.route-card:last-child {
  border-right: 0;
}

.route-card span {
  margin-bottom: 8px;
  font-size: 0.68rem;
}

.route-card h3 {
  font-size: 1rem;
}

.route-card p {
  margin-top: 0;
  font-size: 0.92rem;
}

.decision-guide {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: 22px;
  align-items: stretch;
}

.decision-intro {
  border-top: 4px solid var(--accent);
  padding-top: 18px;
}

.decision-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.decision-card {
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.decision-card:nth-child(1) {
  background: linear-gradient(180deg, #ffffff, var(--blue));
}

.decision-card:nth-child(2) {
  background: linear-gradient(180deg, #ffffff, var(--green));
}

.decision-card:nth-child(3) {
  background: linear-gradient(180deg, #ffffff, var(--rose));
}

.decision-card span {
  display: inline-flex;
  margin-bottom: 10px;
  color: var(--accent-dark);
  font-size: 0.68rem;
}

.decision-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
}

.decision-card p {
  margin-top: 8px;
  margin-bottom: 0;
  font-size: 0.94rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(295px, 1fr));
  gap: 18px;
}

.card,
.platform-row {
  padding: 24px;
}

.card {
  position: relative;
  min-height: 100%;
  overflow: hidden;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.country-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.9) 54%, rgba(255, 255, 255, 0.97)),
    var(--card-flag);
  background-position: center;
  background-size: cover;
  filter: grayscale(0.15) saturate(0.85);
  opacity: 0.42;
}

.country-card > * {
  position: relative;
  z-index: 1;
}

.card:hover {
  transform: translateY(-2px);
  border-color: var(--line-strong);
  box-shadow: 0 4px 8px rgba(31, 28, 24, 0.14), 0 14px 28px rgba(31, 28, 24, 0.1);
}

.card-topline {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}

.card-topline span {
  background: #e8eef2;
  color: #263238;
  padding: 5px 9px;
  letter-spacing: 0.02em;
}

.card h3 {
  color: #181613;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.32rem;
}

.card p {
  margin-top: 12px;
}

.muted,
.card p,
.platform-row p,
.source-row p,
.site-footer p {
  color: var(--muted);
}

.site-copyright {
  margin-top: 16px;
  font-size: 0.82rem;
}

.footer-policy-links {
  margin-top: 18px;
}

.footer-policy-links p {
  margin-bottom: 8px;
  font-size: 0.88rem;
}

.footer-policy-links div {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
}

.footer-policy-links a {
  color: var(--accent-dark);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
}

.footer-policy-links a:hover {
  color: #111;
}

.details,
.platform-row dl,
.source-row dl {
  display: grid;
  gap: 10px;
  margin: 18px 0 0;
}

.details div,
.platform-row dl div,
.source-row dl div {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 12px;
  border-top: 1px solid var(--line);
  padding-top: 10px;
}

dt {
  color: #70685f;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

dd {
  margin: 0;
}

.platform-list,
.source-list {
  display: grid;
  gap: 14px;
}

.platform-row,
.source-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(260px, 0.8fr) auto;
  gap: 22px;
  align-items: center;
}

.platform-row {
  border-left: 5px solid var(--accent);
}

.source-row {
  grid-template-columns: minmax(0, 1.3fr) minmax(240px, 0.7fr);
  padding: 18px;
}

.source-row p {
  margin: 8px 0 0;
}

.button,
.text-link {
  font-weight: 800;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid #181613;
  border-radius: var(--radius);
  background: #181613;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  text-decoration: none;
}

.button:hover {
  background: var(--accent-dark);
  border-color: var(--accent-dark);
}

.button-secondary {
  background: #ffffff;
  color: #181613;
}

.button-secondary:hover {
  background: var(--paper-2);
  color: #181613;
}

.text-link {
  color: var(--accent-dark);
}

.text-link:hover {
  color: #111;
}

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

.two-column > div {
  border-top: 4px solid var(--accent);
  padding-top: 18px;
}

.map-hero {
  grid-template-columns: minmax(0, 1fr);
}

.map-section {
  padding-top: 34px;
  padding-bottom: 44px;
}

.map-layout {
  display: block;
}

.map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #e6eef2;
  box-shadow: var(--shadow);
}

.guide-map {
  width: 100%;
  min-height: 660px;
  background: #dfe9ee;
}

.leaflet-container {
  font: inherit;
}

.country-marker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto !important;
  height: auto !important;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(25, 23, 21, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  color: #1c2325;
  box-shadow: 0 2px 5px rgba(31, 28, 24, 0.16);
}

.country-marker span {
  display: block;
  max-width: 122px;
  padding: 4px 7px;
  overflow: hidden;
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.15;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.country-marker:hover,
.country-marker.is-active {
  z-index: 900 !important;
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  color: #ffffff;
}

.map-load-error {
  display: grid;
  min-height: 360px;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  text-align: center;
}

.map-floating-card {
  position: absolute;
  z-index: 1000;
  right: 16px;
  top: 16px;
  width: min(360px, calc(100% - 32px));
  max-height: calc(100% - 32px);
  overflow: auto;
  border: 1px solid var(--line);
  border-top: 5px solid var(--accent);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 8px 18px rgba(31, 28, 24, 0.2), 0 18px 38px rgba(31, 28, 24, 0.14);
  opacity: 0;
  transform: translateY(12px) scale(0.98);
  transition: opacity 180ms ease, transform 180ms ease;
}

.map-floating-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.map-card-close {
  position: absolute;
  right: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: #181613;
  font: inherit;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.map-card-close:hover,
.map-card-close:focus-visible {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  outline: none;
}

.map-floating-card h2 {
  margin: 8px 40px 10px 0;
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.map-floating-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.map-card-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 16px 0;
}

.map-card-stats div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 9px;
  background: var(--paper-2);
}

.map-card-stats dt {
  margin-bottom: 4px;
}

.map-card-stats dd {
  color: var(--accent-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.55rem;
  line-height: 1;
}

.map-floating-card .button {
  margin-top: 2px;
}

.map-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.map-back-button {
  position: absolute;
  z-index: 1001;
  left: 16px;
  top: 16px;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid #181613;
  border-radius: var(--radius);
  background: #ffffff;
  color: #181613;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(31, 28, 24, 0.16);
}

.map-back-button:hover,
.map-back-button:focus-visible {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  outline: none;
}

.map-nearest-control {
  position: absolute;
  z-index: 1001;
  left: 16px;
  top: 64px;
  width: min(340px, calc(100% - 32px));
  max-height: calc(100% - 86px);
  overflow: auto;
  border: 1px solid rgba(24, 22, 19, 0.18);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 18px rgba(31, 28, 24, 0.18);
}

.map-nearest-control h3 {
  margin: 0 34px 8px 0;
  font-size: 1rem;
}

.map-nearest-close {
  position: absolute;
  right: 8px;
  top: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  color: #181613;
  font: inherit;
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1;
  cursor: pointer;
}

.map-nearest-close:hover,
.map-nearest-close:focus-visible {
  border-color: var(--accent-dark);
  color: var(--accent-dark);
  outline: none;
}

.map-location-button,
.map-location-search button,
.map-nearest-results button {
  font: inherit;
  cursor: pointer;
}

.map-location-button {
  width: 100%;
  min-height: 36px;
  border: 1px solid #181613;
  border-radius: var(--radius);
  background: #181613;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.map-location-button:hover,
.map-location-button:focus-visible {
  border-color: var(--accent-dark);
  background: var(--accent-dark);
  outline: none;
}

.map-location-search {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.map-location-search label {
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.map-location-search-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 6px;
}

.map-location-search input {
  min-width: 0;
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 10px;
  background: #ffffff;
  color: #181613;
  font: inherit;
  font-size: 0.84rem;
}

.map-location-search button {
  min-height: 36px;
  border: 1px solid var(--accent-dark);
  border-radius: var(--radius);
  padding: 0 10px;
  background: #ffffff;
  color: var(--accent-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

.map-location-search input:focus,
.map-location-search button:focus-visible {
  border-color: var(--accent-dark);
  outline: 2px solid rgba(23, 79, 76, 0.18);
  outline-offset: 2px;
}

.map-location-status {
  min-height: 18px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.35;
}

.map-location-status.is-error {
  color: #8b2e22;
  font-weight: 700;
}

.map-nearest-results {
  display: grid;
  gap: 6px;
  margin: 9px 0 0;
  padding: 0;
  list-style: none;
}

.map-nearest-results button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 8px;
  background: var(--paper-2);
  color: #181613;
  text-align: left;
}

.map-nearest-results button:hover,
.map-nearest-results button:focus-visible {
  border-color: var(--accent-dark);
  outline: none;
}

.map-nearest-results strong,
.map-nearest-results em,
.map-nearest-results b {
  display: block;
}

.map-nearest-results strong {
  overflow: hidden;
  font-size: 0.82rem;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-nearest-results em {
  margin-top: 2px;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.72rem;
  font-style: normal;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.map-nearest-results b {
  align-self: center;
  color: var(--accent-dark);
  font-size: 0.82rem;
  white-space: nowrap;
}

.map-event-toggle {
  position: absolute;
  z-index: 1001;
  right: 14px;
  bottom: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: min(320px, calc(100% - 28px));
  min-height: 34px;
  border: 1px solid rgba(24, 22, 19, 0.22);
  border-radius: var(--radius);
  padding: 7px 10px;
  background: rgba(255, 255, 255, 0.94);
  color: #24211d;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgba(31, 28, 24, 0.14);
  cursor: pointer;
}

.map-event-toggle input {
  width: 15px;
  height: 15px;
  accent-color: #b86b23;
}

.map-event-toggle:focus-within {
  border-color: #b86b23;
  outline: 2px solid rgba(184, 107, 35, 0.22);
  outline-offset: 2px;
}

.club-map-popup {
  max-width: 290px;
}

.club-map-popup h3 {
  margin: 6px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
}

.club-map-popup p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.45;
}

.club-map-category-note {
  border-left: 3px solid #d48a3a;
  padding-left: 9px;
  color: #5f3c1b !important;
  font-weight: 700;
}

.club-map-popup dl {
  display: grid;
  gap: 6px;
  margin: 10px 0;
}

.club-map-popup dl div {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 8px;
  border-top: 1px solid var(--line);
  padding-top: 6px;
}

.club-map-popup dt {
  font-size: 0.64rem;
}

.club-map-popup dd {
  margin: 0;
  font-size: 0.86rem;
}

.club-map-popup-shell .leaflet-popup-content-wrapper {
  border-radius: var(--radius);
}

.club-map-popup-shell .leaflet-popup-content {
  margin: 16px;
  font: inherit;
}

.map-updated {
  margin-bottom: 18px;
  font-size: 0.9rem;
}

.disclosure {
  margin-bottom: 36px;
  padding: 24px;
}

.directory-note {
  padding-top: 10px;
  padding-bottom: 52px;
}

.directory-note h2,
.directory-note p {
  max-width: 860px;
}

.directory-note h2 {
  margin-bottom: 16px;
}

.directory-note p {
  margin: 0 0 14px;
  color: var(--muted);
}

.directory-note p:last-child {
  margin-bottom: 0;
}

.directory-note a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.directory-note a:hover {
  color: #111;
}

.directory-note-action {
  padding-top: 4px;
}

.about-page {
  padding-top: 64px;
  padding-bottom: 64px;
}

.about-hero {
  max-width: 900px;
}

.about-hero p {
  max-width: 820px;
  color: var(--muted);
  font-size: 1.06rem;
}

.about-hero .text-link {
  display: inline-flex;
  margin-top: 10px;
}

.about-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 34px 0 42px;
}

.about-stat-grid > div {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.about-stat-grid .stat {
  margin-bottom: 6px;
}

.about-stat-grid span:not(.stat) {
  display: block;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.25;
}

.about-content {
  display: grid;
  gap: 24px;
  max-width: 900px;
}

.about-section {
  border-top: 2px solid var(--line);
  padding-top: 22px;
}

.about-section h2 {
  margin-bottom: 12px;
}

.about-section p {
  max-width: 820px;
  margin: 0 0 12px;
  color: var(--muted);
}

.about-section p:last-child {
  margin-bottom: 0;
}

.about-section a {
  color: var(--accent-dark);
  font-weight: 800;
  text-decoration: none;
}

.about-section a:hover {
  color: #111;
}

.site-footer {
  padding-top: 28px;
  padding-bottom: 36px;
  border-top: 2px solid var(--line);
  background: #ffffff;
}

@media (max-width: 980px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    grid-template-columns: repeat(3, 1fr);
  }

  .hero-panel > div {
    grid-template-columns: 1fr;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-panel > div:last-child {
    border-right: 0;
  }

  .summary-grid,
  .starting-point,
  .decision-guide,
  .about-stat-grid,
  .platform-row,
  .source-row,
  .two-column {
    grid-template-columns: 1fr;
  }

  .route-grid,
  .decision-grid {
    grid-template-columns: 1fr;
  }

  .route-card {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .route-card:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 680px) {
  .site-header {
    align-items: flex-start;
    grid-template-columns: 1fr;
    flex-direction: column;
    padding-top: 14px;
    padding-bottom: 14px;
    position: static;
  }

  .brand {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .brand span {
    min-height: 0;
    max-width: 100%;
    border-left: 0;
    padding-left: 0;
  }

  .top-nav {
    justify-self: stretch;
    width: 100%;
  }

  .country-nav summary {
    width: 100%;
  }

  .country-nav-panel {
    position: static;
    grid-template-columns: 1fr;
    width: 100%;
    max-height: 320px;
    margin-top: 8px;
  }

  h1 {
    font-size: clamp(2.15rem, 11vw, 3.4rem);
  }

  .hero {
    padding-top: 44px;
    padding-bottom: 42px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
  }

  .hero-panel > div {
    grid-template-columns: 76px 1fr;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .button {
    width: 100%;
  }

  .home-location-action {
    width: 100%;
    max-width: none;
  }

  .home-location-button {
    width: 100%;
    white-space: normal;
  }

  .guide-map {
    min-height: 520px;
  }

  .map-floating-card {
    top: auto;
    right: 10px;
    bottom: 10px;
    left: 10px;
    width: auto;
    max-height: min(74%, 430px);
    padding: 16px;
  }

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

  .map-card-stats div {
    padding: 8px;
  }

  .map-card-stats dt {
    font-size: 0.64rem;
  }

  .map-card-stats dd {
    font-size: 1.35rem;
  }

  .map-card-actions {
    grid-template-columns: 1fr;
  }

  .map-back-button {
    left: 10px;
    top: 10px;
  }

  .map-nearest-control {
    left: 10px;
    top: 56px;
    width: min(330px, calc(100% - 20px));
    max-height: min(48%, 320px);
    padding: 10px;
  }

  .map-nearest-control h3 {
    font-size: 0.94rem;
  }

  .map-location-search-row {
    grid-template-columns: 1fr;
  }

  .map-location-search button {
    width: 100%;
  }

  .map-event-toggle {
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    font-size: 0.74rem;
  }
}

@media (max-width: 520px) {
  .site-header,
  .site-footer,
  main > section {
    padding-left: 18px;
    padding-right: 18px;
  }

  .brand img {
    width: 95px;
    max-width: 72vw;
  }

  .details div,
  .platform-row dl div,
  .source-row dl div {
    grid-template-columns: 1fr;
    gap: 2px;
  }
}
