:root {
  --wall: #d5e4de;
  --paper: #f6f7f4;
  --ink: #17211e;
  --muted: #3e514b;
  --line: #17211e;
  --lamp: #e25b12;
  --display: "Bricolage Grotesque", "Avenir Next", "Segoe UI", sans-serif;
  --serif: "Source Serif 4", "Iowan Old Style", Palatino, "Palatino Linotype", serif;
  --mono: "IBM Plex Mono", "Source Code Pro", ui-monospace, monospace;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background:
    radial-gradient(1200px 500px at 10% -10%, #e7f2ec 0%, transparent 55%),
    var(--wall);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.125rem;
  line-height: 1.55;
}

a { color: inherit; }
a:hover { color: var(--lamp); }

:focus-visible {
  outline: 3px solid var(--lamp);
  outline-offset: 3px;
}

.skip {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--ink);
  color: var(--paper);
  padding: 0.5rem 0.8rem;
  z-index: 5;
}
.skip:focus { top: 1rem; }

.wrap {
  width: min(920px, calc(100% - 2rem));
  margin: 0 auto;
}

.top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.25rem 0 0.5rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 680;
  letter-spacing: -0.03em;
  font-size: 1.15rem;
}

.brand img {
  width: 52px;
  height: 52px;
  background: #fff;
  border-radius: 50%;
  object-fit: cover;
}

.nav a {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid var(--lamp);
  padding-bottom: 0.1rem;
}

.hero { padding: 2.2rem 0 1rem; }

h1 {
  font-family: var(--display);
  font-weight: 720;
  font-size: clamp(3.2rem, 10vw, 6.4rem);
  line-height: 0.88;
  letter-spacing: -0.045em;
  margin: 0 0 0.7rem;
}

.lede {
  font-family: var(--display);
  font-weight: 560;
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  line-height: 1.2;
  letter-spacing: -0.03em;
  margin: 0;
  max-width: 18ch;
}

.quote {
  margin: 1.6rem 0 0;
  max-width: 38rem;
  font-size: 1.28rem;
  line-height: 1.45;
}

.quote p { margin: 0; }

.plate {
  margin: 1.8rem 0 0;
  background: var(--paper);
  border: 2px solid var(--ink);
  box-shadow: 8px 8px 0 var(--ink);
  padding: 1rem 1.15rem 1.1rem;
  max-width: 40rem;
}

.plate strong {
  display: block;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--lamp);
  margin-bottom: 0.45rem;
}

.plate p {
  margin: 0;
  font-family: var(--mono);
  font-size: 0.92rem;
  line-height: 1.45;
}

.note {
  margin: 1.5rem 0 0;
  max-width: 38rem;
  color: var(--muted);
}

.bench { padding: 1.4rem 0 2.5rem; }

.bench h2, .entry h2 {
  font-family: var(--display);
  font-weight: 680;
  letter-spacing: -0.03em;
  font-size: 1.8rem;
  margin: 0 0 0.8rem;
}

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

.rows a {
  display: grid;
  grid-template-columns: 11rem 1fr;
  gap: 1rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--ink);
  text-decoration: none;
  align-items: baseline;
}

.rows a span {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.rows a em {
  font-style: normal;
  font-family: var(--serif);
  font-size: 1.05rem;
}

.entry { padding-bottom: 0.4rem; }
.entry header p { max-width: 40rem; color: var(--muted); }
.entry article { padding: 1.1rem 0 0.2rem; border-top: 2px solid var(--ink); }
.entry article h2 { font-size: 1.55rem; margin-bottom: 0.35rem; }
.entry article p { margin: 0 0 1.1rem; max-width: 40rem; }

.foot {
  border-top: 2px solid var(--ink);
  padding: 1rem 0 2rem;
  font-family: var(--mono);
  font-size: 0.82rem;
  line-height: 1.45;
}

.foot p { margin: 0; max-width: 40rem; }
.foot p + p { margin-top: 0.35rem; }

@media (max-width: 640px) {
  .rows a { grid-template-columns: 1fr; gap: 0.2rem; }
  .plate { box-shadow: 5px 5px 0 var(--ink); }
}

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