:root {
  --bg: #fdfcfb;
  --ink: #1a1c19;
  --muted: #6b705c;
  --soft: #7a7a7a;
  --line: rgba(26, 28, 25, 0.1);
  --accent: #2f4f46;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  line-height: 1.6;
}

a { color: inherit; }

/* Header */
.site-header {
  border-bottom: 1px solid var(--line);
}
.site-header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 24px 6vw;
}
.brand {
  font-family: "Fraunces", Georgia, serif;
  font-size: 22px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-decoration: none;
}

/* Hero */
.hero {
  max-width: 1100px;
  margin: 0 auto;
  padding: 12vh 6vw 6vh;
}
.eyebrow {
  display: block;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}
.hero h1 {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 400;
  font-size: clamp(40px, 6vw, 72px);
  line-height: 1.05;
  margin: 0 0 16px;
  max-width: 820px;
}
.tagline {
  font-size: 18px;
  color: #4a4a4a;
  max-width: 560px;
  margin: 0;
}

/* Projects */
.projects {
  max-width: 1100px;
  margin: 0 auto;
  padding: 4vh 6vw 12vh;
}
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.card {
  display: block;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 36px 32px;
  text-decoration: none;
  background: #fff;
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}
.card:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(26, 28, 25, 0.06);
}
.card-eyebrow {
  display: block;
  font-family: ui-monospace, Menlo, monospace;
  font-size: 11px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 14px;
}
.card-title {
  font-family: "Fraunces", Georgia, serif;
  font-weight: 500;
  font-size: 28px;
  line-height: 1.15;
  margin: 0 0 10px;
}
.card-desc {
  font-size: 15px;
  color: var(--soft);
  margin: 0 0 24px;
}
.card-cta {
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}

/* Footer */
.site-footer {
  border-top: 1px solid var(--line);
}
.site-footer p {
  max-width: 1100px;
  margin: 0 auto;
  padding: 28px 6vw;
  font-size: 13px;
  color: var(--soft);
}
