/* ---------- RESET ---------- */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  line-height: 1.6;
  color: #2c2c2c;
  background: #faf7f5;
}

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

a {
  text-decoration: none;
  color: inherit;
}


/* ---------- GLOBAL ---------- */

.container {
  width: min(92%, 1100px);
  margin: auto;
}

section {
  padding: 80px 0;
}

h1 {
  font-size: 3rem;
  line-height: 1.2;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

.section-description {
  color: #6b6b6b;
  margin-bottom: 40px;
}

.price {
  font-weight: bold;
  color: #a56c5c;
}


/* ---------- BUTTONS ---------- */

.btn {
  background: #b77b6b;
  color: white;
  padding: 12px 22px;
  border-radius: 30px;
  display: inline-block;
  font-weight: 600;
  transition: 0.2s;
}

.btn:hover {
  background: #965d4f;
}

.btn-outline {
  border: 2px solid #b77b6b;
  padding: 10px 20px;
  border-radius: 30px;
  margin-left: 10px;
  transition: 0.2s;
}

.btn-outline:hover {
  background: #b77b6b;
  color: white;
}


/* ---------- HEADER ---------- */

header {
  background: white;
  border-bottom: 1px solid #eee;
}

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

.logo {
  font-weight: bold;
  font-size: 1.3rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 24px;
}

.nav-links a {
  color: #555;
  font-size: 0.95rem;
}

.nav-links a:hover {
  color: black;
}


/* ---------- HERO ---------- */

.hero {
  padding-top: 90px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-description {
  margin: 20px 0;
  color: #666;
}

.hero-buttons {
  margin-bottom: 20px;
}

.hero-note {
  color: #777;
  font-size: 0.9rem;
}

.hero-image img {
  border-radius: 16px;
}


/* ---------- SERVICES ---------- */

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

.service-card {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #eee;
  transition: 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
}

.service-card p {
  color: #666;
  margin-bottom: 10px;
}


/* ---------- ABOUT ---------- */

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-image img {
  border-radius: 16px;
}

.about-text p {
  margin-bottom: 14px;
  color: #666;
}

.about-list {
  margin-top: 15px;
  padding-left: 20px;
}

.about-list li {
  margin-bottom: 8px;
}


/* ---------- GALLERY ---------- */

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

.gallery-grid img {
  border-radius: 10px;
}


/* ---------- TESTIMONIALS ---------- */

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

.testimonial {
  background: white;
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #eee;
}

.testimonial p {
  color: #666;
  margin-bottom: 10px;
}

.client {
  font-weight: bold;
}


/* ---------- CONTACT ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info p {
  margin-bottom: 10px;
}

.hours-list {
  list-style: none;
}

.hours-list li {
  padding: 6px 0;
  border-bottom: 1px solid #eee;
}


/* ---------- FOOTER ---------- */

footer {
  border-top: 1px solid #eee;
  text-align: center;
  padding: 30px 0;
  color: #777;
}


/* ---------- RESPONSIVE ---------- */

@media (max-width: 900px) {

  .hero-grid,
  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr 1fr;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
  }

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

}

@media (max-width: 600px) {

  .nav {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 2.2rem;
  }

}