
:root {
  --bg: #f7f4ee;
  --surface: #ffffff;
  --text: #1e1b18;
  --muted: #6f665d;
  --line: #e3ddd3;
  --dark: #1f2427;
  --gold: #b88936;
  --gold-dark: #8e6726;
  --shadow: 0 14px 40px rgba(0,0,0,.08);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.55;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container { width: min(1160px, calc(100% - 32px)); margin: 0 auto; }
.narrow { width: min(840px, calc(100% - 32px)); }
.topbar {
  background: var(--dark);
  color: #fff;
  font-size: 14px;
}
.topbar-inner {
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247,244,238,.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,.05);
}
.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand img { height: 66px; width: auto; border-radius: 10px; }
nav { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
nav a { font-weight: 600; color: #413b35; }
.hero {
  padding: 58px 0 36px;
  background: linear-gradient(180deg, #faf7f2 0%, #f2ece3 100%);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 32px;
  align-items: center;
}
.eyebrow {
  margin: 0 0 10px;
  color: var(--gold-dark);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: 12px;
  font-weight: 700;
}
.hero-copy h1, .section-head h2, .cta-band h2 { line-height: 1.08; margin: 0 0 14px; }
.hero-copy h1 { font-size: clamp(36px, 5vw, 60px); max-width: 13.5ch; }
.lead { color: var(--muted); font-size: 18px; max-width: 58ch; }
.hero-actions, .cta-band-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.hero-points {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.hero-points li {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: 14px;
}
.hero-card, .card, .steps article, .faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.hero-card { padding: 28px; }
.hero-card h2 { margin: 0 0 8px; font-size: 30px; }
.hero-card p { margin: 0 0 18px; color: var(--muted); }
.lead-form { display: grid; gap: 14px; }
.lead-form label { display: grid; gap: 8px; font-weight: 700; font-size: 14px; }
.lead-form input, .lead-form textarea {
  width: 100%;
  border: 1px solid #d9d3c8;
  border-radius: 14px;
  padding: 14px 15px;
  font: inherit;
  background: #fff;
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  border-radius: 999px;
  padding: 0 22px;
  font-weight: 800;
}
.btn-gold { background: var(--gold); color: #fff; }
.btn-gold:hover { background: var(--gold-dark); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-light { background: #fff; color: var(--dark); border: 1px solid #d7d2ca; }
.btn-block { width: 100%; border: 0; cursor: pointer; }
.trust { padding: 18px 0 8px; }
.trust-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.trust-grid > div {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
}
.trust-grid strong { display: block; margin-bottom: 6px; }
.trust-grid span { color: var(--muted); }
.section { padding: 72px 0; }
.section.alt { background: #efe7dc; }
.section-head { margin-bottom: 30px; }
.section-head h2 { font-size: clamp(30px, 4vw, 46px); max-width: 16ch; }
.section-head p:last-child { color: var(--muted); max-width: 64ch; }
.cards { display: grid; gap: 20px; }
.cards-4 { grid-template-columns: repeat(4, 1fr); }
.cards-3 { grid-template-columns: repeat(3, 1fr); }
.card { padding: 24px; }
.card h3 { margin-top: 0; }
.card p { color: var(--muted); }
.card a { color: var(--gold-dark); font-weight: 800; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.gallery-grid figure {
  margin: 0;
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}
.gallery-grid img { width: 100%; height: 300px; object-fit: cover; }
.gallery-grid figcaption { padding: 14px 16px; font-weight: 700; }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.steps article { padding: 22px; }
.steps span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--gold);
  color: #fff;
  font-weight: 800;
}
.reviews .stars { color: #c28b21; letter-spacing: 2px; margin-bottom: 12px; }
.review strong { display: block; margin-top: 12px; }
.city-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.city-links a {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
}
.faq-list { display: grid; gap: 14px; }
.faq-list details { padding: 18px 20px; }
.faq-list summary { cursor: pointer; font-weight: 800; }
.faq-list p { color: var(--muted); margin: 12px 0 0; }
.cta-band {
  padding: 30px 0 74px;
}
.cta-band-inner {
  background: var(--dark);
  color: #fff;
  border-radius: 28px;
  padding: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-footer {
  background: #171b1d;
  color: #d6d9db;
  padding: 40px 0 16px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr .9fr .9fr;
  gap: 26px;
}
.footer-logo { height: 66px; margin-bottom: 14px; border-radius: 10px; }
.site-footer a { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 28px;
  padding-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.page-hero { padding: 56px 0 20px; background: linear-gradient(180deg, #faf7f2 0%, #f2ece3 100%); }
.page-hero h1 { font-size: clamp(34px, 4vw, 54px); margin: 0 0 12px; }
.page-hero p { color: var(--muted); max-width: 60ch; }
.breadcrumbs { font-size: 14px; color: var(--muted); margin-bottom: 14px; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; align-items: center; }
.two-col img { border-radius: 24px; box-shadow: var(--shadow); }
.checks { padding-left: 18px; }
.mobile-call {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 70;
  min-height: 56px;
  border-radius: 999px;
  background: var(--gold);
  color: #fff;
  display: none;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(0,0,0,.18);
}
@media (max-width: 1024px) {
  .hero-grid, .two-col, .steps, .cards-4, .cards-3, .gallery-grid, .trust-grid, .footer-grid { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 760px) {
  nav { display: none; }
  .hero-grid, .two-col, .cards-4, .cards-3, .gallery-grid, .trust-grid, .footer-grid, .steps { grid-template-columns: 1fr; }
  .hero { padding-top: 36px; }
  .hero-copy h1 { max-width: 100%; }
  .cta-band-inner { padding: 24px; }
  .mobile-call { display: flex; }
  body { padding-bottom: 84px; }
}
