body {
  margin: 0;
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  background: #f4f7f5;
  color: #2c3e36;
  line-height: 1.6;
}

.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(255,255,255,0.35), rgba(255,255,255,0.35)),
    url("images/mtnmistesthetics.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 2rem;
}

.nav {
  position: absolute;
  top: 1.5rem;
  left: 2rem;
  right: 2rem;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 0.9rem 1.25rem;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 1rem;
}

.nav a {
  color: #2c3e36;
  text-decoration: none;
  font-weight: 600;
}

.nav a:hover {
  color: #6a8774;
}

.hero-content {
  text-align: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 3rem;
  border-radius: 20px;
  max-width: 760px;
  margin: 6rem 1rem 0;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #6a8774;
  font-size: 0.85rem;
  font-weight: 700;
  margin: 0 0 1rem;
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 5rem);
  margin: 0 0 1rem;
  font-weight: 300;
  letter-spacing: 0.04em;
}

.hero-copy {
  font-size: 1.25rem;
  max-width: 620px;
  margin: 0 auto 2rem;
}

.button {
  display: inline-block;
  background: #7c9986;
  color: white;
  text-decoration: none;
  padding: 14px 32px;
  border-radius: 999px;
  font-weight: 700;
  transition: all 0.3s ease;
}

.button:hover {
  background: #6a8774;
  transform: translateY(-2px);
}

.services {
  padding: 5rem 2rem;
  max-width: 1200px;
  margin: auto;
}

.services h2,
.contact h2,
.about h2 {
  text-align: center;
  font-size: 2.4rem;
  margin: 0 0 1rem;
  font-weight: 400;
}

.section-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3rem;
  color: #52685c;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: white;
  padding: 2rem;
  border-radius: 16px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.service-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.4rem;
}

.service-card p {
  color: #52685c;
  margin-bottom: 1.5rem;
}

.service-card span {
  color: #7c9986;
  font-size: 1.6rem;
  font-weight: 800;
}

.about {
  padding: 0 2rem 5rem;
}

.about-card {
  max-width: 850px;
  margin: auto;
  background: #ffffff;
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 5px 15px rgba(0,0,0,.08);
}

.about-card p {
  font-size: 1.15rem;
  color: #52685c;
}

.contact {
  text-align: center;
  padding: 5rem 2rem;
  background: #e8efeb;
}

.instagram {
  margin-top: 1.25rem;
  color: #52685c;
  font-weight: 700;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #2c3e36;
  color: white;
}

@media (max-width: 700px) {
  .nav {
    left: 1rem;
    right: 1rem;
    border-radius: 20px;
    flex-direction: column;
    gap: 0.5rem;
  }

  .nav-links {
    font-size: 0.9rem;
  }

  .hero {
    padding: 1rem;
  }

  .hero-content {
    padding: 2rem;
    margin-top: 7rem;
  }
}
