:root {
  --primary: #1f1916;
  --primary-2: #302621;
  --accent: #b77a2a;
  --accent-soft: #f3e2c7;
  --ink: #1f1916;
  --muted: #6c625c;
  --bg: #f6f1eb;
  --surface: #fffdf8;
  --border: #e7ddd3;
  --shadow: 0 20px 42px rgba(31,25,22,0.12);
  --radius: 24px;
  --container: 1180px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
}
a { color: inherit; }
img { max-width: 100%; display: block; }
.container { width: min(var(--container), calc(100% - 2rem)); margin: 0 auto; }
.section { padding: 84px 0; }
.section-sm { padding: 62px 0; }
.kicker {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(183,122,42,0.14);
  color: #8f5f1a;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-size: .78rem;
  font-weight: 800;
}
.section h2 { font-size: clamp(2rem, 3vw, 3rem); line-height: 1.08; margin: 16px 0; }
.section p.lead { max-width: 760px; color: var(--muted); font-size: 1.05rem; }
.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(31,25,22,0.9);
  border-bottom: 1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
}
.nav-shell {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: white;
  text-decoration: none;
}
.brand img {
  width: 50px; height: 50px; border-radius: 16px; object-fit: cover; background: white; padding: 4px;
}
.brand strong { display: block; }
.brand small { display: block; opacity: .8; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
}
.nav-links a {
  color: rgba(255,255,255,.92);
  text-decoration: none;
  font-weight: 600;
}
.nav-links a:hover, .nav-links a.is-active { color: white; }
.nav-cta, .button, .button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 800;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}
.nav-cta, .button { background: var(--accent); color: #16120f; }
.button-secondary { background: transparent; color: white; border: 1px solid rgba(255,255,255,.24); }
.nav-toggle { display: none; background: transparent; border: 0; color: white; font-size: 1.65rem; }
.hero {
  position: relative;
  min-height: 84vh;
  display: grid;
  place-items: center;
  color: white;
  isolation: isolate;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(16,13,11,.88) 0%, rgba(16,13,11,.68) 45%, rgba(16,13,11,.48) 100%),
    url('https://images.unsplash.com/photo-1581349485608-9469926a8e5e?fm=jpg&q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
  z-index: -2;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 150px;
  background: linear-gradient(180deg, rgba(246,241,235,0) 0%, var(--bg) 100%);
  z-index: -1;
}
.hero-grid { display: grid; gap: 34px; grid-template-columns: 1.15fr .85fr; align-items: center; }
.hero h1 { font-size: clamp(2.6rem, 5.7vw, 5rem); line-height: .98; margin: 18px 0; }
.hero p { color: rgba(255,255,255,.86); max-width: 620px; font-size: 1.08rem; }
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 24px; }
.hero-card {
  padding: 28px;
  border-radius: 30px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(14px);
  box-shadow: 0 22px 48px rgba(0,0,0,.18);
}
.hero-card h3 { margin-top: 0; }
.hero-card p { margin-bottom: 12px; }
.hero-card ul { margin: 0; padding-left: 18px; color: rgba(255,255,255,.92); }
.section-grid {
  display: grid;
  gap: 26px;
  grid-template-columns: .95fr 1.05fr;
  align-items: center;
}
.image-panel {
  overflow: hidden;
  border-radius: 28px;
  box-shadow: var(--shadow);
}
.image-panel img { width: 100%; height: 100%; object-fit: cover; min-height: 420px; }
.cards { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(230px,1fr)); margin-top: 26px; }
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}
.card-icon {
  width: 52px; height: 52px; border-radius: 16px;
  display: grid; place-items: center; background: var(--accent-soft); color: #8f5f1a; font-weight: 900; margin-bottom: 16px;
}
.card h3 { margin-top: 0; font-size: 1.15rem; }
.card p { color: var(--muted); }
.metric-strip {
  display: grid; gap: 18px; grid-template-columns: repeat(3, 1fr); margin-top: 28px;
}
.metric {
  background: var(--surface); border-radius: 22px; padding: 20px; box-shadow: var(--shadow); border: 1px solid var(--border);
}
.metric strong { display: block; font-size: 2rem; color: var(--primary); }
.metric span { color: var(--muted); }
.check-list {
  display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0, 1fr)); margin-top: 18px;
}
.check-item { background: var(--surface); padding: 16px 18px; border-radius: 18px; border: 1px solid var(--border); font-weight: 700; }
.banner {
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  color: white;
  border-radius: 34px;
  padding: 38px;
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr auto;
  align-items: center;
}
.quote-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px,1fr)); }
.quote { background: var(--surface); border-radius: 22px; border: 1px solid var(--border); padding: 24px; box-shadow: var(--shadow); }
.quote strong { color: var(--primary); }
.steps { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(210px,1fr)); margin-top: 24px; }
.step { background: var(--surface); border: 1px solid var(--border); border-radius: 22px; padding: 22px; box-shadow: var(--shadow); }
.step-number {
  width: 44px; height: 44px; border-radius: 50%; display: grid; place-items: center; background: var(--accent); color: #16120f; font-weight: 900; margin-bottom: 14px;
}
.contact-grid { display: grid; gap: 24px; grid-template-columns: .82fr 1.18fr; }
.contact-card, .form-card { background: var(--surface); border-radius: 28px; border: 1px solid var(--border); box-shadow: var(--shadow); padding: 26px; }
.form-grid { display: grid; gap: 14px; grid-template-columns: repeat(2, minmax(0,1fr)); }
.form-grid .full { grid-column: 1 / -1; }
label { display: grid; gap: 7px; font-size: .95rem; font-weight: 700; }
input, select, textarea {
  width: 100%; padding: 14px 16px; border-radius: 16px; border: 1px solid var(--border); background: white; font: inherit;
}
textarea { min-height: 132px; resize: vertical; }
.form-note { margin-top: 12px; color: var(--muted); font-size: .95rem; }
.page-hero {
  color: white;
  padding: 118px 0 82px;
  background: linear-gradient(120deg, rgba(16,13,11,.88), rgba(58,44,36,.76)),
    url('https://images.unsplash.com/photo-1577219491135-ce391730fb2c?fm=jpg&q=80&w=1600&auto=format&fit=crop') center/cover no-repeat;
}
.page-hero h1 { font-size: clamp(2.4rem, 4vw, 4.4rem); margin: 14px 0 10px; }
.page-hero p { color: rgba(255,255,255,.85); max-width: 760px; }
.site-footer {
  background: #15110f;
  color: rgba(255,255,255,.82);
  padding: 38px 0;
}
.footer-shell { display: flex; align-items: center; justify-content: space-between; gap: 18px; flex-wrap: wrap; }
.footer-links { display: flex; gap: 16px; flex-wrap: wrap; }
.footer-links a { text-decoration: none; color: rgba(255,255,255,.82); }
.small-muted { color: var(--muted); }
@media (max-width: 980px) {
  .hero-grid, .section-grid, .contact-grid, .banner { grid-template-columns: 1fr; }
}
@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0; background: rgba(31,25,22,.98); border-bottom: 1px solid rgba(255,255,255,.08);
    display: none; flex-direction: column; align-items: stretch; padding: 20px;
  }
  .nav-links.is-open { display: flex; }
  .nav-links .nav-cta { width: 100%; }
  .metric-strip, .check-list, .form-grid { grid-template-columns: 1fr; }
}
