/* style.css */
* {
  margin: 0; padding: 0; box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
}
.container {
  width: 90%; max-width: 1200px; margin: 0 auto;
}

/* Header */
.header {
  background: #ffffff;
  border-bottom: 1px solid #e0e0e0;
  position: sticky; top: 0; z-index: 100;
}
.header__inner {
  display: flex; justify-content: space-between; align-items: center; padding: 1rem 0;
}
.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem; color: #1a1a1a; text-decoration: none;
}
.nav__list {
  display: flex; gap: 2rem;
}
.nav__list a {
  color: #1a1a1a; text-decoration: none; font-weight: 500;
  position: relative;
}
.nav__list a::after {
  content: ''; display: block; width: 0; height: 2px;
  background: #b99868; transition: width .3s;
  position: absolute; bottom: -4px; left: 0;
}
.nav__list a:hover::after {
  width: 100%;
}

/* Hero */
.hero {
  background: url('img/hero-cond.jpg') center/cover no-repeat;
  color: #ffffff; text-align: center; padding: 6rem 0;
}
.hero__title {
  font-family: 'Playfair Display', serif;
  font-size: 3rem; margin-bottom: 1rem;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}
.hero__subtitle {
  font-size: 1.25rem; margin-bottom: 2.5rem;
}
.btn {
  display: inline-block; padding: 0.75rem 1.5rem; border-radius: 4px;
  font-size: 1rem; text-decoration: none; font-weight: 500;
  transition: background .3s, color .3s;
}
.btn--gold {
  background: #b99868; color: #ffffff;
}
.btn--gold:hover {
  background: #a8865a;
}

/* Features */
.features {
  padding: 5rem 0;
  background: #f9f9f9;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; text-align: center; margin-bottom: 2rem;
  color: #1a1a1a;
}
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem;
}
.feature-card {
  background: #ffffff; padding: 2rem; border: 1px solid #e0e0e0; border-radius: 6px;
  text-align: center; transition: box-shadow .3s;
}
.feature-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.feature-card__icon img {
  width: 64px; margin-bottom: 1rem;
}
.feature-card__title {
  font-size: 1.25rem; margin-bottom: 0.5rem; color: #b99868;
}
.feature-card__desc {
  font-size: 1rem; color: #555555;
}

/* Services */
.services {
  padding: 5rem 0;
}
.services-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 2rem;
}
.service-card {
  background: #ffffff; padding: 2rem; border: 1px solid #e0e0e0; border-radius: 6px;
  text-align: center; transition: box-shadow .3s;
}
.service-card:hover {
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}
.service-card__title {
  font-size: 1.25rem; margin-bottom: 0.5rem; color: #1a1a1a;
  font-weight: 500;
}
.service-card__price {
  font-size: 1.5rem; font-weight: 700; color: #b99868;
}

/* Contact */
.contact {
  padding: 5rem 0;
  background: #f9f9f9;
}
.contact__inner {
  text-align: center;
}
.contact__text {
  margin: 1rem 0;
}
.contact__link {
  font-size: 1.2rem; color: #1a1a1a; text-decoration: none; font-weight: 500;
  position: relative;
}
.contact__link::after {
  content: ''; display: block; width: 0; height: 2px; background: #b99868;
  transition: width .3s; position: absolute; bottom: -4px; left: 0;
}
.contact__link:hover::after {
  width: 100%;
}

/* Footer */
.footer {
  padding: 2rem 0; text-align: center; background: #ffffff; border-top: 1px solid #e0e0e0;
  font-size: 0.9rem; color: #777777;
}

/* Responsive */
@media (max-width: 600px) {
  .hero__title { font-size: 2rem; }
  .header__inner { flex-direction: column; gap: 1rem; }
}
