:root {
  --ink: #1d2924;
  --paper: #f2f0e8;
  --acid: #d9f26a;
  --mint: #c5ddd2;
  --line: rgba(29, 41, 36, .2);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
  font-family: Arial, Helvetica, sans-serif;
  -webkit-font-smoothing: antialiased;
}

main, footer { width: min(1180px, calc(100% - 48px)); margin-inline: auto; }

.hero {
  position: relative;
  min-height: 63vh;
  padding: 32px 0 72px;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.name {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  color: inherit;
  text-decoration: none;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: .06em;
}

.hero-copy { position: relative; z-index: 1; padding-top: clamp(80px, 14vh, 150px); }
.eyebrow { margin: 0 0 20px; font-size: 12px; font-weight: 800; letter-spacing: .18em; }

h1 {
  max-width: 880px;
  margin: 0;
  font-size: clamp(52px, 8vw, 112px);
  line-height: .91;
  letter-spacing: -.065em;
  font-weight: 700;
}

.intro {
  max-width: 520px;
  margin: 36px 0 0;
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.45;
}

.orbit {
  position: absolute;
  right: -80px;
  top: 70px;
  width: clamp(260px, 34vw, 470px);
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit::before, .orbit::after {
  content: "";
  position: absolute;
  inset: 18%;
  border: 1px solid var(--line);
  border-radius: 50%;
}

.orbit::after { inset: 38%; background: var(--acid); border: 0; }
.orbit span { position: absolute; top: 8%; left: 15%; width: 22px; aspect-ratio: 1; border-radius: 50%; background: var(--ink); }

.projects { padding: 84px 0 96px; }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 38px; }
.section-heading .eyebrow { margin: 0; }
h2 { margin: 0; font-size: clamp(32px, 5vw, 58px); line-height: 1; letter-spacing: -.045em; }
.project-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 18px; }

.project-card {
  min-height: 330px;
  padding: 32px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: inherit;
  text-decoration: none;
}

.featured { background: var(--ink); color: var(--paper); transition: transform .2s ease, background .2s ease; }
.featured:hover, .featured:focus-visible { background: #2a3d34; transform: translateY(-4px); }
.future { background: var(--mint); }
.card-number { margin: 0 0 56px; font-size: 12px; font-weight: 800; letter-spacing: .16em; }
h3 { margin: 0 0 14px; font-size: clamp(30px, 4vw, 52px); line-height: 1; letter-spacing: -.04em; }
.project-card p:not(.card-number) { max-width: 430px; margin: 0; font-size: 17px; line-height: 1.5; opacity: .85; }
.action, .status { font-size: 13px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.action span { margin-left: 8px; font-size: 18px; }
.status { opacity: .55; }

footer { padding: 28px 0 40px; border-top: 1px solid var(--line); font-size: 13px; }
footer p { margin: 0; }

@media (max-width: 720px) {
  main, footer { width: min(100% - 30px, 1180px); }
  .hero { min-height: 600px; padding-top: 22px; }
  .hero-copy { padding-top: 110px; }
  .orbit { opacity: .55; right: -145px; top: 40px; }
  .section-heading { display: block; }
  .section-heading .eyebrow { margin-bottom: 18px; }
  .projects { padding: 62px 0 72px; }
  .project-grid { grid-template-columns: 1fr; }
  .project-card { min-height: 290px; padding: 26px; }
}

@media (prefers-reduced-motion: reduce) {
  * { scroll-behavior: auto !important; transition: none !important; }
}
