:root {
  color-scheme: light;
  --paper: #f2efe6;
  --paper-strong: #e7e1d3;
  --ink: #111419;
  --muted: #5b5e62;
  --line: #c9c2b4;
  --blue: #2446d8;
  --blue-dark: #1733aa;
  --lime: #d8f56a;
  --white: #fffdf8;
  --radius: 1.25rem;
  --shell: 82rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(17, 20, 25, 0.035) 50%, transparent 50.1%),
    var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-underline-offset: 0.22em;
  text-decoration-thickness: 0.08em;
}

a:hover {
  text-decoration-color: var(--blue);
}

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.75rem 1rem;
  color: var(--white);
  background: var(--blue-dark);
  transform: translateY(-160%);
}

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

.shell {
  width: min(calc(100% - 3rem), var(--shell));
  margin-inline: auto;
}

.site-header {
  position: relative;
  z-index: 10;
  border-bottom: 1px solid var(--line);
}

.nav {
  min-height: 4.25rem;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.5rem;
}

.brand,
.nav-proof,
.nav-links a {
  font-size: 0.76rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-decoration: none;
  text-transform: uppercase;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  justify-self: start;
}

.brand > span:first-child {
  display: grid;
  width: 2rem;
  height: 2rem;
  place-items: center;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 0.62rem;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
}

.nav-proof {
  justify-self: end;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(18rem, 0.65fr);
  gap: clamp(2rem, 6vw, 6rem);
  align-items: end;
  min-height: 39rem;
  padding-block: clamp(4rem, 9vw, 8rem) 5rem;
}

.eyebrow {
  margin: 0 0 1rem;
  color: var(--blue-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  text-wrap: pretty;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 0.98;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.75rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 8.2vw, 8rem);
  font-weight: 400;
}

h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 4vw, 4.35rem);
  font-weight: 400;
}

.hero-intro {
  max-width: 43rem;
  margin: 0;
  color: #35383d;
  font-size: clamp(1.12rem, 1.8vw, 1.42rem);
}

.hero-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 2.25rem;
}

.hero-links a {
  display: inline-flex;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0.62rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.42);
  font-size: 0.82rem;
  font-weight: 720;
  text-decoration: none;
}

.status-dot {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #138849;
  box-shadow: 0 0 0 3px rgba(19, 136, 73, 0.13);
}

.hero-note {
  position: relative;
  overflow: hidden;
  padding: 1.25rem;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--ink);
}

.hero-note::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.07) 1px, transparent 1px);
  background-size: 2rem 2rem;
  content: "";
}

.hero-note > * {
  position: relative;
}

.monogram {
  display: grid;
  width: 6.5rem;
  height: 6.5rem;
  margin: 0 0 5.5rem auto;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  color: var(--lime);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
}

.note-label {
  margin: 0 0 0.55rem;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note > p:last-of-type {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.65rem;
  line-height: 1.12;
}

.note-axis {
  display: flex;
  justify-content: space-between;
  gap: 0.4rem;
  margin-top: 2.5rem;
  padding-top: 0.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  color: #d1d1ce;
  font-size: 0.62rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.work-section {
  padding-block: 6.5rem;
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 2.2fr 1fr;
  gap: 2rem;
  align-items: end;
  margin-bottom: 2.75rem;
}

.section-heading .eyebrow {
  align-self: start;
}

.section-heading h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.section-heading > p:last-child {
  margin: 0;
  color: var(--muted);
}

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

.project {
  display: flex;
  min-width: 0;
  min-height: 37rem;
  flex-direction: column;
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 253, 248, 0.55);
}

.project-featured {
  color: var(--white);
  border-color: var(--blue);
  background: var(--blue);
}

.project-topline {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.8;
}

.project h3 {
  max-width: 12ch;
  margin: 2.5rem 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.15rem, 3vw, 3.3rem);
  font-weight: 400;
}

.project-facts {
  margin: 0;
}

.project-facts > div {
  display: grid;
  grid-template-columns: 6.25rem 1fr;
  gap: 1rem;
  padding: 0.95rem 0;
  border-top: 1px solid rgba(17, 20, 25, 0.2);
}

.project-featured .project-facts > div {
  border-top-color: rgba(255, 255, 255, 0.28);
}

.project-facts dt {
  font-size: 0.66rem;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-facts dd {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.5;
}

.project-footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: auto;
  padding-top: 1.5rem;
}

.project-footer ul {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-footer li {
  padding: 0.25rem 0.5rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 750;
}

.project-footer a {
  flex: 0 0 auto;
  font-size: 0.76rem;
  font-weight: 800;
}

.thinking {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(3rem, 9vw, 9rem);
  padding-block: 7rem;
  border-top: 1px solid var(--line);
}

.method-intro {
  align-self: start;
}

.method-intro h2 {
  max-width: 11ch;
}

.method-intro > p:last-child {
  max-width: 30rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.method-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--ink);
  list-style: none;
}

.method-list li {
  display: grid;
  grid-template-columns: 3rem 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-bottom: 1px solid var(--line);
}

.method-list > li > span {
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 850;
}

.method-list h3 {
  margin-bottom: 0.45rem;
  font-size: 1.25rem;
  letter-spacing: -0.02em;
}

.method-list p {
  max-width: 39rem;
  margin: 0;
  color: var(--muted);
}

.journey {
  padding-block: 6.5rem;
  border-top: 1px solid var(--line);
}

.section-heading.compact {
  grid-template-columns: 1fr 3.2fr;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.timeline article {
  min-height: 13rem;
  padding: 1.5rem;
  border-right: 1px solid var(--line);
}

.timeline article:last-child {
  border-right: 0;
}

.timeline time {
  display: block;
  margin-bottom: 3.5rem;
  color: var(--blue-dark);
  font-size: 0.7rem;
  font-weight: 850;
  letter-spacing: 0.1em;
}

.timeline h3 {
  margin-bottom: 0.5rem;
  font-size: 1.22rem;
  line-height: 1.12;
  letter-spacing: -0.02em;
}

.timeline p {
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.closing {
  display: grid;
  grid-template-columns: 1.45fr 0.55fr;
  gap: 4rem;
  padding-block: 7rem;
  border-top: 1px solid var(--line);
}

.closing h2 {
  max-width: 14ch;
  margin-bottom: 0;
}

.closing-links {
  align-self: end;
  border-top: 1px solid var(--ink);
}

.closing-links a {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
  font-weight: 800;
  text-decoration: none;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.25rem 2rem;
  border-top: 1px solid var(--ink);
  color: var(--muted);
  font-size: 0.72rem;
}

.site-footer p {
  margin: 0;
}

@media (max-width: 68rem) {
  .hero {
    grid-template-columns: minmax(0, 1.35fr) minmax(16rem, 0.65fr);
  }

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

  .project-featured {
    grid-column: 1 / -1;
    min-height: 31rem;
  }

  .section-heading {
    grid-template-columns: 1fr 2fr;
  }

  .section-heading > p:last-child {
    grid-column: 2;
  }
}

@media (max-width: 48rem) {
  .shell {
    width: min(calc(100% - 2rem), var(--shell));
  }

  .nav {
    grid-template-columns: 1fr auto;
  }

  .nav-links {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-block: 4.5rem 3rem;
  }

  h1 {
    font-size: clamp(3.65rem, 17vw, 5.5rem);
  }

  .hero-note {
    min-height: 26rem;
  }

  .monogram {
    margin-bottom: 5rem;
  }

  .work-section,
  .thinking,
  .journey,
  .closing {
    padding-block: 4.5rem;
  }

  .section-heading,
  .section-heading.compact,
  .thinking,
  .closing {
    grid-template-columns: 1fr;
  }

  .section-heading > p:last-child {
    grid-column: auto;
  }

  .project-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .project-featured {
    grid-column: auto;
  }

  .project {
    min-height: 34rem;
  }

  .timeline article {
    min-height: auto;
    padding: 1.4rem 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .timeline article:last-child {
    border-bottom: 0;
  }

  .timeline time {
    margin-bottom: 2rem;
  }

  .site-footer {
    flex-direction: column;
    gap: 0.4rem;
  }
}

@media (max-width: 25rem) {
  .brand > span:last-child {
    display: none;
  }

  .hero-links {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-links a {
    justify-content: space-between;
  }

  .project-facts > div {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

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

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

@media print {
  .site-header,
  .skip-link {
    display: none;
  }

  body {
    background: #fff;
  }

  .project,
  .hero-note {
    break-inside: avoid;
  }
}
