body {
  margin: 0;
  font-family: 'Montserrat', Arial, sans-serif;
  background: #fff;
  color: #222;
}

.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 5vw 12px 5vw;
  background: #fff;
  border-bottom: 1px solid #eee;
}
.logo {
  min-width: 160px;
}
.logo svg {
  width: 320px !important;
  height: 96px !important;
  max-width: 90vw;
}
.nav a {
  color: #222;
  text-decoration: none;
  margin-left: 32px;
  font-weight: 500;
  font-size: 1rem;
  transition: color 0.2s;
}
.nav a:hover {
  color: #778868;
}

.intro {
  text-align: center;
  padding: 60px 10vw 40px 10vw;
  background: #f8f8f6;
}
.intro h1 {
  font-family: 'Garamond', serif;
  font-size: 2.5rem;
  margin-bottom: 12px;
  color: #222;
}
.intro p {
  font-size: 1.2rem;
  margin-bottom: 28px;
}
.cta {
  display: inline-block;
  background: #778868;
  color: #fff;
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 1.1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.cta:hover {
  background: #55664a;
}

.about {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 5vw;
  gap: 40px;
  background: #fff;
}
.about-photo img {
  width: 320px;
  max-width: 90vw;
  border-radius: 18px;
  box-shadow: 0 4px 24px rgba(119,136,104,0.08);
}
.about-text {
  max-width: 480px;
}
.about-text h2 {
  font-family: 'Garamond', serif;
  font-size: 2rem;
  margin-bottom: 12px;
}
.about-text ul {
  padding-left: 18px;
  margin-top: 18px;
}
.about-text li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.services {
  background: #f8f8f6;
  padding: 60px 5vw;
}
.services h2 {
  font-family: 'Garamond', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 32px;
}
.service-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
}
.service {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 12px rgba(119,136,104,0.06);
  padding: 32px 28px;
  max-width: 340px;
  min-width: 240px;
  flex: 1 1 240px;
}
.service h3 {
  color: #778868;
  margin-bottom: 12px;
  font-size: 1.2rem;
}

.why {
  padding: 60px 5vw;
  background: #fff;
}
.why h2 {
  font-family: 'Garamond', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 32px;
}
.why-list {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}
.why-item {
  background: #f8f8f6;
  border-radius: 14px;
  padding: 24px 20px;
  min-width: 160px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(119,136,104,0.04);
}
.why-item .icon {
  font-size: 1.7rem;
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}

.reviews {
  background: #f8f8f6;
  padding: 60px 5vw;
}
.reviews h2 {
  font-family: 'Garamond', serif;
  font-size: 2rem;
  text-align: center;
  margin-bottom: 32px;
}
.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: center;
  align-items: center;
}
.reviews-row {
  display: flex;
  flex-direction: row;
  gap: 24px;
  justify-content: center;
  align-items: flex-end;
}
.review-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(119,136,104,0.10);
  border: 1px solid #e0e4dd;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  overflow: hidden;
  width: fit-content;
  max-height: 400px;
  overflow-y: auto;
}
.review-vertical {
  width: 180px;
  height: auto;
  max-height: 384px;
  object-fit: contain;
  display: block;
}
.review-horizontal {
  width: 320px;
  height: auto;
  max-height: 384px;
  object-fit: contain;
  display: block;
}
.review-card img {
  width: 100%;
  height: auto;
  max-height: 384px;
  object-fit: contain;
  display: block;
}

.contacts {
  padding: 60px 5vw 40px 5vw;
  background: #fff;
  text-align: center;
}
.contacts h2 {
  font-family: 'Garamond', serif;
  font-size: 2rem;
  margin-bottom: 24px;
}
.contacts-list {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.contact-btn {
  display: inline-block;
  background: #778868;
  color: #fff;
  padding: 12px 32px;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.2s;
}
.contact-btn:hover {
  background: #55664a;
}

.footer {
  background: #222;
  color: #fff;
  padding: 32px 5vw 16px 5vw;
  text-align: center;
}
.footer-links {
  margin-bottom: 10px;
}
.footer-links a {
  color: #fff;
  text-decoration: underline;
  margin: 0 8px;
  font-size: 1rem;
}
.footer-links span {
  color: #778868;
  margin: 0 4px;
}
.footer-copy {
  font-size: 0.95rem;
  color: #aaa;
}

@media (max-width: 900px) {
  .about, .service-list, .why-list, .reviews-list {
    flex-direction: column;
    align-items: center;
  }
  .header {
    flex-direction: column;
    gap: 16px;
    padding: 18px 3vw 8px 3vw;
  }
  .nav a {
    margin-left: 18px;
    font-size: 0.98rem;
  }
  .reviews-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
}

@media (max-width: 600px) {
  .header, .intro, .about, .services, .why, .reviews, .contacts, .footer {
    padding-left: 2vw;
    padding-right: 2vw;
  }
  .about-photo img {
    width: 98vw;
    max-width: 98vw;
  }
  .service {
    min-width: 0;
    width: 100%;
    box-sizing: border-box;
  }
  .reviews-row {
    flex-direction: column;
    align-items: center;
    gap: 18px;
  }
  .review-card {
    width: 98vw;
    max-width: 340px;
    min-width: 0;
    padding: 4px;
    max-height: 400px;
  }
  .review-vertical, .review-horizontal, .review-card img {
    width: 100%;
    max-width: 340px;
    height: auto;
    max-height: 384px;
  }
} 