/* =============================================================
   State of the Sector — Design System
   ============================================================= */

:root {
  /* VCSE Alliance brand */
  --primary:         #004384;
  --primary-mid:     #006ab4;
  --primary-light:   #0bbbef;
  --secondary:       #0094b2;
  --secondary-light: #0bbbef;
  --accent:          #6bb869;
  --green-l:         #bad25f;

  --text:            #0f172a;
  --text-body:       #334155;
  --text-muted:      #64748b;

  --bg:              #ffffff;
  --bg-subtle:       #f4f7fb;
  --border:          #e2e8f0;

  --nav-h:           72px;
  --r:               12px;
  --r-lg:            20px;
  --shadow:          0 4px 24px rgba(0,67,132,.07);
  --shadow-lg:       0 20px 60px rgba(0,67,132,.12);

  --grad:            linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 55%, var(--secondary) 100%);
  --grad-text:       linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
h1, h2, h3, h4, h5, h6 {
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 700;
  line-height: 1.2;
}
.gradient-text {
  background: var(--grad-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Navbar ──────────────────────────────────────────────── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--nav-h);
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,.7);
  transition: box-shadow .25s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,.08); }

.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 100%; display: flex; align-items: center; gap: 2rem;
}

.nav-brand { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
.nav-logos { display: flex; align-items: center; gap: .85rem; flex-shrink: 0; }
.nav-logo { height: 46px; width: auto; display: block; }
.nav-logo-obs { height: 42px; width: auto; display: block; }
.nav-logo-divider {
  width: 1px; height: 36px; background: var(--border); flex-shrink: 0;
}
.brand-mark {
  width: 34px; height: 34px; background: var(--grad); border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: .85rem;
}
.brand-copy { display: flex; flex-direction: column; }
.brand-name {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .9rem; font-weight: 700;
  color: var(--primary); line-height: 1; letter-spacing: -.01em;
}
.brand-url { font-size: .65rem; color: var(--text-muted); line-height: 1; margin-top: 2px; }

.nav-links { display: flex; align-items: center; gap: .2rem; flex: 1; }
.nav-a {
  font-size: .875rem; font-weight: 500; color: var(--text-body);
  padding: .4rem .9rem; border-radius: 8px;
  transition: color .15s, background .15s; white-space: nowrap;
}
.nav-a:hover { color: var(--primary); background: rgba(0,67,132,.06); }
.nav-a.active { color: var(--primary); background: rgba(0,106,180,.1); font-weight: 600; }

.nav-end { display: flex; align-items: center; gap: .75rem; margin-left: auto; }
.btn-nav {
  font-family: 'Inter', sans-serif; font-size: .85rem; font-weight: 600;
  padding: .5rem 1.2rem; border-radius: 8px;
  background: var(--grad); color: white; border: none; cursor: pointer;
  transition: opacity .2s, transform .15s; white-space: nowrap;
}
.btn-nav:hover { opacity: .88; transform: translateY(-1px); }
.hamburger {
  display: none; background: none; border: none; cursor: pointer;
  padding: .5rem; color: var(--text); font-size: 1.2rem;
}

/* ── Mobile Nav ──────────────────────────────────────────── */
.mobile-nav {
  display: none; position: fixed;
  top: var(--nav-h); left: 0; right: 0; bottom: 0; z-index: 999;
  background: rgba(15,23,42,.45);
  opacity: 0; pointer-events: none; transition: opacity .2s;
}
.mobile-nav.open { opacity: 1; pointer-events: all; }
.mobile-panel {
  position: absolute; top: 0; right: 0;
  width: min(300px, 88vw); height: 100%; background: white;
  padding: 1.5rem; transform: translateX(100%);
  transition: transform .25s ease;
  display: flex; flex-direction: column; gap: .4rem; overflow-y: auto;
}
.mobile-nav.open .mobile-panel { transform: translateX(0); }
.mob-a {
  display: flex; align-items: center; gap: .75rem;
  font-size: .95rem; font-weight: 500; color: var(--text-body);
  padding: .8rem 1rem; border-radius: 10px; transition: background .15s, color .15s;
}
.mob-a i { width: 18px; text-align: center; color: var(--primary-mid); }
.mob-a:hover { background: var(--bg-subtle); color: var(--primary-mid); }
.mob-sep { height: 1px; background: var(--border); margin: .4rem 0; }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: 'Inter', sans-serif; font-weight: 600; border-radius: 10px;
  border: none; cursor: pointer;
  transition: transform .15s, box-shadow .15s, opacity .2s;
}
.btn-primary {
  background: var(--grad); color: white;
  padding: .8rem 1.75rem; font-size: 1rem;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(0,67,132,.22); }
.btn-outline {
  background: transparent; color: var(--primary-mid);
  border: 2px solid var(--primary-mid);
  padding: .75rem 1.65rem; font-size: 1rem;
}
.btn-outline:hover { background: rgba(0,106,180,.06); transform: translateY(-1px); }

/* ── Layout ───────────────────────────────────────────────── */
main { padding-top: var(--nav-h); min-height: 100vh; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; }

/* ── Badges ───────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .09em;
  padding: .35rem .95rem; border-radius: 100px;
  background: linear-gradient(135deg, rgba(0,106,180,.1), rgba(0,148,178,.1));
  color: var(--primary-mid); border: 1px solid rgba(0,106,180,.15);
  margin-bottom: 1.25rem;
}
.badge-amber {
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e; border-color: #fcd34d;
}

/* ── National home hero + UK map ──────────────────────────── */
.hero-national {
  padding: 0.35rem 0 1.5rem;
  align-items: stretch;
  min-height: 0;
}
.hero-national-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.55fr);
  gap: 1.25rem 3.25rem; align-items: start; width: 100%;
  max-width: min(1480px, 96vw);
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1rem;
}
.hero-national-copy {
  padding-top: 1.1rem;
}
.hero-national-copy .hero-lead { margin-bottom: 1.75rem; }
.region-list {
  list-style: none; display: flex; flex-direction: column; gap: .75rem;
  max-width: 520px;
}
.region-link {
  display: flex; align-items: center; gap: .85rem;
  background: #fff; border: 1px solid var(--border); border-radius: 14px;
  padding: .95rem 1.1rem; box-shadow: var(--shadow);
  transition: transform .15s, border-color .15s, box-shadow .15s;
}
.region-link:hover {
  transform: translateY(-2px);
  border-color: #b6d4ea;
  box-shadow: var(--shadow-lg);
}
.region-dot {
  width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0;
}
.region-meta { flex: 1; min-width: 0; display: flex; flex-direction: column; gap: .15rem; }
.region-meta strong {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .95rem; font-weight: 700; color: var(--primary); line-height: 1.25;
}
.region-meta span { font-size: .78rem; color: var(--text-muted); }
.region-link > i { color: var(--primary-mid); font-size: .85rem; flex-shrink: 0; }

.hero-national-map {
  display: flex; flex-direction: column; align-items: stretch; justify-content: flex-start;
  width: 100%;
  margin-left: 5rem;
}
.uk-map-box {
  width: 100%;
  background: linear-gradient(180deg, rgba(248,251,254,.92) 0%, rgba(238,245,251,.88) 100%);
  border: 1px solid rgba(0,106,180,.12);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0,67,132,.07);
  overflow: hidden;
  display: flex; flex-direction: column;
  max-height: min(84vh, 760px);
}
.uk-map-toolbar {
  display: flex; align-items: center; justify-content: space-between; gap: .75rem;
  padding: .55rem .85rem;
  background: rgba(255,255,255,.72);
  border-bottom: 1px solid rgba(0,106,180,.08);
  flex-shrink: 0;
}
.uk-map-toolbar-label {
  font-size: .78rem; font-weight: 600; color: var(--primary-mid);
  display: inline-flex; align-items: center; gap: .4rem;
}
.uk-map-zoom-btns { display: flex; gap: .35rem; }
.uk-map-btn {
  width: 34px; height: 34px; border-radius: 9px;
  border: 1px solid rgba(0,106,180,.14); background: rgba(255,255,255,.85); color: var(--primary);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; font-size: .85rem;
  transition: background .15s, border-color .15s, transform .15s;
}
.uk-map-btn:hover {
  background: #e8f3fb; border-color: rgba(0,106,180,.28); transform: translateY(-1px);
}
.uk-map-viewport {
  position: relative;
  width: 100%;
  aspect-ratio: 345 / 560;
  max-height: calc(min(84vh, 760px) - 78px);
  overflow: hidden; cursor: grab; touch-action: none;
  background:
    radial-gradient(circle at 35% 25%, rgba(0,148,178,.05), transparent 45%),
    radial-gradient(circle at 65% 75%, rgba(0,106,180,.06), transparent 50%);
}
.uk-map-viewport.is-dragging { cursor: grabbing; }
.uk-map-stage {
  width: 100%; height: 100%;
  transform-origin: 0 0;
  will-change: transform;
}
.uk-admin-map {
  width: 100%; height: 100%; display: block;
}
.uk-admin-map .map-area {
  fill: #d5e4f2; stroke: #fff; stroke-width: 0.55;
  transition: fill .18s ease, filter .18s ease;
}
.uk-admin-map .map-bnssg,
.uk-admin-map .map-gm {
  cursor: pointer;
  animation: regionPulse 1.8s ease-in-out infinite;
}
.uk-admin-map .map-bnssg { fill: #006ab4; }
.uk-admin-map .map-gm { fill: #0094b2; }
.uk-admin-map .map-link:hover .map-bnssg {
  fill: #004384; animation: none;
  filter: drop-shadow(0 0 6px rgba(0,67,132,.55));
}
.uk-admin-map .map-link:hover .map-gm {
  fill: #007a94; animation: none;
  filter: drop-shadow(0 0 6px rgba(0,148,178,.55));
}
.uk-admin-map .map-link { cursor: pointer; outline: none; }
.uk-admin-map .map-label-bg { fill: #0f172a; opacity: .92; }
.uk-admin-map .map-label-text {
  fill: #fff; font-size: 14px; font-weight: 600;
  font-family: Inter, system-ui, sans-serif;
}
@keyframes regionPulse {
  0%, 100% {
    fill-opacity: 1;
    filter: drop-shadow(0 0 0 rgba(0,106,180,0));
  }
  50% {
    fill-opacity: .72;
    filter: drop-shadow(0 0 8px rgba(0,106,180,.55));
  }
}
@media (prefers-reduced-motion: reduce) {
  .uk-admin-map .map-bnssg,
  .uk-admin-map .map-gm { animation: none; }
}
.uk-map-foot {
  margin: 0; padding: .55rem .85rem .65rem;
  font-size: .72rem; color: var(--text-muted);
  background: rgba(255,255,255,.72);
  border-top: 1px solid rgba(0,106,180,.08);
  text-align: center; flex-shrink: 0;
}
.map-credit {
  margin-top: .45rem; font-size: .7rem; color: #94a3b8; text-align: center;
}
.map-credit a { color: #64748b; text-decoration: underline; text-underline-offset: 2px; }
.map-credit a:hover { color: var(--primary-mid); }

/* Location home — BNSSG outline map */
.hero-location {
  min-height: 0;
  padding: 2.5rem 0 3rem;
  align-items: center;
}
.hero-location-inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.95fr);
  gap: 2rem 3rem; align-items: center; width: 100%;
}
.hero-location-copy .hero-lead { margin-bottom: 1.75rem; }
.hero-location-map {
  display: flex; flex-direction: column; align-items: stretch;
  margin-left: 0.5rem;
}
.bnssg-map-box {
  background: linear-gradient(180deg, rgba(248,251,254,.92) 0%, rgba(238,245,251,.88) 100%);
  border: 1px solid rgba(0,106,180,.12);
  border-radius: 18px;
  box-shadow: 0 14px 36px rgba(0,67,132,.07);
  padding: 1.25rem 1.25rem 0.85rem;
  overflow: hidden;
}
.bnssg-map {
  width: 100%; height: auto; display: block;
  max-height: min(52vh, 420px);
  filter: drop-shadow(0 10px 24px rgba(0,67,132,.12));
}
.bnssg-map .bnssg-area {
  transition: fill .18s ease, filter .18s ease;
}
.bnssg-map .bnssg-area:hover {
  filter: brightness(1.08) drop-shadow(0 0 4px rgba(0,106,180,.35));
}
.bnssg-map .bnssg-label-bg { fill: #0f172a; opacity: .9; }
.bnssg-map .bnssg-label-text {
  fill: #fff; font-weight: 600;
  font-family: Inter, system-ui, sans-serif;
}
.bnssg-map-foot {
  margin: .85rem 0 0; text-align: center;
  font-size: .78rem; font-weight: 600; color: var(--primary-mid);
}

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  min-height: calc(100vh - var(--nav-h));
  display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 5rem 0;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center; width: 100%;
}
.hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  line-height: 1.1; margin-bottom: 1.5rem;
}
.hero-lead {
  font-size: 1.1rem; color: var(--text-muted);
  line-height: 1.75; margin-bottom: 2.5rem; max-width: 520px;
}
.hero-cta { display: flex; gap: 1rem; flex-wrap: wrap; }

/* Floating shapes */
.shapes { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.shape {
  position: absolute; border-radius: 50%; opacity: .08;
  animation: floatUp 7s ease-in-out infinite;
}
.s1 { width: 360px; height: 360px; background: var(--primary-mid); top: -10%; right: -6%; }
.s2 { width: 220px; height: 220px; background: var(--secondary); bottom: 5%; right: 8%; animation-delay: -2.5s; }
.s3 { width: 140px; height: 140px; background: var(--accent); top: 45%; right: 38%; animation-delay: -4.5s; opacity: .05; }
@keyframes floatUp {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-22px) rotate(6deg); }
}

/* ── Hero Visual Card ─────────────────────────────────────── */
.hero-card {
  background: white; border-radius: var(--r-lg); padding: 2rem;
  box-shadow: 0 32px 80px rgba(0,106,180,.13);
  border: 1px solid rgba(0,106,180,.1);
  position: relative; z-index: 2; width: 100%; max-width: 420px;
}
.hc-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border);
}
.hc-title { font-family: 'Space Grotesk', sans-serif; font-size: .95rem; font-weight: 700; }
.loc-pill {
  background: var(--grad); color: white;
  font-size: .7rem; font-weight: 700; padding: .25rem .7rem;
  border-radius: 100px; text-transform: uppercase; letter-spacing: .05em;
}
.chart-bars { display: flex; align-items: flex-end; gap: .45rem; height: 80px; margin: 1.25rem 0; }
.bar {
  flex: 1; border-radius: 4px 4px 0 0; background: var(--grad);
  transform-origin: bottom; animation: barRise .8s ease forwards; opacity: 0;
}
.bar:nth-child(1) { animation-delay: .1s; }
.bar:nth-child(2) { animation-delay: .22s; }
.bar:nth-child(3) { animation-delay: .34s; }
.bar:nth-child(4) { animation-delay: .46s; }
.bar:nth-child(5) { animation-delay: .58s; }
.bar:nth-child(6) { animation-delay: .7s; }
@keyframes barRise {
  from { transform: scaleY(0); opacity: 0; }
  to   { transform: scaleY(1); opacity: 1; }
}
.hc-meta { display: flex; gap: 1.5rem; }
.hc-metric { display: flex; flex-direction: column; gap: .15rem; }
.hc-val { font-family: 'Space Grotesk', sans-serif; font-size: 1.4rem; font-weight: 800; color: var(--primary-mid); }
.hc-lbl { font-size: .72rem; color: var(--text-muted); }

/* ── Stat Cards ───────────────────────────────────────────── */
.cards-row {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem; margin: 4rem 0;
}
.stat-card {
  background: white; border: 1px solid var(--border); border-radius: var(--r);
  padding: 1.75rem; transition: transform .2s, box-shadow .2s;
}
.stat-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.stat-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, rgba(0,106,180,.08), rgba(0,148,178,.08));
  border-radius: 10px; display: flex; align-items: center; justify-content: center;
  color: var(--primary-mid); font-size: 1.1rem; margin-bottom: 1rem;
}
.stat-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2rem; font-weight: 800; color: var(--text); line-height: 1; margin-bottom: .25rem;
}
.stat-lbl { font-size: .875rem; color: var(--text-muted); font-weight: 500; }

/* ── Feature Cards ────────────────────────────────────────── */
.feat-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.feat-card {
  background: white; border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 2rem; transition: transform .2s, box-shadow .2s, border-color .2s;
  display: flex; flex-direction: column;
}
.feat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: rgba(0,106,180,.2); }
.feat-icon {
  width: 52px; height: 52px; border-radius: var(--r);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; color: white; margin-bottom: 1.5rem;
}
.feat-card h3 { font-size: 1.1rem; margin-bottom: .65rem; }
.feat-card p  { color: var(--text-muted); font-size: .9rem; line-height: 1.65; flex: 1; }
.feat-link {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .875rem; font-weight: 600; color: var(--primary-mid);
  margin-top: 1.25rem; transition: gap .15s;
}
.feat-link:hover { gap: .7rem; }

/* ── Section Header ───────────────────────────────────────── */
.sec-header { text-align: center; margin-bottom: 3.5rem; }
.sec-header h2 { font-size: clamp(1.75rem, 3.5vw, 2.5rem); margin-bottom: 1rem; }
.sec-header p  { color: var(--text-muted); max-width: 560px; margin: 0 auto; font-size: 1.05rem; }

/* ── Footer ───────────────────────────────────────────────── */
footer {
  background: #0f172a; color: #64748b; padding: 5rem 0 2rem;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.07); margin-bottom: 2rem;
}
.footer-brand .brand-name { color: white; font-size: 1rem; }
.footer-brand .brand-url  { color: #475569; }
.footer-brand p { font-size: .875rem; line-height: 1.75; margin-top: 1rem; max-width: 270px; }
.footer-partners {
  display: flex; align-items: center; gap: 1.1rem; margin-top: 1.35rem; flex-wrap: wrap;
}
.footer-partners a { display: block; opacity: .92; transition: opacity .15s; }
.footer-partners a:hover { opacity: 1; }
.footer-partners a.footer-alliance-wrap {
  background: #fff; border-radius: 10px; padding: .45rem .6rem;
}
.footer-logo-alliance { height: 40px; width: auto; display: block; }
.footer-logo-obs { height: 52px; width: auto; display: block; }
.footer-credit {
  margin-top: 1rem; font-size: .8rem; color: #64748b; max-width: 320px; line-height: 1.55;
}
.footer-credit a { color: #94a3b8; text-decoration: underline; text-underline-offset: 2px; }
.footer-credit a:hover { color: #f1f5f9; }

/* Observatory about (home pages) */
.obs-about {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 4rem 0 4.5rem;
}
.obs-about-head {
  display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap;
  margin-bottom: 2.25rem;
}
.obs-about-logo {
  display: block; flex-shrink: 0;
  transition: opacity .15s;
}
.obs-about-logo:hover { opacity: .88; }
.obs-about-logo img {
  height: 88px; width: auto; display: block;
}
.obs-about-head .badge { margin-bottom: .55rem; }
.obs-about-head h2 {
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  color: var(--primary); margin: 0;
}
.obs-about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2rem 3rem;
}
.obs-about-block h3 {
  font-size: 1.05rem; color: var(--primary-mid);
  margin-bottom: .75rem;
}
.obs-about-block p {
  color: var(--text-muted); font-size: .95rem; line-height: 1.65;
  margin-bottom: .85rem;
}
.obs-about-lead {
  font-weight: 600; color: var(--text-body) !important; margin-bottom: .45rem !important;
}
.obs-about-block ul {
  margin: 0; padding-left: 1.15rem;
  color: var(--text-muted); font-size: .95rem; line-height: 1.55;
  display: flex; flex-direction: column; gap: .45rem;
}
.obs-about-block li::marker { color: var(--primary-mid); }
.obs-about-links {
  display: flex; flex-wrap: wrap; gap: .85rem 1.25rem;
  margin-top: 2.25rem; padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.obs-about-links a {
  display: inline-flex; align-items: center; gap: .45rem;
  font-size: .92rem; font-weight: 600; color: var(--primary-mid);
}
.obs-about-links a i { font-size: .72rem; opacity: .75; }
.obs-about-links a:hover { text-decoration: underline; }
.footer-col h4 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: .78rem; font-weight: 700;
  color: #f1f5f9; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .65rem; }
.footer-col a  { font-size: .875rem; color: #64748b; transition: color .15s; }
.footer-col a:hover { color: #f1f5f9; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; flex-wrap: wrap;
}
.footer-bottom p { font-size: .8rem; }
.socials { display: flex; gap: .6rem; }
.soc-btn {
  width: 34px; height: 34px; border-radius: 8px;
  background: rgba(255,255,255,.07);
  display: flex; align-items: center; justify-content: center;
  color: #64748b; font-size: .85rem; transition: background .15s, color .15s;
}
.soc-btn:hover { background: var(--primary-mid); color: white; }

/* ── Responsive ───────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-links { display: none; }
  .nav-end { display: none; }
  .hamburger { display: flex; }
  .mobile-nav { display: block; }
  .nav-logo { height: 38px; }
  .nav-logo-obs { height: 34px; }
  .nav-logo-divider { height: 28px; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-lead  { margin: 0 auto 2.5rem; }
  .hero-cta   { justify-content: center; }
  .hero-visual { display: none; }
  .hero-national-inner {
    grid-template-columns: 1fr; gap: 1.25rem;
    max-width: 100%;
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .hero-national-copy { text-align: center; padding-top: .5rem; }
  .hero-national-copy .hero-lead { margin-left: auto; margin-right: auto; }
  .region-list { margin: 0 auto; text-align: left; }
  .hero-national-map { margin-left: 0; }
  .hero-location-inner { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-location-copy { text-align: center; }
  .hero-location-copy .hero-lead { margin-left: auto; margin-right: auto; }
  .hero-location-copy .hero-cta { justify-content: center; }
  .hero-location-map { margin-left: 0; max-width: 480px; margin-inline: auto; }
  .uk-map-box {
    max-height: min(70vh, 600px);
    max-width: 520px;
    margin: 0 auto;
  }
  .uk-map-viewport {
    max-height: calc(min(70vh, 600px) - 78px);
  }
  .uk-map-toolbar-label { font-size: .72rem; }
  .cards-row  { grid-template-columns: 1fr 1fr; }
  .feat-grid  { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .obs-about-grid { grid-template-columns: 1fr; }
  .obs-about-head { align-items: flex-start; }
}
@media (max-width: 640px) {
  .container { padding: 0 1.25rem; }
  .cards-row  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .hero { padding: 3rem 0; }
}
