* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #141414;
  font-family: "Geist Mono", system-ui, sans-serif;
}

.page {
  max-width: 528px;
  margin: 0 auto;
  padding-inline: 24px;
  display: flex;
  flex-direction: column;
}

.section {
  align-self: stretch;
}

/* Typography */

.eyebrow {
  font-size: 11px;
  line-height: 14.4px;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  font-weight: 700;
  color: #888888;
}

.body-text {
  font-size: 12px;
  line-height: 18.6px;
  letter-spacing: 0.1px;
  font-weight: 400;
  color: #f0f0f0;
}

.body-text--muted {
  color: #888888;
}

.plain-list {
  list-style: none;
}

/* Hero */

.hero {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-top: 64px;
  padding-bottom: 32px;
}

.hero-copy {
  white-space: pre-wrap;
}

/* Stacked full-width sections (Services, Tools) */

.stack {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.tools-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #f0f0f0;
}

.tool-sep {
  width: 2px;
  height: 2px;
  flex-shrink: 0;
  background-color: #f0f0f0;
}

/* Services / footer two-column layout */

.columns {
  display: flex;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  flex: 1 1 0;
  min-width: 0;
}

.column .plain-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}


/* Projects */

.projects {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding-top: 32px;
  padding-bottom: 32px;
}

.project-list {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 32px;
  width: 100%;
}

.project-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid #242424;
  text-decoration: none;
}

.project-card:hover {
  border-color: #83d2cd;
}

.project-image {
  align-self: stretch;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: 50%;
}

.project-info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  align-self: stretch;
  padding: 8px;
  background-color: #181818;
}

.project-title {
  color: #f0f0f0;
}

/* Footer links */

.footer {
  padding-top: 32px;
  padding-bottom: 64px;
}

.link-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 12px;
  line-height: 16px;
  letter-spacing: 0.1px;
  color: #f0f0f0;
}

.link {
  color: inherit;
  text-decoration: underline 1px dotted #888888;
  text-underline-offset: 2px;
  transition: color 150ms ease, background-color 150ms ease, text-decoration-color 150ms ease;
}

.link:hover {
  background-color: rgba(131, 210, 205, 0.1);
  color: #83d2cd;
  text-decoration-color: #83d2cd;
}
