:root {
  --navy: #062f5f;
  --navy-2: #0c4076;
  --blue: #16a9e7;
  --blue-2: #0f8fd0;
  --sky: #eaf8ff;
  --sky-2: #f5fbff;
  --white: #ffffff;
  --ink: #172235;
  --text: #344256;
  --muted: #667085;
  --line: #d8e5ef;
  --gray: #f4f7fa;
  --shadow: 0 18px 40px rgba(13, 58, 102, 0.14);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Inter', Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  font-size: 16px;
  line-height: 1.58;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
.hero-title,
.section-title,
.card h3,
.step-card h3 {
  font-family: 'Sora', Arial, Helvetica, sans-serif;
  letter-spacing: -0.02em;
}

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

.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
  z-index: 10000;
  background: var(--navy);
  color: var(--white);
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
}

.container {
  width: min(1160px, calc(100% - 2rem));
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.section-tight {
  padding: 3.75rem 0;
}

.site-header {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 1000;
  transition: background-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 12px 30px rgba(6, 47, 95, 0.12);
  backdrop-filter: blur(10px);
}

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

.logo-wrap {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  color: var(--white);
  font-weight: 800;
}

.site-header.is-scrolled .logo-wrap,
.site-header.is-open .logo-wrap,
.site-header.is-scrolled .desktop-nav a,
.site-header.is-open .desktop-nav a,
.site-header.is-scrolled .drop-btn,
.site-header.is-open .drop-btn,
.site-header.is-scrolled .call-link,
.site-header.is-open .call-link,
.site-header.is-scrolled .mobile-toggle,
.site-header.is-open .mobile-toggle {
  color: var(--navy);
}

.logo-wrap img {
  width: 178px;
  height: 58px;
  object-fit: contain;
  background: rgba(255, 255, 255, 0.94);
  border-radius: var(--radius);
  padding: 0.28rem 0.42rem;
}

.logo-text {
  display: grid;
  line-height: 1.05;
}

.logo-text strong {
  font-size: 1rem;
  color: inherit;
}

.logo-text span {
  font-size: 0.78rem;
  font-weight: 700;
  color: inherit;
  opacity: 0.82;
}

.desktop-nav,
.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.desktop-nav a,
.drop-btn {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.62rem 0.8rem;
  border-radius: var(--radius);
  transition: color 160ms ease, background-color 160ms ease;
}

.desktop-nav a:hover,
.drop-btn:hover,
.desktop-nav a[aria-current='page'] {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
}

.site-header.is-scrolled .desktop-nav a:hover,
.site-header.is-open .desktop-nav a:hover,
.site-header.is-scrolled .drop-btn:hover,
.site-header.is-open .drop-btn:hover,
.site-header.is-scrolled .desktop-nav a[aria-current='page'],
.site-header.is-open .desktop-nav a[aria-current='page'] {
  background: var(--sky);
  color: var(--blue-2);
}

.services-dropdown {
  position: relative;
}

.drop-btn {
  border: 0;
  background: transparent;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.45rem);
  left: 0;
  width: 330px;
  max-width: calc(100vw - 2rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 0.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 160ms ease;
}

.services-dropdown:hover .dropdown-menu,
.services-dropdown:focus-within .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu a {
  display: block;
  color: var(--text);
  background: transparent;
  padding: 0.66rem 0.75rem;
  font-size: 0.88rem;
}

.dropdown-menu a:hover {
  background: var(--sky);
  color: var(--navy);
}

.call-link {
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.9rem;
  font-weight: 800;
  white-space: nowrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  gap: 0.45rem;
  border-radius: var(--radius);
  padding: 0.85rem 1.12rem;
  border: 1px solid transparent;
  font-size: 0.92rem;
  font-weight: 800;
  cursor: pointer;
  text-align: center;
  transition: transform 160ms ease, box-shadow 160ms ease, background-color 160ms ease, color 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(22, 169, 231, 0.25);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-2), var(--navy-2));
}

.btn-light {
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
}

.btn-light:hover {
  background: var(--white);
  color: var(--navy);
}

.btn-ghost {
  background: var(--white);
  color: var(--navy);
  border-color: var(--line);
}

.btn-ghost:hover {
  border-color: var(--blue);
  color: var(--blue-2);
}

.mobile-toggle {
  display: none;
  color: var(--white);
  border: 0;
  background: transparent;
  width: 44px;
  height: 44px;
  border-radius: var(--radius);
  font-size: 1.4rem;
}

.mobile-menu {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--line);
  box-shadow: 0 16px 28px rgba(6, 47, 95, 0.12);
}

.mobile-menu.is-open {
  display: block;
}

.mobile-menu a,
.mobile-menu details {
  display: block;
  padding: 0.85rem 0;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.mobile-menu summary {
  cursor: pointer;
}

.mobile-menu details a {
  padding-left: 1rem;
  color: var(--text);
}

.hero {
  min-height: 96vh;
  position: relative;
  padding-top: 82px;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
}

.hero--small {
  min-height: 52vh;
}

.hero-video,
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(3, 28, 58, 0.88), rgba(9, 71, 126, 0.68) 48%, rgba(22, 169, 231, 0.32));
}

.wave-layer {
  position: absolute;
  inset-inline: 0;
  bottom: -1px;
  z-index: 1;
  height: 170px;
  pointer-events: none;
  opacity: 0.95;
}

.wave-layer svg {
  width: 200%;
  height: 100%;
  animation: waveShift 9s linear infinite;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(760px, 100%);
  padding: 5.5rem 0 7rem;
}

.hero .section-label {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.92);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  margin-bottom: 1.1rem;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.breadcrumb a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.hero-title {
  margin: 0.95rem 0 0;
  color: var(--white);
  background: linear-gradient(100deg, var(--white), #8fd0ff 46%, var(--blue));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 3.65rem;
  line-height: 1.04;
  font-weight: 900;
}

.hero-text {
  max-width: 680px;
  margin: 1.2rem 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.16rem;
}

.hero-cta,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.8rem;
}

.hero-metrics {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  width: min(650px, 100%);
}

.metric {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 0.2rem;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.26);
  background: rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

.metric strong {
  display: block;
  color: var(--white);
  font-size: 1.35rem;
}

.metric span {
  display: block;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 700;
}

.info-strip {
  background: linear-gradient(90deg, var(--blue), var(--navy));
  color: var(--white);
  padding: 0.9rem 0;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.9rem;
  align-items: center;
}

.info-pill {
  display: flex;
  justify-content: center;
  gap: 0.45rem;
  text-align: center;
}

.info-pill span {
  opacity: 0.82;
}

.section-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0.38rem 0.72rem;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue-2);
  font-size: 0.78rem;
  font-weight: 800;
}

.section-title {
  margin: 1rem 0 0.8rem;
  color: var(--ink);
  font-size: 2.4rem;
  line-height: 1.12;
  font-weight: 900;
}

.section-subtitle {
  max-width: 780px;
  color: var(--muted);
  margin: 0;
}

.centered {
  text-align: center;
}

.centered .section-subtitle {
  margin-inline: auto;
}

.two-col {
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: 2.2rem;
  align-items: center;
}

.photo-frame {
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--gray);
  aspect-ratio: 16 / 9;
}

.photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.card-grid {
  display: grid;
  gap: 1.15rem;
  margin-top: 1.5rem;
}

.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(6, 47, 95, 0.08);
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  object-position: center;
}

.card-content {
  padding: 1.2rem;
}

.card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.13rem;
  line-height: 1.2;
  font-weight: 900;
}

.card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.card-link {
  display: inline-flex;
  margin-top: 0.95rem;
  color: var(--blue-2);
  font-weight: 900;
}

.bullets,
.service-list,
.area-list {
  list-style: none;
  padding: 0;
  margin: 1.15rem 0 0;
  display: grid;
  gap: 0.72rem;
}

.bullets li,
.service-list li,
.area-list li {
  position: relative;
  padding-left: 1.45rem;
}

.bullets li::before,
.service-list li::before,
.area-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgba(22, 169, 231, 0.14);
}

.soft-band {
  background: linear-gradient(180deg, var(--sky-2), var(--white));
}

.blue-band {
  background: linear-gradient(135deg, var(--navy), var(--blue-2));
  color: var(--white);
}

.blue-band .section-title,
.blue-band .section-subtitle {
  color: var(--white);
}

.blue-band .section-subtitle {
  opacity: 0.9;
}

.blue-band .section-label {
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.step-card {
  min-height: 210px;
  padding: 1.2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, var(--white), var(--sky-2));
}

.step-number {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--blue);
  color: var(--white);
  font-weight: 900;
  margin-bottom: 0.9rem;
}

.step-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.22;
}

.step-card p {
  margin: 0.7rem 0 0;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.areas-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.3rem;
  align-items: stretch;
  margin-top: 1.5rem;
}

.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.area-chip {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.48rem 0.72rem;
  background: var(--white);
  color: var(--navy);
  font-weight: 800;
  font-size: 0.9rem;
}

.area-map-button {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.52rem 0.78rem;
  background: var(--white);
  color: var(--navy);
  font: inherit;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.area-map-button:hover,
.area-map-button.is-active {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-1px);
}

.map-note {
  margin: 1rem 0 0;
  color: var(--muted);
  font-weight: 800;
}

.map-frame {
  min-height: 380px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  background: var(--gray);
}

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

.faq-wrap {
  margin-top: 1.4rem;
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.08rem 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  text-align: left;
  font-weight: 900;
  cursor: pointer;
}

.faq-icon {
  width: 1.8rem;
  height: 1.8rem;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: var(--sky);
  color: var(--blue-2);
}

.faq-panel {
  display: none;
  padding: 0 0 1.1rem;
  color: var(--muted);
}

.faq-item.is-open .faq-panel {
  display: block;
}

.faq-item.is-open .faq-icon {
  background: var(--blue);
  color: var(--white);
}

.quote-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 1.4rem;
  align-items: start;
  margin-top: 1.4rem;
}

.embed-shell {
  min-height: 1120px;
  height: auto;
  overflow: visible;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: var(--shadow);
}

.embed-shell iframe {
  width: 100%;
  min-height: 1120px;
  height: 1120px;
  border: 0;
}

.contact-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  padding: 1.35rem;
}

.contact-line {
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-line:first-child {
  padding-top: 0;
}

.contact-line:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.contact-label {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.82rem;
}

.contact-value {
  display: inline-flex;
  margin-top: 0.25rem;
  color: var(--ink);
  font-weight: 900;
}

.veteran-note {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.1rem;
  padding: 0.9rem;
  border-radius: var(--radius);
  background: var(--sky);
  color: var(--navy);
  font-weight: 900;
}

.flag {
  position: relative;
  width: 54px;
  height: 34px;
  flex: 0 0 auto;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(6, 47, 95, 0.18);
  background: repeating-linear-gradient(to bottom, #b31942 0 2.62px, #ffffff 2.62px 5.24px);
}

.flag::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 23px;
  height: 18.3px;
  background: #0a3161;
}

.flag::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 2px;
  height: 2px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 6px 0 #ffffff, 12px 0 #ffffff, 3px 4px #ffffff, 9px 4px #ffffff, 15px 4px #ffffff, 0 8px #ffffff, 6px 8px #ffffff, 12px 8px #ffffff, 3px 12px #ffffff, 9px 12px #ffffff, 15px 12px #ffffff;
}

.cta-band {
  background: linear-gradient(135deg, var(--navy), var(--blue-2));
  color: var(--white);
}

.cta-band .section-title,
.cta-band .section-subtitle {
  color: var(--white);
}

.cta-band .section-subtitle {
  opacity: 0.9;
}

.site-footer {
  background: #f7fbff;
  border-top: 1px solid var(--line);
  color: var(--text);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr 1fr;
  gap: 1.6rem;
  padding: 3.5rem 0 2.2rem;
}

.footer-brand img {
  width: 220px;
  height: auto;
}

.footer-title {
  margin: 0 0 0.85rem;
  color: var(--ink);
  font-weight: 900;
}

.footer-links {
  list-style: none;
  display: grid;
  gap: 0.55rem;
  padding: 0;
  margin: 0;
}

.footer-links a {
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--blue-2);
}

.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 1rem 0;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 500ms ease, transform 500ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes waveShift {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1080px) {
  .desktop-nav,
  .nav-cta {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
    place-items: center;
  }

  .hero-title {
    font-size: 3rem;
  }

  .cols-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  body {
    font-size: 15px;
  }

  .section {
    padding: 4rem 0;
  }

  .section-tight {
    padding: 3rem 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-content {
    padding: 5rem 0 6rem;
  }

  .hero-title {
    font-size: 2.35rem;
  }

  .section-title {
    font-size: 2rem;
  }

  .two-col,
  .areas-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .hero-metrics,
  .info-grid,
  .cols-2,
  .cols-3,
  .cols-4,
  .process-grid,
  .gallery-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .map-frame {
    min-height: 300px;
  }

  .embed-shell {
    min-height: 1120px;
  }

  .embed-shell iframe {
    min-height: 1120px;
    height: 1120px;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 1rem, 1160px);
  }

  .logo-wrap img {
    width: 142px;
    height: 48px;
  }

  .logo-text strong {
    font-size: 0.9rem;
  }

  .logo-text span {
    font-size: 0.72rem;
  }

  .logo-text {
    display: none;
  }

  .hero-title {
    font-size: 2rem;
  }

  .hero-text {
    font-size: 1rem;
  }

  .btn {
    width: 100%;
  }

  .info-pill {
    flex-direction: column;
    gap: 0.1rem;
  }
}
