:root {
  --bg: #f6f1eb;
  --panel: #fffaf5;
  --text: #2e2520;
  --muted: #6f6259;
  --line: #e7d8cc;
  --accent: #b78967;
  --accent-dark: #9a6f50;
}

* { box-sizing: border-box; }
html, body { margin: 0; font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; color: var(--text); background: var(--bg); }
a { color: inherit; text-decoration: none; }

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

.topbar {
  position: sticky; top: 0; z-index: 20;
  backdrop-filter: blur(8px);
  background: rgba(246, 241, 235, 0.85);
  border-bottom: 1px solid var(--line);
}
.nav { display: flex; align-items: center; justify-content: space-between; min-height: 74px; gap: 16px; }
.brand { font-weight: 800; letter-spacing: .3px; }
nav { display: flex; gap: 18px; color: var(--muted); }
nav a:hover { color: var(--accent-dark); }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 999px;
  padding: 11px 18px; font-weight: 600; cursor: pointer;
  background: var(--accent); color: #fff; transition: .2s ease;
}
.btn:hover { background: var(--accent-dark); transform: translateY(-1px); }
.btn-outline { background: transparent; border: 1px solid var(--accent); color: var(--accent-dark); }
.btn-ghost { background: #f0e5dc; color: #624e40; }

.hero { padding: 62px 0 40px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 34px; align-items: center; }
.eyebrow { color: var(--accent-dark); font-weight: 600; margin-bottom: 10px; }
h1 { font-size: clamp(2rem, 5vw, 3.4rem); line-height: 1.1; margin: 0; }
.lead { color: var(--muted); font-size: 1.08rem; margin-top: 16px; max-width: 62ch; }
.cta-row { margin-top: 22px; display: flex; gap: 12px; flex-wrap: wrap; }
.stats { margin-top: 24px; display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.stats div { background: var(--panel); border: 1px solid var(--line); border-radius: 12px; padding: 12px; }
.stats strong { display: block; font-size: 1.2rem; }
.stats span { color: var(--muted); font-size: .9rem; }
.hero-card img { width: 100%; height: 100%; max-height: 520px; object-fit: cover; border-radius: 22px; border: 1px solid var(--line); box-shadow: 0 20px 50px rgba(0,0,0,.08); }

.section { padding: 64px 0; }
.section.alt { background: #efe5db; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
h2 { margin: 0; font-size: clamp(1.5rem, 4vw, 2.3rem); }
.sub { color: var(--muted); max-width: 62ch; margin: 12px 0 26px; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.card { background: var(--panel); border: 1px solid var(--line); border-radius: 16px; overflow: hidden; }
.card img { width: 100%; height: 220px; object-fit: cover; }
.card h3 { margin: 12px 14px 4px; }
.card p { margin: 0 14px 16px; color: var(--muted); }

.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 18px; }
.step { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
.step span { display: inline-block; background: #e5d2c3; color: #5d4738; border-radius: 999px; padding: 4px 9px; font-size: .8rem; font-weight: 700; }
.step h4 { margin: 10px 0 6px; }
.step p { margin: 0; color: var(--muted); }

.gallery { margin-top: 18px; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.gallery img { width: 100%; height: 290px; object-fit: cover; border-radius: 14px; border: 1px solid var(--line); }

.contact { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; align-items: start; }
.contact-form { background: var(--panel); border: 1px solid var(--line); border-radius: 14px; padding: 16px; }
label { display: block; font-size: .9rem; margin-bottom: 10px; }
input, select, textarea {
  margin-top: 6px; width: 100%; border: 1px solid #dccbbb;
  border-radius: 10px; padding: 10px; background: #fffdfb; color: var(--text);
}

.footer { padding: 26px 0 38px; color: var(--muted); text-align: center; }

@media (max-width: 960px) {
  nav { display: none; }
  .hero-grid, .cards, .steps, .contact { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr; }
}