:root {
  --navy: #343a40;
  --navy-deep: #24282d;
  --blue: #007bff;
  --blue-light: #eaf4ff;
  --red: #0056b3;
  --gold: #66b2ff;
  --ink: #333333;
  --muted: #626b75;
  --line: #d9dee3;
  --surface: #f8f9fa;
  --white: #ffffff;
  --shadow: 0 20px 60px rgba(7, 29, 57, 0.12);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

img {
  max-width: 100%;
}

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  padding: 10px 14px;
  color: var(--white);
  background: var(--navy);
  border-radius: 8px;
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

.business-hours-bar {
  color: var(--white);
  background: var(--navy-deep);
}

.business-hours-shell {
  width: min(calc(100% - 40px), var(--content));
  min-height: 38px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-align: center;
  font-size: 0.88rem;
}

.business-hours-shell strong {
  color: #8ec5ff;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(12, 45, 87, 0.1);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.nav-shell,
.section-shell,
.hero-shell,
.footer-shell {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
}

.nav-shell {
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--white);
  box-shadow: 0 6px 20px rgba(7, 29, 57, 0.1);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 6px;
  flex-wrap: wrap;
}

.site-nav a {
  padding: 9px 12px;
  border-radius: 10px;
  color: #344054;
  font-size: 0.94rem;
  font-weight: 700;
  transition: color 160ms ease, background 160ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--blue);
  background: var(--blue-light);
}

.site-nav .nav-cta {
  margin-left: 4px;
  color: var(--white);
  background: var(--navy);
}

.site-nav .nav-cta:hover {
  color: var(--white);
  background: var(--blue);
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 84% 14%, rgba(55, 129, 255, 0.48), transparent 24rem),
    radial-gradient(circle at 67% 110%, rgba(0, 123, 255, 0.18), transparent 28rem),
    linear-gradient(125deg, var(--navy-deep), var(--navy) 62%, #0056b3);
}

.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
}

.hero::after {
  width: 300px;
  height: 300px;
  right: 80px;
  bottom: -230px;
}

.hero-shell {
  position: relative;
  z-index: 1;
  min-height: 620px;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  align-items: center;
  gap: 72px;
  padding-block: 84px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 18px;
  color: #bcd5ff;
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 30px;
  height: 2px;
  background: var(--gold);
}

.hero h1,
.page-hero h1 {
  max-width: 800px;
  margin: 0;
  font-size: clamp(2.7rem, 6vw, 5.35rem);
  line-height: 0.98;
  letter-spacing: -0.055em;
}

.hero-copy > p:not(.eyebrow) {
  max-width: 690px;
  margin: 28px 0 0;
  color: #dce9ff;
  font-size: clamp(1.05rem, 2vw, 1.23rem);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

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

.button-primary {
  color: var(--navy);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.08);
}

.button-blue {
  color: var(--white);
  background: var(--blue);
  box-shadow: 0 12px 26px rgba(21, 94, 239, 0.22);
}

.button-outline {
  color: var(--navy);
  border-color: #b7c6d8;
  background: var(--white);
}

.hero-card-stack {
  min-width: 0;
  display: grid;
  align-self: center;
  gap: 18px;
}

.hero-card {
  position: relative;
  padding: 30px;
  color: var(--ink);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
}

.hero-card-logo {
  width: 100%;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  background: #333333;
  box-shadow: var(--shadow);
}

.hero-card-logo img {
  width: 100%;
  height: auto;
  display: block;
}

.page-hero-logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 18px;
}

.hero-card::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 0;
  width: 80px;
  height: 7px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, var(--blue), var(--red));
}

.hero-card h2 {
  margin: 0 0 6px;
  color: var(--navy);
  font-size: 1.3rem;
}

.hero-card > p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.96rem;
}

.service-mini-list {
  display: grid;
  gap: 10px;
}

.service-mini {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  font-weight: 750;
}

.service-mini span:first-child {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
  border-radius: 10px;
  background: var(--blue-light);
}

.quick-facts {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.quick-facts .section-shell {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding-block: 24px;
}

.fact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 56px;
  padding-inline: 24px;
  text-align: left;
  font-weight: 800;
  color: var(--navy);
}

.fact + .fact {
  border-left: 1px solid var(--line);
}

.fact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 12px;
  color: var(--blue);
  background: var(--blue-light);
}

.section {
  padding-block: 92px;
}

.section-tint {
  background: var(--surface);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 42px;
}

.section-heading.center {
  margin-inline: auto;
  text-align: center;
}

.section-heading .kicker {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 0.82rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.split-copy h2,
.visit-copy h2 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.25rem);
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.section-heading > p:last-child,
.split-copy > p,
.visit-copy > p {
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 28px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 29, 57, 0.06);
}

.service-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -38px;
  width: 124px;
  height: 124px;
  border-radius: 50%;
  background: var(--blue-light);
  transition: transform 200ms ease;
}

.service-card:hover::after {
  transform: scale(1.18);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  color: var(--white);
  border-radius: 15px;
  background: linear-gradient(145deg, var(--blue), #0056b3);
  box-shadow: 0 10px 24px rgba(21, 94, 239, 0.22);
  font-size: 1.4rem;
}

.service-card:nth-child(2) .card-icon {
  background: linear-gradient(145deg, var(--red), #00458f);
  box-shadow: 0 10px 24px rgba(0, 86, 179, 0.2);
}

.service-card:nth-child(3) .card-icon {
  color: var(--navy);
  background: linear-gradient(145deg, var(--gold), var(--blue));
  box-shadow: 0 10px 24px rgba(0, 123, 255, 0.2);
}

.service-card h3,
.detail-card h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.28rem;
  line-height: 1.25;
}

.service-card p,
.detail-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.text-link {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-top: auto;
  padding-top: 22px;
  color: var(--blue);
  font-weight: 850;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 72px;
}

.check-list,
.plain-list {
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px 20px;
}

.check-list li,
.plain-list li {
  position: relative;
  padding-left: 28px;
  color: #344054;
}

.check-list li::before,
.plain-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--blue);
  font-weight: 900;
}

.feature-panel {
  padding: 34px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at 100% 0, rgba(55, 129, 255, 0.42), transparent 16rem),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
  box-shadow: var(--shadow);
}

.feature-panel h3 {
  margin: 0 0 18px;
  font-size: 1.3rem;
}

.feature-panel .feature-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  padding-block: 16px;
}

.feature-panel .feature-row + .feature-row {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.feature-panel .feature-row span:first-child {
  color: var(--gold);
  font-weight: 900;
}

.feature-panel strong {
  display: block;
  margin-bottom: 3px;
}

.feature-panel small {
  color: #c9d8ee;
  font-size: 0.9rem;
}

.cta-band {
  padding-block: 74px;
}

.cta-box {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding: 48px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(100deg, rgba(6, 28, 56, 0.98), rgba(12, 45, 87, 0.93)),
    var(--navy);
  box-shadow: var(--shadow);
}

.cta-box h2 {
  margin: 0;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.cta-box p {
  margin: 12px 0 0;
  color: #cdddf4;
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(circle at 88% 20%, rgba(62, 137, 255, 0.46), transparent 23rem),
    linear-gradient(125deg, var(--navy-deep), var(--navy));
}

.page-hero .section-shell {
  position: relative;
  z-index: 1;
  padding-block: 94px 88px;
}

.page-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 210px;
  align-items: center;
  gap: 70px;
}

.page-hero-logo {
  width: 210px;
  height: 210px;
  display: grid;
  place-items: center;
  padding: 14px;
  overflow: hidden;
  border: 1px solid rgba(12, 45, 87, 0.12);
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 22px 50px rgba(7, 29, 57, 0.3);
}

.page-hero h1 {
  max-width: 900px;
  font-size: clamp(2.8rem, 6vw, 5rem);
}

.page-hero .lead {
  max-width: 760px;
  margin: 24px 0 0;
  color: #d8e7ff;
  font-size: 1.18rem;
}

.anchor-nav {
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.anchor-nav .section-shell {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-block: 14px;
  overflow-x: auto;
}

.anchor-nav a {
  min-width: max-content;
  padding: 9px 13px;
  color: var(--navy);
  border-radius: 10px;
  background: var(--surface);
  font-size: 0.9rem;
  font-weight: 800;
}

.anchor-nav a:hover {
  color: var(--white);
  background: var(--blue);
}

.service-directory {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-directory li {
  position: relative;
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 12px 14px 12px 46px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  font-weight: 750;
}

.service-directory li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--blue);
  font-weight: 900;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.detail-card {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(7, 29, 57, 0.05);
}

.detail-card.featured {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 42px;
  padding: 38px;
  color: var(--white);
  border: 0;
  background:
    radial-gradient(circle at 100% 0, rgba(55, 129, 255, 0.42), transparent 18rem),
    linear-gradient(145deg, var(--navy-deep), var(--navy));
}

.detail-card.featured h3,
.detail-card.featured p,
.detail-card.featured li {
  color: var(--white);
}

.detail-card.featured .plain-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 24px;
  margin-top: 0;
}

.detail-card.featured .plain-list li::before {
  color: var(--gold);
}

.card-symbol {
  margin-bottom: 14px;
  color: var(--blue);
  font-size: 1.75rem;
  line-height: 1;
}

.carrier-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px 0;
}

.carrier {
  padding: 10px 16px;
  color: var(--navy);
  border: 1px solid #bac9dc;
  border-radius: 999px;
  background: var(--white);
  font-weight: 900;
  letter-spacing: 0.03em;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.business-item {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--surface);
  color: var(--navy);
  font-weight: 800;
  text-align: center;
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 48px;
  align-items: stretch;
}

.contact-panel {
  padding: 34px;
  color: var(--white);
  border-radius: var(--radius-lg);
  background: linear-gradient(145deg, var(--navy-deep), var(--navy));
  box-shadow: var(--shadow);
}

.contact-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding-block: 15px;
}

.contact-line + .contact-line {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.contact-line .contact-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.09);
}

.contact-line strong,
.contact-line span,
.contact-line a {
  display: block;
}

.contact-line span {
  color: #cbdaf0;
  font-size: 0.92rem;
}

.site-footer {
  padding-block: 58px 30px;
  color: #d0dded;
  background: #071a31;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 50px;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer p {
  max-width: 500px;
  margin: 16px 0 0;
  color: #9fb1c8;
}

.footer-heading {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 0.95rem;
}

.footer-links {
  display: grid;
  gap: 9px;
  font-size: 0.93rem;
}

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

.footer-bottom {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa3bc;
  font-size: 0.84rem;
}

@media (max-width: 980px) {
  .nav-shell {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
    padding-block: 12px;
  }

  .site-nav {
    width: 100%;
    justify-content: flex-start;
    flex-wrap: nowrap;
    padding-bottom: 4px;
    overflow-x: auto;
  }

  .site-nav a {
    min-width: max-content;
  }

  .hero-shell,
  .split,
  .visit-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    gap: 46px;
    padding-block: 72px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .page-hero-layout {
    grid-template-columns: minmax(0, 1fr) 170px;
    gap: 38px;
  }

  .page-hero-logo {
    width: 170px;
    height: 170px;
  }

  .card-grid,
  .service-directory,
  .business-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .detail-card.featured {
    grid-template-columns: 1fr;
  }

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

  .footer-grid > div:first-child {
    grid-column: span 2;
  }
}

@media (max-width: 680px) {

  .business-hours-shell {
    width: min(calc(100% - 28px), var(--content));
    padding-block: 8px;
    flex-wrap: wrap;
    gap: 2px 8px;
    font-size: 0.8rem;
    line-height: 1.35;
  }

  .business-hours-shell strong {
    flex-basis: 100%;
  }

  .business-hours-separator {
    display: none;
  }

  .nav-shell,
  .section-shell,
  .hero-shell,
  .footer-shell {
    width: min(calc(100% - 28px), var(--content));
  }

  .brand-name {
    font-size: 0.92rem;
  }

  .hero-shell {
    min-height: 0;
    padding-block: 58px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2.55rem, 14vw, 4rem);
  }

  .hero-card-stack {
    gap: 14px;
  }

  .page-hero-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .page-hero-logo {
    width: 150px;
    height: 150px;
    margin-inline: auto;
    border-radius: 26px;
  }

  .quick-facts .section-shell {
    grid-template-columns: 1fr;
  }

  .fact {
    justify-content: flex-start;
    padding: 14px 0;
  }

  .fact + .fact {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .section {
    padding-block: 68px;
  }

  .card-grid,
  .detail-grid,
  .service-directory,
  .business-grid,
  .check-list {
    grid-template-columns: 1fr;
  }

  .detail-card.featured {
    grid-column: auto;
    padding: 28px;
  }

  .detail-card.featured .plain-list {
    grid-template-columns: 1fr;
  }

  .cta-box {
    grid-template-columns: 1fr;
    padding: 34px 26px;
  }

  .cta-box .button-row {
    margin-top: 0;
  }

  .button-row .button {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-grid > div:first-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
