
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Inter', sans-serif;
  color: #111;
  background: #fff;
  line-height: 1.6;
}
a { text-decoration: none; color: inherit; }
.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 60px;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.4rem; }
nav a { margin-left: 30px; font-size: 0.9rem; }
/* Hero */
.hero {
  height: 80vh;
  background: #f2f2f2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  max-width: 800px;
  margin-bottom: 20px;
}
.hero-text p { margin-bottom: 30px; letter-spacing: 1px; }
.btn {
  padding: 14px 32px;
  border: 1px solid #111;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}
.btn:hover { background: #111; color: #fff; }
.secondary { border: none; margin-top: 30px; display: inline-block; }
.portfolio-preview { padding: 100px 60px; text-align: center; }
.portfolio-preview h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 50px; }
.grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.img-box { background: #ddd; height: 300px; }
.cta { background: #fafafa; padding: 80px 20px; text-align: center; }
.cta h2 { font-family: 'Playfair Display', serif; font-size: 2rem; margin-bottom: 30px; }
footer { padding: 40px; text-align: center; font-size: 0.8rem; }
@media (max-width: 768px) {
  .nav { flex-direction: column; }
  nav { margin-top: 20px; }
  .hero-text h1 { font-size: 2.2rem; padding: 0 20px; }
}
