:root {
  color: #122238;
  background: #f7f3eb;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
}

* { box-sizing: border-box; }

body { margin: 0; min-width: 320px; }

main { width: min(100% - 40px, 1040px); margin: 0 auto; padding: clamp(64px, 12vw, 148px) 0 40px; }

.hero { max-width: 760px; }

.eyebrow {
  margin: 0 0 16px;
  color: #5a6980;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.15em;
}

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

h1 {
  margin-bottom: 22px;
  color: #102941;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3rem, 8vw, 6.8rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.91;
}

.intro { max-width: 470px; margin-bottom: clamp(76px, 13vw, 148px); color: #4e5d6e; font-size: 1.08rem; line-height: 1.65; }

.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 22px; }
.section-heading .eyebrow { margin: 0; }
h2 { margin: 0; color: #102941; font-size: clamp(1.35rem, 3vw, 1.8rem); letter-spacing: -0.04em; }

.projects { padding-top: 1px; }
.project-card {
  display: grid;
  grid-template-columns: 54px 1fr auto;
  align-items: center;
  gap: 20px;
  min-height: 158px;
  margin-top: 12px;
  padding: 28px 30px;
  border: 1px solid #d8d0c3;
  border-radius: 18px;
  color: inherit;
  text-decoration: none;
}

.bank { background: #123d62; border-color: #123d62; color: #fff; transition: transform 160ms ease, background 160ms ease; }
.bank:hover { background: #0b2f50; transform: translateY(-3px); }
.bank:focus-visible { outline: 3px solid #e79535; outline-offset: 4px; }
.upcoming { background: rgba(255,255,255,0.48); color: #576577; }

.project-number { align-self: start; font-size: 0.72rem; font-weight: 750; letter-spacing: 0.1em; opacity: 0.78; }
.project-copy { display: grid; gap: 7px; }
.project-copy strong { font-size: clamp(1.15rem, 2.5vw, 1.5rem); letter-spacing: -0.035em; }
.project-copy span { max-width: 530px; font-size: 0.93rem; line-height: 1.5; opacity: 0.8; }
.arrow { font-size: 2rem; line-height: 1; }
.status { border: 1px solid #bac0c7; border-radius: 100px; padding: 7px 10px; font-size: 0.72rem; font-weight: 700; }

footer { display: flex; justify-content: space-between; gap: 18px; margin-top: clamp(76px, 13vw, 148px); color: #687487; font-size: 0.78rem; }

@media (max-width: 620px) {
  main { width: min(100% - 32px, 1040px); padding-top: 56px; }
  h1 { letter-spacing: -0.055em; }
  .section-heading { display: block; }
  .section-heading .eyebrow { margin-bottom: 10px; }
  .project-card { grid-template-columns: 34px 1fr; gap: 14px; padding: 24px 20px; }
  .arrow, .status { grid-column: 2; justify-self: start; }
  footer { display: grid; }
}

@media (prefers-reduced-motion: reduce) { .bank { transition: none; } }
