:root {
  --navy: #1e3557;
  --navy-2: #2d4a73;
  --red: #8c2f2f;
  --cream: #f7f5f0;
  --light: #eef2f6;
  --text: #252a31;
  --muted: #5d6673;
  --white: #ffffff;
  --shadow: 0 18px 45px rgba(18, 36, 61, 0.14);
  --radius: 18px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Source Sans 3", "Segoe UI", Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

h1, h2, h3 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--navy);
  line-height: 1.15;
  margin: 0 0 1rem;
}

h1 {
  font-size: clamp(2.35rem, 5vw, 4.8rem);
  letter-spacing: -0.03em;
}

h2 {
  font-size: clamp(1.9rem, 3vw, 3rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  margin: 0 0 1.05rem;
}

a {
  color: var(--navy-2);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--red);
}

.container {
  width: min(1120px, calc(100% - 2rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: var(--white);
  padding: .75rem 1rem;
  z-index: 999;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(30, 53, 87, 0.12);
}

.nav-wrap {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.brand {
  text-decoration: none;
  color: var(--navy);
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .16em;
  margin-top: .15rem;
}

.nav-toggle {
  display: none;
  border: 1px solid rgba(30, 53, 87, 0.25);
  background: var(--white);
  color: var(--navy);
  padding: .55rem .75rem;
  border-radius: 999px;
  font-weight: 700;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.primary-nav a {
  text-decoration: none;
  color: var(--navy);
  font-weight: 700;
  font-size: .96rem;
}

.primary-nav a:hover,
.primary-nav a[aria-current="page"] {
  color: var(--red);
}

.button,
button.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--white);
  text-decoration: none;
  border: none;
  border-radius: 999px;
  padding: .85rem 1.15rem;
  font-weight: 800;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(30, 53, 87, 0.18);
}

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

.button.secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid rgba(30, 53, 87, 0.22);
  box-shadow: none;
}

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

.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #14263f 58%, var(--navy-2) 100%);
  color: var(--white);
  padding: clamp(3rem, 7vw, 6rem) 0;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, .82fr);
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero h1,
.hero h2 {
  color: var(--white);
}

.hero p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.18rem;
  max-width: 720px;
}

.kicker {
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-weight: 900;
  font-size: .84rem;
  margin-bottom: .75rem;
}

.hero .kicker {
  color: #f0d4d4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 1.5rem;
}

.hero-card {
  background: var(--white);
  color: var(--text);
  border-radius: var(--radius);
  padding: 1rem;
  box-shadow: var(--shadow);
}

.hero-card img {
  width: 100%;
  display: block;
  border-radius: calc(var(--radius) - 6px);
  object-fit: cover;
}

.photo-caption {
  padding: .85rem .4rem .2rem;
  color: var(--muted);
  font-size: .95rem;
}

.section {
  padding: clamp(2.35rem, 5vw, 4.35rem) 0;
}

.section.alt {
  background: var(--cream);
}

.section.soft {
  background: var(--light);
}

.intro {
  max-width: 840px;
}

.grid {
  display: grid;
  gap: 1.25rem;
}

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

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

.card {
  background: var(--white);
  border: 1px solid rgba(30, 53, 87, 0.12);
  border-radius: var(--radius);
  padding: clamp(1rem, 1.7vw, 1.35rem);
  box-shadow: 0 8px 20px rgba(18, 36, 61, 0.055);
}

.card h3 {
  margin-bottom: .65rem;
}

.card p:last-child {
  margin-bottom: 0;
}

.callout {
  border-left: 5px solid var(--red);
  background: var(--cream);
  padding: 1.25rem 1.5rem;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.list-clean {
  margin: .5rem 0 0;
  padding-left: 1.2rem;
}

.list-clean li {
  margin-bottom: .45rem;
}

.page-hero {
  background: var(--navy);
  color: var(--white);
  padding: clamp(1.6rem, 3.5vw, 2.85rem) 0;
}

.page-hero h1,
.page-hero h2 {
  color: var(--white);
}

.page-hero p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.04rem;
  max-width: 860px;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-top: 1.25rem;
}

.badge {
  background: rgba(255, 255, 255, .12);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: .4rem .75rem;
  font-weight: 700;
  font-size: .9rem;
}

.form {
  display: grid;
  gap: 1rem;
}

label {
  font-weight: 800;
  color: var(--navy);
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(30, 53, 87, 0.25);
  border-radius: 12px;
  padding: .82rem .9rem;
  font: inherit;
  background: var(--white);
}

textarea {
  min-height: 140px;
}

.checkbox-row {
  display: flex;
  align-items: flex-start;
  gap: .65rem;
}

.checkbox-row input {
  width: auto;
  margin-top: .35rem;
}

.note {
  color: var(--muted);
  font-size: .96rem;
}

.endorsement {
  position: relative;
}

.endorsement blockquote {
  margin: 0 0 1rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  color: var(--navy);
}

.endorsement .person {
  font-weight: 900;
  color: var(--text);
}

.endorsement .meta {
  color: var(--muted);
}

.event-date {
  color: var(--red);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.footer {
  background: #14263f;
  color: rgba(255, 255, 255, 0.84);
  padding: 2.25rem 0;
}

.footer a {
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1.5rem;
  align-items: start;
}

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

.disclaimer {
  margin-top: 1rem;
  font-size: .92rem;
  color: rgba(255, 255, 255, .72);
}

@media (max-width: 880px) {
  .hero-grid,
  .grid-2,
  .grid-3,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .primary-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding: 0 0 1rem;
  }

  .primary-nav.open {
    display: flex;
  }

  .nav-wrap {
    flex-wrap: wrap;
  }

  .brand {
    max-width: calc(100% - 90px);
  }
}

.card.compact {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 150px;
}

.card.compact h3 {
  margin-bottom: .45rem;
}

.card.compact p {
  margin-bottom: .55rem;
}

.card.compact p:last-child {
  margin-bottom: 0;
}

.tool-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: .85rem;
  min-height: 230px;
}

.tool-card .button {
  align-self: flex-start;
  margin-top: auto;
}

.list-clean.compact-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: .35rem;
  padding-left: 1.05rem;
  margin-top: .15rem;
}

.list-clean.compact-list li {
  margin-bottom: 0;
}

.fit-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
}


.fit-card,
.tools-summary-card {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 540px;
  height: auto;
}

.fit-card ul,
.tools-summary-card ul {
  margin-bottom: 0;
}

.grid-3 .card h2 {
  overflow-wrap: anywhere;
  word-break: normal;
  hyphens: auto;
}

.grid-3 .card {
  min-width: 0;
}

.assessor-grid {
  align-items: start;
}

.assessor-grid .card {
  height: 100%;
}


.assessor-grid .card h2 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.15;
}


.focus-card {
  align-self: center;
  justify-self: center;
  width: 100%;
  max-width: 520px;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tools-note {
  margin-top: 1rem;
}
