:root {
  --ink: #14212b;
  --muted: #546575;
  --panel: #ffffff;
  --paper: #f7f8f5;
  --line: #dce4e7;
  --deep: #06344f;
  --blue: #0d72a8;
  --teal: #087d86;
  --green: #2f7b4f;
  --gold: #f1bf2b;
  --coral: #c9533f;
  --shadow: 0 20px 60px rgba(8, 45, 66, 0.15);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(241, 191, 43, 0.85);
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--deep);
  font-weight: 900;
  text-decoration: none;
  transform: translateY(-160%);
  transition: transform 160ms ease;
}
.skip-link:focus { transform: translateY(0); }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 76px;
  padding: 12px clamp(18px, 4vw, 56px);
  border-bottom: 1px solid rgba(220, 228, 231, 0.8);
  background: rgba(247, 248, 245, 0.94);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 236px;
  color: var(--deep);
  text-decoration: none;
}
.seal-wrap {
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 2px solid var(--gold);
  border-radius: 50%;
  background: #fff;
}
.seal-wrap img { width: 100%; height: 100%; object-fit: contain; }
.brand strong,
.brand small { display: block; }
.brand strong { font-size: 1.02rem; line-height: 1.1; }
.brand small { color: var(--muted); font-size: 0.77rem; font-weight: 800; }
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 11px;
  border-radius: 6px;
  color: #263946;
  font-size: 0.91rem;
  font-weight: 850;
  text-decoration: none;
}
.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--teal);
  background: #eaf3f1;
}
.site-nav .nav-cta {
  margin-left: 6px;
  color: #fff;
  background: var(--deep);
}
.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  color: #fff;
  background: var(--teal);
}
.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fff;
}
.menu-toggle span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  position: relative;
  display: grid;
  min-height: calc(100vh - 76px);
  overflow: hidden;
  color: #fff;
}
.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  background:
    linear-gradient(90deg, rgba(4, 44, 68, 0.94), rgba(4, 44, 68, 0.66) 50%, rgba(4, 44, 68, 0.12)),
    linear-gradient(0deg, rgba(2, 23, 34, 0.55), rgba(2, 23, 34, 0.05));
}
.hero-content {
  position: relative;
  z-index: 1;
  width: min(850px, calc(100vw - 36px));
  padding: clamp(86px, 11vw, 132px) clamp(18px, 6vw, 76px) 168px;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0;
  text-transform: uppercase;
}
h1, h2, h3, p { margin-top: 0; }
h1 {
  max-width: 860px;
  margin-bottom: 22px;
  font-size: clamp(2.6rem, 5.8vw, 6.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}
h2 {
  margin-bottom: 16px;
  color: var(--deep);
  font-size: clamp(2rem, 3.3vw, 3.8rem);
  line-height: 1.04;
  letter-spacing: 0;
}
h3 {
  margin-bottom: 8px;
  color: var(--deep);
  font-size: 1.18rem;
  line-height: 1.2;
}
.hero-copy {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.45vw, 1.3rem);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 0;
  border-radius: 6px;
  font-weight: 900;
  text-decoration: none;
  cursor: pointer;
}
.button.primary {
  color: #102237;
  background: var(--gold);
}
.button.secondary {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.45);
}
.quick-panel {
  position: absolute;
  right: clamp(18px, 4vw, 58px);
  bottom: 30px;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(92px, 1fr));
  gap: 1px;
  width: min(650px, calc(100vw - 36px));
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.25);
  box-shadow: var(--shadow);
}
.quick-panel div {
  padding: 16px;
  background: rgba(255, 255, 255, 0.92);
}
.quick-panel strong {
  display: block;
  color: var(--deep);
  font-size: 1.32rem;
  line-height: 1.1;
}
.quick-panel span {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
}

.alert-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 14px clamp(18px, 5vw, 70px);
  color: #fff;
  background: var(--deep);
}
.alert-strip strong { color: var(--gold); }
.alert-strip a { margin-left: auto; font-weight: 900; }

.section {
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 70px);
}
.section-heading {
  max-width: 900px;
  margin-bottom: 30px;
}
.section-heading p {
  color: var(--muted);
  font-size: 1.04rem;
}
.service-grid,
.updates-grid,
.proof-grid,
.dashboard-grid,
.tourism-grid,
.directory-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.service-grid article,
.updates-grid article,
.proof-grid article,
.dashboard-grid article,
.tourism-grid article,
.directory-grid article,
.info-card,
.feature-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 12px 34px rgba(12, 46, 60, 0.07);
}
.service-grid article,
.updates-grid article,
.proof-grid article,
.dashboard-grid article,
.tourism-grid article,
.directory-grid article,
.info-card {
  padding: 22px;
}
.service-grid article[data-topic-href],
.updates-grid article[data-topic-href],
.proof-grid article[data-topic-href],
.dashboard-grid article[data-topic-href],
.tourism-grid article[data-topic-href],
.directory-grid article[data-topic-href],
.chart-grid article[data-topic-href],
.feature-panel[data-topic-href],
.report-preview[data-topic-href] {
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.service-grid article[data-topic-href]:hover,
.updates-grid article[data-topic-href]:hover,
.proof-grid article[data-topic-href]:hover,
.dashboard-grid article[data-topic-href]:hover,
.tourism-grid article[data-topic-href]:hover,
.directory-grid article[data-topic-href]:hover,
.chart-grid article[data-topic-href]:hover,
.feature-panel[data-topic-href]:hover,
.report-preview[data-topic-href]:hover,
.service-grid article[data-topic-href]:focus-visible,
.updates-grid article[data-topic-href]:focus-visible,
.proof-grid article[data-topic-href]:focus-visible,
.dashboard-grid article[data-topic-href]:focus-visible,
.tourism-grid article[data-topic-href]:focus-visible,
.directory-grid article[data-topic-href]:focus-visible,
.chart-grid article[data-topic-href]:focus-visible,
.feature-panel[data-topic-href]:focus-visible,
.report-preview[data-topic-href]:focus-visible {
  border-color: rgba(13, 114, 168, 0.45);
  box-shadow: 0 18px 44px rgba(12, 46, 60, 0.14);
  transform: translateY(-2px);
}
.service-grid p,
.updates-grid p,
.proof-grid p,
.dashboard-grid p,
.directory-grid p {
  color: var(--muted);
}
.service-grid a {
  color: var(--teal);
  font-weight: 900;
}
.card-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 8px;
  color: #fff;
  background: var(--blue);
  font-size: 0.82rem;
  font-weight: 950;
}

.city-story,
.transparency-section,
.dashboard-section,
.investor-desk {
  background: #fff;
}
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(310px, 0.7fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
}
.metric-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 26px;
}
.metric-row div {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
}
.metric-row strong,
.proof-grid strong,
.tourism-grid strong {
  display: block;
  color: var(--deep);
  font-size: 1.08rem;
}
.metric-row span,
.tourism-grid span {
  color: var(--muted);
  font-size: 0.9rem;
}
.feature-panel {
  padding: 26px;
}
.feature-panel img {
  width: 106px;
  height: auto;
  margin-bottom: 18px;
}
.feature-panel.logo-panel img {
  width: 130px;
}
.check-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 26px;
  color: var(--muted);
}
.check-list li::before {
  display: block;
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--green);
  content: "";
}

.portal-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(6, 52, 79, 0.97), rgba(8, 125, 134, 0.92)),
    #06344f;
  color: #fff;
}
.portal-section h2,
.portal-section h3 { color: #fff; }
.portal-copy p,
.portal-copy li { color: rgba(255, 255, 255, 0.82); }
.portal-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  padding: 22px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
}
.portal-form label,
.search-box {
  display: grid;
  gap: 6px;
}
.portal-form label span {
  color: #364955;
  font-size: 0.82rem;
  font-weight: 900;
}
.portal-form input,
.portal-form select,
.portal-form textarea,
.search-box input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}
.portal-form textarea { resize: vertical; }
.portal-form .full,
.portal-output,
.form-note { grid-column: 1 / -1; }
.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}
.portal-output {
  display: none;
  padding: 14px;
  border: 1px solid #bcd7cc;
  border-radius: 8px;
  background: #eef9f3;
  color: #163b28;
  white-space: pre-wrap;
}
.portal-output.is-visible { display: block; }
.portal-output .handoff-link {
  width: max-content;
  margin-top: 12px;
  color: #fff;
  background: var(--deep);
}

.directory-tools {
  display: grid;
  gap: 16px;
  margin-bottom: 20px;
}
.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.tag-row button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 13px;
  color: var(--deep);
  background: #fff;
  font-weight: 850;
  cursor: pointer;
}
.tag-row button.is-active {
  color: #fff;
  background: var(--deep);
}
.directory-grid article ul {
  padding-left: 18px;
  color: var(--muted);
}
.updates-grid article span {
  display: block;
  margin-bottom: 8px;
  color: var(--teal);
  font-weight: 950;
}
.tourism-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}
.culture-section {
  background: #fff;
}
.culture-grid,
.media-grid,
.topic-list-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.culture-grid article,
.media-card,
.topic-list-card {
  display: grid;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 12px 34px rgba(12, 46, 60, 0.07);
}
.culture-grid article,
.topic-list-card {
  padding: 22px;
}
.culture-grid strong,
.topic-list-card strong,
.media-card strong {
  color: var(--deep);
  font-size: 1.08rem;
  line-height: 1.22;
}
.culture-grid span,
.topic-list-card span,
.media-card span {
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}
.culture-grid p,
.topic-list-card p {
  margin: 0;
  color: var(--muted);
}
.media-section {
  background: #fff;
}
.media-card {
  overflow: hidden;
}
.media-card img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: #dce4e7;
}
.media-card span,
.media-card strong,
.media-card p {
  margin-inline: 18px;
}
.media-card p {
  margin-bottom: 18px;
  color: var(--muted);
}
.topic-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(330px, 0.75fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 70px);
  background: #fff;
}
.topic-hero h1 {
  color: var(--deep);
  font-size: clamp(2.5rem, 5vw, 5.6rem);
}
.topic-hero p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.12rem;
}
.topic-hero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}
.topic-body {
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
}
.topic-intro {
  position: sticky;
  top: 104px;
  align-self: start;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(12, 46, 60, 0.07);
}
.topic-section-grid {
  display: grid;
  gap: 16px;
}
.topic-section-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
}
.topic-section-grid p,
.topic-intro p {
  color: var(--muted);
}
.topic-sources-section {
  background: #fff;
}
.link-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.link-board a {
  min-height: 68px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--deep);
  font-weight: 950;
  text-decoration: none;
}

.subhero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(340px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(52px, 7vw, 88px) clamp(18px, 5vw, 70px);
  background: #fff;
}
.subhero h1 {
  color: var(--deep);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
}
.subhero p {
  color: var(--muted);
  font-size: 1.08rem;
}
.subhero img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow);
}
.subhero .button.secondary {
  color: var(--deep);
  background: #edf3f5;
  box-shadow: none;
}
.emergency-strip {
  background: var(--deep);
  color: #fff;
}
.emergency-strip h2 { color: #fff; }
.hotline-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.hotline-grid a {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
}
.hotline-grid strong {
  display: block;
  color: var(--gold);
  font-size: 1.18rem;
}
.hotline-grid span {
  color: rgba(255, 255, 255, 0.8);
}
.risk {
  display: inline-flex;
  margin: 8px 0 10px;
  padding: 5px 9px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 950;
}
.risk.high { color: #fff; background: var(--coral); }
.risk.watch { color: #3f2c00; background: #ffd66b; }
.risk.steady { color: #fff; background: var(--green); }

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(18px, 5vw, 70px);
  color: rgba(255, 255, 255, 0.82);
  background: #081d2b;
}
.site-footer strong { color: #fff; }
.site-footer p { margin-bottom: 0; }
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.footer-links a {
  color: #fff;
  font-weight: 850;
}

.reports-hero {
  background:
    radial-gradient(circle at 85% 20%, rgba(13, 114, 168, 0.14), transparent 28%),
    linear-gradient(180deg, #fff, #f3f7f8);
}

.report-preview {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
}

.mini-map {
  position: relative;
  height: 330px;
  overflow: hidden;
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(8, 125, 134, 0.18) 1px, transparent 1px),
    linear-gradient(rgba(13, 114, 168, 0.18) 1px, transparent 1px),
    radial-gradient(circle at 55% 45%, rgba(241, 191, 43, 0.28), transparent 22%),
    #edf5f6;
  background-size: 46px 46px, 46px 46px, auto, auto;
}

.mini-map::before {
  position: absolute;
  inset: 48% -10% auto -10%;
  height: 58px;
  border-radius: 999px;
  background: rgba(13, 114, 168, 0.34);
  content: "";
  transform: rotate(-12deg);
}

.mini-map span {
  position: absolute;
  width: 18px;
  height: 18px;
  border: 4px solid #fff;
  border-radius: 50%;
  background: var(--coral);
  box-shadow: 0 8px 18px rgba(12, 46, 60, 0.22);
}

.report-kpis {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

.report-kpis article,
.chart-grid article,
.insight-board article,
.case-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(12, 46, 60, 0.07);
}

.report-kpis article {
  padding: 18px;
}

.report-kpis strong {
  display: block;
  color: var(--deep);
  font-size: clamp(1.35rem, 2.6vw, 2.3rem);
  line-height: 1;
}

.report-kpis span {
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 850;
}

.chart-grid,
.insight-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.chart-grid article,
.insight-board article {
  padding: 20px;
}

.chart-grid canvas {
  width: 100%;
  height: auto;
}

.insight-board {
  margin-top: 16px;
}

.insight-board ul {
  margin: 0;
  padding-left: 20px;
  color: var(--muted);
}

.case-tools {
  display: grid;
  grid-template-columns: minmax(220px, 1.2fr) repeat(3, minmax(150px, 0.7fr)) auto;
  gap: 10px;
  margin-bottom: 18px;
}

.case-tools input,
.case-tools select,
.case-actions select {
  min-height: 44px;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.case-list {
  display: grid;
  gap: 12px;
}

.case-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 0.35fr);
  gap: 18px;
  padding: 18px;
}

.case-card p {
  color: var(--muted);
}

.case-card small,
.case-actions span {
  color: var(--muted);
  font-weight: 750;
}

.case-id {
  display: inline-flex;
  margin-bottom: 8px;
  color: var(--teal);
  font-size: 0.82rem;
  font-weight: 950;
}

.case-actions {
  display: grid;
  align-content: start;
  gap: 9px;
}

.status-pill {
  width: max-content;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff !important;
  background: var(--deep);
  font-size: 0.8rem;
}

@media (max-width: 1060px) {
  .service-grid,
  .updates-grid,
  .proof-grid,
  .dashboard-grid,
  .directory-grid,
  .culture-grid,
  .media-grid,
  .topic-list-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .tourism-grid,
  .link-board,
  .hotline-grid,
  .report-kpis,
  .case-tools {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .site-nav {
    position: absolute;
    top: 76px;
    right: 18px;
    left: 18px;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    box-shadow: var(--shadow);
  }
  .site-nav.is-open { display: grid; }
  .site-nav a { width: 100%; }
  .site-nav .nav-cta { margin-left: 0; }
  .menu-toggle { display: block; }
}

@media (max-width: 760px) {
  .brand { min-width: 0; }
  .brand small { display: none; }
  .hero { min-height: 760px; }
  .hero-content { padding-bottom: 270px; }
  h1 { font-size: clamp(2.45rem, 13vw, 3.6rem); }
  .quick-panel {
    left: 18px;
    right: 18px;
    grid-template-columns: repeat(2, 1fr);
  }
  .alert-strip a { margin-left: 0; }
  .service-grid,
  .updates-grid,
  .proof-grid,
  .dashboard-grid,
  .tourism-grid,
  .directory-grid,
  .link-board,
  .hotline-grid,
  .metric-row,
  .split,
  .portal-section,
  .portal-form,
  .subhero,
  .chart-grid,
  .insight-board,
  .case-card,
  .case-tools,
  .report-kpis,
  .culture-grid,
  .media-grid,
  .topic-list-grid,
  .topic-hero,
  .topic-body {
    grid-template-columns: 1fr;
  }
  .topic-intro { position: static; }
  .portal-form .full,
  .portal-output,
  .form-note { grid-column: auto; }
  .site-footer {
    display: grid;
  }
  .footer-links { justify-content: flex-start; }
}

@media (max-width: 440px) {
  .site-header { padding-inline: 14px; }
  .hero-content,
  .section,
  .subhero {
    padding-inline: 14px;
  }
  .quick-panel {
    left: 14px;
    right: 14px;
  }
  .button {
    width: 100%;
  }
}
