@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@400;700&display=swap');

:root {
  --bg: #ffffff;
  --bg-strong: #ffffff;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --line: rgba(8, 32, 58, 0.12);
  --text: #15263f;
  --muted: #5b6878;
  --deep: #08203a;
  --azure: #0c5b84;
  --emerald: #0f6b63;
  --gold: #b8960c;
  --red: #E53E3E;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  --radius: 12px;
  --radius-small: 8px;
  --container: min(1180px, calc(100vw - 40px));
  --font-heading: "Roboto Condensed", sans-serif;
  --font-body: "Roboto Condensed", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--bg);
  font-family: var(--font-body);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
}

.site-shell {
  min-height: 100vh;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--deep);
  color: #fff;
  padding: 10px 16px;
  border-radius: 999px;
}

.skip-link:focus {
  top: 12px;
}

.surface {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.surface.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.section {
  padding: 36px 0;
}

.site-main {
  padding-bottom: 56px;
}

.presentation-strip {
  width: 100%;
  background: #ffffff;
  padding: 12px 0 0;
}

.presentation-strip__media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1548 / 700;
}

.pres-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.presentation-strip__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, rgba(8, 32, 58, 0.18), rgba(8, 32, 58, 0.06));
}

.presentation-strip__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: center;
}

.presentation-strip__frame {
  width: 100%;
  min-height: calc(100% - 28px);
  margin: 14px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  color: var(--text);
  padding: 24px 28px 44px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: none;
  border-radius: 10px;
}

.presentation-strip__eyebrow {
  margin: 0 0 10px;
  color: var(--deep);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.presentation-strip__title {
  margin: 0 0 10px;
  font-size: 120px;
  line-height: 1.02;
}

.presentation-strip__lead {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 60ch;
}

.presentation-strip .minimal-hero__cta {
  min-height: 38px;
  padding: 0 16px;
  border-radius: 8px;
  font-size: 0.86rem;
}

/* ── Slider slides ── */
.pres-slide {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.pres-slide.is-active {
  display: block;
}

.pres-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── Slider arrows ── */
.pres-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(8, 32, 58, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  transition: background 0.18s ease, transform 0.18s ease;
  backdrop-filter: blur(4px);
}

.pres-arrow:hover {
  background: rgba(8, 32, 58, 0.75);
  transform: translateY(-50%) scale(1.08);
}

.pres-arrow--prev {
  left: 20px;
}

.pres-arrow--next {
  right: 20px;
}

/* ── Slider dots ── */
.pres-dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 10px;
}

.pres-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.pres-dot.is-active {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.25);
}

.section-kicker,
.hero-kicker,
.card-kicker {
  margin: 0 0 10px;
  color: var(--azure);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
strong {
  font-family: var(--font-heading);
  line-height: 1.14;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

.topbar {
  background: rgba(6, 23, 44, 0.85);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
}

.topbar-inner,
.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.topbar-inner {
  min-height: 36px;
}

.topbar-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.topbar-links a {
  color: rgba(255, 255, 255, 0.65);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
}

/* ── Combined government header bar ── */
.header-brand-bar {
  display: none; /* merged into nav bar */
}

.brand-copy,
.brand-tag {
  display: none; /* logo only, no text */
}

.brand {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
  margin-right: 24px;
}

.brand-mark {
  position: relative;
  --logo-size: 88px;
  width: var(--logo-size);
  height: var(--logo-size);
  overflow: hidden;
  padding: 0;
  background: transparent;
  border: 1px solid rgba(199, 207, 218, 0.5);
  box-shadow: none;
  border-radius: 50%;
  opacity: 1;
  transition: width 280ms ease, height 280ms ease, opacity 280ms ease, transform 280ms ease;
}

.brand-mark::before,
.brand-mark::after {
  content: none;
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}

.brand-mark::before {
  inset: 0;
  z-index: 0;
  background: none;
  border: none;
  box-shadow: none;
  animation: none;
}

.brand-mark::after {
  inset: 0;
  z-index: 1;
  border: none;
  animation: none;
}

.brand-mark img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 50%;
  mix-blend-mode: normal;
  transform: none;
  transform-origin: center;
  will-change: auto;
  animation: none;
  opacity: 1;
  filter: none;
  transition: opacity 280ms ease, transform 280ms ease;
}

.brand:hover .brand-mark img,
.brand:focus-visible .brand-mark img {
  transform: none;
  filter: none;
}

body.is-scrolled .brand-mark {
  --logo-size: 62px;
  opacity: 0.28;
  transform: scale(0.94);
}

body.is-scrolled .brand-mark img {
  opacity: 0.45;
}

@keyframes logoDrift {
  0% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
  20% {
    transform: translate3d(0.3px, -0.8px, 0) rotate(0.8deg) scale(1);
  }
  45% {
    transform: translate3d(-0.6px, 0.2px, 0) rotate(-0.6deg) scale(1);
  }
  70% {
    transform: translate3d(0.4px, -0.5px, 0) rotate(0.5deg) scale(1);
  }
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(1);
  }
}

@keyframes logoFrameSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes logoFramePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.82;
  }
  50% {
    transform: scale(1.04);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand-mark::before,
  .brand-mark::after,
  .brand-mark img {
    animation: none;
    transition: none;
  }
}

/* ── Main government navigation bar ── */
.header-nav-bar {
  background: #ffffff;
  border-bottom: 1px solid rgba(8, 32, 58, 0.12);
  box-shadow: 0 6px 18px rgba(8, 32, 58, 0.08);
  position: relative;
}

.header-nav-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0;
  padding: 6px 0;
}

/* Keep .nav-shell for legacy but override */
.nav-shell {
  padding: 0;
  background: transparent;
  border-bottom: none;
  position: relative;
}

.nav-panel,
.header-tools,
.main-nav,
.locale-switcher,
.chip-row,
.card-meta,
.fact-row,
.hero-actions,
.social-grid,
.link-stack,
.media-frame-line {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-panel {
  justify-content: flex-start;
}

.main-nav {
  flex-wrap: wrap;
  gap: 0;
}

.nav-link {
  position: relative;
  padding: 14px 16px;
  color: rgba(8, 32, 58, 0.82);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: color 0.15s ease, background 0.15s ease;
}

.nav-link:hover {
  color: var(--deep);
  background: rgba(8, 32, 58, 0.08);
}

.nav-link.is-active {
  color: var(--gold);
  background: rgba(8, 32, 58, 0.08);
}

.simple-link:hover,
.text-link:hover,
.section-link:hover {
  color: var(--deep);
}

.nav-link.is-active {
  border-bottom: 3px solid var(--gold);
}

.nav-link.is-active::after {
  display: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(8, 32, 58, 0.22);
  border-radius: 8px;
  background: rgba(8, 32, 58, 0.05);
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--deep);
}

.header-tools {
  justify-content: flex-end;
}

/* Header search styled for dark nav bar */
.header-nav-bar .header-search input {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(8, 32, 58, 0.2);
  color: var(--deep);
  border-radius: 6px;
  padding: 8px 12px;
}

.header-nav-bar .header-search input::placeholder {
  color: rgba(8, 32, 58, 0.45);
}

.header-nav-bar .header-search input:focus {
  border-color: rgba(12, 91, 132, 0.65);
  box-shadow: 0 0 0 3px rgba(12, 91, 132, 0.14);
  background: #fff;
}

.header-nav-bar .button-secondary {
  background: rgba(255, 255, 255, 0.65);
  color: var(--deep);
  border: 1px solid rgba(8, 32, 58, 0.25);
  padding: 8px 14px;
  font-size: 0.85rem;
}

.header-nav-bar .button-secondary:hover {
  background: #fff;
  color: var(--deep);
}

/* Locale pills on dark nav bar */
.header-nav-bar .locale-pill {
  background: rgba(255, 255, 255, 0.6);
  color: rgba(8, 32, 58, 0.75);
  border: 1px solid rgba(8, 32, 58, 0.18);
}

.header-nav-bar .locale-pill.is-active,
.header-nav-bar .locale-pill:hover {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
}

/* Locale dropdown */
.locale-dropdown {
  position: relative;
}

.locale-dropdown__trigger {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(8, 32, 58, 0.22);
  border-radius: 6px;
  color: var(--deep);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}

.locale-dropdown__trigger:hover,
.locale-dropdown.is-open .locale-dropdown__trigger {
  background: #fff;
  border-color: rgba(12, 91, 132, 0.65);
  color: var(--deep);
}

.locale-dropdown__trigger svg {
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.locale-dropdown.is-open .locale-dropdown__trigger svg {
  transform: rotate(180deg);
}

.locale-dropdown__menu {
  display: none;
  position: absolute;
  right: 0;
  top: calc(100% + 6px);
  background: #fff;
  border: 1px solid rgba(8, 32, 58, 0.18);
  border-radius: 8px;
  overflow: hidden;
  min-width: 110px;
  box-shadow: 0 8px 24px rgba(8, 32, 58, 0.14);
  z-index: 200;
}

.locale-dropdown.is-open .locale-dropdown__menu {
  display: block;
}

.locale-dropdown__item {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: transparent;
  border: 0;
  color: rgba(8, 32, 58, 0.8);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-align: left;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}

.locale-dropdown__item:hover {
  background: rgba(12, 91, 132, 0.08);
  color: var(--deep);
}

.locale-dropdown__item.is-active {
  color: var(--deep);
  background: rgba(12, 91, 132, 0.14);
}

.header-search,
.inline-search,
.search-hero-form {
  display: flex;
  align-items: center;
  gap: 10px;
}
.logo-home-btn {
  display: inline-block;
  max-width: 0;
  margin-right: 0;
  padding-left: 0;
  padding-right: 0;
  overflow: hidden;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-4px);
  transition: opacity 0.22s ease, transform 0.22s ease, max-width 0.22s ease, margin-right 0.22s ease, padding 0.22s ease;
}
.logo-home-btn.is-visible {
  opacity: 1;
  pointer-events: auto;
  max-width: 180px;
  margin-right: 2px;
  padding-left: 16px;
  padding-right: 16px;
  transform: translateY(0);
}

.header-search input,
.inline-search input,
.search-hero-form input,
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(8, 32, 58, 0.14);
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 14px 16px;
  color: var(--text);
  outline: none;
}

.field textarea {
  resize: vertical;
}

.header-search input:focus,
.inline-search input:focus,
.search-hero-form input:focus,
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: rgba(12, 91, 132, 0.45);
  box-shadow: 0 0 0 4px rgba(12, 91, 132, 0.08);
}

.button,
.button-secondary,
.button-light {
  border: 0;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button {
  background: linear-gradient(135deg, var(--deep), var(--azure));
  color: #fff;
  box-shadow: 0 18px 36px rgba(8, 32, 58, 0.18);
}

.button-secondary {
  background: rgba(255, 255, 255, 0.9);
  color: var(--deep);
  border: 1px solid rgba(8, 32, 58, 0.12);
}

.button-light {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.button:hover,
.button-secondary:hover,
.button-light:hover {
  transform: translateY(-1px);
}

.full-width {
  width: 100%;
  text-align: center;
}

.locale-pill,
.chip,
.badge,
.count-pill,
.fact-pill {
  border-radius: 999px;
  font-weight: 700;
}

.locale-pill {
  border: 1px solid rgba(8, 32, 58, 0.12);
  padding: 9px 13px;
  background: rgba(255, 255, 255, 0.84);
  color: var(--muted);
  cursor: pointer;
}

.locale-pill.is-active,
.chip.is-active {
  background: linear-gradient(135deg, var(--deep), var(--azure));
  color: #fff;
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
}

.hero::before,
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(248, 252, 255, 0.96)),
    linear-gradient(180deg, rgba(12, 91, 132, 0.08), transparent);
  z-index: -1;
}

.hero {
  margin: 0 auto;
  padding: 48px 0 30px;
  color: var(--text);
}

.hero-grid,
.page-hero-inner,
.dual-panel,
.detail-grid,
.about-layout {
  display: grid;
  gap: 24px;
}

.hero-grid {
  grid-template-columns: 1.25fr 0.95fr;
  align-items: end;
}

.hero-copy h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  margin-bottom: 18px;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--text);
  max-width: 760px;
}

.hero-lead {
  color: var(--muted);
  max-width: 760px;
}

.hero-side {
  display: grid;
  gap: 18px;
}

.seal-card,
.feature-card,
.page-hero-copy,
.panel,
.card,
.result-card,
.empty-state,
.detail-hero {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.seal-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.12);
}

.seal-ring {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  padding: 6px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.12));
}

.seal-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}

.feature-card,
.detail-hero,
.appeal-box,
.frame-card {
  color: var(--text);
}

.feature-card,
.detail-hero {
  padding: 24px 24px 26px;
}

.hero-rail {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.page-hero {
  padding: 34px 0;
  color: var(--text);
}

.page-hero-inner {
  grid-template-columns: 1.3fr auto;
  align-items: center;
}

.page-hero-copy h1 {
  font-size: clamp(2.2rem, 4.3vw, 4rem);
  margin-bottom: 14px;
  color: var(--text);
}

.page-hero-copy p:last-child {
  color: var(--muted);
  max-width: 760px;
}

.stats-grid,
.card-grid,
.contact-grid,
.timeline-grid,
.frame-grid,
.mini-grid,
.results-list,
.footer-grid,
.form-grid {
  display: grid;
  gap: 18px;
}

.stats-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 28px;
}

.card-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card-grid-four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.panel,
.card,
.empty-state,
.result-card {
  padding: 24px;
  background: var(--surface);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.42);
}

.panel {
  background: var(--surface-strong);
}

.home-map-section {
  padding-top: 8px;
}

.home-map-panel {
  padding: 0;
  overflow: hidden;
}

.home-map-shell {
  position: relative;
  aspect-ratio: 16 / 9;
  min-height: 620px;
  background: linear-gradient(180deg, #eef5f8, #ffffff);
}

.home-map-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  padding: 18px;
}

.home-map-svg {
  width: 100%;
  height: 100%;
  display: block;
  padding: 10px;
}

.home-map-region-shape path {
  fill: rgba(12, 91, 132, 0.35);
  stroke: rgba(255, 255, 255, 0.92);
  stroke-width: 1.4;
  transition: fill 0.2s ease, stroke 0.2s ease, opacity 0.2s ease;
}

.home-map-region-shape:hover path,
.home-map-region-shape:focus path {
  fill: rgba(184, 150, 12, 0.78);
  stroke: rgba(8, 32, 58, 0.95);
}

.home-map-region-shape.is-active path {
  fill: rgba(184, 150, 12, 0.78);
  stroke: rgba(8, 32, 58, 0.95);
}

.home-map-hover-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  max-width: 520px;
  display: block;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(8, 32, 58, 0.18);
  border-radius: 14px;
  box-shadow: 0 16px 36px rgba(8, 32, 58, 0.2);
  backdrop-filter: blur(4px);
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.home-map-hover-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.home-map-photo-ring {
  position: absolute;
  inset: 0;
  --cursor-x: 50%;
  --cursor-y: 50%;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.home-map-photo-ring.is-visible {
  opacity: 1;
}

.home-map-photo {
  position: absolute;
  width: 124px;
  height: 82px;
  object-fit: cover;
  border-radius: 10px;
  border: 2px solid rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 22px rgba(8, 32, 58, 0.26);
  --photo-rot: 0deg;
  --photo-scale: 1;
  transform: rotate(var(--photo-rot)) scale(var(--photo-scale));
  transition: left 0.16s ease-out, top 0.16s ease-out, transform 0.28s ease;
}

.home-map-photo-1 {
  left: calc(var(--cursor-x) - 196px);
  top: calc(var(--cursor-y) - 136px);
  --photo-rot: -6deg;
  transition-delay: 0s;
}

.home-map-photo-2 {
  left: calc(var(--cursor-x) + 72px);
  top: calc(var(--cursor-y) - 136px);
  --photo-rot: 6deg;
  transition-delay: 0.04s;
}

.home-map-photo-3 {
  left: calc(var(--cursor-x) - 196px);
  top: calc(var(--cursor-y) + 54px);
  --photo-rot: 4deg;
  transition-delay: 0.08s;
}

.home-map-photo-4 {
  left: calc(var(--cursor-x) + 72px);
  top: calc(var(--cursor-y) + 54px);
  --photo-rot: -4deg;
  transition-delay: 0.12s;
}

.home-map-hover-card-body {
  padding: 10px 14px;
}

.home-map-hover-card-body h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  color: #0b3153;
}

.home-map-hover-card-body p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.42;
  color: #2f566f;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading h2 {
  font-size: clamp(1.9rem, 3vw, 2.8rem);
  margin-bottom: 8px;
}

.section-lead {
  max-width: 760px;
  color: var(--muted);
}

.section-link,
.text-link {
  font-weight: 700;
  color: var(--azure);
}

.card h3,
.panel h2,
.result-card h3,
.feature-card h3 {
  font-size: 1.45rem;
  margin-bottom: 12px;
}

.card p,
.panel p,
.result-card p,
.feature-card p {
  color: var(--muted);
}

.card-meta {
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 14px;
  color: rgba(255, 255, 255, 0.82);
}

.card .card-meta,
.panel .card-meta,
.result-card .card-meta {
  color: var(--muted);
}

.badge,
.count-pill,
.fact-pill,
.chip {
  padding: 7px 12px;
}

.badge,
.chip,
.count-pill {
  background: rgba(8, 32, 58, 0.08);
}

.badge-gold {
  background: rgba(181, 138, 63, 0.14);
}

.count-pill {
  color: var(--azure);
}

.fact-row,
.chip-row {
  flex-wrap: wrap;
}

.fact-pill {
  background: rgba(8, 32, 58, 0.06);
  color: var(--deep);
}

.theme-azure {
  background: linear-gradient(135deg, #0b4568, #1476a3);
}

.theme-emerald {
  background: linear-gradient(135deg, #0a4f4b, #128072);
}

.theme-gold {
  background: linear-gradient(135deg, #8d6530, #c39753);
}

.theme-indigo {
  background: linear-gradient(135deg, #253953, #4f6486);
}

.theme-azure,
.theme-emerald,
.theme-gold,
.theme-indigo {
  color: #fff;
}

.theme-azure p,
.theme-emerald p,
.theme-gold p,
.theme-indigo p,
.theme-azure .card-meta,
.theme-emerald .card-meta,
.theme-gold .card-meta,
.theme-indigo .card-meta,
.theme-azure .text-link,
.theme-emerald .text-link,
.theme-gold .text-link,
.theme-indigo .text-link {
  color: rgba(255, 255, 255, 0.82);
}

.media-frame-line {
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.92rem;
}

.media-frame-line span {
  padding: 6px 10px;
  background: rgba(8, 32, 58, 0.05);
  border-radius: 999px;
}

.social-grid {
  flex-wrap: wrap;
  margin: 18px 0 24px;
}

.social-card {
  min-width: 110px;
  padding: 14px 16px;
  border-radius: 18px;
  background: rgba(8, 32, 58, 0.05);
  text-align: center;
}

.social-card strong {
  display: block;
  margin-bottom: 6px;
}

.appeal-box {
  padding: 22px;
  border-radius: var(--radius);
}

.point-list,
.contact-card ul {
  padding-left: 20px;
  margin: 0;
}

.contact-card li + li,
.point-list li + li {
  margin-top: 8px;
}

.dual-panel {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.about-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  align-items: start;
}

.scroll-nav {
  position: sticky;
  top: 124px;
  display: grid;
  gap: 10px;
}

.scroll-nav a {
  color: var(--muted);
  font-weight: 700;
}

.stack {
  display: grid;
  gap: 18px;
}

.mini-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.mini-card {
  padding: 16px;
  border-radius: 20px;
  color: #fff;
}

.timeline-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.timeline-card {
  padding: 20px;
  background: var(--surface-strong);
}

.timeline-year {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.12em;
}

.timeline-list {
  display: grid;
  gap: 16px;
}

.timeline-item {
  padding: 16px 18px;
  border-left: 3px solid rgba(12, 91, 132, 0.2);
  background: rgba(8, 32, 58, 0.03);
  border-radius: 0 18px 18px 0;
}

.breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  padding-top: 26px;
  color: var(--muted);
  font-size: 0.95rem;
}

.detail-grid {
  grid-template-columns: 1.3fr 0.8fr;
}

.about-video-panel {
  margin-top: 20px;
}

.about-video {
  display: block;
  width: 100%;
  margin-top: 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #000;
  box-shadow: var(--shadow);
}

.detail-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 12px;
}

blockquote {
  margin: 26px 0 0;
  padding: 18px 22px;
  border-left: 3px solid rgba(12, 91, 132, 0.32);
  background: rgba(8, 32, 58, 0.04);
  border-radius: 0 20px 20px 0;
  color: var(--deep);
  font-family: var(--font-heading);
  font-size: 1.15rem;
}

.related-list {
  display: grid;
  gap: 14px;
  margin: 16px 0 18px;
}

.related-card {
  display: block;
  padding: 16px;
  border-radius: 20px;
  background: rgba(8, 32, 58, 0.04);
}

.related-card strong {
  display: block;
  margin-bottom: 8px;
}

.filter-shell {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
}

.chip {
  font-weight: 700;
  color: var(--muted);
}

.frame-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 18px;
}

.frame-card {
  padding: 20px;
  border-radius: 22px;
  display: grid;
  gap: 10px;
}

.frame-card span {
  opacity: 0.72;
}

.contact-summary {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.field,
.consent-row {
  display: grid;
  gap: 10px;
}

.field span,
.consent-row span {
  font-weight: 700;
}

.consent-row {
  grid-template-columns: auto 1fr;
  align-items: start;
  margin: 18px 0;
}

.consent-row input {
  margin-top: 4px;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.form-status {
  margin: 0;
  font-weight: 700;
}

.form-status.is-success {
  color: var(--emerald);
}

.form-status.is-error {
  color: #a33e28;
}

.search-note {
  margin-top: 14px;
  color: var(--muted);
}

.results-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.result-card {
  display: block;
}

.empty-state {
  text-align: center;
}

.site-footer {
  padding: 40px 0 50px;
  background: #0b4aa8;
  color: rgba(255, 255, 255, 0.9);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-grid {
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.site-footer h2,
.site-footer h3,
.site-footer p,
.simple-link {
  color: rgba(255, 255, 255, 0.9);
}

.link-stack {
  display: grid;
  gap: 10px;
}

.footer-col {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: start;
  row-gap: 10px;
}

.site-footer .footer-col h3 {
  margin: 0;
  line-height: 1.3;
}

.site-footer .footer-col p {
  margin: 0;
}

.footer-text-stack {
  display: grid;
  gap: 10px;
}

@media (max-width: 1100px) {
  .hero-grid,
  .page-hero-inner,
  .dual-panel,
  .detail-grid,
  .about-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .card-grid-four,
  .timeline-grid,
  .contact-grid,
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .results-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .home-map-shell {
    min-height: 620px;
  }
}

@media (max-width: 640px) {
  .home-map-shell {
    aspect-ratio: auto;
    min-height: 440px;
  }

  .home-map-hover-card {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .home-map-photo {
    width: 82px;
    height: 56px;
  }

  .home-map-photo-1 {
    left: calc(var(--cursor-x) - 128px);
    top: calc(var(--cursor-y) - 96px);
  }

  .home-map-photo-2 {
    left: calc(var(--cursor-x) + 46px);
    top: calc(var(--cursor-y) - 96px);
  }

  .home-map-photo-3 {
    left: calc(var(--cursor-x) - 128px);
    top: calc(var(--cursor-y) + 40px);
  }

  .home-map-photo-4 {
    left: calc(var(--cursor-x) + 46px);
    top: calc(var(--cursor-y) + 40px);
  }

  .home-map-hover-card-body {
    padding: 9px 10px;
  }

  .home-map-hover-card-body h3 {
    font-size: 0.9rem;
  }

  .home-map-hover-card-body p {
    font-size: 0.82rem;
  }
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .header-nav-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-panel {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    padding: 18px 20px;
    background: var(--deep);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 3px solid var(--gold);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 100;
    grid-column: 1 / -1;
  }

  .nav-panel.is-open {
    display: grid;
  }

  .main-nav,
  .header-search {
    width: 100%;
  }

  .main-nav {
    flex-direction: column;
    align-items: start;
  }

  .header-tools {
    flex-direction: row;
    align-items: center;
    gap: 8px;
  }

  .header-nav-bar .header-search {
    display: none;
  }

  .hero-rail,
  .card-grid,
  .card-grid-four,
  .timeline-grid,
  .contact-grid,
  .mini-grid,
  .frame-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .filter-shell {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(100vw - 24px, 1180px);
  }

  .presentation-strip__frame {
    margin: 8px;
    min-height: calc(100% - 16px);
    padding: 16px 14px;
    border-radius: 8px;
  }

  .topbar-inner,
  .nav-shell,
  .hero-actions,
  .form-actions,
  .header-search,
  .inline-search,
  .search-hero-form {
    flex-direction: column;
    align-items: stretch;
  }

  .stats-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .page-hero,
  .hero {
    padding-top: 30px;
  }
}

/* Minimal homepage refresh */
.minimal-hero {
  position: relative;
  padding: 128px 0 88px;
  background: #fff;
}

.minimal-hero::before {
  content: "";
  position: absolute;
  top: 34px;
  left: 50%;
  width: 94px;
  height: 2px;
  transform: translateX(-50%);
  background: var(--red);
  opacity: 0.7;
}

.minimal-hero__inner {
  max-width: 760px;
  text-align: center;
}

.minimal-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 22px;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

.minimal-hero__eyebrow::after {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}

.minimal-hero__title {
  margin: 0;
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 6vw, 4.4rem);
  line-height: 1.05;
  color: var(--text);
}

.minimal-hero__lead {
  max-width: 620px;
  margin: 22px auto 44px;
  color: var(--muted);
  font-size: clamp(1rem, 2.8vw, 1.28rem);
}

.minimal-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border-radius: 10px;
  background: var(--azure);
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: var(--shadow);
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease;
}

.minimal-hero__cta:hover {
  background: #0a4d6f;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(12, 91, 132, 0.22);
}

.minimal-highlights {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 6px;
}

.minimal-card {
  position: relative;
  padding: 24px 22px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.minimal-card::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--red);
  opacity: 0.75;
}

.minimal-card__icon {
  display: inline-flex;
  margin-bottom: 18px;
}

.minimal-card.is-azure .minimal-card__icon {
  color: var(--azure);
}

.minimal-card.is-emerald .minimal-card__icon {
  color: var(--emerald);
}

.minimal-card__value {
  display: block;
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  line-height: 1;
  color: var(--text);
}

.minimal-card__label {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ── Interactive Map Section ── */
.home-overview {
  padding-bottom: 6px;
}

.home-dual-panel {
  align-items: stretch;
}

.map-section {
  position: relative;
  padding-top: 36px;
  padding-bottom: 56px;
}

.map-section__header {
  text-align: center;
  margin-bottom: 22px;
}

.map-section__header h2 {
  margin: 6px 0 12px;
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  color: var(--text);
}

.map-section__lead {
  color: var(--muted);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.map-embed-wrapper {
  width: 100%;
  position: relative;
  padding: 14px;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 24px 48px rgba(9, 40, 68, 0.12);
  background:
    radial-gradient(circle at top left, rgba(12, 91, 132, 0.12), transparent 30%),
    radial-gradient(circle at bottom right, rgba(180, 28, 44, 0.08), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 247, 250, 0.98));
}

.map-embed-wrapper::before {
  content: "";
  position: absolute;
  inset: 14px;
  border-radius: 18px;
  border: 1px solid rgba(12, 91, 132, 0.08);
  pointer-events: none;
}

.map-embed-wrapper iframe {
  width: 100%;
  height: 760px;
  border: none;
  display: block;
  border-radius: 18px;
  background: linear-gradient(180deg, #f8fbfd 0%, #eef4f8 100%);
}

@media (max-width: 768px) {
  .map-embed-wrapper iframe {
    height: 600px;
  }
}

/* ── END Map Section ── */

.minimal-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  padding-top: 34px;
}

.minimal-action {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 22px;
  border-radius: 12px;
  background: #fff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: transform 180ms ease, border-color 180ms ease;
}

.minimal-action:hover {
  transform: translateY(-2px);
  border-color: rgba(12, 91, 132, 0.3);
}

.minimal-action__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 9px;
  color: var(--azure);
  background: rgba(12, 91, 132, 0.08);
  flex-shrink: 0;
}

.minimal-action strong {
  display: block;
  color: var(--text);
  font-size: 1.07rem;
}

.minimal-action small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

@media (max-width: 920px) {
  .minimal-highlights {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  .minimal-hero {
    padding: 108px 0 68px;
  }

  .minimal-highlights,
  .minimal-actions {
    grid-template-columns: 1fr;
  }
}

/* ── Partners marquee section ── */
.partners-section {
  padding-top: 48px;
  padding-bottom: 48px;
  background: #ffffff !important;
  border-top: none !important;
  border-bottom: none !important;
  border-radius: 0 !important;
}

.partners-carousel-shell {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.partners-nav-btn {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--line);
  background: #ffffff;
  color: var(--deep);
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, box-shadow .2s, transform .15s;
  box-shadow: 0 2px 8px rgba(0,0,0,.08);
  z-index: 2;
}

.partners-nav-btn:hover {
  background: var(--azure);
  color: #ffffff;
  box-shadow: 0 4px 16px rgba(12,91,132,0.22);
  transform: scale(1.08);
}

.partners-nav-btn__icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
  display: block;
  pointer-events: none;
}

.partners-marquee {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  cursor: grab;
}

.partners-marquee.is-dragging {
  cursor: grabbing;
}

.partners-marquee__track {
  display: flex;
  align-items: center;
  gap: 32px;
  width: max-content;
  will-change: transform;
  user-select: none;
  -webkit-user-select: none;
}

.partners-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 24px;
  min-width: 160px;
  border-radius: 0;
  background: transparent;
  border: none;
  box-shadow: none;
  text-decoration: none;
  color: var(--text);
  transition: opacity .2s, transform .2s;
  flex-shrink: 0;
}

.partners-card:hover {
  opacity: .75;
  transform: translateY(-2px);
}

.partners-card__logo {
  width: 100px;
  height: 60px;
  object-fit: contain;
  filter: none;
}

.partners-card__name {
  font-size: .75rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.3;
  max-width: 140px;
  color: var(--muted);
}

.partners-divider {
  width: 1px;
  height: 48px;
  background: var(--line);
  flex-shrink: 0;
}
