:root {
  --bg: #f7f7f5;
  --text: #1c1c1c;
  --accent: #8b6f4e;
}

* {
  margin: 0;
  box-sizing: border-box;
}

body {
  font-family: Inter, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

.header {
  display: flex;
  justify-content: space-between;
  padding: 24px 60px;
  position: fixed;
  width: 100%;
  background: rgba(247,247,245,0.9);
}

.logo {
  font-family: Playfair Display;
  font-size: 22px;
}

nav a {
  margin-left: 32px;
  text-decoration: none;
  color: var(--text);
}

.hero {
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.hero-overlay {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 60px;
  background: rgba(0,0,0,0.35);
  color: white;
}

.hero h1 {
  font-family: Playfair Display;
  font-size: 52px;
  max-width: 700px;
}

.intro, .page {
  padding: 140px 60px 80px;
  max-width: 900px;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit,minmax(280px,1fr));
  gap: 24px;
}

.projects-grid img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.footer {
  padding: 40px;
  text-align: center;
  font-size: 14px;
}
