:root {
  --bg: #faf7f1;
  --ink: #1a1a1a;
  --muted: #6b6b6b;
  --rule: #d9d3c6;
  --accent: #6b2020;
  --maxw: 640px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: "EB Garamond", "Iowan Old Style", "Charter", Georgia, serif;
  font-size: 19px;
  line-height: 1.6;
  font-feature-settings: "kern", "liga", "onum";
}

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 96px 28px 80px;
}

/* HERO */
.hero {
  margin-bottom: 72px;
}

h1 {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 56px;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}

.lede {
  font-size: 22px;
  line-height: 1.5;
  color: var(--ink);
  margin: 0;
  max-width: 30em;
}

/* SECTIONS */
section {
  margin-top: 56px;
}

h2 {
  font-family: "Inter", system-ui, sans-serif;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 22px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--rule);
}

p {
  margin: 0 0 1em;
}

/* CURRENTLY rows */
.rows {
  list-style: none;
  padding: 0;
  margin: 0;
}
.rows li {
  margin: 0 0 18px;
}
.row-title {
  font-weight: 600;
}

/* VENTURES */
.venture {
  padding: 22px 0;
  border-top: 1px solid var(--rule);
}
.venture:first-of-type {
  border-top: none;
  padding-top: 6px;
}
.venture header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 8px 16px;
  margin-bottom: 8px;
}
.venture h3 {
  font-family: "EB Garamond", Georgia, serif;
  font-weight: 600;
  font-size: 24px;
  margin: 0;
  letter-spacing: -0.005em;
}
.meta {
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--muted);
  white-space: nowrap;
}
.venture p {
  margin: 0;
  color: #2a2a2a;
}

/* WINS */
.wins {
  list-style: none;
  padding: 0;
  margin: 0;
}
.wins li {
  position: relative;
  padding-left: 22px;
  margin-bottom: 12px;
}
.wins li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 10px;
  height: 1px;
  background: var(--ink);
}

/* CONTACT */
.contact .links {
  list-style: none;
  padding: 0;
  margin: 14px 0 0;
  display: flex;
  gap: 22px;
  font-family: "Inter", system-ui, sans-serif;
  font-size: 14px;
  letter-spacing: 0.02em;
}

/* LINKS */
a {
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--rule);
  transition: border-color 120ms ease, color 120ms ease;
}
a:hover {
  color: var(--accent);
  border-bottom-color: var(--accent);
}

/* FOOTER */
footer {
  margin-top: 96px;
  padding-top: 22px;
  border-top: 1px solid var(--rule);
  font-family: "Inter", system-ui, sans-serif;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.04em;
}

/* RESPONSIVE */
@media (max-width: 540px) {
  .wrap { padding: 64px 22px 64px; }
  h1 { font-size: 42px; }
  .lede { font-size: 19px; }
  body { font-size: 18px; }
  .venture header { flex-direction: column; align-items: flex-start; gap: 2px; }
  .meta { white-space: normal; }
}

/* SELECTION */
::selection {
  background: #efe6cf;
  color: var(--ink);
}
