:root {
  --ink: #142130;
  --muted: #5e6c79;
  --paper: #ffffff;
  --surface: #f4fbfd;
  --surface-strong: #e4f7fb;
  --primary: #0f86a6;
  --primary-dark: #0d3d5f;
  --teal: #25bfb0;
  --aqua: #7ddfe6;
  --coral: #ff8f70;
  --line: #d8e7ec;
  --shadow: 0 18px 48px rgba(12, 60, 80, .14);
  --radius: 8px;
}
* { 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(--ink);
  background: var(--paper);
  line-height: 1.6;
  letter-spacing: 0;
}
img, video, iframe { max-width: 100%; }
a { color: inherit; text-decoration: none; }
p { margin: 0 0 1rem; color: var(--muted); }
h1, h2, h3 { margin: 0; line-height: 1.08; letter-spacing: 0; color: var(--ink); }
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 4.6vw, 4.45rem);
  font-weight: 700;
  line-height: 1.13;
}
h2 { font-size: clamp(2rem, 4vw, 3.45rem); }
h3 { font-size: 1.14rem; }
svg { width: 1.05em; height: 1.05em; flex: 0 0 auto; }
.container { width: min(1180px, calc(100% - 40px)); margin: 0 auto; }
.narrow { width: min(840px, calc(100% - 40px)); }
.center { text-align: center; }
.sr-only, .skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.skip-link:focus {
  position: fixed;
  z-index: 10000;
  top: 12px;
  left: 12px;
  background: white;
  color: var(--primary-dark);
  padding: 10px 14px;
  border-radius: var(--radius);
}
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 1000;
  color: white;
  transition: background .25s ease, box-shadow .25s ease, color .25s ease;
}
.site-header.is-scrolled,
body.menu-open .site-header {
  background: rgba(255,255,255,.96);
  color: var(--ink);
  box-shadow: 0 10px 30px rgba(10, 40, 58, .12);
  backdrop-filter: blur(12px);
}
.nav-shell {
  width: min(1240px, calc(100% - 32px));
  height: 98px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}
.brand, .footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}
.brand img {
  width: 78px;
  height: 78px;
  object-fit: contain;
  padding: 5px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  box-shadow: 0 6px 18px rgba(0,0,0,.14);
}
.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .94rem;
  font-weight: 700;
}
.desktop-nav > a, .nav-dropdown > button {
  color: inherit;
  padding: 12px 13px;
  border: 0;
  background: transparent;
  font: inherit;
  cursor: pointer;
}
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 285px;
  display: grid;
  padding: 10px;
  background: white;
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: .2s ease;
}
.nav-dropdown:hover .dropdown-menu,
.nav-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.dropdown-menu a {
  padding: 10px 12px;
  border-radius: 6px;
  color: var(--muted);
}
.dropdown-menu a:hover { background: var(--surface); color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-phone { display: inline-flex; align-items: center; gap: 7px; font-weight: 800; font-size: .92rem; }
.nav-quote {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: var(--radius);
  background: var(--teal);
  color: #062c3c;
  font-weight: 900;
}
.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: inherit;
  background: transparent;
}
.mobile-menu {
  display: none;
  width: min(1240px, calc(100% - 32px));
  margin: 0 auto 12px;
  padding: 12px;
  background: white;
  color: var(--ink);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.mobile-menu a { display: block; padding: 12px; border-bottom: 1px solid var(--line); font-weight: 750; }
.mobile-menu a:last-child { border-bottom: 0; }
body.menu-open .mobile-menu { display: block; }
.hero, .page-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: white;
}
.home-hero { min-height: 88svh; padding: 118px 0 64px; }
.page-hero { min-height: 420px; padding: 136px 0 74px; }
.hero-video,
.page-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(110deg, rgba(13, 61, 95, .86), rgba(15, 134, 166, .58) 48%, rgba(3, 18, 28, .72)),
    linear-gradient(180deg, rgba(0,0,0,.32), rgba(0,0,0,.18));
}
.hero > .container,
.page-hero-content {
  position: relative;
  z-index: 2;
}
.hero-content { max-width: 960px; }
.hero-logo {
  width: clamp(112px, 16vw, 170px);
  height: auto;
  margin-bottom: 18px;
  padding: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,.92);
  filter: drop-shadow(0 8px 20px rgba(0,0,0,.25));
}
.hero h1, .hero h2, .page-hero h1, .cta-band h2, .section-deep h2, .section-deep h3, .section-deep p, .light h2, .light p { color: white; }
.hero h1,
.page-hero h1 {
  text-shadow:
    0 0 12px rgba(125,223,230,.72),
    0 0 30px rgba(37,191,176,.42),
    0 3px 18px rgba(5,30,45,.72);
}
.home-hero h1 { max-width: 980px; margin-inline: auto; }
.page-hero h1 { max-width: 820px; }
.hero p, .page-hero p {
  max-width: 760px;
  margin: 20px auto 0;
  color: rgba(255,255,255,.89);
  font-size: 1.18rem;
}
.page-hero p { margin-left: 0; }
.page-hero-content { max-width: 820px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  margin-bottom: 14px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(125, 223, 230, .18);
  color: var(--primary-dark);
  font-size: .76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.hero .eyebrow,
.page-hero .eyebrow,
.section-deep .eyebrow,
.cta-band .eyebrow {
  color: white;
  background: rgba(255,255,255,.16);
}
.button-row { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 28px; }
.button-row.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 22px;
  border-radius: var(--radius);
  font-weight: 900;
  border: 2px solid transparent;
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--teal); color: #062c3c; }
.btn-secondary { background: var(--primary-dark); color: white; }
.btn-outline { border-color: rgba(255,255,255,.85); color: white; }
.btn-outline:hover { background: white; color: var(--primary-dark); }
.btn-light { background: white; color: var(--primary-dark); }
.btn-outline-light { border-color: white; color: white; }
.btn-outline-light:hover { background: white; color: var(--primary-dark); }
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin: 44px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(255,255,255,.25);
  background: rgba(255,255,255,.18);
  backdrop-filter: blur(12px);
}
.hero-stats div { padding: 18px 12px; }
.hero-stats strong { display: block; color: white; font-size: 1.18rem; }
.hero-stats span { color: rgba(255,255,255,.76); font-size: .82rem; font-weight: 800; text-transform: uppercase; }
.info-strip { background: var(--primary); color: white; }
.info-grid {
  display: grid;
  grid-template-columns: 1.4fr .8fr .8fr;
  align-items: center;
  gap: 18px;
  min-height: 58px;
  font-size: .95rem;
}
.info-grid > * { display: inline-flex; align-items: center; gap: 8px; }
.section { padding: clamp(72px, 9vw, 112px) 0; }
.section-muted { background: var(--surface); }
.section-surface { background: linear-gradient(180deg, white, var(--surface)); }
.section-deep { background: linear-gradient(135deg, #0d3d5f, #0f86a6 60%, #25bfb0); }
.section-heading { max-width: 780px; margin: 0 auto 44px; }
.section-heading p { margin-top: 14px; font-size: 1.08rem; }
.split {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, .98fr);
  gap: clamp(32px, 6vw, 72px);
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.two-col { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 30px; }
.feature-image,
.image-stack > img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
}
.feature-image { aspect-ratio: 4 / 3; }
.image-stack { position: relative; }
.image-badge {
  position: absolute;
  right: 18px;
  bottom: 18px;
  width: min(280px, calc(100% - 36px));
  padding: 16px;
  border-radius: var(--radius);
  background: rgba(255,255,255,.94);
  box-shadow: var(--shadow);
}
.image-badge strong, .image-badge span { display: block; }
.image-badge span { color: var(--muted); font-size: .9rem; }
.check-list { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 12px; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); font-weight: 750; }
.check-list svg { color: var(--teal); margin-top: .25em; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.service-card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.service-art {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 210px;
  overflow: hidden;
  color: var(--primary-dark);
  background:
    radial-gradient(circle at 18% 20%, rgba(125,223,230,.65), transparent 34%),
    radial-gradient(circle at 82% 18%, rgba(37,191,176,.45), transparent 32%),
    linear-gradient(135deg, #f7fdff, #dff7fb 52%, #c7f1ee);
}
.service-art::before,
.service-art::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(15,134,166,.22);
  border-radius: 999px;
  transform: rotate(-18deg);
}
.service-art::before {
  width: 210px;
  height: 82px;
}
.service-art::after {
  width: 146px;
  height: 54px;
  transform: rotate(24deg);
}
.service-art svg {
  position: relative;
  z-index: 1;
  width: 88px;
  height: 88px;
  color: var(--primary-dark);
  filter: drop-shadow(0 10px 18px rgba(13,61,95,.18));
}
.service-art span {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  color: var(--primary-dark);
  font-size: .72rem;
  text-align: center;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}
.service-card-body { padding: 18px; }
.service-card p { font-size: .93rem; }
.service-card-body span { display: inline-flex; align-items: center; gap: 8px; color: var(--primary); font-weight: 900; }
.results-grid { display: grid; gap: 18px; }
.result-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  border: 1px solid rgba(255,255,255,.28);
  border-radius: var(--radius);
  background: rgba(255,255,255,.1);
}
.result-pair div { position: relative; overflow: hidden; border-radius: 6px; background: white; }
.result-pair span {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(13,61,95,.88);
  color: white;
  font-weight: 900;
  font-size: .75rem;
  text-transform: uppercase;
}
.result-pair img { display: block; width: 100%; aspect-ratio: 1.05 / 1; object-fit: cover; }
.process-grid, .values-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
}
.values-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.process-step, .values-grid article, .contact-panel, .contact-cards > *, .faq-list, .mini-cta {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.process-step { padding: 22px; }
.process-step span {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--surface-strong);
  color: var(--primary-dark);
  font-weight: 900;
}
.values-grid article { padding: 24px; }
.quote-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(300px, .6fr);
  gap: 28px;
  align-items: start;
}
.quote-frame {
  min-height: 1100px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
}
.quote-frame iframe {
  display: block;
  min-height: 1100px;
}
.contact-panel { padding: 26px; box-shadow: var(--shadow); }
.contact-list { list-style: none; padding: 0; margin: 18px 0 0; display: grid; gap: 14px; }
.contact-list li,
.contact-list a { display: flex; align-items: flex-start; gap: 10px; color: var(--muted); }
.contact-list svg { color: var(--primary); margin-top: .25em; }
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.social-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  border-radius: var(--radius);
  background: var(--surface-strong);
  color: var(--primary-dark);
  font-weight: 900;
}
.social-links svg { color: var(--primary); }
.footer-social a {
  background: rgba(255,255,255,.1);
  color: white;
  border: 1px solid rgba(255,255,255,.16);
}
.footer-social svg { color: var(--aqua); }
.mini-cta { margin-top: 22px; padding: 18px; background: var(--surface); }
.mini-cta strong, .mini-cta span { display: block; }
.mini-cta span { color: var(--muted); font-size: .92rem; }
.reviews-frame {
  min-height: 260px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  padding: 12px;
  box-shadow: var(--shadow);
}
.faq-list { padding: 12px 24px; box-shadow: var(--shadow); }
.faq-item + .faq-item { border-top: 1px solid var(--line); }
.faq-item button {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  padding: 16px 0;
  color: var(--ink);
  text-align: left;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}
.faq-item button span,
.faq-item button span::after {
  display: block;
  width: 16px;
  height: 2px;
  background: var(--primary);
  transition: transform .18s ease;
}
.faq-item button span::after { content: ""; transform: rotate(90deg); }
.faq-item.is-open button span::after { transform: rotate(0); }
.faq-answer { display: none; padding: 0 0 18px; }
.faq-item.is-open .faq-answer { display: block; }
.cta-band {
  padding: clamp(64px, 8vw, 96px) 0;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--teal));
  color: white;
}
.cta-band p { width: min(680px, 100%); margin: 16px auto 0; color: rgba(255,255,255,.9); font-size: 1.08rem; }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 16px;
  color: rgba(255,255,255,.75);
  font-weight: 800;
}
.breadcrumbs strong { color: white; }
.related-links { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 22px; }
.related-links a {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  color: white;
  border: 1px solid rgba(255,255,255,.24);
  font-weight: 850;
}
.contact-layout { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: 34px; align-items: stretch; }
.contact-cards { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 14px; margin-top: 24px; }
.contact-cards > * { min-height: 150px; padding: 18px; display: flex; flex-direction: column; gap: 8px; }
.contact-cards svg { color: var(--primary); width: 28px; height: 28px; }
.contact-cards strong { overflow-wrap: anywhere; }
.contact-cards span { color: var(--muted); font-size: .92rem; }
.map-card {
  display: grid;
  gap: 14px;
  align-self: stretch;
}
.map-frame { width: 100%; min-height: 480px; border: 0; border-radius: var(--radius); box-shadow: var(--shadow); }
.map-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  border-radius: var(--radius);
  background: var(--primary-dark);
  color: white;
  font-weight: 900;
}
.site-footer { background: #0f2434; color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .9fr .8fr 1.15fr;
  gap: 34px;
  padding: 58px 0;
}
.footer-brand img { width: 58px; height: 58px; object-fit: contain; }
.site-footer h3 { color: white; font-size: .86rem; text-transform: uppercase; letter-spacing: .08em; margin-bottom: 14px; }
.site-footer p, .site-footer a, .site-footer li { color: rgba(255,255,255,.75); }
.site-footer ul { padding: 0; margin: 0; list-style: none; display: grid; gap: 10px; }
.site-footer .contact-list svg { color: var(--aqua); }
.fine-print { font-size: .8rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding: 18px 0; text-align: center; }
.footer-bottom p { margin: 0; font-size: .85rem; }
@media (max-width: 1080px) {
  .desktop-nav, .nav-phone, .nav-quote { display: none; }
  .mobile-toggle { display: grid; }
  .service-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}
@media (max-width: 760px) {
  .container, .narrow, .nav-shell, .mobile-menu { width: min(100% - 28px, 1180px); }
  .brand span { font-size: .95rem; }
  .brand img { width: 62px; height: 62px; }
  .nav-shell { height: 84px; }
  .home-hero { min-height: 86svh; padding-top: 116px; }
  .hero-stats, .info-grid, .split, .two-col, .quote-grid, .contact-layout, .footer-grid { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: 0; }
  .service-grid, .process-grid, .values-grid, .contact-cards { grid-template-columns: 1fr; }
  .hero p, .page-hero p { font-size: 1.02rem; }
  .button-row, .button-row.center { align-items: stretch; justify-content: stretch; }
  .btn { width: 100%; }
  .info-grid { gap: 8px; padding: 12px 0; }
  .result-pair { grid-template-columns: 1fr; }
  h1 { font-size: clamp(2rem, 10vw, 3.25rem); }
  .quote-frame,
  .quote-frame iframe { min-height: 1200px; }
  .map-frame { min-height: 360px; }
}
