body {
  font-family: 'Playfair Display', serif;
  margin: 0;
  background: #f9f8f7;
  color: #222;
  line-height: 1.6;
}
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  background: #fff;
}
.logo {
  font-family: 'Homemade Apple', cursive;
  font-size: 2rem;
}
nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #444;
}
.hero {
  text-align: center;
  padding: 4rem 2rem;
  background: #fff;
}
.gallery-grid, .shop-grid {
  display: grid;
  gap: 1rem;
  padding: 2rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 2rem;
}
input, textarea, button {
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 5px;
}
button {
  background: #d4af37;
  border: none;
  color: white;
  cursor: pointer;
}
