:root {
  color-scheme: light;
  --background: #f4f1eb;
  --surface: #ebe6dd;
  --text: #181816;
  --muted: #6b675f;
  --line: #cbc5ba;
  --accent: #b64b2f;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--background);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at 85% 5%, rgb(182 75 47 / 8%), transparent 25rem),
    var(--background);
}

a {
  color: inherit;
  text-underline-offset: 0.25rem;
}

.page-shell {
  width: min(100% - 2rem, 72rem);
  min-height: 100svh;
  margin-inline: auto;
  padding: clamp(2rem, 6vw, 5rem) 0 2rem;
  display: grid;
  grid-template-rows: 1fr auto auto;
  gap: clamp(5rem, 12vw, 10rem);
}

.hero {
  align-self: center;
  max-width: 58rem;
}

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

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

h1 {
  max-width: 10ch;
  margin-bottom: 1.5rem;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4rem, 11vw, 8.5rem);
  font-weight: 400;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.intro {
  max-width: 42rem;
  margin-bottom: 2rem;
  color: var(--muted);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.6;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.65rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 650;
  letter-spacing: 0.03em;
}

.status-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 0.2rem rgb(182 75 47 / 14%);
}

.projects {
  padding-top: clamp(2rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(8rem, 0.5fr) 1.5fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

h2 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.project-list {
  margin: 0;
  padding: 0;
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.project-list li {
  display: grid;
  grid-template-columns: minmax(3rem, 0.35fr) 1.5fr auto;
  gap: 1rem;
  align-items: center;
  padding: 1.35rem 0;
  border-top: 1px solid var(--line);
}

.project-list li > span {
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-list p {
  margin-bottom: 0;
  font-size: clamp(1rem, 2vw, 1.15rem);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
}

footer p {
  margin-bottom: 0;
}

@media (max-width: 40rem) {
  .section-heading {
    grid-template-columns: 1fr;
  }

  .project-list li {
    grid-template-columns: 2rem 1fr;
  }

  .project-list li > span:last-child {
    display: none;
  }

  footer {
    flex-direction: column;
  }
}

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

