@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --navy: #073b4c;
  --navy-deep: #052c39;
  --blue: #0b6e99;
  --blue-bright: #0e91c4;
  --aqua: #7bdff2;
  --cream: #f5f7f6;
  --white: #ffffff;
  --ink: #17262d;
  --muted: #65757d;
  --line: #dbe4e7;
  --gold: #f4b942;
  --shadow: 0 22px 70px rgba(5, 44, 57, .12);
  --radius: 22px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
}
body.modal-open { overflow: hidden; }
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { cursor: pointer; }
section[id] { scroll-margin-top: 88px; }

.container {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 9999;
  background: #fff;
  padding: 10px 14px;
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(7,59,76,.08);
}

.nav-wrap {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--navy);
  font-size: 1.08rem;
  letter-spacing: -.02em;
}
.brand strong { font-weight: 800; }
.brand-mark {
  width: 35px;
  height: 35px;
  display: grid;
  place-items: center;
  background: var(--navy);
  border-radius: 50%;
  padding: 8px;
}
.brand-mark svg { width: 100%; height: 100%; fill: var(--aqua); }
.brand-mark .brand-mark-line { fill: none; stroke: #fff; stroke-width: 4; stroke-linecap: round; }

.menu-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  margin: 5px 0;
  transition: .25s ease;
}

.main-nav {
  position: absolute;
  inset: 72px 0 auto 0;
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 14px 16px 20px;
  background: #fff;
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 50px rgba(5,44,57,.1);
}
.main-nav.is-open { display: flex; }
.main-nav a {
  text-decoration: none;
  font-size: .94rem;
  font-weight: 700;
  padding: 12px 10px;
  border-radius: 10px;
}
.main-nav a:hover { background: var(--cream); }
.main-nav .nav-call {
  background: var(--navy);
  color: #fff;
  text-align: center;
  margin-top: 6px;
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 10%, rgba(123,223,242,.24), transparent 28%),
    linear-gradient(135deg, #f9fbfb 0%, #eef6f7 100%);
  padding: 64px 0 54px;
}
.hero::after {
  content: "";
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(11,110,153,.1);
  border-radius: 50%;
  right: -160px;
  bottom: -140px;
}

.hero-grid { display: grid; gap: 44px; align-items: center; }
.eyebrow {
  margin: 0 0 12px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .15em;
  font-size: .73rem;
  font-weight: 800;
}
.hero h1,
.section-heading h2,
.about-grid h2,
.map-heading h2 {
  margin: 0;
  font-family: "Playfair Display", Georgia, serif;
  line-height: 1.05;
  letter-spacing: -.035em;
  color: var(--navy-deep);
}
.hero h1 { font-size: clamp(2.55rem, 10vw, 4.7rem); max-width: 780px; }
.hero h1 span { color: var(--blue); }

.hero-lead {
  max-width: 680px;
  margin: 24px 0 0;
  color: #53656d;
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 30px;
}

.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 20px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: var(--navy);
  color: #fff;
  box-shadow: 0 13px 30px rgba(7,59,76,.2);
}
.btn-primary:hover { background: var(--blue); }
.btn-secondary {
  background: #fff;
  color: var(--navy);
  border-color: var(--line);
}
.btn-outline {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: #fff; }

.hero-proof {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 34px;
}
.hero-proof > div {
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(7,59,76,.09);
  border-radius: 14px;
  padding: 14px 16px;
}
.hero-proof strong,
.hero-proof small { display: block; }
.hero-proof strong { color: var(--navy); }
.hero-proof small { margin-top: 3px; color: var(--muted); font-size: .74rem; }
.stars { color: var(--gold); letter-spacing: .06em; }

.hero-visual {
  min-height: 330px;
  position: relative;
  border-radius: 32px;
  background:
    linear-gradient(145deg, rgba(7,59,76,.98), rgba(11,110,153,.94)),
    var(--navy);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.hero-visual::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 24px;
}
.drop {
  position: absolute;
  width: 110px;
  left: 50%;
  top: 41%;
  transform: translate(-50%, -50%);
}
.drop svg path:first-child { fill: var(--aqua); }
.drop svg path:last-child {
  fill: none;
  stroke: #fff;
  stroke-width: 7;
  stroke-linecap: round;
  opacity: .88;
}
.pipe {
  position: absolute;
  width: 180px;
  height: 58px;
  border: 12px solid rgba(255,255,255,.13);
}
.pipe-a {
  right: -84px;
  top: 34px;
  border-left: 0;
  border-bottom: 0;
  border-radius: 0 40px 0 0;
}
.pipe-b {
  left: -90px;
  bottom: 42px;
  border-right: 0;
  border-top: 0;
  border-radius: 0 0 0 40px;
}
.hero-card {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: rgba(255,255,255,.96);
  padding: 17px 18px;
  border-radius: 17px;
}
.hero-card span, .hero-card small { display: block; }
.hero-card span { color: var(--muted); font-size: .76rem; }
.hero-card strong { display: block; color: var(--navy); font-size: 1.35rem; margin: 2px 0; }
.hero-card small { color: var(--muted); }

.trust-strip { background: var(--navy); color: #fff; }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1px;
  padding: 14px 0;
}
.trust-grid div {
  font-size: .78rem;
  font-weight: 700;
  padding: 7px 4px;
}
.trust-grid span { color: var(--aqua); margin-right: 5px; }

.section { padding: 78px 0; }
.section-heading { max-width: 760px; margin-bottom: 34px; }
.section-heading h2,
.about-grid h2,
.map-heading h2 { font-size: clamp(2.1rem, 8vw, 3.6rem); }
.section-heading > p:last-child { color: var(--muted); margin: 17px 0 0; }

.services-grid {
  display: grid;
  gap: 16px;
}
.service-card {
  min-height: 250px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  transition: .2s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  background: #e9f7fa;
  color: var(--blue);
  border-radius: 14px;
  font-weight: 800;
  font-size: 1.4rem;
}
.service-card h3 { margin: 24px 0 9px; color: var(--navy); }
.service-card p { margin: 0; color: var(--muted); }

.section-dark {
  background: var(--navy-deep);
  color: #dbe9ed;
}
.about-grid { display: grid; gap: 28px; }
.section-dark h2 { color: #fff; }
.eyebrow-light { color: var(--aqua); }
.about-copy p { margin: 0 0 18px; }
.text-link {
  color: var(--blue);
  text-decoration: none;
  font-weight: 800;
}
.section-dark .text-link { color: var(--aqua); }

.reviews-section { background: var(--cream); }
.heading-row { max-width: none; }
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 12px 15px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--line);
  text-decoration: none;
}
.google-rating > strong {
  color: var(--navy);
  font-size: 1.75rem;
}
.google-rating span span,
.google-rating small { display: block; }
.google-rating small { color: var(--muted); font-size: .73rem; }

.reviews-grid { display: grid; gap: 16px; }
.review-card {
  display: flex;
  flex-direction: column;
  min-height: 245px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.review-card.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}
.review-stars { color: var(--gold); letter-spacing: .05em; }
.review-card blockquote {
  margin: 18px 0 28px;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.08rem;
  line-height: 1.55;
}
.review-card footer { margin-top: auto; }
.review-card footer strong,
.review-card footer span { display: block; }
.review-card footer strong { color: var(--navy); }
.review-card.featured footer strong { color: #fff; }
.review-card footer span { color: var(--muted); font-size: .77rem; }
.review-card.featured footer span { color: #bcd3dc; }
.reviews-cta { text-align: center; margin-top: 30px; }

.contact-grid { display: grid; gap: 20px; }
.contact-form {
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}
.contact-form label { display: block; margin-bottom: 16px; }
.contact-form label > span:first-child {
  display: block;
  margin-bottom: 6px;
  font-size: .83rem;
  font-weight: 800;
  color: var(--navy);
}
input, select, textarea {
  width: 100%;
  border: 1px solid #cad7db;
  border-radius: 11px;
  padding: 12px 13px;
  background: #fff;
  color: var(--ink);
  outline: none;
  transition: border .2s ease, box-shadow .2s ease;
}
input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(14,145,196,.12);
}
textarea { resize: vertical; min-height: 140px; }
.check {
  display: grid !important;
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
}
.check input { width: 17px; height: 17px; margin-top: 3px; }
.check span { margin: 0 !important; color: var(--muted) !important; font-weight: 500 !important; font-size: .78rem !important; }
.btn-submit { width: 100%; border: 0; }
.form-note { margin: 12px 0 0; color: var(--muted); font-size: .8rem; min-height: 1.4em; }

.contact-card {
  padding: 27px;
  border-radius: var(--radius);
  background: var(--navy);
  color: #fff;
}
.contact-card h3 { font-size: 1.5rem; margin: 0 0 24px; }
.contact-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 12px;
  align-items: start;
  text-decoration: none;
  padding: 14px 0;
  border-top: 1px solid rgba(255,255,255,.13);
}
.contact-symbol {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  background: rgba(123,223,242,.13);
  color: var(--aqua);
  border-radius: 10px;
}
.contact-line small,
.contact-line strong { display: block; }
.contact-line small { color: #aac4ce; font-size: .72rem; margin-bottom: 2px; }
.contact-line strong { font-size: .89rem; overflow-wrap: anywhere; }

.map-section { padding: 0 0 78px; }
.map-heading {
  display: flex;
  flex-direction: column;
  gap: 15px;
  justify-content: space-between;
  margin-bottom: 24px;
}
.map-wrap {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  min-height: 360px;
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

.site-footer {
  padding: 55px 0 88px;
  background: #03232e;
  color: #bdd0d7;
}
.footer-grid {
  display: grid;
  gap: 32px;
}
.brand-footer { color: #fff; }
.footer-grid h3 { color: #fff; margin: 0 0 12px; font-size: .9rem; }
.footer-grid a {
  display: block;
  width: fit-content;
  color: #bdd0d7;
  text-decoration: none;
  margin: 7px 0;
  font-size: .84rem;
}
.footer-grid p { font-size: .84rem; }
.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: .76rem;
}
.legal-button {
  border: 0;
  padding: 0;
  background: transparent;
  color: #bdd0d7;
  text-align: left;
  text-decoration: underline;
}

.mobile-call {
  position: fixed;
  z-index: 900;
  left: 14px;
  right: 14px;
  bottom: 13px;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--blue);
  color: #fff;
  border-radius: 999px;
  box-shadow: 0 12px 35px rgba(5,44,57,.28);
  text-decoration: none;
  font-weight: 800;
}

.legal-modal {
  width: min(92vw, 760px);
  max-height: 86vh;
  border: 0;
  border-radius: 22px;
  padding: 0;
  box-shadow: 0 28px 100px rgba(0,0,0,.35);
}
.legal-modal::backdrop { background: rgba(3,35,46,.72); backdrop-filter: blur(4px); }
.modal-head {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 22px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}
.modal-head h2 { margin: 0; color: var(--navy); }
.modal-close {
  width: 38px;
  height: 38px;
  border: 0;
  background: var(--cream);
  color: var(--navy);
  border-radius: 50%;
  font-size: 1.5rem;
}
.modal-content { padding: 22px; }
.modal-content h3 { color: var(--navy); margin: 24px 0 6px; }
.modal-content h3:first-child { margin-top: 0; }
.modal-content p { color: var(--muted); margin: 0; }

@media (min-width: 640px) {
  .hero-actions { flex-direction: row; }
  .hero-proof { grid-template-columns: repeat(3,1fr); }
  .services-grid, .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .heading-row {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 30px;
  }
  .google-rating { margin-top: 0; flex: 0 0 auto; }
  .map-heading { flex-direction: row; align-items: end; }
  .footer-grid { grid-template-columns: 1.4fr .8fr 1fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; }
}

@media (min-width: 900px) {
  .nav-wrap { min-height: 78px; }
  .menu-toggle { display: none; }
  .main-nav {
    position: static;
    display: flex !important;
    flex-direction: row;
    align-items: center;
    box-shadow: none;
    border: 0;
    padding: 0;
    background: transparent;
  }
  .main-nav a { padding: 9px 11px; }
  .main-nav .nav-call { margin: 0 0 0 7px; padding: 10px 17px; }
  .hero { padding: 95px 0 82px; }
  .hero-grid { grid-template-columns: 1.2fr .8fr; gap: 60px; }
  .hero-visual { min-height: 500px; }
  .hero-card { left: 28px; right: 28px; bottom: 28px; padding: 20px 22px; }
  .trust-grid { grid-template-columns: repeat(4,1fr); }
  .trust-grid div { text-align: center; }
  .section { padding: 105px 0; }
  .services-grid { grid-template-columns: repeat(4,1fr); }
  .about-grid { grid-template-columns: .9fr 1.1fr; gap: 90px; }
  .about-copy { font-size: 1.05rem; padding-top: 10px; }
  .reviews-grid { grid-template-columns: repeat(3,1fr); }
  .contact-grid { grid-template-columns: 1.25fr .75fr; gap: 28px; }
  .contact-form { padding: 32px; }
  .contact-card { padding: 34px; }
  .map-section { padding-bottom: 105px; }
  .site-footer { padding-bottom: 40px; }
  .mobile-call { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
