@font-face {
  font-family: "Playfair PNF";
  src: url("../fonts/playfair-400.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Playfair PNF";
  src: url("../fonts/playfair-italic-400.woff2") format("woff2");
  font-display: swap;
  font-style: italic;
  font-weight: 400;
}

@font-face {
  font-family: "Inter PNF";
  src: url("../fonts/inter-400.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Inter PNF";
  src: url("../fonts/inter-500.woff2") format("woff2");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "Inter PNF";
  src: url("../fonts/inter-600.woff2") format("woff2");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "Cormorant PNF";
  src: url("../fonts/cormorant-400.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Cormorant PNF";
  src: url("../fonts/cormorant-500.woff2") format("woff2");
  font-display: swap;
  font-weight: 500;
}

@font-face {
  font-family: "Cormorant PNF";
  src: url("../fonts/cormorant-600.woff2") format("woff2");
  font-display: swap;
  font-weight: 600;
}

:root {
  --ink: #15140f;
  --muted: #67645c;
  --paper: #f7f4ec;
  --white: #ffffff;
  --mist: #e8efea;
  --soft: #ede6d7;
  --forest: #08261d;
  --forest-2: #11392d;
  --teal: #286f73;
  --gold: #b98b34;
  --clay: #9a4d36;
  --line: rgba(21, 20, 15, 0.16);
  --line-dark: rgba(255, 255, 255, 0.18);
  --shadow: 0 26px 80px rgba(8, 38, 29, 0.22);
  --shell: 1180px;
  --font-body: "Inter PNF", Arial, sans-serif;
  --font-display: "Cormorant PNF", "Playfair PNF", Georgia, serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
}

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

a {
  color: inherit;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button {
  color: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 50;
  transform: translateY(-140%);
  border-radius: 8px;
  padding: 10px 14px;
  background: var(--white);
  color: var(--ink);
  font-weight: 600;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
  outline: 2px solid var(--gold);
}

.page-shell {
  width: min(var(--shell), calc(100% - 40px));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 28px;
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.site-header--scrolled {
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 236, 0.94);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.brand {
  min-width: 0;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: inherit;
  text-decoration: none;
}

.brand__mark {
  width: 46px;
  height: 46px;
  flex: 0 0 auto;
  object-fit: cover;
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.site-header--scrolled .brand__mark {
  border-color: var(--line);
}

.brand__name {
  font-family: var(--font-display);
  font-size: 1.24rem;
  line-height: 1;
  white-space: nowrap;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
}

.site-nav a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 8px 11px;
  color: inherit;
  font-size: 0.88rem;
  font-weight: 500;
  line-height: 1.1;
  text-decoration: none;
  white-space: nowrap;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a[aria-current="page"] {
  border-color: currentColor;
  outline: none;
}

.site-nav .nav-pill {
  border-color: rgba(255, 255, 255, 0.62);
}

.site-header--scrolled .site-nav .nav-pill {
  border-color: var(--forest);
}

.hero {
  position: relative;
  min-height: 82svh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--forest);
  color: var(--white);
}

.hero--country,
.hero--place {
  min-height: 74svh;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__image {
  object-fit: cover;
}

.media-picture {
  display: block;
  width: 100%;
  height: 100%;
}

.media-picture > img {
  width: 100%;
  height: 100%;
}

.hero__picture {
  position: absolute;
  inset: 0;
}

.hero__picture .hero__image {
  position: static;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 38, 29, 0.92) 0%, rgba(8, 38, 29, 0.62) 44%, rgba(21, 20, 15, 0.2) 100%),
    linear-gradient(0deg, rgba(21, 20, 15, 0.72) 0%, rgba(21, 20, 15, 0.08) 68%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 52px;
  align-items: end;
  padding: 136px 0 118px;
}

.hero__content h1,
.subhero h1,
.text-hero h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 5.7rem;
  line-height: 0.94;
  font-weight: 400;
  text-wrap: balance;
}

.hero__content h1 {
  max-width: 790px;
}

.hero__lede,
.subhero p,
.text-hero p {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.14rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-panel {
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.hero-panel strong {
  display: block;
  margin-top: 6px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  line-height: 1.08;
  font-weight: 400;
}

.hero-panel p {
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, 0.78);
}

.panel-kicker,
.eyebrow {
  display: block;
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 600;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero .eyebrow,
.hero .panel-kicker,
.section--dark .eyebrow {
  color: #e8c16a;
}

.hero__meta {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 26px;
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
}

.hero__meta span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 18px;
  background: rgba(8, 38, 29, 0.38);
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
}

.compact-stats,
.mini-specs,
.issue-facts dl,
.place-specs dl,
.standard-table dl {
  display: grid;
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.compact-stats {
  background: rgba(255, 255, 255, 0.2);
}

.compact-stats div,
.mini-specs div,
.issue-facts dl div,
.place-specs dl div,
.standard-table dl div {
  padding: 13px 14px;
  background: var(--white);
}

.compact-stats div {
  background: rgba(255, 255, 255, 0.12);
}

dt {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

dd {
  margin: 0;
}

.compact-stats dt {
  color: rgba(255, 255, 255, 0.58);
}

.compact-stats dd {
  color: var(--white);
}

.button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  outline: none;
}

.button--light {
  background: var(--white);
  color: var(--forest);
}

.button--ghost {
  border-color: rgba(255, 255, 255, 0.58);
  color: var(--white);
}

.button--dark {
  background: var(--forest);
  color: var(--white);
}

.button--outline {
  border-color: var(--forest);
  color: var(--forest);
}

.section {
  padding: 92px 0;
}

.section--tight {
  padding: 34px 0;
}

.section--alt {
  background: var(--white);
}

.section--dark {
  background: var(--forest);
  color: var(--white);
}

.section--issue-preview {
  background: linear-gradient(180deg, var(--paper) 0%, var(--mist) 100%);
}

.section-heading {
  max-width: var(--shell);
}

.section-heading h2,
.issue-preview h2,
.manifesto-grid h2,
.country-copy h2,
.place-story h2,
.map-layout h2,
.planning-grid h2,
.publication-board h2,
.standard-table h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3.25rem;
  line-height: 1.04;
  font-weight: 400;
  text-wrap: balance;
}

.section-heading p,
.country-copy p,
.place-story p,
.map-layout p,
.manifesto-copy p,
.planning-list p,
.publication-board p,
.method-grid p,
.standard-table p {
  max-width: 680px;
  color: var(--muted);
}

.section--dark .section-heading p,
.section--dark .manifesto-copy p,
.section--dark .publication-board p {
  color: rgba(255, 255, 255, 0.76);
}

.editorial-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.editorial-strip div {
  min-height: 166px;
  padding: 22px;
  background: var(--white);
}

.editorial-strip span,
.method-grid span,
.publication-board article span {
  display: inline-flex;
  margin-bottom: 20px;
  color: var(--clay);
  font-weight: 600;
}

.editorial-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.08;
  font-weight: 400;
}

.editorial-strip p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.area-planner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 34px;
}

.area-card {
  min-height: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.area-card span,
.region-card span {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--clay);
  font-weight: 600;
}

.area-card h3,
.region-group h3,
.region-card h4 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
}

.area-card h3 {
  font-size: 1.68rem;
}

.area-card p,
.area-card ul {
  color: var(--muted);
}

.area-card p {
  margin: 0 0 14px;
}

.area-card ul {
  margin: 0;
  padding-left: 18px;
}

.area-card li + li {
  margin-top: 7px;
}

.area-card small {
  display: block;
  margin-top: 18px;
  border-top: 1px solid var(--line);
  padding-top: 14px;
  color: var(--ink);
  line-height: 1.5;
}

.issue-preview {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  gap: 54px;
  align-items: center;
}

.issue-preview__media {
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  border-radius: 8px;
  background: var(--forest);
}

.issue-preview__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.issue-preview__copy > p {
  color: var(--muted);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 28px 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.proof-grid div {
  padding: 18px;
  background: var(--white);
}

.proof-grid span {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  line-height: 1;
  color: var(--forest);
}

.proof-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.atlas-tools {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr) auto;
  gap: 16px;
  align-items: end;
  margin-top: 34px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.atlas-tools--page {
  margin-top: 0;
  margin-bottom: 28px;
}

.search-field {
  display: grid;
  gap: 8px;
}

.search-field span {
  color: var(--muted);
  font-size: 0.84rem;
}

.search-field input {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  background: var(--paper);
  color: var(--ink);
}

.search-field input:focus {
  border-color: var(--teal);
  outline: 2px solid rgba(40, 111, 115, 0.22);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chip {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px 12px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
}

.chip:hover,
.chip:focus-visible,
.chip--active {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
  outline: none;
}

.search-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  white-space: nowrap;
}

.empty-state {
  margin-top: 20px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 18px;
  background: var(--white);
  color: var(--muted);
}

.empty-state[hidden] {
  display: none;
}

.place-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.place-grid--featured {
  grid-template-columns: minmax(0, 1.1fr) repeat(2, minmax(0, 0.78fr));
}

.place-card,
.dossier,
.country-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
}

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

.place-card__image-link,
.country-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mist);
}

.place-card--large .place-card__image-link {
  aspect-ratio: 4 / 3.4;
}

.place-card img,
.dossier img,
.country-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease;
}

.place-card:hover img,
.country-card:hover img {
  transform: scale(1.025);
}

.place-card__body,
.dossier__body,
.country-card__body {
  padding: 21px;
}

.place-card__meta,
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.place-card__meta span {
  color: var(--muted);
  font-size: 0.78rem;
}

.place-card h2,
.place-card h3,
.dossier h3,
.country-card h2 {
  margin: 10px 0 9px;
  font-family: var(--font-display);
  font-size: 1.75rem;
  line-height: 1.08;
  font-weight: 400;
}

.place-card--large h2,
.place-card--large h3,
.country-card h2 {
  font-size: 2.35rem;
}

.place-card h2 a,
.place-card h3 a,
.dossier h3 a,
.country-card h2 a {
  text-decoration: none;
}

.place-card p,
.dossier p,
.country-card p {
  margin: 0 0 18px;
  color: var(--muted);
}

.tag-row span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 4px 8px;
  color: var(--ink);
  font-size: 0.78rem;
}

.media-note {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.45;
}

.media-note--story {
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}

.manifesto-grid,
.country-overview,
.publication-board,
.planning-grid,
.standard-table {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(0, 1fr);
  gap: 54px;
  align-items: start;
}

.manifesto-copy {
  display: grid;
  gap: 18px;
}

.manifesto-copy p {
  margin: 0;
  font-size: 1.04rem;
}

.manifesto-copy--light p {
  color: var(--muted);
}

.issue-facts,
.place-specs {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 8px;
  background: var(--white);
}

.dossier-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin-top: 34px;
}

.dossier {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
}

.dossier--feature {
  grid-row: span 2;
  grid-template-columns: 1fr;
}

.dossier img {
  min-height: 100%;
  aspect-ratio: 4 / 3;
}

.dossier--feature img {
  aspect-ratio: 16 / 10;
}

.text-link {
  display: inline-flex;
  margin-top: 18px;
  color: var(--forest);
  font-weight: 600;
  text-decoration-color: var(--gold);
  text-underline-offset: 4px;
}

.route-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  background: var(--line);
}

.route-item {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr);
  gap: 24px;
  padding: 26px;
  background: var(--paper);
}

.route-item__date {
  color: var(--clay);
  font-weight: 600;
}

.route-item h3,
.publication-board h3,
.planning-list h3,
.note-block h3,
.method-grid h2 {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.12;
  font-weight: 400;
}

.route-item p {
  margin: 0;
  color: var(--muted);
}

.board-list,
.planning-list {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.board-list article,
.planning-list article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
}

.planning-list {
  border-color: var(--line);
  background: var(--line);
}

.planning-list article {
  background: var(--white);
}

.planning-list p {
  margin: 0;
}

.publication-board--light .board-list,
.board-list--light {
  border-color: var(--line);
  background: var(--line);
}

.publication-board--light .board-list article,
.board-list--light article {
  background: var(--white);
}

.publication-board--light p,
.board-list--light p {
  color: var(--muted);
}

.place-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 54px;
  align-items: start;
}

.place-story p {
  font-size: 1.04rem;
}

.gallery-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 34px 0;
}

.gallery-thumb {
  aspect-ratio: 4 / 3;
  border: 2px solid transparent;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: var(--mist);
  cursor: pointer;
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-thumb--active,
.gallery-thumb:focus-visible {
  border-color: var(--gold);
  outline: none;
}

.note-block {
  border-left: 3px solid var(--gold);
  padding: 4px 0 4px 22px;
}

.clean-list {
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
}

.place-specs {
  position: sticky;
  top: 92px;
}

.map-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 48px;
  align-items: center;
}

.map-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.map-card {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: #dce8df;
}

.map-card__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(21, 20, 15, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(21, 20, 15, 0.08) 1px, transparent 1px);
  background-size: 42px 42px;
}

.map-card__coast {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, transparent 0 48%, rgba(40, 111, 115, 0.94) 49% 100%),
    linear-gradient(25deg, rgba(154, 77, 54, 0.24), transparent 54%);
}

.map-card__pin {
  position: absolute;
  left: 34%;
  top: 46%;
  display: grid;
  gap: 3px;
  padding: 12px 14px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.map-card__pin span {
  position: absolute;
  left: 18px;
  top: -13px;
  width: 18px;
  height: 18px;
  border: 4px solid var(--white);
  border-radius: 999px;
  background: var(--clay);
}

.map-card__pin strong {
  font-size: 0.95rem;
}

.map-card__pin small {
  color: var(--muted);
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.related-link {
  min-height: 132px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  text-decoration: none;
}

.related-link:hover,
.related-link:focus-visible {
  border-color: var(--gold);
  outline: none;
}

.related-link span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.related-link strong {
  font-family: var(--font-display);
  font-size: 1.45rem;
  line-height: 1.1;
  font-weight: 400;
}

.subhero {
  padding: 148px 0 76px;
  background: var(--forest);
  color: var(--white);
}

.subhero--plain {
  padding-bottom: 92px;
}

.subhero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.72fr);
  gap: 48px;
  align-items: end;
}

.subhero__grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 8px;
}

.subhero__grid .media-picture {
  aspect-ratio: 4 / 3;
  border-radius: 8px;
  overflow: hidden;
}

.subhero__grid .media-picture img {
  height: 100%;
}

.page-nav {
  position: sticky;
  top: 74px;
  z-index: 20;
  border-bottom: 1px solid var(--line);
  background: rgba(247, 244, 236, 0.94);
  backdrop-filter: blur(16px);
}

.page-nav__inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-block: 10px;
}

.page-nav a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 7px 11px;
  color: var(--ink);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.page-nav a:hover,
.page-nav a:focus-visible {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.section--atlas {
  background: var(--forest);
  color: var(--white);
}

.atlas-board {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(380px, 1.1fr);
  gap: 46px;
  align-items: center;
}

.atlas-board__copy h2,
.route-map__copy h2,
.quick-verdict h2,
.fit-grid h2,
.logistics-grid h2,
.disclosure-box h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.04;
  text-wrap: balance;
}

.atlas-board__copy p,
.route-map__copy p,
.quick-verdict p,
.disclosure-box p {
  color: rgba(255, 255, 255, 0.76);
}

.atlas-board__stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.atlas-board__stats div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.08);
}

.atlas-board__stats span,
.atlas-flow span,
.quick-verdict__facts span,
.status-board span,
.logistics-list span {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-size: 0.74rem;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.atlas-board__stats strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
}

.atlas-map {
  position: relative;
  min-height: 430px;
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 62% 46%, rgba(185, 139, 52, 0.28), transparent 22%),
    linear-gradient(115deg, rgba(40, 111, 115, 0.52), rgba(255, 255, 255, 0.06) 48%, rgba(154, 77, 54, 0.26)),
    #10271f;
}

.atlas-map__grid {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 52px 52px;
  mask-image: radial-gradient(circle at center, black, transparent 80%);
}

.atlas-map__point {
  position: absolute;
  left: var(--x);
  top: var(--y);
  display: grid;
  gap: 2px;
  min-width: 132px;
  transform: translate(-18px, -18px);
  border: 1px solid var(--line-dark);
  border-radius: 8px;
  padding: 12px 13px 12px 34px;
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
  text-decoration: none;
  backdrop-filter: blur(12px);
}

.atlas-map__point span {
  position: absolute;
  left: 12px;
  top: 15px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--white);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 8px rgba(185, 139, 52, 0.22);
}

.atlas-map__point strong {
  line-height: 1.1;
}

.atlas-map__point small {
  color: rgba(255, 255, 255, 0.68);
}

.atlas-flow {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 22px;
  border: 1px solid var(--line-dark);
  background: var(--line-dark);
}

.atlas-flow article {
  min-height: 142px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.atlas-flow p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.route-map {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(0, 1.28fr);
  gap: 38px;
  align-items: start;
}

.route-map__copy p {
  color: var(--muted);
}

.route-map__rail {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.route-map__rail article {
  min-height: 190px;
  display: flex;
  flex-direction: column;
  padding: 17px;
  background: var(--white);
}

.route-map__rail span {
  color: var(--clay);
  font-weight: 700;
}

.route-map__rail h3 {
  margin: 18px 0 8px;
  font-family: var(--font-display);
  font-size: 1.36rem;
  font-weight: 500;
  line-height: 1.08;
}

.route-map__rail p {
  margin: 0 0 16px;
  color: var(--muted);
}

.route-map__rail small {
  margin-top: auto;
  color: var(--forest);
  font-weight: 700;
}

.status-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 28px;
  border: 1px solid var(--line);
  background: var(--line);
}

.status-board article {
  padding: 18px;
  background: var(--paper);
}

.status-board strong {
  display: block;
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 400;
  line-height: 1;
}

.status-board p {
  margin: 10px 0 0;
  color: var(--muted);
}

.quick-verdict {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 150px minmax(320px, 0.9fr);
  gap: 24px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.quick-verdict p {
  color: var(--muted);
}

.quick-verdict__score {
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--forest);
  color: var(--white);
  text-align: center;
}

.quick-verdict__score span {
  font-family: var(--font-display);
  font-size: 3.2rem;
  line-height: 1;
}

.quick-verdict__score small {
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}

.quick-verdict__facts {
  display: grid;
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.quick-verdict__facts article {
  padding: 14px;
  background: var(--paper);
}

.quick-verdict__facts strong {
  font-weight: 600;
}

.fit-grid,
.logistics-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.logistics-grid {
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
}

.fit-grid h2,
.logistics-grid h2,
.disclosure-box h2 {
  color: var(--ink);
}

.fit-list,
.logistics-list {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: var(--white);
}

.fit-list h3 {
  margin: 0 0 16px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 500;
}

.fit-list--positive {
  border-color: rgba(40, 111, 115, 0.38);
}

.logistics-list {
  display: grid;
  gap: 1px;
  border-radius: 8px;
  padding: 0;
  overflow: hidden;
  background: var(--line);
}

.logistics-list article {
  padding: 18px;
  background: var(--white);
}

.logistics-list p {
  margin: 0;
  color: var(--muted);
}

.section--disclosure {
  background: var(--mist);
}

.disclosure-box {
  max-width: 860px;
  border-left: 3px solid var(--gold);
  padding: 8px 0 8px 24px;
}

.disclosure-box p {
  color: var(--muted);
}

.text-hero {
  max-width: var(--shell);
}

.country-index {
  display: grid;
  gap: 20px;
}

.country-card {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
}

.country-card__body .button {
  margin-top: 20px;
}

.country-card__media--mark {
  display: grid;
  place-items: center;
  background: var(--forest);
}

.country-card__media--mark img {
  width: min(52%, 260px);
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
}

.region-groups {
  display: grid;
  gap: 34px;
  margin-top: 34px;
}

.region-group {
  display: grid;
  gap: 16px;
}

.region-group h3 {
  font-size: 2rem;
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.region-card {
  min-height: 190px;
  padding: 20px;
  background: var(--white);
}

.region-card h4 {
  font-size: 1.35rem;
}

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

.method-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.method-grid article {
  min-height: 280px;
  padding: 24px;
  background: var(--white);
}

.method-grid h2 {
  font-size: 1.48rem;
}

.method-grid p {
  margin: 0;
}

.standard-table {
  align-items: start;
}

.standard-table dl {
  border: 1px solid var(--line);
}

.not-found {
  min-height: 100svh;
  display: grid;
  align-items: center;
  background: var(--paper);
}

.not-found .text-hero h1,
.not-found .text-hero p {
  color: var(--ink);
}

.site-footer {
  position: relative;
  overflow: hidden;
  background: #0b1712;
  color: var(--white);
  padding: 64px 0 28px;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  background: linear-gradient(90deg, rgba(185, 139, 52, 0.16), transparent 42%);
  pointer-events: none;
}

.footer-shell {
  position: relative;
  z-index: 1;
}

.footer-masthead {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.72fr);
  gap: 46px;
  align-items: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  padding-bottom: 34px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  color: var(--white);
  text-decoration: none;
}

.footer-logo {
  width: 78px;
  height: 78px;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: var(--white);
  object-fit: cover;
}

.footer-brand span {
  display: grid;
  gap: 8px;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 400;
  line-height: 0.98;
}

.footer-brand small,
.footer-label,
.footer-bottom span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.footer-masthead > p {
  max-width: 520px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1rem;
}

.footer-columns {
  display: grid;
  grid-template-columns: minmax(280px, 1.2fr) repeat(3, minmax(0, 0.7fr));
  gap: 28px;
  padding: 32px 0 0;
}

.footer-column {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding: 2px 0 2px 18px;
  background: transparent;
}

.footer-column--feature {
  justify-content: space-between;
}

.footer-column a {
  color: rgba(255, 255, 255, 0.84);
  text-decoration: none;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-feature:hover strong,
.footer-feature:focus-visible strong {
  color: var(--white);
  outline: none;
}

.footer-column p {
  max-width: 280px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.footer-feature {
  display: grid;
  gap: 8px;
  margin-top: auto;
}

.footer-feature strong {
  font-family: var(--font-display);
  font-size: 1.74rem;
  font-weight: 400;
  line-height: 1;
  transition: color 160ms ease;
}

.footer-feature small {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.68);
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  margin-top: 30px;
  padding-top: 18px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    padding: 12px 16px;
  }

  .brand__mark {
    width: 40px;
    height: 40px;
  }

  .brand__name {
    font-size: 1.04rem;
  }

  .site-nav {
    max-width: 64%;
    flex-wrap: wrap;
    gap: 4px;
  }

  .site-nav a {
    min-height: 34px;
    padding: 6px 8px;
    font-size: 0.78rem;
  }

  .hero__grid,
  .atlas-board,
  .route-map,
  .quick-verdict,
  .fit-grid,
  .logistics-grid,
  .issue-preview,
  .manifesto-grid,
  .country-overview,
  .publication-board,
  .planning-grid,
  .place-layout,
  .map-layout,
  .standard-table,
  .subhero__grid,
  .country-card,
  .footer-masthead,
  .footer-columns {
    grid-template-columns: 1fr;
  }

  .hero__grid {
    gap: 34px;
    padding: 118px 0 92px;
  }

  .hero__content h1,
  .subhero h1,
  .text-hero h1 {
    font-size: 4rem;
  }

  .hero__meta,
  .editorial-strip,
  .atlas-board__stats,
  .atlas-flow,
  .area-planner,
  .proof-grid,
  .place-grid,
  .place-grid--featured,
  .dossier-grid,
  .method-grid,
  .region-grid,
  .route-map__rail,
  .status-board,
  .related-grid {
    grid-template-columns: 1fr;
  }

  .atlas-tools {
    grid-template-columns: 1fr;
  }

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

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

  .page-nav {
    top: 64px;
  }

  .atlas-map {
    min-height: 360px;
  }

  .quick-verdict__score {
    min-height: 140px;
  }

  .place-specs {
    position: static;
  }

  .footer-brand strong {
    font-size: 2.55rem;
  }

  .footer-column {
    min-height: auto;
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    padding: 18px 0 0;
  }
}

@media (max-width: 620px) {
  .page-shell {
    width: min(var(--shell), calc(100% - 28px));
  }

  .brand__name {
    display: none;
  }

  .site-nav {
    max-width: calc(100% - 52px);
  }

  .hero {
    min-height: 86svh;
  }

  .hero__content h1,
  .subhero h1,
  .text-hero h1 {
    font-size: 3rem;
  }

  .section-heading h2,
  .issue-preview h2,
  .atlas-board__copy h2,
  .route-map__copy h2,
  .quick-verdict h2,
  .fit-grid h2,
  .logistics-grid h2,
  .disclosure-box h2,
  .manifesto-grid h2,
  .country-copy h2,
  .place-story h2,
  .map-layout h2,
  .planning-grid h2,
  .publication-board h2,
  .standard-table h2 {
    font-size: 2.35rem;
  }

  .section {
    padding: 68px 0;
  }

  .subhero {
    padding-top: 122px;
  }

  .page-nav__inner {
    width: 100%;
    padding-inline: 14px;
  }

  .atlas-map {
    min-height: 320px;
  }

  .atlas-map__point {
    min-width: 112px;
    padding-right: 10px;
  }

  .quick-verdict {
    padding: 16px;
  }

  .hero__actions,
  .map-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-strip {
    grid-template-columns: 1fr;
  }

  .map-card {
    min-height: 330px;
  }

  .footer-brand {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-logo {
    width: 70px;
    height: 70px;
  }

  .footer-brand strong {
    font-size: 2.2rem;
  }

  .footer-masthead {
    gap: 28px;
  }

  .footer-bottom {
    display: grid;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
