
:root {
  --ink: #12120f;
  --muted: #5d625c;
  --line: #e6e4dc;
  --paper: #fff;
  --soft: #f7f5ec;
  --soft-2: #eef7f2;
  --accent: #f3d624;
  --accent-2: #2f8f69;
  --black: #080808;
  --shadow: 0 18px 50px rgba(10, 10, 10, .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;
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  letter-spacing: 0;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.site-header {
  position: fixed;
  top: 16px;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  justify-content: center;
  padding: 0 16px;
}
.nav-pill {
  width: fit-content;
  max-width: calc(100vw - 32px);
  display: inline-flex;
  align-items: center;
  gap: 30px;
  padding: 10px 12px 10px 16px;
  border: 1px solid rgba(255,255,255,.62);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(18px);
  box-shadow: 0 12px 38px rgba(0,0,0,.13);
  border-radius: 999px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; min-width: 0; }
.brand img { width: 110px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 22px; margin: 0; }
.nav-links a { font-size: 14px; font-weight: 760; color: #20221e; white-space: nowrap; }
.nav-cta, .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 18px;
  border-radius: 8px;
  border: 2px solid var(--black);
  background: var(--black);
  color: #fff;
  font-weight: 820;
  box-shadow: 0 8px 0 rgba(0,0,0,.14);
}
.btn.secondary { background: #fff; color: var(--ink); border-color: var(--ink); box-shadow: none; }
.btn.yellow { background: var(--accent); color: var(--ink); }
.mobile-menu-toggle { display: none; }
.hero {
  min-height: 92vh;
  display: grid;
  align-items: end;
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
  padding: 132px 24px 44px;
}
.hero picture, .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8,8,8,.88) 0%, rgba(8,8,8,.70) 42%, rgba(8,8,8,.18) 100%);
}
.hero-inner { position: relative; z-index: 1; max-width: 1180px; width: 100%; margin: 0 auto; }
.eyebrow { font-size: 13px; text-transform: uppercase; font-weight: 880; color: var(--accent); letter-spacing: 0; }
h1, h2, h3, p { margin-top: 0; }
h1 { max-width: 760px; font-size: clamp(42px, 7vw, 86px); line-height: .94; margin-bottom: 22px; letter-spacing: 0; }
.hero p { max-width: 640px; font-size: 19px; color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }
.hero-strip { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 52px; max-width: 920px; background: rgba(255,255,255,.18); border: 1px solid rgba(255,255,255,.22); }
.hero-stat { background: rgba(255,255,255,.11); padding: 18px; }
.hero-stat strong { display: block; font-size: 24px; color: var(--accent); }
.hero-stat span { color: rgba(255,255,255,.78); font-size: 13px; }
.section { padding: 86px 24px; }
.section.soft { background: var(--soft); }
.section.green { background: var(--soft-2); }
.wrap { width: min(1180px, 100%); margin: 0 auto; }
.section-head { display: grid; grid-template-columns: minmax(0, .95fr) minmax(280px, .7fr); gap: 44px; align-items: end; margin-bottom: 34px; }
h2 { font-size: clamp(32px, 5vw, 58px); line-height: 1.02; letter-spacing: 0; margin-bottom: 14px; }
.lead { color: var(--muted); font-size: 18px; max-width: 720px; }
.service-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.service-card {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}
.service-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-card .pad { padding: 22px; }
.service-card h3 { font-size: 22px; margin-bottom: 8px; }
.service-card p { color: var(--muted); min-height: 76px; }
.split { display: grid; grid-template-columns: minmax(0, .9fr) minmax(300px, .7fr); gap: 44px; align-items: center; }
.promo-img { border-radius: 8px; border: 1px solid var(--line); box-shadow: var(--shadow); }
.check-list { display: grid; gap: 12px; margin: 24px 0 0; padding: 0; list-style: none; }
.check-list li { padding-left: 30px; position: relative; }
.check-list li::before { content: ""; width: 16px; height: 16px; border-radius: 50%; background: var(--accent-2); position: absolute; left: 0; top: 5px; box-shadow: inset 0 0 0 5px #dff0e8; }
.reviews-wrap { display: grid; grid-template-columns: 360px 1fr; gap: 20px; align-items: start; }
.gr-summary {
  background: var(--black);
  color: #fff;
  border-radius: 8px;
  padding: 26px;
  box-shadow: var(--shadow);
}
.g-mark { width: 38px; height: 38px; display: inline-grid; place-items: center; border-radius: 50%; background: #fff; color: #4285f4; font-weight: 900; margin-bottom: 20px; }
.stars { color: var(--accent); font-size: 20px; letter-spacing: 0; }
.review-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; }
.review-card { border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 22px; }
.review-card strong { display: block; margin-top: 14px; }
.contact-band { background: var(--black); color: #fff; }
.contact-grid { display: grid; grid-template-columns: minmax(0, .8fr) minmax(300px, .7fr); gap: 36px; align-items: start; }
.contact-form { background: #fff; color: var(--ink); border-radius: 8px; padding: 24px; box-shadow: var(--shadow); }
.field { display: grid; gap: 6px; margin-bottom: 14px; }
label { font-weight: 760; font-size: 13px; }
input, textarea {
  width: 100%;
  border: 1px solid #d4d2c9;
  border-radius: 8px;
  min-height: 46px;
  padding: 11px 12px;
  font: inherit;
  background: #fff;
  color: var(--ink);
}
textarea { min-height: 116px; resize: vertical; }
.faq-list { display: grid; gap: 12px; }
details { border: 1px solid var(--line); border-radius: 8px; background: #fff; padding: 18px 20px; }
summary { cursor: pointer; font-weight: 820; }
details p { color: var(--muted); margin: 12px 0 0; }
.service-hero { padding: 150px 24px 70px; background: var(--soft); }
.service-detail { display: grid; grid-template-columns: minmax(0, .9fr) 330px; gap: 42px; }
.side-panel { border: 1px solid var(--line); border-radius: 8px; padding: 22px; background: #fff; position: sticky; top: 110px; }
.site-footer { background: #101010; color: #fff; padding: 42px 24px 96px; }
.footer-grid { display: grid; grid-template-columns: 1fr auto auto; gap: 34px; align-items: start; }
.footer-links { display: grid; gap: 8px; }
.footer-credit a { color: var(--accent); text-decoration: underline; }
.mobile-sticky-cta { display: none; }
@media (min-width: 1024px) {
  .mobile-menu-toggle { display: none !important; }
}
@media (max-width: 900px) {
  .nav-pill { width: calc(100vw - 24px); justify-content: space-between; gap: 12px; border-radius: 18px; }
  .brand img { width: 96px; }
  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    left: 12px;
    right: 12px;
    display: none;
    grid-template-columns: 1fr;
    background: rgba(255,255,255,.97);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 18px;
    box-shadow: var(--shadow);
  }
  body.nav-open .nav-links { display: grid; }
  .mobile-menu-toggle {
    display: inline-grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: #fff;
    color: var(--ink);
    font-size: 24px;
  }
  .nav-cta { display: none; }
  .hero { min-height: 82vh; padding: 104px 18px 24px; }
  .hero::after { background: linear-gradient(180deg, rgba(8,8,8,.74), rgba(8,8,8,.82)); }
  .hero-strip, .section-head, .split, .reviews-wrap, .contact-grid, .service-detail, .footer-grid { grid-template-columns: 1fr; }
  .hero-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    margin-top: 28px;
  }
  .hero-stat { padding: 14px 10px; }
  .hero-stat strong { font-size: 22px; }
  .hero-stat span { font-size: 12px; }
  .service-grid, .review-grid { grid-template-columns: 1fr; }
  .section { padding: 44px 18px; }
  .hero-actions .btn { width: 100%; }
  .mobile-sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .mobile-sticky-cta a {
    min-height: 58px;
    display: grid;
    place-items: center;
    font-weight: 900;
    color: #111;
    background: var(--accent);
  }
  .mobile-sticky-cta a + a { background: #0a0a0a; color: #fff; }
}
