:root {
  --ink: #17233a;
  --ink-soft: #3f4a5f;
  --paper: #fbfaf7;
  --warm: #f2eadc;
  --white: #ffffff;
  --red: #a72530;
  --red-dark: #851a24;
  --blue: #086c9f;
  --green: #167552;
  --line: #d9d5cc;
  --focus: #ffbf47;
  --content: 1180px;
  --radius-sm: 6px;
  --radius-lg: 18px;
  --shadow: 0 18px 55px rgba(23, 35, 58, 0.12);
  --transition: 180ms ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

button,
a {
  touch-action: manipulation;
}

:focus-visible {
  outline: 3px solid var(--focus);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius-sm);
  transform: translateY(-160%);
  transition: transform var(--transition);
}

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

.section-inner,
.header-inner,
.hero-inner {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-inner {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  min-height: 60px;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}

.brand img {
  width: 52px;
  height: 70px;
  object-fit: contain;
}

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

.brand strong {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  line-height: 1.05;
}

.brand small {
  margin-top: 3px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 650;
  text-decoration: none;
  transition: color var(--transition), background-color var(--transition);
}

.main-nav a:hover {
  color: var(--red);
  background: var(--warm);
}

.main-nav .nav-cta {
  margin-left: 6px;
  color: var(--white);
  background: var(--ink);
}

.main-nav .nav-cta:hover {
  color: var(--white);
  background: var(--red);
}

.nav-toggle {
  min-height: 48px;
  display: none;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  width: 21px;
  height: 2px;
  display: block;
  background: currentColor;
  content: "";
  transition: transform var(--transition), opacity var(--transition);
}

.nav-toggle-lines {
  position: relative;
}

.nav-toggle-lines::before {
  position: absolute;
  top: -7px;
}

.nav-toggle-lines::after {
  position: absolute;
  top: 7px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 66px;
  background:
    linear-gradient(90deg, rgba(167, 37, 48, 0.055) 1px, transparent 1px),
    linear-gradient(rgba(167, 37, 48, 0.055) 1px, transparent 1px),
    var(--paper);
  background-size: 34px 34px;
}

.hero::after {
  position: absolute;
  right: -120px;
  bottom: -180px;
  width: 440px;
  height: 440px;
  border: 80px solid rgba(8, 108, 159, 0.07);
  border-radius: 50%;
  content: "";
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(400px, 0.96fr);
  align-items: center;
  gap: clamp(42px, 6vw, 82px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1.4;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
  text-wrap: balance;
}

h1 {
  max-width: 720px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 5.5vw, 5rem);
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 3.5vw, 3.25rem);
  letter-spacing: -0.035em;
}

h3 {
  font-size: 1.6rem;
  letter-spacing: -0.02em;
}

.hero-lead {
  max-width: 680px;
  margin-bottom: 30px;
  color: var(--ink-soft);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.hero-actions,
.closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  font-size: 0.94rem;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  transition: color var(--transition), background-color var(--transition), border-color var(--transition);
}

.button-primary {
  color: var(--white);
  background: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
}

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

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

.archive-note {
  max-width: 690px;
  margin: 28px 0 0;
  padding-left: 16px;
  color: #535b69;
  border-left: 3px solid var(--red);
  font-size: 0.82rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  margin: 0;
  padding: 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  transform: rotate(1.5deg);
}

.hero-visual img {
  width: 100%;
  border-radius: 10px;
}

.hero-visual figcaption {
  padding: 12px 6px 2px;
  color: var(--ink-soft);
  font-size: 0.8rem;
}

.quick-links {
  color: var(--white);
  background: var(--ink);
}

.quick-links-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.quick-links a {
  min-height: 112px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  padding: 24px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
  text-decoration: none;
  transition: background-color var(--transition);
}

.quick-links a:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.quick-links a:hover {
  background: rgba(255, 255, 255, 0.08);
}

.quick-number {
  color: #ec9da4;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.5rem;
}

.quick-links strong,
.quick-links small {
  display: block;
}

.quick-links strong {
  line-height: 1.25;
}

.quick-links small {
  margin-top: 3px;
  color: #c8ceda;
  font-size: 0.78rem;
}

.arrow {
  font-size: 1.4rem;
  transition: transform var(--transition);
}

.quick-links a:hover .arrow {
  transform: translateX(4px);
}

.levels,
.resources {
  padding: 96px 0;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 470px);
  align-items: end;
  gap: 48px;
  margin-bottom: 42px;
}

.section-heading h2,
.section-heading p {
  margin-bottom: 0;
}

.section-heading > p {
  color: var(--ink-soft);
}

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

.level-card {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  color: var(--white);
  border-radius: var(--radius-lg);
}

.level-trust {
  background: var(--red);
}

.level-performance {
  background: var(--blue);
}

.level-excellence {
  background: var(--green);
}

.level-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.level-card h3 {
  margin: 64px 0 18px;
  font-size: clamp(2rem, 3.5vw, 2.7rem);
}

.level-card p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.94rem;
}

.level-card a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  font-size: 0.9rem;
  font-weight: 750;
  text-underline-offset: 4px;
}

.approach {
  padding: 96px 0;
  background: var(--warm);
}

.approach-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(400px, 1.1fr);
  gap: clamp(56px, 9vw, 116px);
}

.approach-copy > p:not(.eyebrow) {
  max-width: 560px;
  color: var(--ink-soft);
}

.text-link {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 10px;
  color: var(--red);
  font-weight: 750;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.steps {
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid #c9c0b2;
}

.steps li:first-child {
  padding-top: 0;
}

.steps li > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
}

.steps strong {
  display: block;
  margin-bottom: 4px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.25rem;
}

.steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.92rem;
}

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

.resource-card {
  min-height: 410px;
  display: flex;
  flex-direction: column;
  padding: 30px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}

.resource-featured {
  background: #f8eded;
  border-color: #e5b7bb;
}

.resource-label {
  margin-bottom: 34px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.resource-card h3 {
  margin-bottom: 18px;
}

.resource-card > p:not(.resource-label) {
  color: var(--ink-soft);
  font-size: 0.92rem;
}

.resource-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  margin-top: auto;
}

.resource-actions a {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 750;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.external {
  margin-left: 4px;
  font-size: 0.95em;
}

.closing-cta {
  padding: 78px 0;
  color: var(--white);
  background: var(--red);
}

.closing-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}

.closing-inner .eyebrow {
  color: #ffd5d9;
}

.closing-inner h2 {
  margin-bottom: 10px;
}

.closing-inner p:not(.eyebrow) {
  max-width: 650px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.88);
}

.button-light {
  color: var(--red);
  background: var(--white);
}

.button-light:hover {
  color: var(--ink);
}

.button-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.8);
}

.button-outline-light:hover {
  color: var(--red);
  background: var(--white);
}

.site-footer {
  padding: 68px 0 24px;
  color: #d8deea;
  background: #101828;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 0.8fr 1.3fr;
  gap: 54px;
  padding-bottom: 52px;
}

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

.footer-brand img {
  width: 50px;
}

.footer-brand strong,
.footer-brand span {
  display: block;
}

.footer-brand strong {
  color: var(--white);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
}

.footer-brand span {
  color: #ef9ca3;
  font-size: 0.74rem;
  font-weight: 750;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer h2 {
  margin-bottom: 18px;
  color: var(--white);
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-footer a {
  min-height: 38px;
  display: flex;
  align-items: center;
  color: #d8deea;
  font-size: 0.86rem;
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 4px;
}

.footer-note p {
  color: #aeb8ca;
  font-size: 0.82rem;
  line-height: 1.6;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  color: #8f9ab0;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.78rem;
}

.print-link {
  min-height: 44px;
  padding: 0 4px;
  color: #cfd6e3;
  background: transparent;
  border: 0;
  font: inherit;
  text-decoration: underline;
  text-underline-offset: 4px;
  cursor: pointer;
}

@media (max-width: 980px) {
  .nav-toggle {
    display: inline-flex;
  }

  .main-nav {
    position: absolute;
    top: 100%;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px 20px 22px;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: 0 18px 35px rgba(23, 35, 58, 0.12);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    min-height: 50px;
  }

  .main-nav .nav-cta {
    justify-content: center;
    margin: 6px 0 0;
  }

  .hero-inner,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    max-width: 760px;
    transform: none;
  }

  .quick-links-grid,
  .level-grid,
  .resource-grid {
    grid-template-columns: 1fr;
  }

  .quick-links a {
    border-right: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .level-card,
  .resource-card {
    min-height: 340px;
  }

  .level-card h3 {
    margin-top: 38px;
  }

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

@media (max-width: 680px) {
  body {
    font-size: 16px;
  }

  .section-inner,
  .header-inner,
  .hero-inner {
    width: min(calc(100% - 28px), var(--content));
  }

  .header-inner {
    min-height: 76px;
  }

  .brand img {
    width: 43px;
    height: 58px;
  }

  .brand strong {
    font-size: 1.03rem;
  }

  .hero {
    padding: 48px 0;
  }

  h1 {
    font-size: clamp(2.5rem, 13vw, 4rem);
  }

  .hero-actions,
  .closing-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-visual {
    padding: 8px;
  }

  .levels,
  .resources,
  .approach {
    padding: 70px 0;
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-bottom: 30px;
  }

  .level-card,
  .resource-card {
    min-height: 0;
    padding: 26px;
  }

  .level-card a,
  .resource-actions {
    margin-top: 32px;
  }

  .approach-grid {
    gap: 50px;
  }

  .closing-cta {
    padding: 64px 0;
  }

  .closing-inner {
    align-items: stretch;
    flex-direction: column;
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

@media print {
  .site-header,
  .hero-actions,
  .quick-links,
  .closing-cta,
  .print-link {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 11pt;
  }

  .hero,
  .levels,
  .approach,
  .resources,
  .site-footer {
    padding: 24px 0;
    color: #000;
    background: #fff;
  }

  .level-card {
    color: #000;
    background: #fff;
    border: 1px solid #777;
  }
}
