:root {
  --bg: #0e1825;
  --bg-raised: #162030;
  --rule: rgba(255,255,255,0.1);
  --accent: #c4547a;
  --white: #fff;
  --muted: rgba(255,255,255,0.5);
  --mono: 'IBM Plex Mono', monospace;
}

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

body {
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  background: var(--bg);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* NAV */
header {
  border-bottom: 1px solid var(--rule);
  padding: 1.8rem 2.5rem;
}

.logo img {
  height: 2rem;
  width: auto;
}

.wordmark {
  font-family: var(--mono);
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  color: var(--white);
  text-decoration: none;
}

.wordmark span { color: var(--accent); }

header a.contact {
  font-size: 0.85rem;
  color: var(--muted);
  text-decoration: none;
}

header a.contact:hover { color: var(--white); }

/* MAIN */
main {
  flex: 1;
  max-width: 860px;
  padding: 5rem 2.5rem 4rem;
}

.statement {
  font-size: clamp(1.9rem, 3.8vw, 2.9rem);
  font-weight: 300;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin-bottom: 3rem;
  max-width: 700px;
  color: var(--white);
}

.statement strong {
  font-weight: 700;
  color: var(--accent);
}

.body-text a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.body-text a:hover { color: var(--accent); }

.body-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--muted);
  font-weight: 300;
  max-width: 560px;
  margin-bottom: 4rem;
}

/* WORK LIST */
.work-list {
  border-top: 1px solid var(--rule);
  max-width: 660px;
}

.work-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--rule);
  gap: 2rem;
}

.work-meta {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: rgba(255,255,255,0.25);
  white-space: nowrap;
  padding-top: 0.1rem;
}

.work-name {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  flex: 1;
  text-decoration: none;
}

.work-name:hover { color: var(--accent); }

.work-desc {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  text-align: right;
  max-width: 280px;
  line-height: 1.5;
}

.cta-link {
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid var(--accent);
  padding-bottom: 0.05rem;
}

.cta-link:hover { opacity: 0.7; }

/* FOOTER */
footer {
  border-top: 1px solid var(--rule);
  padding: 1.5rem 2.5rem;
}

footer p, footer a {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: rgba(255,255,255,0.3);
  text-decoration: none;
  letter-spacing: 0.02em;
}

footer a:hover { color: var(--white); }

@media (max-width: 600px) {
  header { padding: 1.5rem; }
  main { padding: 3rem 1.5rem; }
  .work-item { flex-direction: column; gap: 0.3rem; }
  .work-desc { text-align: left; max-width: 100%; }
  footer { padding: 1.5rem; }
  footer .d-flex { flex-direction: column; gap: 0.4rem; }
}
