@font-face {
  font-family: "GothamBold";
  src: url("../fonts/GothamBold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GothamBook";
  src: url("../fonts/GothamBook.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #ffffff;
  --surface: #ffffff;
  --ink: #0a4160;
  --accent: #438eb3;
  --navy: #084160;
  --steel: #4894b8;
  --muted: #414042;
  --line: #317aa1;
  --font-display: "GothamBold", "GothamBook", Arial, Helvetica, sans-serif;
  --font-body: "GothamBook", "GothamBold", Arial, Helvetica, sans-serif;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 32px;
  --space-xl: 60px;
  --radius-sm: 3px;
  --radius-md: 15px;
  --wrap: 1240px;
  --shadow: 5px 5px 10px rgba(10, 65, 96, 0.35);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

:where(html, body, h1, h2, h3, h4, p, ul, ol, figure, fieldset, legend, button) {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  height: 100%;
}

body {
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.36;
}

.vss-page {
  flex: 1 0 auto;
  width: 100%;
  min-height: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.admin-bar .vss-page {
  min-height: calc(100dvh - 32px);
}

@media screen and (max-width: 782px) {
  .admin-bar .vss-page {
    min-height: calc(100dvh - 46px);
  }
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

.vss-wrap {
  width: min(var(--wrap), calc(100% - 40px));
  margin-inline: auto;
}

.vss-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  isolation: isolate;
  pointer-events: auto;
}

.vss-main,
.vss-slider {
  position: relative;
  z-index: 0;
}

.vss-main {
  flex: 1 1 auto;
}

.vss-footer {
  margin-top: auto;
  flex-shrink: 0;
}

.vss-topbar {
  background: var(--navy);
  color: #fff;
  min-height: 80px;
}

.vss-topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 80px;
}

.vss-topbar__brand,
.vss-topbar__link {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.vss-topbar__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  flex-wrap: wrap;
}

.vss-soc img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.vss-masthead {
  background: var(--surface);
  border-bottom: 10px solid var(--accent);
  box-shadow: var(--shadow);
}

.vss-masthead__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  min-height: 132px;
}

.vss-logo img {
  width: 180px;
  height: auto;
}

.vss-logo__sticky {
  display: none;
}

.vss-header.is-stuck .vss-topbar {
  display: none;
}

.vss-header.is-stuck .vss-masthead__inner {
  min-height: 60px;
}

.vss-header.is-stuck .vss-logo__full {
  display: none;
}

.vss-header.is-stuck .vss-logo__sticky {
  display: block;
  width: 84px;
}

.vss-nav {
  display: flex;
  gap: 28px;
  list-style: none;
}

.vss-menu {
  position: relative;
  z-index: 2;
  pointer-events: auto;
}

.vss-nav a {
  position: relative;
  z-index: 2;
  display: inline-block;
  padding: 10px 0;
  color: var(--accent);
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  pointer-events: auto;
}

.vss-nav a:hover,
.vss-nav .is-active a {
  color: var(--ink);
}

.vss-burger {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.vss-burger span {
  display: block;
  height: 3px;
  margin: 6px 0;
  background: var(--navy);
}

.vss-slider {
  position: relative;
  height: min(750px, 72vh);
  overflow: hidden;
  background: #2b2b2b;
}

.vss-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.vss-slide.is-active {
  opacity: 1;
  z-index: 1;
}

.vss-caption {
  position: absolute;
  right: 8%;
  top: 54%;
  transform: translateY(-50%);
  width: min(471px, 78vw);
  min-height: 265px;
  display: grid;
  place-items: center;
  text-align: center;
  background: #fff;
  box-shadow: 18px 22px 0 rgba(10, 65, 96, 0.72);
  padding: 28px 24px;
}

.vss-caption h2 {
  font-family: var(--font-display);
  color: var(--ink);
  font-size: clamp(17px, 3.4vw, 45px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -1px;
  text-transform: uppercase;
}

.vss-slider__btn {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: rgba(10, 65, 96, 0.5);
  color: #fff;
  cursor: pointer;
  transform: translateY(-50%);
}

.vss-slider__btn::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  margin: 0 auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.vss-slider__btn--prev {
  left: 30px;
}

.vss-slider__btn--prev::before {
  transform: rotate(-135deg);
  margin-left: 14px;
}

.vss-slider__btn--next {
  right: 30px;
}

.vss-slider__btn--next::before {
  transform: rotate(45deg);
  margin-right: 14px;
}

.vss-slider__btn:hover {
  background: var(--navy);
}

.vss-section {
  padding: 100px 0 80px;
}

.vss-section--tight {
  padding-top: 0;
}

.vss-intro__grid,
.vss-split {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 48px;
  align-items: center;
}

.vss-intro__mark {
  display: grid;
  place-items: center;
}

.vss-intro__mark img {
  width: min(236px, 100%);
}

.vss-intro__copy h1,
.vss-intro__copy h2,
.vss-service h2 {
  color: var(--accent);
  font-family: var(--font-display);
  font-size: 40px;
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 18px;
}

.vss-lead,
.vss-service p,
.vss-intro__copy p {
  color: var(--ink);
  margin-bottom: 16px;
}

.vss-lead,
.vss-service p {
  color: var(--accent);
}

.vss-banner {
  min-height: 420px;
  display: grid;
  align-items: center;
  background-size: cover;
  background-position: center;
  padding: 150px 0;
}

.vss-banner h2 {
  max-width: 920px;
  color: var(--muted);
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.15;
  text-transform: none;
}

.vss-service {
  padding-bottom: 220px;
}

.vss-service__copy {
  text-align: center;
  max-width: 980px;
}

.vss-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
  padding: 10px 18px 10px 50px;
  border: 2px solid var(--accent);
  border-radius: var(--radius-md);
  color: var(--accent);
  font-size: 20px;
  font-weight: 600;
  background: url("../img/button-icon1.png") 15px center / 26px 30px no-repeat;
}

.vss-btn:hover {
  border-color: var(--ink);
  color: var(--ink);
}

.vss-band {
  position: relative;
  background: var(--steel);
  padding: 0 0 24px;
}

.vss-band::before,
.vss-band::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  width: 35%;
  height: 5px;
  margin: 0 auto;
}

.vss-band::before {
  bottom: 10px;
  background: #fff;
}

.vss-band::after {
  bottom: -15px;
  background: var(--steel);
}

.vss-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  transform: translateY(-200px);
}

.vss-tile {
  position: relative;
  display: block;
  color: #fff;
}

.vss-tile img {
  width: 100%;
  aspect-ratio: 370 / 450;
  object-fit: cover;
}

.vss-tile span {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 92%;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  background: var(--navy);
  color: #fff;
  font-family: var(--font-display);
  font-size: 22px;
  letter-spacing: 0.04em;
  box-shadow: 0 0 2px rgba(10, 65, 96, 0.7);
}

.vss-tile:hover span {
  background: #fff;
  color: var(--navy);
}

.vss-page-title {
  padding: 48px 0 28px;
}

.vss-page-title h1 {
  font-family: var(--font-display);
  font-size: 42px;
  line-height: 1.15;
  color: var(--muted);
  text-transform: uppercase;
}

.vss-crumbs {
  margin-top: 8px;
  color: var(--accent);
  font-size: 16px;
}

.vss-crumbs span {
  margin: 0 8px;
}

.vss-prose p + p {
  margin-top: 16px;
}

.vss-prose ul {
  list-style: none;
  margin-top: 20px;
}

.vss-prose li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 15px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.3;
}

.vss-prose li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 18px;
  height: 24px;
  background: url("../img/button-icon1.png") center / contain no-repeat;
}

.vss-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

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

.vss-grid__item {
  border: 5px solid var(--accent);
  overflow: hidden;
  background: var(--surface);
}

.vss-grid__item img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.vss-feature-photo img {
  width: 100%;
  max-width: 500px;
  margin-left: auto;
}

.vss-subhead {
  color: var(--accent);
  font-size: 24px;
  line-height: 1.4;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0 0 18px;
}

.vss-facts {
  list-style: none;
  margin-bottom: 28px;
}

.vss-facts li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 16px;
  font-size: 20px;
}

.vss-facts__icon {
  color: var(--ink);
  flex: 0 0 22px;
  margin-top: 2px;
}

.vss-facts a[href^="tel:"] {
  white-space: nowrap;
}

.vss-required,
.vss-form-note {
  font-size: 16px;
  margin-bottom: 16px;
}

.vss-form-note--error {
  color: #8a1f1f;
}

.vss-form fieldset {
  border: 0;
}

.vss-form legend,
.vss-form label {
  display: block;
  color: var(--ink);
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

.vss-form legend span,
.vss-form label span:not(.vss-sr) {
  color: var(--accent);
}

.vss-form input,
.vss-form textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.vss-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.vss-form .vss-turnstile,
.vss-form .cf-turnstile {
  margin: 16px 0 12px;
}

.vss-form button {
  margin-top: 8px;
  padding: 10px 22px;
  border: 0;
  background: var(--accent);
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  cursor: pointer;
}

.vss-form button:hover {
  background: var(--navy);
}

.vss-hp {
  position: absolute;
  left: -9999px;
}

.vss-sr {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.vss-footer__widgets {
  background: var(--navy);
  border-bottom: 10px solid var(--accent);
  box-shadow: var(--shadow);
  color: #fff;
  padding: 36px 0 28px;
}

.vss-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1.8fr 1fr;
  align-items: center;
  gap: 20px;
}

.vss-footer__icon {
  display: flex;
  justify-content: flex-end;
}

.vss-footer__icon img {
  width: 80px;
}

.vss-footer__mid {
  text-align: center;
  position: relative;
}

.vss-footer__mid::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 3px;
  height: 130px;
  background: var(--line);
}

.vss-footer__mid h2 {
  color: #fff;
  font-size: 24px;
  line-height: 1.15;
  margin-bottom: 10px;
}

.vss-footer__mid a,
.vss-footer__info {
  color: #fff;
  font-family: var(--font-display);
  font-size: 18px;
}

.vss-footer__mid span {
  margin: 0 8px;
}

.vss-copyright {
  background: #fff;
}

.vss-copyright__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 46px;
}

.vss-copyright a,
.vss-copyright__copy {
  color: var(--ink);
  font-size: 16px;
  text-transform: none;
}

.vss-copyright__soc {
  display: flex;
  gap: 20px;
}

.vss-copyright__soc img {
  width: 24px;
  height: 24px;
}

@media (max-width: 1024px) {
  body {
    font-size: 18px;
  }

  .vss-intro__copy h1,
  .vss-intro__copy h2,
  .vss-service h2,
  .vss-page-title h1 {
    font-size: 28px;
  }

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

  .vss-section {
    padding: 48px 0 36px;
  }

  .vss-service {
    padding-bottom: 80px;
  }

  .vss-tiles {
    transform: none;
    padding: 28px 0 12px;
  }
}

@media (max-width: 800px) {
  .vss-topbar__inner,
  .vss-copyright__inner,
  .vss-footer__grid,
  .vss-intro__grid,
  .vss-split,
  .vss-form__row,
  .vss-tiles {
    grid-template-columns: 1fr;
    display: grid;
  }

  .vss-topbar {
    min-height: 0;
    padding: 12px 0;
  }

  .vss-topbar__inner {
    display: flex;
    justify-content: center;
    gap: 0;
    min-height: 0;
  }

  .vss-topbar__brand,
  .vss-topbar .vss-soc,
  .vss-topbar__link:not(.vss-topbar__call) {
    display: none;
  }

  .vss-topbar__call {
    font-size: clamp(18px, 5.6vw, 22px);
    letter-spacing: 0.02em;
    line-height: 1.1;
    white-space: nowrap;
  }

  .vss-header.is-stuck .vss-topbar {
    display: block;
  }

  .vss-burger {
    display: block;
  }

  .vss-menu {
    display: none;
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    background: #fff;
    border-bottom: 4px solid var(--accent);
    box-shadow: var(--shadow);
  }

  .vss-menu.is-open {
    display: block;
    z-index: 10000;
    pointer-events: auto;
  }

  .vss-nav {
    flex-direction: column;
    padding: 16px 20px 24px;
    gap: 12px;
  }

  .vss-masthead__inner {
    min-height: 84px;
    position: relative;
  }

  .vss-caption {
    right: 6%;
    left: 6%;
    width: auto;
    min-height: 0;
    box-shadow: 10px 12px 0 rgba(10, 65, 96, 0.72);
  }

  .vss-slider__btn {
    display: none;
  }

  .vss-banner {
    padding: 80px 0;
    min-height: 280px;
  }

  .vss-intro__copy,
  .vss-service__copy,
  .vss-foot-info,
  .vss-footer__info,
  .vss-footer__mid {
    text-align: center;
  }

  .vss-footer__mid::after,
  .vss-footer__icon {
    display: none;
  }

  .vss-copyright__inner {
    padding: 16px 0;
    text-align: center;
    justify-items: center;
  }

  .vss-feature-photo img {
    margin: 0 auto;
  }
}

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

  .vss-slide {
    transition: none;
  }
}

body.login {
  display: flex;
  flex-direction: column;
  min-height: 100dvh;
  background: #fff;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  padding: 0;
}

body.login #login {
  flex: 1 1 auto;
  width: min(420px, calc(100% - 40px));
  padding: 48px 0 56px;
  margin: 0 auto;
}

body.login #login h1,
body.login .wp-login-logo {
  display: none;
}

body.login form,
body.login #loginform,
body.login #lostpasswordform,
body.login #resetpassform {
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  box-shadow: none;
  background: #fff;
  padding: 28px 24px 22px;
  margin-top: 0;
}

body.login label,
body.login .message,
body.login #login_error,
body.login .success {
  color: var(--ink);
  font-size: 16px;
}

body.login .message,
body.login #login_error,
body.login .success {
  border-left-color: var(--accent);
  box-shadow: none;
}

body.login input[type="text"],
body.login input[type="password"],
body.login input[type="email"],
body.login input[type="tel"] {
  border: 1px solid var(--accent);
  border-radius: var(--radius-sm);
  font-size: 16px;
  padding: 10px 12px;
  color: var(--ink);
  background: #fff;
}

body.login .wp-core-ui .button-primary,
body.login .wp-core-ui .button.button-large {
  background: var(--accent);
  border: 0;
  border-radius: var(--radius-sm);
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  text-shadow: none;
  box-shadow: none;
  min-height: 40px;
  padding: 8px 18px;
}

body.login .wp-core-ui .button-primary:hover,
body.login .wp-core-ui .button-primary:focus {
  background: var(--navy);
  color: #fff;
  box-shadow: none;
}

body.login #nav,
body.login #backtoblog,
body.login .privacy-policy-page-link,
body.login .language-switcher {
  font-size: 15px;
  text-align: center;
}

body.login #nav a,
body.login #backtoblog a,
body.login .privacy-policy-page-link a {
  color: var(--accent);
}

body.login #nav a:hover,
body.login #backtoblog a:hover,
body.login .privacy-policy-page-link a:hover {
  color: var(--navy);
}

body.login .vss-header,
body.login .vss-footer {
  width: 100%;
}

body.login .vss-footer {
  margin-top: auto;
}

body.login #login .button.wp-hide-pw {
  color: var(--ink);
}
