:root {
  --navy: #153b59;
  --red: #df372c;
  --steel: #c1c6c8;
  --page: 1120px;
}

* { box-sizing: border-box; }

body {
  min-height: 100vh;
  margin: 0;
  display: flex;
  flex-direction: column;
  color: var(--navy);
  font: 16px/1.42 Arial, sans-serif;
}

main { flex: 1; }

.container {
  width: min(calc(100% - 40px), var(--page));
  margin: auto;
}

.skip-link { position: absolute; left: -9999px; }

.skip-link:focus {
  position: fixed;
  left: 12px;
  top: 12px;
  z-index: 9;
  background: #fff;
  padding: 10px;
}

.site-header { border-bottom: 1px solid var(--navy); }

.header-inner {
  min-height: 106px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
}

.brand img {
  display: block;
  width: min(298px, 43vw);
  height: auto;
}

.header-actions,
.phone-link {
  display: flex;
  align-items: center;
}

.header-actions { gap: 32px; }

.phone-link {
  gap: 9px;
  color: currentColor;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
}

.phone-link svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.site-header .phone-link { color: var(--navy); }
.site-header .phone-link svg { fill: var(--red); }
.site-header .phone-link span { color: var(--navy); }

.button {
  min-height: 48px;
  padding: 13px 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: var(--red);
  color: #fff;
  font: 700 15px Arial, sans-serif;
  text-decoration: none;
  cursor: pointer;
}

.button:hover,
.button:focus-visible {
  background: var(--steel);
  color: var(--navy);
}

a:focus-visible,
input:focus-visible,
textarea:focus-visible,
button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 3px;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero,
.value-section,
.enquiry {
  background: var(--navy);
  color: #fff;
}

.hero-copy { padding: 57px 50px 21px; }

.eyebrow {
  margin: 0 0 11px;
  font-size: 11px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 24px;
  height: 3px;
  margin-bottom: 10px;
  display: block;
  background: var(--red);
  content: "";
}

h1,
h2 {
  margin: 0;
  line-height: 1.02;
  letter-spacing: -1.5px;
}

h1 { font-size: 43px; }

.lead {
  max-width: 380px;
  margin: 18px 0 20px;
  font-size: 18px;
}

.proof-line { margin: 18px 0 0; }
.proof-line span { padding: 0 7px; }

.section { padding: 33px 0 28px; }
.capabilities h2 { font-size: 30px; }

.intro {
  max-width: 900px;
  margin: 19px 0 25px;
}

.capability-list {
  max-width: 840px;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 80px;
  list-style: none;
}

.capability-list li {
  display: flex;
  align-items: center;
  gap: 12px;
}

.capability-list li::before {
  width: 26px;
  height: 2px;
  flex: 0 0 26px;
  background: var(--red);
  content: "";
}

.feature-image {
  position: relative;
  min-height: 302px;
  margin: 0;
  overflow: hidden;
  background: var(--navy);
}

.feature-image::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgb(21 59 89 / 78%) 0%, rgb(21 59 89 / 42%) 16%, rgb(21 59 89 / 8%) 42%, rgb(21 59 89 / 0%) 58%, rgb(21 59 89 / 18%) 78%, rgb(21 59 89 / 62%) 100%);
  content: "";
}

.feature-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.hero-image img {
  transform: scale(1.24);
  transform-origin: 53% 34%;
}

.proof-image { min-height: 228px; }

.proof-image::after {
  background: linear-gradient(90deg, rgb(21 59 89 / 78%) 0%, rgb(21 59 89 / 30%) 25%, rgb(21 59 89 / 0%) 62%, rgb(21 59 89 / 50%) 100%);
}

.proof-image img { object-position: center top; }

.value-copy { padding: 31px 38px; }
.value-copy h2 { font-size: 32px; }
.value-copy p:last-child { max-width: 330px; }

.enquiry { padding: 35px 0; }

.enquiry-heading {
  margin-bottom: 24px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 50px;
}

.enquiry h2 { font-size: 28px; }
.enquiry-heading p { margin: 5px 0; }

.callout {
  border-left: 2px solid var(--red);
  padding-left: 38px;
}

.callout p { padding-left: 34px; }
.enquiry .phone-link { color: var(--red); }
.enquiry .phone-link svg { fill: var(--red); }
.enquiry .phone-link span:last-child { color: #fff; }

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 24px;
}

.full-width { grid-column: 1 / -1; }

label,
legend {
  display: block;
  font-size: 13px;
}

input,
textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid var(--steel);
  color: var(--navy);
  font: 16px Arial, sans-serif;
}

textarea { resize: vertical; }

.contact-method {
  margin: 14px 0;
  padding: 0;
  display: flex;
  gap: 18px;
  border: 0;
  font-size: 16px;
  font-weight: 700;
}

.contact-method label {
  display: flex;
  gap: 7px;
  font-size: inherit;
  font-weight: inherit;
}

.contact-method legend {
  font-size: inherit;
  font-weight: inherit;
}

.contact-method input[type="radio"] {
  width: 18px;
  height: 18px;
  margin: 0;
  padding: 0;
  border: 0;
  appearance: auto;
  -webkit-appearance: radio;
  accent-color: var(--red);
  vertical-align: middle;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
}

.form-footer p {
  margin: 0;
  color: rgb(255 255 255 / 65%);
  font-size: 12px;
}

.honeypot {
  position: absolute;
  left: -9999px;
}

.form-status {
  padding: 12px;
  background: var(--red);
  color: #fff;
  font-weight: 700;
}

.site-footer {
  margin-top: auto;
  padding: 24px 0 16px;
  border-top: 26px solid var(--navy);
}

.verification-footer {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 36px;
}

.verification-footer > .footer-contact,
.verification-footer > .footer-proof {
  border-left: 1px solid var(--steel);
  padding-left: 30px;
}

.verification-footer p {
  margin: 6px 0 0;
  font-size: 13px;
}

.footer-brand img {
  width: 230px;
  max-width: 100%;
  height: auto;
}

.footer-contact {
  font-size: 15px;
  line-height: 1.42;
}

.footer-contact address { font-style: normal; }
.footer-contact .established { font-size: 13px; font-weight: 700; }

.footer-contact a {
  color: var(--navy);
  text-decoration: none;
}

.footer-contact > a { margin-top: 4px; font-weight: 700; }

.directions-link,
.footer-contact > a.directions-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.directions-link svg {
  width: 21px;
  height: 21px;
  fill: var(--red);
}

.footer-proof {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-proof > a {
  color: var(--navy);
  font-size: 13px;
}

.qas-proof {
  display: flex;
  align-items: center;
  gap: 9px;
}

.qas-proof .qas-mark {
  width: 76px;
  height: auto;
}

.qas-proof span {
  color: var(--navy);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.linkedin-text {
  color: var(--navy);
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

.linkedin-icon {
  width: 35px;
  height: 35px;
  margin-right: 11px;
  display: inline-grid;
  place-items: center;
  vertical-align: baseline;
  border-radius: 2px;
  background: #3d3d3d;
  color: #fff;
  font: 700 25px/1 Arial, sans-serif;
}

.footer-legal {
  grid-column: 1 / -1;
  margin-top: 18px;
  padding-top: 13px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid var(--steel);
  font-size: 12px;
}

.footer-legal a { color: var(--navy); }

.privacy-link,
.privacy-return a {
  color: var(--red);
  text-decoration: none;
}

.privacy-link:visited,
.privacy-return a:visited { color: var(--red); }

.privacy-link:hover,
.privacy-link:focus-visible,
.privacy-return a:hover,
.privacy-return a:focus-visible { text-decoration: underline; }

.privacy-phone { white-space: nowrap; }

.privacy-meta {
  margin-top: 26px;
  font-size: 14px;
  opacity: .72;
}

@media (max-width: 1199px) and (min-width: 701px) {
  .verification-footer {
    grid-template-columns: 1.15fr .9fr 1fr;
    gap: 22px;
  }

  .footer-brand img { width: 190px; }
  .qas-proof span { font-size: 11px; }
}

@media (max-width: 700px) {
  .container { width: min(calc(100% - 32px), var(--page)); }

  .header-inner { min-height: 78px; }

  .brand img {
    width: 205px;
    max-width: 70vw;
  }

  .header-enquiry { display: none; }

  .header-actions .phone-link {
    width: 42px;
    height: 44px;
    justify-content: center;
  }

  .header-actions .phone-link span {
    position: absolute;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
  }

  .header-actions .phone-link svg {
    width: 29px;
    height: 29px;
  }

  .split,
  .enquiry-heading,
  .capability-list,
  .form-grid { grid-template-columns: 1fr; }

  .hero-copy { padding: 42px 0 27px; }
  h1 { font-size: 37px; }

  .feature-image { min-height: 250px; }
  .feature-image::after { display: none; }

  .hero-image { min-height: 250px; }

  .hero-image img {
    transform: scale(1.14);
    transform-origin: 53% 34%;
  }

  .value-grid {
    display: flex;
    flex-direction: column;
  }

  .proof-image {
    min-height: 240px;
    order: 2;
  }

  .value-copy {
    order: 1;
    padding: 34px 0 30px;
  }

  .callout {
    position: relative;
    padding: 18px 0 0;
    border: 0;
  }

  .callout::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 2px;
    background: var(--red);
    content: "";
  }

  .callout p { padding-left: 0; }
  .full-width { grid-column: auto; }

  .contact-method { flex-wrap: wrap; }
  .contact-method legend { width: 100%; }

  .form-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .site-footer {
    padding-top: 18px;
    border-top-width: 22px;
  }

  .site-footer .verification-footer { width: calc(100% - 64px); }

  .verification-footer {
    grid-template-columns: minmax(0, 1fr);
    gap: 16px;
  }

  .footer-brand,
  .footer-contact,
  .footer-proof,
  .footer-legal { width: 100%; }

  .footer-brand img { width: 205px; }

  .footer-contact {
    display: grid;
    gap: 4px;
    font-size: 16px;
  }

  .footer-contact address { line-height: 1.45; }

  .verification-footer > .footer-contact,
  .verification-footer > .footer-proof {
    position: relative;
    padding: 24px 0 0;
    border: 0;
  }

  .verification-footer > .footer-contact::before,
  .verification-footer > .footer-proof::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 28px;
    height: 1px;
    background: var(--steel);
    content: "";
  }

  .footer-proof { gap: 12px; }
  .qas-proof .qas-mark { width: 70px; }
  .qas-proof span { font-size: 14px; }

  .footer-legal {
    grid-column: auto;
    margin-top: 2px;
    padding-top: 14px;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 8px;
    border-top: 1px solid var(--steel);
    font-size: 10px;
  }

  .footer-legal a,
  .footer-legal span { white-space: nowrap; }
}

