:root {
  --navy: #0a2540;
  --navy-2: #071c30;
  --deep: #00263f;
  --sky: #0099f2;
  --pink: #e91e63;
  --ink: #243140;
  --muted: #4d5d6c;
  --line: #e3eaf0;
  --title: #0099f2;
  --footer: #323437;
  --bg: #f3f6f8;
  --sans: Roboto, Helvetica, Arial, sans-serif;
  --slab: "Roboto Slab", Georgia, "Times New Roman", serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--deep); text-decoration: none; }
a:hover { color: var(--sky); }
p { margin: 0 0 1em; }
h1, h2, h3, h4, .slab {
  font-family: var(--slab);
  font-weight: 700;
  line-height: 1.2;
}
:focus-visible {
  outline: 2px solid var(--sky);
  outline-offset: 3px;
}
.skip {
  position: absolute;
  left: 12px;
  top: -48px;
  background: #fff;
  color: var(--navy);
  padding: 8px 12px;
  z-index: 100;
}
.skip:focus { top: 8px; }

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  display: flex;
  align-items: center;
  min-height: 70px;
  padding: 8px 0;
  background: transparent;
}
.navbar.is-solid,
body:not(.is-home) .navbar,
body.nav-open .navbar {
  background: var(--navy);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}
.nav-inner {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  min-width: 0;
}
.brand:hover { color: #fff; }
.brand picture { display: block; line-height: 0; }
.brand img {
  max-height: 52px;
  width: auto;
  background: transparent;
  display: block;
}
.brand strong {
  display: block;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 16px;
  line-height: 1.2;
}
.brand small {
  display: block;
  font-size: 12px;
  font-weight: 400;
  color: #c5d4e2;
  white-space: nowrap;
}
.menu-btn {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  background: transparent;
  padding: 12px 10px;
  cursor: pointer;
}
.menu-btn span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
}
.nav-links {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav-links a {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 12px 14px;
  display: inline-block;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] {
  color: var(--sky);
}

.hero {
  position: relative;
  color: #fff;
  background: #102033;
}
.slide {
  display: none;
  min-height: 560px;
  position: relative;
  overflow: hidden;
}
.slide.is-active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.slide::before,
.page-banner::before,
.cover-band::before,
.contact-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(8, 22, 38, 0.58);
}
.bg-picture {
  position: absolute;
  inset: 0;
  z-index: 0;
  display: block;
  margin: 0;
}
.bg-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.slide-inner {
  position: relative;
  z-index: 2;
  text-align: center;
  width: min(760px, calc(100% - 48px));
  padding: 148px 0 80px;
}
.slide h1 {
  margin: 0 0 12px;
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4.1rem);
}
.slide .sub {
  display: block;
  font-size: 18px;
  font-weight: 400;
  color: #e7eef5;
  margin-bottom: 22px;
}
.hero-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 37, 64, 0.45);
  color: #fff;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
}
.hero-arrow:hover { background: var(--navy); }
.hero-arrow.prev { left: 16px; }
.hero-arrow.next { right: 16px; }

.btn, button.btn, .wpf button {
  display: inline-block;
  background: #0a2540;
  color: #fff !important;
  border: 0;
  border-radius: 50px;
  padding: 15px 33px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  cursor: pointer;
}
.btn:hover, button.btn:hover, .wpf button:hover {
  background: #0099f2;
  color: #fff !important;
}
.slide .btn, .cover-band .btn { background: #fff; color: var(--navy) !important; }
.slide .btn:hover, .cover-band .btn:hover { background: var(--sky); color: #fff !important; }

.sheet {
  position: relative;
  z-index: 3;
  margin: 0;
  background: #fff;
}
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.features { padding: 72px 0 28px; }
.features h2, .split h2, .copy h2, .contact-copy h2, .section h2, .section-head h2 {
  color: var(--title);
  font-size: clamp(1.7rem, 3vw, 2.25rem);
  margin: 0 0 10px;
}
.features h2 { text-align: center; }
.features h2::after, .copy h2::after, .section-head h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 10px;
  background: var(--sky);
  border-radius: 2px;
}
.features h2::after { margin-left: auto; margin-right: auto; }
.features .lead, .contact-copy .lead {
  color: var(--ink);
  font-size: 18px;
  margin: 0 auto 32px;
  max-width: 40rem;
}
.features .lead { text-align: center; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.feature-grid article {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(10, 37, 64, 0.05);
}
.feature-grid a { display: block; color: inherit; }
.feature-grid a:hover { color: inherit; }
.feature-grid img,
.feature-grid picture {
  display: block;
  width: 100%;
}
.feature-grid img {
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 0;
}
.feature-grid h3 {
  color: var(--navy);
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  padding: 16px 18px 0;
}
.feature-grid a:hover h3 { color: var(--sky); }
.feature-grid p {
  font-size: 15px;
  color: var(--muted);
  padding: 8px 18px 18px;
  margin: 0;
}

.splits { padding: 12px 0 48px; }
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 28px 0;
}
.split picture { display: block; }
.split img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.split h2::after {
  content: "";
  display: block;
  width: 42px;
  height: 3px;
  margin-top: 10px;
  background: var(--sky);
}
.split p { font-size: 17px; color: var(--ink); text-align: left; }
.split .center { text-align: left; }
.split .btn { margin-top: 6px; }

.cover-band {
  position: relative;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.cover-band .inner { position: relative; z-index: 2; padding: 56px 16px; }
.cover-band p {
  font-family: var(--slab);
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  margin: 0 0 16px;
}

.contact-band {
  position: relative;
  color: #fff;
  overflow: hidden;
  padding: 72px 0;
}
.contact-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: start;
}
.contact-copy h2, .contact-copy .lead, .contact-copy h3, .contact-copy p { color: #fff; }
.contact-copy h3 {
  font-family: var(--sans);
  font-size: 16px;
  margin: 8px 0 4px;
}
.contact-copy a { color: #fff; font-weight: 700; }
.contact-copy a:hover { color: var(--sky); }
.icon-row { display: grid; gap: 20px; margin-top: 22px; }
.icon {
  width: 48px;
  height: 48px;
  margin: 0 0 6px;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
}
.icon svg { width: 20px; height: 20px; fill: currentColor; }

.card-contact {
  background: #fff;
  color: var(--ink);
  border-radius: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}
.card-contact h2 {
  margin: 0;
  background: var(--navy);
  color: #fff;
  text-align: center;
  font-family: var(--sans);
  font-size: 18px;
  padding: 20px 16px;
}
.wpf { padding: 22px 22px 28px; display: grid; gap: 12px; }
.wpf-plain { padding: 0; }
.wpf h3 { font-family: var(--sans); font-size: 18px; font-weight: 700; color: var(--navy); margin: 16px 0 0; }
.wpf fieldset { display: grid; gap: 8px; }
.yn { display: flex; flex-wrap: wrap; gap: 14px; }
.yn label { display: flex; align-items: center; gap: 6px; }
.file-slot {
  border: 1px dashed #b7c4d0;
  border-radius: 8px;
  background: #f7fafc;
  padding: 18px 14px;
  text-align: center;
  font-weight: 500;
  color: var(--navy);
}
.file-slot input[type="file"] {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 400;
  border: 0;
  padding: 0;
  min-height: 0;
  background: transparent;
}
.form-note { margin: 8px 0 0; font-size: 13px; color: var(--muted); }
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.wpf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.wpf label { display: grid; gap: 4px; font-size: 14px; color: var(--ink); font-weight: 500; }
.wpf input, .wpf select, .wpf textarea {
  width: 100%;
  border: 1px solid #c9d4de;
  border-radius: 6px;
  background: #fff;
  color: var(--ink);
  font: 16px/1.4 var(--sans);
  font-weight: 400;
  padding: 12px 14px;
  min-height: 46px;
}
.wpf textarea { min-height: 120px; resize: vertical; }
.wpf .full { grid-column: 1 / -1; }
.wpf button { justify-self: start; margin-top: 6px; }
.result {
  background: #f4f8fb;
  border: 1px solid #d5e2ec;
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
}
.result h3 { margin: 0 0 6px; font-size: 18px; color: var(--navy); }
.result textarea { min-height: 120px; }
.scale { display: flex; flex-wrap: wrap; gap: 6px; }
.scale label {
  display: flex;
  align-items: center;
  gap: 4px;
  font-weight: 400;
  background: #f7fafc;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 6px 8px;
}
fieldset { border: 1px solid var(--line); margin: 0; padding: 10px 12px 12px; border-radius: 8px; }
legend { font-weight: 700; color: var(--navy); }
.check { display: flex; gap: 8px; align-items: center; font-weight: 400; }

.page-banner {
  min-height: 360px;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: var(--navy);
}
.page-banner-inner {
  position: relative;
  z-index: 2;
  width: min(1120px, calc(100% - 40px));
  text-align: center;
  padding: 148px 16px 56px;
}
.page-banner h1 {
  margin: 0;
  color: #fff;
  font-family: var(--slab);
  font-size: clamp(2rem, 4vw, 2.75rem);
}
.page-banner .lede, .page-banner .crumbs, .page-banner .crumbs a { color: #e7eef5; }
.page-banner .crumbs { margin-bottom: 8px; font-size: 14px; }
.page-photos {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 8px;
}
.page-photos .split { padding-top: 8px; }
.page-photos + .copy { padding-top: 20px; }
.wide-photo { margin: 0 0 36px; }
.wide-photo img {
  width: 100%;
  max-height: none;
  aspect-ratio: 16 / 7;
  object-fit: cover;
  border-radius: 12px;
  display: block;
}
.wide-photo figcaption, .gallery figcaption { font-size: 13px; color: var(--muted); margin-top: 8px; }
.copy {
  width: min(760px, calc(100% - 40px));
  margin: 0 auto;
  padding: 56px 0 72px;
  font-size: 16.5px;
}
.copy h2 { margin-top: 1.4em; }
.copy h2::after { margin-left: 0; }
.copy img, .copy picture { display: block; }
.copy img {
  width: 100%;
  margin: 16px auto 24px;
  border-radius: 12px;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}
.copy ul { padding-left: 1.2em; }
.copy li { margin: 0.35em 0; }
.pay-actions { display: flex; flex-wrap: wrap; gap: 10px; margin: 16px 0 20px; }

.specs { list-style: none; margin: 8px 0 24px; padding: 0; display: grid; gap: 14px; }
.specs li {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: start;
}
.specs .num {
  font-weight: 700;
  color: var(--sky);
  font-size: 13px;
  letter-spacing: 0.04em;
  padding-top: 4px;
}
.specs h3 { margin: 0 0 4px; font-family: var(--sans); font-size: 16px; color: var(--navy); }
.specs p { margin: 0; color: var(--muted); font-size: 15px; }
.section { padding: 8px 0 48px; }
.section-head { margin: 8px 0; }
.section-head.spaced { margin-top: 2rem; }
.related { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 12px; }
.related a {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 12px;
  font-size: 14px;
  background: #fff;
}
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 8px 0 28px;
}
.gallery figure { margin: 0; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: 10px; }
.gallery figcaption { font-size: 13px; color: var(--muted); margin-top: 6px; }

.site-footer {
  background: var(--footer);
  color: #fff;
  padding: 28px 0;
}
.footer-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}
.footer-links { display: flex; gap: 16px; list-style: none; margin: 0; padding: 0; flex-wrap: wrap; }
.footer-links a { color: #fff; font-size: 12px; text-transform: uppercase; }
.footer-links a:hover { color: var(--sky); }
.copyright { font-size: 14px; }

@media (max-width: 991px) {
  .slide { min-height: 460px; }
  .gallery { grid-template-columns: 1fr; }
  .feature-grid, .split, .contact-grid, .wpf-row { grid-template-columns: 1fr; }
  .split img { max-width: none; }
  .menu-btn { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--navy-2);
    flex-direction: column;
    padding: 6px 0 12px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 24px rgba(0, 0, 0, 0.25);
  }
  .nav-links a {
    display: block;
    padding: 14px 22px;
    font-size: 16px;
  }
  body.nav-open .nav-links { display: flex; }
  .brand small { display: none; }
  .contact-copy { text-align: left; }
}

@media (max-width: 640px) {
  .brand span { display: none; }
  .utility-inner { font-size: 12px; }
  .slide-inner { padding: 64px 0 56px; }
  .page-banner-inner { padding: 56px 12px 36px; }
  .features { padding-top: 48px; }
}

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