:root {
  --bg: #fbfaf7;
  --panel: #ffffff;
  --ink: #1e1b18;
  --muted: #665f57;
  --line: #e7e0d7;
  --brand: #6b4f2a;
  --brand-dark: #3d2a15;
  --accent: #b9893f;
  --accent-soft: #f2e2c5;
  --success: #2f6b42;
  --shadow: 0 18px 50px rgba(49, 36, 21, 0.10);
  --radius: 18px;
  --max: 1160px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(var(--max), calc(100% - 36px));
  margin-inline: auto;
}
.site-header {
  background: rgba(251, 250, 247, 0.96);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 82px;
}
.logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}
.brand-logo { min-width: 170px; }
.site-logo-img {
  width: 178px;
  height: auto;
  display: block;
}
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--panel);
  padding: 10px 12px;
  border-radius: 12px;
  font-weight: 800;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.site-nav a {
  padding: 10px 11px;
  border-radius: 12px;
  color: var(--muted);
  font-weight: 700;
  font-size: 0.96rem;
}
.site-nav a:hover, .site-nav a.active {
  color: var(--ink);
  background: var(--accent-soft);
}
.header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  border: 1px solid transparent;
  padding: 12px 18px;
  font-weight: 800;
  cursor: pointer;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  min-height: 46px;
  font-size: 0.98rem;
  font-family: inherit;
}
.btn:hover { transform: translateY(-1px); }
.btn:disabled { opacity: .72; cursor: not-allowed; transform: none; }
.btn-primary {
  background: var(--brand-dark);
  color: #fff;
  box-shadow: 0 10px 25px rgba(61, 42, 21, 0.18);
}
.btn-primary:hover { background: #2c1d0f; }
.btn-accent {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 10px 25px rgba(185, 137, 63, 0.22);
}
.btn-outline {
  color: var(--brand-dark);
  border-color: #cbb995;
  background: #fffdf8;
}
.btn-block { width: 100%; }
.top-strip {
  background: #21170d;
  color: rgba(255,255,255,.88);
  font-size: .9rem;
  padding: 8px 0;
}
.top-strip-inner {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.hero {
  padding: 74px 0 54px;
  background:
    linear-gradient(90deg, rgba(251,250,247,.98), rgba(251,250,247,.86)),
    radial-gradient(circle at top right, rgba(185,137,63,.24), transparent 35%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr .92fr;
  align-items: center;
  gap: 42px;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--brand-dark);
  font-weight: 800;
  font-size: 0.9rem;
  margin-bottom: 18px;
}
h1, h2, h3 { line-height: 1.12; margin: 0 0 14px; }
h1 { font-size: clamp(2.25rem, 5vw, 4.55rem); letter-spacing: -0.045em; }
h2 { font-size: clamp(1.9rem, 3vw, 3rem); letter-spacing: -0.03em; }
h3 { font-size: 1.25rem; }
p { margin: 0 0 16px; color: var(--muted); }
.lead { font-size: 1.15rem; max-width: 680px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.trust-item {
  background: rgba(255,255,255,.78);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  font-weight: 800;
}
.trust-item span { display: block; color: var(--muted); font-size: .9rem; font-weight: 700; margin-top: 3px; }
.hero-card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 28px;
  padding: 24px;
  box-shadow: var(--shadow);
}
.hero-visual {
  min-height: 340px;
  border-radius: 22px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(185,137,63,.24), transparent 34%),
    linear-gradient(135deg, #f4ebdc, #ead9bc 55%, #e0c69e);
  position: relative;
  display: grid;
  place-items: center;
  padding: 34px;
}
.hero-logo-img {
  width: min(460px, 92%);
  background: transparent;
  filter: drop-shadow(0 18px 30px rgba(61, 42, 21, 0.18));
}
.hero-service-line {
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 26px;
  text-align: center;
  background: rgba(255,255,255,.92);
  color: var(--brand-dark);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 900;
  font-size: 1rem;
}
.quick-quote {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}
.quick-quote p { margin: 0; font-weight: 800; color: var(--ink); }
.quick-quote span { color: var(--muted); font-size: .92rem; }
.section { padding: 72px 0; }
.section.alt { background: #f5efe5; }
.section-header {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 28px;
}
.section-header p { max-width: 620px; }
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 8px 22px rgba(49, 36, 21, 0.05);
}
.service-card {
  min-height: 210px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--brand-dark);
  font-weight: 900;
  margin-bottom: 18px;
}
.text-link { color: var(--brand-dark); font-weight: 900; }
.text-link:hover { text-decoration: underline; }
.steps {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.step {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  position: relative;
}
.step::before {
  counter-increment: step;
  content: counter(step);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--brand-dark);
  color: #fff;
  font-weight: 900;
  margin-bottom: 18px;
}
.cta-band {
  background: var(--brand-dark);
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
}
.cta-band p { color: rgba(255,255,255,.78); margin: 0; }
.cta-band h2 { margin-bottom: 8px; }
.page-hero {
  padding: 54px 0;
  background: linear-gradient(135deg, #f4ebdc, #fbfaf7 60%);
  border-bottom: 1px solid var(--line);
}
.breadcrumb { color: var(--muted); font-weight: 800; margin-bottom: 14px; font-size: .92rem; }
.breadcrumb a { color: var(--brand-dark); }
.project-card { min-height: 230px; }
.project-card .tag {
  display: inline-block;
  background: var(--accent-soft);
  color: var(--brand-dark);
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 900;
  font-size: .8rem;
  margin-bottom: 14px;
}
.form-panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
}
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.form-field { display: flex; flex-direction: column; gap: 7px; }
.form-field.full { grid-column: 1 / -1; }
label { font-weight: 800; color: var(--ink); }
input, select, textarea {
  width: 100%;
  border: 1px solid #d8ccb9;
  border-radius: 12px;
  padding: 13px 14px;
  font: inherit;
  background: #fffdf8;
  color: var(--ink);
}
textarea { min-height: 135px; resize: vertical; }
.form-note {
  margin-top: 14px;
  font-size: .92rem;
  color: var(--muted);
}
.form-success {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #eaf4ed;
  color: var(--success);
  font-weight: 800;
  border: 1px solid #bdd9c5;
}
.form-success.show { display: block; }
.form-error {
  display: none;
  margin-top: 16px;
  padding: 14px 16px;
  border-radius: 14px;
  background: #fff1ee;
  color: #9a3412;
  font-weight: 800;
  border: 1px solid #f3c4b8;
}
.form-error.show { display: block; }
.info-list { display: grid; gap: 14px; }
.info-item {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
}
.info-item strong { display: block; margin-bottom: 4px; }
.info-item p { margin: 0; }
.about-logo-card {
  background: #fffdf8;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.about-logo-card img {
  border-radius: 0;
  border: 0;
  filter: drop-shadow(0 12px 22px rgba(61, 42, 21, 0.12));
}
.check-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 10px; }
.check-list li {
  padding-left: 30px;
  position: relative;
  color: var(--muted);
}
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--brand-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: .85rem;
}
.footer {
  background: #f2e6d5;
  color: var(--ink);
  padding: 48px 0 22px;
  border-top: 1px solid var(--line);
}
.footer p, .footer a { color: var(--muted); }
.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr .8fr .8fr .9fr;
  gap: 28px;
  margin-bottom: 30px;
}
.footer h3 { color: var(--ink); font-size: 1rem; margin-bottom: 12px; }
.footer-links { display: grid; gap: 8px; }
.footer-bottom {
  border-top: 1px solid #d9ccb8;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  font-size: .92rem;
}
@media (max-width: 980px) {
  .header-actions { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-nav {
    position: absolute;
    left: 18px;
    right: 18px;
    top: 116px;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: 18px;
    padding: 12px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    box-shadow: var(--shadow);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 13px 14px; }
  .hero-grid, .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .container { width: min(100% - 26px, var(--max)); }
  .hero { padding: 42px 0; }
  .section { padding: 52px 0; }
  .grid-3, .steps, .trust-row, .form-grid { grid-template-columns: 1fr; }
  .form-field.full { grid-column: auto; }
  .section-header, .cta-band, .quick-quote { grid-template-columns: 1fr; display: grid; align-items: start; }
  .hero-actions .btn, .cta-band .btn { width: 100%; }
  .hero-card { padding: 14px; border-radius: 22px; }
  .hero-visual { min-height: 270px; }
  .footer-grid { grid-template-columns: 1fr; }
  .brand-logo { min-width: 140px; }
  .site-logo-img { width: 150px; }
  .footer .site-logo-img { width: 160px; }
}