@charset "UTF-8";
/*********************************************
====================================
 Style (SCSS)
------------------------------------
 Purpose: central entry point that compiles all partials into the final stylesheet.

 Table of Contents
  1) Variables
  2) Mixins
  3) Typography
  4) Components
  5) Animations
  6) Utilities
====================================
*********************************************/
/*********************************************
====================================
 Variables (SCSS)
------------------------------------
 Purpose: global CSS/SCSS variables for typography, palettes, and breakpoints.

 Table of Contents
  1) Typography Base & Scale
  2) Line Heights & Letter Spacing
  3) Global Palettes
  4) Breakpoints (SCSS variables)
====================================
*********************************************/
/* ====================================
   1) Typography Base & Scale
   ------------------------------------ */
:root {
  --base-font-size: 1rem;
  --scale-ratio: 1.414;
  /* ====================================
     2) Line Heights & Letter Spacing
     ------------------------------------ */
  --lh-title: 110%;
  --ls-title: -2%;
  --lh-heading: 115%;
  --ls-heading: -1%;
  --lh-h6: 125%;
  --lh-body: 150%;
  --ls-body: 0.25%;
  --lh-link: 135%;
  --ls-link: -0.25%;
  --lh-caption: 150%;
  --ls-caption: 0.5%;
  --lh-button: 120%;
  --ls-button: 0.5%;
  /* ====================================
     3) Global Palettes
     ------------------------------------ */
  --global-palette6: #6C6C6D;
  --global-palette6-rgb: 108, 108, 109;
}

/* ====================================
   4) Breakpoints (SCSS variables)
   ------------------------------------ */
/*********************************************
====================================
 Mixins (SCSS)
------------------------------------
 Purpose: reusable SCSS utilities for typography, breakpoints, and buttons.

 Table of Contents
  1) Typography
  2) Breakpoints
  3) Buttons
====================================
*********************************************/
/* ====================================
   1) Typography
   ------------------------------------ */
/* ====================================
   2) Breakpoints
   ------------------------------------ */
/* ====================================
   3) Buttons
   ------------------------------------ */
/*********************************************
====================================
 Typography (SCSS)
------------------------------------
 Purpose: Typography styles including titles, headings, body text, links, buttons, and emphasis.

 Table of Contents
  1) Titles & Headings
  2) Body Text
  3) Links & Buttons
  3.1) Contextual Link Sizing
  3.2) Footer Meta (single-instance divider)
  4) Emphasis Styles
====================================
*********************************************/
/* ====================================
   1) Titles & Headings
   ------------------------------------ */
.Title {
  font-size: clamp(2.5rem, 4vw + var(--base-font-size), 5.5rem);
  line-height: var(--lh-title);
  letter-spacing: var(--ls-title);
  -webkit-transform: translateX(-0.35rem);
          transform: translateX(-0.35rem);
}

h1, .h1 {
  font-size: clamp(2rem, 3.5vw + var(--base-font-size), 4.5rem);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  -webkit-transform: translateX(-0.25rem);
          transform: translateX(-0.25rem);
}

h2, .h2 {
  font-size: clamp(1.75rem, 3vw + var(--base-font-size), 3.5rem);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
}

h3, .h3 {
  font-size: clamp(1.5rem, 2.5vw + var(--base-font-size), 3rem);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
  -webkit-transform: translateX(-0.15rem);
          transform: translateX(-0.15rem);
}

h4, .h4 {
  font-size: clamp(1.25rem, 2vw + var(--base-font-size), 2.5rem);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
}

h5, .h5 {
  font-size: clamp(1rem, 1.5vw + var(--base-font-size), 1.5rem);
  line-height: var(--lh-heading);
  letter-spacing: var(--ls-heading);
}

h6, .h6 {
  font-size: clamp(0.875rem, 1vw + var(--base-font-size), 1.25rem);
  line-height: var(--lh-h6);
  letter-spacing: var(--ls-heading);
}

.overline {
  font-size: clamp(1.25rem, 0.7vw + var(--base-font-size), 1.5rem);
  line-height: var(--lh-h6);
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ====================================
   2) Body Text
   ------------------------------------ */
p, .body, .wp-block-paragraph {
  font-size: clamp(0.95rem, 0.4vw + var(--base-font-size), 1.1rem);
  line-height: var(--lh-body);
  letter-spacing: var(--ls-body);
}

.indent {
  font-size: clamp(1.25rem, 2vw + var(--base-font-size), 2.5rem);
  text-indent: 3em;
}

.caption, .wp-block-caption {
  font-size: clamp(0.75rem, 0.3vw + var(--base-font-size), 0.84rem);
  line-height: var(--lh-caption);
  letter-spacing: var(--ls-caption);
}

/* ====================================
   3) Links & Buttons
   ------------------------------------ */
a, .link, .wp-block-button__link, .kt-button {
  font-size: clamp(1rem, 0.6vw + var(--base-font-size), 1.25rem);
  line-height: var(--lh-link);
  letter-spacing: var(--ls-link);
  font-weight: 400;
}

button, input[type=submit], .wp-block-button__link {
  font-size: clamp(0.85rem, 0.3vw + var(--base-font-size), 0.9rem);
  line-height: var(--lh-button);
  letter-spacing: var(--ls-button);
  font-weight: 400;
  padding: 0.5rem 1rem;
  border-radius: 4px;
}

/* ====================================
   3.1) Contextual Link Sizing
   ------------------------------------ */
.link-inherit a {
  font-size: unset !important;
  font-size: inherit !important;
  color: inherit;
}

/* ---- Footer Link Groups ------------------------------------ */
.footer-column {
  float: right;
  margin-left: 3rem;
  text-align: left;
}

.footer-column a {
  font-size: clamp(0.85rem, 0.3vw + var(--base-font-size), 0.9rem);
  line-height: var(--lh-button);
  letter-spacing: var(--ls-button);
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
}

/* Left Footer Link Group (slightly larger at 1em) */
.footer-column-left {
  float: right;
  margin-left: 3rem;
  text-align: left;
}

.footer-column-left a {
  font-size: clamp(1rem, 0.6vw + var(--base-font-size), 1.25rem);
  line-height: var(--lh-link);
  letter-spacing: var(--ls-link);
  font-weight: 400;
  display: block;
  margin-bottom: 0.5rem;
}

/* Clearfix for floated columns */
.footer-links::after {
  content: "";
  display: table;
  clear: both;
}

/* Responsive: stack and left-align on smaller screens */
@media (max-width: 768px) {
  .footer-column {
    float: none;
    margin-left: 0;
    margin-bottom: 1.5rem;
  }
}
/* ====================================
   3.2) Footer Meta (single-instance divider)
   ------------------------------------ */
/*
  Usage: Add `footer-meta` to the single copyright/privacy line only, e.g.
  <div class="footer-links links-inherit footer-meta"> ... </div>
  This keeps the pipe on desktop and swaps to a comma on small screens,
  without affecting any other footer links or site-wide `.link-inherit` usage.
*/
footer .footer-meta {
  font-size: 0.875rem;
}

/* Desktop: show the literal separator span and do not insert anything */
footer .footer-meta .sep {
  display: inline;
}

footer .footer-meta a::before {
  content: "";
}

@media (max-width: 640px) {
  footer .footer-meta .sep {
    display: none; /* hide the pipe separator */
  }
  footer .footer-meta a {
    display: block; /* line break before link */
    margin-top: 0.125rem; /* subtle spacing between lines */
  }
}
/* ====================================
   4) Emphasis Styles
   ------------------------------------ */
.lora-custom {
  font-family: "Lora", serif;
  font-optical-sizing: auto;
  font-weight: 100;
  font-style: italic;
}

/* ---- Bold & Strong ------------------------------------ */
:root {
  /* Token so theme overrides are easy */
  --color-bold: var(--global-palette3);
}

strong,
b {
  color: var(--color-bold) !important;
  font-weight: inherit !important;
}

em,
i,
.italic,
strong em,
strong i {
  font-family: "Lora", serif !important;
  font-style: italic !important;
  font-weight: 100 !important;
  font-optical-sizing: auto !important;
}

/*********************************************
====================================
 Components (SCSS)
------------------------------------
 Purpose: visual components and their interactive states.

 Table of Contents
  1) Arrow Icons
  2) Buttons – Base
  3) Buttons – Lottie Icon Support
  4) Horizontal Rule (hr)
  5) Section Title with Icon (icon + heading)
  6) Details Summary Dropdown (Glossary Toggle)
  7) 2-Column Balanced Text
  8) Interactive Cards
  9) Brand Crest (Inline SVG)
 10) Media Soft Shadow
====================================
*********************************************/
/* ====================================
   1) Arrow Icons
   ------------------------------------ */
.right-arrow-icon {
  width: 0.625rem;
  height: 0.6875rem;
}
.right-arrow-icon path {
  stroke-width: 1.8;
}
.right-arrow-icon.animate {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.down-arrow-icon {
  width: 0.625rem;
  height: 0.6875rem;
}
.down-arrow-icon path {
  stroke-width: 1.8;
}
.down-arrow-icon.animate {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

/* ====================================
   2) Buttons – Base
   ------------------------------------ */
.wp-block-button__link.custom-no-bg-button {
  background: none !important;
  border: none !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: inherit;
  -webkit-transform: translateX(-0.95rem);
          transform: translateX(-0.95rem);
  -webkit-transition: -webkit-transform 0.35s ease;
  transition: -webkit-transform 0.35s ease;
  transition: transform 0.35s ease;
  transition: transform 0.35s ease, -webkit-transform 0.35s ease;
  /* Apply slide interaction ONLY to reverse-on-leave buttons
     that contain a flipped Lottie icon (.lottie-flip) */
}
.wp-block-button__link.custom-no-bg-button.reverse-on-leave:has(.lottie-flip) {
  -webkit-transform: translateX(-2.2rem);
          transform: translateX(-2.2rem);
}
.wp-block-button__link.custom-no-bg-button.reverse-on-leave:has(.lottie-flip):hover, .wp-block-button__link.custom-no-bg-button.reverse-on-leave:has(.lottie-flip):focus-visible {
  -webkit-transform: translateX(-0.95rem);
          transform: translateX(-0.95rem);
}
.wp-block-button__link.custom-no-bg-button .right-arrow-icon {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.wp-block-button__link.custom-no-bg-button .down-arrow-icon {
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}
.wp-block-button__link.custom-no-bg-button:hover .right-arrow-icon {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
}
.wp-block-button__link.custom-no-bg-button:hover .down-arrow-icon {
  -webkit-transform: translateY(6px);
          transform: translateY(6px);
}
.wp-block-button__link.custom-no-bg-button.strong {
  color: var(--global-palette4);
}
.wp-block-button__link.custom-no-bg-button.subtle {
  color: var(--global-palette5);
}
.wp-block-button__link.custom-no-bg-button.light {
  color: var(--global-palette7);
}

.wp-block-button__link.custom-no-bg-button .icon-container.lottie-icon.lottie-flip {
  /* shift left only when flipped */
  margin-left: -0.5rem;
}

/* ====================================
   3) Buttons – Lottie Icon Support
   ------------------------------------ */
.wp-block-button__link.custom-no-bg-button .icon-container.lottie-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 0;
}
.wp-block-button__link.custom-no-bg-button .icon-container.lottie-icon lottie-player {
  width: 2em;
  height: 2em;
  display: block;
  margin-left: 6px;
  pointer-events: none;
  -webkit-transition: none;
  transition: none;
}
.wp-block-button__link.custom-no-bg-button .icon-container.lottie-icon.lottie-flip lottie-player {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
  -webkit-transform-origin: center;
          transform-origin: center;
  margin-right: 6px;
}

/* ====================================
   4) Horizontal Rule (hr)
   ------------------------------------ */
hr {
  height: 1px;
  width: 100%;
  border: none;
  border-radius: 5px;
  color: var(--global-palette6);
  background-color: currentColor;
  -webkit-transform-origin: left center;
          transform-origin: left center;
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.7s ease-in-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.7s ease-in-out;
  transition: transform 0.7s ease-in-out, opacity 0.6s ease-out;
  transition: transform 0.7s ease-in-out, opacity 0.6s ease-out, -webkit-transform 0.7s ease-in-out;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  opacity: 0;
}
hr.hr-animate.visible {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  opacity: 1;
}
hr.strong {
  color: rgba(var(--global-palette6-rgb), 0.08);
}
hr.subtle {
  color: var(--global-palette7);
}
hr.light {
  color: var(--global-palette9);
}

/* Strong HR variant without animation */
hr.hr-strong {
  height: 1px;
  width: 100%;
  border: none;
  border-radius: 5px;
  color: rgba(var(--global-palette6-rgb), 0.08);
  background-color: currentColor;
}

/* ====================================
   5) Section Title with Icon (icon + heading)
   ------------------------------------ */
.section-title-with-icon {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.4em;
  -webkit-transform: translateX(-0.15rem);
          transform: translateX(-0.15rem);
}
.section-title-with-icon .icon-container {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  line-height: 0;
}
.section-title-with-icon lottie-player {
  width: 2em;
  height: 2em;
  display: block;
  margin-top: 0em;
}
.section-title-with-icon .h5 {
  margin: 0;
}

/* ====================================
   6) Details Summary Dropdown (Glossary Toggle)
   ------------------------------------ */
.wp-block-details summary {
  list-style: none;
  cursor: pointer;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.6rem;
  font-weight: inherit;
}
.wp-block-details summary::-webkit-details-marker {
  display: none;
}
.wp-block-details summary::after {
  content: "";
  width: 2em;
  height: 2em;
  /* Use mask so icon inherits currentColor */
  mask: url("/wp-content/uploads/svg/dropdown_down.svg") center/contain no-repeat;
  -webkit-mask: url("/wp-content/uploads/svg/dropdown_down.svg") center/contain no-repeat;
  background-color: currentColor;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-transform: translateY(0em);
          transform: translateY(0em);
  -webkit-transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: background-color 0.25s ease, -webkit-transform 0.25s ease;
  transition: transform 0.25s ease, background-color 0.25s ease;
  transition: transform 0.25s ease, background-color 0.25s ease, -webkit-transform 0.25s ease;
}

.wp-block-details[open] summary::after {
  mask: url("/wp-content/uploads/svg/dropdown_up.svg") center/contain no-repeat;
  -webkit-mask: url("/wp-content/uploads/svg/dropdown_up.svg") center/contain no-repeat;
  background-color: currentColor;
}

/* ====================================
   8) Interactive Cards
   ------------------------------------ */
.interactive-card {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  /* Touch devices: never dim cards via .faded */
}
.interactive-card.faded {
  opacity: 0.3;
}
.interactive-card .wp-block-kadence-column {
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}
.interactive-card:hover {
  opacity: 1 !important;
}
.interactive-card:hover .wp-block-kadence-column {
  opacity: 1 !important;
}
@media (hover: none), (pointer: coarse) {
  .interactive-card.faded {
    opacity: 1 !important;
  }
}

/* ====================================
   9) Brand Crest (Inline SVG)
   ------------------------------------ */
.site-footer .crest,
.footer .crest,
.footer-area .crest,
.footer-bottom .crest,
.kadence-footer .crest {
  display: block;
  text-decoration: none;
  color: inherit;
  /* Right-align regardless of flex or grid parent */
  margin-left: auto; /* flex/normal flow: push to the right */
  margin-right: 0;
  -ms-grid-column-align: end;
      justify-self: end; /* grid: align to end of its cell */
}

.site-footer .crest-svg,
.footer .crest-svg,
.footer-area .crest-svg,
.footer-bottom .crest-svg,
.kadence-footer .crest-svg,
.crest .crest-svg {
  width: clamp(64px, 12vw, 96px) !important;
  height: auto;
  display: block;
  /* Match right alignment inside the link wrapper */
  margin-left: auto;
  margin-right: 0;
}

/* Mobile override: align crest to the left to match the left column */
@media (max-width: 767px) {
  .site-footer .crest,
  .footer .crest,
  .footer-area .crest,
  .footer-bottom .crest,
  .kadence-footer .crest {
    margin-left: 0;
    margin-right: auto;
    -ms-grid-column-align: start;
        justify-self: start; /* grid */
  }
  .site-footer .crest-svg,
  .footer .crest-svg,
  .footer-area .crest-svg,
  .footer-bottom .crest-svg,
  .kadence-footer .crest-svg,
  .crest .crest-svg {
    margin-left: 0;
    margin-right: auto;
  }
}
.crest-svg path {
  fill: currentColor;
}

/* ====================================
   7) 2-Column Balanced Text (mobile safety override)
   ------------------------------------ */
@media (max-width: 767px) {
  .two-col-balance {
    -webkit-column-count: 1 !important;
    -moz-column-count: 1 !important;
         column-count: 1 !important;
  }
}
/* ====================================
   10) Media Soft Shadow (no rounding)
   ------------------------------------ */
.media-soft-shadow {
  display: block;
  -webkit-box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
          box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

/*********************************************
====================================
 Animations (SCSS)
------------------------------------
 Purpose: keyframe/transition-driven motion patterns used across the site.

 Table of Contents
  1) Image Fade-in
  2) Wipe Reveal
  3) Cascade Effect
  4) Parallax
  5) Lazy Load Fade/Blur (LiteSpeed)
====================================
*********************************************/
/* ====================================
   1) Image Fade-in (scoped)
   ------------------------------------ */
.wf-fade {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
  border-radius: 5px;
}

.wf-fade.is-in {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/* Never hide carousel images */
.kb-gallery-carousel-item img,
.splide__slide img {
  opacity: 1 !important;
  -webkit-transform: none !important;
          transform: none !important;
}

/* ====================================
   2) Wipe Reveal
   ------------------------------------ */
.wipe-reveal {
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  -webkit-transition: opacity 0.5s ease, clip-path 1s ease;
  transition: opacity 0.5s ease, clip-path 1s ease;
}
.wipe-reveal.visible {
  opacity: 1;
  clip-path: inset(0 0% 0 0);
}

/* ====================================
   3) Cascade Effect
   ------------------------------------ */
.cascade-item {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
}
.cascade-item.animate {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.cascade-item:nth-child(1) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.cascade-item:nth-child(2) {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}
.cascade-item:nth-child(3) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.cascade-item:nth-child(4) {
  -webkit-transition-delay: 0.55s;
          transition-delay: 0.55s;
}

/* ====================================
   4) Parallax
   ------------------------------------ */
.parallax-image, .parallax-heading {
  /* Performance & compositing */
  will-change: transform; /* compositor hint */
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0); /* create GPU layer */
  contain: paint; /* isolate paint work */
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden; /* avoid subpixel wobble on text */
}

/* Ensure child images/text render crisply while parent transforms */
.parallax-image img, .parallax-heading img {
  display: block; /* remove inline-gap jitters */
  will-change: transform;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  .parallax-image, .parallax-heading {
    -webkit-transform: none !important;
            transform: none !important;
  }
}
/* ====================================
   5) Lazy Load Fade/Blur (LiteSpeed)
   ------------------------------------ */
/*
  Purpose: Provide a smooth blur-up/fade-in for images lazy-loaded by
  LiteSpeed Cache (and similar plugins). Works with both <img> and <picture>.
  Implementation notes:
  - LiteSpeed sets a temporary attribute `data-lazyloaded` before an image is
    loaded, then removes it and adds the class `litespeed-loaded` once ready.
  - Some setups use `lazyloaded` instead, so we support both.
  - Keep width/height attributes in markup to avoid CLS.
*/
/* pre-load state (placeholder/LQIP visible) */
picture img[data-lazyloaded],
img[data-lazyloaded] {
  opacity: 0;
  -webkit-filter: blur(8px);
          filter: blur(8px);
  -webkit-transform: scale(1.02);
          transform: scale(1.02);
  -webkit-transition: opacity 0.4s ease-out, -webkit-filter 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.4s ease-out, -webkit-filter 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.4s ease-out, filter 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.4s ease-out, filter 0.6s ease-out, transform 0.6s ease-out, -webkit-filter 0.6s ease-out, -webkit-transform 0.6s ease-out;
  will-change: opacity, filter, transform;
}

/* Disable blur-up on images inside parallax containers to prevent jank */
.parallax-image img[data-lazyloaded],
.parallax-heading img[data-lazyloaded] {
  opacity: 1 !important;
  -webkit-filter: none !important;
          filter: none !important;
  -webkit-transform: none !important;
          transform: none !important;
  -webkit-transition: none !important;
  transition: none !important;
}

/* loaded state (replace with high-res) */
picture img.litespeed-loaded,
img.litespeed-loaded,
img.lazyloaded { /* fallback for other lazy loaders */
  opacity: 1;
  -webkit-filter: blur(0);
          filter: blur(0);
  -webkit-transform: scale(1);
          transform: scale(1);
}

/* Optional: never hide images inside carousels/sliders you already exempt */
.kb-gallery-carousel-item img,
.splide__slide img {
  opacity: 1 !important;
  -webkit-filter: none !important;
          filter: none !important;
  -webkit-transform: none !important;
          transform: none !important;
}

/*********************************************
====================================
 Utilities (SCSS)
------------------------------------
 Purpose: global utility classes, layout helpers, and embeds.

 Table of Contents
  1) Text Alignment & Lists
  2) Large Content Wrappers
  3) Row Layout with Aspect Ratio
  4) Icon Utilities
  5) Lottie Icon Color Control
  6) 2-Column Balanced Text (simple)
====================================
*********************************************/
/* ====================================
   1) Text Alignment & Lists
   ------------------------------------ */
.align-right {
  text-align: right;
}

.no-bullet {
  list-style: none;
  padding: 0;
  margin: 0;
}

/* ====================================
   2) Large Content Wrappers
   ------------------------------------ */
.lcontent-wrapper {
  width: 100vw;
  margin-left: calc(-50vw + 50%);
  overflow: hidden;
}

.lcontent-container {
  width: 100%;
  max-width: min(100vw, 1920px);
  margin: 0 auto;
  aspect-ratio: 21/9;
}
.lcontent-container video {
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  position: relative;
  top: -2px;
  left: -2px;
  clip-path: inset(2px);
  border-radius: 0;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .lcontent-container {
    aspect-ratio: 16/9;
  }
}
@media (max-width: 767px) {
  .lcontent-container {
    aspect-ratio: 3/4;
  }
}

/* ====================================
   3) Row Layout with Aspect Ratio
   ------------------------------------ */
.ar-section {
  /* Desktop default */
  --ar: 21 / 9; /* change via breakpoints below */
  width: 100%;
  aspect-ratio: var(--ar); /* computes height from current width */
  height: auto; /* let aspect-ratio define height */
  /* Optional: make it full-bleed like your other rows */
  /* Keep content inside from pushing height beyond the ratio */
  overflow: clip; /* or hidden, if you prefer */
  display: -ms-grid;
  display: grid; /* easy centering and full-height children */
  place-items: stretch;
  /* Kadence inner wrapper should fill the computed height */
}
.ar-section.full-bleed {
  width: 100vw;
  margin-left: calc(-50vw + 50%); /* center the 100vw section in a bounded layout */
}
.ar-section > * {
  height: 100%;
}

@media (min-width: 768px) and (max-width: 1024px) {
  .ar-section {
    --ar: 16 / 9;
  }
}
@media (max-width: 767px) {
  .ar-section {
    --ar: 3 / 4;
  }
}
/* If you have a background video/image inside, make it fill & crop cleanly */
.ar-section video,
.ar-section img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  /* your 2px crop all around, if you still want it */
  position: relative;
  top: -2px;
  left: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  clip-path: inset(2px);
}

/* ====================================
   4) Icon Utilities
   ------------------------------------ */
.icon-wrapper {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}

/* ====================================
   5) Lottie Icon Color Control
   ------------------------------------ */
.lottie-icon svg path,
.lottie-icon svg g {
  fill: currentColor !important;
  stroke: currentColor !important;
}

.lottie-icon.strong {
  color: var(--global-palette4);
}

.lottie-icon.subtle {
  color: var(--global-palette6);
}

.lottie-icon.light {
  color: var(--global-palette9);
}

/* ====================================
   6) 2-Column Balanced Text (simple)
   ------------------------------------ */
.two-col-balance {
  display: block; /* ensure not flex */
  width: 100%;
  /* Base: mobile = 1 column */
  -webkit-column-count: 1;
  -moz-column-count: 1;
       column-count: 1;
  -webkit-column-gap: 2rem;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  -webkit-column-fill: balance;
  -moz-column-fill: balance;
       column-fill: balance;
}
@media (min-width: 768px) and (max-width: 1024px) {
  .two-col-balance {
    -webkit-column-count: 2;
    -moz-column-count: 2;
         column-count: 2;
  }
}
@media (min-width: 1025px) {
  .two-col-balance {
    -webkit-column-count: 2;
    -moz-column-count: 2;
         column-count: 2;
  }
}

/* ====================================
   7) Sitemap Styling
   ------------------------------------ */
.mk-sitemap {
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.6;
}
.mk-sitemap h2,
.mk-sitemap .siteseo-html-sitemap-title {
  display: none !important;
}
.mk-sitemap time,
.mk-sitemap .post-date,
.mk-sitemap .entry-date {
  display: none !important;
}
.mk-sitemap ul {
  list-style: none;
  padding-left: 0;
  margin: 0.5rem 0 0;
}
.mk-sitemap li {
  margin: 0 0 0.35rem;
}
@media (min-width: 1025px) {
  .mk-sitemap ul {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    -webkit-column-gap: 2rem;
       -moz-column-gap: 2rem;
            column-gap: 2rem;
  }
}
.mk-sitemap a:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
  text-decoration: underline;
}
/*# sourceMappingURL=custom.css.map */