:root {
     --navy: #102a43;
     --blue: #1677c8;
     --light: #f4f8fb;
     --pale-blue: #edf6fc;
     --text: #243b53;
     --muted: #627d98;
     --white: #fff;
     --orange: #f59e0b;
     --border: #d9e2ec;
     --shadow: 0 12px 35px rgba(16, 42, 67, 0.08);
     --shadow-hover: 0 18px 38px rgba(16, 42, 67, 0.14);
}
* {
     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(--text);
     line-height: 1.6;
     background: var(--white);
}
a {
     color: inherit;
     text-decoration: none;
}
img {
     display: block;
     max-width: 100%;
}
.container {
     width: min(1120px, 92%);
     margin: auto;
}
.topbar {
     background: var(--navy);
     color: var(--white);
     font-size: 0.9rem;
     padding: 8px 0;
}
.topbar .container {
     display: flex;
     justify-content: space-between;
     gap: 12px;
     flex-wrap: wrap;
}
.nav {
     position: sticky;
     top: 0;
     z-index: 20;
     background: rgba(255, 255, 255, 0.97);
     border-bottom: 1px solid var(--border);
     box-shadow: 0 3px 12px rgba(16, 42, 67, 0.04);
}
.nav-inner {
     min-height: 74px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 20px;
}
.brand {
     font-size: 1.35rem;
     font-weight: 850;
     color: var(--navy);
}
.brand span {
     color: var(--blue);
}
.nav-links {
     display: flex;
     gap: 22px;
     align-items: center;
     font-weight: 650;
     font-size: 0.95rem;
}
.nav-links a {
     transition: color 0.2s ease;
}
.nav-links a:hover {
     color: var(--blue);
}
.menu {
     display: none;
     border: 1px solid var(--border);
     background: var(--white);
     border-radius: 8px;
     padding: 8px 10px;
     font-size: 1.2rem;
}
.btn {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
     border: 0;
     border-radius: 9px;
     padding: 13px 18px;
     font-weight: 800;
     cursor: pointer;
     background: var(--blue);
     color: var(--white);
     box-shadow: 0 6px 14px rgba(22, 119, 200, 0.18);
     transition:
          transform 0.2s ease,
          box-shadow 0.2s ease,
          filter 0.2s ease;
}
.btn:hover {
     transform: translateY(-2px);
     filter: brightness(0.96);
     box-shadow: 0 9px 18px rgba(22, 119, 200, 0.25);
}
.btn.secondary {
     background: var(--white);
     color: var(--navy);
     border: 1px solid var(--border);
     box-shadow: none;
}
.btn.emergency {
     background: var(--orange);
     color: #1f2933;
}
.hero {
     background:
          linear-gradient(
               105deg,
               rgba(9, 32, 52, 0.96),
               rgba(15, 82, 132, 0.82)
          ),
          url("https://images.unsplash.com/photo-1585704032915-c3400ca199e7?auto=format&fit=crop&w=1800&q=85")
               center/cover;
     color: var(--white);
     padding: 74px 0 82px;
}
.hero-grid {
     display: grid;
     grid-template-columns: 1.15fr 0.85fr;
     align-items: center;
     gap: 42px;
}
.eyebrow {
     font-weight: 850;
     letter-spacing: 0.09em;
     text-transform: uppercase;
     font-size: 0.8rem;
     color: #bde3ff;
}
.eyebrow.dark {
     color: var(--blue);
}
.hero h1 {
     font-size: clamp(2.2rem, 5vw, 4.2rem);
     line-height: 1.08;
     margin: 12px 0 18px;
     letter-spacing: -0.04em;
}
.hero p {
     font-size: 1.08rem;
     max-width: 620px;
     color: #e6f2fb;
}
.hero-actions {
     display: flex;
     gap: 12px;
     flex-wrap: wrap;
     margin-top: 24px;
}
.emergency-card {
     padding: 30px;
     background: rgba(255, 255, 255, 0.1);
     border: 1px solid rgba(255, 255, 255, 0.25);
     border-radius: 14px;
     box-shadow: 0 14px 32px rgba(0, 0, 0, 0.14);
}
.badge {
     display: inline-block;
     background: #dff2ff;
     color: var(--navy);
     border-radius: 999px;
     padding: 5px 10px;
     font-size: 0.8rem;
     font-weight: 800;
}
.phone {
     display: block;
     color: #fff;
     font-size: 1.8rem;
     font-weight: 850;
     margin: 14px 0;
}
.trust-panel h3 {
     margin: 18px 0 10px;
     color: #fff;
     line-height: 1.3;
}
.trust-panel p {
     margin: 0;
     color: #e6f2fb;
     font-size: 1rem;
}
.trust-points {
     list-style: none;
     padding: 0;
     margin: 20px 0 0;
     display: grid;
     gap: 9px;
}
.trust-points li::before {
     content: "✓";
     color: #bde3ff;
     font-weight: 900;
     margin-right: 9px;
}
.section {
     padding: 76px 0;
}
.intro-section {
     background: var(--white);
}
.reviews-section {
     background: var(--light);
}
.section-tint,
.service-areas {
     background: var(--pale-blue);
}
.section-head {
     max-width: 700px;
     margin-bottom: 30px;
}
.section-head h2,
.section h2 {
     color: var(--navy);
     line-height: 1.15;
     margin: 0 0 12px;
     font-size: clamp(1.75rem, 3vw, 2.45rem);
}
.section-head p {
     color: var(--muted);
     margin: 0 0 20px;
}
.cards {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 20px;
}
.card {
     background: var(--white);
     border: 1px solid var(--border);
     border-radius: 12px;
     padding: 26px;
     box-shadow: var(--shadow);
     transition:
          transform 0.22s ease,
          box-shadow 0.22s ease;
}
.card:hover {
     transform: translateY(-4px);
     box-shadow: var(--shadow-hover);
}
.card h3 {
     margin: 0 0 8px;
     color: var(--navy);
}
.card p {
     color: var(--muted);
     margin: 0;
}
.icon {
     font-size: 1.8rem;
     margin-bottom: 10px;
}
.stars {
     color: var(--orange);
     letter-spacing: 0.1em;
     margin-bottom: 8px;
}
.split,
.about-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 48px;
     align-items: center;
}
.checklist {
     list-style: none;
     padding: 0;
     margin: 20px 0 0;
}
.checklist li {
     margin: 10px 0;
}
.checklist li::before {
     content: "✓";
     color: var(--blue);
     font-weight: 900;
     margin-right: 10px;
}
.about-photo,
.map-placeholder {
     position: relative;
     overflow: hidden;
     border-radius: 14px;
     box-shadow: var(--shadow);
     background: #dbeaf4;
}
.about-photo img {
     width: 100%;
     height: 420px;
     object-fit: cover;
}
.about-photo span,
.map-placeholder span {
     position: absolute;
     left: 14px;
     bottom: 14px;
     background: rgba(16, 42, 67, 0.88);
     color: #fff;
     padding: 8px 11px;
     border-radius: 7px;
     font-size: 0.85rem;
}
.editable-note {
     border-left: 3px solid var(--blue);
     padding-left: 14px;
     color: var(--muted);
     font-style: italic;
}
.story-card {
     background: #fff;
}
.values-section {
     background: var(--white);
}
.areas-grid {
     display: grid;
     grid-template-columns: 1.35fr 0.65fr;
     gap: 28px;
     align-items: stretch;
}
.map-placeholder img {
     width: 100%;
     height: 280px;
     object-fit: cover;
     filter: saturate(0.7);
}
.area-list {
     background: #fff;
     border: 1px solid var(--border);
     border-radius: 12px;
     padding: 26px;
     box-shadow: var(--shadow);
}
.area-list h3 {
     color: var(--navy);
     margin-top: 0;
}
.area-list ul {
     list-style: none;
     padding: 0;
     margin: 0;
     display: grid;
     gap: 10px;
}
.area-list li {
     border-bottom: 1px solid var(--border);
     padding-bottom: 8px;
}
.footer {
     background: var(--navy);
     color: #d9e2ec;
     padding: 26px 0;
}
.footer-inner {
     display: flex;
     justify-content: space-between;
     gap: 20px;
}
.footer a {
     color: #fff;
     font-weight: 700;
}
.contact-grid {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 40px;
}
.map {
     border: 0;
     width: 100%;
     height: 300px;
     border-radius: 10px;
     box-shadow: var(--shadow);
}
.form {
     padding: 28px;
     border: 1px solid var(--border);
     border-radius: 12px;
     box-shadow: var(--shadow);
}
.form-status {
     min-height: 24px;
     margin: 14px 0 0;
     font-weight: 700;
}
.form-status.success {
     color: #16734b;
}
.form-status.error {
     color: #b42318;
}
.form button:disabled {
     cursor: wait;
     opacity: 0.7;
}
.field {
     margin: 14px 0;
}
.field label {
     display: block;
     font-weight: 700;
     margin-bottom: 5px;
}
.field input,
.field textarea {
     width: 100%;
     padding: 11px;
     border: 1px solid var(--border);
     border-radius: 7px;
     font: inherit;
}
.field textarea {
     min-height: 130px;
     resize: vertical;
}
@media (max-width: 800px) {
     .nav-links {
          display: none;
          position: absolute;
          top: 74px;
          left: 0;
          right: 0;
          background: #fff;
          padding: 18px 4%;
          border-bottom: 1px solid var(--border);
          flex-direction: column;
          align-items: flex-start;
     }
     .nav-links.open {
          display: flex;
     }
     .menu {
          display: block;
          padding: 6px 8px;
          font-size: 1rem;
     }
     .nav-inner > .btn {
          padding: 9px 11px;
          font-size: 0.78rem;
          gap: 4px;
          border-radius: 7px;
          white-space: nowrap;
     }
     .hero {
          padding: 48px 0 55px;
     }
     .hero-grid,
     .split,
     .about-grid,
     .contact-grid,
     .areas-grid {
          grid-template-columns: 1fr;
          gap: 26px;
     }
     .hero h1 {
          font-size: 2.45rem;
     }
     .section {
          padding: 52px 0;
     }
     .cards {
          grid-template-columns: 1fr;
     }
     .card {
          padding: 22px;
     }
     .phone {
          font-size: 1.6rem;
     }
     .topbar .container {
          justify-content: center;
          text-align: center;
     }
     .hero-actions .btn {
          width: 100%;
     }
     .about-photo img {
          height: 280px;
     }
     .map-placeholder img {
          height: 220px;
     }
     .footer-inner {
          flex-direction: column;
     }
}
@media (prefers-reduced-motion: reduce) {
     *,
     *::before,
     *::after {
          scroll-behavior: auto !important;
          transition-duration: 0.01ms !important;
     }
}
