:root {
  --bg: #fffaf1;
  --surface: #ffffff;
  --ink: #151515;
  --muted: #5d5d5d;
  --brand: #f6b21a;
  --brand-dark: #c88400;
  --dark: #101010;
  --dark-2: #1b1b1b;
  --line: #e9dfcf;
  --radius: 22px;
  --shadow: 0 22px 60px rgba(0,0,0,.14);
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; color: var(--ink); background: var(--bg); line-height: 1.55; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { width: min(1180px, calc(100% - 36px)); margin: 0 auto; }
.skip-link { position:absolute; left:-999px; top: 0; background: #fff; padding: 10px; z-index: 9999; }
.skip-link:focus { left: 10px; }
.hidden { display: none; }
.top-alert { background: var(--dark); color: #fff; font-size: 14px; }
.alert-grid { min-height: 42px; display:flex; align-items:center; justify-content:space-between; gap: 16px; }
.alert-grid p { margin: 0; }
.alert-grid a { color: var(--brand); font-weight: 800; }
.site-header { position: sticky; top: 0; z-index: 999; background: rgba(255,250,241,.96); backdrop-filter: blur(14px); border-bottom: 1px solid var(--line); }
.nav-wrap { height: 76px; display:flex; align-items:center; justify-content:space-between; gap: 20px; }
.brand { display:flex; align-items:center; gap: 12px; font-weight: 900; }
.brand-logo { width: 58px; height: 58px; object-fit: contain; border-radius: 12px; background:#111; border:2px solid #111; box-shadow: 0 8px 0 var(--brand); }
.brand-mark { width: 48px; height: 48px; border-radius: 14px; display:grid; place-items:center; background: var(--brand); color: #111; font-weight: 950; box-shadow: 0 10px 0 #111; border: 2px solid #111; }
.brand small { display:block; color: var(--muted); margin-top: -4px; font-weight: 700; }
.main-nav { display:flex; gap: 20px; font-weight: 800; color: #2f2f2f; }
.main-nav a:hover { color: var(--brand-dark); }
.header-actions { display:flex; gap: 10px; }
.btn { display:inline-flex; align-items:center; justify-content:center; gap: 8px; min-height: 46px; padding: 0 18px; border-radius: 999px; font-weight: 900; border: 2px solid transparent; transition: transform .18s ease, box-shadow .18s ease, background .18s ease; cursor:pointer; }
.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 24px rgba(0,0,0,.13); }
.btn-primary { background: var(--brand); color: #111; border-color: #111; }
.btn-ghost { background: #fff; color: #111; border-color: #111; }
.btn-call { background: #111; color: #fff; border-color: #111; }
.btn-large { min-height: 56px; padding: 0 24px; font-size: 17px; }
.btn-full { width: 100%; }
.menu-toggle { display:none; background: #fff; border: 2px solid #111; border-radius: 12px; font-size: 24px; padding: 8px 12px; }
.hero { position: relative; overflow: hidden; background: radial-gradient(circle at 10% 20%, rgba(246,178,26,.35), transparent 30%), linear-gradient(135deg, #fff7df 0%, #fff 52%, #ffefbf 100%); }
.hero:after { content:""; position:absolute; inset:auto -120px -160px auto; width: 430px; height: 430px; border-radius:50%; background:#111; opacity:.04; }
.hero-first-screen { padding: 62px 0 46px; }
.hero-grid { display:grid; grid-template-columns: minmax(0, 1.05fr) 440px; gap: 42px; align-items:center; }
.rating-row { display:inline-flex; align-items:center; gap: 10px; background:#fff; border:1px solid var(--line); padding: 10px 14px; border-radius:999px; box-shadow: 0 10px 25px rgba(0,0,0,.08); margin-bottom: 18px; }
.stars { color: #ffb400; letter-spacing: 1px; font-weight: 900; }
.eyebrow { margin:0 0 8px; color: var(--brand-dark); text-transform: uppercase; letter-spacing: .12em; font-weight: 950; font-size: 13px; }
h1, h2, h3 { line-height: 1.08; margin: 0; letter-spacing: -.04em; }
h1 { font-size: clamp(42px, 7vw, 76px); max-width: 850px; }
h2 { font-size: clamp(32px, 4.4vw, 52px); }
h3 { font-size: 24px; }
.hero-subtitle { font-size: 20px; max-width: 720px; color: #333; margin: 22px 0 0; }
.hero-cta-row { display:flex; flex-wrap:wrap; gap: 14px; margin: 28px 0 0; }
.hero-bullets { display:flex; gap: 18px; flex-wrap:wrap; padding:0; margin: 22px 0 0; list-style:none; color:#333; font-weight:800; }
.hero-bullets li:before { content:"✓"; display:inline-grid; place-items:center; width:22px; height:22px; background: var(--brand); color:#111; border-radius:50%; margin-right:8px; font-size:14px; }
.quote-card { background:#fff; border: 2px solid #111; border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow); position:relative; }
.quote-card:before { content:""; position:absolute; inset: 12px -12px -12px 12px; border-radius: var(--radius); background: var(--brand); z-index:-1; border:2px solid #111; }
.quote-card-header { margin-bottom: 18px; }
.mini-badge { display:inline-flex; background:#111; color:#fff; border-radius:999px; padding:5px 10px; font-size:12px; font-weight:900; text-transform:uppercase; letter-spacing:.08em; margin-bottom:10px; }
.quote-card p { color: var(--muted); margin: 8px 0 0; }
form { display:grid; gap: 12px; }
label { display:grid; gap: 6px; font-weight: 900; color:#242424; }
input, select, textarea { width:100%; border:1px solid #d7d0c4; border-radius: 14px; padding: 13px 14px; font: inherit; background:#fffdf8; }
input:focus, select:focus, textarea:focus { outline: 3px solid rgba(246,178,26,.35); border-color:#111; }
.form-note { text-align:center; font-size:14px; }
.form-note a { font-weight:900; text-decoration:underline; }
.trust-strip { background:#111; color:#fff; padding: 20px 0; }
.trust-grid { display:grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.trust-item { display:flex; align-items:center; gap: 10px; background: rgba(255,255,255,.08); padding: 16px; border-radius: 18px; border:1px solid rgba(255,255,255,.12); }
.trust-item span { font-size: 23px; color: var(--brand); }
.section { padding: 88px 0; }
.section-heading { max-width: 830px; margin-bottom: 36px; }
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 18px; margin: 14px 0 0; }
.centered { text-align:center; margin-left:auto; margin-right:auto; }
.service-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.service-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; box-shadow: 0 14px 38px rgba(0,0,0,.08); }
.service-card img { height: 190px; width:100%; object-fit:cover; background: linear-gradient(135deg, #222, #f6b21a); }
.service-card h3, .service-card p, .service-card a { margin-left: 22px; margin-right: 22px; }
.service-card h3 { margin-top: 22px; }
.service-card p { color: var(--muted); }
.service-card a { display:inline-block; margin-bottom: 24px; font-weight:950; color: var(--brand-dark); }
.gallery-section { background:#fffaf1; }
.gallery-grid { display:grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.gallery-grid figure { margin:0; background:#fff; border:1px solid var(--line); border-radius: var(--radius); overflow:hidden; box-shadow: 0 14px 34px rgba(0,0,0,.08); }
.gallery-grid img { width:100%; height: 280px; object-fit: cover; }
.gallery-grid figcaption { padding: 14px 18px; font-weight: 950; color:#222; }
.split-section { background:#fff; }
.alt-bg { background:#fff7df; }
.split-grid { display:grid; grid-template-columns: 1fr 390px; gap: 50px; align-items:center; }
.split-grid.reverse { grid-template-columns: 430px 1fr; }
.steps-grid { display:grid; gap: 14px; margin-top: 28px; }
.steps-grid div { background:#fffaf1; border:1px solid var(--line); border-radius:18px; padding:18px; display:grid; grid-template-columns: 42px 1fr; column-gap:14px; }
.steps-grid span { grid-row:1 / 3; width:42px; height:42px; border-radius:50%; background: var(--brand); display:grid; place-items:center; font-weight:950; border:2px solid #111; }
.steps-grid p { margin: 4px 0 0; color: var(--muted); }
.cta-panel { background:#111; color:#fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.cta-panel p { color:#dedede; }
.cta-panel .btn { margin-top: 12px; }
.cta-panel .btn-ghost { background: transparent; color:#fff; border-color: rgba(255,255,255,.45); }
.dark-section { background: #111; color:#fff; }
.dark-section .eyebrow { color: var(--brand); }
.dark-section .section-heading p { color:#d7d7d7; }
.reviews-widget-wrap { background:#fff; color:#111; border-radius: var(--radius); padding: 18px; min-height: 220px; box-shadow: var(--shadow); }
.area-columns { display:grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.area-card { background:#fff; border:1px solid var(--line); border-radius: var(--radius); padding: 22px; box-shadow: 0 10px 28px rgba(0,0,0,.06); }
.area-card h3 { font-size: 22px; margin-bottom: 12px; }
.area-card ul { list-style:none; padding:0; margin:0; columns: 1; }
.area-card li { padding: 6px 0; border-bottom:1px solid #f0e8dc; color:#333; font-weight:750; }
.seo-city-block { margin-top: 22px; background:#111; color:#fff; border-radius: var(--radius); padding: 24px; }
.seo-city-block p { color:#e5e5e5; }
.photo-stack { position:relative; }
.photo-stack img { height: 480px; width:100%; object-fit:cover; border-radius: var(--radius); background: linear-gradient(135deg, #111, #f6b21a); border: 2px solid #111; box-shadow: var(--shadow); }
.photo-card { position:absolute; right: -16px; bottom: 28px; background: var(--brand); color:#111; border:2px solid #111; border-radius:18px; padding:18px; font-weight:950; max-width: 260px; box-shadow: 0 12px 0 #111; }
.check-list { list-style:none; padding:0; margin: 24px 0; display:grid; gap:12px; font-weight:800; }
.check-list li { background:#fff; border:1px solid var(--line); border-radius:14px; padding: 12px 14px; }
.check-list li:before { content:"✓"; margin-right:8px; color: var(--brand-dark); font-weight:950; }
.inline-actions { display:flex; gap:12px; flex-wrap:wrap; }
.narrow { max-width: 860px; }
.faq-list { display:grid; gap: 14px; }
details { background:#fff; border:1px solid var(--line); border-radius: 18px; padding: 18px 20px; box-shadow: 0 8px 22px rgba(0,0,0,.05); }
summary { cursor:pointer; font-weight:950; font-size: 18px; }
details p { color: var(--muted); margin-bottom:0; }
.final-cta { padding: 60px 0; background: var(--brand); border-top:2px solid #111; border-bottom:2px solid #111; }
.final-grid { display:flex; justify-content:space-between; align-items:center; gap: 30px; }
.final-grid p { margin-bottom:0; font-weight:700; }
.final-actions { display:flex; gap: 12px; flex-wrap:wrap; justify-content:flex-end; }
.site-footer { background:#111; color:#fff; padding: 50px 0 30px; }
.footer-grid { display:grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
.footer-brand .brand-logo { box-shadow: 0 8px 0 #fff; }
.footer-brand .brand-mark { box-shadow: 0 8px 0 #fff; }
.site-footer p { color:#cfcfcf; }
.site-footer h3 { font-size:18px; margin-bottom:12px; }
.site-footer a:not(.brand) { display:block; color:#e8e8e8; margin: 8px 0; }
.footer-bottom { margin-top: 30px; padding-top: 20px; border-top:1px solid rgba(255,255,255,.18); display:flex; justify-content:space-between; gap:20px; font-size:14px; }
.mobile-sticky-cta { display:none; }
@media (max-width: 980px) {
  .main-nav, .header-actions { display:none; }
  .menu-toggle { display:block; }
  .main-nav.is-open { position:absolute; top:76px; left:0; right:0; display:grid; background:#fffaf1; padding: 20px; border-bottom:1px solid var(--line); }
  .hero-grid, .split-grid, .split-grid.reverse { grid-template-columns: 1fr; }
  .quote-card { max-width: 560px; margin:auto; }
  .trust-grid, .service-grid, .area-columns, .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .photo-stack img { height: 360px; }
  .gallery-grid img { height: 240px; }
}
@media (max-width: 680px) {
  body { padding-bottom: 70px; }
  .container { width: min(100% - 26px, 1180px); }
  .alert-grid { display:block; padding: 10px 0; }
  .nav-wrap { height: 68px; }
  .brand-logo, .brand-mark { width:42px; height:42px; }
  .hero-first-screen { padding: 34px 0 38px; }
  .rating-row { border-radius:18px; align-items:flex-start; }
  h1 { font-size: 39px; }
  .hero-subtitle { font-size: 17px; }
  .btn-large, .hero-cta-row .btn { width:100%; }
  .trust-grid, .service-grid, .area-columns, .gallery-grid, .footer-grid { grid-template-columns: 1fr; }
  .section { padding: 58px 0; }
  .steps-grid div { grid-template-columns: 1fr; }
  .steps-grid span { margin-bottom: 10px; }
  .final-grid, .footer-bottom { display:block; }
  .final-actions { justify-content:stretch; margin-top: 18px; }
  .final-actions .btn { width:100%; }
  .mobile-sticky-cta { position:fixed; bottom:0; left:0; right:0; display:grid; grid-template-columns:1fr 1fr; z-index: 1000; box-shadow: 0 -8px 24px rgba(0,0,0,.18); }
  .mobile-sticky-cta a { background: var(--brand); color:#111; font-weight:950; text-align:center; padding: 16px 8px; border-top:2px solid #111; }
  .mobile-sticky-cta a:last-child { background:#111; color:#fff; }
}

.city-link-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(160px,1fr));gap:12px}.city-link-grid a,.city-link-grid span{background:#fff;border:1px solid rgba(0,0,0,.08);padding:12px 14px;border-radius:14px;text-decoration:none;color:var(--dark);font-weight:700;box-shadow:0 8px 24px rgba(0,0,0,.05)}
