:root {
  --bg: #fbf3ed;
  --ink: #111111;
  --ink-2: #373737;
  --line: #e7e0db;
  --accent: #474b98;
  --muted-ink: #4a4a4a;
  --hairline: #e5e2de;
  --accent-red: #c0182d;
  --accent-navy: #242f6b;
  --chip-bg: #f6f2ee;
  --chip-border: #d9d4cf;
  --inverse: #ffffff;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --sans: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --serif: 'Source Serif 4', Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 var(--space-4) 0;
  font-weight: 700;
  line-height: 1.2;
}
p {
  margin: 0 0 var(--space-5);
}
a {
  color: currentColor;
  text-decoration: underline;
  text-underline-offset: 2px;
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 32px;
}

.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
}
.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: var(--space-3);
  font-family: var(--sans);
  font-size: 14px;
}
.logo {
  font-weight: 600;
  text-decoration: none;
}
.logo .dotcom {
  opacity: 0.6;
  font-weight: 400;
}
.nav-links {
  display: flex;
  gap: var(--space-4);
}
.nav-links a {
  opacity: 0.8;
  text-decoration: none;
}
.nav-links a:hover {
  opacity: 1;
  text-decoration: underline;
}

.hero {
  padding-block: clamp(64px, 15vw, 128px);
  text-align: center;
}
.hero h1 {
  font-size: clamp(32px, 6vw, 56px);
  font-weight: 700;
}
.hero h1 .eyebrow {
  font-weight: 400;
}
.hero h1 .super {
  color: var(--accent);
}
.subhead {
  font-family: var(--sans);
  font-size: clamp(18px, 2.5vw, 22px);
  max-width: 650px;
  margin-inline: auto;
  color: var(--ink-2);
}

.projects {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-5) var(--space-5);
  margin-bottom: var(--space-6);
}
@media (max-width: 720px) {
  .projects {
    grid-template-columns: 1fr;
  }
}

.project--video {
  position: relative;
  min-height: 340px;
  background: #4a4a4a;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
}
.project__label {
  position: absolute;
  top: var(--space-3);
  left: var(--space-3);
  background: var(--accent-red);
  color: var(--inverse);
  padding: 2px 8px;
  font: 600 0.75rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: 3px;
}

.article {
  background: #fff;
  border: 1px solid var(--hairline);
  display: grid;
  grid-template-rows: auto 1fr auto;
  transition: background 0.15s;
}
.article:hover {
  background: #fcf8f4;
}
.article__head {
  padding: var(--space-4);
  border-bottom: 1px solid var(--hairline);
}
.article__title {
  margin: 0 0 var(--space-1) 0;
  font-size: clamp(1.4rem, 2vw, 1.625rem);
  line-height: 1.1;
  font-weight: 600;
}
.article:hover .article__title {
  text-decoration: underline;
}
.article__meta {
  margin: 0;
  font: 600 0.8125rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--muted-ink);
}
.article__meta strong {
  font-weight: 700;
  color: var(--ink);
}
.article__excerpt {
  position: relative;
  padding: var(--space-4);
  border-bottom: 1px solid var(--hairline);
  font-size: clamp(1.0625rem, 1.2vw, 1.25rem);
  line-height: 1.55;
}
.article__more {
  position: absolute;
  right: var(--space-4);
  bottom: var(--space-4);
  font: 700 1rem/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.02em;
}
.article__more::after {
  content: ' →';
}
.article__more:hover {
  transform: translateX(1px);
}
.article__tags {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding-left: 16px;
  background: #fff;
  gap: 0;
}
.article__tag {
  font: 600 0.9375rem/1.2 ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.02em;
  padding: 10px 14px;
  border-left: 1px solid var(--hairline);
}
.article__tag:first-child {
  border-left: none;
  padding-left: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 14px;
  padding-block: var(--space-4);
  text-align: center;
  color: var(--ink-2);
}

@media (max-width: 600px) {
  .container {
    padding-inline: 20px;
  }
  .nav-links {
    display: none;
  }
}
