:root {
  --ink: #102334;
  --navy: #071a2a;
  --blue: #0d5f92;
  --teal: #2aa7ad;
  --red: #d43f3a;
  --paper: #f6f8f8;
  --line: #dce3e5;
  --muted: #5d6a73;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: #fff; font-family: Arial, Helvetica, sans-serif; line-height: 1.6; }
a { color: inherit; }
img { max-width: 100%; }
.shell { width: min(1160px, calc(100% - 40px)); margin-inline: auto; }
.skip-link { position: fixed; left: 16px; top: -60px; z-index: 100; padding: 10px 14px; background: #fff; }
.skip-link:focus { top: 12px; }
.utility { color: #dce8ed; background: #06131f; font-size: .78rem; letter-spacing: .02em; }
.utility-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-inline: 24px;
}
.utility a { margin-left: 24px; text-decoration: none; }
.utility a:hover { color: #fff; }
.site-header { position: sticky; top: 0; z-index: 50; background: rgba(255,255,255,.97); border-bottom: 1px solid var(--line); backdrop-filter: blur(12px); }
.nav-wrap { min-height: 84px; display: flex; align-items: center; gap: 34px; }
.brand { width: 205px; display: flex; margin-left: -20px; }
.brand img { width: 100%; height: 62px; object-fit: contain; }
nav { display: flex; align-items: center; gap: 30px; margin-left: auto; }
nav a { color: #263a48; font-size: .92rem; font-weight: 700; text-decoration: none; }
nav a:hover { color: var(--blue); }
.menu-button { display: none; }
.button { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; padding: 0 24px; color: #fff; background: var(--red); border: 1px solid var(--red); border-radius: 4px; font-weight: 800; text-decoration: none; transition: transform .2s, background .2s; }
.button:hover { background: #bb302c; transform: translateY(-2px); }
.button-small { min-height: 42px; padding-inline: 18px; font-size: .84rem; }
.hero { position: relative; min-height: 650px; display: grid; align-items: center; overflow: hidden; color: #fff; background: radial-gradient(circle at 78% 38%, rgba(42,167,173,.24), transparent 18%), radial-gradient(circle at 88% 72%, rgba(13,95,146,.32), transparent 24%), linear-gradient(120deg, #061522 0%, #0a2336 62%, #0a3245 100%); }
.hero-inner { position: relative; z-index: 2; padding-block: 110px; }
.hero h1 { max-width: 800px; margin: 16px 0 24px; font-size: clamp(3.1rem, 7vw, 5.8rem); line-height: .98; letter-spacing: -.055em; }
.hero h1 span { color: #7dd3d2; }
.hero p { max-width: 580px; margin: 0 0 34px; color: #dce9ee; font-size: 1.22rem; }
.hero-art {
  position: absolute;
  top: 50%;
  right: clamp(18px, 3vw, 54px);
  width: clamp(390px, 42vw, 620px);
  aspect-ratio: 1;
  transform: translateY(-50%);
  pointer-events: none;
}
.orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(125,211,210,.22);
  border-radius: 50%;
}
.orbit-two {
  inset: 19%;
  border-color: rgba(125,211,210,.12);
}
.node {
  position: absolute;
  width: clamp(10px, 1vw, 14px);
  aspect-ratio: 1;
  background: #7dd3d2;
  border: 4px solid rgba(125,211,210,.2);
  border-radius: 50%;
  box-sizing: content-box;
}
.node-one { right: 19%; top: 15%; }
.node-two { left: 1%; top: 61%; }
.node-three { right: 12%; bottom: 13%; }
.eyebrow { color: var(--blue); font-size: .76rem; font-weight: 900; letter-spacing: .17em; text-transform: uppercase; }
.eyebrow.light { color: #83d5d5; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; }
.button-ghost { background: rgba(255,255,255,.02); border-color: rgba(255,255,255,.55); }
.button-ghost:hover { background: rgba(255,255,255,.12); }
.trust-strip { background: var(--paper); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.trust-grid p { margin: 0; padding: 24px 30px; border-right: 1px solid var(--line); }
.trust-grid p:first-child { padding-left: 0; }.trust-grid p:last-child { border: 0; }
.trust-grid strong,.trust-grid span { display: block; }
.trust-grid strong { font-size: .9rem; }.trust-grid span { color: var(--muted); font-size: .82rem; }
.section { padding: 96px 0; scroll-margin-top: 84px; }
#services {
  background:
    linear-gradient(180deg, #f7f9fa 0%, #f1f5f6 100%);
  border-top: 1px solid #e8edef;
}
.section-heading { display: grid; grid-template-columns: 1.15fr .85fr; align-items: end; gap: 80px; margin-bottom: 52px; }
h2 { margin: 12px 0 0; font-size: clamp(2.2rem, 4.2vw, 4rem); line-height: 1.05; letter-spacing: -.045em; }
.section-heading p { margin: 0; color: var(--muted); font-size: 1.05rem; }
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.service-card {
  position: relative;
  min-height: 340px;
  display: flex;
  flex-direction: column;
  padding: 32px;
  overflow: hidden;
  background: rgba(255,255,255,.92);
  border: 1px solid #d8e1e4;
  border-radius: 5px;
  box-shadow: 0 10px 28px rgba(13,95,146,.07);
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
}
.service-card > span { color: var(--blue); font-size: .75rem; font-weight: 900; }
.service-card h3 { margin: 42px 0 12px; font-size: 1.55rem; line-height: 1.2; }
.service-card p { color: var(--muted); }
.service-card a { margin-top: auto; color: var(--blue); font-size: .9rem; font-weight: 900; text-decoration: none; }
.service-card a:hover { text-decoration: underline; }
.partners {
  padding: 82px 0;
  scroll-margin-top: 84px;
  background: #fff;
  border-top: 1px solid var(--line);
}
.partners-layout {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  align-items: center;
  gap: 80px;
}
.partners h2 {
  max-width: 480px;
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}
.partners-copy p {
  max-width: 500px;
  margin: 22px 0 0;
  color: var(--muted);
}
.partner-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.partner-mark {
  min-height: 125px;
  display: grid;
  place-items: center;
  padding: 22px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 4px;
}
.partner-mark img {
  max-width: 100%;
  max-height: 78px;
  object-fit: contain;
}
.partner-mark-dark {
  background: var(--navy);
}
.contrast { color: #fff; background: var(--navy); }
.split,.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 100px; }
.lead { margin-top: 0; color: #dce8ed; font-size: 1.3rem; }
.lead.dark { color: var(--ink); }
.process { margin: 42px 0 0; padding: 0; list-style: none; }
.process li { display: grid; grid-template-columns: 44px 1fr; gap: 18px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,.18); }
.process li > span { width: 34px; height: 34px; display: grid; place-items: center; border: 1px solid #5a7888; border-radius: 50%; color: #83d5d5; font-size: .75rem; }
.process strong { font-size: 1.05rem; }.process p { margin: 3px 0 0; color: #aebec7; font-size: .92rem; }
.about-grid p:not(.lead) { color: var(--muted); }
.text-link { display: inline-block; margin-top: 18px; color: var(--blue); font-weight: 900; text-decoration: none; }
.store {
  padding: 96px 0;
  scroll-margin-top: 84px;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.store-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: end;
  gap: 80px;
  margin-bottom: 48px;
}
.store-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.store-grid {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 14px 36px rgba(16,35,52,.07);
}
.store-services {
  padding: 40px;
}
.store-services h3,
.hours h3 {
  margin: 0 0 22px;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.store-services ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.store-services li {
  display: grid;
  grid-template-columns: minmax(170px,.75fr) 1.25fr;
  gap: 28px;
  padding: 18px 0;
  border-top: 1px solid var(--line);
}
.store-services li:last-child {
  padding-bottom: 0;
}
.store-services li span {
  font-weight: 800;
}
.store-services li small {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.55;
}
.store-details {
  color: #fff;
  background: var(--navy);
  border-radius: 0 5px 5px 0;
}
.store-details-head,
.hours,
.store-actions {
  padding: 30px 34px;
}
.store-details-head {
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.store-details-head span,
.store-details-head strong {
  display: block;
}
.store-details-head span {
  margin-bottom: 8px;
  color: #83d5d5;
  font-size: .74rem;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.hours {
  border-bottom: 1px solid rgba(255,255,255,.15);
}
.hours dl {
  margin: 0;
}
.hours dl div {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 7px 0;
  color: #d7e2e8;
  font-size: .88rem;
}
.hours dt,
.hours dd {
  margin: 0;
}
.hours dd {
  text-align: right;
}
.store-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.store-actions .text-link {
  margin: 0;
  color: #fff;
}
.cta { padding: 88px 0; color: #fff; background: var(--blue); scroll-margin-top: 84px; }
.cta-grid { display: grid; grid-template-columns: 1fr .8fr; align-items: start; gap: 90px; }
.cta h2 { font-size: clamp(2rem,4vw,3.8rem); }
.cta-grid > div:first-child > p { max-width: 570px; color: #dceaf1; }
.contact-card { overflow: hidden; background: #fff; border-radius: 6px; box-shadow: 0 22px 50px rgba(0,0,0,.2); }
.contact-line { display: block; padding: 18px 22px; color: var(--ink); border-bottom: 1px solid var(--line); text-decoration: none; }
a.contact-line:hover { background: var(--paper); }
.contact-line small,.contact-line strong { display: block; }.contact-line small { color: var(--muted); font-weight: 800; text-transform: uppercase; letter-spacing: .1em; }.contact-line strong { font-size: 1rem; }
.contact-card .button { margin: 20px; }.button-light { color: var(--blue); background: #fff; border-color: var(--blue); }
.button-light:hover { color: #fff; background: var(--blue); }
footer { padding: 70px 0 22px; color: #b8c8d1; background: #06131f; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 54px; }
.footer-grid h2 { margin: 0 0 14px; color: #fff; font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; }
.footer-grid p { margin: 0; font-size: .88rem; }.footer-grid a { text-decoration: none; }.footer-grid a:hover { color: #fff; }
.footer-logo {
  width: 190px;
  margin-bottom: 18px;
  filter:
    drop-shadow(0 0 1px rgba(255,255,255,.9))
    drop-shadow(0 2px 5px rgba(0,0,0,.35));
}
.copyright { margin-top: 56px; padding-top: 20px; border-top: 1px solid #263541; font-size: .76rem; }

@media (max-width: 900px) {
  .utility-inner > span { display: none; }.utility-inner { justify-content: flex-end; padding-inline: 0; }
  .nav-wrap { min-height: 72px; }.brand { width: 160px; margin-left: 0; }.brand img { height: 50px; }
  .menu-button { display: inline-flex; align-items: center; gap: 7px; margin-left: auto; padding: 8px 11px; color: var(--ink); background: #fff; border: 1px solid var(--line); border-radius: 4px; font-weight: 800; }
  nav { position: absolute; top: 72px; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; gap: 0; padding: 8px 20px 18px; background: #fff; border-bottom: 1px solid var(--line); box-shadow: 0 16px 25px rgba(0,0,0,.08); }
  nav.open { display: flex; } nav a { padding: 12px 0; border-bottom: 1px solid var(--line); }
  .header-call { display: none; }
  .hero { min-height: 600px; }.hero-inner { padding-block: 90px; }.hero-art { right: -22%; width: clamp(390px, 66vw, 520px); opacity: .48; }
  .section { padding: 80px 0; }.section-heading,.split,.about-grid,.cta-grid,.partners-layout,.store-heading,.store-grid { grid-template-columns: 1fr; gap: 34px; }
  .service-grid { grid-template-columns: 1fr; }.service-card { min-height: 290px; }.service-card h3 { margin-top: 30px; }
  .store-grid { gap: 0; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 560px) {
  .shell { width: min(100% - 28px,1160px); }.utility a { margin-left: 14px; }.utility a:last-child { display: none; }
  .brand { width: 145px; }.menu-label { display: none; }
  .hero { min-height: 560px; }.hero-inner { padding-block: 70px; }.hero h1 { font-size: 3.25rem; }.hero-art { right: -58%; width: 430px; opacity: .28; }
  .trust-grid { grid-template-columns: 1fr; padding-block: 8px; }.trust-grid p,.trust-grid p:first-child { padding: 14px 0; border-right: 0; border-bottom: 1px solid var(--line); }.trust-grid p:last-child { border: 0; }
  .section { padding: 68px 0; }.service-card { padding: 28px; }.cta { padding: 68px 0; }
  .partners { padding: 68px 0; }.partner-grid { grid-template-columns: repeat(2, 1fr); }.partner-mark { min-height: 105px; padding: 16px; }
  .store { padding: 68px 0; }.store-services { padding: 28px; }.store-services li { grid-template-columns: 1fr; gap: 4px; }.store-details { border-radius: 0 0 5px 5px; }.store-details-head,.hours,.store-actions { padding: 26px 28px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
}
