:root {
  --ink: #101820;
  --muted: #56616d;
  --line: #d9e0e7;
  --paper: #ffffff;
  --soft: #f5f7f9;
  --steel: #263542;
  --red: #c71f2d;
  --amber: #f5b942;
  --green: #13795b;
  --shadow: 0 16px 40px rgba(16, 24, 32, .12);
  --radius: 8px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.6;
  background: var(--paper);
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; }
.container { width: min(1120px, calc(100% - 32px)); margin: 0 auto; }
.skip-link { position: absolute; left: -999px; top: 8px; background: var(--ink); color: #fff; padding: 10px; z-index: 20; }
.skip-link:focus { left: 8px; }

.topbar { background: var(--ink); color: #fff; font-size: .92rem; }
.topbar .container { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; padding: 8px 0; }
.site-header { position: sticky; top: 0; z-index: 10; background: rgba(255,255,255,.96); border-bottom: 1px solid var(--line); backdrop-filter: blur(10px); }
.nav-wrap { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 12px 0; }
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; font-weight: 800; }
.brand img { width: 54px; height: 54px; object-fit: contain; }
.brand span { max-width: 170px; line-height: 1.1; }
.menu-toggle { display: none; border: 1px solid var(--line); background: #fff; border-radius: var(--radius); padding: 9px 11px; font-weight: 700; }
.nav-links { display: flex; align-items: center; gap: 18px; }
.nav-links a { text-decoration: none; font-weight: 700; font-size: .94rem; }
.nav-links a:hover { color: var(--red); }
.nav-group { position: relative; }
.nav-parent { cursor: default; }
.submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  width: 270px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 10px;
  z-index: 12;
}
.submenu a { display: block; padding: 9px 10px; border-radius: 6px; }
.submenu a:hover { background: var(--soft); }
.nav-group:hover .submenu, .nav-group:focus-within .submenu { display: block; }
.nav-parent { display: inline-flex; align-items: center; min-height: 44px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: var(--radius);
  padding: 10px 16px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 800;
}
.btn-primary { background: var(--red); color: #fff; }
.btn-primary:hover { background: #a91824; }
.btn-secondary { background: var(--ink); color: #fff; }
.btn-ghost { border-color: var(--line); background: #fff; color: var(--ink); }

.hero { background: var(--steel); color: #fff; }
.hero-grid { display: grid; gap: 28px; padding: 44px 0 28px; }
.hero-copy { display: grid; align-content: center; gap: 18px; }
.eyebrow { margin: 0; color: var(--amber); font-weight: 800; text-transform: uppercase; letter-spacing: 0; font-size: .82rem; }
h1, h2, h3 { line-height: 1.15; margin: 0 0 12px; }
h1 { font-size: clamp(2.15rem, 8vw, 4.6rem); max-width: 920px; }
h2 { font-size: clamp(1.75rem, 5vw, 2.7rem); }
h3 { font-size: 1.18rem; }
.hero p { font-size: 1.08rem; max-width: 720px; margin: 0; color: #edf2f6; }
.hero-actions, .cta-row { display: flex; flex-wrap: wrap; gap: 12px; }
.trust-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; margin-top: 8px; }
.trust-row span { border: 1px solid rgba(255,255,255,.22); padding: 10px; border-radius: var(--radius); font-weight: 700; }
.hero-media { position: relative; min-height: 280px; overflow: hidden; border-radius: var(--radius); box-shadow: var(--shadow); }
.hero-media img { width: 100%; height: 100%; min-height: 280px; object-fit: cover; }

section { padding: 56px 0; }
.section-head { max-width: 780px; margin-bottom: 24px; }
.section-head p { color: var(--muted); margin: 0; }
.grid { display: grid; gap: 18px; }
.cards { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
.card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(16, 24, 32, .06);
}
.card-content { padding: 18px; display: flex; min-height: 190px; flex-direction: column; }
.card p, .feature p, .faq-item p { color: var(--muted); margin: 0 0 14px; }
.card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.card .text-link { margin-top: auto; }
.text-link { color: var(--red); font-weight: 800; text-decoration: none; }
.soft { background: var(--soft); }
.feature-grid { grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.feature { border-top: 4px solid var(--red); background: #fff; padding: 20px; border-radius: var(--radius); }
.check-list { display: grid; gap: 10px; padding-left: 20px; }
.check-list li::marker { color: var(--red); }
.process { counter-reset: step; }
.process .feature { border-top-color: var(--amber); }
.process .feature h3::before {
  counter-increment: step;
  content: counter(step) ". ";
  color: var(--red);
}
.split { display: grid; gap: 24px; align-items: center; }
.gallery { grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.gallery figure { margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.gallery img { width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.gallery figcaption { padding: 12px 14px; font-weight: 800; }
.areas { display: flex; gap: 10px; flex-wrap: wrap; padding: 0; list-style: none; }
.areas li { background: #fff; border: 1px solid var(--line); border-radius: 999px; padding: 8px 13px; font-weight: 700; }
.faq-list { display: grid; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; }
.cta-band { background: var(--ink); color: #fff; }
.cta-band p { color: #edf2f6; max-width: 720px; }
.map-wrap iframe { width: 100%; height: 380px; border: 0; border-radius: var(--radius); }
.review { border-left: 4px solid var(--amber); padding: 18px; background: #fff; border-radius: var(--radius); }
.review p { margin-top: 0; }

.page-hero { background: var(--steel); color: #fff; padding: 46px 0; }
.breadcrumbs { font-size: .9rem; margin-bottom: 12px; color: #dce5ec; }
.breadcrumbs a { color: #fff; }
.content { max-width: 860px; }
.content p, .content li { color: var(--muted); }
.service-nav { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); }
.service-nav a { border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; text-decoration: none; font-weight: 800; background: #fff; }
.keyword-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
  padding: 0;
  list-style: none;
}
.keyword-strip li {
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 999px;
  padding: 7px 12px;
  color: var(--steel);
  font-weight: 700;
  font-size: .92rem;
}
.service-detail-grid { display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.service-note {
  margin-top: 18px;
  border-left: 4px solid var(--red);
  background: #fff;
  border-radius: var(--radius);
  padding: 16px 18px;
  color: var(--muted);
}
.area-links { display: grid; gap: 10px; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); margin-top: 18px; }
.area-links a { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 12px; text-decoration: none; font-weight: 800; }
.faq-category { margin-bottom: 28px; }
.faq-category h2 { margin-bottom: 14px; }
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }
.quote-form { display: grid; gap: 12px; }
.quote-form label { font-weight: 800; }
.quote-form input, .quote-form textarea, .quote-form select {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  min-height: 44px;
  padding: 10px;
  font: inherit;
}
.quote-form textarea { min-height: 120px; }

.site-footer { background: #0c1117; color: #fff; padding: 38px 0 18px; }
.footer-grid { display: grid; gap: 22px; }
.footer-links { display: grid; gap: 8px; }
.footer-links a { color: #dce5ec; text-decoration: none; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.16); margin-top: 28px; padding-top: 16px; color: #c9d3dc; font-size: .92rem; }
.footer-credit { display: inline-block; margin-left: 10px; }
.footer-credit a { color: #fff; font-weight: 800; text-decoration: none; }
.footer-credit a:hover { color: var(--amber); }

@media (min-width: 800px) {
  .hero-grid { grid-template-columns: 1.08fr .92fr; padding: 64px 0 42px; }
  .trust-row { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .split { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
}

@media (max-width: 780px) {
  .menu-toggle { display: inline-flex; }
  .nav-links {
    display: none;
    position: absolute;
    inset: 79px 16px auto 16px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 14px;
    box-shadow: var(--shadow);
    flex-direction: column;
    align-items: stretch;
  }
  .nav-links.open { display: flex; }
  .nav-links .btn { width: 100%; }
  .nav-group { width: 100%; }
  .nav-parent { display: block; padding: 6px 0; }
  .submenu {
    display: grid;
    position: static;
    width: 100%;
    box-shadow: none;
    margin-top: 6px;
    background: var(--soft);
  }
  .topbar .container { justify-content: flex-start; }
}
