:root {
  --bg: #f7f2ea;
  --paper: #fffaf2;
  --ink: #1d2530;
  --muted: #667085;
  --accent: #7b4b2f;
  --accent-dark: #56331f;
  --line: rgba(29, 37, 48, 0.12);
  --shadow: 0 24px 70px rgba(29, 37, 48, 0.12);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 60px);
  background: rgba(247, 242, 234, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}
.brand { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: var(--accent);
  color: #fff;
  letter-spacing: -0.04em;
}
.nav { display: flex; gap: 22px; font-weight: 650; color: var(--muted); }
.nav a:hover { color: var(--ink); }
.language-switch { display: flex; padding: 4px; border: 1px solid var(--line); border-radius: 999px; background: var(--paper); }
.lang-btn {
  border: 0;
  background: transparent;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  color: var(--muted);
}
.lang-btn.active { background: var(--ink); color: #fff; }
.hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.92fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(44px, 7vw, 96px) clamp(18px, 4vw, 60px);
}
.hero-content { max-width: 720px; }
.eyebrow { margin: 0 0 12px; color: var(--accent); font-weight: 850; text-transform: uppercase; letter-spacing: 0.12em; font-size: 0.78rem; }
h1, h2, h3 { line-height: 1.08; margin: 0; }
h1 { font-size: clamp(2.55rem, 7vw, 5.8rem); letter-spacing: -0.065em; }
h2 { font-size: clamp(2rem, 4vw, 3.6rem); letter-spacing: -0.045em; }
h3 { font-size: 1.22rem; }
.hero-copy { font-size: clamp(1.05rem, 2vw, 1.25rem); color: var(--muted); margin: 22px 0 0; max-width: 620px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin: 32px 0; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  font-weight: 850;
  border: 1px solid var(--line);
}
.btn.primary { background: var(--accent); color: #fff; border-color: var(--accent); }
.btn.primary:hover { background: var(--accent-dark); }
.btn.secondary { background: var(--paper); color: var(--ink); }
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-row span { background: var(--paper); border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; color: var(--muted); font-weight: 700; }
.hero-image-wrap { border-radius: 36px; overflow: hidden; box-shadow: var(--shadow); background: var(--paper); }
.hero-image { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; }
.section, .section-narrow { padding: clamp(52px, 8vw, 96px) clamp(18px, 4vw, 60px); }
.section-narrow { max-width: 980px; margin: 0 auto; padding-top: 20px; font-size: 1.25rem; color: var(--muted); }
.section-head { max-width: 780px; margin-bottom: 30px; }
.cards.three { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.card, .step, .contact-form {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 26px;
  box-shadow: 0 16px 44px rgba(29, 37, 48, 0.06);
}
.card p, .step p { color: var(--muted); margin-bottom: 0; }
.split { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: clamp(28px, 5vw, 64px); align-items: center; }
.split p { color: var(--muted); font-size: 1.06rem; }
.check-list { padding: 0; list-style: none; margin: 24px 0 0; display: grid; gap: 12px; }
.check-list li::before { content: "✓"; margin-right: 10px; color: var(--accent); font-weight: 900; }
.gallery { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.gallery img { width: 100%; height: 250px; object-fit: cover; border-radius: 26px; }
.gallery img:first-child { grid-row: span 2; height: 100%; }
.muted { background: rgba(255, 250, 242, 0.65); }
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 16px; }
.step span { color: var(--accent); font-weight: 900; display: inline-block; margin-bottom: 18px; }
.contact { display: grid; grid-template-columns: 0.8fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: start; }
.contact p { color: var(--muted); font-size: 1.08rem; }
.contact-form { display: grid; gap: 16px; }
.contact-form label { display: grid; gap: 8px; font-weight: 800; }
input, textarea { width: 100%; border: 1px solid var(--line); border-radius: 16px; padding: 14px 16px; font: inherit; background: #fff; color: var(--ink); }
textarea { resize: vertical; }
.footer { display: flex; justify-content: space-between; gap: 20px; padding: 28px clamp(18px, 4vw, 60px); color: var(--muted); border-top: 1px solid var(--line); }
@media (max-width: 920px) {
  .site-header { align-items: flex-start; flex-wrap: wrap; }
  .nav { order: 3; width: 100%; overflow-x: auto; }
  .hero, .split, .contact { grid-template-columns: 1fr; }
  .cards.three, .steps { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 620px) {
  .cards.three, .steps, .gallery { grid-template-columns: 1fr; }
  .gallery img, .gallery img:first-child { height: auto; }
  .footer { flex-direction: column; }
}
