* { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --color-primary: #2b3a2f;
  --color-secondary: #b98b56;
  --color-light: #f7f5f1;
  --color-dark: #1c231d;
  --color-text: #3c4038;
  --radius: 10px;
  --shadow: 0 10px 30px rgba(0,0,0,0.08);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  color: var(--color-text);
  background: var(--color-light);
  line-height: 1.6;
}
h1, h2, h3 { font-family: 'Playfair Display', serif; color: var(--color-primary); }
a { text-decoration: none; color: inherit; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

.btn {
  display: inline-block;
  background: var(--color-secondary);
  color: #fff;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--small { padding: 10px 20px; font-size: .9rem; }
.btn--ghost { background: transparent; border: 2px solid var(--color-primary); color: var(--color-primary); }
.btn--light { background: #fff; color: var(--color-primary); }

.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(247,245,241,0.95);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.05);
}
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 24px;
}
.logo { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: var(--color-primary); }
.logo span { color: var(--color-secondary); }
.nav { display: flex; gap: 28px; }
.nav a { font-weight: 500; }
.nav a:hover { color: var(--color-secondary); }
.burger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.burger span { width: 26px; height: 2px; background: var(--color-primary); display: block; }

.hero {
  padding: 80px 0;
  background: linear-gradient(135deg, #f0ede6, #e6e0d4);
}
.hero__inner { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
.hero__text h1 { font-size: 2.7rem; margin-bottom: 20px; }
.hero__text p { font-size: 1.05rem; margin-bottom: 30px; max-width: 520px; }
.hero__cta { display: flex; gap: 16px; margin-bottom: 40px; flex-wrap: wrap; }
.hero__stats { display: flex; gap: 40px; }
.hero__stats strong { display: block; font-size: 1.7rem; color: var(--color-secondary); font-family: 'Playfair Display', serif; }
.hero__stats span { font-size: .85rem; }
.hero__image {
  height: 380px; border-radius: var(--radius);
  background: linear-gradient(135deg, #b98b56, #2b3a2f);
  box-shadow: var(--shadow);
}

.section { padding: 90px 0; }
.section--alt { background: #efece5; }
.section__title { text-align: center; font-size: 2.2rem; margin-bottom: 10px; }
.section__title--left { text-align: left; }
.section__subtitle { text-align: center; margin-bottom: 50px; color: #6c6f65; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.card {
  background: #fff; padding: 34px 28px; border-radius: var(--radius);
  box-shadow: var(--shadow); transition: transform .2s ease;
}
.card:hover { transform: translateY(-6px); }
.card__icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { margin-bottom: 10px; font-size: 1.2rem; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.gallery__item { height: 220px; border-radius: var(--radius); box-shadow: var(--shadow); }
.gallery__item--1 { background: linear-gradient(135deg,#d9c7a3,#8a6d3b); }
.gallery__item--2 { background: linear-gradient(135deg,#c9c2b0,#5c5c4f); }
.gallery__item--3 { background: linear-gradient(135deg,#a9b79f,#3c4a34); }
.gallery__item--4 { background: linear-gradient(135deg,#e0d2ba,#a67c46); }
.gallery__item--5 { background: linear-gradient(135deg,#cbb994,#71583a); }
.gallery__item--6 { background: linear-gradient(135deg,#b9c4b0,#465a3d); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.step { text-align: center; padding: 20px; }
.step__number { display: block; font-size: 2.4rem; font-family: 'Playfair Display', serif; color: var(--color-secondary); margin-bottom: 10px; }
.step h3 { margin-bottom: 10px; }

.testimonials { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.testimonial { background: #fff; padding: 30px; border-radius: var(--radius); box-shadow: var(--shadow); }
.testimonial p { font-style: italic; margin-bottom: 16px; }
.testimonial span { font-weight: 600; color: var(--color-primary); font-size: .9rem; }

.cta-band { background: var(--color-primary); color: #fff; padding: 60px 0; }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.cta-band h2 { color: #fff; margin-bottom: 8px; }
.cta-band p { opacity: .85; }

.contact { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; }
.contact__list { list-style: none; margin: 24px 0; }
.contact__list li { margin-bottom: 12px; }
.contact__list a { color: var(--color-secondary); font-weight: 600; }
.socials { display: flex; gap: 14px; }
.socials a {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--color-primary); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem; font-weight: 700;
}
.socials a:hover { background: var(--color-secondary); }

.contact__form { background: #fff; padding: 34px; border-radius: var(--radius); box-shadow: var(--shadow); }
.form__row { display: flex; gap: 16px; margin-bottom: 16px; }
.contact__form input, .contact__form textarea {
  width: 100%; padding: 12px 14px; border: 1px solid #ddd; border-radius: 8px;
  font-family: inherit; font-size: .95rem;
}
.contact__form textarea { margin-bottom: 16px; resize: vertical; }
.checkbox { display: flex; align-items: center; gap: 8px; font-size: .85rem; margin-bottom: 20px; }
.checkbox a { color: var(--color-secondary); text-decoration: underline; }
.form__success { display: none; margin-top: 14px; color: #2b6e3f; font-weight: 600; }
.form__success.visible { display: block; }

.footer { background: var(--color-dark); color: #cfcfc7; padding: 50px 0 24px; }
.footer__inner { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 30px; align-items: flex-start; }
.logo--footer { color: #fff; }
.footer__links { display: flex; flex-direction: column; gap: 8px; }
.footer__copy { width: 100%; text-align: center; margin-top: 30px; font-size: .8rem; opacity: .7; }

.legal { max-width: 800px; margin: 0 auto; }
.legal h1 { margin-bottom: 20px; }
.legal h2 { margin-top: 30px; margin-bottom: 10px; font-size: 1.3rem; }

@media (max-width: 900px) {
  .hero__inner { grid-template-columns: 1fr; }
  .hero__image { height: 260px; }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .testimonials { grid-template-columns: 1fr; }
  .contact { grid-template-columns: 1fr; }
  .nav { display: none; }
  .burger { display: flex; }
}
@media (max-width: 900px) {
  .nav.open {
    display: flex; flex-direction: column; position: absolute;
    top: 70px; right: 24px; background: #fff; padding: 20px;
    border-radius: var(--radius); box-shadow: var(--shadow); gap: 16px;
  }
}
@media (max-width: 600px) {
  .cards, .gallery, .steps { grid-template-columns: 1fr; }
  .form__row { flex-direction: column; }
  .hero__stats { flex-wrap: wrap; gap: 20px; }
}