:root {
  --cream-bg: #faf1e4;
  --cream-card: #fffaf1;
  --ink: #3d3226;
  --ink-soft: #6b5d4d;
  --terracotta: #c1694f;
  --terracotta-soft: #e8b09b;
  --sage: #8a9a6b;
  --hairline: rgba(61, 50, 38, 0.12);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Nunito Sans", -apple-system, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream-bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-weight: 400;
  line-height: 1.6;
  position: relative;
  overflow-x: hidden;
}

/* Weiche, statische Farbflaechen im Hintergrund - kein filter:blur() und
   keine Animation, damit es trotz "organischem" Look leichtgewichtig bleibt. */
.blob {
  position: absolute;
  border-radius: 50%;
  z-index: 0;
  pointer-events: none;
}
.blob-a {
  top: -180px;
  right: -160px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(193, 105, 79, 0.16) 0%, rgba(193, 105, 79, 0) 68%);
}
.blob-b {
  top: 40%;
  left: -220px;
  width: 520px;
  height: 520px;
  background: radial-gradient(circle, rgba(138, 154, 107, 0.16) 0%, rgba(138, 154, 107, 0) 68%);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 860px;
  margin: 0 auto;
  padding: 36px 28px 0;
}

.wordmark {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 0.5px;
}

.site-nav {
  display: flex;
  gap: 28px;
}

.site-nav a {
  color: var(--ink-soft);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: color 0.15s ease, border-color 0.15s ease;
}

.site-nav a:hover {
  color: var(--terracotta);
  border-color: var(--terracotta-soft);
}

main {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 28px;
}

.hero {
  padding: 96px 0 72px;
}

.kicker {
  margin: 0 0 14px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: var(--terracotta);
}

.hero h1 {
  margin: 0 0 20px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 56px;
  line-height: 1.08;
  letter-spacing: -0.5px;
}

.hero h1 em {
  font-style: italic;
  color: var(--terracotta);
}

.lead {
  margin: 0;
  max-width: 480px;
  font-size: 19px;
  font-weight: 300;
  color: var(--ink-soft);
}

.about,
.projects {
  padding: 56px 0;
  border-top: 1px solid var(--hairline);
}

.about h2,
.projects h2 {
  margin: 0 0 22px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 30px;
}

.about p {
  max-width: 640px;
  margin: 0 0 18px;
  font-size: 16.5px;
  color: var(--ink-soft);
}

.about .signoff {
  color: var(--ink);
  font-weight: 600;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.project-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  background: var(--cream-card);
  border: 1px solid var(--hairline);
  border-radius: 20px;
  padding: 26px;
  text-decoration: none;
  color: var(--ink);
  box-shadow: 0 1px 2px rgba(61, 50, 38, 0.04);
  transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.project-card:not(.project-card-empty):hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(61, 50, 38, 0.1);
  border-color: var(--terracotta-soft);
}

.project-icon {
  font-size: 26px;
}

.project-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 20px;
}

.project-desc {
  font-size: 14.5px;
  color: var(--ink-soft);
}

.project-link {
  margin-top: 4px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: var(--terracotta);
}

.project-card-empty {
  align-items: center;
  justify-content: center;
  text-align: center;
  border-style: dashed;
  background: transparent;
  box-shadow: none;
}

.project-card-empty .project-desc {
  color: var(--ink-soft);
  opacity: 0.7;
}

.site-footer {
  max-width: 860px;
  margin: 0 auto;
  padding: 40px 28px 56px;
  font-size: 13px;
  color: var(--ink-soft);
  border-top: 1px solid var(--hairline);
}

@media (max-width: 560px) {
  .hero {
    padding: 64px 0 48px;
  }
  .hero h1 {
    font-size: 40px;
  }
  .site-header {
    padding-top: 24px;
  }
}
