:root {
  --paper: #f4f1ea;
  --ink: #1c1916;
  --muted: #5c564e;
  --line: rgba(28, 25, 22, 0.12);
  --accent: #2f5d50;
  --accent-soft: #d8e4df;
  --warm: #b86b2a;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(900px 500px at 90% -10%, rgba(47, 93, 80, 0.16), transparent 55%),
    radial-gradient(700px 420px at -10% 30%, rgba(184, 107, 42, 0.12), transparent 50%),
    linear-gradient(180deg, #faf7f1 0%, var(--paper) 55%, #ebe4d6 100%);
}

.atmosphere {
  position: fixed;
  inset: auto -10% 20% auto;
  width: min(55vw, 420px);
  height: min(55vw, 420px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(47, 93, 80, 0.18), transparent 65%);
  filter: blur(12px);
  pointer-events: none;
  animation: drift 16s ease-in-out infinite alternate;
}

@keyframes drift {
  from { transform: translate(0, 0); }
  to { transform: translate(-24px, 18px); }
}

.wrap {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
  padding: clamp(2.5rem, 8vw, 5rem) clamp(1.1rem, 4vw, 1.75rem) 2rem;
}

.eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 600;
}

.brand {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.4rem, 8vw, 3.6rem);
  line-height: 1;
  letter-spacing: -0.03em;
}

.dot { color: var(--warm); }

.lede {
  margin: 0 0 2.25rem;
  max-width: 30rem;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.5;
}

.projects {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.project {
  display: grid;
  gap: 0.35rem;
  padding: 1.15rem 1.2rem;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 252, 246, 0.72);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease;
}

.project:hover {
  transform: translateY(-2px);
  border-color: rgba(47, 93, 80, 0.35);
  background: #fffdf8;
}

.name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
}

.desc {
  color: var(--muted);
  line-height: 1.45;
  font-size: 0.98rem;
}

.go {
  margin-top: 0.25rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.foot {
  max-width: 42rem;
  margin: 0 auto;
  padding: 1rem clamp(1.1rem, 4vw, 1.75rem) 2.5rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.foot p { margin: 0; }

@media (prefers-reduced-motion: reduce) {
  .atmosphere { animation: none; }
  .project { transition: none; }
}
