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

body {
  font-family: Arial, Helvetica, sans-serif;
  background: #fffaf7;
  color: #1f2933;
  line-height: 1.6;
}

.navbar {
  width: 100%;
  padding: 18px 7%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 3px 14px rgba(0,0,0,0.08);
  position: sticky;
  top: 0;
  z-index: 10;
}

.brand {
  font-size: 28px;
  font-weight: 700;
  color: #132238;
}

.brand span {
  color: #c99755;
  font-family: Georgia, serif;
  font-style: italic;
}

.navbar ul {
  list-style: none;
  display: flex;
  gap: 28px;
}

.navbar a {
  text-decoration: none;
  color: #132238;
  font-weight: 600;
}

.navbar a:hover {
  color: #c99755;
}

.hero img {
  width: 100%;
  display: block;
}

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

.intro {
  background: #ffffff;
}

.intro h1,
section h2 {
  font-size: 38px;
  color: #132238;
  margin-bottom: 18px;
}

.intro p,
.why p,
.contact p {
  max-width: 850px;
  margin: 0 auto 30px;
  font-size: 18px;
}

.btn,
button {
  background: #132238;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  border: none;
  font-weight: 700;
  cursor: pointer;
}

.btn:hover,
button:hover {
  background: #c99755;
}

.services {
  background: #f8efe9;
}

.service-grid {
  margin-top: 35px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.service-card {
  background: #ffffff;
  padding: 35px 25px;
  border-radius: 22px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.icon {
  font-size: 42px;
  margin-bottom: 15px;
}

.service-card h3 {
  color: #b87979;
  margin-bottom: 12px;
  font-size: 24px;
}

.gallery {
  background: #ffffff;
}

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

.gallery-box {
  min-height: 250px;
  border-radius: 24px;
  display: flex;
  align-items: end;
  justify-content: center;
  padding: 25px;
  color: white;
  background-size: cover;
  background-position: center;
}

.gallery-box h3 {
  width: 100%;
  padding: 15px;
  border-radius: 18px;
  background: rgba(19, 34, 56, 0.78);
}

.home {
  background-image: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.25)), url('https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=900&q=80');
}

.dress {
  background-image: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.25)), url('https://images.unsplash.com/photo-1515372039744-b8f02a3ae446?auto=format&fit=crop&w=900&q=80');
}

.web {
  background-image: linear-gradient(rgba(0,0,0,.15), rgba(0,0,0,.25)), url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=900&q=80');
}

.why {
  background: #132238;
  color: #ffffff;
}

.why h2 {
  color: #ffffff;
}

.contact {
  background: #f8efe9;
}

form {
  max-width: 650px;
  margin: 35px auto 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

input,
select,
textarea {
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 12px;
  font-size: 16px;
}

.form-status {
  font-weight: 700;
  margin-top: 8px;
}

.form-status.success {
  color: #166534;
}

.form-status.error {
  color: #b91c1c;
}

footer {
  background: #111827;
  color: #ffffff;
  text-align: center;
  padding: 25px;
}

@media (max-width: 850px) {
  .navbar {
    flex-direction: column;
    gap: 15px;
  }

  .navbar ul {
    flex-wrap: wrap;
    justify-content: center;
  }

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

  .intro h1,
  section h2 {
    font-size: 30px;
  }
}
