:root {
  --cream: #f4f1e9;
  --ink: #14120f;
  --accent: #b9a4ff;
  --dark: #16150f;
  --muted: #6b6a63;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  background: var(--cream);
  color: var(--ink);
  line-height: 1.5;
}

h1, h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  margin: 0;
}

em { font-style: italic; color: var(--accent); }

a { color: inherit; text-decoration: none; }

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.back-link { font-size: 0.9rem; opacity: 0.75; }
.back-link:hover { opacity: 1; text-decoration: underline; }

.site-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  font-weight: 700;
  color: var(--muted);
}

.eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  font-weight: 700;
  color: var(--muted);
  margin-bottom: 16px;
}

.hero {
  padding: 90px 40px 60px;
  max-width: 760px;
}
.hero h1 { font-size: 3.2rem; line-height: 1.1; }
.hero-copy { margin-top: 24px; font-size: 1.1rem; color: var(--muted); max-width: 560px; }

.projects-section {
  background: var(--dark);
  color: var(--cream);
  padding: 80px 40px 100px;
}
.projects-section .eyebrow { color: rgba(255,255,255,0.55); }
.projects-section h2 { font-size: 2.2rem; max-width: 620px; }

.placeholder-box {
  margin-top: 32px;
  padding: 28px;
  max-width: 480px;
  border: 1px dashed rgba(255,255,255,0.2);
  border-radius: 12px;
}
.placeholder-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  background: var(--accent);
  color: var(--ink);
  padding: 4px 10px;
  border-radius: 999px;
}
.placeholder-box p { margin: 14px 0 0; color: rgba(255,255,255,0.65); }

.site-footer {
  padding: 30px 40px;
  font-size: 0.85rem;
  color: var(--muted);
}

@media (max-width: 640px) {
  .site-header { flex-direction: column; gap: 10px; align-items: flex-start; }
  .hero h1 { font-size: 2.3rem; }
  .projects-section h2 { font-size: 1.8rem; }
}
