:root {
  --wcsu-blue: #002856;
  --wcsu-orange: #ff4d00;
  --wcsu-navy: #051c2c;
  --wcsu-silver: #d9d8d6;
  --wcsu-international-blue: #003da6;
  --paper: #fffdf8;
  --soft: #f3f5f7;
  --ink: #102033;
  --muted: #5f6b77;
  --line: #dfe3e8;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

a {
  color: var(--wcsu-international-blue);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
}

a:hover,
a:focus {
  color: var(--wcsu-orange);
}

.skip-link {
  position: absolute;
  top: -48px;
  left: 16px;
  z-index: 50;
  padding: 10px 14px;
  color: #fff;
  background: var(--wcsu-navy);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.topbar {
  height: 7px;
  background: var(--wcsu-orange);
}

.brand-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 18px 24px;
}

.brand-logo {
  display: block;
  width: min(320px, 70vw);
  height: auto;
}

.brand-kicker {
  margin: 0;
  color: var(--wcsu-blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: right;
  text-transform: uppercase;
}

.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(0, 40, 86, 0.96), rgba(5, 28, 44, 0.98)),
    var(--wcsu-blue);
}

.hero::after {
  content: "";
  position: absolute;
  right: -90px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border: 34px solid rgba(255, 77, 0, 0.22);
  transform: rotate(10deg);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  gap: 42px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 68px 24px 58px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: var(--wcsu-silver);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 42px;
  height: 4px;
  background: var(--wcsu-orange);
}

.hero h1 {
  max-width: 840px;
  margin: 0;
  color: #fff;
  font-size: clamp(2.25rem, 6vw, 4.85rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-subtitle {
  max-width: 760px;
  margin: 22px 0 0;
  color: #f6f7f8;
  font-size: clamp(1.08rem, 2.2vw, 1.36rem);
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  font-size: 0.9rem;
  font-weight: 700;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  color: #fff;
  background: var(--wcsu-orange);
  border: 2px solid var(--wcsu-orange);
  font-weight: 800;
  text-decoration: none;
}

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

.button:hover,
.button:focus {
  color: #fff;
  background: #d64000;
  border-color: #d64000;
}

.button.secondary:hover,
.button.secondary:focus {
  color: var(--wcsu-blue);
  background: #fff;
  border-color: #fff;
}

.shield-mark {
  align-self: start;
  justify-self: end;
  width: 180px;
  max-width: 100%;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.35));
}

.stats-band {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: var(--max);
  margin: 0 auto;
  background: var(--line);
}

.stat {
  min-height: 124px;
  padding: 24px;
  background: #fff;
}

.stat strong {
  display: block;
  color: var(--wcsu-orange);
  font-size: clamp(1.9rem, 4vw, 2.7rem);
  line-height: 1;
}

.stat span {
  display: block;
  margin-top: 8px;
  color: var(--wcsu-navy);
  font-size: 0.98rem;
  font-weight: 700;
}

.page {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 40px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 46px 24px 76px;
}

.toc {
  position: sticky;
  top: 22px;
  align-self: start;
  padding: 18px;
  background: #fff;
  border-top: 5px solid var(--wcsu-orange);
  box-shadow: 0 18px 42px rgba(5, 28, 44, 0.08);
}

.toc h2 {
  margin: 0 0 12px;
  color: var(--wcsu-blue);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 8px 0;
  color: var(--wcsu-navy);
  border-top: 1px solid var(--line);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.toc a:hover,
.toc a:focus {
  color: var(--wcsu-orange);
}

.article {
  min-width: 0;
  background: #fff;
  box-shadow: 0 20px 56px rgba(5, 28, 44, 0.09);
}

.article-inner {
  padding: clamp(28px, 5vw, 62px);
}

.article h1 {
  display: none;
}

.article h2 {
  margin: 2.25em 0 0.75em;
  padding-top: 0.35em;
  color: var(--wcsu-blue);
  border-top: 1px solid var(--line);
  font-size: clamp(1.65rem, 3vw, 2.35rem);
  line-height: 1.12;
  letter-spacing: 0;
}

.article h2:first-of-type {
  margin-top: 0;
  border-top: 0;
}

.article p {
  margin: 0 0 1.15em;
  font-size: 1.06rem;
}

.article p:first-of-type {
  color: var(--wcsu-blue);
  font-weight: 800;
}

.article ul,
.article ol {
  margin: 0 0 1.3em 1.2em;
  padding: 0;
}

.article li {
  margin: 0.42em 0;
  padding-left: 0.25em;
}

.article strong {
  color: var(--wcsu-navy);
}

.article blockquote,
.callout {
  margin: 2em 0;
  padding: 22px 24px;
  color: var(--wcsu-navy);
  background: #fff7f3;
  border-left: 7px solid var(--wcsu-orange);
}

.article figure {
  margin: 2rem auto;
  padding: 18px;
  background: var(--paper);
  border: 1px solid var(--line);
}

.article figure img {
  display: block;
  width: min(420px, 100%);
  height: auto;
  margin: 0 auto;
}

.article figcaption {
  max-width: 560px;
  margin: 12px auto 0;
  color: var(--muted);
  font-size: 0.92rem;
  text-align: center;
}

.section-note {
  margin: 26px 0;
  padding: 16px 18px;
  color: var(--wcsu-navy);
  background: #f7f8fa;
  border-left: 5px solid var(--wcsu-blue);
  font-weight: 700;
}

.signature-block {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--line);
}
.signature-img {
  display: block;
  max-width: 220px;
  height: auto;
  margin-bottom: 0.75rem;
}
.signature-block p {
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.6;
}

/* Opening letter with sig at top */
.opening-letter {
  margin-bottom: 0;
}
.sig-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 1.5rem;
  padding: 16px 20px;
  background: var(--soft);
  border-left: 5px solid var(--wcsu-orange, #ff4d00);
  border-radius: 0 4px 4px 0;
}
.sig-top-img {
  display: block;
  width: 90px;
  height: auto;
  flex-shrink: 0;
}
.sig-bottom-img {
  display: block;
  width: 140px;
  height: auto;
  margin: 4px 0 8px;
}
.sig-header-text {
  font-size: .9rem;
  color: var(--ink);
  line-height: 1.5;
}
.sig-header-text strong {
  font-size: 1rem;
  color: var(--wcsu-blue, #002856);
}
hr.section-rule {
  border: none;
  border-top: 2px solid var(--line);
  margin: 2.5rem 0;
}

.site-footer {
  color: #fff;
  background: var(--wcsu-navy);
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 28px 24px;
}

.footer-inner p {
  margin: 0;
  color: var(--wcsu-silver);
}

.footer-inner a {
  color: #fff;
}

@media (max-width: 920px) {
  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 54px;
  }

  .shield-mark {
    justify-self: start;
    width: 125px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .toc {
    position: static;
  }
}

@media (max-width: 620px) {
  .brand-row,
  .footer-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .brand-kicker {
    text-align: left;
  }

  .hero-inner {
    padding: 42px 18px 46px;
  }

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

  .page {
    padding: 28px 14px 56px;
  }

  .article-inner {
    padding: 24px 18px;
  }
}
