/** Shopify CDN: Minification failed

Line 309:0 Unexpected "<"

**/
/* ──────────────────────────────────────────────────────────────────────
   Highlight banner — full-bleed editorial banner with overlay gradient,
   used for partnerships and feature ranges.

   Per-section dynamic values (padding, min-height, background, text
   colour, gradient stops, logo width) are driven by CSS custom
   properties set inline on the section wrapper. Static layout rules
   live here so we get a single cached external stylesheet instead of
   ~150 lines of inline <style> per banner instance.
   ────────────────────────────────────────────────────────────────── */

.highlight-banner-wrap {
  padding-top: var(--hb-pt, 0);
  padding-bottom: var(--hb-pb, 80px);
}

.highlight-banner {
  position: relative;
  display: flex;
  align-items: center;
  min-height: var(--hb-min-h, 620px);
  margin: 0 var(--fluid-offset, 24px);
  background: var(--hb-bg, #1c1c1c);
  color: var(--hb-txt, #f5f4f2);
  border-radius: var(--media-radius, 2px);
  overflow: hidden;
}
@media screen and (min-width: 750px) {
  .highlight-banner {
    margin: 0 auto;
    max-width: calc(var(--container-max-width, 1600px) - var(--fluid-offset, 24px) * 2);
  }
}

.highlight-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.highlight-banner__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hb-img-pos, center center);
  display: block;
}

.highlight-banner__gradient {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, var(--hb-overlay-left, 0.4)) 0%,
      rgba(0, 0, 0, var(--hb-overlay-mid, 0.25)) 25%,
      rgba(0, 0, 0, calc(var(--hb-overlay, 0.1) * 0.6)) 50%,
      rgba(0, 0, 0, 0) 75%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0) 60%,
      rgba(0, 0, 0, calc(var(--hb-overlay, 0.1) * 0.5)) 100%
    );
  background-color: rgba(0, 0, 0, var(--hb-overlay, 0.1));
}

.highlight-banner__content {
  position: relative;
  z-index: 2;
  max-width: 640px;
  padding: 72px;
  padding-left: max(72px, calc((100% - var(--container-max-width, 1600px) + var(--fluid-offset, 24px) * 2) / 2 + var(--fluid-offset, 24px)));
}

.highlight-banner__eyebrow {
  font-size: var(--text-size-small);
  font-family: var(--font-body-family);
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 0 0 1.6rem;
  margin-left: -1.2em;
  line-height: 1;
  color: var(--hb-txt, #f5f4f2);
  display: inline-block;
  padding: 0.5em 1.2em;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.highlight-banner__logo {
  margin: 0 0 1.6rem;
}

.highlight-banner__logo img {
  width: var(--hb-logo-w, 200px);
  height: auto;
  display: block;
}

.highlight-banner__heading {
  font-size: var(--text-size-h1);
  font-family: var(--font-heading-family);
  font-weight: 300;
  line-height: 1.2;
  margin: 0 0 32px;
  color: var(--hb-txt, #f5f4f2);
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.5), 0 4px 60px rgba(0, 0, 0, 0.2);
}

.highlight-banner__body {
  font-size: var(--text-size-base);
  font-family: var(--font-body-family);
  font-weight: 300;
  line-height: 1.7;
  opacity: 0.75;
  margin: 0 0 36px;
  max-width: 42ch;
  color: var(--hb-txt, #f5f4f2);
  text-shadow: 0 1px 16px rgba(0, 0, 0, 0.3);
}

.highlight-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--height-btn, 40px);
  padding: 8px 28px;
  font-family: var(--font-heading-family);
  font-size: calc(var(--buttons_scale) * var(--size-body));
  font-weight: 400;
  letter-spacing: 0;
  text-decoration: none;
  border: 1px solid var(--hb-txt, #f5f4f2);
  border-radius: var(--btn-border-radius);
  color: var(--hb-txt, #f5f4f2);
  background: transparent;
  transition: background var(--duration-default) ease, color var(--duration-default) ease;
}

.highlight-banner__cta:hover {
  background: var(--hb-txt, #f5f4f2);
  color: var(--hb-bg, #1c1c1c);
}

@media screen and (max-width: 749px) {
  .highlight-banner {
    min-height: 480px;
    align-items: flex-end;
  }

  .highlight-banner__gradient {
    background:
      linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, calc(var(--hb-overlay, 0.1) * 0.3)) 30%,
        rgba(0, 0, 0, var(--hb-overlay-mid, 0.25)) 55%,
        rgba(0, 0, 0, var(--hb-overlay-left, 0.4)) 100%
      );
    background-color: rgba(0, 0, 0, var(--hb-overlay, 0.1));
  }

  .highlight-banner__content {
    max-width: none;
    padding: 28px 24px;
  }

  .highlight-banner__heading {
    font-size: var(--text-size-h3);
    margin: 0 0 20px;
    text-wrap: balance;
  }

  .highlight-banner__body {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .highlight-banner__logo img {
    width: calc(var(--hb-logo-w, 200px) * 0.75);
  }
}

/* Contact + about pages — two consecutive highlight-banners (Leighton
   Buzzard + Phoenix) float side-by-side on desktop. Stacks normally on
   mobile. Uses attribute-selectors with id-ends-with so it matches
   whether Shopify writes the id as shopify-section-<key> or
   shopify-section-template--<id>__<key>. Scoped strictly to the two
   page templates so other pages with stacked highlight banners are
   unaffected. */
@media screen and (min-width: 990px) {
  body.template-page-contact [id$="contact_lb"].shopify-section,
  body.template-page-contact [id$="contact_phoenix"].shopify-section,
  body.template-page-about [id$="about_lb"].shopify-section,
  body.template-page-about [id$="about_phoenix"].shopify-section {
    float: left;
    width: 50%;
    box-sizing: border-box;
  }
  body.template-page-contact [id$="contact_lb"].shopify-section .highlight-banner,
  body.template-page-contact [id$="contact_phoenix"].shopify-section .highlight-banner,
  body.template-page-about [id$="about_lb"].shopify-section .highlight-banner,
  body.template-page-about [id$="about_phoenix"].shopify-section .highlight-banner {
    max-width: none;
    margin-left: var(--fluid-offset, 24px);
    margin-right: var(--fluid-offset, 24px);
  }
  body.template-page-contact [id$="contact_lb"].shopify-section .highlight-banner,
  body.template-page-about [id$="about_lb"].shopify-section .highlight-banner {
    margin-right: 12px;
  }
  body.template-page-contact [id$="contact_phoenix"].shopify-section .highlight-banner,
  body.template-page-about [id$="about_phoenix"].shopify-section .highlight-banner {
    margin-left: 12px;
  }
  body.template-page-contact #MainContent::after,
  body.template-page-about #MainContent::after {
    content: "";
    display: block;
    clear: both;
  }
}

/* Contact + about pages — mobile read-more clamp on the LB + Phoenix
   banner bodies. The base theme hides .highlight-banner__body on mobile
   via sr-only positioning (above this block). For these two templates
   we un-hide it first, then apply the clamp + read-more pattern. JS in
   the matching templates/page.<name>.json (via custom-liquid) toggles
   .highlight-banner__body--clamped + injects .highlight-banner__readmore.
   Desktop never clamps and never shows the button. */
@media screen and (max-width: 749px) {
  body.template-page-contact .highlight-banner__body,
  body.template-page-about .highlight-banner__body {
    position: static;
    width: auto;
    height: auto;
    padding: 0;
    margin: 0 0 24px;
    overflow: visible;
    clip: auto;
    white-space: normal;
    border: 0;
    display: block;
    font-size: var(--text-size-base);
    font-weight: 300;
    line-height: 1.6;
    opacity: 0.85;
    color: var(--hb-txt, #f5f4f2);
    text-shadow: 0 1px 16px rgba(0, 0, 0, 0.4);
  }
  body.template-page-contact .highlight-banner__body--clamped,
  body.template-page-about .highlight-banner__body--clamped {
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  body.template-page-contact .highlight-banner__readmore,
  body.template-page-about .highlight-banner__readmore {
    display: block !important;
    width: fit-content !important;
    clear: both !important;
    float: none !important;
    margin: -8px 0 24px !important;
    padding: 0 !important;
    background: none !important;
    border: 0 !important;
    color: var(--hb-txt, #f5f4f2) !important;
    font: inherit !important;
    font-size: var(--text-size-small) !important;
    text-decoration: underline !important;
    text-underline-offset: 3px !important;
    cursor: pointer !important;
  }
  body.template-page-contact .highlight-banner__readmore + .highlight-banner__cta,
  body.template-page-about .highlight-banner__readmore + .highlight-banner__cta {
    display: inline-flex !important;
    margin-top: 0 !important;
  }
}
@media screen and (min-width: 750px) {
  body.template-page-contact .highlight-banner__readmore,
  body.template-page-about .highlight-banner__readmore {
    display: none !important;
  }
  body.template-page-contact .highlight-banner__body--clamped,
  body.template-page-about .highlight-banner__body--clamped {
    display: block;
    -webkit-line-clamp: unset;
    overflow: visible;
  }
}
</content>
