
@import url("https://rsms.me/inter/inter.css");
/* https://piccalil.li/blog/a-css-project-boilerplate/ */
.transform{
  --tw-translate-x: 0;
  --tw-translate-y: 0;
  --tw-rotate: 0;
  --tw-skew-x: 0;
  --tw-skew-y: 0;
  --tw-scale-x: 1;
  --tw-scale-y: 1;
}
.blur, .grayscale, .filter{
  --tw-blur:  ;
  --tw-brightness:  ;
  --tw-contrast:  ;
  --tw-grayscale:  ;
  --tw-hue-rotate:  ;
  --tw-invert:  ;
  --tw-saturate:  ;
  --tw-sepia:  ;
  --tw-drop-shadow:  ;
}
/* if logged in, change nav so we can see it */
body.admin-bar {
  /* .site-header-inner {
    padding-top: 32px;
  } */
  /* #wpadminbar {
    opacity: 0.5;
    &:hover {
      opacity: 1;
    }
  } */
}
/* Modern reset: https://piccalil.li/blog/a-more-modern-css-reset/ */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}
/* Prevent font size inflation */
html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
}
/* Remove default margin in favour of better control in authored CSS */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin-block-end: 0;
}
/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role='list'],
ol[role='list'] {
  list-style: none;
}
/* Set core body defaults */
body:not(.wp-admin) {
  min-height: 100vh;
  line-height: 1.5;
}
/* Set shorter line heights on headings and interactive elements */
h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}
/* Balance text wrapping on headings */
h1,
h2,
h3,
h4 {
  text-wrap: balance;
}
/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}
/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}
/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}
/* Make sure textareas without a rows attribute are not tiny */
textarea:not([rows]) {
  min-height: 10em;
}
/* Anything that has been anchored to should have extra scroll margin */
:target {
  scroll-margin-block: 5ex;
}
body {
  margin: 0;
}
/* https://www.zachleat.com/web/stable-scrollbar-gutters/ */
html {
	overflow-y: scroll;
}
@supports (scrollbar-gutter: stable) {
	html {
		overflow-y: auto;
		scrollbar-gutter: stable;
	}
}
/* Inter — single font family per design tokens (rsms.me CDN; switch to self-hosted woff2 in /src/fonts when available) */
body:not(.wp-admin) {
  text-rendering: optimizeLegibility !important;
  font-weight: var(--font-regular);
  font-size: var(--size-md);
  font-family: var(--font-base);
  -webkit-font-smoothing: antialiased;
}
/* Variable Inter (rsms.me default) — opt in for tighter optical sizing */
@supports (font-variation-settings: normal) {
  body:not(.wp-admin) { font-family: 'Inter var', var(--font-base); }
}
h1,
.h1 {
  font-size: var(--size-3xl);
}
a {
  color: var(--color-orange);
}
.font-base { font-family: var(--font-base); }
/* All headings use the single Base family (Inter) — Figma defines no divergent display face */
h1, h2, h3, h4, h5, h6,
.h0, .h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-base);
  font-weight: var(--font-regular); 
}
/* Display-size heading — uses the 4xl token */
.h0 {
  font-size: var(--size-4xl);
  line-height: 0.95;
  letter-spacing: -0.02em;
}
/* The 4xl token caps the .h0 hero heading at ~96px from 1230px upwards, which
   feels overpowering on standard laptops. From the laptop breakpoint up, swap
   in a flatter clamp that stays compact through 13"–15" screens and only
   grows back to a display size on properly large desktops. */
@media (min-width: 1024px) {
  .h0 {
    font-size: clamp(4rem, 4vw + 1rem, 7rem);
  }

  /* Companion to the .h0 size adjustment: with a smaller heading at this
     breakpoint there's room to widen the inline max-width so longer titles
     don't break to a new line. Higher specificity than Tailwind's single
     arbitrary class so it wins the cascade. */
  .hero-block__heading.h0.max-w-\[800px\] {
    max-width: 900px;
  }
}
/* Section introduction heading — sized to the 4xl display token and extra bold.
   Styling both the bare element and the class so block markup gets it automatically. */
h2,
.h2 {
  font-size: var(--size-3xl);
  font-weight: var(--font-extra-bold);
  line-height: var(--leading-tight, 1.1);
}
/* Pre-heading kicker label. Applied as both .preheader (new) and .eyebrow
   (existing markup convention used across every block). */
.preheader,
.eyebrow {
  font-size: var(--size-sm);
  font-weight: var(--font-semi);
  letter-spacing: 0.1em;
}
.uppercase,
.text-uppercase,
.font-uppercase { text-transform: uppercase; }
:root {
  --gutter: var(--space-s-l);  /* --space-s --space-s-m */
  --transition-base: 250ms ease;
  --transition-movement: 200ms linear;
  --transition-fade: 300ms ease;
  --transition-bounce: 500ms cubic-bezier(0.5, 0.05, 0.2, 1.5);
  --leading-standard: 1.5;

  --nav-height: 70px; /* change */
  --double-nav-height: 140px; /* change */
  --flow-space: var(--space-s);
  --flow-space--half: calc( var(--flow-space) / 2 );
  --flow-space--third: calc( var(--flow-space) / 3 );
  --flow-space--double: calc( var(--flow-space) * 2 );
  --block-spacing: var(--space-xl);
  --block-spacing--double: calc( var(--block-spacing) * 2 );

  /* ---------- Semantic colour aliases ----------
     Legacy CSS uses --color-primary, --color-accent, etc. These map to the
     primitive design tokens emitted from src/design-tokens/colors.json.
     Update the mapping here to re-skin without touching every block. */
  --color-primary:       var(--color-blue);
  --color-primary-dark:  var(--color-blue-dark);
  --color-secondary:     var(--color-green);
  --color-accent:        var(--color-orange);

  --color-text:          var(--color-off-black);
  --color-text-inverse:  var(--color-off-white);
  --color-dark:          var(--color-off-black);
  --color-light:         var(--color-white);

  --color-surface:       var(--color-off-white);
  --color-surface-alt:   var(--color-off-white);
  --color-neutral-light: var(--color-off-white);
  --color-neutral-dark:  var(--color-off-black);

  --color-gray-100:      var(--color-off-white);
  --color-gray-200:      var(--color-off-white);

  /* Derived tokens — off-black with opacity */
  --color-text-muted: color-mix(in srgb, var(--color-off-black) 70%, transparent);
  --color-keyline:    color-mix(in srgb, var(--color-off-black) 18%, transparent);

  /* Brand corner radius for cards, buttons, surfaces, content images */
  --radius-card: 16px;

  /* Shared min-height for the image-backed service / taxon cards so they
     stay visually equal regardless of which block they live in.
     Viewport-relative so the card scales with the user's screen rather than
     being tied to root font-size — keeps 2-col and 3-col layouts comparable. */
  --service-card-min-height: 40vh;
}
.\!container{
  width: 100% !important;
}
@media (min-width: 330px){
  .\!container{
    max-width: 330px !important;
  }
}
@media (min-width: 760px){
  .\!container{
    max-width: 760px !important;
  }
}
@media (min-width: 1230px){
  .\!container{
    max-width: 1230px !important;
  }
}
:root{
  --color-off-black: #191716;
  --color-white: #FFFFFF;
  --color-off-white: #FAF6EF;
  --color-blue-dark: #004462;
  --color-blue-darkest: #002E42;
  --color-blue: #004E70;
  --color-blue-light: #0098DB;
  --color-green-dark: #0B2B22;
  --color-green: #0B4D29;
  --color-green-light: #4A9072;
  --color-orange: #FE7F2D;
  --space-zero: clamp(0rem, -0.02rem + 0.11vw, 0.0625rem);
  --space-3xs: clamp(0.3125rem, 0.29rem + 0.11vw, 0.375rem);
  --space-2xs: clamp(0.5625rem, 0.49rem + 0.33vw, 0.75rem);
  --space-xs: clamp(0.875rem, 0.78rem + 0.44vw, 1.125rem);
  --space-s: clamp(1.125rem, 0.99rem + 0.67vw, 1.5rem);
  --space-m: clamp(1.6875rem, 1.48rem + 1.00vw, 2.25rem);
  --space-l: clamp(2.25rem, 1.98rem + 1.33vw, 3rem);
  --space-xl: clamp(3.375rem, 2.96rem + 2.00vw, 4.5rem);
  --space-2xl: clamp(4.5rem, 3.95rem + 2.67vw, 6rem);
  --space-3xl: clamp(6.75rem, 5.92rem + 4.00vw, 9rem);
  --space-4xl: clamp(9rem, 7.90rem + 5.33vw, 12rem);
  --space-3xs-2xs: clamp(0.3125rem, 0.15rem + 0.78vw, 0.75rem);
  --space-2xs-xs: clamp(0.5625rem, 0.36rem + 1.00vw, 1.125rem);
  --space-xs-s: clamp(0.875rem, 0.65rem + 1.11vw, 1.5rem);
  --space-s-m: clamp(1.125rem, 0.71rem + 2.00vw, 2.25rem);
  --space-m-l: clamp(1.6875rem, 1.21rem + 2.33vw, 3rem);
  --space-l-xl: clamp(2.25rem, 1.42rem + 4.00vw, 4.5rem);
  --space-xl-2xl: clamp(3.375rem, 2.41rem + 4.67vw, 6rem);
  --space-2xl-3xl: clamp(4.5rem, 2.85rem + 8.00vw, 9rem);
  --space-3xl-4xl: clamp(6.75rem, 4.83rem + 9.33vw, 12rem);
  --space-s-l: clamp(1.125rem, 0.44rem + 3.33vw, 3rem);
  --space-s-xl: clamp(1.125rem, -0.11rem + 6.00vw, 4.5rem);
  --size-xs: 0.875rem;
  --size-sm: 1rem;
  --size-md: clamp(1.125rem, 1.08rem + 0.22vw, 1.25rem);
  --size-lg: clamp(1.25rem, 1.16rem + 0.44vw, 1.5rem);
  --size-xl: clamp(1.5rem, 1.32rem + 0.89vw, 2rem);
  --size-2xl: clamp(2rem, 1.63rem + 1.78vw, 3rem);
  --size-3xl: clamp(2.5rem, 1.95rem + 2.67vw, 4rem);
  --size-4xl: clamp(3rem, 1.90rem + 5.33vw, 6rem);
  --leading-flat: 1;
  --leading-fine: 1.15;
  --leading-standard: 1.5;
  --leading-loose: 1.7;
  --font-base: DM Sans,Segoe UI,Roboto,Helvetica Neue,Arial,sans-serif;
  --font-regular: 400;
  --font-semi: 600;
  --font-extra-bold: 800;
}
/* 
  Global styles 

  Low-specificity, global styles that apply to the whole 
  project: https://cube.fyi/css.html
*/
body:not(.wp-admin) {
  background: var(--color-light);
  color: var(--color-dark);
  font-size: var(--size-md);
  font-family: var(--font-base);
  line-height: var(--leading-standard);
}
/* Apply theme styles only inside the editor preview iframe */
.editor-styles-wrapper {
  color: var(--color-dark);
  font-size: var(--size-md);
  font-family: var(--font-base);
  line-height: var(--leading-standard);
}
ol[role=list], ul[role=list] {
    list-style: none;
    margin-bottom: 0;
    padding: 0;
}
/* STYLING GUIDE */
/* https://photoswipe.com/styling/ */
/*! PhotoSwipe main CSS by Dmytro Semenov | photoswipe.com */
.pswp {
  --pswp-bg: #000;
  --pswp-placeholder-bg: #222;
  

  --pswp-root-z-index: 100000;
  
  --pswp-preloader-color: rgba(79, 79, 79, 0.4);
  --pswp-preloader-color-secondary: rgba(255, 255, 255, 0.9);
  
  /* defined via js:
  --pswp-transition-duration: 333ms; */
  
  --pswp-icon-color: #fff;
  --pswp-icon-color-secondary: #4f4f4f;
  --pswp-icon-stroke-color: #4f4f4f;
  --pswp-icon-stroke-width: 2px;

  --pswp-error-text-color: var(--pswp-icon-color);
}
/*
	Styles for basic PhotoSwipe (pswp) functionality (sliding area, open/close transitions)
*/
.pswp {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: var(--pswp-root-z-index);
	display: none;
	touch-action: none;
	outline: 0;
	opacity: 0.003;
	contain: layout style size;
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
/* Prevents focus outline on the root element,
  (it may be focused initially) */
.pswp:focus {
  outline: 0;
}
.pswp * {
  box-sizing: border-box;
}
.pswp img {
  max-width: none;
}
.pswp--open {
	display: block;
}
.pswp,
.pswp__bg {
	transform: translateZ(0);
	will-change: opacity;
}
.pswp__bg {
  opacity: 0.005;
	background: var(--pswp-bg);
}
.pswp,
.pswp__scroll-wrap {
	overflow: hidden;
}
.pswp__scroll-wrap,
.pswp__bg,
.pswp__container,
.pswp__item,
.pswp__content,
.pswp__img,
.pswp__zoom-wrap {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.pswp__img,
.pswp__zoom-wrap {
	width: auto;
	height: auto;
}
.pswp--click-to-zoom.pswp--zoom-allowed .pswp__img {
	cursor: -webkit-zoom-in;
	cursor: -moz-zoom-in;
	cursor: zoom-in;
}
.pswp--click-to-zoom.pswp--zoomed-in .pswp__img {
	cursor: move;
	cursor: -webkit-grab;
	cursor: -moz-grab;
	cursor: grab;
}
.pswp--click-to-zoom.pswp--zoomed-in .pswp__img:active {
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}
/* :active to override grabbing cursor */
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img,
.pswp--no-mouse-drag.pswp--zoomed-in .pswp__img:active,
.pswp__img {
	cursor: -webkit-zoom-out;
	cursor: -moz-zoom-out;
	cursor: zoom-out;
}
/* Prevent selection and tap highlights */
.pswp__container,
.pswp__img,
.pswp__button,
.pswp__counter {
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}
.pswp__item {
	/* z-index for fade transition */
	z-index: 1;
	overflow: hidden;
}
.pswp__hidden {
	display: none !important;
}
/* Allow to click through pswp__content element, but not its children */
.pswp__content {
  pointer-events: none;
}
.pswp__content > * {
  pointer-events: auto;
}
/*

  PhotoSwipe UI

*/
/*
	Error message appears when image is not loaded
	(JS option errorMsg controls markup)
*/
.pswp__error-msg-container {
  display: grid;
}
.pswp__error-msg {
	margin: auto;
	font-size: 1em;
	line-height: 1;
	color: var(--pswp-error-text-color);
}
/*
class pswp__hide-on-close is applied to elements that
should hide (for example fade out) when PhotoSwipe is closed
and show (for example fade in) when PhotoSwipe is opened
 */
.pswp .pswp__hide-on-close {
	opacity: 0.005;
	will-change: opacity;
	transition: opacity var(--pswp-transition-duration) cubic-bezier(0.4, 0, 0.22, 1);
	z-index: 10; /* always overlap slide content */
	pointer-events: none; /* hidden elements should not be clickable */
}
/* class pswp--ui-visible is added when opening or closing transition starts */
.pswp--ui-visible .pswp__hide-on-close {
	opacity: 1;
	pointer-events: auto;
}
/* <button> styles, including css reset */
.pswp__button {
	position: relative;
	display: block;
	width: 50px;
	height: 60px;
	padding: 0;
	margin: 0;
	overflow: hidden;
	cursor: pointer;
	background: none;
	border: 0;
	box-shadow: none;
	opacity: 0.85;
	-webkit-appearance: none;
	-webkit-touch-callout: none;
}
.pswp__button:hover,
.pswp__button:active,
.pswp__button:focus {
  transition: none;
  padding: 0;
  background: none;
  border: 0;
  box-shadow: none;
  opacity: 1;
}
.pswp__button:disabled {
  opacity: 0.3;
  cursor: auto;
}
.pswp__icn {
  fill: var(--pswp-icon-color);
  color: var(--pswp-icon-color-secondary);
  position: absolute;
  top: 14px;
  left: 9px;
  width: 32px;
  height: 32px;
  overflow: hidden;
  pointer-events: none;
}
.pswp__icn-shadow {
  stroke: var(--pswp-icon-stroke-color);
  stroke-width: var(--pswp-icon-stroke-width);
  fill: none;
}
.pswp__icn:focus {
	outline: 0;
}
/*
	div element that matches size of large image,
	large image loads on top of it,
	used when msrc is not provided
*/
div.pswp__img--placeholder,
.pswp__img--with-bg {
	background: var(--pswp-placeholder-bg);
}
.pswp__top-bar {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 60px;
	display: flex;
  flex-direction: row;
  justify-content: flex-end;
	z-index: 10;

	/* allow events to pass through top bar itself */
	pointer-events: none !important;
}
.pswp__top-bar > * {
  pointer-events: auto;
  /* this makes transition significantly more smooth,
     even though inner elements are not animated */
  will-change: opacity;
}
/*

  Close button

*/
.pswp__button--close {
  margin-right: 6px;
}
/*

  Arrow buttons

*/
.pswp__button--arrow {
  position: absolute;
  top: 0;
  width: 75px;
  height: 100px;
  top: 50%;
  margin-top: -50px;
}
.pswp__button--arrow:disabled {
  display: none;
  cursor: default;
}
.pswp__button--arrow .pswp__icn {
  top: 50%;
  margin-top: -30px;
  width: 60px;
  height: 60px;
  background: none;
  border-radius: 0;
}
.pswp--one-slide .pswp__button--arrow {
  display: none;
}
/* hide arrows on touch screens */
.pswp--touch .pswp__button--arrow {
  visibility: hidden;
}
/* show arrows only after mouse was used */
.pswp--has_mouse .pswp__button--arrow {
  visibility: visible;
}
.pswp__button--arrow--prev {
  right: auto;
  left: 0px;
}
.pswp__button--arrow--next {
  right: 0px;
}
.pswp__button--arrow--next .pswp__icn {
  left: auto;
  right: 14px;
  /* flip horizontally */
  transform: scale(-1, 1);
}
/*

  Zoom button

*/
.pswp__button--zoom {
  display: none;
}
.pswp--zoom-allowed .pswp__button--zoom {
  display: block;
}
/* "+" => "-" */
.pswp--zoomed-in .pswp__zoom-icn-bar-v {
  display: none;
}
/*

  Loading indicator

*/
.pswp__preloader {
  position: relative;
  overflow: hidden;
  width: 50px;
  height: 60px;
  margin-right: auto;
}
.pswp__preloader .pswp__icn {
  opacity: 0;
  transition: opacity 0.2s linear;
  animation: pswp-clockwise 600ms linear infinite;
}
.pswp__preloader--active .pswp__icn {
  opacity: 0.85;
}
@keyframes pswp-clockwise {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
/*

  "1 of 10" counter

*/
.pswp__counter {
  height: 30px;
  margin-top: 15px;
  margin-inline-start: 20px;
  font-size: 14px;
  line-height: 30px;
  color: var(--pswp-icon-color);
  text-shadow: 1px 1px 3px var(--pswp-icon-color-secondary);
  opacity: 0.85;
}
.pswp--one-slide .pswp__counter {
  display: none;
}
.glightbox-container {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999 !important;
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: none;
}
.glightbox-container.inactive {
  display: none;
}
.glightbox-container .gcontainer {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 9999;
  overflow: hidden;
}
.glightbox-container .gslider {
  -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;
  height: 100%;
  left: 0;
  top: 0;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.glightbox-container .gslide {
  width: 100%;
  position: absolute;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
}
.glightbox-container .gslide.current {
  opacity: 1;
  z-index: 99999;
  position: relative;
}
.glightbox-container .gslide.prev {
  opacity: 1;
  z-index: 9999;
}
.glightbox-container .gslide-inner-content {
  width: 100%;
}
.glightbox-container .ginner-container {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  max-width: 100%;
  margin: auto;
  height: 100vh;
}
.glightbox-container .ginner-container.gvideo-container {
  width: 100%;
}
.glightbox-container .ginner-container.desc-bottom,
        .glightbox-container .ginner-container.desc-top {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.glightbox-container .ginner-container.desc-left,
        .glightbox-container .ginner-container.desc-right {
  max-width: 100% !important;
}
.gslide iframe,
    .gslide video {
  outline: none !important;
  border: none;
  min-height: 165px;
  -webkit-overflow-scrolling: touch;
  -ms-touch-action: auto;
  touch-action: auto;
}
.gslide:not(.current) {
  pointer-events: none;
}
.gslide-image {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.gslide-image img {
  max-height: 100vh;
  display: block;
  padding: 0;
  float: none;
  outline: none;
  border: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  max-width: 100vw;
  width: auto;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  -ms-touch-action: none;
  touch-action: none;
  margin: auto;
  min-width: 200px;
}
.desc-top .gslide-image img,
        .desc-bottom .gslide-image img {
  width: auto;
}
.desc-left .gslide-image img,
        .desc-right .gslide-image img {
  width: auto;
  max-width: 100%;
}
.gslide-image img.zoomable {
  position: relative;
}
.gslide-image img.dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}
.gslide-video {
  position: relative;
  max-width: 100vh;
  width: 100% !important;
}
.gslide-video .plyr__poster-enabled.plyr--loading .plyr__poster {
  display: none;
}
.gslide-video .gvideo-wrapper {
  width: 100%;
        /* max-width: 160vmin; */
  margin: auto;
}
.gslide-video::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background: rgba(255, 0, 0, 0.34);
  display: none;
}
.gslide-video.playing::before {
  display: none;
}
.gslide-video.fullscreen {
  max-width: 100% !important;
  min-width: 100%;
  height: 75vh;
}
.gslide-video.fullscreen video {
  max-width: 100% !important;
  width: 100% !important;
}
.gslide-inline {
  background: #fff;
  text-align: left;
  max-height: calc(100vh - 40px);
  overflow: auto;
  max-width: 100%;
  margin: auto;
}
.gslide-inline .ginlined-content {
  padding: 20px;
  width: 100%;
}
.gslide-inline .dragging {
  cursor: -webkit-grabbing !important;
  cursor: grabbing !important;
  -webkit-transition: none;
  transition: none;
}
.ginlined-content {
  overflow: auto;
  display: block !important;
  opacity: 1;
}
.gslide-external {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  min-width: 100%;
  background: #fff;
  padding: 0;
  overflow: auto;
  max-height: 75vh;
  height: 100%;
}
.gslide-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: auto;
}
.zoomed .gslide-media {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}
.desc-top .gslide-media,
    .desc-bottom .gslide-media {
  margin: 0 auto;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.gslide-description {
  position: relative;
  -webkit-box-flex: 1;
  -ms-flex: 1 0 100%;
  flex: 1 0 100%;
}
.gslide-description.description-left,
    .gslide-description.description-right {
  max-width: 100%;
}
.gslide-description.description-bottom,
    .gslide-description.description-top {
  margin: 0 auto;
  width: 100%;
}
.gslide-description p {
  margin-bottom: 12px;
}
.gslide-description p:last-child {
  margin-bottom: 0;
}
.zoomed .gslide-description {
  display: none;
}
.glightbox-button-hidden {
  display: none;
}
/*
 * Description for mobiles
 * something like facebook does the description
 * for the photos
*/
.glightbox-mobile .glightbox-container .gslide-description {
  height: auto !important;
  width: 100%;
  position: absolute;
  bottom: 0;
  padding: 19px 11px;
  max-width: 100vw !important;
  -webkit-box-ordinal-group: 3 !important;
  -ms-flex-order: 2 !important;
  order: 2 !important;
  max-height: 78vh;
  overflow: auto !important;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
  -webkit-transition: opacity 0.3s linear;
  transition: opacity 0.3s linear;
  padding-bottom: 50px;
}
.glightbox-mobile .glightbox-container .gslide-title {
  color: #fff;
  font-size: 1em;
}
.glightbox-mobile .glightbox-container .gslide-desc {
  color: #a1a1a1;
}
.glightbox-mobile .glightbox-container .gslide-desc a {
  color: #fff;
  font-weight: bold;
}
.glightbox-mobile .glightbox-container .gslide-desc * {
  color: inherit;
}
.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
  color: #fff;
  opacity: 0.4;
}
.gdesc-open .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 0.4;
}
.gdesc-open .gdesc-inner {
  padding-bottom: 30px;
}
.gdesc-closed .gslide-media {
  -webkit-transition: opacity 0.5s ease;
  transition: opacity 0.5s ease;
  opacity: 1;
}
.greset {
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.gabsolute {
  position: absolute;
}
.grelative {
  position: relative;
}
.glightbox-desc {
  display: none !important;
}
.glightbox-open {
  overflow: hidden;
}
.gloader {
  height: 25px;
  width: 25px;
  -webkit-animation: lightboxLoader 0.8s infinite linear;
  animation: lightboxLoader 0.8s infinite linear;
  border: 2px solid #fff;
  border-right-color: transparent;
  border-radius: 50%;
  position: absolute;
  display: block;
  z-index: 9999;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 47%;
}
.goverlay {
  width: 100%;
  height: calc(100vh + 1px);
  position: fixed;
  top: -1px;
  left: 0;
  background: #000;
  will-change: opacity;
}
.glightbox-mobile .goverlay {
  background: #000;
}
.gprev,
.gnext,
.gclose {
  z-index: 99999;
  cursor: pointer;
  width: 26px;
  height: 44px;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.gprev svg,
.gnext svg,
.gclose svg {
  display: block;
  width: 25px;
  height: auto;
  margin: 0;
  padding: 0;
}
.gprev.disabled,
.gnext.disabled,
.gclose.disabled {
  opacity: 0.1;
}
.gprev .garrow,
.gnext .garrow,
.gclose .garrow {
  stroke: #fff;
}
.gbtn.focused {
  outline: 2px solid #0f3d81;
}
iframe.wait-autoplay {
  opacity: 0;
}
.glightbox-closing .gnext,
    .glightbox-closing .gprev,
    .glightbox-closing .gclose {
  opacity: 0 !important;
}
/*Skin */
.glightbox-clean .gslide-description {
  background: #fff;
}
.glightbox-clean .gdesc-inner {
  padding: 22px 20px;
}
.glightbox-clean .gslide-title {
  font-size: 1em;
  font-weight: normal;
  font-family: arial;
  color: #000;
  margin-bottom: 19px;
  line-height: 1.4em;
}
.glightbox-clean .gslide-desc {
  font-size: 0.86em;
  margin-bottom: 0;
  font-family: arial;
  line-height: 1.4em;
}
.glightbox-clean .gslide-video {
  background: #000;
}
.glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose {
  background-color: rgba(0, 0, 0, 0.75);
  border-radius: 4px;
}
.glightbox-clean .gprev path,
.glightbox-clean .gnext path,
.glightbox-clean .gclose path {
  fill: #fff;
}
.glightbox-clean .gprev {
  position: absolute;
  top: -100%;
  left: 30px;
  width: 40px;
  height: 50px;
}
.glightbox-clean .gnext {
  position: absolute;
  top: -100%;
  right: 30px;
  width: 40px;
  height: 50px;
}
.glightbox-clean .gclose {
  width: 35px;
  height: 35px;
  top: 15px;
  right: 10px;
  position: absolute;
}
.glightbox-clean .gclose svg {
  width: 18px;
  height: auto;
}
.glightbox-clean .gclose:hover {
  opacity: 1;
}
/*CSS Animations*/
.gfadeIn {
  -webkit-animation: gfadeIn 0.5s ease;
  animation: gfadeIn 0.5s ease;
}
.gfadeOut {
  -webkit-animation: gfadeOut 0.5s ease;
  animation: gfadeOut 0.5s ease;
}
.gslideOutLeft {
  -webkit-animation: gslideOutLeft 0.3s ease;
  animation: gslideOutLeft 0.3s ease;
}
.gslideInLeft {
  -webkit-animation: gslideInLeft 0.3s ease;
  animation: gslideInLeft 0.3s ease;
}
.gslideOutRight {
  -webkit-animation: gslideOutRight 0.3s ease;
  animation: gslideOutRight 0.3s ease;
}
.gslideInRight {
  -webkit-animation: gslideInRight 0.3s ease;
  animation: gslideInRight 0.3s ease;
}
.gzoomIn {
  -webkit-animation: gzoomIn 0.5s ease;
  animation: gzoomIn 0.5s ease;
}
.gzoomOut {
  -webkit-animation: gzoomOut 0.5s ease;
  animation: gzoomOut 0.5s ease;
}
@-webkit-keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes lightboxLoader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes gfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes gfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@-webkit-keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInLeft {
  from {
    opacity: 0;
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
  }
  to {
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@keyframes gslideOutLeft {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-60%, 0, 0);
    transform: translate3d(-60%, 0, 0);
    opacity: 0;
    visibility: hidden;
  }
}
@-webkit-keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@keyframes gslideInRight {
  from {
    opacity: 0;
    visibility: visible;
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
  }
  to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
@-webkit-keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@keyframes gslideOutRight {
  from {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(60%, 0, 0);
    transform: translate3d(60%, 0, 0);
    opacity: 0;
  }
}
@-webkit-keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@keyframes gzoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 1;
  }
}
@-webkit-keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@keyframes gzoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    -webkit-transform: scale3d(0.3, 0.3, 0.3);
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
@media (min-width: 769px) {
  .glightbox-container .ginner-container {
    width: auto;
    height: auto;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .glightbox-container .ginner-container.desc-top .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-top .gslide-image,
                .glightbox-container .ginner-container.desc-top .gslide-image img {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .glightbox-container .ginner-container.desc-left .gslide-description {
    -webkit-box-ordinal-group: 1;
    -ms-flex-order: 0;
    order: 0;
  }
  .glightbox-container .ginner-container.desc-left .gslide-image {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
  .gslide-image img {
    max-height: 97vh;
    max-width: 100%;
  }
  .gslide-image img.zoomable {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
  }
  .zoomed .gslide-image img.zoomable {
    cursor: -webkit-grab;
    cursor: grab;
  }
  .gslide-inline {
    max-height: 95vh;
  }
  .gslide-external {
    max-height: 100vh;
  }
  .gslide-description.description-left,
    .gslide-description.description-right {
    max-width: 275px;
  }
  .glightbox-open {
    height: auto;
  }
  .goverlay {
    background: rgba(0, 0, 0, 0.92);
  }
  .glightbox-clean .gslide-media {
    -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
    box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
  }
  .glightbox-clean .description-left .gdesc-inner,
.glightbox-clean .description-right .gdesc-inner {
    position: absolute;
    height: 100%;
    overflow-y: auto;
  }
  .glightbox-clean .gprev,
    .glightbox-clean .gnext,
    .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.32);
  }
  .glightbox-clean .gprev:hover,
.glightbox-clean .gnext:hover,
.glightbox-clean .gclose:hover {
    background-color: rgba(0, 0, 0, 0.7);
  }
  .glightbox-clean .gprev {
    top: 45%;
  }
  .glightbox-clean .gnext {
    top: 45%;
  }
}
@media (min-width: 992px) {
  .glightbox-clean .gclose {
    opacity: 0.7;
    right: 20px;
  }
}
@media screen and (max-height: 420px) {
  .goverlay {
    background: #000;
  }
}
/*!
 * Hamburgers
 * @description Tasty CSS-animated hamburgers
 * @author Jonathan Suh @jonsuh
 * @site https://jonsuh.com/hamburgers
 * @link https://github.com/jonsuh/hamburgers
 */
.hamburger {
  padding: 15px 15px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible; }
.hamburger:hover {
    opacity: 0.7; }
.hamburger.is-active:hover {
    opacity: 0.7; }
.hamburger.is-active .hamburger-inner,
  .hamburger.is-active .hamburger-inner::before,
  .hamburger.is-active .hamburger-inner::after {
    background-color: #000; }
.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative; }
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px; }
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
    width: 40px;
    height: 4px;
    background-color: #000;
    border-radius: 4px;
    position: absolute;
    transition-property: transform;
    transition-duration: 0.15s;
    transition-timing-function: ease; }
.hamburger-inner::before, .hamburger-inner::after {
    content: "";
    display: block; }
.hamburger-inner::before {
    top: -10px; }
.hamburger-inner::after {
    bottom: -10px; }
/*
   * 3DX
   */
.hamburger--3dx .hamburger-box {
  perspective: 80px; }
.hamburger--3dx .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx .hamburger-inner::before, .hamburger--3dx .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(180deg); }
.hamburger--3dx.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--3dx.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }
/*
   * 3DX Reverse
   */
.hamburger--3dx-r .hamburger-box {
  perspective: 80px; }
.hamburger--3dx-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx-r .hamburger-inner::before, .hamburger--3dx-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dx-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateY(-180deg); }
.hamburger--3dx-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--3dx-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }
/*
   * 3DY
   */
.hamburger--3dy .hamburger-box {
  perspective: 80px; }
.hamburger--3dy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy .hamburger-inner::before, .hamburger--3dy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(-180deg); }
.hamburger--3dy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--3dy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }
/*
   * 3DY Reverse
   */
.hamburger--3dy-r .hamburger-box {
  perspective: 80px; }
.hamburger--3dy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy-r .hamburger-inner::before, .hamburger--3dy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg); }
.hamburger--3dy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--3dy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }
/*
   * 3DXY
   */
.hamburger--3dxy .hamburger-box {
  perspective: 80px; }
.hamburger--3dxy .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dxy .hamburger-inner::before, .hamburger--3dxy .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dxy.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg); }
.hamburger--3dxy.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--3dxy.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }
/*
   * 3DXY Reverse
   */
.hamburger--3dxy-r .hamburger-box {
  perspective: 80px; }
.hamburger--3dxy-r .hamburger-inner {
  transition: transform 0.15s cubic-bezier(0.645, 0.045, 0.355, 1), background-color 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dxy-r .hamburger-inner::before, .hamburger--3dxy-r .hamburger-inner::after {
    transition: transform 0s 0.1s cubic-bezier(0.645, 0.045, 0.355, 1); }
.hamburger--3dxy-r.is-active .hamburger-inner {
  background-color: transparent !important;
  transform: rotateX(180deg) rotateY(180deg) rotateZ(-180deg); }
.hamburger--3dxy-r.is-active .hamburger-inner::before {
    transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--3dxy-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -10px, 0) rotate(-45deg); }
/*
   * Arrow
   */
.hamburger--arrow.is-active .hamburger-inner::before {
  transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
.hamburger--arrow.is-active .hamburger-inner::after {
  transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }
/*
   * Arrow Right
   */
.hamburger--arrow-r.is-active .hamburger-inner::before {
  transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
.hamburger--arrow-r.is-active .hamburger-inner::after {
  transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
/*
   * Arrow Alt
   */
.hamburger--arrowalt .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(-8px, -10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.hamburger--arrowalt.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(-8px, 10px, 0) rotate(45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
/*
   * Arrow Alt Right
   */
.hamburger--arrowalt-r .hamburger-inner::before {
  transition: top 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt-r .hamburger-inner::after {
  transition: bottom 0.1s 0.1s ease, transform 0.1s cubic-bezier(0.165, 0.84, 0.44, 1); }
.hamburger--arrowalt-r.is-active .hamburger-inner::before {
  top: 0;
  transform: translate3d(8px, -10px, 0) rotate(45deg) scale(0.7, 1);
  transition: top 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
.hamburger--arrowalt-r.is-active .hamburger-inner::after {
  bottom: 0;
  transform: translate3d(8px, 10px, 0) rotate(-45deg) scale(0.7, 1);
  transition: bottom 0.1s ease, transform 0.1s 0.1s cubic-bezier(0.895, 0.03, 0.685, 0.22); }
/*
   * Arrow Turn
   */
.hamburger--arrowturn.is-active .hamburger-inner {
  transform: rotate(-180deg); }
.hamburger--arrowturn.is-active .hamburger-inner::before {
    transform: translate3d(8px, 0, 0) rotate(45deg) scale(0.7, 1); }
.hamburger--arrowturn.is-active .hamburger-inner::after {
    transform: translate3d(8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
/*
   * Arrow Turn Right
   */
.hamburger--arrowturn-r.is-active .hamburger-inner {
  transform: rotate(-180deg); }
.hamburger--arrowturn-r.is-active .hamburger-inner::before {
    transform: translate3d(-8px, 0, 0) rotate(-45deg) scale(0.7, 1); }
.hamburger--arrowturn-r.is-active .hamburger-inner::after {
    transform: translate3d(-8px, 0, 0) rotate(45deg) scale(0.7, 1); }
/*
   * Boring
   */
.hamburger--boring .hamburger-inner, .hamburger--boring .hamburger-inner::before, .hamburger--boring .hamburger-inner::after {
  transition-property: none; }
.hamburger--boring.is-active .hamburger-inner {
  transform: rotate(45deg); }
.hamburger--boring.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
.hamburger--boring.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }
/*
   * Collapse
   */
.hamburger--collapse .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
.hamburger--collapse .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--collapse.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
.hamburger--collapse.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }
/*
   * Collapse Reverse
   */
.hamburger--collapse-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0.1s linear; }
.hamburger--collapse-r .hamburger-inner::before {
    transition: top 0.12s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--collapse-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--collapse-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s 0.22s linear; }
.hamburger--collapse-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.16s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.25s cubic-bezier(0.215, 0.61, 0.355, 1); }
/*
   * Elastic
   */
.hamburger--elastic .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
.hamburger--elastic .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(135deg);
  transition-delay: 0.075s; }
.hamburger--elastic.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
.hamburger--elastic.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-270deg);
    transition-delay: 0.075s; }
/*
   * Elastic Reverse
   */
.hamburger--elastic-r .hamburger-inner {
  top: 2px;
  transition-duration: 0.275s;
  transition-timing-function: cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic-r .hamburger-inner::before {
    top: 10px;
    transition: opacity 0.125s 0.275s ease; }
.hamburger--elastic-r .hamburger-inner::after {
    top: 20px;
    transition: transform 0.275s cubic-bezier(0.68, -0.55, 0.265, 1.55); }
.hamburger--elastic-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-135deg);
  transition-delay: 0.075s; }
.hamburger--elastic-r.is-active .hamburger-inner::before {
    transition-delay: 0s;
    opacity: 0; }
.hamburger--elastic-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(270deg);
    transition-delay: 0.075s; }
/*
   * Emphatic
   */
.hamburger--emphatic {
  overflow: hidden; }
.hamburger--emphatic .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
.hamburger--emphatic .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
.hamburger--emphatic .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
.hamburger--emphatic.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
.hamburger--emphatic.is-active .hamburger-inner::before {
      left: -80px;
      top: -80px;
      transform: translate3d(80px, 80px, 0) rotate(45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
.hamburger--emphatic.is-active .hamburger-inner::after {
      right: -80px;
      top: -80px;
      transform: translate3d(-80px, 80px, 0) rotate(-45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
/*
   * Emphatic Reverse
   */
.hamburger--emphatic-r {
  overflow: hidden; }
.hamburger--emphatic-r .hamburger-inner {
    transition: background-color 0.125s 0.175s ease-in; }
.hamburger--emphatic-r .hamburger-inner::before {
      left: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, left 0.125s 0.175s ease-in; }
.hamburger--emphatic-r .hamburger-inner::after {
      top: 10px;
      right: 0;
      transition: transform 0.125s cubic-bezier(0.6, 0.04, 0.98, 0.335), top 0.05s 0.125s linear, right 0.125s 0.175s ease-in; }
.hamburger--emphatic-r.is-active .hamburger-inner {
    transition-delay: 0s;
    transition-timing-function: ease-out;
    background-color: transparent !important; }
.hamburger--emphatic-r.is-active .hamburger-inner::before {
      left: -80px;
      top: 80px;
      transform: translate3d(80px, -80px, 0) rotate(-45deg);
      transition: left 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
.hamburger--emphatic-r.is-active .hamburger-inner::after {
      right: -80px;
      top: 80px;
      transform: translate3d(-80px, -80px, 0) rotate(45deg);
      transition: right 0.125s ease-out, top 0.05s 0.125s linear, transform 0.125s 0.175s cubic-bezier(0.075, 0.82, 0.165, 1); }
/*
   * Minus
   */
.hamburger--minus .hamburger-inner::before, .hamburger--minus .hamburger-inner::after {
  transition: bottom 0.08s 0s ease-out, top 0.08s 0s ease-out, opacity 0s linear; }
.hamburger--minus.is-active .hamburger-inner::before, .hamburger--minus.is-active .hamburger-inner::after {
  opacity: 0;
  transition: bottom 0.08s ease-out, top 0.08s ease-out, opacity 0s 0.08s linear; }
.hamburger--minus.is-active .hamburger-inner::before {
  top: 0; }
.hamburger--minus.is-active .hamburger-inner::after {
  bottom: 0; }
/*
   * Slider
   */
.hamburger--slider .hamburger-inner {
  top: 2px; }
.hamburger--slider .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
.hamburger--slider .hamburger-inner::after {
    top: 20px; }
.hamburger--slider.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--slider.is-active .hamburger-inner::before {
    transform: rotate(-45deg) translate3d(-5.71429px, -6px, 0);
    opacity: 0; }
.hamburger--slider.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(-90deg); }
/*
   * Slider Reverse
   */
.hamburger--slider-r .hamburger-inner {
  top: 2px; }
.hamburger--slider-r .hamburger-inner::before {
    top: 10px;
    transition-property: transform, opacity;
    transition-timing-function: ease;
    transition-duration: 0.15s; }
.hamburger--slider-r .hamburger-inner::after {
    top: 20px; }
.hamburger--slider-r.is-active .hamburger-inner {
  transform: translate3d(0, 10px, 0) rotate(-45deg); }
.hamburger--slider-r.is-active .hamburger-inner::before {
    transform: rotate(45deg) translate3d(5.71429px, -6px, 0);
    opacity: 0; }
.hamburger--slider-r.is-active .hamburger-inner::after {
    transform: translate3d(0, -20px, 0) rotate(90deg); }
/*
   * Spin
   */
.hamburger--spin .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
.hamburger--spin .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin.is-active .hamburger-inner {
  transform: rotate(225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--spin.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
.hamburger--spin.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }
/*
   * Spin Reverse
   */
.hamburger--spin-r .hamburger-inner {
  transition-duration: 0.22s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin-r .hamburger-inner::before {
    transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in; }
.hamburger--spin-r .hamburger-inner::after {
    transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spin-r.is-active .hamburger-inner {
  transform: rotate(-225deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--spin-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out; }
.hamburger--spin-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg);
    transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }
/*
   * Spring
   */
.hamburger--spring .hamburger-inner {
  top: 2px;
  transition: background-color 0s 0.13s linear; }
.hamburger--spring .hamburger-inner::before {
    top: 10px;
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring .hamburger-inner::after {
    top: 20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring.is-active .hamburger-inner {
  transition-delay: 0.22s;
  background-color: transparent !important; }
.hamburger--spring.is-active .hamburger-inner::before {
    top: 0;
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(45deg); }
.hamburger--spring.is-active .hamburger-inner::after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 10px, 0) rotate(-45deg); }
/*
   * Spring Reverse
   */
.hamburger--spring-r .hamburger-inner {
  top: auto;
  bottom: 0;
  transition-duration: 0.13s;
  transition-delay: 0s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring-r .hamburger-inner::after {
    top: -20px;
    transition: top 0.2s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), opacity 0s linear; }
.hamburger--spring-r .hamburger-inner::before {
    transition: top 0.1s 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1), transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--spring-r.is-active .hamburger-inner {
  transform: translate3d(0, -10px, 0) rotate(-45deg);
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--spring-r.is-active .hamburger-inner::after {
    top: 0;
    opacity: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0s 0.22s linear; }
.hamburger--spring-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(90deg);
    transition: top 0.1s 0.15s cubic-bezier(0.33333, 0, 0.66667, 0.33333), transform 0.13s 0.22s cubic-bezier(0.215, 0.61, 0.355, 1); }
/*
   * Stand
   */
.hamburger--stand .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
.hamburger--stand .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand.is-active .hamburger-inner {
  transform: rotate(90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
.hamburger--stand.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--stand.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
/*
   * Stand Reverse
   */
.hamburger--stand-r .hamburger-inner {
  transition: transform 0.075s 0.15s cubic-bezier(0.55, 0.055, 0.675, 0.19), background-color 0s 0.075s linear; }
.hamburger--stand-r .hamburger-inner::before {
    transition: top 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand-r .hamburger-inner::after {
    transition: bottom 0.075s 0.075s ease-in, transform 0.075s 0s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--stand-r.is-active .hamburger-inner {
  transform: rotate(-90deg);
  background-color: transparent !important;
  transition: transform 0.075s 0s cubic-bezier(0.215, 0.61, 0.355, 1), background-color 0s 0.15s linear; }
.hamburger--stand-r.is-active .hamburger-inner::before {
    top: 0;
    transform: rotate(-45deg);
    transition: top 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--stand-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(45deg);
    transition: bottom 0.075s 0.1s ease-out, transform 0.075s 0.15s cubic-bezier(0.215, 0.61, 0.355, 1); }
/*
   * Squeeze
   */
.hamburger--squeeze .hamburger-inner {
  transition-duration: 0.075s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze .hamburger-inner::before {
    transition: top 0.075s 0.12s ease, opacity 0.075s ease; }
.hamburger--squeeze .hamburger-inner::after {
    transition: bottom 0.075s 0.12s ease, transform 0.075s cubic-bezier(0.55, 0.055, 0.675, 0.19); }
.hamburger--squeeze.is-active .hamburger-inner {
  transform: rotate(45deg);
  transition-delay: 0.12s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1); }
.hamburger--squeeze.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0;
    transition: top 0.075s ease, opacity 0.075s 0.12s ease; }
.hamburger--squeeze.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg);
    transition: bottom 0.075s ease, transform 0.075s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1); }
/*
   * Vortex
   */
.hamburger--vortex .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
.hamburger--vortex .hamburger-inner::before, .hamburger--vortex .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
.hamburger--vortex .hamburger-inner::before {
    transition-property: top, opacity; }
.hamburger--vortex .hamburger-inner::after {
    transition-property: bottom, transform; }
.hamburger--vortex.is-active .hamburger-inner {
  transform: rotate(765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
.hamburger--vortex.is-active .hamburger-inner::before, .hamburger--vortex.is-active .hamburger-inner::after {
    transition-delay: 0s; }
.hamburger--vortex.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
.hamburger--vortex.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(90deg); }
/*
   * Vortex Reverse
   */
.hamburger--vortex-r .hamburger-inner {
  transition-duration: 0.2s;
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
.hamburger--vortex-r .hamburger-inner::before, .hamburger--vortex-r .hamburger-inner::after {
    transition-duration: 0s;
    transition-delay: 0.1s;
    transition-timing-function: linear; }
.hamburger--vortex-r .hamburger-inner::before {
    transition-property: top, opacity; }
.hamburger--vortex-r .hamburger-inner::after {
    transition-property: bottom, transform; }
.hamburger--vortex-r.is-active .hamburger-inner {
  transform: rotate(-765deg);
  transition-timing-function: cubic-bezier(0.19, 1, 0.22, 1); }
.hamburger--vortex-r.is-active .hamburger-inner::before, .hamburger--vortex-r.is-active .hamburger-inner::after {
    transition-delay: 0s; }
.hamburger--vortex-r.is-active .hamburger-inner::before {
    top: 0;
    opacity: 0; }
.hamburger--vortex-r.is-active .hamburger-inner::after {
    bottom: 0;
    transform: rotate(-90deg); }
/* offside-js 1.4.0 26-03-2018
* Minimal JavaScript kit without library dependencies to push things off-canvas using just class manipulation
* https://github.com/toomuchdesign/offside.git
*
* by Andrea Carraro
* Available under the MIT license
*/
:root {
  --offside-width: 400px;  /* --space-s --space-s-m */
  --offside-inverted-width: -400px;  /* --space-s --space-s-m */
  --offside-width--desktop: 800px;  /* --space-s --space-s-m */
  --offside-inverted-width--desktop: -800px;  /* --space-s --space-s-m */
  /* for really small screens.. */
  --offside-max-width: 80vw;  /* --space-s --space-s-m */
}
/* When site loads, nav appears briefly before being hidden by offside. Adding in a class to hide this unwanted flash */
.off-canvas {
    display: none;
}
.offside-js--init .off-canvas {
        display: block;
    }
/* Off-canvas element CSS */
.offside {
    position: fixed; /* Does not play well with some old browsers (see: README) */
    width: var(--offside-width);
    max-width: var(--offside-max-width);
    height: 100%;
    top: 0;
    z-index: 9999;
    overflow: auto;
    -webkit-overflow-scrolling: touch; /* enables momentum scrolling in iOS overflow elements */
}
/* Left off-canvas elements default status: out of the page */
.offside,
.offside--left {
    left: var(--offside-inverted-width);
}
/* Right off-canvas elements default status: out of the page */
.offside,
.offside--right {
    left: auto;
    right: var(--offside-inverted-width);
}
/*
 * Left off-canvas element is open:
 * - off-canvas element slides in
 * - container elements slides out
 */
.offside--left.is-open,
.offside-js--is-left .offside-sliding-element {
    -webkit-transform: translate3d(var(--offside-width), 0, 0);
    -moz-transform: translate3d(var(--offside-width), 0, 0);
    -ms-transform: translate3d(var(--offside-width), 0, 0);
    -o-transform: translate3d(var(--offside-width), 0, 0);
    transform: translate3d(var(--offside-width), 0, 0);
}
/*
 * Right off-canvas element is open:
 * - off-canvas element slides in
 * - container elements slides out
 */
.offside--right.is-open,
.offside-js--is-right .offside-sliding-element {
    -webkit-transform: translate3d(var(--offside-inverted-width), 0, 0);
    -moz-transform: translate3d(var(--offside-inverted-width), 0, 0);
    -ms-transform: translate3d(var(--offside-inverted-width), 0, 0);
    -o-transform: translate3d(var(--offside-inverted-width), 0, 0);
    transform: translate3d(var(--offside-inverted-width), 0, 0);
}
/* Elements Transitions */
.offside-js--interact .offside,
.offside-js--interact .offside-sliding-element {
    -webkit-transition: -webkit-transform .2s cubic-bezier(.16, .68, .43, .99);
    -moz-transition: -moz-transform .2s cubic-bezier(.16, .68, .43, .99);
    -o-transition: -o-transform .2s cubic-bezier(.16, .68, .43, .99);
    transition: transform .2s cubic-bezier(.16, .68, .43, .99);
    
    /* improves performance issues on mobile*/
    -webkit-backface-visibility: hidden;
    /* -webkit-perspective: 1000;  // removed due to appearing nav glitch */
}
/* Body overflow */
.offside-js--init {
    overflow-x: hidden;
}
/* Fallback movements for browser not supporting CSS 3d Transitions
----------------------------------------------- */
/* Modernizr false negative csstransforms3d fix, reset CSS 3d Transitions */
.no-csstransforms3d .offside {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}
.no-csstransforms3d .offside-sliding-element {
    overflow-x: hidden;
    position: relative;
}
/* Element is open: off-canvas element slides in */
.no-csstransforms3d .offside--left.is-open {
    left: 0;
}
.no-csstransforms3d .offside--right.is-open {
    right: 0;
}
/* Element is open: container elements slide out */
.no-csstransforms3d > .offside-js--is-left .offside-sliding-element {
    right: var(--offside-inverted-width);
}
.no-csstransforms3d > .offside-js--is-right .offside-sliding-element {
    left: var(--offside-inverted-width);
}
@media (min-width: 50em) {
    /* DESKTOP */
    .offside {
        width: var(--offside-width--desktop);
    }

    .offside,
    .offside--left {
        left: var(--offside-inverted-width--desktop);
    }

    .offside--right {
        left: unset;
        right: var(--offside-inverted-width--desktop);
    }

    .offside--left.is-open,
    .offside-js--is-left .offside-sliding-element {
        -webkit-transform: translate3d(var(--offside-width--desktop), 0, 0);
        -moz-transform: translate3d(var(--offside-width--desktop), 0, 0);
        -ms-transform: translate3d(var(--offside-width--desktop), 0, 0);
        -o-transform: translate3d(var(--offside-width--desktop), 0, 0);
        transform: translate3d(var(--offside-width--desktop), 0, 0);
    }

    .offside--right.is-open,
    .offside-js--is-right .offside-sliding-element {
        -webkit-transform: translate3d(var(--offside-inverted-width--desktop), 0, 0);
        -moz-transform: translate3d(var(--offside-inverted-width--desktop), 0, 0);
        -ms-transform: translate3d(var(--offside-inverted-width--desktop), 0, 0);
        -o-transform: translate3d(var(--offside-inverted-width--desktop), 0, 0);
        transform: translate3d(var(--offside-inverted-width--desktop), 0, 0);
    }

    /* Element is open: container elements slide out */
    .no-csstransforms3d > .offside-js--is-left .offside-sliding-element {
        right: var(--offside-inverted-width--desktop);
    }

    .no-csstransforms3d > .offside-js--is-right .offside-sliding-element {
        left: var(--offside-inverted-width--desktop);
    }
}
/**
 * Swiper 11.0.7
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2024 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: February 27, 2024
 */
/* FONT_START */
@font-face {
  font-family: 'swiper-icons';
  src: url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA');
  font-weight: 400;
  font-style: normal;
}
/* FONT_END */
:root {
  --swiper-theme-color: #007aff;
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  --swiper-wrapper-transition-timing-function: initial;
  */
}
:host {
  position: relative;
  display: block;
  margin-left: auto;
  margin-right: auto;
  z-index: 1;
}
.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
  display: block;
}
.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  transition-timing-function: var(--swiper-wrapper-transition-timing-function, initial);
  box-sizing: content-box;
}
.swiper-android .swiper-slide,
.swiper-ios .swiper-slide,
.swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}
.swiper-horizontal {
  touch-action: pan-y;
}
.swiper-vertical {
  touch-action: pan-x;
}
.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
  display: block;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-autoheight,
.swiper-autoheight .swiper-slide {
  height: auto;
}
.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}
.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* 3D Effects */
.swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}
.swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}
.swiper-3d {
  perspective: 1200px;
}
.swiper-3d .swiper-slide,
.swiper-3d .swiper-cube-shadow {
  transform-style: preserve-3d;
}
/* CSS Mode */
.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}
.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}
.swiper-css-mode.swiper-horizontal > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}
.swiper-css-mode.swiper-vertical > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper {
  scroll-snap-type: none;
}
.swiper-css-mode.swiper-free-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: none;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper::before {
  content: '';
  flex-shrink: 0;
  order: 9999;
}
.swiper-css-mode.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
  scroll-snap-stop: always;
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}
.swiper-css-mode.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}
/* Slide styles start */
/* 3D Shadows */
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom,
.swiper-3d .swiper-slide-shadow,
.swiper-3d .swiper-slide-shadow-left,
.swiper-3d .swiper-slide-shadow-right,
.swiper-3d .swiper-slide-shadow-top,
.swiper-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}
.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}
.swiper:not(.swiper-watch-progress) .swiper-lazy-preloader,
.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}
.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}
.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}
@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* Slide styles end */
.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}
.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}
.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}
.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}
:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 10px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: var(--swiper-navigation-top-offset, 50%);
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev.swiper-button-hidden,
.swiper-button-next.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}
.swiper-navigation-disabled .swiper-button-prev,
.swiper-navigation-disabled .swiper-button-next {
  display: none !important;
}
.swiper-button-prev svg,
.swiper-button-next svg {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
}
.swiper-rtl .swiper-button-prev svg,
.swiper-rtl .swiper-button-next svg {
  transform: rotate(180deg);
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
  left: var(--swiper-navigation-sides-offset, 10px);
  right: auto;
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-lock {
  display: none;
}
/* Navigation font start */
.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}
.swiper-button-prev:after,
.swiper-rtl .swiper-button-next:after {
  content: 'prev';
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
  right: var(--swiper-navigation-sides-offset, 10px);
  left: auto;
}
.swiper-button-next:after,
.swiper-rtl .swiper-button-prev:after {
  content: 'next';
}
/* Navigation font end */
:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  --swiper-pagination-left: auto;
  --swiper-pagination-right: 8px;
  --swiper-pagination-bottom: 8px;
  --swiper-pagination-top: auto;
  --swiper-pagination-fraction-color: inherit;
  --swiper-pagination-progressbar-bg-color: rgba(0,0,0,0.25);
  --swiper-pagination-progressbar-size: 4px;
  --swiper-pagination-bullet-size: 8px;
  --swiper-pagination-bullet-width: 8px;
  --swiper-pagination-bullet-height: 8px;
  --swiper-pagination-bullet-border-radius: 50%;
  --swiper-pagination-bullet-inactive-color: #000;
  --swiper-pagination-bullet-inactive-opacity: 0.2;
  --swiper-pagination-bullet-opacity: 1;
  --swiper-pagination-bullet-horizontal-gap: 4px;
  --swiper-pagination-bullet-vertical-gap: 6px;
  */
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
.swiper-pagination-disabled > .swiper-pagination,
.swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: var(--swiper-pagination-bottom, 8px);
  top: var(--swiper-pagination-top, auto);
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: var(--swiper-pagination-bullet-border-radius, 50%);
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
          appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet:only-child {
  display: none !important;
}
.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}
.swiper-vertical > .swiper-pagination-bullets,
.swiper-pagination-vertical.swiper-pagination-bullets {
  right: var(--swiper-pagination-right, 8px);
  left: var(--swiper-pagination-left, auto);
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}
.swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms transform,
        200ms top;
}
.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
        200ms left;
}
.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms transform,
    200ms right;
}
/* Fraction */
.swiper-pagination-fraction {
  color: var(--swiper-pagination-fraction-color, inherit);
}
/* Progress */
.swiper-pagination-progressbar {
  background: var(--swiper-pagination-progressbar-bg-color, rgba(0, 0, 0, 0.25));
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}
.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}
.swiper-horizontal > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-horizontal,
.swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: var(--swiper-pagination-progressbar-size, 4px);
  left: 0;
  top: 0;
}
.swiper-vertical > .swiper-pagination-progressbar,
.swiper-pagination-progressbar.swiper-pagination-vertical,
.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite {
  width: var(--swiper-pagination-progressbar-size, 4px);
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-lock {
  display: none;
}
:root {
  /*
  --swiper-scrollbar-border-radius: 10px;
  --swiper-scrollbar-top: auto;
  --swiper-scrollbar-bottom: 4px;
  --swiper-scrollbar-left: auto;
  --swiper-scrollbar-right: 4px;
  --swiper-scrollbar-sides-offset: 1%;
  --swiper-scrollbar-bg-color: rgba(0, 0, 0, 0.1);
  --swiper-scrollbar-drag-bg-color: rgba(0, 0, 0, 0.5);
  --swiper-scrollbar-size: 4px;
  */
}
.swiper-scrollbar {
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  position: relative;
  touch-action: none;
  background: var(--swiper-scrollbar-bg-color, rgba(0, 0, 0, 0.1));
}
.swiper-scrollbar-disabled > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}
.swiper-horizontal > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: var(--swiper-scrollbar-sides-offset, 1%);
  bottom: var(--swiper-scrollbar-bottom, 4px);
  top: var(--swiper-scrollbar-top, auto);
  z-index: 50;
  height: var(--swiper-scrollbar-size, 4px);
  width: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-vertical > .swiper-scrollbar,
.swiper-scrollbar.swiper-scrollbar-vertical {
  position: absolute;
  left: var(--swiper-scrollbar-left, auto);
  right: var(--swiper-scrollbar-right, 4px);
  top: var(--swiper-scrollbar-sides-offset, 1%);
  z-index: 50;
  width: var(--swiper-scrollbar-size, 4px);
  height: calc(100% - 2 * var(--swiper-scrollbar-sides-offset, 1%));
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: var(--swiper-scrollbar-drag-bg-color, rgba(0, 0, 0, 0.5));
  border-radius: var(--swiper-scrollbar-border-radius, 10px);
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
/* Zoom container styles start */
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
/* Zoom container styles end */
.swiper-slide-zoomed {
  cursor: move;
  touch-action: none;
}
/* a11y */
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}
.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}
.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}
.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}
.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-fade .swiper-slide-active {
  pointer-events: auto;
}
.swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube {
  overflow: visible;
}
.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-cube .swiper-slide-active,
.swiper-cube .swiper-slide-next,
.swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}
.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}
.swiper-cube .swiper-cube-shadow:before {
  content: '';
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}
.swiper-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
/* Cube slide shadows start */
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-top,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-bottom,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-left,
.swiper-cube .swiper-slide-shadow-cube.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* Cube slide shadows end */
.swiper-flip {
  overflow: visible;
}
.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 1;
}
.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-flip .swiper-slide-active,
.swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
/* Flip slide shadows start */
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-top,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-bottom,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-left,
.swiper-flip .swiper-slide-shadow-flip.swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
/* Flip slide shadows end */
.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}
.swiper-cards {
  overflow: visible;
}
.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow: hidden;
}
/* All block CSS now lives in src/css/blocks/ and is picked up by the glob import */
.site-block {
	/* margin-bottom: var(--block-spacing, 4rem); */
}
/* .block-hero,
.block-copy_and_image,
.block-statement,
.block-collections,
.block-gallery,
.block-cards,
.block-testimonials,
.block-cta,

.block-image,
.card-grid,
.single-post-intro,
.related-posts,
.block-classic,
.block-copy {
	margin-bottom: var(--block-spacing, 4rem);
}

.block-stonesoverview,
.block-process,
.block-facts,
.block-statement,
.related-posts {
	padding-top: var(--block-spacing, 4rem);
	padding-bottom: var(--block-spacing, 4rem);
}

.block-resources {
	padding-top: var(--block-spacing--double, 8rem);
	padding-bottom: var(--block-spacing--double, 8rem);
} */
/* Accordion Block Styles */
.accordion-block {
  padding-block: var(--block-spacing, 3rem);
}
.accordion-block__heading {
  margin-block-end: var(--space-m-l, 2rem);
}
.accordion-block__items {
  --flow-space: var(--space-2xs, 0.5rem);
}
/* Accordion Item — separator between each */
.accordion-item {
  border-block-end: 1px solid currentColor;
}
.accordion-item:last-child {
  border-block-end: none;
}
/* Trigger button — plus icon on the left, title flowing to its right.
   Padding is symmetric block-start / block-end so the title sits evenly
   between the dividers; line-height kept tight so the visual band is
   driven purely by padding, not extra leading. */
.accordion-item__trigger {
  display: flex;
  align-items: center;
  gap: var(--space-s, 1rem);
  width: 100%;
  padding-block: var(--space-s, 0.75rem);
  padding-inline: 0;
  font-size: var(--size-lg, 1.125rem);
  font-weight: var(--font-semi, 600);
  line-height: 1.3;
  text-align: left;
  color: inherit;
  background: transparent;
  border: none;
  cursor: pointer;
}
.accordion-item__trigger:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
/* Plus/minus icon built from two bars on a pseudo wrapper.
   Horizontal bar always visible, vertical bar collapses on expand. */
.accordion-item__icon {
  flex-shrink: 0;
  display: inline-block;
  position: relative;
  width: 1.25rem;
  height: 1.25rem;
}
.accordion-item__icon::before,
.accordion-item__icon::after {
  content: "";
  position: absolute;
  inset: 0;
  margin: auto;
  background-color: currentColor;
  transition: transform 250ms ease;
}
.accordion-item__icon::before {
  /* horizontal bar */
  width: 100%;
  height: 2px;
}
.accordion-item__icon::after {
  /* vertical bar — shrinks to a flat line when expanded, becoming a minus */
  width: 2px;
  height: 100%;
}
.accordion-item__trigger[aria-expanded="true"] .accordion-item__icon::after {
  transform: scaleY(0);
}
/* Expand/collapse content — animated via grid-template-rows trick */
.accordion-item__content {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 300ms ease;
  margin-left: 2.5rem;
}
.accordion-item__content[data-expanded] {
  grid-template-rows: 1fr;
}
.accordion-item__body {
  overflow: hidden;
  min-height: 0;
}
.accordion-item__content[data-expanded] .accordion-item__body {
  padding-block-end: var(--space-m, 1.5rem);
}
/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
  .accordion-item__icon::before,
  .accordion-item__icon::after,
  .accordion-item__content {
    transition: none;
  }
}
/* Print Styles */
@media print {
  .accordion-item__content {
    display: block !important;
    grid-template-rows: auto !important;
  }

  .accordion-item__icon {
    display: none;
  }
}
/* Small pills used in category filter row + blog-post card categories */
.pill--sm {
	font-size: 0.72rem;
	padding: 0.15rem 0.6rem;
	line-height: 1.4;
	letter-spacing: 0.02em;
}
.pill.is-active,
.pill--sm.is-active {
	background: var(--color-orange, #222);
	color: #fff;
	border-color: transparent;
}
/* Category filter row on News + archives */
.category-list {
	flex-wrap: wrap;
	gap: 0.4rem;
	padding: 0;
	margin: 0 0 1.5rem;
	list-style: none;
}
/* Blog post card — make any category pills small by default */
.card .pill,
.card__categories .pill {
	font-size: 0.72rem;
	padding: 0.12rem 0.55rem;
}
/* Sector card description — smaller than body */
.sector-card__excerpt {
	font-size: 0.85rem;
	line-height: 1.4;
	color: var(--color-text-muted, #555);
}
/* Related posts grid polish */
.related-posts {
	margin-top: 3rem;
}
.related-posts > .grid[data-layout="thirds"] {
	gap: 1.5rem;
}
/* Form block wrapper used on contact page — constrain form width */
.contact-form-wrapper {
	max-width: 720px;
	margin-inline: auto;
	padding-inline: 1rem;
}
/* Contact block — copy + site contact details beside a form slot */
.contact-block {
    padding-block: var(--block-spacing, 3rem);
}
.contact-block__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--space-l-xl, 3rem);
    align-items: start;
}
@media (min-width: 820px) {
    .contact-block__grid {
        grid-template-columns: 1fr 1fr;
        align-items: center;
    }
}
.contact-block__heading {
    margin: 0.25rem 0 1rem;
    font-size: clamp(2.25rem, 3vw + 1rem, 3.5rem);
    line-height: 1.1;
}
.contact-block__lede {
    font-size: 1.05rem;
    max-width: 48ch;
    margin-bottom: 1.5rem;
}
.contact-block__details {
    display: grid;
    gap: 1.5rem;
    margin: 0;
}
.contact-block__detail dt {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.75rem;
    opacity: 0.65;
    margin-bottom: 0.25rem;
}
.contact-block__detail dd {
    margin: 0;
    font-weight: 600;
}
.contact-block__detail a {
    color: inherit;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, color 0.3s ease;
}
.contact-block__detail a:hover,
.contact-block__detail a:focus-visible {
    color: var(--color-orange);
    border-bottom-color: var(--color-orange);
}
/* Form column — editor drops a shortcode in here */
.contact-block__form {
    width: 100%;
}
.contact-block__form-placeholder {
    padding: var(--space-m, 1.5rem);
    border: 1px dashed var(--color-keyline, rgba(0, 0, 0, 0.25));
    border-radius: var(--radius-card);
    background: rgba(0, 0, 0, 0.03);
    font-size: var(--size-sm, 0.875rem);
    line-height: var(--leading-standard, 1.5);
}
.contact-block__form-placeholder code {
    background: rgba(0, 0, 0, 0.08);
    padding: 0.1em 0.4em;
    border-radius: 0.25rem;
}
/* Contact Form Block Styles */
.contact-form-block {
    --form-gap: var(--space-m, 1.5rem);
    --field-gap: var(--space-s, 1rem);
    --field-padding: var(--space-xs, 0.75rem);
    --field-border-width: 1px;
    --field-border-color: var(--color-gray-300, #d1d5db);
    --field-border-radius: var(--radius-s, 0.375rem);
    --field-bg: var(--color-white, #ffffff);
    --field-focus-color: var(--color-primary, #3b82f6);
    --field-focus-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    --label-color: var(--color-gray-700, #374151);
    --label-font-weight: var(--font-semi, 500);
    --button-padding: var(--space-xs, 0.75rem) var(--space-m, 1.5rem);
    --error-color: var(--color-red-600, #dc2626);
    --success-color: var(--color-green-600, #16a34a);
}
.contact-form-block__inner {
    container-type: inline-size;
}
/* Form Styles */
.contact-form-block .forminator-custom-form {
    display: grid;
    gap: var(--form-gap);
}
/* Field Row Styles */
.contact-form-block .forminator-row {
    display: grid;
    gap: var(--field-gap);
}
/* Column Layouts */
.contact-form-block--columns-2 .forminator-row {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.contact-form-block--columns-3 .forminator-row {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
/* Field Styles */
.contact-form-block .forminator-field {
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs, 0.5rem);
}
.contact-form-block .forminator-label {
    color: var(--label-color);
    font-weight: var(--label-font-weight);
    font-size: var(--text-sm, 0.875rem);
    line-height: 1.2;
}
.contact-form-block .forminator-input,
.contact-form-block .forminator-textarea,
.contact-form-block .forminator-select {
    padding: var(--field-padding);
    border: var(--field-border-width) solid var(--field-border-color);
    border-radius: var(--field-border-radius);
    background-color: var(--field-bg);
    font-size: var(--text-base, 1rem);
    line-height: 1.5;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
}
.contact-form-block .forminator-input:focus,
.contact-form-block .forminator-textarea:focus,
.contact-form-block .forminator-select:focus {
    outline: none;
    border-color: var(--field-focus-color);
    box-shadow: var(--field-focus-shadow);
}
/* Textarea specific */
.contact-form-block .forminator-textarea {
    min-height: 120px;
    resize: vertical;
}
/* Select specific */
.contact-form-block .forminator-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20' fill='%236b7280'%3E%3Cpath fill-rule='evenodd' d='M5.293 7.293a1 1 0 011.414 0L10 10.586l3.293-3.293a1 1 0 111.414 1.414l-4 4a1 1 0 01-1.414 0l-4-4a1 1 0 010-1.414z' clip-rule='evenodd'/%3E%3C/svg%3E");
    background-position: right var(--field-padding) center;
    background-repeat: no-repeat;
    background-size: 1.25rem;
    padding-right: calc(var(--field-padding) * 3);
}
/* Radio and Checkbox */
.contact-form-block .forminator-radio,
.contact-form-block .forminator-checkbox {
    display: flex;
    align-items: flex-start;
    gap: var(--space-2xs, 0.5rem);
}
.contact-form-block .forminator-radio input[type="radio"],
.contact-form-block .forminator-checkbox input[type="checkbox"] {
    margin-top: 0.125rem;
    flex-shrink: 0;
}
/* Button Styles */
.contact-form-block .forminator-button-submit {
    padding: var(--button-padding);
    border-radius: var(--field-border-radius);
    font-weight: var(--font-semi, 500);
    transition: all 0.2s ease;
    cursor: pointer;
    border: 2px solid transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-2xs, 0.5rem);
}
/* Button Styles - Primary */
.contact-form-block--button-primary .forminator-button-submit {
    background-color: var(--color-primary, #3b82f6);
    color: var(--color-white, #ffffff);
}
.contact-form-block--button-primary .forminator-button-submit:hover {
    background-color: var(--color-primary-dark, #2563eb);
}
/* Button Styles - Secondary */
.contact-form-block--button-secondary .forminator-button-submit {
    background-color: var(--color-gray-200, #e5e7eb);
    color: var(--color-gray-800, #1f2937);
}
.contact-form-block--button-secondary .forminator-button-submit:hover {
    background-color: var(--color-gray-300, #d1d5db);
}
/* Button Styles - Outline */
.contact-form-block--button-outline .forminator-button-submit {
    background-color: transparent;
    color: var(--color-primary, #3b82f6);
    border-color: var(--color-primary, #3b82f6);
}
.contact-form-block--button-outline .forminator-button-submit:hover {
    background-color: var(--color-primary, #3b82f6);
    color: var(--color-white, #ffffff);
}
/* Button Styles - Ghost */
.contact-form-block--button-ghost .forminator-button-submit {
    background-color: transparent;
    color: var(--color-primary, #3b82f6);
}
.contact-form-block--button-ghost .forminator-button-submit:hover {
    background-color: var(--color-gray-100, #f3f4f6);
}
/* Button Sizes */
.contact-form-block--button-small .forminator-button-submit {
    padding: var(--space-2xs, 0.5rem) var(--space-s, 1rem);
    font-size: var(--text-sm, 0.875rem);
}
.contact-form-block--button-large .forminator-button-submit {
    padding: var(--space-s, 1rem) var(--space-l, 2rem);
    font-size: var(--text-lg, 1.125rem);
}
/* Button Full Width */
.contact-form-block--button-full .forminator-button-submit {
    width: 100%;
}
/* Form Spacing Variations */
.contact-form-block--spacing-compact {
    --form-gap: var(--space-s, 1rem);
    --field-gap: var(--space-xs, 0.75rem);
    --field-padding: var(--space-2xs, 0.5rem);
}
.contact-form-block--spacing-spacious {
    --form-gap: var(--space-l, 2rem);
    --field-gap: var(--space-m, 1.5rem);
    --field-padding: var(--space-s, 1rem);
}
/* Form Style Variations */
/* Modern Style */
.contact-form-block--style-modern {
    --field-border-color: transparent;
    --field-bg: var(--color-gray-100, #f3f4f6);
    --field-border-radius: var(--radius-m, 0.5rem);
}
.contact-form-block--style-modern .forminator-input:focus,
.contact-form-block--style-modern .forminator-textarea:focus,
.contact-form-block--style-modern .forminator-select:focus {
    --field-bg: var(--color-white, #ffffff);
    border-color: var(--field-focus-color);
}
/* Minimal Style */
.contact-form-block--style-minimal {
    --field-border-color: transparent;
    --field-border-width: 0 0 1px 0;
    --field-border-radius: 0;
    --field-padding: var(--space-2xs, 0.5rem) 0;
    --field-bg: transparent;
}
/* Bordered Style */
.contact-form-block--style-bordered {
    --field-border-width: 2px;
    --field-border-color: var(--color-gray-900, #111827);
    --field-border-radius: 0;
}
/* No Labels */
.contact-form-block--no-labels .forminator-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* Placeholder Labels */
.contact-form-block--placeholder-labels .forminator-label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
/* Error Messages */
.contact-form-block .forminator-error-message {
    color: var(--error-color);
    font-size: var(--text-sm, 0.875rem);
    margin-top: var(--space-2xs, 0.5rem);
}
.contact-form-block .forminator-field.forminator-has_error .forminator-input,
.contact-form-block .forminator-field.forminator-has_error .forminator-textarea,
.contact-form-block .forminator-field.forminator-has_error .forminator-select {
    border-color: var(--error-color);
}
/* Success Messages */
.contact-form-block .forminator-response-message {
    padding: var(--space-s, 1rem);
    border-radius: var(--field-border-radius);
    margin-top: var(--space-m, 1.5rem);
}
.contact-form-block .forminator-success {
    background-color: var(--color-green-50, #f0fdf4);
    color: var(--success-color);
    border: 1px solid var(--color-green-200, #bbf7d0);
}
.contact-form-block .forminator-error {
    background-color: var(--color-red-50, #fef2f2);
    color: var(--error-color);
    border: 1px solid var(--color-red-200, #fecaca);
}
/* Loading State */
.contact-form-block .forminator-loading {
    display: inline-flex;
    align-items: center;
    gap: var(--space-2xs, 0.5rem);
}
.contact-form-block .forminator-loading::before {
    content: "";
    width: 1rem;
    height: 1rem;
    border: 2px solid var(--color-gray-300, #d1d5db);
    border-top-color: var(--color-primary, #3b82f6);
    border-radius: 50%;
    animation: forminator-spin 0.6s linear infinite;
}
@keyframes forminator-spin {
    to {
        transform: rotate(360deg);
    }
}
/* Required Fields */
.contact-form-block .forminator-required {
    color: var(--error-color);
}
/* File Upload */
.contact-form-block .forminator-upload {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--space-m, 1.5rem);
    border: 2px dashed var(--field-border-color);
    border-radius: var(--field-border-radius);
    background-color: var(--color-gray-50, #f9fafb);
    transition: all 0.2s ease;
}
.contact-form-block .forminator-upload:hover {
    border-color: var(--field-focus-color);
    background-color: var(--color-blue-50, #eff6ff);
}
.contact-form-block .forminator-upload input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}
/* Progress Bar */
.contact-form-block .forminator-progress {
    height: 4px;
    background-color: var(--color-gray-200, #e5e7eb);
    border-radius: 2px;
    overflow: hidden;
    margin-bottom: var(--space-m, 1.5rem);
}
.contact-form-block .forminator-progress-bar {
    height: 100%;
    background-color: var(--field-focus-color);
    transition: width 0.3s ease;
}
/* GDPR/Consent */
.contact-form-block .forminator-consent {
    display: flex;
    align-items: flex-start;
    gap: var(--space-xs, 0.75rem);
    font-size: var(--text-sm, 0.875rem);
    line-height: 1.5;
}
.contact-form-block .forminator-consent input[type="checkbox"] {
    margin-top: 0.125rem;
    flex-shrink: 0;
}
/* Error Block */
.contact-form-block__error {
    padding: var(--space-m, 1.5rem);
    background-color: var(--color-gray-100, #f3f4f6);
    border: 1px solid var(--color-gray-300, #d1d5db);
    border-radius: var(--field-border-radius);
    text-align: center;
    color: var(--color-gray-600, #4b5563);
}
/* Responsive */
@media (max-width: 640px) {
    .contact-form-block--columns-2 .forminator-row,
    .contact-form-block--columns-3 .forminator-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-block--button-full .forminator-button-submit {
        width: 100%;
    }
}
/* Content List Block */
.content-list-block__header {
    margin-block-end: var(--space-l-xl, 2rem);
}
.content-list-block__list {
    list-style: none;
    padding: 0;
    margin: 0;
}
/* Stacked layout — vertical list */
.content-list-block--stacked .content-list-block__item {
    --flow-space: var(--space-3xs, 0.15rem);
    padding-block: var(--space-m, 1rem);
    border-block-end: 1px solid rgba(0, 0, 0, 0.1);
    display: flex;
    gap: var(--space-m, 1rem);
    align-items: flex-start;
}
.content-list-block--stacked .content-list-block__item:first-child {
    border-block-start: 1px solid rgba(0, 0, 0, 0.1);
}
/* Grid layout — 2 or 3 columns */
.content-list-block--grid .content-list-block__list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 20rem), 1fr));
    gap: var(--gutter, 1.5rem);
}
.content-list-block--grid .content-list-block__item {
    --flow-space: var(--space-3xs, 0.15rem);
}
/* Numbered counter */
.content-list-block__counter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--color-dark, #030303);
    color: var(--color-light, #fff);
    font-weight: var(--font-extra-bold, 700);
    font-size: var(--size-md, 1rem);
}
/* Typography */
.content-list-block__item-title {
    font-size: var(--size-lg, 1.25rem);
    font-weight: var(--font-extra-bold, 700);
    line-height: var(--leading-tight, 1.2);
}
.content-list-block__item-desc {
    font-size: var(--size-md, 1rem);
    opacity: 0.85;
    margin-block-start: var(--space-3xs, 0.15rem);
}
/* Buttons */
.content-list-block__buttons {
    margin-block-start: var(--space-l, 2rem);
}
/* Copy + image block — alternating two-column rows.
   Image is absolutely positioned inside its cell so the cell's intrinsic
   height is zero — the grid row sizes to the text column, and the image
   fills that height. No more towering portrait images. */
.copy-and-image-block__row {
	align-items: stretch;
	padding-block: var(--space-l-xl, 2.5rem);
}
.copy-and-image-block__row h2 {
		font-size: var(--size-xl);
	}
.copy-and-image-block__copy {
	display: flex;
	flex-direction: column;
	justify-content: center;
	max-width: 45ch;
}
/* Reverse the visual order when the editor flags it. Grid order only —
   DOM order stays copy → image for source readability. */
.copy-and-image-block__row[data-state="reversed"] > .copy-and-image-block__copy {
	order: 2;
}
.copy-and-image-block__row[data-state="reversed"] > .copy-and-image-block__image {
	order: 1;
}
/* Image cell — positioning context for the absolute image. */
.copy-and-image-block__image {
	position: relative;
	overflow: hidden;
	border-radius: var(--radius-card);
	min-height: 35vh;
}
.copy-and-image-block__img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* Copy Block */
.copy-block__heading {
  font-size: var(--size-xl, 1.5rem);
}
.copy-block__img,
.copy-block__image img {
  border-radius: var(--radius-card);
}
/* Impact layout — large heading */
.copy-block--impact .copy-block__heading {
  font-size: var(--size-3xl, clamp(2rem, 3vw + 1rem, 3.5rem));
  line-height: 1.1;
  text-wrap: balance;
}
/* CTA Block Styles */
#main > section.cta-block,
section.cta-block {
  --cta-padding: var(--space-2xl-3xl);
  --cta-bg: var(--color-surface);
  --cta-color: var(--color-text);
  --cta-content-max: 50%;

  position: relative;
  padding-block: var(--cta-padding);
  /* background: var(--cta-bg);
  color: var(--cta-color); */
  isolation: isolate;
  overflow: hidden;
}
/* Full-bleed background image */
.cta-block__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.cta-block__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cta-block--has-bg-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.2) 38.82%, rgba(102, 102, 102, 0.2) 60.35%);
  pointer-events: none;
}
/* Content container — left-aligned, 50% max width on desktop */
.cta-block__content {
  --flow-space: var(--space-m);
  max-inline-size: 100%;
  margin-inline: 0;
  text-align: left;
}
@media (min-width: 768px) {
  .cta-block__content {
    max-inline-size: var(--cta-content-max, 50%);
  }
}
/* Alignment variations (legacy / opt-in) */
.cta-block--align-center .cta-block__content {
  text-align: center;
  margin-inline: auto;
}
.cta-block--align-right .cta-block__content {
  text-align: right;
  margin-inline-start: auto;
  margin-inline-end: 0;
}
.cta-block__content-text {
  font-size: var(--size-md, 1rem);
  line-height: var(--leading-standard, 1.5);
  max-width: 600px;
  /* Override the .flow utility's default top margin so this paragraph sits
     closer to the heading above. */
  margin-top: 1rem;
}
/* Button group — left by default */
.cta-block__buttons {
  --cluster-gap: var(--space-s);
  --cluster-horizontal-alignment: flex-start;
  margin-block-start: var(--space-m-l);
}
.cta-block--align-center .cta-block__buttons {
  --cluster-horizontal-alignment: center;
}
.cta-block--align-right .cta-block__buttons {
  --cluster-horizontal-alignment: flex-end;
}
/* Button adjustments for CTA context */
.cta-block--bg-primary .button[data-variant="primary"],
.cta-block--bg-accent .button[data-variant="primary"],
.cta-block--bg-gradient .button[data-variant="primary"] {
  --button-bg: var(--color-surface);
  --button-color: var(--color-text);
  --button-hover-bg: var(--color-gray-100);
}
.cta-block--bg-primary .button[data-variant="secondary"],
.cta-block--bg-accent .button[data-variant="secondary"],
.cta-block--bg-gradient .button[data-variant="secondary"] {
  --button-bg: transparent;
  --button-color: var(--color-text-inverse);
  --button-border: 2px solid currentColor;
  --button-hover-bg: rgba(255, 255, 255, 0.1);
}
/* Focus states with good contrast */
.cta-block .button:focus-visible {
  outline: 3px solid var(--cta-color);
  outline-offset: 2px;
}
/* Dark background focus adjustment */
.cta-block--bg-primary .button:focus-visible,
.cta-block--bg-accent .button:focus-visible,
.cta-block--bg-gradient .button:focus-visible {
  outline-color: var(--color-surface);
}
/* Large CTA variant — use class "cta-block--large" or padding "large" */
.cta-block.u-padding-large,
.cta-block--large {
  --cta-padding: var(--space-3xl-4xl, 8rem);
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .cta-block {
    --cta-padding: var(--space-l-xl);
  }

  .cta-block__buttons {
    flex-direction: column;
    align-items: stretch;
    /* Stacked buttons need an explicit vertical gap — the cluster's --gutter
       default reads as zero in this context, so the buttons sat flush. */
    gap: var(--space-s, 1rem);
  }

  .cta-block__buttons .button {
    width: 100%;
    justify-content: center;
  }
}
.block--gallery img {
	width: 100%;
}
/* LAYOUT A */
.block--gallery.layout-a .image-gallery-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(2, 1fr);
	grid-column-gap: var(--space-3xs, 1rem);
	grid-row-gap: var(--space-3xs, 1rem);
	grid-auto-flow: row;
}
.block--gallery.layout-a .image-gallery-grid picture,
.block--gallery.layout-a .image-gallery-grid img { height: 100%; }
.block--gallery.layout-a .image-gallery-grid img { object-fit: cover; }
.block--gallery.layout-a .image-gallery-grid > *:nth-child(4n+1) { 
	grid-column-start: 1;
	grid-column-end: 4;
}
.block--gallery.layout-a .image-gallery-grid > *:nth-child(4n+2) {
	grid-column-start: 4;
	grid-column-end: 6;
}
.block--gallery.layout-a .image-gallery-grid > *:nth-child(4n+3) { 
	grid-column-start: 1;
	grid-column-end: 3;
}
.block--gallery.layout-a .image-gallery-grid > *:nth-child(4n+4) { 
	grid-column-start: 3;
	grid-column-end: 6;
}
/* LAYOUT B */
.block--gallery.layout-b .image-gallery-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	/* grid-template-rows: repeat(2, 1fr); */
	grid-column-gap: var(--space-3xs, 1rem);
	grid-row-gap: var(--space-3xs, 1rem);
	grid-auto-flow: row;
}
.block--gallery.layout-b .image-gallery-grid picture,
.block--gallery.layout-b .image-gallery-grid img { height: 100%; }
.block--gallery.layout-b .image-gallery-grid img { object-fit: cover; }
.block--gallery.layout-b .image-gallery-grid > *:nth-child(3n+1) { 
	grid-column-start: 1;
	grid-column-end: 7;
}
.block--gallery.layout-b .image-gallery-grid > *:nth-child(3n+2) {
	grid-column-start: 1;
	grid-column-end: 4;
}
.block--gallery.layout-b .image-gallery-grid > *:nth-child(3n+3) { 
	grid-column-start: 4;
	grid-column-end: 7;
}
/* Hero block — left-aligned content with optional title icon + tech partners row */
.hero-block {
	--hero-padding-block: var(--space-2xl-3xl, 5rem);
	--hero-content-max: 60ch;
	--hero-keyline-color: var(--color-keyline, rgba(0, 0, 0, 0.18));

	position: relative;
	padding-block: var(--hero-padding-block);
	isolation: isolate;
	overflow: hidden;
	min-height: 60vh;
}
.hero-block:after {
		content: '';
		background: linear-gradient(0deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.2)),
linear-gradient(180deg, rgba(0, 0, 0, 0) 61.97%, rgba(0, 0, 0, 0.1875) 69.58%, rgba(0, 0, 0, 0.375) 100%);
		display: block;
		position: relative;
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
		position: absolute;
	}
.hero-block__content {
	position: relative;
	margin-right: auto;
	z-index: 2;
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: var(--space-l-xl, 2.5rem);
}
.hero-block__inner {
	text-align: left;
}
/* Title icon / image */
.hero-block__icon {
	margin-block-end: var(--space-s, 1rem);
}
.hero-block__icon img {
	display: block;
	height: auto;
	max-height: 4rem;
	width: auto;
	max-width: 100%;
}
/* Heading uses .h0 (added in fonts.css) — no override needed here */
.hero-block__heading {
	color: inherit;
	/* Help long hero titles wrap to balanced lines on phones instead of an
	   awkward orphan word at the end */
	text-wrap: balance;
}
.hero-block__text {
	font-size: var(--size-lg, 1.125rem);
	line-height: var(--leading-standard, 1.5);
	max-inline-size: var(--measure, 65ch);
}
.hero-block__buttons {
	--cluster-horizontal-alignment: flex-start;
	margin-block-start: var(--space-m, 1.5rem);
}
/* Background — keep absolute placement so media can sit behind content */
.hero-block__background {
	position: absolute;
	inset: 0;
	z-index: -1;
}
.hero-block__background img,
.hero-block__background video,
.hero-block__background iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
/* Tech partners row */
.hero-block__partners {
	padding-block-start: var(--space-m, 1.25rem);
	border-block-start: 1px solid var(--color-orange);
}
/* Override the Tailwind `flex justify-center items-center` set inline on the
   wrapper so the intro label stacks above the logos on phones. Two classes
   beat the single-class Tailwind utility. */
.hero-block .hero-block__partners {
	flex-direction: column;
	align-items: stretch;
	gap: var(--space-s, 1rem);
}
@media (min-width: 1200px) {
	.hero-block .hero-block__partners {
		flex-direction: row;
		align-items: center;
		gap: var(--space-m, 1.5rem);
	}
}
.hero-block__partners-intro {
	text-align: left;
    padding-right: var(--space-l, 2rem);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
@media (min-width: 1200px) {
.hero-block__partners-intro {
		border-right: 1px solid var(--color-white)
}
	}
@media (min-width: 768px) {
	.hero-block__partners-intro {
		text-align: inherit;
	}
}
.hero-block__partners-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	/* Mobile: 3 logos per row in a tidy grid */
	grid-template-columns: repeat(2, 1fr);
	align-items: center;
	gap: var(--space-s, 1rem);
}
/* From md up, swap to the original wrapping row with the divider + offset */
@media (min-width: 768px) {
	.hero-block__partners-list {
		display: flex;
		flex-wrap: wrap;
		gap: var(--space-l, 2rem);
	}
}
.hero-block__partner {
	display: flex;
	align-items: center;
	justify-content: center;
}
.hero-block__partner-logo {
	display: block;
	width: 100%;
	max-width: 100%;
	min-height: 3rem;
	background-color: var(--color-white);
	-webkit-mask: var(--logo-url) center / contain no-repeat;
	mask: var(--logo-url) center / contain no-repeat;
}
/* Restore the desktop logo sizing once the row layout takes over */
@media (min-width: 768px) {
	.hero-block__partner-logo {
		width: auto;
		min-width: 160px;
		min-height: 6rem;
	}
}
.page-block-hero {
	min-height: 60vh;
    display: flex;
    align-items: center;
}
/* Home Hero Block — full-bleed video bg, centred title + play */
.home-hero-block {
  position: relative;
  min-height: 80vh;
  max-height: 99vh;
  height: 99vh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}
/* Full-bleed video background */
.home-hero-block__video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.home-hero-block__video-bg .block-placeholder {
  height: 100%;
  aspect-ratio: auto;
}
.home-hero-block__video-bg iframe,
.home-hero-block__video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Centred content overlay — flex column */
.home-hero-block__content {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-block: var(--space-2xl-3xl, 6rem);
}
.home-hero-block__content .flow {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-m-l, 1.5rem);
}
.home-hero-block__heading {
  font-size: var(--size-4xl, clamp(2.5rem, 4vw + 1rem, 4.5rem));
  line-height: 1.1;
  text-wrap: balance;
  max-width: 20ch;
}
/* Play button */
.home-hero-block__play-btn {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 2px solid currentColor;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-dark, #030303);
  cursor: pointer;
  display: grid;
  place-items: center;
  transition: transform 0.2s ease;
}
.home-hero-block__play-btn:hover {
  transform: scale(1.1);
}
.home-hero-block__play-btn svg {
  width: 1.5rem;
  height: 1.5rem;
}
/* The image block goes flush — the prototype-section padding shouldn't apply. */
#main > section.block--image {
	padding-block: 0;
}
.block--image img {
	display: block;
	width: 100%;
	max-height: 30vh;
	object-fit: cover;
}
@media (min-width: 700px) {
.block--image img {
		max-height: 540px
}
	}
/* Contained (not full-bleed) image block gets brand corner radius */
.block--image.wrapper img {
	border-radius: var(--radius-card);
}
/* Latest Posts block */
.latest-posts-block {
	padding-block: var(--block-spacing, 3rem);
}
.latest-posts-block__header {
	max-inline-size: 70ch;
	margin-block-end: var(--space-l-xl, 2.5rem);
	margin-inline: auto;
}
.latest-posts-block__eyebrow {
	margin-block-end: var(--space-2xs, 0.5rem);
	color: var(--color-orange);
}
.latest-posts-block__heading {
	margin: 0;
}
.latest-posts-block__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-m, 1.5rem);
}
@media (min-width: 1024px) {
	.latest-posts-block__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.latest-posts-block__footer {
	margin-block-start: var(--space-2xl-3xl, 5rem);
	text-align: center;
}
/* Logo Wall Block */
.logo-wall-block__header {
    margin-block-end: var(--space-l-xl, 2rem);
}
.logo-wall-block__heading {
    margin-block-start: 0;
    font-size: var(--size-xl);
    text-align: center;
}
.logo-wall-block__grid {
    --logo-columns: 4;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--gutter, 1.5rem);
    align-items: center;
}
/* Each logo cell takes one slice of the row (default 4-up).
   flex-grow stops at the basis so a lone logo on a new row doesn't
   stretch full width — it stays centred at its natural cell size. */
.logo-wall-block__item {
    flex: 0 1 calc((100% / var(--logo-columns, 4)) - var(--gutter, 1.5rem));
    display: flex;
    align-items: center;
    justify-content: center;
}
@media (max-width: 768px) {
    .logo-wall-block__item {
        flex-basis: calc(50% - var(--gutter, 1.5rem));
    }
}
.logo-wall-block__item {
    display: flex;
    align-items: center;
    justify-content: center;
    /* padding: var(--space-s, 0.75rem); */
}
.logo-wall-block__item a {
    display: flex;
}
.logo-wall-block__logo {
    display: block;
    width: 100%;
    height: 8rem;
    background-color: var(--color-blue-light);
    -webkit-mask: var(--logo-url) center / contain no-repeat;
            mask: var(--logo-url) center / contain no-repeat;
    transition: background-color var(--transition-base), opacity var(--transition-base);
}
.logo-wall-block__buttons {
    margin-block-start: var(--space-l, 2rem);
}
/* Map Block */
.map-block {
	position: relative;
}
.map-block__container {
	position: relative;
}
/* Map Image */
.map-block__image-wrapper {
	position: relative;
	width: 100%;
}
.map-block__image {
	width: 100%;
	height: auto;
	display: block;
}
/* Walk Times Key - Stacked on mobile */
.map-block__key {
	background-color: var(--color-dark-green, #1a3a2f);
	color: var(--color-light-green, #90c9a7);
	padding: var(--space-m, 1.5rem);
}
@media (min-width: 1230px) {
	/* Desktop: Inset positioning */
	.map-block__key {
		position: absolute;
		bottom: var(--space-l, 2rem);
		left: var(--space-l, 2rem);
		max-width: 320px;
		padding: var(--space-m, 1.5rem);
	}
}
.map-block__key-title {
	font-size: var(--size-lg, 1.25rem);
	font-weight: 600;
	margin: 0 0 var(--space-s, 1rem) 0;
	color: var(--color-light-green, #90c9a7);
}
.map-block__key-list {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-xs, 0.5rem);
}
.map-block__key-item {
	display: flex;
	align-items: center;
	gap: var(--space-s, 0.75rem);
}
/* Icon styling */
.map-block__key-icon {
	flex-shrink: 0;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.map-block__key-icon svg {
	width: 100%;
	height: 100%;
	fill: var(--color-light-green, #90c9a7);
}
.map-block__key-icon-img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
/* Text styling */
.map-block__key-text {
	display: flex;
	flex-direction: column;
	gap: 0;
}
.map-block__key-location {
	font-weight: 500;
	color: var(--color-light-green, #90c9a7);
	font-size: var(--size-md, 1rem);
}
.map-block__key-time {
	font-size: var(--size-xs, 0.875rem);
	color: var(--color-light-green, #90c9a7);
	opacity: 0.8;
}
/* Empty state */
.map-block__empty {
	padding: var(--space-l, 2rem);
	text-align: center;
	background-color: var(--color-sand, #f5f5f0);
	color: var(--color-dark-green, #1a3a2f);
}
/* Methods & Services block */
.methods-and-services-block {
	--mas-keyline-color: var(--color-keyline, rgba(0, 0, 0, 0.12));
	padding-block: var(--block-spacing, 3rem);
}
.methods-and-services-block .wrapper {
	--flow-space: var(--space-l, 2rem);
}
.methods-and-services-block__heading {
	font-size: var(--size-2xl, 2rem);
	line-height: var(--leading-tight, 1.2);
	text-align: left;
	max-inline-size: 65ch;
	margin-inline-end: auto;
}
.methods-and-services-block .methods-and-services-block__intro {
	margin-top: 1rem;
	max-inline-size: 65ch;
	font-size: var(--size-md, 1rem);
	line-height: var(--leading-standard, 1.5);
}
.methods-and-services-block__intro p:first-child {
	margin-top: 0;
}
/* Method list — flex so items naturally distribute (2 → 50/50, 3 → 33/33/33, etc.) */
.methods-and-services-block__method-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-l, 2rem);
}
.methods-and-services-block__methods .methods-and-services-block__method-list {
		gap: var(--space-m, 2rem);
	}
.methods-and-services-block__method {
	flex: 1 1 14rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: var(--space-s, 1rem);
	padding: var(--space-m, 1.5rem);
	border: 1px solid rgb(255 255 255 / 20%);
	border-radius: var(--radius-card);
}
.methods-and-services-block__method-icon {
	display: inline-flex;
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	color: inherit;
}
.methods-and-services-block__method-icon svg {
	width: 100%;
	height: 100%;
	stroke-width: 1;
}
.methods-and-services-block__method-label {
	font-size: var(--size-lg, 1.125rem);
	font-weight: var(--font-extra-bold, 600);
	line-height: var(--leading-tight, 1.2);
	display: flex;
	flex-direction: column;
	gap: var(--space-3xs, 0.25rem);
}
.methods-and-services-block__method-footnote {
	font-size: var(--size-sm, 0.85rem);
	font-weight: normal;
}
/* Taxa grid stays as before */
.methods-and-services-block .methods-and-services-block__taxa-grid {
	gap: 2rem;
}
/* Taxon card — image-backed (linked service's featured image), centred
   overlay content. Same visual language as .service-card but laid out
   centre-aligned per the brief. */
.methods-and-services-block__taxon {
	display: flex;
}
.methods-and-services-block__taxon-link {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	align-items: stretch;
	text-align: center;
	gap: var(--space-m, 1rem);
	padding: var(--space-m, 2rem);
	padding-block-end: 0; /* footer band sits flush to the card bottom */
	/* min-height: var(--service-card-min-height); */
	min-height: calc(var(--service-card-min-height)*1.5);
	width: 100%;
	color: var(--color-white);
	background-color: var(--color-green-dark);
	text-decoration: none;
	border-radius: var(--radius-card);
	transition: transform var(--transition-base, 0.2s);
}
/* On larger screens push the taxon cards taller for visual presence. */
@media (min-width: 1400px) {
	.methods-and-services-block__taxon-link {
		min-height: 40rem;
	}
}
.methods-and-services-block__taxon-link:hover,
.methods-and-services-block__taxon-link:focus-visible {
	transform: translateY(-2px);
}
.methods-and-services-block__taxon-image {
	position: absolute;
	inset: 0;
	z-index: 0;
	margin: 0;
}
.methods-and-services-block__taxon-image::after {
	content: "";
	position: absolute;
	inset: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32.59%, rgba(0, 0, 0, 0.375) 41.04%, rgba(0, 0, 0, 0.75) 74.81%);
	z-index: 1;
}
.methods-and-services-block__taxon-photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--transition-base, 0.2s);
}
.methods-and-services-block__taxon-link:hover .methods-and-services-block__taxon-photo,
.methods-and-services-block__taxon-link:focus-visible .methods-and-services-block__taxon-photo {
	transform: scale(1.03);
}
.methods-and-services-block__taxon-content {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	width: 100%;
	gap: 0;
	color: inherit;
	margin-block: 0; /* keeps content centred when card has min-height */
}
.methods-and-services-block__taxon-label {
	margin: 0;
	font-size: var(--size-2xl, 1.5rem);
	font-weight: var(--font-extra-bold, 700);
	line-height: var(--leading-tight, 1.2);
	color: inherit;
	text-align: center;
}
.methods-and-services-block__taxon-points {
	list-style: disc;
	padding-inline-start: 1.2rem;
	margin: 0;
	text-align: left;
	display: flex;
	flex-direction: column;
	gap: 0;
}
.methods-and-services-block__taxon-points li {
	font-size: var(--size-sm, 0.875rem);
	line-height: var(--leading-standard, 1.5);
	opacity: 0.9;
}
/* Green footer band — eye icon + service name centred, arrow on the right.
   On card hover: bg shifts to light-green and the band grows in height. */
.methods-and-services-block__taxon-footer {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--space-s, 0.75rem);
	margin-inline: calc(var(--space-l, 2rem) * -1); /* break out of card padding */
	padding-block: var(--space-s, 1rem);
	padding-inline: var(--space-l, 2rem);
	background-color: var(--color-green);
	color: var(--color-white);
	font-weight: var(--font-extra-bold, 700);
	transition: background-color var(--transition-base, 250ms ease),
				padding-block var(--transition-base, 250ms ease);
}
.methods-and-services-block__taxon-link:hover .methods-and-services-block__taxon-footer,
.methods-and-services-block__taxon-link:focus-visible .methods-and-services-block__taxon-footer {
	background-color: var(--color-green-light);
	padding-block: var(--space-m, 1.5rem);
}
.methods-and-services-block__taxon-footer-icon,
.methods-and-services-block__taxon-footer-arrow {
	display: inline-flex;
	flex-shrink: 0;
	width: 2rem;
	height: 2rem;
}
.methods-and-services-block__taxon-footer-icon {
	width: 53px;
    height: 53px;
}
.methods-and-services-block__taxon-footer-icon svg,
.methods-and-services-block__taxon-footer-arrow svg {
	width: 100%;
	height: 100%;
}
/* Push the arrow to the right edge while keeping eye + name centred. */
/* .methods-and-services-block__taxon-footer-arrow {
	margin-inline-start: auto;
} */
.methods-and-services-block__taxon-footer-name {
	font-size: var(--size-xl, 2rem);
	line-height: 1.1;
}
.methods-and-services-block__footer {
	text-align: center;
}
/* Page Hero block — full-bleed background media with content overlaid.
   Mirrors the home / .hero-block treatment (absolute media, z-indexed content). */
.page-hero-block {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	padding-block: var(--space-2xl-3xl, 5rem);
	min-height: 600px;
	height: 50vh;
	display: flex;
	flex-direction: column;
	justify-content: center;
}
.page-hero-block .page-hero-block__content-wrapper {
	padding-block-end: var(--space-l, 1.5rem);
}
/* media-wrapper just lays out children; the media itself is absolutely
   positioned against the .page-hero-block so it fills the whole section,
   including the padding band. No positioning context on the wrapper. */
.page-hero-block__media-wrapper {
	position: static;
}
/* The image / slideshow / vimeo sits behind the content. */
.page-hero-block__media {
	position: absolute;
	inset: 0;
	z-index: -1;
}
.page-hero-block__media img,
.page-hero-block__media .page-hero-block__image,
.page-hero-block__media video,
.page-hero-block__media iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
/* Darken the media a touch so the white content stays readable. */
.page-hero-block__media::after {
	content: "";
	position: absolute;
	inset: 0;
	/* background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.45) 100%); */
	pointer-events: none;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.35) 200%);
}
/* Content overlay sits in front of the media. */
.page-hero-block__content-overlay {
	position: relative;
	z-index: 2;
}
/* Process steps block — horizontal (4/8 image+grid) and vertical (full-width stack) */
.process-steps-block {
	--ps-step-padding: var(--space-s-m, 1.75rem);
	--ps-number-size: var(--size-2xl, 2.5rem);

	position: relative;
	padding-block: var(--block-spacing, 3rem);
}
/* Full-bleed background image */
.process-steps-block__bg {
	position: absolute;
	overflow: hidden;
}
.process-steps-block__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.process-steps-block--has-bg::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: -1;
	background: rgba(255, 255, 255, 0.7);
	pointer-events: none;
}
/* Centralised section intro */
.process-steps-block__header {
	max-inline-size: 65ch;
	margin-inline: auto;
	margin-block-end: var(--space-l-xl, 2.5rem);
	text-align: center;
}
/* ---------- HORIZONTAL LAYOUT (image left + 2x grid right) ---------- */
.process-steps-block--horizontal .process-steps-block__layout {
	display: grid;
	gap: var(--space-s, 2rem);
	grid-template-columns: 1fr;
}
@media (min-width: 900px) {
	.process-steps-block--horizontal .process-steps-block__layout {
		grid-template-columns: 6fr 8fr;
		align-items: start;
	}
}
.process-steps-block__side-image {
	width: 100%;
	height: 100%;
	position: relative;
	border-radius: var(--radius-card);
	overflow: hidden;
	/* Reserve a sensible aspect on smaller screens where the stacked images
	   are absolutely-positioned and need an intrinsic height to render */
	min-height: 18rem;
}
.process-steps-block__side-image img {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
	border-radius: var(--radius-card);
}
/* When the block has per-step images they're stacked on top of each other —
   only the .is-active one is shown and they cross-fade as the steps cycle */
.process-steps-block__side-image-item {
	position: absolute;
	inset: 0;
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
}
.process-steps-block__side-image-item.is-active {
	opacity: 1;
}
@media (min-width: 900px) {
	.process-steps-block--horizontal .process-steps-block__side-image {
		min-height: 100%;
	}

	.process-steps-block--horizontal .process-steps-block__side-image img {
		height: 100%;
	}
}
.process-steps-block--horizontal .process-steps-block__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-s, 2rem);
}
@media (min-width: 700px) {
	.process-steps-block--horizontal .process-steps-block__list {
		grid-template-columns: repeat(2, 1fr);
	}
}
/* Step in horizontal: number+title flex row top, icon+text flex row bottom.
   1px transparent border keeps the box geometry stable when .is-active
   swaps it for a 1px white outline, so step contents don't jump. */
.process-steps-block--horizontal .process-steps-block__step {
	display: flex;
	flex-direction: column;
	gap: var(--space-s, 1rem);
	padding: var(--ps-step-padding);
	border-radius: var(--radius-card);
	border: 1px solid transparent;
	transition: border-color 0.3s ease;
}
.process-steps-block--horizontal .process-steps-block__step.is-active {
	border-color: var(--color-white);
}
.process-steps-block--horizontal .process-steps-block__step-head {
	display: flex;
	flex-direction: row;
	gap: var(--space-m, 1rem);
}
.process-steps-block--horizontal .process-steps-block__step-body {
	display: flex;
	flex-direction: row;
	align-items: flex-start;
	gap: var(--space-m, 1rem);
}
/* ---------- VERTICAL LAYOUT (full-width stack, padded coloured blocks) ---------- */
.process-steps-block--vertical .process-steps-block__list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: flex;
	flex-direction: column;
	gap: var(--space-s, 2rem);
}
/* Vertical layout — green theme override.
   Higher specificity than the .bg-blue utility from PHP so this wins. */
.process-steps-block.process-steps-block--vertical {
	background-color: var(--color-green);
}
.process-steps-block.process-steps-block--vertical .process-steps-block__step {
	background-color: var(--color-green-dark);
}
.process-steps-block--vertical .process-steps-block__step {
	display: flex;
	flex-direction: column;
	align-items: stretch;
	gap: var(--space-m, 1.5rem);
	padding: var(--ps-step-padding);
	border-radius: var(--radius-card);
}
.process-steps-block--vertical .process-steps-block__step-head {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: var(--space-s, 1rem);
}
.process-steps-block--vertical .process-steps-block__step-body {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: var(--space-s, 1rem);
}
/* Vertical layout: icon sits between the number and the label in the head
   (source order set by process-steps.php). On larger screens the head + body
   sit side-by-side at 50/50. Horizontal layout keeps its stacked
   "number + title on top, icon + copy on bottom" arrangement at all sizes. */
@media (min-width: 900px) {
	.process-steps-block--vertical .process-steps-block__step {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
	}

	.process-steps-block--vertical .process-steps-block__step-head,
	.process-steps-block--vertical .process-steps-block__step-body {
		width: 50%;
	}
}
.process-steps-block--vertical .process-steps-block__step-icon {
	order: 0; /* puts icon between head (number+title) and copy */
}
/* ---------- Shared step element styles ---------- */
.process-steps-block__step-number {
	font-family: var(--font-albra-semi);
	font-size: var(--ps-number-size);
	line-height: 1;
	font-weight: var(--font-extra-bold, 700);
	color: inherit;
	flex-shrink: 0;
}
.process-steps-block__step-label {
	font-size: var(--size-xl, 1.5rem);
	font-weight: var(--font-extra-bold, 700);
	line-height: var(--leading-tight, 1.2);
	margin: 0;
}
.process-steps-block__step-icon {
	width: 60px;
	max-width: 60px;
	flex-shrink: 0;
}
.process-steps-block__step-icon img {
	width: 100%;
	height: auto;
	display: block;
}
.process-steps-block__step-copy {
	margin: 0;
	font-size: var(--size-sm, 1rem);
	line-height: var(--leading-standard, 1.5);
}
/* Product grid — featured asymmetric (bento) layout.
 * First service spans a large 3×4 block on the left.
 * Remaining services stack to the right as 2×2 blocks.
 * Card visual treatment comes from service-card.css. */
.product-grid-featured {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	grid-template-rows: repeat(4, 1fr);
	gap: var(--space-s, 1rem);
	min-height: min(80vh, 720px);
}
.product-grid-featured__cell[data-role="feature"] {
	grid-area: 1 / 1 / 5 / 4;
}
.product-grid-featured__cell[data-role="compact"]:nth-child(2) {
	grid-area: 1 / 4 / 3 / 7;
}
.product-grid-featured__cell[data-role="compact"]:nth-child(2) .service-card__image::after {
		    background: linear-gradient(260.73deg, rgba(0, 0, 0, 0) 39.73%, rgba(0, 0, 0, 0.375) 50.57%, rgba(0, 0, 0, 0.75) 93.92%);
	}
.product-grid-featured__cell[data-role="compact"]:nth-child(3) {
	grid-area: 3 / 4 / 5 / 7;
}
.product-grid-featured__cell[data-role="compact"]:nth-child(3) .service-card__image::after {
		    background: linear-gradient(260.73deg, rgba(0, 0, 0, 0) 39.73%, rgba(0, 0, 0, 0.375) 50.57%, rgba(0, 0, 0, 0.75) 93.92%);
	}
.product-grid-featured__cell {
	height: 100%;
	display: flex;
}
.product-grid-featured__cell > .service-card {
	width: 100%;
	height: 100%;
	min-height: 0;
}
/* Punchier zoom on hover than the default service-card scale. */
.product-grid-featured__cell .service-card__photo {
	transition: transform 0.6s ease;
}
.product-grid-featured__cell .service-card:hover .service-card__photo,
.product-grid-featured__cell .service-card:focus-within .service-card__photo {
	transform: scale(1.1);
}
/* Stack into a single column on narrower viewports */
@media (max-width: 900px) {
	.product-grid-featured {
		display: flex;
		flex-direction: column;
		min-height: 0;
	}

	.product-grid-featured__cell > .service-card {
		min-height: 20rem;
	}
}
/* ---------- Bottom promo ---------- */
.product-grid-featured-block__promo {
	margin-block-start: var(--space-l, 3rem);
	padding: var(--space-m, 3rem) var(--space-m, 1.5rem);
	border: 1px solid rgb(255 255 255 / 20%);
	border-radius: var(--radius-card);
	text-align: center;
}
.promo__inner {
	--flow-space: var(--space-s, 1rem);
	max-inline-size: 48ch;
	margin-inline: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.promo__inner > * {
	margin-top: 0;
}
.promo__inner > * + * {
	margin-top: var(--flow-space);
}
.promo__eyebrow {
	margin: 0;
}
.promo__heading {
	font-size: var(--size-2xl, 2rem);
	font-weight: var(--font-extra-bold, 700);
	line-height: var(--leading-tight, 1.2);
	margin: 0;
}
.promo__subheading {
	font-size: var(--size-lg, 1.25rem);
	font-weight: var(--font-semi, 600);
	line-height: var(--leading-tight, 1.2);
	margin: 0;
	opacity: 0.95;
}
.promo__content {
	font-size: var(--size-md, 1rem);
	line-height: var(--leading-standard, 1.5);
	max-inline-size: 55ch;
}
.promo__content p:first-child { margin-top: 0; }
.promo__content p:last-child  { margin-bottom: 0; }
/* Service cards row — 3-column grid, each card has its own white outline */
.promo__services {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-top: var(--space-l, 2rem);
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-s, 1rem);
	width: 100%;
}
@media (min-width: 700px) {
	.promo__services {
		grid-template-columns: repeat(3, 1fr);
		gap: var(--space-m, 1.5rem);
	}
}
.promo__service {
	display: flex;
}
.promo__service-link {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	gap: var(--space-2xs, 0.5rem);
	padding: var(--space-s, 1.5rem);
	border: 1px solid rgb(255 255 255 / 20%);
	border-radius: var(--radius-card);
	color: inherit;
	text-decoration: none;
	text-align: center;
	transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}
.promo__service-link:hover,
.promo__service-link:focus-visible {
	background-color: rgba(255, 255, 255, 0.06);
	transform: translateY(-2px);
}
.promo__service-icon {
	display: inline-flex;
	width: 3rem;
	height: 3rem;
	margin-block-end: var(--space-2xs, 0.5rem);
	color: var(--color-white);
}
.promo__service-icon svg {
	width: 100%;
	height: 100%;
}
.promo__service-title {
	font-size: var(--size-xl, 1.25rem);
	font-weight: var(--font-extra-bold, 700);
	line-height: var(--leading-tight, 1.2);
}
.promo__service-tagline {
	font-size: var(--size-sm, 0.875rem);
	line-height: var(--leading-standard, 1.5);
	opacity: 0.85;
}
/* Sector grid — 3-col on desktop, single column on mobile.
   With exactly 5 items the layout becomes a small bento: first three cards
   take 1/3 of the row each, the last two split the bottom row 50/50. */
.sector-grid-block {
	padding-block: var(--block-spacing, 3rem);
}
.sector-grid-block__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-s, 1.5rem);
}
@media (min-width: 700px) {
	.sector-grid-block__grid {
		grid-template-columns: repeat(3, 1fr);
	}

	/* Five-item bento: 3 across the top, 2 across the bottom.
	   Implemented on a 6-col scaffold so the last two each span 3 cols. */
	.sector-grid-block__grid[data-count="5"] {
		grid-template-columns: repeat(6, 1fr);
	}

	.sector-grid-block__grid[data-count="5"] > :nth-child(-n+3) {
		grid-column: span 2;
	}

	.sector-grid-block__grid[data-count="5"] > :nth-child(n+4) {
		grid-column: span 3;
	}
}
/* Service Links Block
   In auto mode renders the unified .service-card grid. The manual-mode
   link list (used when an editor hand-picks URLs) keeps its arrow rows. */
.service-links-block__header {
	margin-block-end: var(--space-l, 2rem);
}
/* Shared spacing for the cards-block header → cards grid gap. */
.cards-block__header {
	margin-block-end: var(--space-l, 2rem);
}
/* Cards grid — auto-fit columns down to a sensible card width.
   Each card matches the methods-and-services-block__taxon-link height
   so the two blocks read as the same visual unit.
   Shared with the product-grid block so both render service cards
   in the same grid + height. */
.service-links-block__cards,
.product-grid-block .cards-block__grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(16rem, 1fr));
	gap: var(--space-m, 1.5rem);
	align-items: stretch;
}
.service-links-block__cards > .service-card,
.service-links-block__cards > .service-card .service-card__link,
.product-grid-block .cards-block__grid > .service-card,
.product-grid-block .cards-block__grid > .service-card .service-card__link {
	/* min-height: var(--service-card-min-height); */
	min-height: 40rem;
	height: 100%;
}
/* Manual-mode link list (fallback) */
.service-links-block__list {
	list-style: none;
	padding: 0;
	margin: 0;
}
.service-links-block__item {
	border-block-end: 1px solid currentColor;
}
.service-links-block__item:first-child {
	border-block-start: 1px solid currentColor;
}
.service-links-block__item a {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-block: var(--space-s-m, 1rem);
	text-decoration: none;
	color: inherit;
	font-size: var(--size-lg, 1.25rem);
	font-weight: var(--font-extra-bold, 700);
	transition: padding-inline-start var(--transition-base);
}
.service-links-block__item a:hover {
	padding-inline-start: var(--space-xs, 0.5rem);
}
.service-links-block__item svg {
	width: 1.5em;
	height: 1.5em;
	flex-shrink: 0;
	transition: transform var(--transition-base);
}
.service-links-block__item a:hover svg {
	transform: translateX(0.25em);
}
/* Service overview — USP columns (50/50 keyline grid) + meta info grid */
.service-overview-block {
	--so-keyline-color: var(--color-keyline, rgba(0, 0, 0, 0.12));
	--so-item-padding-block: var(--space-m, 1.5rem);
	padding-block: var(--block-spacing, 3rem);
}
.service-overview-block__header {
	max-width: 65ch;
	margin-block-end: var(--space-l-xl, 2rem);
}
/* USPs: same 50/50 keyline pattern as USP block */
/* Higher-specificity wins against .grid composition's gap. */
.service-overview-block .service-overview-block__usps {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: 1fr;
	column-gap: 0;
	row-gap: var(--space-l, 2rem);
}
@media (min-width: 700px) {
	.service-overview-block .service-overview-block__usps {
		grid-template-columns: repeat(2, 1fr);
	}
}
.service-overview-block__usp {
	--flow-space: var(--space-2xs, 0.25rem);
	text-align: left;
	padding-block: var(--so-item-padding-block);
	padding-inline: var(--space-m, 1.5rem);
	border-block-end: 1px solid var(--so-keyline-color);
}
.service-overview-block__usp:nth-child(odd) {
	padding-inline-start: 0;
}
.service-overview-block__usp:nth-child(even) {
	padding-inline-end: 0;
}
.service-overview-block__usp:last-child {
	border-block-end: none;
}
@media (min-width: 768px) {
	.service-overview-block__usp:nth-last-child(2):nth-child(odd) {
		border-block-end: none;
	}
}
.service-overview-block__usp-icon {
	display: inline-flex;
	width: 48px;
	height: 48px;
	color: var(--color-primary, #333);
}
.service-overview-block__usp-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}
.service-overview-block__usp-title {
	font-size: var(--size-lg, 1.25rem);
	font-weight: var(--font-extra-bold, 700);
	line-height: var(--leading-tight, 1.2);
}
.service-overview-block__usp-desc {
	font-size: var(--size-md, 1rem);
}
/* Meta info grid — flex so items naturally distribute
   (2 → 50/50, 3 → 33/33/33, etc.) with bordered cards. */
.service-overview-block__meta-grid {
	list-style: none;
	padding: 0;
	margin: 0;
	margin-block-start: var(--space-l-xl, 2.5rem);
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-m, 2rem);
}
.service-overview-block__meta-item {
	flex: 1 1 14rem;
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: var(--space-s, 1rem);
	padding: var(--space-s, 1.5rem);
	border: 1px solid currentColor;
	border-radius: var(--radius-card);
}
.service-overview-block__meta-icon {
	flex-shrink: 0;
	display: inline-flex;
	width: 48px;
	height: 48px;
	color: inherit;
}
.service-overview-block__meta-icon svg {
	width: 100%;
	height: 100%;
}
.service-overview-block__meta-text {
	display: flex;
	flex-direction: column;
	gap: 0;
	min-width: 0;
}
.service-overview-block__meta-label {
	font-size: var(--size-sm, 0.85rem);
}
.service-overview-block__meta-value {
	font-size: var(--size-lg, 1.125rem);
	font-weight: var(--font-extra-bold, 600);
}
/* Service packages block */
.service-packages-block {
	padding-block: var(--block-spacing, 3rem);
}
/* Package cards — 2-column grid (stacks below 700px). */
.service-packages-block__grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: var(--space-l, 1.5rem);
	margin-block-start: var(--space-l-xl, 2.5rem);
}
@media (min-width: 700px) {
	.service-packages-block__grid {
		grid-template-columns: repeat(2, 1fr);
	}
}
.service-packages-block__package {
	background: transparent;
	border: 1px solid var(--color-white);
	border-radius: var(--radius-card);
	padding: var(--space-m, 1.5rem);
}
.service-packages-block__package-title {
	margin: 0 0 0.5rem;
}
ul.service-packages-block__feature-list {
	list-style: none;
	padding-left: 0;
	margin: 2rem 0 0;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.service-packages-block__feature {
	display: flex;
	align-items: flex-start;
	gap: 0.625rem;
}
.service-packages-block__feature-icon {
	flex-shrink: 0;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1em;
	height: 1em;
	margin-top: 0.35em;
	color: var(--color-white);
}
.service-packages-block__feature-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}
/* Bolt-ons — grid of icon cards */
.service-packages-block__bolt-ons {
	margin-top: 2.5rem;
}
.service-packages-block__bolt-ons-heading {
	margin-bottom: 1.25rem;
}
.service-packages-block__bolt-on-list {
	list-style: none;
	padding: 0;
	margin: 0;
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 1.25rem;
}
.service-packages-block__bolt-on {
	background: var(--color-gray-50, #f9fafb);
	border: 1px solid var(--color-gray-200, #e5e7eb);
	border-radius: var(--radius-md, 0.5rem);
	padding: 1.25rem;
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}
.service-packages-block__bolt-on-icon {
	width: 48px;
	height: 48px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--color-primary, #333);
}
.service-packages-block__bolt-on-icon svg {
	width: 100%;
	height: 100%;
	fill: currentColor;
}
.service-packages-block__bolt-on-title {
	margin: 0;
	font-size: var(--text-base, 1rem);
	font-weight: var(--font-semi, 600);
}
.service-packages-block__bolt-on-desc {
	margin: 0;
	font-size: var(--text-sm, 0.9rem);
	color: var(--color-text-muted, #4b5563);
}
/* Service single hero — uses the page-hero-block structure + utility classes.
   No standalone styling here; visual treatment comes from .page-hero-block
   (currently just bg-green-dark/color-white utilities + block-flow stacking)
   plus the prototype-spacing exception that gives every block top/bottom padding. */
/* Sector single hero — uses the .page-hero-block structure + utility classes.
   No standalone styling here; visual treatment comes from block--page-hero.css. */
/* Stats Grid Block */
.stats-grid-block__header {
    margin-block-end: var(--space-l-xl, 2rem);
}
.stats-grid-block__grid {
    text-align: center;
}
.stats-grid-block__stat {
    --flow-space: var(--space-2xs, 0.25rem);
    padding-block: var(--space-m, 1rem);
}
.stats-grid-block__number {
    display: block;
    font-size: var(--size-4xl, clamp(3rem, 4vw + 1rem, 5rem));
    font-weight: var(--font-extra-bold, 700);
    line-height: 1;
}
.stats-grid-block__label {
    display: block;
    font-size: var(--size-md, 1rem);
    opacity: 0.8;
}
/* Team Member Block */
.team-member-block {
    --team-block-padding: var(--space-m-l, 2rem);
    --team-block-max-width: var(--wrapper-max-width, 1200px);
}
/* Grid — stack cards vertically, one per row */
.team-member-grid {
    display: flex;
    flex-direction: column;
    gap: var(--space-l-xl, 2rem);
}
/* Card — landscape layout: image left, content right */
.team-member-card {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--gutter, 1.5rem);
    /* background: var(--color-surface, transparent); */
    border-bottom: 1px solid var(--color-white);
    padding-bottom: var(--space-l-xl, 2rem);
}
@media (min-width: 50em) {
    .team-member-card {
        grid-template-columns: minmax(250px, 1fr) 2fr;
    }
}
/* Image — show the photo at its natural ratio, no cropping. */
.team-member-image {
    display: block;
}
.team-member-photo {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-card);
}
/* Content */
.team-member-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}
/* Typography */
.team-member-name {
    font-size: var(--size-xl, 1.5rem);
    font-weight: var(--font-extra-bold, 700);
}
.team-member-position {
    font-size: var(--size-md, 1rem);
    opacity: 0.7;
    margin: 0 0 var(--space-s, 0.75rem) 0;
}
.team-member-bio {
    font-size: var(--size-md, 1rem);
    line-height: var(--leading-standard, 1.5);
    margin: 0 0 var(--space-s, 0.75rem) 0;
}
/* Bio truncation */
.team-member-bio--truncated {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.team-member-bio--truncated.is-expanded {
    display: block;
    -webkit-line-clamp: unset;
}
.team-member-bio__toggle {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: var(--size-xs, 0.875rem);
    font-weight: var(--font-extra-bold, 700);
    text-decoration: underline;
    text-underline-offset: 0.2em;
    color: inherit;
    margin-block-start: var(--space-2xs, 0.25rem);
}
/* Contact — email + LinkedIn inline */
.team-member-contact {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-s, 0.75rem);
    align-items: center;
    margin-block-start: var(--space-s, 0.75rem);
}
.team-member-email {
    font-size: var(--size-xs, 0.875rem);
    text-decoration: none;
    color: inherit;
}
.team-member-email:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}
.team-member-social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3em;
    text-decoration: none;
    color: inherit;
}
.team-member-social-link svg {
    width: 1.25em;
    height: 1.25em;
}
.team-member-social-link:hover {
    opacity: 0.7;
}
/* Utility */
.visually-hidden {
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    height: 1px;
    overflow: hidden;
    position: absolute;
    white-space: nowrap;
    width: 1px;
}
/* Testimonials Block — carousel, one slide at a time, split text/image card */
.testimonials-block {
  --testimonial-card-padding: var(--space-l, 2.5rem);
  --testimonial-min-height: 24rem;

  position: relative;
  padding-block: var(--block-spacing, 3rem);
  isolation: isolate;
}
/* Full-bleed background image */
.testimonials-block__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
}
.testimonials-block__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.testimonials-block--has-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.testimonials-block--has-bg {
  color: var(--color-text-inverse, #fff);
}
.testimonials-block__header {
  max-inline-size: 65ch;
  margin-block-end: var(--space-l-xl, 2.5rem);
}
/* Carousel container */
.testimonials-block__carousel {
  position: relative;
  overflow: hidden;
}
/* Each slide is a split card */
.testimonial-slide {
  display: flex;
  align-items: stretch;
  height: auto;
}
.testimonial-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  min-height: var(--testimonial-min-height);
  overflow: hidden;
  width: 100%;
  border-radius: var(--radius-card);
}
@media (min-width: 768px) {
  .testimonial-card {
    grid-template-columns: 1.5fr 1fr;
  }
}
/* Text body — quote at top, author footer at bottom so the absolutely-
   positioned pagination can line up with the author row. */
.testimonial-card__body {
  --flow-space: var(--space-m, 1.25rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--testimonial-card-padding);
  position: relative;
}
.testimonial-card__quote {
  font-size: var(--size-l, clamp(1.25rem, 2vw + 0.5rem, 1.75rem));
  line-height: var(--leading-tight, 1.3);
}
.testimonial-card__quote p:first-of-type {
    margin-top: 0;
  }
.testimonial-card__author {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-s, 1rem);
  margin-block-start: var(--space-m, 1.5rem);
  padding-block-start: var(--space-s, 1.5rem);
  border-block-start: 1px solid var(--color-orange);
}
.testimonial-card__author-meta {
  display: flex;
  flex-direction: column;
  min-width: 0;
}
/* JS moves the active pagination element into this slot, so the dots
   visually sit on the right of the figcaption */
.testimonial-card__pagination-slot {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-height: 0.75rem;
}
.testimonial-card__pagination-slot:empty {
  display: none;
}
.testimonial-card__name {
  font-weight: var(--font-extra-bold, 700);
  font-style: normal;
  font-size: var(--size-sm, 1.125rem);
}
.testimonial-card__info {
  font-style: normal;
  font-size: var(--size-xs, 1rem);
  opacity: 0.7;
}
.testimonial-card__org-logo {
  display: inline-flex;
  margin-block-start: var(--space-3xs, 0.75rem);
}
.testimonial-card__org-logo img {
  display: block;
  max-height: 2.5rem;
  width: auto;
  max-width: 12rem;
  object-fit: contain;
}
/* Right-hand image — full height of slide */
.testimonial-card__image {
  display: none;
}
@media (min-width: 768px) {
  .testimonial-card__image {
    display: block;
    position: relative;
    overflow: hidden;
  }

  .testimonial-card__image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* Pagination — JS moves this element into the active slide's
   `.testimonial-card__pagination-slot`, so it renders as a normal inline
   child of the figcaption. No absolute positioning needed. */
.testimonials-block__pagination {
  position: static;
  width: auto;
  margin: 0;
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-3xs, 0.4rem);
}
.testimonials-block__pagination .swiper-pagination-bullet {
  /* Reset Swiper's default round bullets so we can render them as pills */
  width: 0.55rem;
  height: 0.55rem;
  margin: 0 !important;
  border-radius: 999px;
  background: var(--color-gray-300, #cfcfcf);
  opacity: 1;
  transition: width 0.3s ease, background-color 0.3s ease;
  transition: 0.3s;
}
.testimonials-block__pagination .swiper-pagination-bullet:hover {
    background: var(--color-orange);
  }
.testimonials-block__pagination .swiper-pagination-bullet-active {
  width: 1.25rem;
  background: var(--color-orange);
}
/* Slider wraps the carousel + nav buttons so the arrows can sit against the
   .wrapper edges — outside the clipped (overflow:hidden) carousel — while
   staying vertically centred on it. */
.testimonials-block__slider {
  position: relative;
}
/* Navigation arrows — circular, white with an orange chevron. Only the Swiper
   chevron shows (the duplicate HTML arrow was removed from the markup).
   --swiper-navigation-sides-offset: 0 pins them flush to the wrapper edges.
   Scoped two-class deep so these win over Swiper's default .swiper-button-*. */
.testimonials-block .testimonials-block__nav {
  --nav-size: 2.75rem;
  --swiper-navigation-sides-offset: -1.3rem;
  width: var(--nav-size);
  height: var(--nav-size);
  margin-top: 0;
  transform: translateY(-50%);
  border-radius: 999px;
  background: var(--color-white);
  border: 1px solid color-mix(in srgb, var(--color-orange) 35%, transparent);
  color: var(--color-orange);
  box-shadow: 0 6px 18px color-mix(in srgb, var(--color-dark) 16%, transparent);
  transition: background-color var(--transition-base), color var(--transition-base),
    border-color var(--transition-base);
}
.testimonials-block .testimonials-block__nav::after {
  font-size: var(--size-sm, 1.125rem);
  font-weight: var(--font-extra-bold, 700);
}
.testimonials-block .testimonials-block__nav:hover,
.testimonials-block .testimonials-block__nav:focus-visible {
  background: var(--color-orange);
  border-color: var(--color-orange);
  color: var(--color-white);
}
/* No arrows on small screens — swipe + pagination dots handle navigation. */
@media (max-width: 767.98px) {
  .testimonials-block .testimonials-block__nav {
    display: none;
  }
}
/* USP Block */
.usp-block {
    --usp-keyline-color: var(--color-keyline, rgba(0, 0, 0, 0.12));
    --usp-item-padding-block: var(--space-m, 1.5rem);
}
.usp-block__header {
    margin-block-end: var(--space-l-xl, 2rem);
    max-width: 65ch;
    color: var(--color-green-dark);
}
/* Higher-specificity selector so this beats the .grid composition's
   shorthand `gap` (which would otherwise reset our column-gap). Explicit
   2-col on desktop, single column under 700px. */
.usp-block .usp-block__grid {
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 0;
    margin-block-start: var(--space-l-xl, 2rem);
    row-gap: 0;
}
@media (min-width: 700px) {
    .usp-block .usp-block__grid {
        /* row-gap: var(--space-l, 2rem); */
        grid-template-columns: repeat(2, 1fr);
    }
}
.usp-block__item {
    --flow-space: var(--space-2xs, 0.25rem);
    padding-block: var(--usp-item-padding-block);
    padding-inline: 0;
    border-block-end: 1px solid var(--usp-keyline-color);
}
/* From the 2-column breakpoint up, gutter-style inline padding is added so
   text doesn't sit hard against the column boundary; cancelled on the
   leftmost/rightmost items of each row to keep them flush. Below the
   breakpoint (single-column) we strip the padding entirely so every item
   aligns flush-left with the rest of the block content. */
@media (min-width: 700px) {
    .usp-block__item {
        padding-inline: var(--space-m, 1.5rem);
    }

    .usp-block__item:nth-child(odd) {
        padding-inline-start: 0;
    }

    .usp-block__item:nth-child(even) {
        padding-inline-end: 0;
    }
}
/* Mobile (stack): strip keyline from the very last item */
.usp-block__item:last-child {
    border-block-end: none;
}
/* Desktop (2-col): strip keyline from items in the last row */
@media (min-width: 768px) {
    .usp-block__item:nth-last-child(2):nth-child(odd) {
        border-block-end: none;
    }
}
.usp-block__icon {
    font-size: var(--size-2xl, 2rem);
    line-height: 1;
}
.usp-block__item-title {
    font-size: var(--size-lg, 1.25rem);
    font-weight: var(--font-extra-bold, 700);
    line-height: var(--leading-tight, 1.2);
}
.usp-block__item-desc {
    font-size: var(--size-md, 1rem);
    opacity: 0.85;
}
.usp-block__buttons {
    margin-block-start: var(--space-l, 2rem);
}
.usp-block__closing {
    margin-block-start: var(--space-l-xl, 2rem);
}
.block--video iframe,
.block--video img {
	width: 100%;
	aspect-ratio: 16 / 9;
}
.video-thumb {
	aspect-ratio: 16 / 9;
	position: relative;
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}
.video-thumb > * {
	position: absolute;
	width: 100%;
}
.video-thumb iframe {
	pointer-events: none;
}
.video-thumb svg {
	width: 8em;
	height: 8em;
	filter: invert(100%);
	mix-blend-mode: difference;
}
/* Empty block placeholder — cross with label */
.block-placeholder {
  background-color: #e5e5e5;
  width: 100%;
  aspect-ratio: 16 / 9;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-s, 0.75rem);
  position: relative;
  overflow: hidden;
}
/* Corner-to-corner cross lines */
.block-placeholder__cross {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  stroke: #ccc;
  stroke-width: 0.5;
}
.block-placeholder__label {
  position: relative;
  z-index: 1;
  color: #999;
  font-size: var(--size-md, 1rem);
  font-family: monospace;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
/* Wrapper rendered by template-parts/snippets/buttons-list.php */
.buttons-list {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}
.forminator-button,
.button {
    align-items: center;
    background: var(--color-primary);
    border: 1px solid var(---color-primary);
    border-radius: 8px;
    color: var(--color-light);
    cursor: pointer;
    display: inline-flex;
    flex-shrink: 0;
    font-size: var(--size-md);
    font-weight: var(--font-regular);
    gap: 0 var(--space-2xs);
    justify-content: center;
    line-height: 1;
    padding: 14px 20px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease, opacity 0.3s ease;
}
.forminator-button svg,
.button svg {
    height: auto;
    transform: rotate(0deg);
    width: 1.85ex
}
.forminator-button span+svg,
.button span+svg {
    width: 1.5ex
}
.forminator-button:not([data-type=naked]):hover,
.button:not([data-type=naked]):not(.button--secondary):hover {
    background: var(--color-dark);
    color: var(--color-light);
}
.forminator-button[data-type=secondary],
.button[data-type=secondary] {
    border: 1px solid var(--color-dark)
}
.forminator-button[data-type=naked],
.button[data-type=naked] {
    background: transparent;
    border: none;
    color: var(--color-dark);
    padding: 0
}
.forminator-button[data-type=badge],
.button[data-type=badge] {
    border-radius: 2em;
    padding: var(--space-2xs) var(--space-s)
}
.button[forminator-data-type=naked]:hover svg,
.button[data-type=naked]:hover svg {
    transform: rotate(-45deg);
    transition: transform var(--transition-base)
}
.forminator-button[data-theme=dark],
.button[data-theme=dark] {
    background-color: var(--color-dark);
    color: var(--color-light)
}
.button[data-theme=dark]:hover,
.button[data-type=secondary]:hover {
    background-color: var(--color-dark);
    color: var(--color-light);
}
/* Outline variant — auto-applied to 2nd+ buttons via buttons-list.php */
.button--secondary {
    background: transparent;
    border: 1px solid currentColor;
    color: inherit;
}
.button--secondary:hover {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: var(--color-light);
}
.forminator-button[data-theme=ghost],
.button[data-theme=ghost] {
    background: var(--color-light-shade);
    border: 1px solid var(--color-mid-glare);
    color: var(--color-dark)
}
.buttonforminator-[data-theme=ghost] svg,
.button[data-theme=ghost] svg {
    color: var(--color-primary)
}
.buttonforminator-[data-theme=ghost]:hover,
.button[data-theme=ghost]:hover {
    background: var(--color-primary-glare);
    border-color: var(--color-primary);
    color: var(--color-dark)
}
.card {
    --card-bg: var(--color-surface, #f0f0f0);
    --card-image-width: 45%;

    backface-visibility: hidden;
    background-color: var(--card-bg);
    color: var(--color-dark);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    text-align: left;
    text-decoration: none;
    border-radius: var(--radius-card);
    overflow: hidden;
}
/* Row variant — image on top through tablet, side-by-side from desktop up */
.card--row {
    flex-direction: column;
}
@media (min-width: 1024px) {
    .card--row {
        flex-direction: row;
        align-items: center;
    }
}
.card:not([data-type=featured]):hover {
    transition: transform var(--transition-bounce);
}
/* Media area */
.card__media {
    display: block;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: var(--radius-card);
}
.card--row .card__media {
    width: 100%;
}
@media (min-width: 1024px) {
    .card--row .card__media {
        width: var(--card-image-width);
    }
}
.card img {
    aspect-ratio: 16/9;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
    display: block;
}
@media (min-width: 1024px) {
    .card--row img {
        /* aspect-ratio: auto; */
        aspect-ratio: 9/13;
        height: 100%;
    }
}
.card:not(:hover) img {
    filter: grayscale(0.3);
}
/* Content — padded, flex-column with title→tags→date→excerpt→arrow */
.card__content {
    padding: var(--space-s, 1rem) var(--space-s, 1rem) var(--space-m, 1.5rem);
    display: flex;
    flex-direction: column;
    gap: var(--space-2xs, 0.5rem);
    flex: 1;
}
.card__title {
    font-size: var(--size-l, 1.5rem);
    line-height: var(--leading-tight, 1.2);
    margin: 0;
    order: 1;
}
.card__title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}
.card__title a:hover,
.card__title a:focus-visible {
    color: var(--color-orange);
    text-decoration: none;
}
.card__excerpt {
    margin: 0;
    font-size: var(--size-sm, 1rem);
    line-height: var(--leading-standard, 1.5);
    order: 2;
}
.card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-3xs, 0.25rem);
    order: 3;
}
.card__date {
    display: block;
    font-size: var(--size-sm, 0.875rem);
    opacity: 0.6;
    order: 4;
}
.card__arrow {
    order: 5;
    margin-block-start: auto;
    align-self: flex-start;
    display: inline-flex;
    width: 1.5rem;
    height: 1.5rem;
    transition: transform var(--transition-base, 0.2s);
}
.card__arrow svg {
    width: 100%;
    height: 100%;
}
.card:hover .card__arrow {
    transform: translateX(0.25rem);
}
/* Featured card variant */
.card[data-type=featured] {
    --grid-placement: auto-fit;
    --grid-min-item-size: clamp(16rem, 50vw, 33rem);
    background-color: unset;
    display: grid;
    gap: var(--gutter, var(--space-s-l));
    grid-template-columns: repeat(var(--grid-placement, auto-fill), minmax(var(--grid-min-item-size, 16rem), 1fr));
    padding: 0;
}
/* Site Footer */
.site-footer {
  background: var(--color-dark, #030303);
  color: var(--color-light, #fff);
  padding-block-start: var(--space-xl-2xl, 4rem);
}
.site-footer a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}
.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--color-orange);
  text-decoration: none;
}
/* Social icon SVGs use fill rather than color, so transition the fill too */
.site-footer .social-links a svg path,
.site-footer .social-links a svg rect {
  transition: fill 0.3s ease;
}
.site-footer .social-links a:hover svg path,
.site-footer .social-links a:focus-visible svg path,
.site-footer .social-links a:hover svg rect,
.site-footer .social-links a:focus-visible svg rect {
  fill: var(--color-orange);
}
/* Logo */
.site-footer .footer-logo {
  width: 243px;
}
.site-footer .footer-logo svg {
  width: 100%;
  height: auto;
}
.site-footer .site-footer__strapline {
    border: 1px solid;
    display: inline-block;
    padding: 20px;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    max-width: 250px;
    text-align: center;
    gap: 0.5rem;
  }
.sw-logo-wrapper {
  width: 6rem;
}
.sw-logo-wrapper svg path {
      fill: var(--color-light);
    }
/* Top section — brand | nav | contact block */
.site-footer__top[data-layout="footer"] {
  display: grid;
  gap: var(--gutter, 1.5rem);
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .site-footer__top[data-layout="footer"] {
    grid-template-columns: 2fr 1fr 1fr;
  }
}
/* Contact block — furthest right */
.site-footer__contact-block {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.site-footer__contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-s, 1rem);
}
.site-footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-xs, 0.75rem);
}
.site-footer__contact-icon {
  flex-shrink: 0;
  display: inline-flex;
  width: 2rem;
  height: 2rem;
  color: inherit;
}
.site-footer__contact-icon svg {
  width: 100%;
  height: 100%;
}
.site-footer__contact-link {
  display: flex;
  flex-direction: column;
  gap: var(--space-3xs, 0.15rem);
  line-height: 1.2;
}
.site-footer__contact-label {
  font-size: var(--size-xs, 0.875rem);
}
.site-footer__contact-value {
  font-weight: var(--font-semi, 600);
}
/* Contact list */
.site-footer__contact {
  list-style: none;
  padding: 0;
  font-size: var(--size-md, 1rem);
}
.site-footer__contact li + li {
  margin-block-start: 0.25em;
}
/* Nav columns */
.site-footer__heading {
  font-size: var(--size-md, 1rem);
  font-weight: var(--font-extra-bold, 700);
  margin-block-end: var(--space-s, 0.75rem);
}
.site-footer__nav .footer-nav {
  list-style: none;
  padding: 0;
  font-size: var(--size-sm, 0.875rem);
}
.site-footer__nav .footer-nav li + li {
  margin-block-start: 0.35em;
}
/* Highlight the link for the current page (and its ancestor sections) so
   the footer nav reflects where the user is on the site */
.site-footer .current-menu-item > a,
.site-footer .current_page_item > a,
.site-footer .current-menu-ancestor > a,
.site-footer .current_page_ancestor > a {
  color: var(--color-orange);
}
/* Bottom bar */
.site-footer__bottom {
  margin-block-start: var(--space-xl-2xl, 4rem);
  padding-block: var(--space-s, 0.75rem);
  border-block-start: 1px solid var(--color-light);
  font-size: var(--size-xs, 0.875rem);
}
.site-footer__copyright {
  margin: 0;
}
.site-footer__legal {
  --cluster-gap: var(--space-m, 1rem);
}
.site-footer__legal .menu {
  list-style: none;
  padding: 0;
  display: flex;
  gap: var(--space-m, 1rem);
}
/* Sitemap banner — delete when no longer needed */
.sitemap-banner {
  background-color: #ff1493;
  padding-block: var(--space-xs, 0.5rem);
  text-align: center;
}
.sitemap-banner a {
  color: #fff;
  text-decoration: none;
  font-weight: var(--font-extra-bold, 700);
  font-size: var(--size-md, 1rem);
}
.sitemap-banner a:hover {
  text-decoration: underline;
}
/* Form Block Layout */
.form-block {
    padding-block: var(--block-spacing, 4rem);
}
/* Form-only layout — constrain width */
.form-block--form-only .form-block__form {
    max-width: 40rem;
    margin-inline: auto;
}
/* Form + Contact layout */
.form-block__contact {
    --flow-space: var(--space-s, 0.75rem);
}
.form-block__contact-image {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--fui-radius, 0.25rem);
    margin-block-end: var(--space-m, 1rem);
}
.form-block__contact-heading {
    font-size: var(--size-xl, 1.5rem);
}
.form-block__contact-copy {
    color: var(--fui-placeholder, #999);
}
.form-block__contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.form-block__contact-list li + li {
    margin-block-start: 0.35em;
}
.form-block__contact-list a {
    color: inherit;
    text-decoration: none;
}
.form-block__contact-list a:hover {
    text-decoration: underline;
    text-underline-offset: 0.2em;
}
.form-block__placeholder {
    text-align: center;
    padding: var(--space-xl, 3rem);
    background: #f5f5f5;
    border-radius: 0.25rem;
    color: #999;
}
/* ---------- Form field layout ---------- */
.form-block .forminator-field {
    margin-bottom: var(--space-s, 0.75rem);
}
.form-block .forminator-label {
    display: block;
    width: 100%;
    margin-bottom: var(--space-3xs, 0.15rem);
}
.form-block .forminator-input,
.form-block .forminator-textarea,
.form-block .forminator-select {
    display: block;
    width: 100%;
    box-sizing: border-box;
}
.form-block .forminator-row {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-s, 0.75rem);
}
.form-block .forminator-col {
    flex: 1 1 0;
    min-width: 0;
}
@media (max-width: 40em) {
    .form-block .forminator-col {
        flex: 1 1 100%;
    }
}
/* Submit button — full width mobile, auto desktop */
.form-block .forminator-button-submit {
    width: 100%;
}
@media (min-width: 40em) {
    .form-block .forminator-button-submit {
        width: auto;
    }
}
/* ----------------------------------------------------------------------------
   Off-canvas mobile menu
   - Full-viewport panel slid in from the right by offside.js
   - Brand-coloured surface using the primary token
   - Hosts logo, navigation, contact details and social links
---------------------------------------------------------------------------- */
.off-canvas {
    --off-canvas-bg: var(--color-green-dark);
    --off-canvas-fg: var(--color-off-white);
    --off-canvas-accent: var(--color-orange);
    --off-canvas-link-border: color-mix(in srgb, var(--color-off-white) 30%, transparent);

    background-color: var(--off-canvas-bg);
    color: var(--off-canvas-fg);
    padding: var(--space-l) var(--gutter, var(--space-s-l));
    padding-block-start: calc(var(--space-l) + var(--nav-height, 70px));
}
/* Override offside.js sizing + display so the panel covers the viewport and
   becomes a flex column (offside-js--init .off-canvas { display: block } has
   higher specificity than a bare .off-canvas rule, so we have to match it). */
.off-canvas#off-canvas-menu,
.offside-js--init .off-canvas#off-canvas-menu {
    width: 100vw;
    max-width: 100vw;
    left: auto;
    right: -100vw;
    display: flex;
    flex-direction: column;
}
.offside--right.is-open#off-canvas-menu,
.offside-js--is-right .offside-sliding-element {
    transform: translate3d(-100vw, 0, 0);
}
/* Disable the page-push behaviour at full-screen so content doesn't visibly slide */
.offside-js--is-right .offside-sliding-element {
    transform: none;
}
.off-canvas__inner {
    display: flex;
    flex-direction: column;
    gap: var(--space-l);
    flex: 1;
    max-width: 32rem;
}
.off-canvas__logo {
    width: 160px;
}
.off-canvas__logo svg {
    width: 100%;
    height: auto;
}
.off-canvas__logo svg path {
    fill: var(--off-canvas-fg);
}
/* Navigation list */
.off-canvas .off-canvas-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
}
.off-canvas .off-canvas-menu .menu-item > a {
    display: block;
    color: var(--off-canvas-fg);
    padding-block: var(--space-3xs);
    font-size: var(--size-lg, 1.25rem);
    font-weight: var(--font-semi);
    letter-spacing: 0.01em;
    line-height: 1.2;
    text-decoration: none;
    transition: color var(--transition-base);
}
.off-canvas .off-canvas-menu .menu-item > a:hover,
.off-canvas .off-canvas-menu .menu-item > a:focus-visible {
    color: var(--off-canvas-accent);
}
.off-canvas .off-canvas-menu .current-menu-item > a,
.off-canvas .off-canvas-menu .current-menu-ancestor > a,
.off-canvas .off-canvas-menu .current_page_item > a,
.off-canvas .off-canvas-menu .current_page_ancestor > a {
    color: var(--off-canvas-accent);
    font-weight: var(--font-extra-bold);
}
/* Sub-menus, if a menu item has children */
.off-canvas .off-canvas-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding-inline-start: var(--space-s);
    padding-block-end: var(--space-2xs);
}
.off-canvas .off-canvas-menu .sub-menu .menu-item {
    border-bottom: 0;
}
.off-canvas .off-canvas-menu .sub-menu .menu-item > a {
    font-size: var(--size-md);
    font-weight: var(--font-regular);
}
/* Footer block: contact + socials pushed to bottom of the panel */
.off-canvas__footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: var(--space-s);
    padding-block-start: var(--space-s);
    border-top: 1px solid var(--off-canvas-link-border);
    font-size: var(--size-sm);
}
.off-canvas__contact {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: var(--space-3xs);
    line-height: 1.4;
}
.off-canvas__contact a {
    color: var(--off-canvas-fg);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition-base);
}
.off-canvas__contact a:hover,
.off-canvas__contact a:focus-visible {
    border-bottom-color: var(--off-canvas-accent);
}
/* Social links — re-skin the shared snippet for the dark surface */
.off-canvas__social .social-links {
    display: flex;
    gap: var(--space-2xs);
    list-style: none;
    margin: 0;
    padding: 0;
}
.off-canvas__social .social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: 1px solid var(--off-canvas-link-border);
    border-radius: 50%;
    transition: background-color var(--transition-base), border-color var(--transition-base);
}
.off-canvas__social .social-links a:hover,
.off-canvas__social .social-links a:focus-visible {
    background-color: var(--off-canvas-accent);
    border-color: var(--off-canvas-accent);
}
.off-canvas__social .social-links svg {
    width: 1.1rem;
    height: 1.1rem;
}
.off-canvas__social .social-links svg path,
.off-canvas__social .social-links svg rect {
    fill: var(--off-canvas-fg);
}
/* Backdrop is hidden by full-screen panel, but kept so click-to-close still works */
.site-overlay {
    z-index: 1;
    position: fixed;
    inset: 0;
    background-color: var(--color-dark);
    visibility: hidden;
    opacity: 0;
    cursor: pointer;
    transition: visibility 0s ease, opacity .2s ease;
}
.offside-js--is-open .site-overlay {
    visibility: visible;
    opacity: .7;
}
.pill {
    background-color: var(--color-green-light);
    color: var(--color-light);
    display: inline-block;
    font-size: var(--size-sm, 0.8rem);
    padding: var(--space-4xs, 0.15rem) var(--space-xs, 0.5rem);
    text-decoration: none;
    border-radius: 2rem;
    line-height: 1.4;
}
.pill:hover {
    opacity: 0.8;
}
.prose {
  --flow-space: var(--space-m);
  /* font-size: var(--size-2xl); */
}
/* Sector card — image-backed overlay card. Visual language matches
   .service-card (full-bleed photo, dark gradient, bottom-left content)
   so the explore-services and explore-sectors flows feel related. */
.sector-card {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	border-radius: var(--radius-card);
	min-height: var(--service-card-min-height);
	background-color: var(--color-green-dark);
	color: var(--color-white);
	display: flex;
	transition: transform var(--transition-base, 250ms ease);
}
.sector-card:hover,
.sector-card:focus-within {
	transform: translateY(-2px);
}
.sector-card__link {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	width: 100%;
	padding: var(--space-m, 2rem);
	color: inherit;
	text-decoration: none;
}
.sector-card__image {
	position: absolute;
	inset: 0;
	z-index: 0;
	margin: 0;
}
.sector-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 30%, rgba(0, 0, 0, 0.55) 70%, rgba(0, 0, 0, 0.8) 100%);
	z-index: 1;
}
.sector-card__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform var(--transition-base, 250ms ease);
}
.sector-card:hover .sector-card__photo,
.sector-card:focus-within .sector-card__photo {
	transform: scale(1.03);
}
/* No featured image → solid brand colour fallback. */
.sector-card__image--placeholder {
	background-color: var(--color-green-dark);
}
.sector-card__content {
	position: relative;
	z-index: 2;
	margin-top: auto;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-2xs, 0.5rem);
	color: inherit;
}
.sector-card__title {
	margin: 0;
	color: inherit;
	font-size: var(--size-2xl, 2rem);
	font-weight: var(--font-extra-bold, 800);
	line-height: var(--leading-tight, 1.1);
}
.sector-card__excerpt {
	margin: 0;
	color: inherit;
	font-size: var(--size-md, 1rem);
	line-height: var(--leading-standard, 1.5);
	opacity: 0.92;
	max-inline-size: 40ch;
}
.sector-card__cta {
	margin-block-start: var(--space-2xs, 0.5rem);
	font-weight: var(--font-semi, 600);
	color: inherit;
	transition: color 0.3s ease;
}
.sector-card__cta > span[aria-hidden] {
	display: inline-block;
	transition: transform 0.3s ease;
}
/* Whole-card hover (covers Explore CTA and image hover) — recolour the CTA
   and nudge the arrow. :focus-within keeps keyboard parity. */
.sector-card:hover .sector-card__cta,
.sector-card:focus-within .sector-card__cta {
	color: var(--color-orange);
}
.sector-card:hover .sector-card__cta > span[aria-hidden],
.sector-card:focus-within .sector-card__cta > span[aria-hidden] {
	transform: translateX(0.35rem);
}
/* Service card — image-backed card with overlay content.
   Used by service-links, product-grid-featured, product-grid (and any other
   block that consumes template-parts/cards/card-service_cpt.php).
   Default content alignment: bottom-left. Parent blocks can switch to
   centred via .service-card--align-center or a parent-scoped override. */
.service-card {
	position: relative;
	overflow: hidden;
	isolation: isolate;
	border-radius: var(--radius-card);
	min-height: var(--service-card-min-height);
	max-height: 700px;
	color: var(--color-white);
	background-color: var(--color-blue-dark);
	display: flex;
	transition: transform var(--transition-base, 250ms ease);
}
.service-card:hover,
.service-card:focus-within {
	transform: translateY(-2px);
}
.service-card__link {
	position: relative;
	z-index: 2;
	display: flex;
	flex-direction: column;
	width: 100%;
	min-height: var(--service-card-min-height);
	padding: var(--space-m, 2rem);
	color: inherit;
	text-decoration: none;
}
.service-card__image {
	position: absolute;
	inset: 0;
	z-index: 0;
	margin: 0;
}
.service-card__image::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0, 0, 0, 0) 32.59%, rgba(0, 0, 0, 0.375) 41.04%, rgba(0, 0, 0, 0.75) 74.81%);
	z-index: 1;
}
.service-card__photo {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: top;
	display: block;
}
.service-card__content {
	position: relative;
	z-index: 2;
	margin-top: auto; /* push content to bottom of card */
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: var(--space-2xs, 0.5rem);
}
/* Icon + title sit side-by-side at the top of the content stack. */
.service-card__heading {
	display: flex;
	flex-direction: row;
	align-items: center;
	gap: var(--space-s, 0.75rem);
}
.service-card__icon {
	display: inline-flex;
	flex-shrink: 0;
	width: 2.5rem;
	height: 2.5rem;
}
.service-card__icon svg {
	width: 100%;
	height: 100%;
}
.service-card__title {
	margin: 0;
	color: inherit;
	font-size: var(--size-2xl, 2rem);
	font-weight: var(--font-extra-bold, 800);
	line-height: var(--leading-tight, 1.1);
}
.service-card__tagline {
	margin: 0;
	color: inherit;
	font-size: var(--size-md, 1rem);
	line-height: var(--leading-standard, 1.5);
	max-width: 290px;
}
.service-card__pill {
	margin-block-start: var(--space-2xs, 0.5rem);
}
/* Subtle lift on hover/focus */
.service-card__link:hover .service-card__photo,
.service-card__link:focus-visible .service-card__photo {
	transform: scale(1.03);
}
.service-card__photo {
	transition: transform var(--transition-base, 250ms ease);
}
/* Centred variant — content centred both axes, text-aligned center. */
.service-card--align-center .service-card__link {
	justify-content: center;
	align-items: center;
	text-align: center;
}
.service-card--align-center .service-card__content {
	margin: auto;
	align-items: center;
}
/* Single Post + Post Archive — branded to match the rest of the site.
   Uses the hero-block pattern for the header so the styling stays consistent. */
/* ─── Single post ──────────────────────────────────────────────── */
.single-post__hero {
	/* Slightly tighter than the home hero so the post hierarchy reads right. */
	--hero-padding-block: var(--space-xl-2xl, 4rem);
	min-height: min(60vh, 480px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.single-post__tags {
	display: flex;
	flex-wrap: wrap;
	gap: var(--space-2xs, 0.5rem);
}
.single-post__meta {
	margin: 0;
	font-size: var(--size-sm, 0.875rem);
	opacity: 0.85;
}
.single-post__body {
	padding-block: var(--space-xl-2xl, 4rem);
}
.single-post__body figure.wp-block-image {
		margin: 2rem 0px;
	}
.single-post__content {
	max-inline-size: 60rem;
	--flow-space: var(--space-s, 1rem);
	font-size: var(--size-md, 1rem);
	line-height: var(--leading-standard, 1.5);
}
/* Sensible spacing for inline content (text, images, lists, headings) */
.single-post__content > * + * {
	margin-block-start: var(--flow-space);
}
.single-post__content h2 {
	margin-block-start: var(--space-l, 2rem);
}
.single-post__content h3,
.single-post__content h4 {
	margin-block-start: var(--space-m, 1.5rem);
}
.single-post__content img,
.single-post__content figure img {
	max-width: 100%;
	height: auto;
	display: block;
	border-radius: var(--radius-card);
}
.single-post__content blockquote {
	margin: var(--space-m, 1.5rem) 0;
	padding-inline-start: var(--space-m, 1.5rem);
	border-inline-start: 4px solid var(--color-orange);
	font-size: var(--size-lg, 1.25rem);
	font-style: italic;
}
.single-post__content a {
	color: var(--color-orange);
	text-decoration: underline;
	text-underline-offset: 0.2em;
}
/* Related posts section */
.single-post__related {
	padding-block: var(--space-xl-2xl, 4rem);
	background-color: var(--color-off-white);
	color: var(--color-text);
}
.single-post__related-heading {
	margin-block-end: var(--space-l, 2rem);
}
/* ─── Post archive ─────────────────────────────────────────────── */
.post-archive__hero {
	--hero-padding-block: var(--space-xl-2xl, 4rem);
	min-height: min(60vh, 480px);
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}
.post-archive__body {
	padding-block: var(--space-xl-2xl, 4rem);
}
.post-archive__grid {
	/* Inherits .grid + data-layout="thirds" from the grid composition.
	   Just a tighter gap and breathing room around it. */
	gap: var(--space-l, 2rem);
}
.post-archive__empty {
	font-size: var(--size-lg, 1.25rem);
	text-align: center;
	padding-block: var(--space-xl, 3rem);
	opacity: 0.7;
}
/*** Site Header / Nav Styles ***/
.nav-logo {
  width: 127px;
  margin-block: 0.75rem;
}
.nav-logo svg path {
  fill: var(--color-dark, #030303) !important;
}
.menu a {
    letter-spacing: .04ch;
    text-decoration: none;
}
/* Make the menu fill the nav bar's height so link hit areas and the bottom-border
   sit flush with the top/bottom edges of the header pill. */
.site-header-content-wrapper {
    --repel-vertical-alignment: stretch;
}
.site-header-content-wrapper > .nav-logo {
    align-self: center;
}
.site-header-content-wrapper > .cluster {
    align-items: stretch;
}
/* Hide the desktop menu below the md breakpoint so only the hamburger shows.
   The viewport-toggle utility sets display: none on .large-viewports--only,
   but this block's selector was more specific and was forcing flex on phones. */
.site-header-content-wrapper .large-viewports--only {
    display: none;
}
@media (min-width: 768px) {
    .site-header-content-wrapper .large-viewports--only,
    #site-navigation,
    .desktop-menu {
        display: flex;
        align-items: stretch;
        height: 100.5%;
    }
}
.menu.cluster {
    align-items: stretch;
}
.menu .menu-item {
    display: flex;
}
.menu .menu-item > a {
    display: inline-flex;
    align-items: center;
    border-bottom: 3px solid transparent;
    transition: border-color var(--transition-base, 0.2s);
}
@media (min-width: 700px) {
  .menu .menu-item > a { 
    padding-inline: var(--space-2xs, 1rem);
  }
  .menu .menu-item > a:hover,
  .menu .menu-item > a:focus-visible {
      border-bottom-color: var(--color-orange);
  }
}
/* Current page and ancestor highlighting */
@media (min-width: 700px) {
  .menu .current-menu-item > a,
  .menu .current-menu-ancestor > a,
  .menu .current_page_item > a,
  .menu .current_page_ancestor > a {
      border-bottom-color: var(--color-orange);
      font-weight: var(--font-extra-bold);
  }
}
/* --- Desktop dropdown sub-menus ------------------------------------------
   Scoped to .desktop-menu (the top-bar) and the md breakpoint so the mobile
   off-canvas accordion — which also carries the .menu/.sub-menu classes — is
   left alone. Reveal on hover and focus-within so keyboard users get it too. */
@media (min-width: 768px) {
  .desktop-menu .menu-item-has-children {
    position: relative;
  }

  /* Caret affordance signalling the item expands */
  .desktop-menu .menu-item-has-children > a::after {
    content: "";
    width: 0.4em;
    height: 0.4em;
    margin-inline-start: 0.4em;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: translateY(-0.15em) rotate(45deg);
    transition: transform var(--transition-base, 0.2s);
  }

  .desktop-menu .menu-item-has-children:hover > a::after,
  .desktop-menu .menu-item-has-children:focus-within > a::after {
    transform: translateY(0.05em) rotate(225deg);
  }

  .desktop-menu .sub-menu {
    list-style: none;
    margin: 0;
    padding: var(--space-2xs, 0.75rem);
    position: absolute;
    inset-block-start: 100%;
    inset-inline-start: 0;
    z-index: 20;
    min-inline-size: 14rem;
    display: flex;
    flex-direction: column;
    gap: var(--space-3xs, 0.4rem);
    background: var(--color-white);
    border: 1px solid var(--color-white);
    border-radius: var(--radius-card, 16px);
    box-shadow: 0 12px 32px color-mix(in srgb, var(--color-dark) 18%, transparent);

    /* Hidden until the parent is hovered/focused */
    opacity: 0;
    visibility: hidden;
    transform: translateY(0.5rem);
    transition: opacity var(--transition-base, 0.2s),
      transform var(--transition-base, 0.2s),
      visibility var(--transition-base, 0.2s);
  }

  .desktop-menu .menu-item-has-children:hover > .sub-menu,
  .desktop-menu .menu-item-has-children:focus-within > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .desktop-menu .sub-menu .menu-item {
    display: block;
  }

  .desktop-menu .sub-menu .menu-item > a {
    display: block;
    padding: var(--space-3xs, 0.4rem) var(--space-2xs, 0.75rem);
    border-bottom: 0;
    border-radius: calc(var(--radius-card, 16px) / 2);
    color: var(--color-dark);
    white-space: nowrap;
    transition: background-color var(--transition-base, 0.2s),
      color var(--transition-base, 0.2s);
  }

  .desktop-menu .sub-menu .menu-item > a:hover,
  .desktop-menu .sub-menu .menu-item > a:focus-visible {
    background: color-mix(in srgb, var(--color-orange) 14%, transparent);
    color: var(--color-orange);
  }

  /* Sub-menu items shouldn't carry the parent's bottom-border underline */
  .desktop-menu .sub-menu .menu-item-has-children > a::after {
    content: none;
  }
}
@media (max-width: 31em) {
.site-header .nav-button-wrapper .button {
      padding: 0.2rem
  }
    }
.site-header .nav-button-wrapper span {
    display: none;
  }
@media (min-width: 31em) {
.site-header .nav-button-wrapper span {
      display: block
  }
    }
@media (max-width: 31em) {
.site-header .nav-button-wrapper svg {
      width: 1.6rem
  }
    }
@media (min-width: 31em) {
.site-header .nav-button-wrapper svg {
      display: none
  }
    }
/*** Header Options: ***/
/*** 1 - Sticky header ***/
.site-header {
  /* Sits above the off-canvas panel (offside.js uses 9999) so the floating
     pill — and its hamburger-turned-cross — remain visible and clickable
     while the menu is open */
  z-index: 10000;
  position: relative;
}
.site-header .site-header-content {
    /* Fixed so the pill stays put as the page scrolls; hidenavonscroll.js
       toggles classes on <html> that translate it out of view on scroll-down
       and back in on scroll-up. */
    position: fixed;
    top: 2rem;
    left: 50%;
    z-index: 10000;
    padding: 0 1rem;
    transform: translateX(-50%);
    transition: transform 0.3s ease;
    background: #FFFFFFCC;
    border-radius: 16px;
    border: 1px solid var(--color-white);
    /* Pill nav is fluid on phones and gets its desktop min-width above the md breakpoint */
    width: calc(100% - var(--space-s));
    max-width: 100%;
  }
@media (min-width: 768px) {
.site-header .site-header-content {
      min-width: 750px;
      width: auto
  }
    }
/* When the off-canvas is open, the floating pill sits on top of the panel.
   Recolour the logo + hamburger so they read on the dark surface. The logo
   is rendered either as an inline SVG (fill via path) or an <img> from ACF
   (raster/SVG) — `brightness(0) invert(1)` reliably flips both to white. */
body.offside-js--is-open .nav-logo svg path {
  fill: var(--color-light) !important;
}
body.offside-js--is-open .nav-logo img,
body.offside-js--is-open .nav-logo picture,
body.offside-js--is-open .nav-logo svg {
  filter: brightness(0) invert(1);
}
body.offside-js--is-open .site-header-content {
  background: transparent;
  border-color: transparent;
}
body.offside-js--is-open .hamburger--theme {
  color: var(--color-light);
}
/* --- Hamburger – theme override ------------------------------------------- */
.hamburger--theme {
  padding: 0.5rem;
  color: var(--color-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: center;
}
/* Ensure the small-viewports wrapper centres the button vertically inside
   the cluster (which uses align-items: stretch). Constrained to phones so it
   doesn't override viewport-toggle's display:none above the md breakpoint. */
@media (max-width: 767.98px) {
  .site-header-content-wrapper .small-viewports--only {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.hamburger--theme .hamburger-box {
  width: 28px;
  height: 20px;
  display: inline-block;
}
.hamburger--theme .hamburger-inner,
.hamburger--theme .hamburger-inner::before,
.hamburger--theme .hamburger-inner::after {
  width: 28px;
  height: 2px;
  background-color: currentColor;
  border-radius: 2px;
}
.hamburger--theme .hamburger-inner::before {
  top: -9px;
}
.hamburger--theme .hamburger-inner::after {
  bottom: -9px;
}
/* When active (menu open) hamburgers.css squeeze variant turns the bars into
   an X. Force the bar colour to follow currentColor so the open-state cross
   stays visible on the dark off-canvas surface */
.hamburger--theme.is-active .hamburger-inner,
.hamburger--theme.is-active .hamburger-inner::before,
.hamburger--theme.is-active .hamburger-inner::after {
  background-color: currentColor;
}
.hamburger--theme:hover,
.hamburger--theme:focus-visible {
  opacity: 1;
  color: var(--color-orange);
}
/*** 1 - Auto Hide Header on Scroll - Need to add JS ***/
/* .site-header-inner {
  z-index: 10;
  position: fixed;
  transition: all 0.2s;
  width: 100%;
  height: var(--nav-height, 100px);
  top: 0;
}

.site-header-content-wrapper {
  height: var(--nav-height, 100px);
}

.site-header-bg {
  position: absolute;
  width: 100%;
  background-color: var(--color-light);
  height: var(--nav-height, 100px);
} */
/* html.page-is-at-top body.first-block-is-hero {
  .site-header-bg {
    background-color: transparent;
    background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.1), rgba(0,0,0,0.1), rgba(0,0,0,0.1));
  }
  .site-header-inner {
    color: var(--color-light);
  }
  .nav-logo svg path {
    fill: var(--color-light);
  }
  .menu-item a {
    background: linear-gradient(0deg, var(--color-light), var(--color-light)) no-repeat right bottom / 0 var(--bg-h);
    transition: background-size 350ms;
    --bg-h: 2px;
    padding-bottom: 2px;
  }
  .menu-item a:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
  }
} */
html.nav-is-hidden:not(.page-is-at-top) body:not(.offside-js--is-open) .site-header-content {
    transform: translateX(-50%) translateY(-200%);
  }
html.nav-is-visible .site-header-content,
html.nav-is-hidden body.offside-js--is-open .site-header-content {
  transform: translateX(-50%) translateY(0);
}
/* body:not(.first-block-is-hero):not(.offside-js--is-open) {
  margin-top: var(--nav-height, 100px);
}

body:not(.offside-js--is-open).post-type-archive-stone_cpt,
body:not(.offside-js--is-open).blog,
body:not(.offside-js--is-open).first-block-is-copy {
  margin-top: var(--double-nav-height, 100px);
}

body.first-block-is-hero .site-header {
  position: absolute;
}
body.first-block-is-hero .block-hero {
  &:before {
    content: "";
    display: block;
    height: var(--nav-height, 100px);
  }
} */
/* 
MENU - AUTO HIDE - Remove if not using (also JS)
Auto hiding nav on scroll down and reveal on scroll up
*/
/* .site-header-inner {
  z-index: 10;
  position: fixed;
  transition: all 0.2s;
  width: 100%;
  height: var(--nav-height, 100px);
  top: 0;
}

.site-header-content-wrapper {
  height: var(--nav-height, 100px);
}

.site-header-bg {
  position: absolute;
  width: 100%;
  background-color: var(--color-light);
  height: var(--nav-height, 100px);
}

html.page-is-at-top body.first-block-is-hero {
  .site-header-bg {
    background-color: transparent;
    background-image: linear-gradient(to top, rgba(0,0,0,0), rgba(0,0,0,0.1), rgba(0,0,0,0.1), rgba(0,0,0,0.1));
  }
  .site-header-inner {
    color: var(--color-light);
  }
  .nav-logo svg path {
    fill: var(--color-light);
  }
  .menu-item a {
    background: linear-gradient(0deg, var(--color-light), var(--color-light)) no-repeat right bottom / 0 var(--bg-h);
    transition: background-size 350ms;
    --bg-h: 2px;
    padding-bottom: 2px;
  }
  .menu-item a:where(:hover, :focus-visible) {
    background-size: 100% var(--bg-h);
    background-position-x: left;
  }
}

html.nav-is-hidden body:not(.menu-is-open) {
  .site-header-inner {
    @media (min-width: 50em) {
      transform: translateY(-150%);
    }
  }
}

html.nav-is-visible,
html.nav-is-hidden body.offside-js--is-open {
  .site-header-inner {
      transform: none;
  }
} */
/* Sitemap Page */
.sitemap-page {
    padding-block: var(--block-spacing, 4rem);
    background-color: var(--color-dark) !important;
    color: var(--color-light) !important;
}
.sitemap-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.sitemap-list__item {
    border-block-end: 1px solid rgba(0, 0, 0, 0.1);
}
.sitemap-list__item:first-child {
    border-block-start: 1px solid rgba(0, 0, 0, 0.1);
}
.sitemap-list__item > a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: var(--space-s, 0.75rem);
    text-decoration: none;
    color: inherit;
    font-size: var(--size-lg, 1.25rem);
    font-weight: var(--font-extra-bold, 700);
    transition: padding-inline-start var(--transition-base);
}
.sitemap-list__item > a:hover {
    padding-inline-start: var(--space-xs, 0.5rem);
}
.sitemap-list__item svg {
    flex-shrink: 0;
    transition: transform var(--transition-base);
}
.sitemap-list__item > a:hover svg {
    transform: translateX(0.25em);
}
/* Child pages indented */
.sitemap-list--children {
    padding-inline-start: var(--space-l, 2rem);
}
.sitemap-list--children .sitemap-list__item > a {
    font-size: var(--size-md, 1rem);
    font-weight: var(--font-regular, 400);
}
.sitemap-page h2 {
    margin-top: 5rem;
}
.social-links svg {
  width: 1.5rem;
  height: 1.5rem;
}
.social-links svg rect,
.social-links svg path {
  fill: var(--color-white);
}
/*
CLUSTER
More info: https://every-layout.dev/layouts/cluster/
A layout that lets you distribute items with consitent
spacing, regardless of their size

CUSTOM PROPERTIES AND CONFIGURATION
--gutter (var(--space-s-m)): This defines the space
between each item.

--cluster-horizontal-alignment (flex-start) How items should align
horizontally. Can be any acceptable flexbox aligmnent value.

--cluster-vertical-alignment How items should align vertically.
Can be any acceptable flexbox alignment value.
*/
.cluster {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gutter, var(--space-s-m));
  justify-content: var(--cluster-horizontal-alignment, flex-start);
  align-items: var(--cluster-vertical-alignment, center);
}
/*
FLOW COMPOSITION
Like the Every Layout stack: https://every-layout.dev/layouts/stack/
Info about this implementation: https://piccalil.li/quick-tip/flow-utility/
*/
.flow > * + * {
  margin-top: var(--flow-space, 1em);
}
/* Exception: Headings following eyebrows should be closer */
.flow > .font-eyebrow + :is(h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6) {
  margin-top: var(--flow-space--half, 0.5em);
}
/* Modifier for half spacing throughout */
.flow--half > * + * {
  margin-top: calc(var(--flow-space, 1em) / 2);
}
/* Modifier for double spacing throughout */
.flow--double > * + * {
  margin-top: calc(var(--flow-space, 1em) * 2);
}
/* AUTO GRID
Related Every Layout: https://every-layout.dev/layouts/grid/
More info on the flexible nature: https://piccalil.li/tutorial/create-a-responsive-grid-layout-with-no-media-queries-using-css-grid/
A flexible layout that will create an auto-fill grid with
configurable grid item sizes

CUSTOM PROPERTIES AND CONFIGURATION
--gutter (var(--space-s-m)): This defines the space
between each item.

--grid-min-item-size (14rem): How large each item should be
ideally, as a minimum.

--grid-placement (auto-fill): Set either auto-fit or auto-fill
to change how empty grid tracks are handled */
.grid {
  display: grid;
  grid-template-columns: repeat(
    var(--grid-placement, auto-fill),
    minmax(var(--grid-min-item-size, 16rem), 1fr)
  );
  gap: var(--gutter, var(--space-s-l));
}
/* A split 50/50 layout */
.grid[data-layout='50-50'] {
  --grid-placement: auto-fit;
  --grid-min-item-size: clamp(16rem, 50vw, 33rem);
}
/* Three column grid layout */
.grid[data-layout='thirds'] {
  --grid-placement: auto-fit;
  --grid-min-item-size: clamp(16rem, 33%, 20rem);
}
/* Four column grid layout */
.grid[data-layout='quarters'] {
  --grid-placement: auto-fit;
  --grid-min-item-size: clamp(14rem, 25%, 18rem);
}
/* Twelve column grid layout */
.grid[data-layout='twelfths'] {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
/* Special layout for larger devices. Used on home page intro */
.grid[data-layout='lg:10/2'] {
  grid-template-columns: 100%;
}
@media (min-width: 760px) {
  .grid[data-layout='lg:10/2'] {
    grid-template-columns: clamp(40rem, 80vw, 60rem);
  }
}
@media (min-width: 1230px) {
  .grid[data-layout='lg:10/2'] {
    grid-template-columns: 10fr 2fr;
  }
}
/*
REPEL
A little layout that pushes items away from each other where
there is space in the viewport and stacks on small viewports

CUSTOM PROPERTIES AND CONFIGURATION
--gutter (var(--space-s-m)): This defines the space
between each item.

--repel-vertical-alignment How items should align vertically.
Can be any acceptable flexbox alignment value.
*/
.repel {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: var(--repel-vertical-alignment, center);
  gap: var(--gutter, var(--space-s-m));
}
.repel[data-nowrap] {
  flex-wrap: nowrap;
}
/* 
SIDEBAR
More info: https://every-layout.dev/layouts/sidebar/
A layout that allows you to have a flexible main content area
and a "fixed" width sidebar that sits on the left or right.
If there is not enough viewport space to fit both the sidebar
width *and* the main content minimum width, they will stack
on top of each other

CUSTOM PROPERTIES AND CONFIGURATION
--gutter (var(--space-size-1)): This defines the space
between the sidebar and main content.

--sidebar-target-width (20rem): How large the sidebar should be

--sidebar-content-min-width(50%): The minimum size of the main content area

EXCEPTIONS
.sidebar[data-direction='rtl']: flips the sidebar to be on the right 
*/
.sidebar {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gutter, var(--space-s-l));
}
.sidebar > :first-child {
  flex-basis: var(--sidebar-target-width, 20rem);
  flex-grow: 1;
}
.sidebar > :last-child {
  flex-basis: 0;
  flex-grow: 999;
  min-width: var(--sidebar-content-min-width, 50%);
}
/*
SWITCHER
More info: https://every-layout.dev/layouts/switcher/
A layout that allows you to lay **2** items next to each other
until there is not enough horizontal space to allow that.

CUSTOM PROPERTIES AND CONFIGURATION
--gutter (var(--space-size-1)): This defines the space
between each item

--switcher-target-container-width (40rem): How large the container
needs to be to allow items to sit inline with each other

--switcher-vertical-alignment How items should align vertically.
Can be any acceptable flexbox alignment value.
*/
.switcher {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gutter, var(--space-s-l));
  align-items: var(--switcher-vertical-alignment, flex-start);
}
.switcher > * {
  flex-grow: 1;
  flex-basis: calc((var(--switcher-target-container-width, 40rem) - 100%) * 999);
}
/* Max 2 items,
so anything greater than 2 is ful width */
.switcher > :nth-child(n + 3) {
  flex-basis: 100%;
}
/*
WRAPPER COMPOSITION 
A common wrapper/container
*/
.wrapper {
  margin-inline: auto;
  max-width: clamp(16rem, var(--wrapper-max-width, 100vw), 90rem);  /* clamp(min, val, max) */
  padding-left: var(--gutter);
  padding-right: var(--gutter);
  position: relative;
}
/* Archive pagination — borrowed visual language from .button (brand radius,
   currentColor border, orange accent for the active / hovered state). */
.archive-post-nav {
	margin-block-start: var(--space-xl, 3rem);
}
.archive-post-nav ul {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	gap: var(--space-2xs, 0.5rem);
	list-style: none;
	margin: 0;
	padding: 0;
}
.archive-post-nav a,
.archive-post-nav span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.5rem;
	min-height: 2.5rem;
	padding-inline: var(--space-xs, 0.5rem);
	border: 1px solid currentColor;
	border-radius: 8px;
	color: inherit;
	text-decoration: none;
	font-weight: var(--font-semi, 600);
	transition: background-color 0.2s ease, color 0.2s ease,
				border-color 0.2s ease, transform 0.2s ease;
}
.archive-post-nav a:hover,
.archive-post-nav a:focus-visible {
	background-color: var(--color-orange);
	border-color: var(--color-orange);
	color: var(--color-white);
}
.archive-post-nav a:active {
	transform: translateY(1px);
}
/* Current page */
.archive-post-nav span.current {
	background-color: var(--color-orange);
	border-color: var(--color-orange);
	color: var(--color-white);
}
/* Ellipsis dots — no border, no background */
.archive-post-nav span.dots {
	border: 0;
	min-width: 0;
	padding-inline: var(--space-3xs, 0.25rem);
}
/* Previous / next arrow links */
.archive-post-nav .prev-list-item a,
.archive-post-nav .next-list-item a {
	padding-inline: var(--space-s, 0.75rem);
}
/* Search form - single line layout */
.searchform {
	width: 100%;
}
.searchform .input-group {
	display: flex;
	align-items: stretch;
	gap: 0;
	max-width: 600px;
}
.searchform .input-group-field {
	flex: 1 1 auto;
	min-width: 0;
	padding: 0.5rem 1rem;
	border: 1px solid var(--color-neutral-light, #ddd);
	border-right: none;
}
.searchform .input-group-button {
	flex: 0 0 auto;
}
.searchform .input-group-button label {
	display: block;
	margin: 0;
	cursor: pointer;
	height: 100%;
}
.searchform .input-group-button .button {
	height: 100%;
	margin: 0;
	border-radius: 0;
	border: 1px solid var(--color-neutral-light, #ddd);
	padding: 0.5rem 3rem;
	display: flex;
	align-items: center;
	justify-content: center;
}
.searchform .input-group-button svg {
	width: 20px;
	height: 20px;
}
/*
ABSOLUTE CORNERS
Position elements absolutely in each corner
*/
.absolute-top-left {
	position: absolute;
	top: 0;
	left: 0;
}
.absolute-top-right {
	position: absolute;
	top: 0;
	right: 0;
}
.absolute-bottom-left {
	position: absolute;
	bottom: 0;
	left: 0;
}
.absolute-bottom-right {
	position: absolute;
	bottom: 0;
	right: 0;
}
/* 
ABSOLUTE FULL
position absolutely, top, bottom, left, right 0 and 100% height and width
*/
.absolute-full {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}
/* Animation utilities — one-shot on-load animations.
   Suspended for users who prefer reduced motion. */
@keyframes fade-in-up {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.u-fade-in-up {
  animation: fade-in-up 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@media (prefers-reduced-motion: reduce) {
  .u-fade-in-up {
    animation: none;
  }
}
.img-wrapper {
	position: relative;
}
/* Direct child images only - excludes slideshow images */
.img-wrapper > picture,
	.img-wrapper > img {
		position: absolute;
		top: 0;
		left: 0;
		height: 100%;
		width: 100%;
		object-fit: cover;
	}
/* Base aspect ratio utilities (mobile-first) */
.aspect-ratio--1-1 	{ aspect-ratio: 1 / 1; }
.aspect-ratio--3-2 	{ aspect-ratio: 3 / 2; }
.aspect-ratio--2-3 	{ aspect-ratio: 2 / 3; }
.aspect-ratio--4-3 	{ aspect-ratio: 4 / 3; }
.aspect-ratio--3-4 	{ aspect-ratio: 3 / 4; }
.aspect-ratio--16-9 { aspect-ratio: 16 / 9; }
.aspect-ratio--21-9 { aspect-ratio: 21 / 9; }
/* Small breakpoint (760px+) */
@media (min-width: 760px) {
	.aspect-ratio--1-1\@sm 	{ aspect-ratio: 1 / 1; }
	.aspect-ratio--3-2\@sm 	{ aspect-ratio: 3 / 2; }
	.aspect-ratio--2-3\@sm 	{ aspect-ratio: 2 / 3; }
	.aspect-ratio--4-3\@sm 	{ aspect-ratio: 4 / 3; }
	.aspect-ratio--3-4\@sm 	{ aspect-ratio: 3 / 4; }
	.aspect-ratio--16-9\@sm { aspect-ratio: 16 / 9; }
	.aspect-ratio--21-9\@sm { aspect-ratio: 21 / 9; }
}
/* Medium breakpoint (1024px+) */
@media (min-width: 1024px) {
	.aspect-ratio--1-1\@md 	{ aspect-ratio: 1 / 1; }
	.aspect-ratio--3-2\@md 	{ aspect-ratio: 3 / 2; }
	.aspect-ratio--2-3\@md 	{ aspect-ratio: 2 / 3; }
	.aspect-ratio--4-3\@md 	{ aspect-ratio: 4 / 3; }
	.aspect-ratio--3-4\@md 	{ aspect-ratio: 3 / 4; }
	.aspect-ratio--16-9\@md { aspect-ratio: 16 / 9; }
	.aspect-ratio--21-9\@md { aspect-ratio: 21 / 9; }
}
/* Large breakpoint (1280px+) */
@media (min-width: 1280px) {
	.aspect-ratio--1-1\@lg 	{ aspect-ratio: 1 / 1; }
	.aspect-ratio--3-2\@lg 	{ aspect-ratio: 3 / 2; }
	.aspect-ratio--2-3\@lg 	{ aspect-ratio: 2 / 3; }
	.aspect-ratio--4-3\@lg 	{ aspect-ratio: 4 / 3; }
	.aspect-ratio--3-4\@lg 	{ aspect-ratio: 3 / 4; }
	.aspect-ratio--16-9\@lg { aspect-ratio: 16 / 9; }
	.aspect-ratio--21-9\@lg { aspect-ratio: 21 / 9; }
}
/* Breadcrumbs utility */
.breadcrumbs {
  --breadcrumb-separator: "/";
  --breadcrumb-gap: var(--space-xs);
  font-size: var(--text-sm, 0.875rem);
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--breadcrumb-gap);
  list-style: none;
  padding: 0;
  margin: 0;
}
.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: var(--breadcrumb-gap);
}
/* Add separator between items */
.breadcrumbs__item:not(:last-child)::after {
  content: var(--breadcrumb-separator);
  color: var(--color-gray-400, #9ca3af);
  font-weight: 300;
}
.breadcrumbs__item a {
  color: var(--color-primary, #3b82f6);
  text-decoration: none;
  transition: color 0.2s ease;
}
.breadcrumbs__item a:hover {
  color: var(--color-primary-dark, #2563eb);
  text-decoration: underline;
}
.breadcrumbs__item--current {
  color: var(--color-gray-600, #4b5563);
  font-weight: 500;
}
/* Accessibility - ensure good contrast */
@media (prefers-contrast: high) {
  .breadcrumbs__item a {
    text-decoration: underline;
  }
}
/*
CENTER CONTENT
Center children within a container
Useful for centering icons, text, or any content
*/
.center-content {
	display: flex;
	align-items: center;
	justify-content: center;
}
/* Grid-based centering alternative */
.center-content-grid {
	display: grid;
	place-items: center;
}
/* Inline centering (for icons within text) */
.center-inline {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	vertical-align: middle;
}
/* ==========================================================================
   GRADIENT FADE UTILITY
   For text legibility over images
   ========================================================================== */
/* Bottom fade - for text at bottom of image */
.gradient-fade-bottom {
	position: relative;
}
.gradient-fade-bottom::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	height: 60%;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.8) 0%,
		rgba(0, 0, 0, 0.4) 50%,
		transparent 100%
	);
	z-index: 1;
	pointer-events: none;
}
/* Ensure content sits above gradient */
.gradient-fade-bottom > * {
	position: relative;
	z-index: 2;
}
/* Top fade variant - for text at top of image */
.gradient-fade-top {
	position: relative;
}
.gradient-fade-top::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 60%;
	background: linear-gradient(
		to bottom,
		rgba(0, 0, 0, 0.8) 0%,
		rgba(0, 0, 0, 0.4) 50%,
		transparent 100%
	);
	z-index: 1;
	pointer-events: none;
}
.gradient-fade-top > * {
	position: relative;
	z-index: 2;
}
/*
Height utility classes
Extends Tailwind's height utilities with additional percentage-based values
*/
.h-10 { height: 10%; }
.h-20 { height: 20%; }
.h-30 { height: 30%; }
.h-40 { height: 40%; }
.h-50 { height: 50%; }
.h-60 { height: 60%; }
.h-70 { height: 70%; }
.h-80 { height: 80%; }
.h-90 { height: 90%; }
.h-100 { height: 100%; }
/* Min height utilities */
.min-h-10 { min-height: 10%; }
.min-h-20 { min-height: 20%; }
.min-h-30 { min-height: 30%; }
.min-h-40 { min-height: 40%; }
.min-h-50 { min-height: 50%; }
.min-h-60 { min-height: 60%; }
.min-h-70 { min-height: 70%; }
.min-h-80 { min-height: 80%; }
.min-h-90 { min-height: 90%; }
.min-h-100 { min-height: 100%; }
/* 
MENU UTILITY
Push away from each other but wrap when not enough space (For Nav)
*/
.menu ul,
ul.menu {
    --gutter: var(--space-xs) var(--space-xs);
    margin: 0
}
/* 
REGION UTILITY
Consistent block padding for page sections
*/
.region {
  padding-block: var(--region-space, var(--space-xl-2xl));
}
.width-10ch {  max-width: 10ch; }
.width-20ch {  max-width: 20ch; }
.width-30ch {  max-width: 30ch; }
.width-40ch {  max-width: 40ch; }
.width-50ch {  max-width: 50ch; }
.width-60ch {  max-width: 60ch; }
.width-70ch {  max-width: 70ch; }
.width-80ch {  max-width: 80ch; }
.width-90ch {  max-width: 90ch; }
.width-100ch {  max-width: 100ch; }
/* 
TINY IMAGE IN A CIRCLE - e.g. TESIMONIAL / AUTHOR IMAGE
*/
.tiny-circle-image {
    width: 5rem;
    height: 5rem;
    
}
.tiny-circle-image img,
.tiny-circle-image picture {
    object-fit: cover;
    height: 100%;
    width: 100%;
    border-radius: 50%;
}
/* ==========================================================================
   VIDEO COVER UTILITY
   ========================================================================== */
/**
 * VIDEO COVER - Make video/iframe fill container like object-fit: cover
 *
 * Problem: Unlike images, iframes don't respect object-fit: cover.
 * When a video (usually 16:9) needs to fill a container of different aspect ratio,
 * setting width/height to 100% leaves gaps due to the video's intrinsic ratio.
 *
 * Solution: Use absolute positioning with min-width/min-height to ensure coverage.
 *
 * Usage:
 *
 *   <div class="video-cover">
 *     <iframe class="video-cover__content" src="..."></iframe>
 *   </div>
 */
.video-cover {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 100%;
}
.video-cover__content {
	/* Center the video */
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);

	/* Ensure minimum coverage */
	min-width: 100%;
	min-height: 100%;

	/* Force dimensions that ensure one axis always overflows (for 16:9 video) */
	width: 177.78vh;  /* 16/9 × 100vh - ensures width covers when container is tall */
	height: 56.25vw;  /* 9/16 × 100vw - ensures height covers when container is wide */

	/* Fade in when video loads */
	opacity: 0;
	transition: opacity 0.6s ease-in-out;
}
/* Modifier for 4:3 aspect ratio videos */
.video-cover__content--4-3 {
	width: 133.33vh;
	height: 75vw;
}
/* Modifier for 21:9 aspect ratio videos (ultra-wide) */
.video-cover__content--21-9 {
	width: 233.33vh;
	height: 42.86vw;
}
/* Modifier for 1:1 aspect ratio videos (square) */
.video-cover__content--1-1 {
	width: 100vh;
	height: 100vw;
}
/**
 * VIDEO COVER THUMBNAIL
 * Displays a loading/poster image while Vimeo video loads
 */
.video-cover__thumbnail {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	z-index: 2;
	opacity: 1;
	transition: opacity 0.6s ease-in-out;
	pointer-events: none; /* Allow clicks to pass through to video */
}
/* Hide thumbnail when video is loaded */
.video-cover--loaded .video-cover__thumbnail {
	opacity: 0;
}
/* Fade in video content when loaded */
.video-cover--loaded .video-cover__content {
	opacity: 1;
}
/* Viewport toggle utilities — show/hide elements by breakpoint */
/* Breakpoint aligns with Tailwind md (768px) from viewports.json mid value */
.large-viewports--only {
  display: none;
}
@media (min-width: 768px) {
  .large-viewports--only {
    display: block;
  }
  .small-viewports--only {
    display: none;
  }
}
/* 
VISUALLY HIDDEN UTILITY
Info: https://piccalil.li/quick-tip/visually-hidden/ 
*/
.visually-hidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 0;
  margin: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  white-space: nowrap;
}
.display-none {
  display: none;
}
.hide-on-mobile {
  display: none;
}
@media (min-width: 760px) {
.hide-on-mobile {
    display: unset
}
.hide-on-desktop {
    display: none
}
  }
/**
 * Wrapper Alignment Utilities
 *
 * Allows full-bleed elements to have content that aligns with the .wrapper
 * on the left or right side, while maintaining full-width backgrounds.
 *
 * Uses calculated padding to match the wrapper's side gutters at max-width (120rem).
 * Accounts for scrollbar width via --scrollbar-width (0 on mobile, 0.9rem on desktop).
 * Falls back to standard gutter on smaller screens.
 *
 * Formula: (100vw - scrollbar - 120rem) / 2 + wrapper padding
 *
 * Usage:
 * - .wrapper-align-left - Content aligns with wrapper's left edge
 * - .wrapper-align-right - Content aligns with wrapper's right edge
 * - Responsive variants: md:wrapper-align-left, lg:wrapper-align-right, etc.
 */
/* Base utilities - apply at all breakpoints */
.wrapper-align-left {
	padding-left: max(var(--gutter), calc((100vw - var(--scrollbar-width, 0px) - 120rem) / 2 + var(--gutter)));
}
.wrapper-align-right {
	padding-right: max(var(--gutter), calc((100vw - var(--scrollbar-width, 0px) - 120rem) / 2 + var(--gutter)));
}
/* Medium screens and up (768px+) */
@media (min-width: 768px) {
	.md\:wrapper-align-left {
		padding-left: max(var(--gutter), calc((100vw - var(--scrollbar-width, 0px) - 120rem) / 2 + var(--gutter)));
	}

	.md\:wrapper-align-right {
		padding-right: max(var(--gutter), calc((100vw - var(--scrollbar-width, 0px) - 120rem) / 2 + var(--gutter)));
	}
}
/* Large screens and up (1024px+) */
@media (min-width: 1024px) {
	.lg\:wrapper-align-left {
		padding-left: max(var(--gutter), calc((100vw - var(--scrollbar-width, 0px) - 120rem) / 2 + var(--gutter)));
	}

	.lg\:wrapper-align-right {
		padding-right: max(var(--gutter), calc((100vw - var(--scrollbar-width, 0px) - 120rem) / 2 + var(--gutter)));
	}
}
/* Prototype only — remove before launch */
.is-dummy-content {
  outline: 1px dashed #d97706;
  background-color: #fffbeb;
}
.is-dummy-content::before {
  content: 'placeholder';
  display: block;
  font-size: 0.75rem;
  color: #b45309;
  font-family: monospace;
  margin-block-end: 0.25rem;
}
@media print {
  .is-dummy-content {
    outline: none;
    background: none;
  }
  .is-dummy-content::before {
    display: none;
  }
}
/* Prototype only — temporary block spacing. Remove when design system spacing is implemented. */
/* Targets all ACF block sections on the front-end */
.hero-block,
.page-hero-block,
.copy-block,
.cta-block,
.cards-block,
.testimonials-block,
.block--testimonial,
.block--testimonials,
.block--statement,
.team-member-block,
.latest-posts-block,
.contact-details-block,
.form-block,
.copy-and-image-block,
.accordion-block,
.service-links-block {
  padding-block: var(--region-space, var(--space-xl-2xl));
}
/*
 * WIREFRAME MODE
 * Alternating light grey shades on each section for wireframe presentation.
 * DELETE THIS FILE when moving to final design.
 */
/* #main > section:nth-child(4n+1) {
  background-color: #f2f2f2;
}

#main > section:nth-child(4n+2) {
  background-color: #e8e8e8;
}

#main > section:nth-child(4n+3) {
  background-color: #dedede;
}

#main > section:nth-child(4n+4) {
  background-color: #d4d4d4;
} */
#main > section {
  /* padding-block: var(--block-spacing, 8rem); */
  padding-block: 4rem;
}
@media (min-width: 700px) {
#main > section {
    padding-block: 7rem
}
  }
/* Full-bleed placeholder image — add class "placeholder-image" to an image block or div */
.placeholder-image {
  background-color: #c0c0c0;
  width: 100%;
  aspect-ratio: 21/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: var(--size-lg, 1.25rem);
  font-style: italic;
}
.placeholder-image::after {
  content: "Placeholder image";
}
.static{
  position: static;
}
.fixed{
  position: fixed;
}
.relative{
  position: relative;
}
.sticky{
  position: sticky;
}
.col-span-12{
  grid-column: span 12 / span 12;
}
.mx-\[auto\]{
  margin-left: auto;
  margin-right: auto;
}
.mb-\[0\.25rem\]{
  margin-bottom: 0.25rem;
}
.mb-\[2rem\]{
  margin-bottom: 2rem;
}
.mt-\[0\.25rem\]{
  margin-top: 0.25rem;
}
.mt-\[0\]{
  margin-top: 0;
}
.mt-\[0rem\]{
  margin-top: 0rem;
}
.mt-\[2rem\]{
  margin-top: 2rem;
}
.mt-\[4rem\]{
  margin-top: 4rem;
}
.block{
  display: block;
}
.inline{
  display: inline;
}
.flex{
  display: flex;
}
.table{
  display: table;
}
.grid{
  display: grid;
}
.hidden{
  display: none;
}
.max-w-\[1000px\]{
  max-width: 1000px;
}
.max-w-\[500px\]{
  max-width: 500px;
}
.max-w-\[538px\]{
  max-width: 538px;
}
.max-w-\[550px\]{
  max-width: 550px;
}
.max-w-\[600px\]{
  max-width: 600px;
}
.max-w-\[746px\]{
  max-width: 746px;
}
.max-w-\[800px\]{
  max-width: 800px;
}
.transform{
  transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}
.resize{
  resize: both;
}
.grid-cols-1{
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
.grid-cols-12{
  grid-template-columns: repeat(12, minmax(0, 1fr));
}
.flex-row-reverse{
  flex-direction: row-reverse;
}
.flex-col{
  flex-direction: column;
}
.items-end{
  align-items: flex-end;
}
.items-center{
  align-items: center;
}
.justify-center{
  justify-content: center;
}
.gap-2xs{
  gap: clamp(0.5625rem, 0.49rem + 0.33vw, 0.75rem);
}
.gap-\[0\.5rem\]{
  gap: 0.5rem;
}
.gap-\[0rem\]{
  gap: 0rem;
}
.gap-\[1rem\]{
  gap: 1rem;
}
.gap-xs{
  gap: clamp(0.875rem, 0.78rem + 0.44vw, 1.125rem);
}
.rounded{
  border-radius: 0.25rem;
}
.bg-blue{
  background-color: #004E70;
}
.bg-blue-dark{
  background-color: #004462;
}
.bg-blue-darkest{
  background-color: #002E42;
}
.bg-blue-light{
  background-color: #0098DB;
}
.bg-green{
  background-color: #0B4D29;
}
.bg-green-dark{
  background-color: #0B2B22;
}
.bg-green-light{
  background-color: #4A9072;
}
.bg-off-black{
  background-color: #191716;
}
.bg-off-white{
  background-color: #FAF6EF;
}
.bg-orange{
  background-color: #FE7F2D;
}
.bg-white{
  background-color: #FFFFFF;
}
.text-center{
  text-align: center;
}
.text-2xl{
  font-size: clamp(2rem, 1.63rem + 1.78vw, 3rem);
}
.text-3xl{
  font-size: clamp(2.5rem, 1.95rem + 2.67vw, 4rem);
}
.text-4xl{
  font-size: clamp(3rem, 1.90rem + 5.33vw, 6rem);
}
.text-lg{
  font-size: clamp(1.25rem, 1.16rem + 0.44vw, 1.5rem);
}
.text-md{
  font-size: clamp(1.125rem, 1.08rem + 0.22vw, 1.25rem);
}
.text-sm{
  font-size: 1rem;
}
.text-xl{
  font-size: clamp(1.5rem, 1.32rem + 0.89vw, 2rem);
}
.text-xs{
  font-size: 0.875rem;
}
.font-extra-bold{
  font-weight: 800;
}
.font-regular{
  font-weight: 400;
}
.font-semi{
  font-weight: 600;
}
.uppercase{
  text-transform: uppercase;
}
.no-underline{
  text-decoration-line: none;
}
.outline{
  outline-style: solid;
}
.blur{
  --tw-blur: blur(8px);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.grayscale{
  --tw-grayscale: grayscale(100%);
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.filter{
  filter: var(--tw-blur) var(--tw-brightness) var(--tw-contrast) var(--tw-grayscale) var(--tw-hue-rotate) var(--tw-invert) var(--tw-saturate) var(--tw-sepia) var(--tw-drop-shadow);
}
.transition{
  transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 150ms;
}
.bg-off-black{
  background-color: #191716;
}
.bg-white{
  background-color: #FFFFFF;
}
.bg-off-white{
  background-color: #FAF6EF;
}
.bg-blue-dark{
  background-color: #004462;
}
.bg-blue-darkest{
  background-color: #002E42;
}
.bg-blue{
  background-color: #004E70;
}
.bg-blue-light{
  background-color: #0098DB;
}
.bg-green-dark{
  background-color: #0B2B22;
}
.bg-green{
  background-color: #0B4D29;
}
.bg-green-light{
  background-color: #4A9072;
}
.bg-orange{
  background-color: #FE7F2D;
}
.color-off-black{
  color: #191716;
}
.color-white{
  color: #FFFFFF;
}
.color-off-white{
  color: #FAF6EF;
}
.color-blue-dark{
  color: #004462;
}
.color-blue-darkest{
  color: #002E42;
}
.color-blue{
  color: #004E70;
}
.color-blue-light{
  color: #0098DB;
}
.color-green-dark{
  color: #0B2B22;
}
.color-green{
  color: #0B4D29;
}
.color-green-light{
  color: #4A9072;
}
.color-orange{
  color: #FE7F2D;
}
.text-xs{
  font-size: 0.875rem;
}
.text-sm{
  font-size: 1rem;
}
.text-md{
  font-size: clamp(1.125rem, 1.08rem + 0.22vw, 1.25rem);
}
.text-lg{
  font-size: clamp(1.25rem, 1.16rem + 0.44vw, 1.5rem);
}
.text-xl{
  font-size: clamp(1.5rem, 1.32rem + 0.89vw, 2rem);
}
.text-2xl{
  font-size: clamp(2rem, 1.63rem + 1.78vw, 3rem);
}
.text-3xl{
  font-size: clamp(2.5rem, 1.95rem + 2.67vw, 4rem);
}
.text-4xl{
  font-size: clamp(3rem, 1.90rem + 5.33vw, 6rem);
}
.text-weight-regular{
  font-weight: 400;
}
.text-weight-semi{
  font-weight: 600;
}
.text-weight-extra-bold{
  font-weight: 800;
}
/* Debug styles - only in development */
/* @import '../css-utils/debug.css'; */
/* @import '../css-utils/a11y-check.css'; */
@media (min-width: 760px){
  .md\:col-span-5{
    grid-column: span 5 / span 5;
  }
  .md\:col-span-7{
    grid-column: span 7 / span 7;
  }
  .md\:flex{
    display: flex;
  }
  .md\:grid-cols-2{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .md\:flex-col{
    flex-direction: column;
  }
  .md\:justify-center{
    justify-content: center;
  }
}
@media (min-width: 1230px){
  .lg\:block{
    display: block;
  }
  .lg\:hidden{
    display: none;
  }
}