:root {
  --ink: #001f60;
  --steel: #18386b;
  --steel-2: #2c5da3;
  --accent: #2c5da3;
  --accent-2: #18386b;
  --blue: #0047e0;
  --paper: #ffffff;
  --bg: #eceff3;
  --line: #d9dfe6;
  --muted: #5f6b78;
  --body: #394653;
  --maxw: 1240px;
  --pad: 40px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: "Maven Pro", system-ui, sans-serif;
  color: var( --body );
  background: var( --bg );
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
h1, h2, h3, h4, .display { font-family: "Maven Pro", system-ui, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.wrap { max-width: var( --maxw ); margin: 0 auto; padding: 0 var( --pad ); }
.skip-link { position: absolute; left: -999px; top: 12px; z-index: 100; background: var( --ink ); color: #fff; padding: 10px 14px; border-radius: 4px; }
.skip-link:focus { left: 12px; }

header.site {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  background: var( --paper );
  border-bottom: 1px solid var( --line );
  box-shadow: 0 4px 20px rgba( 0,31,96,.05 );
  transition: box-shadow .3s ease;
}
header.site.solid { box-shadow: 0 8px 30px rgba( 0,31,96,.10 ); }
.header-inner {
  max-width: var( --maxw );
  margin: 0 auto;
  padding: 16px var( --pad );
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo { display: flex; align-items: center; gap: 12px; min-width: 0; }
.logo-text { font-family: "Maven Pro"; font-weight: 700; font-size: 22px; letter-spacing: -.03em; color: var( --ink ); line-height: 1.2; white-space: nowrap; overflow: visible; text-overflow: clip; padding-bottom: 2px; }
.logo-text span { color: var( --steel-2 ); font-weight: 500; }

.utility { display: flex; align-items: center; gap: 16px; }
.util-link { font-size: 13px; font-weight: 700; color: var( --muted ); letter-spacing: .02em; display: inline-flex; align-items: center; gap: 7px; }
.util-link:hover { color: var( --steel ); }
.util-phone { color: var( --ink ); }
.cta {
  display: inline-flex; align-items: center; gap: 9px;
  background: var( --ink );
  color: #fff;
  font-weight: 700; font-size: 13.5px;
  letter-spacing: .04em;
  padding: 12px 22px;
  border-radius: 4px;
  transition: background .2s ease, transform .2s ease;
}
.cta:hover { background: var( --steel ); transform: translateY( -1px ); }

nav.main { display: flex; align-items: center; gap: 30px; }
nav.main a, .mobile-panel a {
  font-family: "Maven Pro";
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .06em;
  color: var( --ink );
  padding: 4px 0;
  position: relative;
}
nav.main a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -6px;
  width: 0; height: 2px;
  background: var( --accent );
  transition: width .25s ease;
}
nav.main a:hover::after, nav.main a.active::after { width: 100%; }
nav.main a.active { color: var( --steel ); }

.mobile-menu { display: none; position: relative; }
.mobile-menu summary { list-style: none; }
.mobile-menu summary::-webkit-details-marker { display: none; }
.hamburger {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var( --line );
  border-radius: 6px;
  cursor: pointer;
  background: #fff;
}
.hamburger span { display: block; width: 18px; height: 2px; background: var( --ink ); position: relative; }
.hamburger span::before, .hamburger span::after { content: ""; position: absolute; left: 0; width: 18px; height: 2px; background: var( --ink ); }
.hamburger span::before { top: -6px; }
.hamburger span::after { top: 6px; }
.mobile-panel {
  position: absolute;
  right: 0;
  top: 48px;
  min-width: 240px;
  padding: 16px 18px;
  background: #fff;
  border: 1px solid var( --line );
  border-radius: 10px;
  box-shadow: 0 18px 50px rgba( 0,31,96,.16 );
  display: grid;
  gap: 13px;
}

.hero {
  position: relative;
  height: 84vh;
  min-height: 520px;
  background: var( --ink );
  overflow: hidden;
}
.hero-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( 180deg, rgba( 0,31,96,.18 ), rgba( 0,31,96,.03 ) 45%, rgba( 236,239,243,.12 ) );
  pointer-events: none;
}

.intro {
  background: var( --bg );
  padding: 110px 0 0;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}
.intro h1, .intro h2 {
  color: var( --ink );
  font-size: 38px;
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.02em;
  margin: 0 0 22px;
}
.intro p {
  font-size: 16.5px;
  color: var( --body );
  max-width: 30em;
  margin: 0;
  text-wrap: pretty;
}

.prices { background: var( --bg ); padding: 100px 0 0; }
.price-panel {
  background: #fff;
  border: 1px solid var( --line );
  border-radius: 14px;
  box-shadow: 0 18px 50px rgba( 0,31,96,.06 );
  overflow: hidden;
}
.price-panel__head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  padding: 24px 32px;
  background: var( --ink );
}
.price-panel__head h3 {
  font-family: "Maven Pro"; color: #fff;
  font-size: 20px; font-weight: 700; margin: 0; letter-spacing: -.01em;
}
.price-panel__head .stamp { color: rgba( 255,255,255,.72 ); font-size: 13.5px; }
.price-grid { display: grid; grid-template-columns: repeat( 5, 1fr ); }
.price-col {
  padding: 34px 30px;
  border-left: 1px solid var( --line );
}
.price-col:first-child { border-left: none; }
.price-col .g {
  margin: 0 0 16px;
  font-size: 12px; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: var( --muted );
}
.price-col .p {
  font-family: "Maven Pro"; font-weight: 700;
  font-size: 28px; color: var( --ink ); line-height: 1; letter-spacing: -.01em;
}
.price-col .p small {
  display: block; margin-top: 9px;
  font-size: 12px; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var( --muted );
}
.price-panel__foot {
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; flex-wrap: wrap;
  padding: 20px 32px;
  border-top: 1px solid var( --line );
  background: #fafbfc;
}
.price-panel__foot a {
  color: var( --steel-2 ); font-weight: 700; font-size: 14.5px;
  display: inline-flex; align-items: center; gap: 9px;
}
.price-panel__foot a:hover { color: var( --ink ); }
.price-panel__foot a .tag {
  font-size: 11px; font-weight: 700; letter-spacing: .08em;
  color: #fff; background: var( --steel-2 );
  padding: 3px 7px; border-radius: 4px;
}
.price-panel__foot .note { color: var( --muted ); font-size: 13.5px; }

.eyebrow {
  display: inline-flex; align-items: center; gap: 11px;
  color: var( --steel-2 ); font-weight: 700; font-size: 13px;
  letter-spacing: .18em; text-transform: uppercase;
  margin: 0 0 20px;
}
.eyebrow::before {
  content: ""; width: 28px; height: 3px;
  background: var( --accent ); border-radius: 3px;
}

.conditions {
  background: var( --bg );
  padding: 120px 0;
}
.section-title {
  color: var( --ink );
  font-size: clamp( 34px, 4vw, 50px );
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -.025em;
  margin: 0 0 60px;
  max-width: 18ch;
}
.cols-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
ul.bullets { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 26px; }
ul.bullets li {
  position: relative;
  padding-left: 26px;
  font-size: 16px;
  line-height: 1.62;
  color: var( --body );
  text-wrap: pretty;
}
ul.bullets li::before {
  content: "";
  position: absolute;
  left: 2px; top: 10px;
  width: 8px; height: 8px;
  background: var( --steel-2 );
  border-radius: 50%;
}
.conditions.alt { background: #fff; }

.page-hero {
  position: relative;
  padding: 140px 0 70px;
  background: var( --ink );
  color: #fff;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url( '/images/hero_6.png' ) center 42%/cover no-repeat;
  opacity: .40;
  z-index: 0;
}
.page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( 180deg, rgba( 0,31,96,.30 ) 0%, rgba( 0,31,96,.55 ) 100% );
  z-index: 1;
}
.page-hero .wrap {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-size: clamp( 32px, 4vw, 48px );
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0 0 14px;
  color: #fff;
}
.page-hero .subtitle {
  font-size: 16px;
  color: rgba( 255,255,255,.78 );
  max-width: 46ch;
}

.legal {
  background: var( --bg );
  padding: 70px 0 90px;
}
.legal-inner {
  max-width: none;
  margin: 0;
}
.legal-inner h2 {
  color: var( --ink );
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 48px 0 18px;
  padding-top: 32px;
  border-top: 1px solid var( --line );
}
.legal-inner h2:first-of-type {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.legal-inner p {
  font-size: 15.5px;
  line-height: 1.72;
  color: var( --body );
  margin: 0 0 16px;
}
.legal-inner ul {
  margin: 0 0 20px;
  padding-left: 22px;
}
.legal-inner li {
  font-size: 15.5px;
  line-height: 1.72;
  color: var( --body );
  margin-bottom: 8px;
}
.legal-inner strong { color: var( --ink ); }
.legal-inner a { color: var( --steel-2 ); text-decoration: underline; text-underline-offset: 3px; }
.legal-inner a:hover { color: var( --ink ); }

.price-list {
  background: var( --bg );
  padding: 60px 0 90px;
}

.price-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 28px;
  padding: 16px 22px;
  background: #fff;
  border: 1px solid var( --line );
  border-left: 4px solid var( --steel-2 );
  border-radius: 8px;
}
.price-meta__date { font-size: 14px; color: var( --body ); }
.price-meta__date strong { color: var( --ink ); font-weight: 700; }
.price-meta__basis { color: var( --muted ); font-size: 13px; max-width: 60ch; }

.price-jump {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 36px;
}
.price-jump a {
  background: #fff;
  border: 1px solid var( --line );
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: .04em;
  color: var( --ink );
  transition: background .15s, color .15s, border-color .15s;
}
.price-jump a:hover {
  background: var( --steel-2 );
  border-color: var( --steel-2 );
  color: #fff;
}

.price-cat {
  background: #fff;
  border: 1px solid var( --line );
  border-radius: 14px;
  overflow: hidden;
  margin-bottom: 24px;
  box-shadow: 0 18px 50px rgba( 0,31,96,.05 );
  scroll-margin-top: 110px;
}
.price-cat__head {
  padding: 22px 32px;
  background: var( --ink );
  color: #fff;
}
.price-cat__head h2 {
  font-family: "Maven Pro";
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -.01em;
  margin: 0;
  color: #fff;
}
.price-cat__head p {
  margin: 6px 0 0;
  font-size: 13.5px;
  color: rgba( 255,255,255,.72 );
  max-width: 70ch;
}

.price-table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
.price-table {
  width: 100%;
  border-collapse: collapse;
}
.price-table th, .price-table td {
  padding: 14px 32px;
  text-align: left;
  border-bottom: 1px solid var( --line );
  font-size: 14.5px;
}
.price-table thead th {
  background: #f7f9fc;
  font-weight: 700;
  font-size: 11.5px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var( --muted );
  padding-top: 14px;
  padding-bottom: 14px;
}
.price-table th.num, .price-table td.num {
  text-align: right;
  font-variant-numeric: tabular-nums;
}
.price-table tbody tr:last-child td { border-bottom: none; }
.price-table tbody tr:hover { background: #fafbfc; }
.price-table td.mat {
  font-weight: 600;
  color: var( --ink );
}
.price-table td.mat small {
  display: block;
  font-size: 12px;
  color: var( --muted );
  font-weight: 400;
  margin-top: 2px;
}
.price-table td.num strong {
  color: var( --ink );
  font-weight: 700;
}
.price-table td.num .cur {
  color: var( --muted );
  font-weight: 600;
  font-size: .78em;
  letter-spacing: .04em;
  margin-left: 5px;
}

.price-notes {
  margin-top: 36px;
  padding: 24px 28px;
  background: #fff;
  border: 1px solid var( --line );
  border-radius: 10px;
  border-left: 4px solid var( --steel-2 );
}
.price-notes h3 {
  font-family: "Maven Pro";
  font-size: 15px;
  font-weight: 700;
  color: var( --ink );
  margin: 0 0 14px;
  letter-spacing: .02em;
}
.price-notes ul {
  margin: 0;
  padding-left: 18px;
  font-size: 14px;
  line-height: 1.7;
  color: var( --body );
}
.price-notes li { margin-bottom: 6px; }
.price-notes li:last-child { margin-bottom: 0; }

.price-cta {
  margin-top: 40px;
  text-align: center;
}
.price-cta .cta { font-size: 14px; padding: 14px 26px; }
.price-cta__hint {
  margin: 16px 0 0;
  color: var( --muted );
  font-size: 13px;
}

.contact {
  background: var( --bg );
  padding: 70px 0 90px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 36px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-card {
  background: #fff;
  border: 1px solid var( --line );
  border-radius: 12px;
  padding: 22px 24px;
  box-shadow: 0 4px 20px rgba( 0,31,96,.04 );
}
.contact-card__icon {
  width: 38px; height: 38px;
  background: rgba( 44, 93, 163, .1 );
  color: var( --steel-2 );
  border-radius: 8px;
  display: grid; place-items: center;
  margin-bottom: 12px;
}
.contact-card__icon svg { width: 18px; height: 18px; }
.contact-card h3 {
  font-family: "Maven Pro";
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var( --muted );
  margin: 0 0 6px;
}
.contact-card__value {
  font-size: 15.5px;
  font-weight: 600;
  color: var( --ink );
  margin: 0;
  line-height: 1.4;
}
.contact-card__value a { color: var( --ink ); }
.contact-card__value a:hover { color: var( --steel-2 ); }
.contact-card__hours {
  list-style: none;
  margin: 0;
  padding: 0;
}
.contact-card__hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  padding: 7px 0;
  font-size: 13.5px;
  color: var( --muted );
  border-bottom: 1px solid var( --line );
}
.contact-card__hours li:last-child { border-bottom: none; }
.contact-card__hours li span:last-child { color: var( --ink ); font-weight: 600; }

.contact-form-wrap {
  background: #fff;
  border: 1px solid var( --line );
  border-radius: 14px;
  padding: 32px 36px;
  box-shadow: 0 18px 50px rgba( 0,31,96,.06 );
}
.contact-form-wrap h2 {
  font-family: "Maven Pro";
  font-size: 22px;
  font-weight: 700;
  color: var( --ink );
  letter-spacing: -.01em;
  margin: 0 0 8px;
}
.contact-form-intro {
  color: var( --muted );
  font-size: 14.5px;
  margin: 0 0 24px;
}

.form-field {
  margin-bottom: 16px;
}
.form-field label {
  display: block;
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var( --muted );
  margin-bottom: 8px;
}
.form-field input,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var( --line );
  border-radius: 6px;
  font: inherit;
  font-size: 15px;
  color: var( --body );
  background: #fff;
  font-family: "Maven Pro", system-ui, sans-serif;
  transition: border-color .15s, box-shadow .15s;
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var( --steel-2 );
  box-shadow: 0 0 0 3px rgba( 44, 93, 163, .15 );
}
.form-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.5;
}
.form-field textarea::placeholder { color: var( --muted ); }

.form-alert {
  padding: 14px 18px;
  border-radius: 8px;
  margin-bottom: 18px;
  font-size: 14px;
  line-height: 1.5;
}
.form-alert a { font-weight: 700; text-decoration: underline; }
.form-alert--ok {
  background: rgba( 46, 157, 104, .1 );
  color: #0f5132;
  border: 1px solid rgba( 46, 157, 104, .25 );
}
.form-alert--ok a { color: #0f5132; }
.form-alert--err {
  background: rgba( 220, 38, 38, .08 );
  color: #991b1b;
  border: 1px solid rgba( 220, 38, 38, .25 );
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var( --ink );
  color: #fff;
  border: none;
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .04em;
  padding: 14px 28px;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, transform .2s;
  font-family: "Maven Pro", system-ui, sans-serif;
}
.form-submit:hover { background: var( --steel ); transform: translateY( -1px ); }

.contact-form-note {
  margin: 18px 0 0;
  font-size: 13px;
  color: var( --muted );
}
.contact-form-note a { color: var( --steel-2 ); text-decoration: underline; }
.contact-form-note a:hover { color: var( --ink ); }

.contact-map {
  width: 100%;
  height: 360px;
  border: 1px solid var( --line );
  border-radius: 14px;
  margin-top: 40px;
  box-shadow: 0 18px 50px rgba( 0,31,96,.06 );
}

.contact-page-head {
  padding: clamp( 120px, 15vw, 180px ) 0 clamp( 48px, 6vw, 72px );
  background: var( --paper );
}
.contact-page-head .lead-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp( 40px, 6vw, 90px );
  align-items: end;
}
.contact-page-head h1 {
  color: var( --ink );
  font-size: clamp( 40px, 6vw, 78px );
  line-height: 1;
  letter-spacing: -.03em;
  margin: 0;
}
.contact-page-head .lead {
  font-size: clamp( 17px, 1.6vw, 20px );
  line-height: 1.6;
  color: var( --body );
  max-width: 44ch;
  margin: 0;
}
.contact .cinfo {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
.contact .cinfo__item {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 18px;
  align-items: start;
}
.contact .cinfo__ic {
  width: 48px;
  height: 48px;
  border-radius: 11px;
  background: var( --bg );
  display: grid;
  place-items: center;
  color: var( --ink );
}
.contact .cinfo__ic svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
}
.contact .cinfo__item h4 {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var( --muted );
  margin: 0 0 7px;
}
.contact .cinfo__item p,
.contact .cinfo__item a {
  font-size: 17px;
  line-height: 1.5;
  color: var( --ink );
  margin: 0;
  font-weight: 600;
  display: block;
}
.contact .cinfo__item a:hover { color: var( --blue ); }
.contact .cinfo__item .sub {
  display: block;
  font-weight: 400;
  font-size: 14.5px;
  color: var( --body );
  margin-top: 4px;
}
.contact .cform {
  background: var( --bg );
  border: 1px solid var( --line );
  border-radius: 16px;
  padding: clamp( 28px, 4vw, 44px );
}
.contact .cform h3 {
  color: var( --ink );
  font-size: 24px;
  letter-spacing: -.01em;
  margin: 0 0 6px;
}
.contact .cform .hint {
  font-size: 14.5px;
  color: var( --body );
  margin: 0 0 28px;
}
.contact .cform__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.contact .field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
}
.contact .field label {
  font-size: 13px;
  font-weight: 700;
  color: var( --ink );
  letter-spacing: .02em;
}
.contact .field input,
.contact .field select,
.contact .field textarea {
  font-family: "Maven Pro", system-ui, sans-serif;
  font-size: 15px;
  color: var( --ink );
  background: #fff;
  border: 1px solid var( --line );
  border-radius: 8px;
  padding: 13px 15px;
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.contact .field input::placeholder,
.contact .field textarea::placeholder { color: #aab2bd; }
.contact .field input:focus,
.contact .field select:focus,
.contact .field textarea:focus {
  border-color: var( --blue );
  box-shadow: 0 0 0 3px rgba( 0,71,224,.12 );
}
.contact .field textarea {
  resize: vertical;
  min-height: 110px;
}
.contact .cform__submit {
  width: 100%;
  margin-top: 6px;
  border: none;
  cursor: pointer;
  background: var( --ink );
  color: #fff;
  font-family: "Maven Pro", system-ui, sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 16px;
  border-radius: 9px;
  transition: background .2s ease;
}
.contact .cform__submit:hover { background: var( --blue ); }
.contact .cform__note {
  font-size: 12.5px;
  color: var( --muted );
  margin: 14px 0 0;
  text-align: center;
}
.map-band {
  background: var( --bg );
}
.contact-map-frame,
.contact-map-placeholder {
  display: block;
  width: 100%;
  height: clamp( 320px, 38vw, 460px );
  border: 0;
}
.contact-map-placeholder {
  display: grid;
  place-items: center;
  padding: 32px;
  color: var( --muted );
  font-weight: 600;
  text-align: center;
}
.contact-closing {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: var( --ink );
  overflow: hidden;
}
.contact-closing__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.contact-closing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba( 0,18,52,.86 ) 0%, rgba( 0,18,52,.55 ) 55%, rgba( 0,18,52,.2 ) 100% );
  z-index: 1;
}
.contact-closing .wrap {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 70px;
}
.contact-closing h2 {
  color: #fff;
  font-size: clamp( 28px, 3.6vw, 46px );
  line-height: 1.12;
  letter-spacing: -.025em;
  max-width: 20ch;
  margin: 0 0 22px;
}
.contact-closing p {
  color: rgba( 255,255,255,.85 );
  font-size: 17px;
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 0 34px;
}
.contact-closing .btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var( --ink );
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 6px;
  transition: transform .2s ease;
}
.contact-closing .btn:hover {
  transform: translateY( -2px );
  color: var( --ink );
}
@media ( max-width: 1024px ) {
  .contact-page-head .lead-grid { grid-template-columns: 1fr; gap: 28px; align-items: start; }
}
@media ( max-width: 720px ) {
  .contact .cform__row { grid-template-columns: 1fr; gap: 0; }
}

.home-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  color: var( --blue );
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: .22em;
  text-transform: uppercase;
  margin: 0 0 22px;
}
.home-eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var( --blue );
}

.home-hero {
  position: relative;
  height: 92vh;
  min-height: 600px;
  background: var( --ink );
  overflow: hidden;
}
.home-hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( 180deg, rgba( 0,18,52,.25 ) 0%, rgba( 0,18,52,0 ) 30%, rgba( 0,18,52,.10 ) 55%, rgba( 0,18,52,.82 ) 100% );
}
.home-hero__content {
  position: absolute;
  left: 0; right: 0;
  bottom: clamp( 48px, 8vh, 96px );
  z-index: 2;
}
.home-hero__content .wrap {
  padding-left: 0;
  transform: translateX( -56px );
}
@media ( max-width: 720px ) {
  .home-hero__content .wrap {
    padding-left: var( --pad );
    transform: none;
  }
}
.home-hero__tag {
  display: inline-block;
  color: #cfe0f5;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.home-hero h1 {
  color: transparent;
  font-size: clamp( 44px, 6.4vw, 88px );
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -.025em;
  max-width: 17ch;
  margin: 0 0 28px;
  padding-bottom: .08em;
  background: linear-gradient( 0deg, #ffffff 0%, #ffffff 35%, #7fb0e6 78%, #2c5da3 100% );
  -webkit-background-clip: text;
  background-clip: text;
}
.home-hero__link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  font-weight: 600;
  font-size: 17px;
  padding-bottom: 6px;
  border-bottom: 2px solid rgba( 255,255,255,.4 );
  transition: border-color .25s ease;
}
.home-hero__link:hover {
  border-color: #fff;
  color: #fff;
}

.home-ticker { background: var( --ink ); }
.home-ticker .wrap {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: stretch;
  gap: 0;
  padding: 0 var( --pad );
}
.home-ticker__label {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 26px 38px 26px 0;
  border-right: 1px solid rgba( 255,255,255,.14 );
}
.home-ticker__label .t { color: #fff; font-weight: 700; font-size: 16px; }
.home-ticker__label .d { color: rgba( 255,255,255,.55 ); font-size: 12.5px; }
.home-ticker__items {
  display: grid;
  grid-template-columns: repeat( 5, 1fr );
}
.home-tick {
  padding: 22px 26px;
  border-left: 1px solid rgba( 255,255,255,.10 );
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}
.home-tick:first-child { border-left: none; }
.home-tick .g {
  color: #7fb0e6;
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.home-tick .p {
  color: #fff;
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -.01em;
}
.home-tick .p small {
  font-weight: 500;
  font-size: 12px;
  color: rgba( 255,255,255,.55 );
  margin-left: 5px;
}

.home-intro {
  padding: clamp( 80px, 11vw, 140px ) 0;
  background: #fff;
}
.home-intro__grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp( 48px, 7vw, 100px );
  align-items: center;
}
.home-intro h2 {
  font-size: clamp( 30px, 3.8vw, 50px );
  line-height: 1.1;
  letter-spacing: -.025em;
  margin: 0 0 28px;
  text-wrap: balance;
  color: var( --ink );
}
.home-intro p {
  font-size: 17px;
  line-height: 1.65;
  margin: 0 0 18px;
  max-width: 46ch;
  color: var( --body );
}
.home-intro p:last-child { margin-bottom: 0; }
.home-intro__media {
  width: 100%;
  height: clamp( 360px, 42vw, 520px );
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

.home-eyebrow--light { color: #7fb0e6; }
.home-eyebrow--light::before { background: #7fb0e6; }

.home-process {
  padding: clamp( 84px, 10vw, 132px ) 0;
  background: var( --ink );
}
.home-process__head {
  max-width: 46ch;
  margin: 0 0 clamp( 56px, 7vw, 84px );
}
.home-process__head h2 {
  color: #fff;
  font-size: clamp( 28px, 3.6vw, 46px );
  line-height: 1.1;
  letter-spacing: -.025em;
}
.home-steps {
  display: flex;
  gap: 0;
}
.home-step {
  flex: 1;
  position: relative;
  padding-right: 36px;
}
.home-step:last-child { padding-right: 0; }
.home-step__node {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: rgba( 127,176,230,.12 );
  border: 1.5px solid rgba( 127,176,230,.5 );
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
.home-step:not( :last-child )::before {
  content: "";
  position: absolute;
  top: 28px;
  left: 58px;
  right: 8px;
  height: 2px;
  background: linear-gradient( 90deg, rgba( 127,176,230,.5 ), rgba( 127,176,230,.12 ) );
}
.home-step h3 {
  color: #fff;
  font-size: 21px;
  margin: 0 0 12px;
  letter-spacing: -.01em;
}
.home-step p {
  color: rgba( 255,255,255,.62 );
  font-size: 14.5px;
  line-height: 1.62;
  margin: 0;
  max-width: 32ch;
}

.home-explore {
  padding: clamp( 80px, 11vw, 140px ) 0;
  background: #fff;
}
.home-explore__head {
  max-width: 60ch;
  margin-bottom: 56px;
}
.home-explore__head h2 {
  font-size: clamp( 28px, 3.6vw, 46px );
  line-height: 1.1;
  letter-spacing: -.025em;
  max-width: 18ch;
  margin-bottom: 18px;
  color: var( --ink );
}
.home-explore__head p {
  color: var( --body );
  font-size: 17px;
  max-width: 50ch;
  margin: 0;
  line-height: 1.6;
}

.home-explore__body {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp( 40px, 6vw, 80px );
  align-items: stretch;
}
.home-explore__media {
  width: 100%;
  min-height: 440px;
  background-size: cover;
  background-position: center;
  border-radius: 16px;
}

.home-srv-list { border-top: 2px solid var( --ink ); }
.home-srv {
  display: grid;
  grid-template-columns: 64px 1fr;
  align-items: start;
  gap: 8px 26px;
  padding: 30px 0;
  border-bottom: 1px solid var( --line );
  transition: padding-left .3s ease;
  color: inherit;
}
.home-srv:hover { padding-left: 12px; }
.home-srv__n {
  grid-row: 1 / 3;
  font-size: 16px;
  font-weight: 700;
  color: var( --muted );
  letter-spacing: .04em;
  transition: color .25s ease;
  padding-top: 6px;
}
.home-srv:hover .home-srv__n { color: var( --blue ); }
.home-srv__title {
  font-size: clamp( 21px, 2.1vw, 27px );
  font-weight: 700;
  color: var( --ink );
  letter-spacing: -.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.home-srv__desc {
  font-size: 15px;
  line-height: 1.6;
  color: var( --body );
  max-width: 46ch;
}

.home-closing {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  background: var( --ink );
  overflow: hidden;
}
.home-closing__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.home-closing::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient( 90deg, rgba( 0,18,52,.86 ) 0%, rgba( 0,18,52,.55 ) 55%, rgba( 0,18,52,.2 ) 100% );
  z-index: 1;
}
.home-closing .wrap {
  position: relative;
  z-index: 2;
  padding-top: 70px;
  padding-bottom: 70px;
  text-align: center;
}
.home-closing h2 {
  color: #fff;
  font-size: clamp( 28px, 3.6vw, 46px );
  line-height: 1.12;
  letter-spacing: -.025em;
  max-width: 20ch;
  margin: 0 auto 22px;
}
.home-closing p {
  color: rgba( 255,255,255,.85 );
  font-size: 17px;
  line-height: 1.6;
  max-width: 48ch;
  margin: 0 auto 34px;
}
.home-closing__btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  color: var( --ink );
  font-weight: 700;
  font-size: 15px;
  padding: 15px 30px;
  border-radius: 6px;
  transition: transform .2s ease;
}
.home-closing__btn:hover {
  transform: translateY( -2px );
  color: var( --ink );
}

@media ( max-width: 1024px ) {
  .home-intro__grid { grid-template-columns: 1fr; gap: 48px; }
  .home-steps { display: grid; grid-template-columns: 1fr 1fr; gap: 48px 36px; }
  .home-step { padding-right: 0; }
  .home-step:not( :last-child )::before { display: none; }
  .home-explore__body { grid-template-columns: 1fr; gap: 44px; }
  .home-explore__media { min-height: 320px; }
  .home-srv { grid-template-columns: 60px 1fr; gap: 8px 20px; padding: 26px 0; }
  .home-ticker .wrap { grid-template-columns: 1fr; }
  .home-ticker__label { border-right: none; border-bottom: 1px solid rgba( 255,255,255,.14 ); padding: 22px 0; }
}
@media ( max-width: 720px ) {
  .home-ticker__items { grid-template-columns: 1fr 1fr; }
  .home-tick:nth-child( odd ) { border-left: none; }
  .home-tick { border-top: 1px solid rgba( 255,255,255,.10 ); }
  .home-steps { grid-template-columns: 1fr; gap: 40px; }
  .home-srv__title { font-size: 21px; }
}
@media ( max-width: 460px ) {
  .home-ticker__items { grid-template-columns: 1fr; }
}

.about-head {
  padding: clamp( 120px, 15vw, 180px ) 0 clamp( 48px, 6vw, 72px );
  background: #fff;
}
.about-head__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp( 40px, 6vw, 90px );
  align-items: end;
}
.about-head h1 {
  font-size: clamp( 40px, 6vw, 78px );
  line-height: 1.0;
  letter-spacing: -.03em;
  color: var( --ink );
}
.about-head__lead {
  font-size: clamp( 17px, 1.6vw, 20px );
  line-height: 1.6;
  color: var( --body );
  max-width: 44ch;
  margin: 0;
}

.about-banner {
  background: #fff;
  padding-bottom: clamp( 70px, 9vw, 120px );
}
.about-banner__img {
  width: 100%;
  height: clamp( 320px, 44vw, 560px );
  background-size: cover;
  background-position: center;
  border-radius: 18px;
}

.about-feature {
  padding: clamp( 64px, 8vw, 100px ) 0;
  background: #fff;
}
.about-feature--alt { background: var( --bg ); }
.about-feature__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp( 44px, 6vw, 90px );
  align-items: center;
}
.about-feature__grid--reverse { direction: rtl; }
.about-feature__grid--reverse > * { direction: ltr; }
.about-feature__media {
  width: 100%;
  height: clamp( 340px, 40vw, 480px );
  background-size: cover;
  background-position: center;
  border-radius: 14px;
}
.about-feature h2 {
  font-size: clamp( 26px, 3.2vw, 42px );
  line-height: 1.12;
  letter-spacing: -.025em;
  margin: 0 0 24px;
  text-wrap: balance;
  color: var( --ink );
}
.about-feature p {
  font-size: 16.5px;
  line-height: 1.66;
  margin: 0 0 18px;
  max-width: 46ch;
  color: var( --body );
}
.about-feature p:last-child { margin-bottom: 0; }

.about-values {
  padding: clamp( 84px, 10vw, 130px ) 0;
  background: var( --ink );
}
.about-values__head {
  max-width: 50ch;
  margin: 0 0 clamp( 50px, 6vw, 78px );
}
.about-values__head h2 {
  color: #fff;
  font-size: clamp( 28px, 3.6vw, 46px );
  line-height: 1.12;
  letter-spacing: -.025em;
}
.about-values__grid {
  display: grid;
  grid-template-columns: repeat( 3, 1fr );
  gap: 0;
}
.about-value {
  padding: 38px 36px 8px 0;
  border-top: 2px solid rgba( 127,176,230,.45 );
  margin-right: 36px;
}
.about-value:last-child { margin-right: 0; }
.about-value h3 {
  color: #fff;
  font-size: 22px;
  margin: 0 0 14px;
  letter-spacing: -.01em;
}
.about-value p {
  color: rgba( 255,255,255,.64 );
  font-size: 15px;
  line-height: 1.62;
  margin: 0;
  max-width: 32ch;
}

@media ( max-width: 1024px ) {
  .about-head__grid { grid-template-columns: 1fr; gap: 28px; align-items: start; }
  .about-feature__grid { grid-template-columns: 1fr; gap: 36px; }
  .about-feature__grid--reverse { direction: ltr; }
  .about-feature__media { order: -1; }
  .about-values__grid { grid-template-columns: 1fr; gap: 0; }
  .about-value { margin-right: 0; padding: 32px 0 8px; }
}

.error-hero {
  min-height: 60vh;
  padding: 100px 0 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.error-hero .wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.error-hero h1 {
  font-size: clamp( 24px, 3.2vw, 36px );
  margin: 0 0 12px;
}
.error-hero .subtitle {
  margin: 0 auto;
  max-width: 50ch;
  font-size: 15px;
}
.error-code {
  display: block;
  font-family: "Maven Pro";
  font-size: clamp( 80px, 13vw, 140px );
  font-weight: 800;
  line-height: 1;
  letter-spacing: -.04em;
  color: #fff;
  margin: 0 0 8px;
  text-shadow: 0 6px 30px rgba( 0, 0, 0, .25 );
}

@media ( max-width: 860px ) {
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .contact-form-wrap { padding: 26px 22px; }
  .contact-card { padding: 20px 22px; }
}

footer.site {
  background: var( --paper );
  padding: 90px 0 40px;
  border-top: 1px solid var( --line );
}
.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat( 3, 1fr );
  gap: 48px;
}
.foot-brand .logo-text { font-size: 22px; }
.foot-tag { margin: 22px 0 22px; color: var( --muted ); font-size: 14.5px; max-width: 28ch; }

.foot-hours {
  list-style: none;
  margin: 4px 0 0;
  padding: 0;
  max-width: 28ch;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.foot-hours li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 14px;
  font-size: 13px;
  color: var( --muted );
  padding: 9px 0;
  border-bottom: 1px solid var( --line );
}
.foot-hours li:last-child { border-bottom: none; }
.foot-hours li span:last-child { color: var( --ink ); font-weight: 600; font-size: 13px; }

.foot-brand .socials { margin-top: 22px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 7px;
  background: var( --steel );
  display: grid; place-items: center;
  color: #fff;
  transition: background .2s ease, transform .2s ease;
}
.socials a:hover { background: var( --accent ); transform: translateY( -2px ); }
.socials svg { width: 17px; height: 17px; fill: currentColor; }
.foot-col h2 {
  font-family: "Maven Pro";
  color: var( --ink );
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .02em;
  margin: 0 0 18px;
}
.foot-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 12px; }
.foot-col ul a { color: var( --body ); font-size: 14.5px; }
.foot-col ul a:hover { color: var( --accent ); }
.foot-bottom {
  margin-top: 70px;
  padding-top: 28px;
  border-top: 1px solid var( --line );
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  color: var( --muted );
  font-size: 13.5px;
}
.foot-bottom .links { display: flex; gap: 22px; flex-wrap: wrap; }
.foot-bottom .links a { color: var( --muted ); }
.foot-bottom .links a:hover { color: var( --accent ); }

@media ( max-width: 1160px ) {
  nav.main { gap: 20px; }
  .util-link.util-hide { display: none; }
  .logo-text { max-width: 260px; }
}
@media ( max-width: 960px ) {
  :root { --pad: 22px; }
  nav.main, .utility .util-link { display: none; }
  .mobile-menu { display: block; }
  .header-inner { gap: 18px; }
  .utility .cta { display: none; }
  .intro-grid, .cols-2 { grid-template-columns: 1fr; gap: 40px; }
  .intro h1, .intro h2 { font-size: 30px; }
  .price-grid { grid-template-columns: 1fr 1fr; }
  .price-col:nth-child( odd ) { border-left: none; }
  .conditions { padding: 70px 0; }
  .foot-grid { grid-template-columns: 1fr 1fr; }
  footer.site { padding: 64px 0 34px; }
  footer.site .wrap { padding-left: 28px; padding-right: 28px; }
  .foot-brand .logo-text { line-height: 1.2; }
  .foot-tag, .foot-hours { max-width: none; }
  .foot-bottom { margin-top: 48px; }
}
@media ( max-width: 720px ) {
  :root { --pad: 24px; }
  .header-inner { padding-left: 24px; padding-right: 24px; }
  .foot-grid { grid-template-columns: 1fr; gap: 34px; }
  .foot-col h2 { margin-bottom: 12px; }
  .foot-col ul { gap: 10px; }
  .foot-bottom { align-items: flex-start; flex-direction: column; gap: 18px; }
  .foot-bottom .links { flex-direction: column; gap: 10px; }
  .price-cat__head { padding: 18px 22px; }
  .price-cat__head h2 { font-size: 17px; }
  .price-meta { padding: 14px 18px; }
  .price-meta__basis { font-size: 12.5px; }
  .price-notes { padding: 20px 22px; }

  .price-table-wrap { overflow: visible; }
  .price-table { min-width: 0; }
  .price-table thead { display: none; }
  .price-table, .price-table tbody, .price-table tr, .price-table td { display: block; width: 100%; }
  .price-table tr {
    border-bottom: 1px solid var( --line );
    padding: 18px 22px;
  }
  .price-table tr:last-child { border-bottom: none; }
  .price-table td {
    padding: 0;
    border: none;
    text-align: left;
  }
  .price-table td.mat {
    font-weight: 700;
    color: var( --ink );
    font-size: 15.5px;
    padding-bottom: 12px;
    margin-bottom: 10px;
    border-bottom: 1px solid var( --line );
  }
  .price-table td.mat small {
    margin-top: 4px;
    font-size: 12.5px;
  }
  .price-table td.num {
    display: flex;
    align-items: baseline;
    padding: 7px 0;
  }
  .price-table td.num::before {
    content: attr( data-label );
    margin-right: auto;
    padding-right: 14px;
    color: var( --muted );
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
  }
  .price-table td.num strong { font-size: 16px; color: var( --ink ); }
  .price-table td.num .cur { font-size: 11.5px; }
}

@media ( max-width: 620px ) {
  .logo-text { max-width: 190px; font-size: 18px; }
  .hero { min-height: 430px; height: 68vh; }
  .intro { padding-top: 70px; }
  .prices { padding-top: 70px; }
  .price-grid { grid-template-columns: 1fr; }
  .price-col { border-left: none; border-top: 1px solid var( --line ); }
  .price-col:first-child { border-top: none; }
  .price-panel__head, .price-panel__foot { padding: 22px; }
  .foot-grid { grid-template-columns: 1fr; }
  .page-hero { padding: 120px 0 50px; }
  .legal { padding: 50px 0 70px; }
}
