:root {
  --ink: #17212b;
  --muted: #5d6875;
  --line: #d8e0e7;
  --brand: #0b5b78;
  --brand-dark: #082f42;
  --accent: #b8642a;
  --green: #267367;
  --paper: #f5f7f8;
  --mist: #edf3f4;
  --white: #ffffff;
  --shadow: 0 12px 30px rgba(23, 33, 43, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  max-width: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  max-width: 100%;
  overflow-x: hidden;
  color: var(--ink);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--white);
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 100;
  transform: translateY(-140%);
  padding: 10px 14px;
  background: var(--brand-dark);
  color: var(--white);
  font-weight: 800;
}

.skip-link:focus {
  transform: translateY(0);
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.utility-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 8px 24px;
  color: var(--muted);
  font-size: 13px;
  border-bottom: 1px solid var(--line);
}

.utility-bar nav,
.actions,
.site-footer nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar {
  display: grid;
  grid-template-columns: minmax(250px, 1fr) minmax(300px, 520px) minmax(260px, 1fr);
  align-items: center;
  gap: 24px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 20px 24px 16px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  width: max-content;
  max-width: 100%;
  color: var(--brand-dark);
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 74px;
  height: 74px;
  object-fit: contain;
  flex: 0 0 auto;
}

.brand-wordmark {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.brand-wordmark strong {
  color: var(--brand);
  font-size: 38px;
  line-height: 0.9;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.brand-wordmark span {
  max-width: 230px;
  color: var(--brand-dark);
  font-size: 11px;
  line-height: 1.25;
  font-weight: 850;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.search {
  display: flex;
  min-width: 0;
  border: 1px solid var(--line);
  background: var(--white);
}

.search input {
  min-width: 0;
  width: 100%;
  border: 0;
  padding: 13px 16px;
  outline: 0;
}

.search button {
  min-width: 72px;
  padding: 0 12px;
  border: 0;
  border-left: 1px solid var(--line);
  background: #f1f5f6;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  cursor: pointer;
}

.actions {
  justify-content: flex-end;
  color: var(--brand-dark);
  font-size: 15px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: var(--white);
  font-weight: 750;
  cursor: pointer;
}

.button-secondary {
  background: var(--white);
  color: var(--brand);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.16);
}

.main-nav {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.nav-group {
  position: relative;
  min-width: 0;
}

.nav-group-label {
  display: block;
  padding: 15px 14px;
  color: #284c68;
  font-weight: 650;
  text-align: center;
}

.nav-group-label:hover,
.nav-group:focus-within .nav-group-label,
.nav-group:hover .nav-group-label,
.nav-group-label[aria-current="page"] {
  color: var(--accent);
}

.nav-group-label[aria-current="page"] {
  box-shadow: inset 0 -3px 0 var(--accent);
}

.nav-group-links {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 1px);
  z-index: 30;
  display: grid;
  gap: 1px;
  min-width: 210px;
  padding: 8px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 160ms ease, transform 160ms ease;
}

.nav-group:hover .nav-group-links,
.nav-group:focus-within .nav-group-links {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-group-links a {
  display: block;
  padding: 10px 12px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
  background: var(--white);
}

.nav-group-links a:hover,
.nav-group-links a:focus {
  background: var(--mist);
  color: var(--accent);
}

.hero {
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 410px);
  align-items: end;
  gap: 46px;
  padding: 82px max(24px, calc((100vw - 1240px) / 2)) 58px;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(8, 36, 50, 0.92), rgba(8, 36, 50, 0.62) 55%, rgba(8, 36, 50, 0.22)),
    url("assets/marine/hero-terminal.jpg")
      center / cover;
}

.hero-copy {
  max-width: 900px;
}

.eyebrow,
.tag {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow {
  margin: 0 0 12px;
}

.tag {
  display: inline-block;
  letter-spacing: 0.06em;
}

.tag-light {
  color: #ffc68e;
}

.hero h1 {
  margin: 0;
  max-width: 980px;
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.98;
}

.hero p {
  max-width: 720px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 20px;
  line-height: 1.5;
}

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

.hero-brief {
  padding: 26px;
  background: rgba(8, 36, 50, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.22);
  box-shadow: var(--shadow);
}

.hero-brief h2 {
  margin: 12px 0 12px;
  font-size: 28px;
  line-height: 1.08;
}

.hero-brief p {
  margin: 0 0 18px;
  font-size: 16px;
}

.hero-brief a {
  color: #ffd7a7;
  font-weight: 800;
}

.stats-strip,
.about-band,
.product-grid,
.method-section,
.source-map,
.knowledge-centre,
.section-grid,
.market-board,
.content-band,
.coverage-band,
.regions-section,
.directory-section,
.member-products,
.taxonomy-section,
.reports-section,
.events-section,
.membership,
.faq-section,
.operating-structure,
.governance-contact {
  max-width: 1240px;
  margin: 0 auto;
  padding: 44px 24px;
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
  padding-top: 0;
  padding-bottom: 0;
}

.stats-strip article {
  padding: 24px;
  background: var(--brand-dark);
  color: var(--white);
}

.stats-strip span,
.market-strip span,
.market-strip small {
  display: block;
}

.stats-strip span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  text-transform: uppercase;
}

.stats-strip strong {
  display: block;
  margin-top: 8px;
  font-size: 36px;
}

.desk-panel {
  max-width: 1240px;
  margin: 0 auto;
  padding: 36px 24px;
  display: grid;
  grid-template-columns: minmax(320px, 1.35fr) repeat(3, minmax(190px, 0.75fr));
  gap: 1px;
  background: var(--line);
}

.desk-lead,
.desk-panel a {
  min-height: 210px;
  padding: 26px;
  background: var(--white);
}

.desk-lead {
  background: var(--brand-dark);
  color: var(--white);
}

.desk-lead h2 {
  margin: 0;
  max-width: 620px;
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.04;
}

.desk-panel a {
  display: grid;
  align-content: start;
  transition: background 180ms ease, transform 180ms ease;
}

.desk-panel a:hover {
  background: var(--mist);
  transform: translateY(-2px);
}

.desk-panel a span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desk-panel a strong {
  margin-top: 14px;
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1.1;
}

.desk-panel a p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.about-band {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 48px;
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.about-band h2,
.membership h2,
.events-section h2,
.governance-contact h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.about-band p,
.product-grid p,
.story-card p,
.leader-card p,
.article-card p,
.coverage-band p,
.sector-card p,
.report-card p,
.directory-card p,
.events-section p,
.membership p,
.membership-tiers p,
.governance-contact p {
  color: var(--muted);
  line-height: 1.56;
}

.about-band > p {
  margin: 30px 0 0;
  font-size: 18px;
}

.editorial-note,
.launch-note {
  padding: 16px 18px;
  background: var(--mist);
  border-left: 4px solid var(--accent);
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.product-grid article,
.coverage-band article,
.coverage-band a,
.report-card,
.directory-card,
.event-card,
.membership-tiers article,
.governance-contact article {
  background: var(--white);
}

.product-grid article {
  padding: 26px;
}

.product-grid h2,
.coverage-band h2 {
  margin: 8px 0 10px;
  font-size: 24px;
  line-height: 1.12;
}

.product-grid a {
  color: var(--brand);
  font-weight: 800;
}

.performance-strip {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 24px;
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1fr) auto;
  align-items: center;
  gap: 28px;
  border-top: 1px solid var(--line);
}

.performance-strip h2 {
  margin: 8px 0 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.08;
}

.performance-strip p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.performance-strip nav {
  display: grid;
  gap: 10px;
  min-width: 210px;
}

.performance-strip a {
  color: var(--brand);
  font-weight: 800;
}

.recognition-news {
  max-width: 1240px;
  margin: 0 auto;
  padding: 34px 24px 46px;
  border-top: 1px solid var(--line);
}

.recognition-news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 22px;
}

.recognition-notice-card {
  display: block;
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(23, 33, 43, 0.05);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.recognition-notice-card:hover {
  transform: translateY(-3px);
  border-color: rgba(184, 100, 42, 0.55);
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.12);
}

.recognition-notice-card span,
.recognition-notice-card small {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.recognition-notice-card h3 {
  margin: 12px 0 10px;
  font-size: 21px;
  line-height: 1.18;
}

.recognition-notice-card p {
  color: var(--muted);
  line-height: 1.55;
}

.method-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.1fr);
  gap: 44px;
  align-items: start;
  border-top: 1px solid var(--line);
}

.method-section h2,
.source-map h2,
.taxonomy-section h2,
.faq-section h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.operating-structure {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  border-top: 1px solid var(--line);
}

.operating-structure h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.operating-structure > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.structure-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

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

.structure-grid span {
  color: var(--accent);
  font-weight: 850;
}

.structure-grid h3 {
  margin: 10px 0;
  font-size: 24px;
}

.structure-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.method-section > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.knowledge-centre {
  border-top: 1px solid var(--line);
}

.knowledge-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.knowledge-card {
  position: relative;
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 22px;
  overflow: hidden;
  color: var(--white);
  background: var(--brand-dark);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.knowledge-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background: center / cover;
  transform: scale(1.01);
  transition: transform 240ms ease;
}

.knowledge-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 47, 66, 0.08), rgba(8, 47, 66, 0.88));
}

.knowledge-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.knowledge-card:hover::before {
  transform: scale(1.06);
}

.knowledge-card span {
  color: #ffd597;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.knowledge-card h3 {
  margin: 12px 0 0;
  font-size: 23px;
  line-height: 1.14;
}

.knowledge-dredging::before {
  background-image: url("assets/marine/coastal-works.jpg");
}

.knowledge-contracts::before {
  background-image: url("assets/marine/port-contracts.jpg");
}

.knowledge-performance::before {
  background-image: url("assets/marine/hero-terminal.jpg");
}

.knowledge-standards::before {
  background-image: url("assets/marine/terminal-design.jpg");
}

.source-map {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.source-map > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.source-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--line);
}

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

.source-grid h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.source-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.method-steps {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.method-steps li {
  min-height: 210px;
  padding: 24px;
  background: var(--white);
}

.method-steps span {
  color: var(--accent);
  font-weight: 850;
}

.method-steps h3 {
  margin: 10px 0;
  font-size: 24px;
}

.method-steps p {
  color: var(--muted);
  line-height: 1.55;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 0.9fr);
  gap: 46px;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 22px;
}

.section-heading.stacked {
  display: block;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1.1;
}

.section-heading a,
.report-card a {
  color: var(--brand);
  font-weight: 800;
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 14px;
}

.article-card,
.leader-card,
.story-card {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 2px 8px rgba(23, 33, 43, 0.06);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.article-card:hover,
.leader-card:hover,
.story-card:hover,
.report-card:hover,
.directory-card:hover,
.event-card:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 91, 120, 0.34);
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.11);
}

.article-card:has(img.award-image) {
  border-color: rgba(184, 100, 42, 0.45);
  box-shadow: 0 16px 34px rgba(23, 33, 43, 0.13);
}

.article-card:has(img.award-image) .tag {
  color: #9c551f;
}

.article-card:first-child {
  grid-row: span 2;
}

.article-card img,
.leader-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border-top: 4px solid var(--brand);
}

.article-card img.award-image {
  object-fit: cover;
  background: var(--brand-dark);
  padding: 0;
}

.article-card:first-child img {
  aspect-ratio: 1.06;
}

.card-body {
  padding: 14px 16px 16px;
}

.article-card h3,
.leader-card h3,
.story-card h3,
.report-card h3,
.event-card h3,
.membership-tiers h3 {
  margin: 8px 0;
  font-size: 19px;
  line-height: 1.24;
}

.article-card:first-child h3 {
  font-size: 23px;
}

.date {
  color: #7b858e;
  font-size: 14px;
}

.leader-list {
  display: grid;
  gap: 14px;
}

.market-board {
  border-top: 1px solid var(--line);
}

.market-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line);
}

.market-strip article {
  padding: 24px;
  background: #f7fafb;
}

.market-strip span,
.market-strip small {
  color: var(--muted);
}

.market-strip strong {
  display: block;
  margin: 10px 0 6px;
  color: var(--green);
  font-size: 34px;
}

.coverage-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
}

.coverage-band article {
  padding: 28px;
}

.coverage-band a {
  position: relative;
  display: block;
  min-height: 260px;
  padding: 28px;
  color: var(--white);
  text-decoration: none;
  overflow: hidden;
  isolation: isolate;
  transition: transform 180ms ease;
}

.coverage-band a::before,
.coverage-band a::after {
  content: "";
  position: absolute;
  inset: 0;
}

.coverage-band a::before {
  z-index: -2;
  background: center / cover;
  transition: transform 240ms ease;
}

.coverage-band a::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(8, 47, 66, 0.08), rgba(8, 47, 66, 0.88));
}

.coverage-band a:hover {
  transform: translateY(-3px);
}

.coverage-band a:hover::before {
  transform: scale(1.05);
}

.coverage-band a[href="sectors.html"]::before {
  background-image: url("assets/marine/waterfront-concession.jpg");
}

.coverage-band a#contracts::before {
  background-image: url("assets/marine/construction-risk.jpg");
}

.coverage-band a#delivery::before {
  background-image: url("assets/marine/specialist-supply.jpg");
}

.coverage-band a .tag {
  color: #ffd597;
}

.coverage-band a p {
  color: rgba(255, 255, 255, 0.82);
}

.regions-section {
  border-top: 1px solid var(--line);
}

.region-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.region-card {
  display: block;
  min-height: 190px;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease;
}

.region-card:hover {
  transform: translateY(-2px);
  border-color: rgba(11, 91, 120, 0.35);
}

.region-card span {
  color: var(--green);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.region-card h3 {
  margin: 12px 0 8px;
  font-size: 23px;
}

.region-card p {
  color: var(--muted);
  line-height: 1.55;
}

.directory-section {
  border-top: 1px solid var(--line);
}

.directory-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.directory-card {
  min-height: 210px;
  padding: 22px;
  border: 1px solid var(--line);
}

.directory-card h3 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.16;
}

.member-products {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  border-top: 1px solid var(--line);
}

.member-products h2 {
  margin: 0;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.08;
}

.product-table {
  border: 1px solid var(--line);
  overflow-x: auto;
}

.product-row {
  display: grid;
  grid-template-columns: 0.8fr 0.5fr 1.2fr;
  min-width: 720px;
  border-top: 1px solid var(--line);
}

.product-row:first-child {
  border-top: 0;
}

.product-row span {
  padding: 14px;
}

.product-head {
  background: var(--brand-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.taxonomy-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  border-top: 1px solid var(--line);
  background: var(--paper);
}

.taxonomy-section > div > p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.58;
}

.taxonomy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.taxonomy-grid article {
  min-height: 150px;
  padding: 22px;
  background: var(--white);
}

.taxonomy-grid p {
  margin: 10px 0 0;
  color: var(--muted);
  line-height: 1.55;
}

.content-band {
  border-top: 1px solid var(--line);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: flex-end;
}

.filter {
  min-height: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--brand-dark);
  padding: 0 13px;
  font-weight: 700;
  cursor: pointer;
}

.filter.active {
  border-color: var(--brand);
  background: var(--brand);
  color: var(--white);
}

.story-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.story-card {
  padding: 18px;
}

.empty-state {
  grid-column: 1 / -1;
  color: var(--muted);
}

.project-section {
  align-items: start;
  border-top: 1px solid var(--line);
}

.project-table {
  border: 1px solid var(--line);
  overflow-x: auto;
}

.tracker-controls {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(160px, 220px) minmax(160px, 220px);
  gap: 10px;
  margin-bottom: 14px;
}

.tracker-summary {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
}

.tracker-summary strong {
  color: var(--brand-dark);
  font-size: 22px;
}

.tracker-controls input,
.tracker-controls select {
  min-height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  padding: 0 12px;
  outline: 0;
}

.project-row {
  display: grid;
  grid-template-columns: 1.5fr 0.8fr 1fr 0.9fr 0.8fr;
  min-width: 820px;
  border-top: 1px solid var(--line);
}

.project-row:first-child {
  border-top: 0;
}

.project-row span {
  padding: 13px 14px;
}

.project-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.project-head {
  background: var(--brand-dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.confidence {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--mist);
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 850;
}

.confidence.confirmed {
  background: #e5f2ee;
  color: #176354;
}

.confidence.reported {
  background: #fff2df;
  color: #8b4c16;
}

.confidence.watching {
  background: #eef1f5;
  color: #4c5965;
}

.project-empty {
  min-width: 820px;
  padding: 18px;
  color: var(--muted);
}

.sector-card {
  padding: 28px;
  background: var(--paper);
  border-left: 5px solid var(--accent);
}

.sector-card h2 {
  margin: 0 0 14px;
  font-size: 30px;
  line-height: 1.08;
}

.sector-card ul {
  display: grid;
  gap: 10px;
  margin: 20px 0 0;
  padding-left: 20px;
  color: var(--brand-dark);
  font-weight: 700;
}

.reports-section {
  border-top: 1px solid var(--line);
}

.report-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.report-card {
  padding: 24px;
  border: 1px solid var(--line);
}

.events-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.85fr) minmax(0, 1.15fr);
  gap: 44px;
  background: var(--mist);
}

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

.event-card {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.event-card span {
  color: var(--accent);
  font-weight: 850;
}

.event-card p {
  grid-column: 2;
  margin: -4px 0 0;
}

.membership {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1fr);
  gap: 38px;
  align-items: start;
  background: #102f3d;
  color: var(--white);
}

.membership p {
  color: rgba(255, 255, 255, 0.76);
}

.membership-tiers {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.24);
}

.membership-tiers article {
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.membership-tiers h3 {
  color: var(--white);
}

.membership-tiers p {
  margin-bottom: 0;
}

.signup {
  grid-column: 1 / -1;
}

.signup label {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.signup div {
  display: flex;
  gap: 10px;
  max-width: 700px;
}

.signup input {
  min-width: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  padding: 13px 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  outline: 0;
}

.signup input::placeholder {
  color: rgba(255, 255, 255, 0.58);
}

.form-note {
  min-height: 24px;
  margin: 12px 0 0;
  color: #ffd7a7;
  font-weight: 700;
}

.signup-link {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.noscript-note {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  padding: 12px 18px;
  background: var(--brand-dark);
  color: var(--white);
  text-align: center;
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.7fr) minmax(0, 1.3fr);
  gap: 42px;
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 1px;
  background: var(--line);
}

.faq-list article {
  padding: 24px;
  background: var(--white);
}

.faq-list h3 {
  margin: 0 0 8px;
  font-size: 21px;
}

.faq-list p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.governance-contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: var(--line);
}

.governance-contact article {
  padding: 34px;
}

.governance-contact .button {
  margin-top: 12px;
}

.confidence-scale {
  display: grid;
  gap: 8px;
  margin-top: 18px;
}

.confidence-scale span {
  display: block;
  padding: 10px 12px;
  background: var(--paper);
  border-left: 3px solid var(--accent);
  color: var(--muted);
}

.confidence-scale strong {
  color: var(--brand-dark);
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  justify-content: space-between;
  gap: 24px;
  padding: 30px max(24px, calc((100vw - 1240px) / 2));
  color: var(--muted);
  border-top: 1px solid var(--line);
}

.footer-brand {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.site-footer strong {
  color: var(--brand);
}

.footer-nav {
  display: grid;
  grid-template-columns: repeat(4, minmax(120px, 1fr));
  gap: 20px;
}

.footer-nav nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.footer-nav nav strong {
  color: var(--brand-dark);
  font-size: 13px;
  text-transform: uppercase;
}

.footer-nav a {
  color: var(--muted);
  font-size: 14px;
}

.footer-nav a:hover {
  color: var(--brand);
}

.policy-page {
  max-width: 820px;
  margin: 0 auto;
  padding: 64px 24px;
}

.policy-brand {
  display: inline-block;
  margin-bottom: 36px;
  color: var(--brand);
  font-size: 42px;
  font-weight: 850;
}

.policy-page h1 {
  margin: 0 0 18px;
  font-size: clamp(38px, 6vw, 64px);
  line-height: 1;
}

.policy-page h2 {
  margin: 34px 0 8px;
  font-size: 24px;
}

.policy-page p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.policy-page a:not(.policy-brand) {
  color: var(--brand);
  font-weight: 800;
}

.detail-page {
  max-width: 1120px;
  margin: 0 auto;
  padding: 58px 24px;
}

.detail-brand {
  margin-bottom: 42px;
}

.secondary-site-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: -20px 0 38px;
  padding: 10px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.secondary-site-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 11px;
  background: var(--white);
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
}

.secondary-site-nav a:hover,
.secondary-site-nav a:focus,
.secondary-site-nav a[aria-current="page"] {
  color: var(--accent);
}

.secondary-site-nav a[aria-current="page"] {
  background: var(--brand-dark);
  color: var(--white);
}

.detail-page h1 {
  max-width: 920px;
  margin: 0 0 18px;
  font-size: clamp(40px, 6vw, 70px);
  line-height: 0.98;
}

.detail-page > p {
  max-width: 820px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.58;
}

.award-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1px;
  margin: 38px 0;
  background: var(--line);
}

.award-page-hero > div {
  padding: 34px;
  background: var(--brand-dark);
  color: var(--white);
}

.award-page-hero h2 {
  margin: 0;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.02;
}

.award-page-hero p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 18px;
  line-height: 1.58;
}

.award-page-hero img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  background: var(--paper);
}

.detail-article-image {
  display: block;
  width: 100%;
  max-height: 560px;
  margin: 30px 0;
  object-fit: cover;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

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

.award-statement div {
  min-height: 150px;
  padding: 22px;
  background: var(--brand-dark);
  color: var(--white);
}

.award-statement span {
  display: block;
  margin-bottom: 14px;
  color: #ffd597;
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.award-statement strong {
  display: block;
  font-size: 24px;
  line-height: 1.16;
}

.award-recipient-logo {
  display: block;
  width: min(100%, 150px);
  height: auto;
  padding: 12px;
  background: var(--white);
  object-fit: contain;
}

.institutional-logo {
  display: block;
  width: min(280px, 60vw);
  height: auto;
  margin: 28px 0 34px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.detail-grid article,
.detail-cta {
  padding: 26px;
  background: var(--white);
}

.detail-grid h2,
.detail-cta h2 {
  margin: 0 0 10px;
  font-size: 25px;
  line-height: 1.12;
}

.detail-grid p,
.detail-cta p {
  color: var(--muted);
  line-height: 1.56;
}

.detail-cta {
  margin-top: 1px;
  border: 1px solid var(--line);
}

.detail-cta a:not(.button) {
  color: var(--brand);
  font-weight: 800;
}

.data-product-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.data-product-panel > div,
.field-dictionary {
  margin: 0;
  padding: 28px;
  background: var(--paper);
}

.data-product-panel h2 {
  margin: 0 0 12px;
  font-size: 32px;
  line-height: 1.08;
}

.data-product-panel p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.field-dictionary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.field-dictionary div {
  padding: 18px;
  background: var(--white);
}

.field-dictionary dt {
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-weight: 850;
}

.field-dictionary dd {
  margin: 0;
  color: var(--muted);
  line-height: 1.5;
}

.record-lifecycle {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 1px;
  background: var(--line);
}

.record-lifecycle article {
  min-height: 166px;
  padding: 20px;
  background: var(--white);
}

.record-lifecycle span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-bottom: 16px;
  background: var(--brand-dark);
  color: var(--white);
  font-size: 13px;
  font-weight: 850;
}

.record-lifecycle strong {
  display: block;
  color: var(--brand-dark);
  font-size: 19px;
}

.record-lifecycle p {
  margin: 8px 0 0;
  color: var(--muted);
  line-height: 1.5;
}

.recognition-process {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1.1fr);
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.recognition-process > div {
  padding: 30px;
  background: var(--brand-dark);
  color: var(--white);
}

.recognition-process h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(32px, 4.5vw, 52px);
  line-height: 1.03;
}

.recognition-process p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
}

.recognition-process .eyebrow {
  color: #8ed9e1;
}

.recognition-process ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.recognition-process li {
  min-height: 180px;
  padding: 24px;
  background: var(--white);
}

.recognition-process strong {
  display: block;
  margin-bottom: 12px;
  color: var(--brand-dark);
  font-size: 24px;
}

.recognition-process span {
  color: var(--muted);
  line-height: 1.55;
}

.trust-architecture {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) repeat(3, minmax(0, 0.75fr));
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
}

.trust-architecture > div,
.trust-architecture article {
  padding: 28px;
}

.trust-architecture > div {
  background: var(--brand-dark);
  color: var(--white);
}

.trust-architecture article {
  background: var(--white);
}

.trust-architecture h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.trust-architecture h3 {
  margin: 0 0 12px;
  color: var(--brand-dark);
  font-size: 23px;
}

.trust-architecture p {
  margin: 0;
  color: var(--muted);
  line-height: 1.56;
}

.trust-architecture > div p {
  color: rgba(255, 255, 255, 0.74);
}

.trust-architecture .eyebrow {
  color: #8ed9e1;
}

.trust-architecture span {
  display: inline-block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.correction-policy {
  margin-top: 1px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.correction-policy h2 {
  margin: 0 0 20px;
  font-size: 30px;
}

.correction-policy ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  background: var(--line);
}

.correction-policy li {
  min-height: 160px;
  padding: 20px;
  background: var(--white);
}

.correction-policy strong {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-dark);
}

.correction-policy span {
  color: var(--muted);
  line-height: 1.5;
}

.detail-filter-panel {
  display: grid;
  grid-template-columns: minmax(240px, 1.4fr) repeat(3, minmax(150px, 0.8fr));
  gap: 10px;
  margin-top: 24px;
  padding: 18px;
  background: var(--brand-dark);
}

.detail-filter-panel label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.detail-filter-panel input,
.detail-filter-panel select {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  padding: 12px 13px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  letter-spacing: 0;
  text-transform: none;
}

.detail-filter-panel option {
  color: var(--ink);
}

.awards-filter-panel {
  margin-top: 18px;
}

.detail-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
  color: var(--brand);
  font-weight: 800;
}

.detail-count {
  display: inline-block;
  margin-top: 8px;
  padding: 8px 12px;
  background: var(--mist);
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 850;
  text-transform: uppercase;
}

.detail-search {
  max-width: 820px;
  margin: 28px 0 14px;
}

.detail-search label {
  display: block;
  margin-bottom: 8px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.detail-search div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
}

.detail-search input {
  min-width: 0;
  border: 1px solid var(--line);
  padding: 14px 16px;
  font: inherit;
}

.search-discovery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin: 32px 0 0;
  background: var(--line);
}

.search-discovery a {
  min-height: 128px;
  padding: 22px;
  background: var(--paper);
}

.search-discovery span {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.search-discovery strong {
  color: var(--brand-dark);
  font-size: 24px;
}

.search-tools {
  display: grid;
  grid-template-columns: minmax(220px, 340px);
  gap: 12px;
  margin: 14px 0 0;
}

.search-tools label {
  display: grid;
  gap: 8px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.search-tools select {
  border: 1px solid var(--line);
  padding: 13px 14px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  text-transform: none;
}

.search-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}

.search-summary button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  padding: 8px 10px;
  background: var(--white);
  color: var(--brand-dark);
  cursor: pointer;
}

.search-summary strong {
  color: var(--accent);
}

.search-summary span {
  font-weight: 750;
}

.detail-section-title {
  margin: 44px 0 16px;
  font-size: 30px;
}

.detail-section-copy {
  max-width: 720px;
  margin: -6px 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.detail-records {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.detail-record {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  background: var(--white);
}

.detail-record.recognized-record {
  border-color: rgba(184, 100, 42, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 246, 232, 0.9), rgba(255, 255, 255, 1) 42%),
    var(--white);
}

.record-logo {
  display: block;
  width: 76px;
  height: auto;
  margin: 14px 0 6px;
  padding: 8px;
  background: var(--white);
  border: 1px solid var(--line);
}

.detail-record span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.detail-record h2 {
  margin: 10px 0 8px;
  font-size: 22px;
  line-height: 1.16;
}

.detail-record p,
.detail-record small {
  color: var(--muted);
  line-height: 1.55;
}

.detail-record .text-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--brand);
  font-weight: 800;
}

.membership-use-cases {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  background: var(--line);
}

.membership-use-case {
  min-height: 260px;
  padding: 26px;
  background: var(--white);
}

.membership-use-case span {
  display: block;
  margin-bottom: 18px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.membership-use-case h2 {
  margin: 0 0 14px;
  color: var(--brand-dark);
  font-size: 24px;
  line-height: 1.15;
}

.membership-use-case p,
.membership-use-case small {
  color: var(--muted);
  line-height: 1.55;
}

.membership-use-case small {
  display: block;
  margin-top: 18px;
  font-weight: 800;
}

.report-product-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: 1px;
  margin: 36px 0 1px;
  background: var(--line);
}

.report-product-hero > div {
  padding: 30px;
  background: var(--brand-dark);
  color: var(--white);
}

.report-product-hero h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.04;
}

.report-product-hero p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 17px;
  line-height: 1.58;
}

.report-product-hero .eyebrow {
  color: #8ed9e1;
}

.report-indicators {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  align-content: stretch;
  background: rgba(255, 255, 255, 0.14) !important;
}

.report-indicators span {
  display: flex;
  align-items: flex-end;
  min-height: 118px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-weight: 850;
  line-height: 1.2;
}

.report-outline {
  margin-top: 28px;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.report-outline h2 {
  margin: 0 0 18px;
  font-size: 30px;
}

.report-outline ol {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: report-step;
  background: var(--line);
}

.report-outline li {
  counter-increment: report-step;
  min-height: 126px;
  padding: 20px;
  background: var(--white);
  color: var(--brand-dark);
  font-weight: 750;
  line-height: 1.45;
}

.report-outline li::before {
  content: counter(report-step, decimal-leading-zero);
  display: block;
  margin-bottom: 16px;
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.08em;
}

.report-figures {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(0, 1.22fr);
  gap: 1px;
  margin-top: 28px;
  background: var(--line);
}

.report-figures > div {
  padding: 30px;
}

.report-figures > div:first-child {
  background: var(--brand-dark);
  color: var(--white);
}

.report-figures h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
}

.report-figures p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.58;
}

.report-figures .eyebrow {
  color: #8ed9e1;
}

.report-figure-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  padding: 0 !important;
  background: var(--line);
}

.report-figure-grid article {
  min-height: 248px;
  padding: 24px;
  background: var(--white);
}

.report-figure-grid article > div:first-child {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 16px;
}

.report-figure-grid span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.report-figure-grid strong {
  color: var(--brand-dark);
  font-size: 46px;
  line-height: 0.9;
}

.report-meter {
  height: 10px;
  margin: 28px 0 18px;
  background: var(--mist);
  overflow: hidden;
}

.report-meter span {
  display: block;
  width: var(--value);
  height: 100%;
  background: var(--accent);
}

.report-figure-grid p {
  color: var(--muted);
  line-height: 1.55;
}

.knowledge-page .detail-brand,
.knowledge-topic-page .detail-brand {
  margin-bottom: 34px;
}

.knowledge-topic-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 38px 0;
}

.knowledge-topic {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 24px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.knowledge-topic:hover {
  transform: translateY(-3px);
  border-color: rgba(11, 91, 120, 0.36);
  box-shadow: var(--shadow);
}

.knowledge-topic span {
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.knowledge-topic h2 {
  margin: 12px 0 10px;
  font-size: 26px;
  line-height: 1.08;
}

.knowledge-topic p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.topic-hero {
  min-height: 360px;
  display: grid;
  align-items: end;
  margin: 34px 0 0;
  padding: 32px;
  color: var(--white);
  background:
    linear-gradient(180deg, rgba(8, 47, 66, 0.12), rgba(8, 47, 66, 0.88)),
    center / cover;
}

.topic-hero h2 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.04;
}

.topic-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 19px;
  line-height: 1.55;
}

.topic-dredging {
  background-image: linear-gradient(180deg, rgba(8, 47, 66, 0.12), rgba(8, 47, 66, 0.88)), url("assets/marine/coastal-works.jpg");
}

.topic-ports {
  background-image: linear-gradient(180deg, rgba(8, 47, 66, 0.12), rgba(8, 47, 66, 0.88)), url("assets/marine/port-contracts.jpg");
}

.topic-coastal {
  background-image: linear-gradient(180deg, rgba(8, 47, 66, 0.12), rgba(8, 47, 66, 0.88)), url("assets/marine/waterfront-concession.jpg");
}

.topic-utilities {
  background-image: linear-gradient(180deg, rgba(8, 47, 66, 0.12), rgba(8, 47, 66, 0.88)), url("assets/marine/specialist-supply.jpg");
}

.topic-contracts {
  background-image: linear-gradient(180deg, rgba(8, 47, 66, 0.12), rgba(8, 47, 66, 0.88)), url("assets/marine/construction-risk.jpg");
}

.topic-evidence {
  background-image: linear-gradient(180deg, rgba(8, 47, 66, 0.12), rgba(8, 47, 66, 0.88)), url("assets/marine/hero-terminal.jpg");
}

.faq-section .text-link {
  display: inline-block;
  margin-top: 18px;
  color: var(--brand);
  font-weight: 800;
}

@media (max-width: 1100px) {
  .topbar,
  .hero,
  .desk-panel,
  .award-page-hero,
  .about-band,
  .performance-strip,
  .recognition-news-grid,
  .method-section,
  .source-map,
  .section-grid,
  .events-section,
  .member-products,
  .taxonomy-section,
  .membership,
  .faq-section,
  .operating-structure,
  .governance-contact {
    grid-template-columns: 1fr;
  }

  .actions {
    justify-content: flex-start;
  }

  .main-nav {
    display: grid;
    grid-template-columns: repeat(5, minmax(150px, 1fr));
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .nav-group {
    min-width: 150px;
  }

  .nav-group-links {
    position: static;
    display: none;
    min-width: 0;
    border: 0;
    border-top: 1px solid var(--line);
    box-shadow: none;
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }

  .nav-group:hover .nav-group-links,
  .nav-group:focus-within .nav-group-links {
    display: grid;
  }

  .product-grid,
  .desk-panel,
  .knowledge-grid,
  .story-list,
  .stats-strip,
  .market-strip,
  .method-steps,
  .source-grid,
  .region-grid,
  .directory-grid,
  .structure-grid,
  .taxonomy-grid,
  .report-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 760px) {
  .utility-bar,
  .topbar {
    padding-left: 18px;
    padding-right: 18px;
  }

  .utility-bar,
  .utility-bar nav,
  .actions,
  .site-footer {
    align-items: flex-start;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .brand {
    gap: 12px;
  }

  .brand-mark {
    width: 62px;
    height: 62px;
  }

  .brand-wordmark strong {
    font-size: 31px;
  }

  .brand-wordmark span {
    max-width: 210px;
    font-size: 10px;
    letter-spacing: 0.12em;
  }

  .hero {
    min-height: 680px;
    padding: 58px 18px 36px;
  }

  .hero h1 {
    font-size: 40px;
  }

  .stats-strip,
  .product-grid,
  .method-steps,
  .source-grid,
  .feature-grid,
  .story-list,
  .market-strip,
  .coverage-band,
  .region-grid,
  .directory-grid,
  .structure-grid,
  .taxonomy-grid,
  .report-grid,
  .membership-tiers {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    grid-template-columns: 1fr;
  }

  .about-band,
  .product-grid,
  .method-section,
  .source-map,
  .section-grid,
  .market-board,
  .content-band,
  .coverage-band,
  .regions-section,
  .directory-section,
  .member-products,
  .taxonomy-section,
  .reports-section,
  .events-section,
  .membership,
  .faq-section,
  .operating-structure,
  .governance-contact {
    padding: 34px 18px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }

  .filters {
    justify-content: flex-start;
  }

  .event-card {
    grid-template-columns: 1fr;
  }

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

  .data-product-panel,
  .field-dictionary,
  .record-lifecycle,
  .recognition-process,
  .recognition-process ol,
  .trust-architecture,
  .correction-policy ol,
  .detail-filter-panel,
  .report-product-hero,
  .report-indicators,
  .report-outline ol,
  .report-figures,
  .report-figure-grid {
    grid-template-columns: 1fr;
  }

  .award-statement {
    grid-template-columns: 1fr;
  }

  .detail-records {
    grid-template-columns: 1fr;
  }

  .membership-use-cases {
    grid-template-columns: 1fr;
  }

  .knowledge-topic-grid {
    grid-template-columns: 1fr;
  }

  .event-card p {
    grid-column: auto;
  }

  .signup div {
    flex-direction: column;
  }

  .tracker-controls {
    grid-template-columns: 1fr;
  }

  .detail-search div {
    grid-template-columns: 1fr;
  }

  .search-discovery {
    grid-template-columns: 1fr;
  }
}
