:root {
  color-scheme: dark;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-synthesis: none;
  --background: #0b0b0a;
  --surface: #151513;
  --surface-hover: #1b1b18;
  --text: #f2efe7;
  --muted: #a7a39a;
  --line: #302f2a;
  --accent: #e59b4a;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background:
    radial-gradient(circle at 80% 0%, rgb(229 155 74 / 9%), transparent 34rem),
    var(--background);
  color: var(--text);
}

.page-shell {
  width: min(100% - 2rem, 68rem);
  margin: 0 auto;
}

.hero {
  display: grid;
  align-content: center;
  min-height: 70vh;
  padding: 5rem 0;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.status {
  margin: 0 0 1rem;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 12ch;
  margin-bottom: 1.5rem;
  font-size: clamp(3rem, 11vw, 7rem);
  line-height: 0.9;
  letter-spacing: -0.06em;
}

.intro {
  max-width: 38rem;
  margin-bottom: 0;
  color: var(--muted);
  font-size: clamp(1.1rem, 2.5vw, 1.45rem);
  line-height: 1.6;
}

.projects {
  padding: 7rem 0;
}

.section-heading {
  margin-bottom: 2rem;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2rem, 5vw, 3.25rem);
  letter-spacing: -0.04em;
}

.project-card {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: var(--surface);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.project-card:hover {
  transform: translateY(-3px);
  border-color: #4a463e;
  background: var(--surface-hover);
}

.project-card h3 {
  margin-bottom: 0.75rem;
  font-size: clamp(2rem, 6vw, 3.75rem);
  letter-spacing: -0.04em;
}

.project-card p:not(.status) {
  max-width: 34rem;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.6;
}

.card-mark {
  color: #4c4942;
  font-size: 1rem;
  font-variant-numeric: tabular-nums;
}

.future-projects {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 1rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.future-projects p,
.future-projects span {
  margin: 0;
}

.footer {
  padding: 5rem 0 2rem;
  border-top: 1px solid var(--line);
}

.footer > p:not(.eyebrow, .copyright) {
  color: var(--muted);
  font-size: 1.1rem;
}

.copyright {
  margin: 5rem 0 0;
  color: #77736b;
  font-size: 0.85rem;
}

@media (max-width: 40rem) {
  .hero {
    min-height: 62vh;
  }

  .projects {
    padding: 5rem 0;
  }

  .future-projects {
    flex-direction: column;
    gap: 0.5rem;
  }
}

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

  .project-card {
    transition: none;
  }
}
