:root {
  color-scheme: light;
  --ink: #16202a;
  --muted: #5b6874;
  --line: #d9e0e7;
  --paper: #f7f9fb;
  --white: #ffffff;
  --navy: #15273a;
  --steel: #2e5d73;
  --gold: #bd8b37;
  --green: #496b57;
  --red: #9f3d36;
  --shadow: 0 24px 70px rgba(15, 29, 42, 0.16);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 4vw, 54px);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 290px;
}

.brand-mark {
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
}

.brand-logo {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 8px 16px rgba(21, 39, 58, 0.14));
}

.logo-field {
  fill: var(--navy);
  stroke: var(--gold);
  stroke-width: 2.6;
}

.logo-line,
.logo-peak {
  fill: none;
  stroke: #d8ad62;
  stroke-linecap: square;
  stroke-linejoin: miter;
}

.logo-line {
  stroke-width: 2.2;
}

.logo-peak {
  stroke-width: 2.8;
}

.brand-logo text {
  fill: #fff;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 15px;
  letter-spacing: 0;
}

.brand small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 12px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  color: #273748;
  font-size: 14px;
  font-weight: 700;
}

.nav-links a {
  padding: 10px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  border-color: var(--gold);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(14, 24, 34, 0.92) 0%, rgba(14, 24, 34, 0.72) 42%, rgba(14, 24, 34, 0.22) 100%),
    linear-gradient(0deg, rgba(14, 24, 34, 0.5), rgba(14, 24, 34, 0.02) 48%);
}

.hero-content {
  position: relative;
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 104px 0 58px;
  color: #fff;
}

.kicker,
.section-label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 720px;
  margin-bottom: 22px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 18px;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 20px;
  line-height: 1.55;
}

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

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.button.primary {
  color: #101820;
  background: var(--gold);
}

.button.secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: rgba(255, 255, 255, 0.08);
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(130px, 1fr));
  width: min(720px, 100%);
  margin: 74px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.24);
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-metrics div {
  padding: 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.24);
}

.hero-metrics div:last-child {
  border-right: 0;
}

.hero-metrics dt {
  font-size: 26px;
  font-weight: 800;
}

.hero-metrics dd {
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.notice-band {
  padding: 14px clamp(18px, 4vw, 54px);
  color: #1d2a36;
  background: #eef2f5;
  border-block: 1px solid var(--line);
  font-size: 14px;
  line-height: 1.45;
}

.page-hero {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 96px 0 54px;
}

.page-hero h1 {
  max-width: 980px;
  font-size: clamp(44px, 6vw, 78px);
}

.page-hero p:not(.section-label) {
  max-width: 860px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
}

.section {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.8fr) minmax(300px, 1.2fr);
  gap: clamp(32px, 6vw, 78px);
  align-items: start;
}

.split > div:first-child p:not(.section-label),
.request-copy p:not(.section-label) {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.scope-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.scope-grid article,
.finding-card,
.intake-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(26, 43, 60, 0.06);
}

.scope-grid article {
  padding: 24px;
  min-height: 210px;
}

.scope-grid span {
  display: block;
  margin-bottom: 22px;
  color: var(--steel);
  font-weight: 800;
}

.scope-grid p,
.finding-card p,
.timeline span {
  color: var(--muted);
  line-height: 1.55;
}

.method {
  width: 100%;
  padding-inline: max(18px, calc((100% - 1180px) / 2));
  background: #fff;
  border-block: 1px solid var(--line);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.wide-heading {
  max-width: 100%;
}

.wide-heading p:not(.section-label) {
  max-width: 940px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

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

.timeline li {
  min-height: 250px;
  padding: 28px;
  background: #fff;
}

.timeline li::before {
  content: counter(list-item, decimal-leading-zero);
  display: block;
  margin-bottom: 32px;
  color: var(--gold);
  font-weight: 800;
}

.timeline strong,
.timeline span {
  display: block;
}

.timeline strong {
  margin-bottom: 12px;
}

.standards-section {
  padding-bottom: 22px;
}

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

.rubric-grid article,
.profile-grid article,
.resource-grid article {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(26, 43, 60, 0.06);
}

.rubric-grid article {
  min-height: 260px;
  padding: 24px;
}

.rubric-grid strong {
  display: block;
  margin-bottom: 28px;
  color: var(--gold);
  font-size: 30px;
  line-height: 1;
}

.rubric-grid p,
.profile-grid p,
.resource-grid p,
.editorial-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filter {
  min-height: 40px;
  padding: 8px 14px;
  color: var(--navy);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 800;
  cursor: pointer;
}

.filter.active {
  color: #fff;
  background: var(--navy);
  border-color: var(--navy);
}

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

.finding-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 22px;
}

.finding-card.is-hidden {
  display: none;
}

.status {
  width: fit-content;
  margin-bottom: 28px;
  padding: 6px 10px;
  border-radius: 4px;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.status.critical {
  background: var(--red);
}

.status.high {
  background: var(--steel);
}

.status.moderate {
  background: var(--green);
}

.finding-card span {
  display: block;
  margin-top: auto;
  padding-top: 18px;
  color: #263747;
  font-size: 13px;
  font-weight: 800;
  border-top: 1px solid var(--line);
}

.report-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(300px, 1fr);
  gap: 44px;
  width: 100%;
  padding-inline: max(18px, calc((100% - 1180px) / 2));
  color: #fff;
  background: var(--navy);
}

.report-band ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.report-band li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 18px;
}

.awards-section > .section-heading {
  width: 100%;
  max-width: none;
}

.awards-section > .section-heading h2 {
  max-width: 100%;
}

.awards-section > .section-heading p:not(.section-label) {
  width: 100%;
  max-width: none;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
  text-align: justify;
  text-align-last: left;
}

.award-card {
  position: relative;
  display: grid;
  grid-template-columns: 170px minmax(320px, 1fr) minmax(280px, 0.72fr);
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
  padding: clamp(28px, 5vw, 54px);
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(21, 39, 58, 0.98), rgba(27, 61, 76, 0.94)),
    var(--navy);
  border: 1px solid rgba(216, 173, 98, 0.48);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.award-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  pointer-events: none;
  border: 1px solid rgba(216, 173, 98, 0.32);
}

.award-seal {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
}

.award-seal svg {
  width: min(160px, 100%);
  height: auto;
  filter: drop-shadow(0 18px 32px rgba(0, 0, 0, 0.26));
}

.seal-outer {
  fill: #c99338;
  stroke: #f0d087;
  stroke-width: 4;
}

.seal-inner {
  fill: #142536;
  stroke: #f7d88e;
  stroke-width: 3;
}

.seal-ribbon {
  fill: #a83f35;
  stroke: #f0d087;
  stroke-linejoin: round;
  stroke-width: 3;
}

.seal-star {
  fill: #f4d681;
  stroke: #fff1bb;
  stroke-linejoin: round;
  stroke-width: 2;
}

.award-content,
.award-criteria {
  position: relative;
  z-index: 1;
}

.award-year {
  margin-bottom: 12px;
  color: #d8ad62;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.award-content h3 {
  max-width: 560px;
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(32px, 4.2vw, 58px);
  line-height: 1;
}

.award-content p:not(.award-year) {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
  line-height: 1.6;
}

.award-recipient {
  margin: 30px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.award-recipient dt {
  color: #d8ad62;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.award-recipient dd {
  min-height: 48px;
  margin: 10px 0 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700;
  line-height: 1.15;
}

.award-signature {
  display: grid;
  gap: 4px;
  max-width: 360px;
  margin-top: 26px;
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.76);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 14px;
}

.signature-line {
  color: #ffffff;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-style: italic;
  line-height: 1.1;
}

.award-criteria {
  padding: 24px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
}

.award-criteria span {
  display: block;
  margin-bottom: 14px;
  color: #d8ad62;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.award-criteria ul {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.award-criteria li {
  padding-bottom: 12px;
  color: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  line-height: 1.45;
}

.award-criteria li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.award-details {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.award-details article,
.editorial-panel {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(26, 43, 60, 0.06);
}

.award-details article {
  padding: 28px;
}

.compact-list {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.compact-list li {
  padding-bottom: 14px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
  line-height: 1.55;
}

.compact-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.compact-list strong {
  color: var(--ink);
}

.profiles-section {
  padding-top: 22px;
}

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

.profile-grid article {
  padding: 24px;
}

.profile-grid article > span,
.resource-grid article > span {
  display: block;
  margin-bottom: 22px;
  color: var(--steel);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-grid dl {
  display: grid;
  gap: 14px;
  margin: 22px 0 0;
}

.profile-grid dl div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.profile-grid dt {
  margin-bottom: 4px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

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

.editorial-section {
  width: 100%;
  padding-inline: max(18px, calc((100% - 1180px) / 2));
  background: #fff;
  border-block: 1px solid var(--line);
}

.editorial-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1fr);
  gap: clamp(28px, 5vw, 70px);
  padding: clamp(28px, 5vw, 44px);
}

.editorial-panel ul {
  display: grid;
  gap: 14px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.editorial-panel li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: #263747;
  font-weight: 800;
}

.editorial-panel li:last-child {
  border-bottom: 0;
}

.resource-section {
  padding-top: 72px;
}

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

.resource-grid article {
  min-height: 240px;
  padding: 24px;
}

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

.policy-grid article {
  min-height: 250px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 8px 30px rgba(26, 43, 60, 0.06);
}

.policy-grid p {
  color: var(--muted);
  line-height: 1.6;
}

.request-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(30px, 5vw, 70px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin-top: 26px;
}

.contact-list span {
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: #263747;
  font-weight: 800;
}

.intake-form {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: #273747;
  font-size: 13px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fbfcfd;
  border: 1px solid #c9d4dc;
  border-radius: 4px;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus,
button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(189, 139, 55, 0.38);
  outline-offset: 2px;
}

.form-button {
  width: 100%;
}

.form-status {
  min-height: 22px;
  margin: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 800;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  padding: 28px clamp(18px, 4vw, 54px);
  color: rgba(255, 255, 255, 0.78);
  background: #0f1924;
  font-size: 13px;
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav-links {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 720px;
  }

  .split,
  .award-card,
  .award-details,
  .editorial-panel,
  .report-band,
  .request-section {
    grid-template-columns: 1fr;
  }

  .timeline,
  .finding-grid,
  .rubric-grid,
  .profile-grid,
  .resource-grid,
  .policy-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .site-header {
    position: static;
    padding: 12px 16px;
  }

  .brand {
    gap: 10px;
    min-width: 0;
  }

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

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 11px;
  }

  .nav-links {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px;
    overflow-x: visible;
  }

  .nav-links a {
    display: grid;
    min-height: 40px;
    place-items: center;
    padding: 8px;
    background: #eef2f5;
    border: 1px solid var(--line);
    border-radius: 4px;
    font-size: 13px;
    text-align: center;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    width: min(100% - 32px, 1180px);
    padding: 72px 0 40px;
  }

  h1 {
    max-width: 360px;
    font-size: clamp(40px, 12vw, 52px);
    line-height: 1;
  }

  h2 {
    font-size: clamp(28px, 9vw, 38px);
  }

  .hero-copy {
    max-width: 360px;
    font-size: 17px;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .scope-grid,
  .timeline,
  .finding-grid,
  .rubric-grid,
  .profile-grid,
  .resource-grid,
  .policy-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 44px;
  }

  .hero-metrics div {
    padding: 16px 12px;
    border-right: 1px solid rgba(255, 255, 255, 0.24);
    border-bottom: 0;
  }

  .hero-metrics dt {
    font-size: 22px;
  }

  .hero-metrics dd {
    font-size: 11px;
    line-height: 1.25;
  }

  .hero-metrics div:last-child {
    border-right: 0;
  }

  .section {
    width: min(100% - 32px, 1180px);
    padding-block: 64px;
  }

  .page-hero {
    width: min(100% - 32px, 1180px);
    padding: 64px 0 36px;
  }

  .page-hero h1 {
    font-size: clamp(38px, 11vw, 52px);
  }

  .page-hero p:not(.section-label) {
    font-size: 17px;
  }

  .method,
  .report-band,
  .editorial-section {
    padding-inline: 16px;
  }

  .award-card {
    padding: 28px 22px;
  }

  .award-card::before {
    inset: 10px;
  }

  .award-seal {
    justify-content: start;
  }

  .award-seal svg {
    width: 112px;
  }

  .award-content h3 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .awards-section .section-heading p:not(.section-label) {
    text-align: left;
  }

  .scope-grid article,
  .rubric-grid article,
  .resource-grid article,
  .policy-grid article,
  .timeline li,
  .finding-card {
    min-height: auto;
  }

  .intake-form {
    padding: 20px;
  }
}
