:root {
  --bg: #f3faff;
  --bg-low: #e6f6ff;
  --bg-mid: #dbf1fe;
  --bg-high: #cfe6f2;
  --surface: #ffffff;
  --text: #071e27;
  --muted: #43474e;
  --blue: #455f88;
  --blue-dark: #2d476f;
  --red: #4a0004;
  --red-2: #73000a;
  --red-soft: #ffdad6;
  --warm: #582900;
  --warm-soft: #ffdcc6;
  --line: rgba(116, 119, 127, 0.2);
  --shadow: 0 28px 64px rgba(7, 30, 39, 0.08);
  --shadow-soft: 0 18px 40px rgba(7, 30, 39, 0.06);
  --container: min(1180px, calc(100vw - 2rem));
  --radius: 24px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--text);
  background: linear-gradient(180deg, #f8fcff 0%, var(--bg) 12%, var(--bg) 100%);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.container {
  width: var(--container);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(243, 250, 255, 0.82);
  backdrop-filter: blur(14px);
  box-shadow: 0 6px 22px rgba(7, 30, 39, 0.05);
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 82px;
}

.brand {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.05em;
}

.nav-wrap,
.header-actions,
.trust-row,
.cta-row,
.meta-row,
.badge-row {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.nav-panel {
  position: relative;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-link {
  font-weight: 600;
  color: rgba(7, 30, 39, 0.72);
  padding-bottom: 0.3rem;
  border-bottom: 2px solid transparent;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue-dark);
  border-color: var(--blue-dark);
}

.header-phone {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 14px;
  background: var(--red);
  color: #fff;
  cursor: pointer;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border: 0;
  cursor: pointer;
  padding: 0.95rem 1.35rem;
  border-radius: 14px;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 800;
  transition: transform 0.2s ease, opacity 0.2s ease, background 0.2s ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button.primary {
  color: #fff;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-2) 100%);
  box-shadow: var(--shadow-soft);
}

.button.secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.92);
}

.button.soft {
  color: var(--blue-dark);
  background: var(--bg-mid);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  background: var(--red-soft);
  color: var(--red-2);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: var(--red-2);
}

.hero,
.page-intro {
  padding: 4.25rem 0 3rem;
}

.hero-grid,
.split-grid,
.contact-grid,
.review-grid,
.service-grid,
.area-grid,
.footer-grid,
.stat-grid {
  display: grid;
  gap: 1.25rem;
}

.hero-grid,
.split-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 2.5rem;
}

.hero-title,
.page-title,
.section-title {
  margin: 0 0 1rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.hero-title {
  font-size: clamp(3rem, 6vw, 5.6rem);
}

.page-title,
.section-title {
  font-size: clamp(2.2rem, 4vw, 4.1rem);
}

.lede,
.section-copy,
.hero-copy p {
  font-size: 1.08rem;
  color: var(--muted);
  max-width: 62ch;
}

.hero-frame,
.full-bleed,
.feature-image,
.map-frame {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow);
}

.hero-frame img,
.full-bleed img,
.feature-image img,
.service-card img,
.area-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-note,
.stat-card,
.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow-soft);
}

.floating-note {
  position: absolute;
  left: -1rem;
  bottom: 1rem;
  max-width: 280px;
  padding: 1rem 1.1rem;
  border-radius: 18px;
}

.section {
  padding: 4.8rem 0;
}

.section.alt {
  background: linear-gradient(180deg, var(--bg-low) 0%, var(--bg-mid) 100%);
}

.section.dark {
  background: linear-gradient(135deg, #0b2533 0%, #1b3652 100%);
  color: #fff;
}

.section.dark .section-title,
.section.dark h3,
.section.dark p,
.section.dark li {
  color: inherit;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}

.kicker {
  margin-bottom: 0.7rem;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.card,
.service-card,
.info-card,
.review-card,
.form-card,
.contact-card,
.hours-card,
.stat-card,
.area-card {
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
}

.card,
.info-card,
.review-card,
.form-card,
.contact-card,
.hours-card,
.area-card {
  background: var(--surface);
  padding: 1.6rem;
}

.card h3,
.service-card h3,
.review-card h3,
.info-card h3,
.contact-card strong,
.hours-card strong,
.area-card h3 {
  margin: 0 0 0.75rem;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.card p,
.info-card p,
.review-card p,
.contact-card p,
.area-card p,
.card li {
  color: var(--muted);
}

.editorial-panel {
  padding: 2rem;
  border-radius: 32px;
  background: linear-gradient(135deg, var(--red) 0%, var(--red-2) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.editorial-panel h2,
.editorial-panel h3,
.editorial-panel p {
  color: inherit;
}

.service-grid {
  grid-template-columns: repeat(12, 1fr);
}

.span-4 { grid-column: span 4; }
.span-5 { grid-column: span 5; }
.span-6 { grid-column: span 6; }
.span-7 { grid-column: span 7; }
.span-8 { grid-column: span 8; }
.span-12 { grid-column: 1 / -1; }

.service-card {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #0b2533;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 30, 39, 0.08) 0%, rgba(7, 30, 39, 0.8) 100%);
}

.service-card img {
  position: absolute;
  inset: 0;
}

.service-card .body {
  position: absolute;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  z-index: 1;
  color: #fff;
}

.service-card .body h3,
.service-card .body p {
  color: inherit;
}

.list-clean {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.list-clean li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  margin-bottom: 0.75rem;
}

.list-clean li::before {
  content: "•";
  color: var(--warm);
  font-weight: 900;
}

.meta-row {
  flex-wrap: wrap;
  margin-top: 1.25rem;
}

.meta-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.65rem 0.85rem;
  border-radius: 999px;
  background: var(--bg-high);
  color: var(--text);
  font-size: 0.84rem;
  font-weight: 700;
}

.badge {
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.stat-grid {
  grid-template-columns: repeat(4, 1fr);
}

.stat-card {
  padding: 1.3rem 1.2rem;
  border-radius: 20px;
}

.stat-card strong {
  display: block;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.review-grid {
  grid-template-columns: 1.35fr 1fr 1fr;
}

.review-card.featured {
  background: #fff;
}

.stars {
  color: #ba1a20;
  font-size: 1.1rem;
  letter-spacing: 0.06em;
}

.quote {
  font-size: 1.1rem;
  line-height: 1.7;
}

.quote.large {
  font-size: 1.38rem;
  line-height: 1.55;
}

.review-author {
  margin-top: 1.4rem;
  padding-top: 1rem;
  color: var(--muted);
}

.review-author strong {
  display: block;
  color: var(--text);
}

.area-grid {
  grid-template-columns: 1.2fr 1fr 1fr;
}

.area-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.86) 0%, rgba(255,255,255,0.98) 100%);
}

.area-card.dark {
  background: linear-gradient(135deg, #0b2533 0%, #1b3652 100%);
  color: #fff;
}

.area-card.dark h3,
.area-card.dark p {
  color: inherit;
}

.contact-grid {
  grid-template-columns: 1.05fr 0.95fr;
  align-items: start;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.field.full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}

.field input,
.field select,
.field textarea {
  width: 100%;
  background: var(--bg-high);
  border: 0;
  border-radius: 16px;
  padding: 0.95rem 1rem;
  color: var(--text);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 2px solid rgba(116, 119, 127, 0.35);
}

.form-status {
  margin-top: 0.9rem;
  font-size: 0.95rem;
  color: var(--muted);
}

.hours-list,
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  color: var(--muted);
}

.map-frame iframe {
  width: 100%;
  min-height: 360px;
  border: 0;
}

.site-footer {
  margin-top: 4rem;
  padding-top: 3rem;
  background: linear-gradient(180deg, #122434 0%, #071e27 100%);
  color: #fff;
}

.footer-grid {
  grid-template-columns: 1.1fr 0.8fr 0.8fr 0.95fr;
}

.footer-title {
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 0.9rem;
}

.footer-heading {
  margin-bottom: 0.9rem;
  color: #adc7f7;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-list li {
  margin-bottom: 0.7rem;
}

.footer-copy,
.footer-list a,
.footer-note {
  color: rgba(255,255,255,0.74);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
  padding: 1.1rem 0 1.6rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.56);
  font-size: 0.85rem;
}

.mobile-dock {
  position: sticky;
  bottom: 0;
  z-index: 25;
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  padding: 0.8rem;
  background: rgba(243, 250, 255, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 -8px 20px rgba(7, 30, 39, 0.06);
}

@media (max-width: 1080px) {
  .hero-grid,
  .split-grid,
  .contact-grid,
  .review-grid,
  .area-grid,
  .footer-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .service-grid .span-4,
  .service-grid .span-5,
  .service-grid .span-6,
  .service-grid .span-7,
  .service-grid .span-8 {
    grid-column: span 6;
  }

  .header-phone {
    display: none;
  }
}

@media (max-width: 820px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-panel {
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    display: none;
    background: rgba(243, 250, 255, 0.98);
    box-shadow: var(--shadow-soft);
  }

  .nav-panel.open {
    display: block;
  }

  .nav-menu {
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
  }

  .nav-link {
    padding: 0.8rem 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .service-grid .span-4,
  .service-grid .span-5,
  .service-grid .span-6,
  .service-grid .span-7,
  .service-grid .span-8,
  .service-grid .span-12 {
    grid-column: 1 / -1;
  }

  .mobile-dock {
    display: grid;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100vw - 1.2rem, 100%);
  }

  .header-row {
    min-height: 74px;
  }

  .hero,
  .page-intro,
  .section {
    padding: 3.5rem 0;
  }

  .hero-title {
    font-size: clamp(2.6rem, 12vw, 4.3rem);
  }

  .floating-note {
    position: static;
    margin-top: 1rem;
    max-width: none;
  }
}
