:root {
  color-scheme: light;
  --ink: #15191d;
  --muted: #5c6870;
  --line: #d7dde1;
  --paper: #f8f7f2;
  --panel: #ffffff;
  --blue: #1f4e5f;
  --green: #5c6b46;
  --gold: #b3894b;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

main {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.hero {
  min-height: 92vh;
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 420px);
  gap: clamp(28px, 5vw, 68px);
  align-items: center;
  padding: 56px 0 36px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  overflow-wrap: normal;
  word-break: normal;
}

p,
li,
span,
strong {
  overflow-wrap: break-word;
}

h1 {
  margin: 0;
  font-size: clamp(3rem, 8vw, 6.8rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.25;
}

.summary {
  max-width: 740px;
  margin: 24px 0 0;
  color: #2d3439;
  font-size: clamp(1.08rem, 2vw, 1.32rem);
}

.actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid var(--blue);
  border-radius: 6px;
  color: var(--blue);
  font-weight: 700;
  text-decoration: none;
}

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

.contact {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 24px 60px rgb(21 25 29 / 0.22);
}

section {
  padding: 52px 0;
}

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

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

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

.highlight-grid article,
.assessment-list article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.highlight-grid article {
  padding: 20px;
}

.highlight-grid strong {
  display: block;
  color: var(--green);
  font-size: 1.18rem;
  margin-bottom: 8px;
}

.highlight-grid span,
.assessment-list p,
.timeline p,
.closing p {
  color: var(--muted);
}

.content-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

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

.assessment-list article {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 18px 20px;
}

.assessment-list p {
  margin: 6px 0 0;
  font-size: 0.94rem;
}

.assessment-list strong {
  color: var(--blue);
  font-size: 1.16rem;
  white-space: nowrap;
}

.two-column {
  display: grid;
  grid-template-columns: 0.42fr 1fr;
  gap: clamp(24px, 5vw, 64px);
  align-items: start;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chips span {
  padding: 8px 12px;
  border: 1px solid #cbd3d7;
  border-radius: 999px;
  background: #ffffff;
  color: #2d3439;
  font-weight: 700;
}

.timeline {
  display: grid;
  gap: 22px;
}

.timeline article {
  border-left: 4px solid var(--gold);
  padding-left: 18px;
}

.timeline h3 {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.timeline h3 span {
  color: var(--muted);
  font-weight: 400;
}

.timeline p {
  margin: 4px 0 8px;
}

ul {
  margin: 0;
  padding-left: 20px;
}

.closing {
  min-height: 38vh;
  display: grid;
  align-content: center;
  justify-items: start;
  border-top: 1px solid var(--line);
}

.closing p {
  max-width: 680px;
  margin: 14px 0 24px;
  font-size: 1.12rem;
}

@media (max-width: 850px) {
  main {
    width: min(100% - 24px, 680px);
  }

  .hero,
  .content-grid,
  .two-column {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 32px;
  }

  .portrait {
    max-width: 420px;
    justify-self: start;
  }

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

  .assessment-list article {
    grid-template-columns: 1fr;
  }

  .assessment-list strong {
    white-space: normal;
  }
}

@media (max-width: 560px) {
  .highlight-grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    display: block;
  }
}
