:root {
  --bg: #f7f2ea;
  --bg-alt: #fffaf2;
  --text: #1f2937;
  --muted: #6b7280;
  --accent: #9b6b34;
  --accent-strong: #7c4a1f;
  --border: #eadfce;
  --white: #ffffff;
  --shadow: 0 10px 30px rgba(31, 41, 55, 0.08);
  --radius: 16px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: "Inter", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}
img { max-width: 100%; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(247, 242, 234, 0.96);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  backdrop-filter: blur(10px);
  transition: all 0.2s ease;
}
.header.scrolled { background: rgba(247, 242, 234, 0.98); }

.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}

.logo img { height: 48px; width: auto; }

.nav-links { display: flex; gap: 1.25rem; align-items: center; }
.nav-links a { color: var(--text); text-decoration: none; font-weight: 600; letter-spacing: 0.02em; font-size: 0.95rem; }

.nav-toggle { display: none; background: none; border: none; }
.nav-toggle span { display:block; width:24px; height:2px; background:var(--text); margin:5px 0; }

.btn { padding: 0.75rem 1.4rem; border-radius: 999px; border: 1px solid var(--border); text-decoration: none; font-weight: 600; }
.btn-primary { background: var(--accent); color: #fff; border: none; }
.btn-outline { background: #fff; color: var(--accent-strong); border: 1px solid var(--accent); }
.btn-ghost { background: transparent; color: var(--accent-strong); border: 1px dashed var(--accent); }

.hero { padding-top: 90px; position: relative; }
.hero-media { position: relative; height: 62vh; min-height: 480px; overflow: hidden; border-bottom: 1px solid var(--border); }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay { position:absolute; inset:0; background: linear-gradient(90deg, rgba(0,0,0,0.55), rgba(0,0,0,0.25)); }

.hero-content { position: absolute; inset: 0; display:flex; flex-direction:column; justify-content:center; gap:1rem; color:#fff; align-items:flex-start; text-align:left; padding-left: 1.5rem; padding-right: 1.5rem; }
.hero-content h1 { font-size: clamp(2rem, 4vw, 3rem); max-width: 720px; }
.hero-badge { background: rgba(255,255,255,0.2); display:inline-block; padding:0.3rem 0.8rem; border-radius:999px; }
.hero-sub { max-width: 640px; }
.hero-actions { display:flex; gap:0.75rem; flex-wrap:wrap; }
.trust-band { margin-top: 0.6rem; display:flex; gap:1rem; flex-wrap:wrap; font-weight:600; }
.trust-band div { background: rgba(255,255,255,0.12); padding:0.4rem 0.7rem; border-radius:999px; }

.section { padding: 4.5rem 0; }
.section.alt { background: var(--bg-alt); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.section h2 { font-size: clamp(1.7rem, 2.6vw, 2.3rem); margin-bottom: 0.8rem; }
.section-sub { color: var(--muted); margin-bottom: 1.6rem; }

.split { display:grid; grid-template-columns: 1.4fr 1fr; gap: 2rem; }
.panel { background: #fff; border: 1px solid var(--border); padding: 2rem; border-radius: var(--radius); box-shadow: var(--shadow); }
.panel h3 { margin-bottom: 0.75rem; }

.features { display:flex; flex-wrap:wrap; gap:0.6rem; margin-top:1rem; }
.feature { background:#fff; border:1px solid var(--border); padding:0.4rem 0.8rem; border-radius:999px; font-size:0.9rem; }

.steps { margin-left: 1rem; display:grid; gap:0.6rem; color: var(--muted); }
.steps li { font-weight: 600; color: var(--text); }

.grid { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap:1rem; }
.card { background:#fff; border:1px solid var(--border); padding:1.5rem; border-radius: var(--radius); box-shadow: var(--shadow); display:flex; flex-direction:column; gap:0.4rem; }
.card h3 { font-size: 1.05rem; }
.card p { color: var(--muted); }

.gallery { display:grid; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); gap:0.8rem; }
.gallery img { border-radius: 12px; box-shadow: var(--shadow); width:100%; height: 220px; object-fit: cover; }

.contact { display:grid; grid-template-columns: 1.2fr 1fr; gap:2rem; }
.contact-card { display:grid; gap:1rem; margin-top:1rem; }
.contact-card a { color: var(--accent-strong); text-decoration:none; font-weight:600; }
.contact-actions { margin-top:1.2rem; display:flex; gap:0.8rem; flex-wrap:wrap; }
.form input, .form textarea { width:100%; padding:0.8rem; margin-bottom:0.8rem; border:1px solid var(--border); border-radius:10px; }

.footer { padding: 2.2rem 0; border-top:1px solid var(--border); background: var(--bg-alt); }
.footer-inner { display:flex; justify-content:space-between; color: var(--muted); font-weight:600; }

.process-grid .card { background: #fffdf8; }

@media (max-width: 900px) {
  .split, .contact { grid-template-columns: 1fr; }
  .nav-links { display:none; position:absolute; right:1rem; top:72px; background:#fff; border:1px solid var(--border); padding:1rem; border-radius:12px; flex-direction:column; }
  .nav-links.active { display:flex; }
  .nav-toggle { display:block; }
}
