* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: #2b2b2b;
  background: #fffaf7;
  line-height: 1.6;
}

.hero {
  min-height: 90vh;
  background: linear-gradient(rgba(0,0,0,.45), rgba(0,0,0,.45)),
              url("https://images.unsplash.com/photo-1519741497674-611481863552?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: white;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 8%;
}

nav h2 {
  margin: 0;
  font-size: 22px;
}

nav a {
  color: white;
  text-decoration: none;
  margin-left: 18px;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

.hero-content {
  max-width: 750px;
  padding: 120px 8%;
}

.hero-content h1 {
  font-size: 58px;
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 22px;
  margin-bottom: 30px;
}

.button,
button {
  background: #c97b63;
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  border: none;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
}

.button:hover,
button:hover {
  background: #a65f4a;
}

.section {
  padding: 70px 8%;
  text-align: center;
}

.section h2 {
  font-size: 36px;
  margin-bottom: 20px;
  color: #7b3f35;
}

.section p {
  max-width: 850px;
  margin: 0 auto 25px;
  font-size: 18px;
}

.light {
  background: #f7e8e1;
}

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

.card {
  background: white;
  padding: 25px;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

.card h3 {
  color: #7b3f35;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 30px;
}

.photo-box {
  height: 210px;
  border-radius: 18px;
  background: linear-gradient(135deg, #d7a08a, #8c5b50);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  font-weight: bold;
  box-shadow: 0 4px 14px rgba(0,0,0,.10);
}

form {
  max-width: 600px;
  margin: 25px auto 0;
  text-align: left;
  background: white;
  padding: 30px;
  border-radius: 18px;
  box-shadow: 0 4px 14px rgba(0,0,0,.08);
}

label {
  display: block;
  font-weight: bold;
  margin-top: 15px;
}

input,
textarea {
  width: 100%;
  padding: 12px;
  margin-top: 8px;
  border: 1px solid #ccc;
  border-radius: 10px;
  font-size: 16px;
}

textarea {
  min-height: 120px;
}

footer {
  background: #2b2b2b;
  color: white;
  text-align: center;
  padding: 25px;
}

@media (max-width: 900px) {
  nav {
    flex-direction: column;
    gap: 15px;
  }

  nav a {
    display: inline-block;
    margin: 6px;
  }

  .hero-content h1 {
    font-size: 40px;
  }

  .cards,
  .gallery {
    grid-template-columns: 1fr;
  }
}
