:root {
  --bg-main: #f4f8ff;
  --bg-panel: #ffffff;
  --bg-soft: #eaf3ff;
  --bg-invert: #05080f;
  --brand-blue: #006dff;
  --brand-blue-bright: #00a7ff;
  --brand-blue-deep: #003cc7;
  --text-main: #101827;
  --text-muted: #5e6b7d;
  --text-light: #f7fbff;
  --border: #c9dcf4;
  --shadow: 0 20px 55px rgba(0, 80, 190, .14);
  --radius-lg: 28px;
  --radius-md: 18px;
  --max-width: 1320px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at 20% 0%, rgba(0, 109, 255, .14), transparent 34%),
    linear-gradient(180deg, #f8fbff 0%, var(--bg-main) 44%, #eef5ff 100%);
  color: var(--text-main);
  line-height: 1.55;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    radial-gradient(circle at 50% -90%, rgba(0, 109, 255, .42), transparent 48%),
    linear-gradient(90deg, rgba(5, 8, 15, .98), rgba(3, 18, 45, .97) 52%, rgba(0, 33, 88, .94));
  border-bottom: 1px solid rgba(0, 167, 255, .28);
  box-shadow: 0 12px 32px rgba(0, 23, 84, .22);
  color: var(--text-light);
}
.header-inner {
  max-width: var(--max-width);
  min-height: 108px;
  margin: 0 auto;
  padding: 12px clamp(18px, 4vw, 48px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  justify-items: center;
  gap: clamp(22px, 3vw, 48px);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2vw, 32px);
  width: 100%;
  margin: 0;
}
.main-nav-left { justify-content: flex-end; }
.main-nav-right { justify-content: flex-start; }
.main-nav a {
  position: relative;
  color: #d9e6f7;
  font-weight: 900;
  font-size: .82rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  padding: 10px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  text-shadow: none;
  box-shadow: none;
  transition: color .18s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 1px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-blue), var(--brand-blue-bright));
  opacity: 0;
  transform: scaleX(.25);
  transition: opacity .18s ease, transform .18s ease;
}
.main-nav a:hover,
.main-nav a.active {
  color: #ffffff;
  text-decoration: none;
  background: transparent;
  border-color: transparent;
  box-shadow: none;
  transform: none;
}
.main-nav a:hover::after,
.main-nav a.active::after {
  opacity: 1;
  transform: scaleX(1);
}
.brand {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: auto;
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
  isolation: isolate;
}
.brand::before {
  content: "";
  position: absolute;
  inset: -14px -24px;
  z-index: -1;
  border-radius: 28px;
  background: radial-gradient(circle, rgba(0, 167, 255, .22), transparent 66%);
  pointer-events: none;
}
.brand::after { content: none; }

.brand-header-image {
  display: block;
  width: auto;
  height: clamp(68px, 5.1vw, 88px);
  max-width: min(32vw, 300px);
  object-fit: contain;
  filter: drop-shadow(0 0 16px rgba(0, 109, 255, .3));
}
.brand-copy {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: start;
  min-width: 0;
}
.brand strong {
  display: block;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(1.28rem, 2.25vw, 2rem);
  line-height: 1;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #ffffff;
  -webkit-text-stroke: .75px #05080f;
  text-shadow: 0 2px 0 #05080f, 0 0 18px rgba(0, 167, 255, .38);
  white-space: nowrap;
}
.brand small {
  display: block;
  margin-top: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(.68rem, .9vw, .82rem);
  font-weight: 900;
  color: #9ecfff;
  letter-spacing: .24em;
  text-transform: uppercase;
  text-shadow: 0 1px 4px rgba(0, 0, 0, .6);
  white-space: nowrap;
}
.nav-toggle,
.mobile-nav { display: none; }

main { overflow: hidden; }
.hero, .section, .split-section, .cta-panel, .service-hero, .page-header, .contact-layout {
  max-width: var(--max-width);
  margin: 0 auto;
  padding-left: clamp(18px, 4vw, 48px);
  padding-right: clamp(18px, 4vw, 48px);
}
.hero {
  min-height: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, .88fr);
  align-items: center;
  gap: clamp(34px, 4vw, 56px);
  padding-top: clamp(46px, 5vw, 64px);
  padding-bottom: 42px;
}
.hero-copy { max-width: 610px; }
.eyebrow { text-transform: uppercase; letter-spacing: .16em; font-size: .78rem; color: var(--brand-blue-deep); font-weight: 900; margin: 0 0 12px; }
h1, h2, h3 { line-height: 1.05; margin: 0; }
h1 { font-size: clamp(2.8rem, 4.2vw, 3.9rem); letter-spacing: -.055em; }
.hero h1 { line-height: .98; }
.hero-title-break { display: block; }
h2 { font-size: clamp(2rem, 4.8vw, 3.5rem); letter-spacing: -.045em; }
h3 { font-size: 1.35rem; }
.lead { font-size: clamp(1.05rem, 1.65vw, 1.24rem); color: var(--text-muted); max-width: 590px; }
.hero-actions, .button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.btn { display: inline-flex; justify-content: center; align-items: center; min-height: 50px; padding: 13px 22px; border-radius: 999px; border: 1px solid var(--brand-blue-deep); font-weight: 800; cursor: pointer; transition: transform .18s ease, background .18s ease, box-shadow .18s ease, border-color .18s ease; }
.btn:hover { transform: translateY(-2px); }
.btn.primary { background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue)); color: var(--text-light); box-shadow: 0 12px 28px rgba(0, 109, 255, .24); }
.btn.secondary { background: var(--bg-panel); color: var(--brand-blue-deep); box-shadow: 0 10px 24px rgba(0, 80, 190, .08); }
.btn.ghost { background: #edf6ff; border-color: rgba(0, 60, 199, .48); color: var(--brand-blue-deep); box-shadow: 0 10px 22px rgba(0, 80, 190, .08); }
.btn.ghost:hover { background: #ffffff; border-color: var(--brand-blue); box-shadow: 0 14px 26px rgba(0, 109, 255, .14); }
.hero-visual {
  justify-self: end;
  width: min(100%, 560px);
  background: linear-gradient(180deg, #ffffff, #edf5ff);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(16px, 2vw, 22px);
  box-shadow: var(--shadow);
}
.hero-visual img { border-radius: calc(var(--radius-lg) - 8px); width: 100%; aspect-ratio: 16 / 11; object-fit: cover; }
.logo-badge-mini { display:flex; gap:14px; align-items:center; margin-top:18px; padding: 0 4px 2px; color: var(--text-muted); font-weight:800; }
.logo-badge-mini img { width: 54px; height: 54px; border-radius: 50%; filter: drop-shadow(0 0 14px rgba(0, 109, 255, .34)); flex: 0 0 auto; }

.trust-strip { max-width: var(--max-width); margin: 8px auto 46px; display: grid; grid-template-columns: repeat(4,1fr); gap: 10px; padding: 0 clamp(18px,4vw,48px); }
.trust-strip span { background: linear-gradient(135deg, var(--bg-invert), #062b77); color: var(--text-light); padding: 17px 18px; text-align: center; font-weight: 800; border: 1px solid rgba(0,109,255,.35); border-top-color: rgba(255,255,255,.18); border-radius: 18px; box-shadow: 0 12px 28px rgba(0, 23, 84, .14); }
.trust-strip span:first-child,
.trust-strip span:last-child { border-radius: 18px; }
.section { padding-top: 72px; padding-bottom: 72px; }
.section-heading { display: flex; justify-content: space-between; gap: 24px; align-items: end; margin-bottom: 28px; }
.section-heading p:last-child { max-width: 390px; color: var(--text-muted); }
.card-grid { display: grid; gap: 18px; }
.card-grid.three { grid-template-columns: repeat(3,1fr); }
.service-card, .info-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 24px; box-shadow: 0 12px 34px rgba(0,80,190,.08); }
.service-card img { border-radius: 16px; margin-bottom: 18px; border: 1px solid var(--border); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.service-card p, .info-card p { color: var(--text-muted); }
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.headshot-card { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 22px; text-align: center; box-shadow: 0 12px 34px rgba(0,80,190,.08); }
.headshot-card img { width: 150px; height: 150px; border-radius: 50%; object-fit: cover; border: 1px solid var(--border); box-shadow: var(--shadow); margin: 0 auto 16px; }
.headshot-card p { color: var(--text-muted); margin: 4px 0 0; }

.icon { font-size: 2rem; margin-bottom: 14px; display: inline-block; }
.split-section { display: grid; grid-template-columns: .85fr 1.15fr; gap: 28px; padding-top: 72px; padding-bottom: 72px; }
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.steps li { background: var(--bg-panel); border: 1px solid var(--border); border-left: 5px solid var(--brand-blue); border-radius: 18px; padding: 20px; display: grid; gap: 4px; }
.steps span { color: var(--text-muted); }
.cta-panel { margin-top: 56px; margin-bottom: 72px; background: radial-gradient(circle at 20% 20%, rgba(0,167,255,.34), transparent 32%), linear-gradient(135deg, var(--bg-invert), #052c7e); color: var(--text-light); border-radius: var(--radius-lg); padding-top: 46px; padding-bottom: 46px; box-shadow: var(--shadow); }
.cta-panel p { color: #d7d4ce; max-width: 650px; }
.cta-panel .btn.primary { background: var(--text-light); color: var(--text-main); }

.page-header { padding-top: 58px; padding-bottom: 34px; }
.page-header p { color: var(--text-muted); max-width: 720px; font-size: 1.1rem; }
.service-hero { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; align-items: center; padding-top: 42px; padding-bottom: 54px; }
.service-hero img { border-radius: var(--radius-lg); border: 1px solid var(--border); box-shadow: var(--shadow); width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.contact-layout { display:grid; grid-template-columns: .85fr 1.15fr; gap: 30px; padding-top: 40px; padding-bottom: 72px; }
.contact-panel, .form-panel { background: var(--bg-panel); border:1px solid var(--border); border-radius: var(--radius-lg); padding: 26px; box-shadow: 0 10px 30px rgba(0,0,0,.045); }
.contact-list { display:grid; gap: 12px; margin-top: 20px; }
.contact-list a, .contact-list span { padding: 14px; border: 1px solid var(--border); border-radius: 14px; }
form { display:grid; gap: 14px; }
label { display:grid; gap: 6px; font-weight: 800; }
input, textarea, select { width:100%; border:1px solid var(--border); border-radius: 12px; padding: 13px 14px; font: inherit; background: #fbfdff; color: var(--text-main); }
textarea { min-height: 130px; resize: vertical; }
.form-status { min-height: 24px; font-weight: 800; }
.form-status.success { color: #245c2c; }
.form-status.error { color: #8a1f1f; }
.site-footer { border-top: 1px solid var(--border); padding: 28px clamp(18px,4vw,48px); display:flex; justify-content:space-between; gap: 22px; background: #e8f2ff; }
.site-footer p { margin: 4px 0 0; color: var(--text-muted); }
.site-footer div:last-child { display:flex; flex-wrap:wrap; gap: 16px; font-weight:800; }

@media (max-width: 1120px) {
  .header-inner {
    min-height: 88px;
    display: flex;
    justify-content: center;
    padding: 12px clamp(14px, 4vw, 22px);
  }
  .main-nav { display: none; }
  .brand {
    width: auto;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }
  .brand::before { inset: -10px -18px; opacity: .75; }
  .brand-header-image {
    height: clamp(58px, 16vw, 78px);
    max-width: min(70vw, 290px);
  }
  .brand-copy { justify-items: center; text-align: center; }
  .brand strong {
    font-size: clamp(1rem, 4.7vw, 1.48rem);
    letter-spacing: .08em;
    -webkit-text-stroke: .65px #05080f;
  }
  .brand small {
    font-size: clamp(.62rem, 2.6vw, .78rem);
    letter-spacing: .16em;
    margin-top: 5px;
  }
  .nav-toggle {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 50;
    width: 60px;
    height: 60px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, .36);
    border-radius: 50%;
    background: linear-gradient(135deg, var(--brand-blue-deep), var(--brand-blue-bright));
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 900;
    box-shadow: 0 18px 38px rgba(0, 50, 140, .34), 0 0 0 5px rgba(0, 167, 255, .16);
    cursor: pointer;
  }
  .nav-toggle.is-open { background: linear-gradient(135deg, #05080f, var(--brand-blue-deep)); }
  .mobile-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 92px;
    z-index: 45;
    display: none;
    gap: 10px;
    padding: 14px;
    border: 1px solid rgba(0, 167, 255, .56);
    border-radius: 22px;
    background: linear-gradient(135deg, rgba(0, 60, 199, .94), rgba(5, 8, 15, .98));
    box-shadow: 0 20px 50px rgba(0, 23, 84, .4);
  }
  .mobile-nav.open { display: grid; }
  .mobile-nav a {
    color: #ffffff;
    font-weight: 900;
    padding: 14px 16px;
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 16px;
    background: rgba(255, 255, 255, .08);
    text-shadow: 0 1px 4px rgba(0, 0, 0, .5);
  }
  .mobile-nav a:hover,
  .mobile-nav a.active { background: rgba(0, 167, 255, .26); border-color: rgba(0, 167, 255, .68); }
}

@media (max-width: 820px) {
  .hero, .split-section, .service-hero, .contact-layout { grid-template-columns: 1fr; }
  .hero { min-height: auto; padding-top: 42px; padding-bottom: 30px; }
  .hero-copy { max-width: none; }
  .hero-visual { justify-self: stretch; width: 100%; }
  .card-grid.three, .trust-strip, .team-grid { grid-template-columns: 1fr; }
  .trust-strip { margin-top: 0; gap: 8px; }
  .trust-strip span, .trust-strip span:first-child, .trust-strip span:last-child { border-radius: 14px; }
  .section-heading { display:block; }
  .site-footer { flex-direction: column; }
}



.photo-gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.photo-gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-md); border: 1px solid var(--border); box-shadow: 0 10px 30px rgba(0,0,0,.045); background: var(--bg-panel); }
.photo-gallery-section code { background: #e8f2ff; border: 1px solid var(--border); border-radius: 8px; padding: 2px 6px; }

@media (max-width: 820px) {
  .photo-gallery { grid-template-columns: 1fr; }
}


a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible { outline: 3px solid rgba(0, 167, 255, .55); outline-offset: 3px; }

.photo-gallery figure {
  margin: 0;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,.045);
}
.photo-gallery figure img {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}
.photo-gallery figcaption {
  padding: 12px 14px 14px;
  color: var(--text-muted);
  font-weight: 800;
  font-size: .95rem;
}
.contact-panel > img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 20px;
  border: 1px solid var(--border);
  margin-bottom: 20px;
}
.service-card img {
  background: var(--bg-soft);
}

.form-grid { display: grid; gap: 14px; }
.form-grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.form-grid .full { grid-column: 1 / -1; }
.muted-form-copy, .form-note { color: var(--text-muted); margin-top: 0; }
.form-note { font-size: .95rem; margin-bottom: 0; }
.reviews-section { padding-top: 72px; padding-bottom: 30px; }
.reviews-layout { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.review-panel { background: var(--bg-panel); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 24px; box-shadow: 0 12px 34px rgba(0,80,190,.08); }
.review-panel h3 { margin-bottom: 16px; }
.reviews-list { display: grid; gap: 14px; }
.review-card { margin: 0; border: 1px solid var(--border); border-radius: 18px; padding: 18px; background: #fbfdff; }
.review-card p { margin: 10px 0 12px; color: var(--text-muted); }
.review-card footer { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; color: var(--text-main); }
.stars { color: var(--brand-blue-deep); letter-spacing: .05em; font-weight: 900; }
.review-source, .review-location { display: inline-flex; align-items: center; border: 1px solid var(--border); border-radius: 999px; padding: 3px 8px; color: var(--text-muted); font-size: .82rem; font-weight: 800; }
.google-summary, .empty-review { border: 1px dashed var(--border); border-radius: 16px; padding: 14px; color: var(--text-muted); background: #fbfdff; }
.google-summary strong { color: var(--text-main); }

@media (max-width: 820px) {
  .form-grid.two, .reviews-layout { grid-template-columns: 1fr; }
}
