/* ============================================================
   BESETO Symposium — stylesheet
   Design tokens live at the top. Change colours/fonts here once
   and they update everywhere.
   ============================================================ */

:root {
  /* Colour */
  --paper:      #f6f7f8;   /* page background — cool off-white */
  --card:       #ffffff;   /* raised surfaces */
  --ink:        #17222b;   /* primary text, near-black blue */
  --slate:      #55636e;   /* secondary text */
  --line:       #e4e7ea;   /* hairlines */
  --seal:       #bc3b2e;   /* accent — cinnabar seal red */
  --seal-deep:  #9e2f24;   /* accent, pressed/hover */

  /* Type */
  --serif: "Spectral", Georgia, "Times New Roman", serif;
  --sans:  "IBM Plex Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SF Mono", Menlo, monospace;

  /* Rhythm */
  --wrap: 1800px;
  --read: 66ch;
  --r: 4px;                /* corner radius, kept small + architectural */
}

/* ---------- reset-ish ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 1.2rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation: none !important; transition: none !important; }
}
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ---------- shared layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }
.section { padding: 84px 0; }
.section--tight { padding: 56px 0; }
.divider { height: 1px; background: var(--line); border: 0; margin: 0; }

.eyebrow {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--seal);
  margin: 0 0 18px;
}
.eyebrow--muted { color: var(--slate); }

h1, h2, h3 { font-family: var(--serif); font-weight: 600; line-height: 1.12; letter-spacing: -0.01em; }
.section-title { font-size: clamp(1.7rem, 3vw, 2.4rem); margin: 0 0 8px; }
.section-lead { color: var(--slate); max-width: 60ch; margin: 0 0 40px; }

.mono { font-family: var(--mono); }
.prose { max-width: var(--read); }
.prose p { margin: 0 0 1.15em; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-weight: 500; font-size: 0.95rem;
  padding: 12px 22px; border-radius: var(--r);
  text-decoration: none; cursor: pointer; border: 1px solid transparent;
  transition: background .18s ease, color .18s ease, border-color .18s ease, transform .18s ease;
}
.btn-primary { background: var(--seal); color: #fff; }
.btn-primary:hover { background: var(--seal-deep); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn-ghost:hover { border-color: var(--ink); }
.btn:active { transform: translateY(1px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 40;
  background: color-mix(in srgb, var(--paper) 82%, transparent);
  backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.nav { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand-mark { width: 46px; height: 12px; flex: none; }
.brand-name { font-family: var(--serif); font-weight: 600; font-size: 3rem; letter-spacing: 0.02em; }
.brand-name b { color: var(--seal); font-weight: 600; }

.nav-links { display: flex; align-items: center; gap: 28px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  text-decoration: none; color: var(--slate); font-size: 1.2rem;
  padding: 6px 0; position: relative; transition: color .15s ease;
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a[aria-current="page"]::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -2px; height: 2px; background: var(--seal);
}
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; color: var(--ink); }
.nav-toggle svg { display: block; }

/* ---------- hero ---------- */
.hero { padding: 76px 0 64px; }
.hero.has-photo { padding: 0; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center; }
.hero-title { font-size: clamp(2.6rem, 5.4vw, 4.6rem); margin: 0 0 10px; }
.hero-sub { font-family: var(--serif); font-weight: 500; font-style: italic; color: var(--slate); font-size: clamp(1.1rem, 2vw, 1.5rem); margin: 0 0 28px; }
.hero-city { font-family: var(--serif); font-weight: 600; font-size: clamp(1.6rem, 3.4vw, 2.6rem); color: #e0685c; margin: 2px 0 0; line-height: 1.1; }
.hero-meta { display: flex; flex-wrap: wrap; gap: 10px 28px; margin: 0 0 30px; }
.hero-meta div { display: flex; flex-direction: column; gap: 2px; }
.hero-meta .k { font-family: var(--mono); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); }
.hero-meta .v { font-size: 1.35rem; font-weight: 500; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-visual { display: flex; justify-content: center; }

/* ---------- meridian (the signature) ---------- */
.meridian { width: 100%; max-width: 460px; height: auto; }
.meridian .axis { stroke: var(--ink); stroke-width: 1.5; }
.meridian .node { fill: var(--card); stroke: var(--ink); stroke-width: 1.5; }
.meridian .node.is-active { fill: var(--seal); stroke: var(--seal); }
.meridian .ring { fill: none; stroke: var(--seal); stroke-width: 1.5; opacity: 0; }
.meridian .lbl { font-family: var(--mono); font-size: 12px; letter-spacing: 0.14em; fill: var(--slate); text-transform: uppercase; }
.meridian .lbl.is-active { fill: var(--seal); }
.meridian .yr { font-family: var(--mono); font-size: 10px; fill: var(--slate); }

/* draw + pulse on load */
.meridian .axis { stroke-dasharray: 400; stroke-dashoffset: 400; animation: draw 1.1s ease forwards .15s; }
.meridian .ring.pulse { animation: pulse 2.6s ease-out infinite 1.2s; }
@keyframes draw { to { stroke-dashoffset: 0; } }
@keyframes pulse { 0% { opacity: .5; transform-box: fill-box; transform-origin: center; transform: scale(1); } 70%,100% { opacity: 0; transform: scale(2.4); } }
@media (prefers-reduced-motion: reduce) {
  .meridian .axis { stroke-dashoffset: 0; }
  .meridian .ring.pulse { opacity: 0; }
}

/* ---------- route map (home): real coastlines + animated rotation network ---------- */
.route-map { position: relative; max-width: 1560px; margin: 8px auto 0; aspect-ratio: 1300 / 706; }
.rmap { width: 100%; height: 100%; display: block; }

.rmap-land { stroke: #9fb0b8; stroke-width: 1.1; stroke-linejoin: round; }
.rmap-land--china { fill: #e7ebe9; }
.rmap-land--korea { fill: #dee5e8; }
.rmap-land--japan { fill: #eeebe1; }
.rmap-country { font-family: var(--mono); font-size: 15px; letter-spacing: .32em; fill: var(--slate); opacity: .68; }

.rmap-route { fill: none; stroke: var(--seal); stroke-width: 1.6; opacity: .78; }
.rmap-arrowhead { fill: var(--seal); }
.rmap-flight { fill: var(--seal); }

.rmap-node-glow { fill: var(--seal); opacity: .13; }
.rmap-node-ring {
  fill: none; stroke: var(--seal); stroke-width: 1.3; opacity: .6;
  transform-box: fill-box; transform-origin: center; animation: pulse 3.8s ease-out infinite;
}
.rmap-node-dot { fill: var(--seal); stroke: #fff; stroke-width: 1.3; }

.rmap-host-glow { fill: var(--seal); opacity: .12; }
.rmap-host-ring {
  fill: none; stroke: var(--seal); stroke-width: 1.5;
  transform-box: fill-box; transform-origin: center; animation: pulse 2.6s ease-out infinite;
}
.rmap-host-ring--2 { animation-delay: 1.3s; }
.rmap-host-dot { fill: var(--seal); stroke: #fff; stroke-width: 2; }

.rmap-city { font-family: var(--serif); font-weight: 600; font-size: 16px; fill: var(--ink); }
.rmap-city.is-active { fill: var(--seal); }


/* photo hero: full-bleed host-city background with a dark scrim */
/* upcoming: row of host-city preview photos */
.preview-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 14px; margin-top: 36px; max-width: 1200px; }
.preview-row img { width: 100%; height: 220px; object-fit: cover; border-radius: var(--r); background: var(--ink); }

.hero-photo { position: relative; min-height: min(76vh, 620px); display: flex; align-items: flex-end; background: var(--ink) center / cover no-repeat; overflow: hidden; }
.hero-photo__scrim { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,22,29,.45) 0%, rgba(15,22,29,.70) 52%, rgba(15,22,29,.95) 100%); }
.hero-photo .wrap { position: relative; z-index: 1; padding-top: 90px; padding-bottom: 60px; color: #fff; }
.hero-photo .eyebrow { color: #f3b8b0; }
.hero-photo .hero-title { color: #fff; margin: 0 0 10px; }
.hero-photo .hero-sub { color: rgba(255,255,255,.82); }
.hero-photo .hero-meta .k { color: rgba(255,255,255,.65); }
.hero-photo .hero-meta .v { color: #fff; }
.hero-photo .btn-ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.hero-photo .btn-ghost:hover { border-color: #fff; }

/* white meridian for dark backgrounds */
.on-dark .meridian .axis { stroke: rgba(255,255,255,.5); }
.on-dark .meridian .node { fill: transparent; stroke: rgba(255,255,255,.6); }
.on-dark .meridian .node.is-active { fill: var(--seal); stroke: var(--seal); }
.on-dark .meridian .lbl { fill: rgba(255,255,255,.72); }
.on-dark .meridian .lbl.is-active { fill: #fff; }
.hero-photo .on-dark { max-width: 340px; margin-top: 30px; }

/* three-city showcase: full-width panels, Beijing · Seoul · Tokyo */
.cities3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; }
.city-panel { position: relative; min-height: 58vh; display: flex; align-items: flex-end; text-decoration: none; color: #fff; overflow: hidden; background: var(--ink); }
.city-panel__img { position: absolute; inset: 0; background: center / cover no-repeat; transition: transform .6s ease; }
.city-panel::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(15,22,29,0) 38%, rgba(15,22,29,.82) 100%); }
.city-panel:hover .city-panel__img { transform: scale(1.05); }
.city-panel__body { position: relative; z-index: 1; padding: 30px 30px 34px; }
.city-panel .host-tag { display: inline-block; font-family: var(--mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: #fff; background: var(--seal); padding: 4px 11px; border-radius: 999px; margin-bottom: 12px; }
.city-panel .city-name { font-family: var(--serif); font-weight: 600; font-size: clamp(1.7rem, 2.6vw, 2.4rem); line-height: 1; }
.city-panel .city-country { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,.78); margin-top: 8px; }

/* archive card as a link */
.tl-card--link { display: block; text-decoration: none; color: inherit; transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease; }
.tl-card--link:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 12px 34px -20px rgba(23,34,43,.4); }
.tl-meta-mono { font-family: var(--mono); font-size: 0.74rem; letter-spacing: .04em; color: var(--slate); margin-top: 12px; }
.tl-open { display: inline-block; font-family: var(--mono); font-size: 0.74rem; letter-spacing: .04em; color: var(--seal); margin-top: 14px; }

/* edition detail */
.ed-block { padding: 40px 0; border-top: 1px solid var(--line); }
.ed-block:first-child { border-top: 0; }
.session { border: 1px solid var(--line); border-radius: var(--r); background: var(--card); padding: 22px 24px; margin-bottom: 16px; }
.session-head { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 6px; }
.session-name { font-size: 1.2rem; margin: 0; }
.papers { margin: 8px 0 0; padding: 0 0 0 0; list-style: none; counter-reset: p; }
.papers li { display: flex; gap: 14px; padding: 12px 0; border-top: 1px solid var(--line); }
.papers li::before { counter-increment: p; content: counter(p, decimal-leading-zero); font-family: var(--mono); font-size: 0.78rem; color: var(--seal); flex: none; padding-top: 2px; }
.paper-title { display: block; font-weight: 500; }
.paper-author { display: block; color: var(--slate); font-size: 0.92rem; font-family: var(--mono); margin-top: 2px; }

.sponsors { display: grid; grid-template-columns: repeat(auto-fill, minmax(170px, 1fr)); gap: 14px; }
.sponsor { height: 150px; padding: 8px 12px; display: flex; align-items: center; justify-content: center;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  text-decoration: none; color: var(--ink); font-weight: 500; text-align: center; }
.sponsor img { max-width: 92%; max-height: 110px; width: auto; height: auto; object-fit: contain; display: block; transform: scale(1.2); }
.sponsor .sponsor-name { display: none; font-size: 0.9rem; line-height: 1.35; }
.sponsor.no-logo .sponsor-name { display: block; }
a.sponsor:hover { border-color: var(--ink); }

.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 12px; }
.gallery-item { padding: 0; border: 0; background: var(--ink); border-radius: var(--r); overflow: hidden; cursor: pointer; display: block; }
.gallery-item img { width: 100%; height: 170px; object-fit: cover; display: block; transition: transform .4s ease, opacity .2s ease; }
.gallery-item:hover img { transform: scale(1.05); opacity: .92; }

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 90; display: none; align-items: center; justify-content: center;
  background: rgba(12,18,24,.92); backdrop-filter: blur(2px); }
.lightbox.is-open { display: flex; }
.lb-stage { max-width: 92vw; max-height: 86vh; display: flex; align-items: center; justify-content: center; }
.lb-img { max-width: 92vw; max-height: 86vh; width: auto; height: auto; border-radius: var(--r); box-shadow: 0 24px 60px -20px rgba(0,0,0,.6); }
.lb-close, .lb-nav { position: absolute; background: rgba(255,255,255,.1); color: #fff; border: 1px solid rgba(255,255,255,.25);
  cursor: pointer; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: background .15s ease; }
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.22); }
.lb-close { top: 22px; right: 22px; width: 46px; height: 46px; font-size: 1.8rem; line-height: 1; }
.lb-nav { top: 50%; transform: translateY(-50%); width: 54px; height: 54px; font-size: 2rem; line-height: 1; }
.lb-prev { left: 22px; }
.lb-next { right: 22px; }
.lb-count { position: absolute; bottom: 22px; left: 0; right: 0; text-align: center; color: rgba(255,255,255,.75);
  font-family: var(--mono); font-size: 0.8rem; letter-spacing: .1em; }
@media (max-width: 640px) {
  .lb-nav { width: 44px; height: 44px; font-size: 1.6rem; }
  .lb-prev { left: 8px; } .lb-next { right: 8px; } .lb-close { top: 12px; right: 12px; }
}

/* lightbox: respect single image (hide arrows handled in JS via wrap, kept visible for simplicity) */

/* thumbnail on archive cards */
.tl-thumb { width: 100%; height: 150px; object-fit: cover; border-radius: var(--r); margin: 2px 0 16px; background: var(--ink); }

/* mini meridian inside cards */
.meridian-mini { width: 108px; height: 22px; flex: none; }
.meridian-mini .axis { stroke: var(--line); stroke-width: 1.5; }
.meridian-mini .node { fill: var(--card); stroke: var(--slate); stroke-width: 1.4; }
.meridian-mini .node.is-active { fill: var(--seal); stroke: var(--seal); }

/* ---------- stat strip ---------- */
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; border: 1px solid var(--line); border-radius: var(--r); background: var(--card); overflow: hidden; }
.stat { padding: 26px 28px; border-left: 1px solid var(--line); }
.stat:first-child { border-left: 0; }
.stat .num { font-family: var(--serif); font-size: 2.4rem; font-weight: 600; line-height: 1; }
.stat .num span { color: var(--seal); }
.stat .cap { font-family: var(--mono); font-size: 0.7rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--slate); margin-top: 10px; }

/* ---------- recent editions (home) ---------- */
.card-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.edcard {
  display: flex; flex-direction: column; gap: 14px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--r);
  padding: 24px; text-decoration: none; color: inherit;
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.edcard:hover { border-color: var(--ink); transform: translateY(-2px); box-shadow: 0 10px 30px -18px rgba(23,34,43,.35); }
.edcard .top { display: flex; align-items: center; justify-content: space-between; }
.edcard .num { font-family: var(--mono); font-size: 0.78rem; letter-spacing: 0.1em; color: var(--slate); }
.edcard .yr { font-family: var(--serif); font-size: 1.9rem; font-weight: 600; }
.edcard .host { font-weight: 500; }
.edcard .place { color: var(--slate); font-size: 0.95rem; }

/* ---------- archive timeline ---------- */
.filterbar { display: flex; flex-wrap: wrap; gap: 8px; margin: 0 0 40px; }
.chip {
  font-family: var(--mono); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase;
  padding: 8px 16px; border: 1px solid var(--line); border-radius: 999px; background: var(--card);
  color: var(--slate); cursor: pointer; transition: all .15s ease;
}
.chip:hover { border-color: var(--ink); color: var(--ink); }
.chip.is-on { background: var(--ink); border-color: var(--ink); color: #fff; }

.timeline { position: relative; margin: 0; padding: 0; list-style: none; }
.timeline::before { content: ""; position: absolute; left: 7px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-item { position: relative; padding: 0 0 34px 44px; }
.tl-item::before {
  content: ""; position: absolute; left: 0; top: 6px; width: 16px; height: 16px; border-radius: 50%;
  background: var(--card); border: 2px solid var(--slate);
}
.tl-item[data-country="China"]::before,
.tl-item[data-country="Korea"]::before,
.tl-item[data-country="Japan"]::before { border-color: var(--seal); }
.tl-card { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 24px 26px; }
.tl-head { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.tl-yr { font-family: var(--serif); font-size: 1.7rem; font-weight: 600; line-height: 1; }
.tl-ed { font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--slate); margin-top: 6px; }
.tl-host { font-weight: 600; margin: 14px 0 2px; }
.tl-place { color: var(--slate); font-size: 0.95rem; margin: 0 0 4px; }
.tl-theme { font-family: var(--serif); font-style: italic; color: var(--ink); margin: 12px 0 0; }
.tl-note { display: inline-block; font-family: var(--mono); font-size: 0.68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--seal); border: 1px solid var(--line); border-radius: 999px; padding: 3px 10px; margin-top: 12px; }
.tl-keys { margin: 14px 0 0; padding: 0; list-style: none; color: var(--slate); font-size: 0.95rem; }
.tl-keys li { padding: 2px 0; }
.tl-keys b { color: var(--ink); font-weight: 500; }
.tl-links { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.tl-link { font-family: var(--mono); font-size: 0.74rem; letter-spacing: .05em; text-decoration: none; color: var(--ink); border: 1px solid var(--line); border-radius: var(--r); padding: 7px 12px; transition: border-color .15s ease; }
.tl-link:hover { border-color: var(--seal); color: var(--seal); }

/* ---------- section header w/ link ---------- */
.sec-head { display: flex; align-items: baseline; justify-content: space-between; gap: 24px; margin: 0 0 34px; }
.sec-more { font-family: var(--mono); font-size: 0.78rem; letter-spacing: .06em; text-decoration: none; color: var(--seal); white-space: nowrap; }
.sec-more:hover { color: var(--seal-deep); }

/* ---------- upcoming band ---------- */
.band { background: var(--ink); color: #fff; }
.band .eyebrow { color: #f3b8b0; }
.band a.btn-ghost { color: #fff; border-color: rgba(255,255,255,.28); }
.band a.btn-ghost:hover { border-color: #fff; }
.band .section-lead { color: rgba(255,255,255,.72); }

/* ---------- committee / contact ---------- */
.people { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.person { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 22px; }
.person .role { font-family: var(--mono); font-size: 0.7rem; letter-spacing: .12em; text-transform: uppercase; color: var(--seal); }
.person .name { font-weight: 600; margin: 8px 0 2px; font-size: 1.08rem; }
.person .aff { color: var(--slate); font-size: 0.95rem; }
.contact-box { background: var(--card); border: 1px solid var(--line); border-radius: var(--r); padding: 30px; }
.cmte-group { margin-bottom: 34px; }
.cmte-group:last-child { margin-bottom: 0; }
.contact-box a { color: var(--seal); text-decoration: none; }
.contact-box a:hover { text-decoration: underline; }

/* ---------- bylaws (about) ---------- */
.bylaws-list { display: flex; flex-direction: column; gap: 16px; margin-top: 32px; }
.bylaw { border: 1px solid var(--line); border-radius: var(--r); background: var(--card); padding: 24px 26px; }
.bylaw-head { display: flex; align-items: baseline; gap: 12px; margin: 0 0 12px; flex-wrap: wrap; }
.bylaw-num { font-family: var(--mono); font-size: 0.76rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--seal); flex: none; }
.bylaw h3 { font-size: 1.1rem; margin: 0; }
.bylaw p { color: var(--slate); margin: 0 0 10px; }
.bylaw p:last-child { margin-bottom: 0; }
.bylaw ul { margin: 8px 0 0; padding-left: 20px; color: var(--slate); }
.bylaw ul li { margin: 5px 0; }

/* ---------- footer ---------- */
.site-footer { border-top: 1px solid var(--line); padding: 48px 0 40px; margin-top: 20px; }
.foot-grid { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; align-items: flex-start; }
.foot-cities { display: flex; align-items: center; gap: 14px; font-family: var(--mono); font-size: 0.8rem; letter-spacing: .1em; color: var(--slate); }
.foot-cities i { width: 6px; height: 6px; border-radius: 50%; background: var(--seal); display: inline-block; }
.foot-note { color: var(--slate); font-size: 0.86rem; max-width: 42ch; }
.foot-links { display: flex; gap: 20px; flex-wrap: wrap; }
.foot-links a { color: var(--slate); text-decoration: none; font-size: 0.9rem; }
.foot-links a:hover { color: var(--ink); }

/* ---------- page hero (interior) ---------- */
.page-hero { padding: 72px 0 8px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.2rem); margin: 0 0 14px; }
.page-hero p { color: var(--slate); max-width: var(--read); font-size: 1.1rem; }

/* ---------- focus + a11y ---------- */
:focus-visible { outline: 2px solid var(--seal); outline-offset: 3px; border-radius: 2px; }
.skip { position: absolute; left: -999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 100; border-radius: 0 0 var(--r) 0; }
.skip:focus { left: 0; }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; gap: 36px; }
  .hero-visual { order: -1; }
  .card-row, .people { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
  .stat { border-left: 0; border-top: 1px solid var(--line); }
  .stat:first-child { border-top: 0; }
  .nav-links {
    position: absolute; top: 68px; left: 0; right: 0; background: var(--paper);
    border-bottom: 1px solid var(--line); flex-direction: column; align-items: flex-start;
    gap: 0; padding: 8px 24px 18px; display: none;
  }
  .nav-links.is-open { display: flex; }
  .nav-links a { width: 100%; padding: 12px 0; border-bottom: 1px solid var(--line); }
  .nav-links a:last-child { border-bottom: 0; }
  .nav-toggle { display: block; }
  .section { padding: 60px 0; }
  .hero-photo { min-height: 74vh; }
  .hero-photo .wrap { padding-top: 70px; }
  .cities3 { grid-template-columns: 1fr; }
  .city-panel { min-height: 42vh; }
}
