body {
  margin:0;
  font-family: 'Manrope', sans-serif;
  background:#faf6f2;
  color:#2d2d2d;
}

.container {
  width:90%;
  max-width:1100px;
  margin:auto;
}

.top-bar {
  text-align:center;
  font-size:13px;
  padding:10px;
  background:#efe7de;
}

.header {
  background:white;
  padding:20px 0;
}

.nav {
  display:flex;
  justify-content:space-between;
  align-items:center;
}

.logo {
  font-weight:700;
  letter-spacing:2px;
}

nav a {
  margin:0 10px;
  text-decoration:none;
  color:#555;
}

.btn {
  padding:10px 20px;
  border-radius:25px;
  text-decoration:none;
}

.primary {
  background:#d9c3ac;
  color:#000;
}

.secondary {
  border:1px solid #ccc;
}

.hero {
  padding:80px 0;
}

.hero-grid {
  display:flex;
  gap:40px;
  align-items:center;
}

.hero-image {
  width:100%;
  height:400px;
  border-radius:20px;
  background:url('https://images.unsplash.com/photo-1515377905703-c4788e51af15') center/cover;
}

.grid-4 {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:20px;
}

.grid-3 {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

.card, .service {
  background:white;
  padding:20px;
  border-radius:15px;
}

.img {
  height:200px;
  border-radius:10px;
  margin-bottom:10px;
}

.img1 {background:url('https://images.unsplash.com/photo-1522335789203-aabd1fc54bc9') center/cover;}
.img2 {background:url('https://images.unsplash.com/photo-1512496015851-a90fb38ba796') center/cover;}
.img3 {background:url('https://images.unsplash.com/photo-1517841905240-472988babdf9') center/cover;}

.studio-grid {
  display:flex;
  gap:40px;
  align-items:center;
}

.studio-img {
  width:100%;
  height:300px;
  border-radius:20px;
  background:url('https://images.unsplash.com/photo-1516975080664-ed2fc6a32937') center/cover;
}

.gallery-grid {
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:15px;
}

.g1, .g2, .g3, .g4 {
  height:200px;
  border-radius:15px;
}

.g1 {background:url('https://images.unsplash.com/photo-1524504388940-b1c1722653e1') center/cover;}
.g2 {background:url('https://images.unsplash.com/photo-1526045612212-70caf35c14df') center/cover;}
.g3 {background:url('https://images.unsplash.com/photo-1529139574466-a303027c1d8b') center/cover;}
.g4 {background:url('https://images.unsplash.com/photo-1494790108377-be9c29b29330') center/cover;}

.cta {
  text-align:center;
  padding:60px 0;
}

.contact form {
  display:flex;
  flex-direction:column;
  gap:10px;
  max-width:400px;
  margin:auto;
}

input, textarea {
  padding:10px;
}

.footer {
  text-align:center;
  padding:30px;
  background:#efe7de;
}

@media(max-width:900px){
  .hero-grid, .studio-grid {
    flex-direction:column;
  }

  .grid-4, .grid-3 {
    grid-template-columns:1fr;
  }
}
