:root{
  --bg: #f4f2ee;
  --card: rgba(255,255,255,.65);
  --card-solid: #ffffff;
  --text: #141414;
  --muted: #5d5d5d;
  --line: rgba(0,0,0,.12);
  --shadow: 0 10px 26px rgba(0,0,0,.08);
  --radius: 18px;
  --max: 1080px;
}

/* base */
*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  line-height: 1.5;
}

a{ color: inherit; text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover{ opacity: .95; }

.container{
  max-width: var(--max);
  margin: 0 auto;
  padding: 26px 18px 70px;
}

/* accessibility */
.skip-link{
  position:absolute;
  left:-999px;
  top:auto;
  width:1px;
  height:1px;
  overflow:hidden;
}
.skip-link:focus{
  left:18px;
  top:18px;
  width:auto;
  height:auto;
  padding:10px 12px;
  background: var(--card-solid);
  border: 1px solid var(--line);
  border-radius: 999px;
  z-index: 1000;
}

/* header/nav */
.site-header{ margin-bottom: 26px; }
.nav{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}
.nav a{
  text-decoration: none;
  color: var(--muted);
  padding: 7px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
}
.nav a[aria-current="page"]{
  color: var(--text);
  background: rgba(255,255,255,.55);
  border-color: var(--line);
}
.nav a:hover{
  color: var(--text);
  border-color: var(--line);
  background: rgba(255,255,255,.35);
}

/* hero */
.hero{
  display:grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
  align-items: start;
  margin-top: 6px;
}
@media (max-width: 900px){
  .hero{ grid-template-columns: 1fr; }
}

.title{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: clamp(44px, 5vw, 66px);
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.subtitle{
  margin: 0 0 16px;
  color: var(--muted);
  font-size: 16px;
}

.prose p{
  margin: 0 0 12px;
  color: var(--muted);
  max-width: 70ch;
}

.hero-links{
  display:flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 10px 0 14px;
}
.kicker-link{
  display:inline-flex;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.55);
  text-decoration: none;
}
.kicker-link.subtle{
  background: transparent;
}
.kicker-link:hover{
  background: rgba(255,255,255,.85);
}

.pill-row{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
}
.pill{
  font-size: 13px;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.25);
  color: var(--muted);
}

/* right panel */
.panel{
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px 16px 14px;
  box-shadow: var(--shadow);
}
.panel-title{
  margin: 0 0 10px;
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.panel-list{
  margin: 0;
  padding-left: 18px;
}
.panel-list li{ margin: 8px 0; }
.panel-list a{ color: var(--text); }

/* sections */
.section{ margin-top: 36px; }
.section-head{
  display:flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items: baseline;
}
.section h2{
  margin: 0 0 12px;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
}
.section-note{
  margin: 0;
  color: var(--muted);
  max-width: 60ch;
}

.rule{
  border: 0;
  height: 1px;
  background: var(--line);
  margin: 22px 0 6px;
}

/* cards */
.work-list{
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  margin-top: 10px;
}

.card-link{
  display:block;
  text-decoration: none;
}

.card{
  background: rgba(255,255,255,.35);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  transition: transform .12s ease, background .12s ease;
}
.card:hover{
  transform: translateY(-1px);
  background: rgba(255,255,255,.6);
}

.card-top{
  display:flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-bottom: 10px;
}

.tags{
  display:flex;
  gap: 8px;
  flex-wrap: wrap;
}
.tag{
  font-size: 12px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 6px 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.35);
}

.status{
  font-size: 13px;
  color: var(--muted);
}

.card-title{
  font-family: ui-serif, Georgia, "Times New Roman", Times, serif;
  font-size: 28px;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.card-desc{
  margin: 0 0 12px;
  color: var(--muted);
  max-width: 80ch;
}
.card-cta{
  display:inline-block;
  color: var(--text);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

/* footer */
.footer{
  margin-top: 54px;
  color: var(--muted);
}
