html.lenis,
html.lenis body {
  height: auto;
}

.lenis:not(.lenis-autoToggle).lenis-stopped {
  overflow: clip;
}

.lenis [data-lenis-prevent],
.lenis [data-lenis-prevent-wheel],
.lenis [data-lenis-prevent-touch],
.lenis [data-lenis-prevent-vertical],
.lenis [data-lenis-prevent-horizontal] {
  overscroll-behavior: contain;
}

.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.lenis.lenis-autoToggle {
  transition-property: overflow;
  transition-duration: 1ms;
  transition-behavior: allow-discrete;
}

/**
 * Swiper 12.1.3
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2026 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: March 24, 2026
 */

: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);
  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-slide,
  .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 */
    &::-webkit-scrollbar {
      display: none;
    }
  }
  > .swiper-wrapper > .swiper-slide {
    scroll-snap-align: start start;
  }
  &.swiper-horizontal {
    > .swiper-wrapper {
      scroll-snap-type: x mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-slides-offset-before);
      scroll-margin-inline-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-inline-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-vertical {
    > .swiper-wrapper {
      scroll-snap-type: y mandatory;
    }
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-slides-offset-before);
      scroll-margin-block-start: var(--swiper-slides-offset-before);
    }
    > .swiper-wrapper > .swiper-slide:last-child {
      margin-block-end: var(--swiper-slides-offset-after);
    }
  }
  &.swiper-free-mode {
    > .swiper-wrapper {
      scroll-snap-type: none;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: none;
    }
  }
  &.swiper-centered {
    > .swiper-wrapper::before {
      content: '';
      flex-shrink: 0;
      order: 9999;
    }
    > .swiper-wrapper > .swiper-slide {
      scroll-snap-align: center center;
      scroll-snap-stop: always;
    }
  }
  &.swiper-centered.swiper-horizontal {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-inline-start: var(--swiper-centered-offset-before);
    }
    > .swiper-wrapper::before {
      height: 100%;
      min-height: 1px;
      width: var(--swiper-centered-offset-after);
    }
  }
  &.swiper-centered.swiper-vertical {
    > .swiper-wrapper > .swiper-slide:first-child {
      margin-block-start: var(--swiper-centered-offset-before);
    }
    > .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-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom,
  .swiper-slide-shadow,
  .swiper-slide-shadow-left,
  .swiper-slide-shadow-right,
  .swiper-slide-shadow-top,
  .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }
  .swiper-slide-shadow {
    background: rgba(0, 0, 0, 0.15);
  }
  .swiper-slide-shadow-left {
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-right {
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .swiper-slide-shadow-top {
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }
  .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-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-fade {
  &.swiper-free-mode {
    .swiper-slide {
      transition-timing-function: ease-out;
    }
  }
  .swiper-slide {
    pointer-events: none;
    transition-property: opacity;
    .swiper-slide {
      pointer-events: none;
    }
  }
  .swiper-slide-active {
    pointer-events: auto;
    & .swiper-slide-active {
      pointer-events: auto;
    }
  }
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-top-offset: 50%;
  --swiper-navigation-sides-offset: 4px;
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;

  width: var(--swiper-navigation-size);
  height: var(--swiper-navigation-size);

  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
  &.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }
  &.swiper-button-hidden {
    opacity: 0;
    cursor: auto;
    pointer-events: none;
  }
  .swiper-navigation-disabled & {
    display: none !important;
  }

  ::slotted(svg),
  svg {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
    transform-origin: center;
    fill: currentColor;
    pointer-events: none;
  }
}

.swiper-button-lock {
  display: none;
}

.swiper-button-prev,
.swiper-button-next {
  top: var(--swiper-navigation-top-offset, 50%);
  margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
}
.swiper-button-prev {
  left: var(--swiper-navigation-sides-offset, 4px);
  right: auto;
  ::slotted(.swiper-navigation-icon),
  .swiper-navigation-icon {
    transform: rotate(180deg);
  }
}
.swiper-button-next {
  right: var(--swiper-navigation-sides-offset, 4px);
  left: auto;
}
.swiper-horizontal {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    top: var(--swiper-navigation-top-offset, 50%);
    margin-top: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-left: 0;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    left: var(--swiper-navigation-sides-offset, 4px);
    right: auto;
  }
  .swiper-button-next,
  & ~ .swiper-button-next,
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    right: var(--swiper-navigation-sides-offset, 4px);
    left: auto;
  }
  .swiper-button-prev,
  & ~ .swiper-button-prev,
  &.swiper-rtl .swiper-button-next,
  &.swiper-rtl ~ .swiper-button-next {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(180deg);
    }
  }
  &.swiper-rtl .swiper-button-prev,
  &.swiper-rtl ~ .swiper-button-prev {
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(0deg);
    }
  }
}
.swiper-vertical {
  .swiper-button-prev,
  .swiper-button-next,
  ~ .swiper-button-prev,
  ~ .swiper-button-next {
    left: var(--swiper-navigation-top-offset, 50%);
    right: auto;
    margin-left: calc(0px - (var(--swiper-navigation-size) / 2));
    margin-top: 0;
  }
  .swiper-button-prev,
  ~ .swiper-button-prev {
    top: var(--swiper-navigation-sides-offset, 4px);
    bottom: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(-90deg);
    }
  }
  .swiper-button-next,
  ~ .swiper-button-next {
    bottom: var(--swiper-navigation-sides-offset, 4px);
    top: auto;
    ::slotted(.swiper-navigation-icon),
    .swiper-navigation-icon {
      transform: rotate(90deg);
    }
  }
}

: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-hidden {
    opacity: 0;
  }
  .swiper-pagination-disabled > &,
  &.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-bullet {
    transform: scale(0.33);
    position: relative;
  }
  .swiper-pagination-bullet-active {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-main {
    transform: scale(1);
  }
  .swiper-pagination-bullet-active-prev {
    transform: scale(0.66);
  }
  .swiper-pagination-bullet-active-prev-prev {
    transform: scale(0.33);
  }
  .swiper-pagination-bullet-active-next {
    transform: scale(0.66);
  }
  .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& {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
  }
  .swiper-pagination-clickable & {
    cursor: pointer;
  }

  &: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-pagination-bullet {
    margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
    display: block;
  }
  &.swiper-pagination-bullets-dynamic {
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    .swiper-pagination-bullet {
      display: inline-block;
      transition:
        200ms transform,
        200ms top;
    }
  }
}
.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  .swiper-pagination-bullet {
    margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
  }
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    .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-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-fill {
    transform-origin: right top;
  }
  .swiper-horizontal > &,
  &.swiper-pagination-horizontal,
  .swiper-vertical > &.swiper-pagination-progressbar-opposite,
  &.swiper-pagination-vertical.swiper-pagination-progressbar-opposite {
    width: 100%;
    height: var(--swiper-pagination-progressbar-size, 4px);
    left: 0;
    top: 0;
  }
  .swiper-vertical > &,
  &.swiper-pagination-vertical,
  .swiper-horizontal > &.swiper-pagination-progressbar-opposite,
  &.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;
}

/**
 * Accordion v3.4.1
 * Lightweight and accessible accordion module created in pure Javascript
 * https://github.com/michu2k/Accordion
 *
 * Copyright (c) Michał Strumpf
 * Published under MIT License
 */

.ac{--color-white:#fff;--color-light-grey:#eee;--color-grey:#8a8a8a;--color-black:#111;margin-bottom:8px;border:1px solid var(--color-light-grey);background-color:var(--color-white);box-sizing:border-box}.ac .ac-header{margin:0;padding:0}.ac .ac-trigger{font:bold 16px Arial,sans-serif;color:var(--color-black);text-align:left;width:100%;padding:8px 32px 8px 8px;display:block;cursor:pointer;background-color:transparent;transition:color .25s ease;position:relative;text-decoration:none;margin:0;border:0}.ac .ac-trigger::after{content:"+";text-align:center;width:15px;transform:translate(0,-50%);position:absolute;right:10px;top:50%}.ac .ac-trigger:focus{color:var(--color-grey)}.ac .ac-panel{overflow:hidden;transition-property:height,visibility;transition-timing-function:ease}.ac .ac-panel .ac-text{font:15px/24px Arial,sans-serif;color:var(--color-black);padding:8px;margin:0}.ac.js-enabled .ac-panel{visibility:hidden}.ac.is-active .ac-panel{visibility:visible}.ac.is-active>.ac-header .ac-trigger::after{content:"\2013"}
@charset "UTF-8";
@font-face {
  font-family: "PlusJakartaSans-Regular";
  src: url(../fonts/PlusJakartaSans-Regular.ttf?bc5e168fc3a1db9938ff92783b578bbb) format("truetype");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "PlusJakartaSans-Medium";
  src: url(../fonts/PlusJakartaSans-Medium.ttf?4360f8f2386b37f0d67d6c266b1f2df4) format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DomaineText-Light";
  src: url(../fonts/domaine-text-light.woff2?20644c011f5f2e21e21b4207f3fe6869) format("woff2");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "DomaineText-Light-Italic";
  src: url(../fonts/domaine-text-light-italic.woff2?6f84542d167b4afec6db4ec6b6d87ba1) format("woff2");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
:root {
  --font-body: "PlusJakartaSans-Regular", Arial, Helvetica, sans-serif;
  --font-medium: "PlusJakartaSans-Medium", Arial, Helvetica, sans-serif;
  --font-serif: "DomaineText-Light", Georgia, serif;
  --font-serif-italic: "DomaineText-Light-Italic", Georgia, serif;
  --container-max-width: 2400px;
  --grid-columns: 4;
  --grid-margin: 20px;
  --grid-gutter: 20px;
  --colour-black: #0b0a09;
  --colour-white: #faf6f4;
  --colour-green: #162a27;
  --colour-gold: #c7a78a;
  --colour-offwhite: #f5eee9;
  --rgb-white: 250,246,244;
  --rgb-green: 22,42,39;
  --rgb-gold: 199,167,138;
  --colour-green-20: #cccdcb;
  --colour-green-50: #88908e;
  --colour-green-80: #445350;
  --colour-green-90: #2d3e3c;
  --font-size-base: clamp(16px, 0.1vi + 15.6px, 18px);
  --font-size-md: clamp(19.2px, 0.21vi + 18.36px, 23.4px);
  --font-size-lg: clamp(23.04px, 0.37vi + 21.56px, 30.42px);
  --font-size-xl: clamp(27.65px, 0.59vi + 25.27px, 39.55px);
  --font-size-2xl: clamp(33.18px, 0.91vi + 29.53px, 51.41px);
  --font-size-3xl: clamp(39.81px, 1.35vi + 34.41px, 66.83px);
  --spacing-block: 90px;
  --spacing-block-xs: clamp(40px, 1vi + 36px, 60px);
  --spacing-block-sm: clamp(60px, 1.5vi + 54px, 90px);
  --spacing-block-lg: clamp(90px, 3vi + 78px, 150px);
  --spacing-block-xl: clamp(150px, 4.5vi + 132px, 240px);
  --header-logo-height: 5rem;
  --header-vertical-spacing: 1.2rem;
  --header-height: calc(var(--header-logo-height) + (var(--header-vertical-spacing) * 2));
  --header-logo-height-condensed: 2.7rem;
  --header-vertical-spacing-condensed: 0.6rem;
  --header-height-condensed: calc(var(--header-logo-height-condensed) + (var(--header-vertical-spacing-condensed) * 2));
  --button-height: 2.6rem;
  --easing: cubic-bezier(0.4, 0, 0.2, 1);
}
@media only screen and (min-width: 960px) {
  :root {
    --grid-columns: 12;
    --grid-margin: 30px;
  }
}
@media only screen and (min-width: 1600px) {
  :root {
    --grid-columns: 24;
  }
}

[data-colour="#0b0a09"] {
  background-color: #0b0a09 !important;
  color: #faf6f4 !important;
}
[data-colour="#0b0a09"] .button--primary {
  background-color: #faf6f4 !important;
  color: #0b0a09 !important;
}
[data-colour="#0b0a09"] .button--secondary {
  border-color: #faf6f4 !important;
  color: #faf6f4 !important;
}
@media (hover: hover) and (pointer: fine) {
  [data-colour="#0b0a09"] .button--secondary:hover {
    background-color: #faf6f4 !important;
    color: #0b0a09 !important;
  }
}
[data-colour="#0b0a09"] button {
  color: #faf6f4 !important;
}
[data-colour="#0b0a09"] .ac {
  background-color: #0b0a09 !important;
  border-color: #faf6f4 !important;
}
[data-colour="#0b0a09"] .component-quote {
  background-color: rgba(250, 246, 244, 0.1) !important;
  color: #faf6f4 !important;
}
[data-colour="#0b0a09"] .component-links__item,
[data-colour="#0b0a09"] .component-stats__item {
  background-color: rgba(250, 246, 244, 0.1) !important;
}
[data-colour="#0b0a09"] .component-gform input,
[data-colour="#0b0a09"] .component-gform textarea,
[data-colour="#0b0a09"] .component-gform select {
  background-color: rgba(250, 246, 244, 0.1) !important;
  color: #faf6f4 !important;
  border-color: #faf6f4 !important;
}
[data-colour="#0b0a09"] .component-gform input[type=submit] {
  background-color: #faf6f4 !important;
  color: #0b0a09 !important;
}

[data-colour="#faf6f4"] {
  background-color: #faf6f4 !important;
  color: #162a27 !important;
}
[data-colour="#faf6f4"] .button--primary {
  background-color: #162a27 !important;
  color: #faf6f4 !important;
}
[data-colour="#faf6f4"] .button--secondary {
  border-color: #162a27 !important;
  color: #162a27 !important;
}
@media (hover: hover) and (pointer: fine) {
  [data-colour="#faf6f4"] .button--secondary:hover {
    background-color: #162a27 !important;
    color: #faf6f4 !important;
  }
}
[data-colour="#faf6f4"] button {
  color: #162a27 !important;
}
[data-colour="#faf6f4"] .ac {
  background-color: #faf6f4 !important;
  border-color: #162a27 !important;
}
[data-colour="#faf6f4"] .component-quote {
  background-color: rgba(22, 42, 39, 0.1) !important;
  color: #162a27 !important;
}
[data-colour="#faf6f4"] .component-links__item,
[data-colour="#faf6f4"] .component-stats__item {
  background-color: rgba(22, 42, 39, 0.1) !important;
}
[data-colour="#faf6f4"] .component-gform input,
[data-colour="#faf6f4"] .component-gform textarea,
[data-colour="#faf6f4"] .component-gform select {
  background-color: rgba(22, 42, 39, 0.1) !important;
  color: #162a27 !important;
  border-color: #162a27 !important;
}
[data-colour="#faf6f4"] .component-gform input[type=submit] {
  background-color: #162a27 !important;
  color: #faf6f4 !important;
}

[data-colour="#162a27"] {
  background-color: #162a27 !important;
  color: #faf6f4 !important;
}
[data-colour="#162a27"] .button--primary {
  background-color: #faf6f4 !important;
  color: #162a27 !important;
}
[data-colour="#162a27"] .button--secondary {
  border-color: #faf6f4 !important;
  color: #faf6f4 !important;
}
@media (hover: hover) and (pointer: fine) {
  [data-colour="#162a27"] .button--secondary:hover {
    background-color: #faf6f4 !important;
    color: #162a27 !important;
  }
}
[data-colour="#162a27"] button {
  color: #faf6f4 !important;
}
[data-colour="#162a27"] .ac {
  background-color: #162a27 !important;
  border-color: #faf6f4 !important;
}
[data-colour="#162a27"] .component-quote {
  background-color: rgba(250, 246, 244, 0.1) !important;
  color: #faf6f4 !important;
}
[data-colour="#162a27"] .component-links__item,
[data-colour="#162a27"] .component-stats__item {
  background-color: rgba(250, 246, 244, 0.1) !important;
}
[data-colour="#162a27"] .component-gform input,
[data-colour="#162a27"] .component-gform textarea,
[data-colour="#162a27"] .component-gform select {
  background-color: rgba(250, 246, 244, 0.1) !important;
  color: #faf6f4 !important;
  border-color: #faf6f4 !important;
}
[data-colour="#162a27"] .component-gform input[type=submit] {
  background-color: #faf6f4 !important;
  color: #162a27 !important;
}

[data-colour="#c7a78a"] {
  background-color: #c7a78a !important;
  color: #faf6f4 !important;
}
[data-colour="#c7a78a"] .button--primary {
  background-color: #faf6f4 !important;
  color: #c7a78a !important;
}
[data-colour="#c7a78a"] .button--secondary {
  border-color: #faf6f4 !important;
  color: #faf6f4 !important;
}
@media (hover: hover) and (pointer: fine) {
  [data-colour="#c7a78a"] .button--secondary:hover {
    background-color: #faf6f4 !important;
    color: #c7a78a !important;
  }
}
[data-colour="#c7a78a"] button {
  color: #faf6f4 !important;
}
[data-colour="#c7a78a"] .ac {
  background-color: #c7a78a !important;
  border-color: #faf6f4 !important;
}
[data-colour="#c7a78a"] .component-quote {
  background-color: rgba(250, 246, 244, 0.1) !important;
  color: #faf6f4 !important;
}
[data-colour="#c7a78a"] .component-links__item,
[data-colour="#c7a78a"] .component-stats__item {
  background-color: rgba(250, 246, 244, 0.1) !important;
}
[data-colour="#c7a78a"] .component-gform input,
[data-colour="#c7a78a"] .component-gform textarea,
[data-colour="#c7a78a"] .component-gform select {
  background-color: rgba(250, 246, 244, 0.1) !important;
  color: #faf6f4 !important;
  border-color: #faf6f4 !important;
}
[data-colour="#c7a78a"] .component-gform input[type=submit] {
  background-color: #faf6f4 !important;
  color: #c7a78a !important;
}

[data-colour="#f5eee9"] {
  background-color: #f5eee9 !important;
  color: #162a27 !important;
}
[data-colour="#f5eee9"] .button--primary {
  background-color: #162a27 !important;
  color: #f5eee9 !important;
}
[data-colour="#f5eee9"] .button--secondary {
  border-color: #162a27 !important;
  color: #162a27 !important;
}
@media (hover: hover) and (pointer: fine) {
  [data-colour="#f5eee9"] .button--secondary:hover {
    background-color: #162a27 !important;
    color: #f5eee9 !important;
  }
}
[data-colour="#f5eee9"] button {
  color: #162a27 !important;
}
[data-colour="#f5eee9"] .ac {
  background-color: #f5eee9 !important;
  border-color: #162a27 !important;
}
[data-colour="#f5eee9"] .component-quote {
  background-color: rgba(22, 42, 39, 0.1) !important;
  color: #162a27 !important;
}
[data-colour="#f5eee9"] .component-links__item,
[data-colour="#f5eee9"] .component-stats__item {
  background-color: rgba(22, 42, 39, 0.1) !important;
}
[data-colour="#f5eee9"] .component-gform input,
[data-colour="#f5eee9"] .component-gform textarea,
[data-colour="#f5eee9"] .component-gform select {
  background-color: rgba(22, 42, 39, 0.1) !important;
  color: #162a27 !important;
  border-color: #162a27 !important;
}
[data-colour="#f5eee9"] .component-gform input[type=submit] {
  background-color: #162a27 !important;
  color: #f5eee9 !important;
}

* {
  box-sizing: border-box;
}

::-moz-selection {
  color: var(--colour-white);
  background: rgba(var(--rgb-gold), 0.99);
}

::selection {
  color: var(--colour-white);
  background: rgba(var(--rgb-gold), 0.99);
}

html,
body {
  scroll-behavior: auto !important;
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: 1.6;
  color: var(--colour-green);
  border: none;
  background: var(--colour-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
  overflow: hidden;
  padding-right: var(--body-scrollbar-width);
}

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

svg {
  overflow: visible;
}

iframe {
  display: block;
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  font-weight: normal;
}

a,
button,
button span {
  cursor: pointer;
}

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

button {
  padding: 0;
  border: none;
  border-radius: 0;
  background: none;
}

.skip-link {
  position: fixed;
  z-index: 10000;
  top: 1rem;
  left: 1rem;
  padding: 0.6rem 0.8rem;
  color: var(--colour-white);
  background: var(--colour-green);
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}
.skip-link:focus, .skip-link:focus-visible {
  transform: translateY(0);
}

button,
input,
select,
textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  box-shadow: none;
}

:where(a, button, input, select, textarea, summary, [tabindex]:not([tabindex="-1"])):focus {
  outline: none;
}
:where(a, button, input, select, textarea, summary, [tabindex]:not([tabindex="-1"])):focus-visible {
  outline: 2px solid var(--colour-gold);
  outline-offset: 0.25rem;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
  [data-reveal-fade],
  [data-reveal-fade] > * {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
  [data-parallax-container] img,
  [data-parallax-container] video,
  [data-parallax-container] .iframe-container {
    top: 0 !important;
    height: 100% !important;
    transform: none !important;
  }
  .swiper-wrapper,
  .swiper-slide,
  .page-transition {
    transition-duration: 0.01ms !important;
  }
  .page-transition {
    opacity: 0 !important;
    visibility: hidden !important;
  }
}
/* prettier-ignore */
.font-medium {
  font-family: var(--font-medium);
}

.font-serif {
  font-family: var(--font-serif);
}
.font-serif i,
.font-serif em {
  font-family: var(--font-serif-italic);
  font-style: normal;
}

.font-size-base {
  font-size: var(--font-size-base);
  line-height: 1.6;
}

.font-size-md {
  font-size: var(--font-size-md);
  line-height: 1.3;
}

.font-size-lg {
  font-size: var(--font-size-lg);
  line-height: 1.3;
}

.font-size-xl {
  font-size: var(--font-size-xl);
  line-height: 1.2;
}

.font-size-2xl {
  font-size: var(--font-size-2xl);
  line-height: 1.1;
}

.font-size-3xl {
  font-size: var(--font-size-3xl);
  line-height: 1;
}

.font-size-4xl {
  font-size: var(--font-size-4xl);
}

.heading {
  font-family: var(--font-serif);
  text-transform: uppercase;
}
.heading i,
.heading em {
  font-family: var(--font-serif-italic);
  font-style: normal;
  text-transform: none;
}

.eyebrow {
  font-size: 0.7rem;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.eyebrow + h1,
.eyebrow + h2,
.eyebrow + h3,
.eyebrow + h4,
.eyebrow + h5,
.eyebrow + h6,
.eyebrow + .richtext {
  margin-top: 1.6rem;
}

.text-center {
  text-align: center;
}
.text-center [class*=text-block-] {
  margin-left: auto;
  margin-right: auto;
}

.text-uppercase {
  text-transform: uppercase;
}
.text-uppercase.font-serif i,
.text-uppercase.font-serif em {
  text-transform: lowercase;
}

.text-balance {
  text-wrap: balance;
}

.px-grid-margin {
  padding-left: var(--grid-margin);
  padding-right: var(--grid-margin);
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.py-block {
  padding-top: var(--spacing-block);
  padding-bottom: var(--spacing-block);
}

.py-xs {
  padding-top: var(--spacing-block-xs);
  padding-bottom: var(--spacing-block-xs);
}

.py-sm {
  padding-top: var(--spacing-block-sm);
  padding-bottom: var(--spacing-block-sm);
}

.py-lg {
  padding-top: var(--spacing-block-lg);
  padding-bottom: var(--spacing-block-lg);
}

.py-xl {
  padding-top: var(--spacing-block-xl);
  padding-bottom: var(--spacing-block-xl);
}

.pt-block {
  padding-top: var(--spacing-block);
}

.pt-xs {
  padding-top: var(--spacing-block-xs);
}

.pt-sm {
  padding-top: var(--spacing-block-sm);
}

.pt-lg {
  padding-top: var(--spacing-block-lg);
}

.pt-xl {
  padding-top: var(--spacing-block-xl);
}

.pb-block {
  padding-bottom: var(--spacing-block);
}

.pb-xs {
  padding-bottom: var(--spacing-block-xs);
}

.pb-sm {
  padding-bottom: var(--spacing-block-sm);
}

.pb-lg {
  padding-bottom: var(--spacing-block-lg);
}

.pb-xl {
  padding-bottom: var(--spacing-block-xl);
}

.overflow-hidden {
  overflow: hidden;
}

.bg-offwhite {
  background-color: var(--colour-offwhite);
}

.bg-offwhite:has(+ .bg-offwhite) {
  padding-bottom: 0;
}

.form-blocks {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: [full-start] calc(var(--grid-margin) - var(--grid-gutter)) [content-start] repeat(var(--grid-columns), 1fr) [content-end] calc(var(--grid-margin) - var(--grid-gutter)) [full-end];
  -moz-column-gap: var(--grid-gutter);
       column-gap: var(--grid-gutter);
}

.form-block-full,
.form-block-anchor {
  grid-column: full;
}
.form-block-full + .form-block-content:not([class*=py-], .form-block-content[class*=pt-]),
.form-block-anchor + .form-block-content:not([class*=py-], .form-block-content[class*=pt-]) {
  margin-top: var(--spacing-block);
}
.form-block-full + .form-block-full,
.form-block-full + .form-block-anchor,
.form-block-anchor + .form-block-full,
.form-block-anchor + .form-block-anchor {
  margin-top: 0;
}

.form-block-content {
  grid-column: content;
}
.form-block-content:not([class*=py-]:last-child, [class*=pb-]):last-child {
  margin-bottom: var(--spacing-block);
}
.form-block-content:not([class*=py-], [class*=pb-]) + .form-block-content:not([class*=py-], [class*=pt-]) {
  margin-top: var(--spacing-block);
}
.form-block-content:not([class*=py-], [class*=pb-]) + .form-block-full {
  margin-top: var(--spacing-block);
}

.hero + .form-block-content:not([class*=py-], [class*=pt-]) {
  margin-top: var(--spacing-block);
}

.cky-consent-container {
  --font-scale: 0.9;
}
.cky-consent-container .cky-consent-bar {
  background-color: var(--colour-white) !important;
  border-color: var(--colour-black) !important;
  border-width: calc(2px * var(--font-scale)) !important;
  padding: calc(20px * var(--font-scale)) calc(26px * var(--font-scale)) !important;
}
.cky-consent-container .cky-consent-bar .cky-notice .cky-title {
  color: var(--colour-black) !important;
  font-size: calc(clamp(1rem, 5cqi, 1.2rem) * var(--font-scale)) !important;
  line-height: 1.3 !important;
  text-wrap: balance !important;
  font-weight: 500 !important;
  text-transform: capitalize !important;
}
.cky-consent-container .cky-consent-bar .cky-notice .cky-notice-group .cky-notice-des {
  color: var(--colour-black) !important;
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: calc(16px * var(--font-scale)) !important;
  font-style: normal !important;
  line-height: 1.4 !important;
}
.cky-consent-container .cky-consent-bar .cky-notice .cky-notice-group .cky-notice-des * {
  font-size: calc(16px * var(--font-scale)) !important;
}
.cky-consent-container .cky-consent-bar .cky-notice .cky-notice-group .cky-notice-btn-wrapper .cky-btn {
  font-family: var(--font-body) !important;
  font-weight: 500 !important;
  font-size: calc(16px * var(--font-scale)) !important;
  font-style: normal !important;
  line-height: 1.4 !important;
  border-color: var(--colour-black) !important;
  color: var(--colour-black) !important;
  background-color: transparent !important;
  border-width: calc(2px * var(--font-scale)) !important;
  transition: color 0.4s var(--fade-easing, ease-in), background-color 0.4s var(--fade-easing, ease-in) !important;
}
.cky-consent-container .cky-consent-bar .cky-notice .cky-notice-group .cky-notice-btn-wrapper .cky-btn:hover {
  color: var(--colour-white) !important;
  background-color: var(--colour-black) !important;
  opacity: 1 !important;
}

.cky-modal .cky-preference-center .cky-preference-body-wrapper .cky-preference-content-wrapper button {
  color: var(--color-white) !important;
}
.cky-modal .cky-preference-center .cky-footer-wrapper .cky-prefrence-btn-wrapper button {
  color: var(--color-white) !important;
  background-color: transparent !important;
  border-color: var(--color-white) !important;
}

.cky-btn-revisit-wrapper {
  background-color: var(--color-white) !important;
  display: none !important;
  left: unset !important;
  right: 15px !important;
}

.fancybox__backdrop {
  background: var(--colour-black) !important;
}

.f-carousel__toolbar {
  padding: calc(var(--grid-margin) / 2) !important;
}

.f-counter {
  display: none !important;
}

.f-button[data-panzoom-action], .f-button[data-autoplay-action], .f-button[data-fullscreen-action], .f-button[data-thumbs-action] {
  display: none !important;
}
.f-button.is-arrow, .f-button[data-fancybox-close] {
  display: inline-flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 0.5em !important;
  width: var(--button-height) !important;
  height: var(--button-height) !important;
  padding: 0 !important;
  font-size: 14px !important;
  color: var(--colour-green) !important;
  border: none !important;
  border-radius: 50% !important;
  background-color: white !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
  background-size: 1.6em !important;
  transition: color 0.4s var(--easing), background-color 0.4s var(--easing) !important;
}
.f-button.is-arrow svg, .f-button[data-fancybox-close] svg {
  display: none !important;
}
.f-button[data-fancybox-close] {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23162a27'%3E%3Cpath d='M256-213.85 213.85-256l224-224-224-224L256-746.15l224 224 224-224L746.15-704l-224 224 224 224L704-213.85l-224-224-224 224Z'/%3E%3C/svg%3E");
}
.f-button.is-next {
  right: calc(var(--grid-margin) / 2) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath fill='%23162a27' d='M9.71 9 6.26 5.55l.79-.79L11.29 9l-4.24 4.24-.79-.79L9.71 9Z'/%3E%3C/svg%3E");
}
.f-button.is-prev {
  left: calc(var(--grid-margin) / 2) !important;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' fill='none' viewBox='0 0 18 18'%3E%3Cpath fill='%23162a27' d='m8.29 9 3.45-3.45-.79-.79L6.71 9l4.24 4.24.79-.79L8.29 9Z'/%3E%3C/svg%3E");
}

.has-html5video .f-html,
.has-youtube .f-html,
.has-vimeo .f-html {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  max-width: 100% !important;
  max-height: 100% !important;
  background: var(--colour-black) !important;
}
.has-html5video .f-html .f-button.is-close-button,
.has-youtube .f-html .f-button.is-close-button,
.has-vimeo .f-html .f-button.is-close-button {
  top: calc(var(--grid-margin) / 2) !important;
  right: calc(var(--grid-margin) / 2) !important;
  transform: none !important;
}

.fancybox__slide.has-close-btn {
  padding: 0 !important;
}

.f-html5video,
.f-iframe {
  display: block !important;
  width: 100vw !important;
  height: 56.25vw !important;
  max-width: 144vh !important;
  max-height: 81vh !important;
  overflow: hidden !important;
  border-radius: 0 !important;
}
@media only screen and (min-width: 960px) {
  .f-html5video,
  .f-iframe {
    width: 90vw !important;
    height: 50.625vw !important;
    max-width: 144vh !important;
    max-height: 81vh !important;
  }
}

.lenis-stopped [data-taxi] {
  padding-right: var(--body-scrollbar-width);
}

.site-header {
  position: fixed;
  z-index: 200;
  left: 0;
  right: 0;
  top: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--grid-gutter);
  padding: var(--header-vertical-spacing) var(--grid-margin);
  color: var(--colour-white);
  box-shadow: 0px 1px 0px 0px rgba(var(--rgb-green), 0);
  transition-property: padding, color, background-color, box-shadow;
  transition-duration: 0.4s;
  transition-timing-function: var(--easing);
}
.site-header.is-scrolled {
  padding: var(--header-vertical-spacing-condensed) var(--grid-margin);
  color: var(--colour-green);
  background-color: var(--colour-white);
  box-shadow: 0px 1px 0px 0px rgba(var(--rgb-green), 0.1);
}
.site-header.is-scrolled .site-header__logo {
  height: var(--header-logo-height-condensed);
}
.site-header.is-scrolled .site-header__logo svg {
  height: 4.4rem;
}
@media only screen and (min-width: 960px) {
  .site-header.is-scrolled .site-header__left, .site-header.is-scrolled .site-header__right {
    padding: 0.25rem 0;
  }
}
.site-header.is-scrolled .site-header__menu-btn {
  border: 1px solid rgba(var(--rgb-green), 0.5);
}
.site-header__logo {
  display: block;
  overflow: hidden;
  height: var(--header-logo-height);
  transition: height 0.4s var(--easing);
}
.site-header__logo svg {
  width: auto;
  height: 5rem;
  transition: height 0.4s var(--easing);
}
.site-header__left, .site-header__right {
  flex: 1;
  display: flex;
  padding: 0;
  transition: padding 0.4s var(--easing);
}
.site-header__left:first-child, .site-header__right:first-child {
  justify-content: flex-start;
}
.site-header__left:last-child, .site-header__right:last-child {
  justify-content: flex-end;
}
.site-header__nav {
  display: none;
  gap: var(--grid-margin);
  padding: 0.6rem 0;
  font-family: var(--font-medium);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 960px) {
  .site-header__nav {
    display: flex;
  }
}
.site-header__nav a {
  line-height: 1rem;
}
.site-header__menu-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: var(--header-logo-height-condensed);
  height: var(--header-logo-height-condensed);
  border: 1px solid rgba(var(--rgb-white), 0.5);
  border-radius: 50%;
  transition: border 0.4s var(--easing);
}
@media only screen and (min-width: 960px) {
  .site-header__menu-btn {
    display: none;
  }
}
.site-header__menu-btn svg {
  width: 1.8rem;
  height: 1.8rem;
}
.site-header--inverted {
  color: var(--colour-green);
}
.site-header--inverted .site-header__menu-btn {
  border: 1px solid rgba(var(--rgb-green), 0.5);
}

.lenis-stopped .site-header {
  right: var(--body-scrollbar-width);
}

.offset-header {
  padding-top: var(--header-height);
}
.offset-header.pt-sm, .offset-header.py-sm {
  padding-top: calc(var(--header-height) + var(--spacing-block-sm));
}
.offset-header.pt-lg, .offset-header.py-lg {
  padding-top: calc(var(--header-height) + var(--spacing-block-lg));
}
.offset-header.pt-xl, .offset-header.py-xl {
  padding-top: calc(var(--header-height) + var(--spacing-block-xl));
}

.nav-menu {
  position: fixed;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.nav-menu[data-nav-state=open] {
  pointer-events: auto;
}
.nav-menu__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-block);
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 3rem var(--grid-margin);
  color: var(--colour-white);
  background: var(--colour-green);
}
.nav-menu__close {
  position: absolute;
  z-index: 20;
  right: var(--grid-margin);
  top: 1.2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.7rem;
  height: 2.7rem;
  border: 1px solid rgba(var(--rgb-white), 0.5);
  border-radius: 50%;
  transition: all 0.4s var(--easing);
}
.nav-menu__close svg {
  width: 1.8rem;
  height: 1.8rem;
}
.nav-menu__logo {
  display: block;
}
.nav-menu__logo svg {
  width: auto;
  height: 3rem;
}
.nav-menu__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  text-transform: uppercase;
  line-height: 1.2;
  visibility: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .nav-menu__nav:hover a,
  .nav-menu__nav:hover a.is-active {
    color: var(--colour-green-80);
  }
  .nav-menu__nav:hover a:hover,
  .nav-menu__nav:hover a.is-active:hover {
    color: var(--colour-white);
  }
}
.nav-menu__nav a {
  display: block;
  padding: 0.3em;
  color: var(--colour-green-50);
  visibility: visible;
  transition: color 0.4s var(--easing);
}
.nav-menu__nav a.is-active {
  color: var(--colour-white);
}
.nav-menu__social {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.nav-menu__social a {
  display: block;
  width: 20px;
  height: 20px;
}
.nav-menu__social a svg {
  width: 100%;
  height: auto;
}

.site-footer {
  position: relative;
  z-index: 0;
  overflow: clip;
  color: var(--colour-white);
  background-color: var(--colour-green);
}
.site-footer .social-links {
  order: 1;
  justify-content: center;
  gap: 30px;
  width: 100%;
  margin: 0 0 30px 0;
  padding: 15px 0;
  border-top: 1px solid rgba(var(--rgb-white), 0.06);
  border-bottom: 1px solid rgba(var(--rgb-white), 0.06);
}
@media only screen and (min-width: 960px) {
  .site-footer .social-links {
    order: 2;
    width: auto;
    margin: 0;
    padding: 0;
    border-top: none;
    border-bottom: none;
  }
}
.site-footer__container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px;
  padding: var(--spacing-block) var(--grid-margin) 30px var(--grid-margin);
}
@media only screen and (min-width: 960px) {
  .site-footer__container {
    gap: 120px;
  }
}
@media only screen and (min-width: 1600px) {
  .site-footer__container {
    gap: 180px;
  }
}
.site-footer__crest {
  order: 1;
  display: block;
  align-self: center;
}
@media only screen and (min-width: 960px) {
  .site-footer__crest {
    order: 2;
  }
}
.site-footer__crest svg {
  width: auto;
  height: 60px;
}
@media only screen and (min-width: 960px) {
  .site-footer__crest svg {
    height: 75px;
  }
}
.site-footer__nav {
  order: 2;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.5em 3em;
  font-family: var(--font-medium);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
@media only screen and (min-width: 960px) {
  .site-footer__nav {
    order: 1;
    flex-direction: row;
  }
}
.site-footer__bottom {
  order: 3;
  margin-top: 30px;
}
@media only screen and (min-width: 960px) {
  .site-footer__bottom {
    margin-top: 0;
  }
}
.site-footer__bottom-logo {
  margin-bottom: var(--grid-margin);
}
.site-footer__bottom-logo svg {
  width: 100%;
  height: auto;
}
.site-footer__bottom-primary, .site-footer__bottom-secondary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1em 2em;
  font-size: 0.6rem;
}
@media only screen and (min-width: 960px) {
  .site-footer__bottom-primary, .site-footer__bottom-secondary {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.site-footer__bottom-primary {
  margin: 0 0 30px 0;
}
@media only screen and (min-width: 960px) {
  .site-footer__bottom-primary {
    margin: 0 0 15px 0;
    padding: 15px 0;
    border-top: 1px solid rgba(var(--rgb-white), 0.06);
    border-bottom: 1px solid rgba(var(--rgb-white), 0.06);
  }
}
.site-footer__bottom-secondary {
  margin: 0 0 1em 0;
  color: var(--colour-green-50);
}
@media only screen and (min-width: 960px) {
  .site-footer__bottom-secondary {
    margin: 0;
  }
}
.site-footer__links {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1em 2em;
}
@media only screen and (min-width: 960px) {
  .site-footer__links {
    flex-direction: row;
    min-height: 20px;
  }
}
@media only screen and (min-width: 960px) {
  .site-footer__address, .site-footer__contacts {
    flex: 1;
  }
}
.site-footer__address {
  order: 2;
}
@media only screen and (min-width: 960px) {
  .site-footer__address {
    order: 1;
  }
}
.site-footer__contacts {
  order: 3;
}
@media only screen and (min-width: 960px) {
  .site-footer__contacts {
    justify-content: flex-end;
  }
}

.accordion-title + .accordion, h1 + .accordion, h2 + .accordion, h3 + .accordion, h4 + .accordion, h5 + .accordion, h6 + .accordion, .richtext + .accordion {
  margin-top: 1.6rem;
}
.accordion .ac {
  margin: 0;
  border: none;
  border-bottom: 1px solid rgba(var(--rgb-green), 0.1);
  background: none;
}
.accordion .ac.is-active .ac-trigger::after {
  transform: rotate(45deg);
}
.accordion .ac-trigger {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1em;
  padding: 1em 0;
  font-family: var(--font-serif);
  font-weight: normal;
  font-size: var(--font-size-md);
  line-height: 1.3;
  text-wrap: pretty;
  color: var(--colour-green);
}
.accordion .ac-trigger::after {
  content: "";
  position: relative;
  right: auto;
  top: auto;
  display: inline-block;
  width: 1em;
  height: 1.3em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24px' viewBox='0 -960 960 960' width='24px' fill='%23162a27'%3E%3Cpath d='M450-140v-310H140v-60h310v-310h60v310h310v60H510v310h-60Z'/%3E%3C/svg%3E");
  background-size: 1.2rem;
  background-repeat: no-repeat;
  background-position: center;
  transform: rotate(0deg);
  transition: transform 0.3s var(--easing);
}
.accordion .ac-trigger:hover, .accordion .ac-trigger:active, .accordion .ac-trigger:focus {
  color: var(--colour-green);
}
.accordion .ac-panel-inner {
  padding: 0 2.8rem 2.8rem 0;
}
.accordion .ac-panel .richtext {
  max-width: 50rem;
}

.accordion-section + .accordion-section, h1 + .accordion-section, h2 + .accordion-section, h3 + .accordion-section, h4 + .accordion-section, h5 + .accordion-section, h6 + .accordion-section, .richtext + .accordion-section {
  margin-top: var(--spacing-block-sm);
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
h1 + .button-group, h2 + .button-group, h3 + .button-group, h4 + .button-group, h5 + .button-group, h6 + .button-group, .richtext + .button-group, .accordion + .button-group {
  margin-top: 2.5rem;
}
.button-group .button + .button {
  margin: 0;
}

.button {
  flex-shrink: 0;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: var(--button-height);
  padding: 0 1.3rem;
  font-family: var(--font-medium);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  border-radius: 0.2rem;
  transition: color 0.4s var(--easing), background-color 0.4s var(--easing);
}
h1 + .button, h2 + .button, h3 + .button, h4 + .button, h5 + .button, h6 + .button, .richtext + .button {
  margin-top: 2.5rem;
}
.button--primary {
  color: var(--colour-white);
  background: var(--colour-green);
}
.button--secondary {
  color: var(--colour-green);
  box-shadow: inset 0px 0px 0px 1px rgba(var(--rgb-green), 0.2);
}
@media (hover: hover) and (pointer: fine) {
  .button--secondary:hover {
    color: var(--colour-white);
    background: var(--colour-green);
  }
}
.button--icon {
  font-family: "Material Icons";
  margin-left: 0.5rem;
}

.play-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--spacing-block-sm);
  height: var(--spacing-block-sm);
  border-radius: 50%;
  color: var(--colour-white);
  background: var(--colour-green);
}
.play-button svg {
  width: 2rem;
  height: 2rem;
}

.navigation-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: var(--button-height);
  height: var(--button-height);
  border-radius: 50%;
  color: var(--colour-green);
  background: var(--colour-white);
  transition: color 0.4s var(--easing), background-color 0.4s var(--easing);
}
.navigation-button svg {
  width: 1.2rem;
  height: 1.2rem;
}
.navigation-button.swiper-button-disabled {
  color: var(--colour-green-20);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}
@media (hover: hover) and (pointer: fine) {
  .card:hover .card__media img,
  .card:hover .card__media video {
    transform: scale(1.05);
  }
  .card:hover .card__link-label {
    background-position: 0% 100%, 0% 100%;
    background-size: 100% 1px, 100% 1px;
  }
}
.card__media {
  position: relative;
  overflow: hidden;
  padding-bottom: 120%;
}
.card__media img,
.card__media video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s var(--easing);
}
.card__media iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
}
.card__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-right: 10%;
}
.card__heading {
  max-width: 20em;
  font-family: var(--font-serif);
  font-size: var(--font-size-md);
  line-height: 1.3;
  text-wrap: balance;
}
.eyebrow + .card__heading {
  margin-top: 0.7rem;
}
.card__link {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  font-family: var(--font-medium);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: currentColor;
  transition: color 0.4s var(--easing);
}
@media (hover: hover) and (pointer: fine) {
  .card__link:hover .card__link-label {
    background-position: 0% 100%, 0% 100%;
    background-size: 100% 1px, 100% 1px;
  }
}
* + .card__link {
  margin-top: 1.4rem;
}
.card__link-icon {
  width: 1.8em;
  height: 1.8em;
}
.card__link-label {
  display: block;
  padding: 0.1em 0;
  background-image: linear-gradient(var(--colour-green-50), var(--colour-green-50)), linear-gradient(var(--colour-green-20), var(--colour-green-20));
  background-position: 100% 100%, 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px, 100% 1px;
  transition: background-size 0.4s var(--easing);
}
.card .component-mp4__message,
.card .component-vimeo__message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-block-sm) var(--grid-gutter);
}
@media only screen and (min-width: 720px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
* + .card-grid {
  margin-top: var(--spacing-block-lg);
}

.card-carousel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.card-carousel__header * + .card__link {
  margin-top: 0;
}
.card-carousel__nav {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
  margin-top: var(--spacing-block-sm);
}
.card-carousel__nav::before {
  content: "";
  order: 2;
  flex: 1;
  display: block;
  height: 1px;
  background: rgba(var(--rgb-green), 0.1);
}
.card-carousel__nav:has(.swiper-button-lock) {
  display: none;
}
.card-carousel__prev {
  order: 1;
}
.card-carousel__next {
  order: 3;
}

.carousel-nav {
  display: flex;
  gap: 0.4rem;
}

.filter {
  position: relative;
  z-index: 50;
}
.filter + .card-grid {
  margin-top: 2rem;
}
@media only screen and (min-width: 720px) {
  .filter + .card-grid {
    margin-top: 4rem;
  }
}
.filter.is-open .filter__toggle {
  border-radius: 0.2rem 0.2rem 0 0;
}
.filter.is-open .filter__toggle svg {
  transform: translateX(0.3rem) rotate(180deg);
}
.filter.is-open .filter__list {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.filter__toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  width: var(--toggle-width);
  padding: 0.8rem 1.2rem;
  border-radius: 0.2rem;
  background: white;
}
@media only screen and (min-width: 720px) {
  .filter__toggle {
    display: none;
  }
}
.filter__toggle svg {
  transform: translateX(0.3rem) rotate(0deg);
  width: 1.2rem;
  height: 1.2rem;
  transition: transform 0.3s var(--easing);
}
.filter__list {
  position: absolute;
  left: 0;
  top: 100%;
  display: flex;
  flex-direction: column;
  gap: 0.8rem 1.6rem;
  padding: 0 1.2rem 1.2rem 1.2rem;
  border-radius: 0 0 0.2rem 0.2rem;
  background: white;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
@media only screen and (min-width: 720px) {
  .filter__list {
    position: relative;
    left: auto;
    top: auto;
    flex-direction: row;
    padding: 0;
    border-radius: 0;
    background: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
.filter__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding-right: 1.7rem;
  color: var(--colour-green-50);
  transition: color 0.4s var(--easing);
}
@media only screen and (min-width: 720px) {
  .filter__item {
    padding-right: 0;
  }
}
.filter__item.is-active {
  color: var(--colour-green);
}
.filter__item.is-active::before {
  content: "";
  display: inline-block;
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: currentColor;
}
@media (hover: hover) and (pointer: fine) {
  .filter__item:hover {
    color: var(--colour-green);
  }
}

.gallery.is-fullwidth .gallery__carousel img {
  aspect-ratio: 16/9;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gallery__carousel {
  overflow: hidden;
}
.gallery__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--grid-gutter);
  margin-top: 1rem;
}
.gallery__footer .navigation-button {
  background: white;
}
.gallery__pagination {
  display: flex;
  justify-content: flex-end;
  gap: 0.4rem;
  color: var(--colour-green-50);
}
.gallery__pagination .swiper-pagination-current {
  color: var(--colour-green);
}

.component-gform form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.component-gform form .gform_fields {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.component-gform form .gform_fields .ginput_container > div,
.component-gform form .gform_fields .gfield {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0;
  border: none;
}
.component-gform form .gform_fields legend {
  margin-bottom: 0.5rem;
}
.component-gform form .gform_fields .gfield_label {
  padding: 0;
}
.component-gform form .gform_fields .gfield_required {
  color: red;
  padding-left: 0.1rem;
  font-size: 0.75rem;
}
.component-gform form .gform_fields input,
.component-gform form .gform_fields textarea,
.component-gform form .gform_fields select {
  width: 100%;
  padding: 0.5rem;
}
.component-gform form .gform_fields .gfield_radio .gchoice,
.component-gform form .gform_fields .gfield_checkbox .gchoice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.component-gform form .gform_fields .gfield_radio .gchoice input,
.component-gform form .gform_fields .gfield_checkbox .gchoice input {
  width: auto;
}
.component-gform form .gform_fields .gfield--type-time .ginput_complex {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.component-gform form .gform_fields .gfield--type-time .ginput_complex input {
  width: auto;
  flex: none;
}
.component-gform form .gform_fields .ginput_container_image_choice > div {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.component-gform form .gform_fields .ginput_container_image_choice > div .gchoice {
  flex: 1 1 0;
}
.component-gform form .gform_fields .ginput_container_image_choice > div .gchoice > span {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.component-gform form .gform_fields .ginput_container_email {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.component-gform form .gform_fields .ginput_container_email > span {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.component-gform form .gform_fields .ginput_container_email .gf_clear {
  display: none;
}
.component-gform form .gform_fields .ginput_container--name {
  display: flex;
  flex-direction: row;
  gap: 0.5rem;
}
.component-gform form .gform_fields .ginput_container--name span {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.component-gform form .gform_fields .gfield_list_group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.component-gform form .gform_fields .gfield--type-address .ginput_container {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.component-gform form .gform_fields .gfield--type-address .ginput_container > span {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.component-gform form .gform_fields .screen-reader-text {
  display: none;
}
.component-gform form .gform_fields .ginput_container_consent {
  display: flex;
  gap: 0.5rem;
}
.component-gform form .gform_fields .ginput_container_consent input {
  width: auto;
}

#ui-datepicker-div {
  background-color: var(--colour-white);
  padding: 0.5rem;
}

.ui-datepicker-calendar {
  text-align: center;
}

.component-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.component-links__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2rem;
  background: whitesmoke;
}

.map-pin {
  display: block;
  width: var(--spacing-block-xs);
  height: var(--spacing-block-xs);
  color: white;
  border-radius: 50%;
  background-color: var(--colour-green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='26' fill='none' viewBox='0 0 20 26'%3E%3Cpath fill='%23FAF6F4' fill-rule='evenodd' d='M19.867.104c.096.444.531 2.614-.964 3.432-.987.46-1.265.982-1.314 1.261-.048.28 0 .72.641.703l-.008.004c.512-.012 1.25-.148 1.612-.411-.262.359-.629 1.142-1.753 1.201-1.218.064-1.863.192-2.226.336-.794.311-.75.957-.524 1.217.222.263.56.363 1.17.312.479-.04 1.487-.36 1.979-.66-.133.296-.73 1.521-2.657 1.505-1.923-.016-2.463.523-2.629.787-.165.263-.173.67-.173.67l.294-.072c1.825-.5 3.802-.447 3.822-.447 1.14.028.874.55.867.563 0 0-.355.978-1.27 1.541-1.233.754-2.98.021-3.047 0a1.015 1.015 0 0 0-.198-.044c3.29 5.28 1.588 9.328.9 10.717-.021-1.006-1.07-3.133-1.682-3.329.262 1.549-.597 3.7-1.407 4.77C10.49 25.23 9.216 26 9.216 26s.467-1.106 0-2.75c-.367-1.294-.524-2.555-.242-3.273-1.976 2.299-4.197 1.569-4.197 1.569s.762-.128 1.64-1.465c.96-1.465.767-2.531.626-2.946-1.391.084-2.044.451-2.528.786-.464.32-1.08.192-1.669-.16a.181.181 0 0 1 .028-.327c1.798-.69 3.076-1.38 3.133-1.872-.956-.327-1.883.212-1.883.212l-1.737.99a.62.62 0 0 1-.573.04c-.339-.16-.814-.523-.976-.843-.25.096-.838-.419-.838-.93.701-.694 4.41-3.416 4.664-4.095.254-.678.513-.714 1.343-1.221.201-.124.411-.231.617-.331.73-.355 1.471-.667 1.725-.775 1.044-.391 1.367-.403 1.92-.331.184.024.37.016.547-.04.306-.092.403-.263.443-.678.065-.703-.657-2.467 1.097-3.405 0 0-.43 1.085-.125 2.207.234.854.428 1.365.198 2.575.133-.017.939-1.473 1.346-1.964 1.036-1.238 2.483-1.816 2.943-2.619.254-.443.347-.59.262-1.309-.08-.718-.29-2.024.935-2.586-.109.147-.725 1.405.065 1.848.822.463 1.85-.814 1.887-2.203Zm-8.233 16.332c-.218.132-.452.24-.701.308h-.004c-.101.028-.21.056-.319.084.1.255.206.61.242 1.08.113 1.41-.206 2.069-.19 3.402.037-.24.17-.879.673-2.068.452-1.066.42-2.087.299-2.806Zm-2.44.635a9.42 9.42 0 0 1-.91.052l.004.004h-.033c.355 1.074-.144 2.016-.568 2.67 1.584-.894 1.56-2.294 1.508-2.726Zm3.702-2.311a2.907 2.907 0 0 1-.193.49l.003-.003c.613.942.73 1.892.601 2.814.951-1.896.274-3.44-.173-4.151l-.238.85ZM8.97 11.567s-1.23-.423-2.563.886c1.253.212 2.3.211 2.563-.886Zm8.296-.834c-.287-.084-.794-.2-1.62.06-.908.285-1.646.905-1.656.914.022.009 1.265.524 2.107.247v-.004c.613-.168 1.06-.735 1.226-1.094a.089.089 0 0 0-.057-.123Z' clip-rule='evenodd'/%3E%3Cpath fill='%23FAF6F4' d='M3.032 0c.955.798 1.939 2.012.786 3.644-.246.273.246 2.738 2.1 3.568.157.072.379.02.379-.267 0-.218-.004-.483-.012-.794-.02-.93.266-1.577 1.375-2.072-.766 1.094-.549 2.942.253 4.06-.334.143-.915.395-1.507.678-.226-.283-.609-.567-1.242-.51-1.43.087-2.862.218-4.01-1.705 1.281.926 2.861.977 2.664.29-.134-.342-.839-1.033-1.282-2.302-.033-.008-3.21-.83-1.15-3.822-.025.125-.452 2.406.932 2.146.508-.056 1.863-.847.714-2.914Z'/%3E%3C/svg%3E%0A");
  background-position: center;
  background-repeat: no-repeat;
  background-size: auto 50%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
  cursor: pointer;
}

.map-location__map {
  width: 100%;
  min-height: 32rem;
  background: var(--colour-offwhite);
}

[data-map] {
  position: relative;
  overflow: hidden;
  background: var(--colour-offwhite);
}
[data-map] iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.component-media {
  position: relative;
}
.component-media .component-image,
.component-media .component-mp4 {
  width: 100%;
}
.component-media .component-image video,
.component-media .component-image img,
.component-media .component-mp4 video,
.component-media .component-mp4 img {
  width: 100%;
}
.component-media .component-video__message,
.component-media .component-vimeo__message,
.component-media .component-mp4__message {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.component-media .component-video,
.component-media .component-vimeo {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background-color: grey;
}
.component-media .component-video iframe,
.component-media .component-vimeo iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 101%;
  min-width: 101%;
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.component-media .component-video iframe {
  pointer-events: auto;
}

.video-player {
  position: relative;
  overflow: hidden;
  background: var(--colour-offwhite);
}
.video-player iframe,
.video-player video {
  position: relative;
  z-index: 0;
  width: 100%;
  aspect-ratio: 16/9;
}
.video-player__cover {
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.video-player__cover img {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.video-player__cover .play-button {
  position: absolute;
  z-index: 10;
}
.video-player__cover.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.modal {
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  padding: 2em 1em;
  display: flex;
  position: fixed;
  inset: 0;
  overflow: hidden;
  transition: all 0.2s linear;
}

.modal[data-modal-group-status=active] {
  opacity: 1;
  visibility: visible;
}

.modal__dark {
  opacity: 0.5;
  pointer-events: auto;
  cursor: pointer;
  background-color: #131313;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.modal__card {
  pointer-events: auto;
  background-color: #efeeec;
  border-radius: 2em;
  width: 100%;
  max-width: 54em;
  max-height: 100%;
  padding: 0.75em;
  display: none;
  position: relative;
}

.modal__card[data-modal-status=active] {
  display: flex;
}

.modal__scroll {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  background-color: #e2e1df;
  border-radius: 1.25em;
  flex-flow: column;
  width: 100%;
  max-height: 100%;
  display: flex;
  position: relative;
  overflow-y: auto;
}

.modal__content {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  padding: 2em;
  display: flex;
}

.modal__h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.175;
}

.modal__p {
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1.5;
}

.modal__btn-close {
  background-color: #efeeec;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  height: 3.5em;
  display: flex;
  position: absolute;
  top: 2.5em;
  right: 2.5em;
  cursor: pointer;
}

.modal__btn-close-bar {
  background-color: currentColor;
  width: 0.125em;
  height: 40%;
  position: absolute;
  transform: rotate(45deg);
}

.modal__btn-close-bar.is--second {
  transform: rotate(-45deg);
}

body.modal--is-active {
  overflow: hidden;
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news-item__image {
  aspect-ratio: 4/3;
  overflow: hidden;
  background-color: black;
  line-height: 0;
  position: relative;
  overflow: hidden;
}
.news-item__image .component-image,
.news-item__image .component-mp4 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 101%;
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news-item__image .component-image video,
.news-item__image .component-image img,
.news-item__image .component-mp4 video,
.news-item__image .component-mp4 img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 101%;
  height: 101%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.news-item__image .component-vimeo__message,
.news-item__image .component-mp4__message {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.news-item__image .component-vimeo {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 101%;
  min-width: 101%;
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
}
.news-item__image .component-vimeo iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 101%;
  min-width: 101%;
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.news-item__content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.news-item__details {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
}

.pagination {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  width: 100%;
}
.card-grid + .pagination {
  margin-top: var(--spacing-block-lg);
}
.pagination__prev, .pagination__next {
  background: white;
}
.pagination__number {
  font-size: 0.7rem;
  background: none;
}
.pagination__number.is-active {
  box-shadow: inset 0px 0px 0px 1px var(--colour-green);
}
.pagination__break {
  flex: 1;
  height: 1px;
  background: rgba(var(--rgb-green), 0.1);
}
.pagination--disabled {
  color: var(--colour-green-20);
}

[data-parallax-container] {
  position: relative;
  overflow: hidden;
}
[data-parallax-container] img,
[data-parallax-container] video,
[data-parallax-container] .iframe-container {
  position: absolute;
  left: 0;
  top: -25%;
  bottom: 0;
  width: 100%;
  height: 125%;
  -o-object-fit: cover;
     object-fit: cover;
}
[data-parallax-container] .iframe-container iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.component-quote {
  padding: 2rem;
  background: whitesmoke;
}

h1 + .richtext, h2 + .richtext, h3 + .richtext, h4 + .richtext, h5 + .richtext, h6 + .richtext, .richtext + .richtext {
  margin-top: 1.6rem;
}
.richtext h2,
.richtext h3,
.richtext h4,
.richtext h5,
.richtext h6 {
  margin: 0 0 min(0.8rem, 1em) 0;
}
.richtext h2 {
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  line-height: 1.2;
}
.richtext h3 {
  font-family: var(--font-serif);
  font-size: var(--font-size-md);
  line-height: 1.3;
}
.richtext h4 {
  font-family: var(--font-medium);
  font-size: 1.1rem;
  line-height: 1.4;
}
.richtext h5 {
  font-family: var(--font-medium);
  font-size: 1rem;
  line-height: 1.6;
}
.richtext h6 {
  font-size: 0.7rem;
  text-transform: uppercase;
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.richtext p,
.richtext ol,
.richtext ul {
  max-width: 55rem;
  margin: 0 0 1.6rem 0;
  font-size: 1rem;
  line-height: 1.6;
  text-wrap: pretty;
  color: var(--colour-green-80);
}
.richtext p a,
.richtext p b,
.richtext p strong,
.richtext ol a,
.richtext ol b,
.richtext ol strong,
.richtext ul a,
.richtext ul b,
.richtext ul strong {
  font-family: var(--font-medium);
  font-weight: normal;
  color: var(--colour-green);
}
.richtext p a,
.richtext ol a,
.richtext ul a {
  padding: 0.1em 0;
  background-image: linear-gradient(rgba(var(--rgb-green), 0.2), rgba(var(--rgb-green), 0.2)), linear-gradient(var(--colour-green), var(--colour-green));
  background-position: 0% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px, 0% 1px;
  transition: background-size 0.4s var(--easing);
}
.richtext p a:hover,
.richtext ol a:hover,
.richtext ul a:hover {
  background-position: 0% 100%, 0% 100%;
  background-size: 100% 1px, 100% 1px;
}
.richtext p + h2,
.richtext p + h3,
.richtext p + h4,
.richtext p + h5,
.richtext p + h6,
.richtext ol + h2,
.richtext ol + h3,
.richtext ol + h4,
.richtext ol + h5,
.richtext ol + h6,
.richtext ul + h2,
.richtext ul + h3,
.richtext ul + h4,
.richtext ul + h5,
.richtext ul + h6 {
  margin-top: 3.2rem;
}
.richtext ul,
.richtext ol {
  list-style: none;
}
.richtext ul li,
.richtext ol li {
  position: relative;
  padding: 0 0 0 2em;
}
.richtext ul li::before,
.richtext ol li::before {
  position: absolute;
  left: 0.5em;
  display: block;
}
.richtext ul li:not(:last-child),
.richtext ol li:not(:last-child) {
  margin-bottom: 0.8em;
}
.richtext ul li > ul,
.richtext ul li > ol,
.richtext ol li > ul,
.richtext ol li > ol {
  margin-top: 0.8em;
}
.richtext ul li > ul:last-child,
.richtext ol li > ul:last-child {
  margin-bottom: 0;
}
.richtext ul li > ul li::before,
.richtext ol li > ul li::before {
  border: 1px solid currentColor;
  background: none;
}
.richtext ul li::before {
  content: "";
  top: 0.8em;
  width: 0.3em;
  height: 0.3em;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}
.richtext ol {
  counter-reset: ol-counter;
}
.richtext ol li {
  counter-increment: ol-counter;
}
.richtext ol li::before {
  content: counter(ol-counter) ".";
  top: 0;
}
.richtext > *:last-child {
  margin-bottom: 0;
}
.richtext--lead p:first-child {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--colour-green);
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.social-links a {
  display: block;
  width: 20px;
  height: 20px;
  opacity: 1;
  transition: opacity 0.3s ease;
}
@media (hover: hover) and (pointer: fine) {
  .social-links a:hover {
    opacity: 0.4;
  }
}
.social-links a svg {
  width: 100%;
  height: auto;
}

.component-stats {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.component-stats__item {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 2rem;
  background: whitesmoke;
}
.component-stats__value {
  font-size: var(--font-size-lg);
}

.component-table {
  width: 100%;
  overflow-x: auto;
}
.component-table table {
  border-collapse: collapse;
  table-layout: auto;
  width: 100%;
  text-align: left;
  border-top: 1px solid #888;
}
.component-table table thead {
  background: #bbb;
}
.component-table table tr:nth-child(even) {
  background: #dfdfdf;
}
.component-table table th,
.component-table table td {
  padding: 10px 20px;
  border: 1px solid #888;
  border-width: 0 1px 1px;
}
@media screen and (max-width: 1000px) {
  .component-table table td {
    display: block;
    text-align: right;
  }
  .component-table table td::before {
    content: attr(data-label);
    float: left;
    font-weight: bold;
    margin-right: 10px;
  }
  .component-table table thead {
    display: none;
  }
}

.component-text {
  font-size: var(--font-size-xl);
}
.component-text__subheading {
  font-size: var(--font-size-base);
}
.component-text__heading {
  font-size: var(--font-size-xl);
}
.component-text__body {
  font-size: var(--font-size-base);
  margin: 0.75rem 0;
}
.component-text .button-group {
  font-size: var(--font-size-base);
}
.component-text > :first-child {
  margin-top: 0;
}
.component-text > :last-child {
  margin-bottom: 0;
}

.page-transition {
  position: fixed;
  inset: 0;
  background-color: var(--colour-white);
  z-index: 9999;
  pointer-events: none;
}

.vbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

.article-hero {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-block-lg);
}
.article-hero__footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.article-hero__footer-item:not(:last-child)::after {
  content: "•";
  margin: 0 0.4rem;
}
.article-hero__image {
  position: relative;
  overflow: hidden;
  height: min(120vmin, 100vh);
}
.article-hero__image picture,
.article-hero__image .component-image,
.article-hero__image .component-mp4,
.article-hero__image .component-vimeo {
  display: block;
  width: 100%;
  height: 100%;
}
.article-hero__image img,
.article-hero__image video,
.article-hero__image iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.article-hero__image iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%);
}

.article {
  display: grid;
  grid-template-columns: subgrid;
  row-gap: var(--spacing-block-sm);
}
.article:has(.article__nav) {
  row-gap: 0;
}
.divider + .article:not([class*=py-]):not([class*=pt-]):has(.article__details) {
  margin-top: 0 !important;
}
@media only screen and (min-width: 960px) {
  .divider + .article:not([class*=py-]):not([class*=pt-]):has(.article__details) {
    margin-top: var(--spacing-block-sm) !important;
  }
}
.article__aside {
  grid-column: content;
}
@media only screen and (min-width: 960px) {
  .article__aside {
    grid-column: content-start/span 3;
    padding-right: var(--grid-gutter);
    border-right: 1px solid rgba(var(--rgb-green), 0.1);
  }
}
@media only screen and (min-width: 1600px) {
  .article__aside {
    grid-column: content-start/span 6;
  }
}
@media only screen and (min-width: 960px) {
  .article__aside.is-sticky {
    position: sticky;
    top: calc(var(--header-height-condensed) + 2.8rem);
    max-height: calc(100vh - (var(--header-height-condensed) + 5.6rem));
  }
}
.article__nav {
  position: fixed;
  z-index: 500;
  bottom: 20px;
  left: 50%;
  transform: translate(-50%, calc(101% + 20px));
  transition: transform 0.4s var(--easing);
}
@media only screen and (min-width: 960px) {
  .article__nav {
    position: sticky;
    left: unset;
    right: unset;
    top: calc(var(--header-height-condensed) + 2.8rem);
    bottom: unset;
    transform: none;
    transition: none;
  }
}
.article__nav.is-shown {
  transform: translate(-50%, 0);
}
@media only screen and (min-width: 960px) {
  .article__nav.is-shown {
    transform: none;
  }
}
.article__nav[data-menu-state=closed] .article__nav-list {
  clip-path: inset(100% 50% 0 50% round 0.4rem);
}
@media only screen and (min-width: 960px) {
  .article__nav[data-menu-state=closed] .article__nav-list {
    clip-path: none;
  }
}
.article__nav[data-menu-state=open] .article__nav-list {
  clip-path: inset(0 0 0 0 round 0.4rem);
}
@media only screen and (min-width: 960px) {
  .article__nav[data-menu-state=open] .article__nav-list {
    clip-path: none;
  }
}
.article__nav[data-menu-state=open] .article__nav-toggle {
  clip-path: inset(0 calc(50% - 1.5rem) round 0.2rem);
}
.article__nav[data-menu-state=open] .article__nav-toggle-default {
  transform: translateY(-100%);
}
.article__nav[data-menu-state=open] .article__nav-toggle-close {
  transform: translateY(0);
}
.article__nav-toggle {
  position: relative;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  font-family: var(--font-medium);
  color: var(--colour-white);
  border-radius: 0.2rem;
  background: var(--colour-green);
  clip-path: inset(0 0 round 0.2rem);
  transition: clip-path 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
@media only screen and (min-width: 960px) {
  .article__nav-toggle {
    display: none;
  }
}
.article__nav-toggle svg {
  width: 1.5em;
  height: 1.5em;
}
.article__nav-toggle-default, .article__nav-toggle-close {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.4s cubic-bezier(0.77, 0, 0.175, 1);
}
.article__nav-toggle-default {
  position: relative;
  gap: 0.5rem;
  height: 3rem;
  padding: 0 1.5rem;
}
.article__nav-toggle-close {
  position: absolute;
  width: 3rem;
  height: 3rem;
  transform: translateY(100%);
}
.article__nav-list {
  position: absolute;
  z-index: 1;
  left: 50%;
  bottom: calc(100% + 10px);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  min-width: calc(100vw - var(--body-scrollbar-width) - var(--grid-margin) * 2);
  max-width: calc(100vw - var(--body-scrollbar-width) - var(--grid-margin) * 2);
  padding: 2.8rem;
  text-align: center;
  white-space: nowrap;
  border-radius: 0.2rem;
  background: var(--colour-green);
  transform: translateX(-50%);
  transition: clip-path 0.6s cubic-bezier(0.77, 0, 0.175, 1);
}
@media only screen and (min-width: 480px) {
  .article__nav-list {
    min-width: 75vw;
  }
}
@media only screen and (min-width: 720px) {
  .article__nav-list {
    min-width: 50vw;
  }
}
@media only screen and (min-width: 960px) {
  .article__nav-list {
    position: relative;
    left: unset;
    right: unset;
    bottom: unset;
    align-items: flex-start;
    gap: 0.8rem;
    min-width: unset;
    max-width: unset;
    padding: unset;
    text-align: left;
    white-space: normal;
    border-radius: 0;
    background: unset;
    transform: none;
    transition: none;
  }
}
.article__nav-list-title {
  color: var(--colour-white);
  margin-bottom: 1rem;
}
@media only screen and (min-width: 960px) {
  .article__nav-list-title {
    color: var(--colour-green);
  }
}
.eyebrow + .article__nav {
  margin-top: 2.1rem;
}
.article__nav .page-nav-link {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-serif);
  font-size: 1rem;
  text-align: center;
  color: var(--colour-green-50);
  transition: color 0.3s var(--easing);
}
@media only screen and (min-width: 960px) {
  .article__nav .page-nav-link {
    font-size: 0.9rem;
    font-family: var(--font-body);
    text-align: left;
  }
}
@media only screen and (min-width: 960px) {
  .article__nav .page-nav-link::before {
    content: "";
    position: absolute;
    display: block;
    left: 0;
    top: 50%;
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
    background: currentColor;
    transform: translateY(-50%) scale(0);
    transition: transform 0.3s var(--easing);
  }
}
.article__nav .page-nav-link span {
  display: block;
}
@media only screen and (min-width: 960px) {
  .article__nav .page-nav-link span {
    transform: translateX(0);
    transition: transform 0.3s var(--easing);
  }
}
.article__nav .page-nav-link:hover {
  color: var(--colour-white);
}
@media only screen and (min-width: 960px) {
  .article__nav .page-nav-link:hover {
    color: var(--colour-green);
  }
}
.article__nav .page-nav-link.is-active {
  color: var(--colour-white);
}
@media only screen and (min-width: 960px) {
  .article__nav .page-nav-link.is-active {
    color: var(--colour-green);
  }
}
@media only screen and (min-width: 960px) {
  .article__nav .page-nav-link.is-active::before {
    transform: translateY(-50%) scale(1);
  }
}
@media only screen and (min-width: 960px) {
  .article__nav .page-nav-link.is-active span {
    transform: translateX(0.8rem);
  }
}
.article__details {
  display: flex;
  flex-direction: column;
}
@media only screen and (min-width: 960px) {
  .article__details {
    gap: 1.4rem;
  }
}
.article__details-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1em 0;
  border-bottom: 1px solid rgba(var(--rgb-green), 0.1);
}
@media only screen and (min-width: 960px) {
  .article__details-item {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.4rem;
    padding: 0;
    border-bottom: none;
  }
}
@media only screen and (min-width: 960px) {
  .article__details-item:has(.social-links) {
    gap: 0.6rem;
  }
}
.article__details-heading, .article__details-value {
  display: inline-flex;
  align-items: center;
  min-height: 20px;
}
@media only screen and (min-width: 960px) {
  .article__details-heading, .article__details-value {
    min-height: 0;
  }
}
.article__details-heading {
  font-family: var(--font-medium);
  color: var(--colour-green);
}
.article__details-value {
  color: var(--colour-green-80);
}
.article__main {
  display: grid;
  grid-template-columns: subgrid;
  grid-column: content;
}
@media only screen and (min-width: 960px) {
  .article__main {
    grid-column: span 9/content-end;
  }
}
@media only screen and (min-width: 1600px) {
  .article__main {
    grid-column: span 18/content-end;
  }
}
.article__text, .article__quote, .article__list, .article__buttons {
  grid-column: content;
}
@media only screen and (min-width: 960px) {
  .article__text, .article__quote, .article__list, .article__buttons {
    grid-column: span 7/content-end;
  }
}
@media only screen and (min-width: 1600px) {
  .article__text, .article__quote, .article__list, .article__buttons {
    grid-column: span 12/content-end;
  }
}
.article__text + *, * + .article__text, .article__quote + *, * + .article__quote, .article__list + *, * + .article__list, .article__buttons + *, * + .article__buttons {
  margin-top: 2.8rem;
}
.article__quote {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
}
.article__quote-body {
  max-width: 30em;
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  line-height: 1.2;
  text-wrap: balance;
}
.article__list {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.6rem var(--grid-gutter);
  font-size: 0.9rem;
}
@media only screen and (min-width: 720px) {
  .article__list {
    grid-template-columns: repeat(2, 1fr);
  }
}
.article__list-value {
  color: var(--colour-green-80);
}
.article__links, .article__image, .article__video, .article__gallery, .article__section {
  grid-column: content;
}
@media only screen and (min-width: 960px) {
  .article__links, .article__image, .article__video, .article__gallery, .article__section {
    grid-column: span 9/content-end;
  }
}
@media only screen and (min-width: 1600px) {
  .article__links, .article__image, .article__video, .article__gallery, .article__section {
    grid-column: span 18/content-end;
  }
}
.article__links + *, * + .article__links, .article__image + *, * + .article__image, .article__video + *, * + .article__video, .article__gallery + *, * + .article__gallery, .article__section + *, * + .article__section {
  margin-top: var(--spacing-block-sm);
}
.article__image.image, .article__image.mp4, .article__image.vimeo {
  background-color: var(--colour-offwhite);
}
.article__image.mp4 {
  position: relative;
}
.article__image.mp4 .component-mp4,
.article__image.mp4 video {
  width: 100%;
  position: relative;
  z-index: 2;
}
.article__image.mp4 .component-mp4__message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.article__image.vimeo {
  aspect-ratio: 16/9;
  position: relative;
}
.article__image.vimeo iframe,
.article__image.vimeo .component-vimeo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.article__image.vimeo .component-vimeo__message {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.article__section {
  display: grid;
  grid-template-columns: subgrid;
}
.article__section + .article__section {
  padding-top: var(--spacing-block-sm);
  border-top: 1px solid rgba(var(--rgb-green), 0.1);
}
.article__links {
  --link-font-size: var(--font-size-md);
  --link-line-height: 1.3;
  --link-padding: var(--font-size-md);
  display: grid;
  grid-template-columns: subgrid;
}
@media only screen and (min-width: 960px) {
  .article__links {
    border-top: 1px solid rgba(var(--rgb-green), 0.1);
  }
}
.article__links-heading {
  grid-column: content;
  padding: 0 0 var(--link-padding) 0;
}
@media only screen and (min-width: 960px) {
  .article__links-heading {
    grid-column: span 2;
    padding: var(--link-padding) 0 0 0;
    line-height: calc(var(--link-font-size) * var(--link-line-height));
  }
}
@media only screen and (min-width: 1600px) {
  .article__links-heading {
    grid-column: span 6;
  }
}
.article__links-list {
  grid-column: content;
}
@media only screen and (min-width: 960px) {
  .article__links-list {
    grid-column: span 7/content-end;
  }
}
@media only screen and (min-width: 1600px) {
  .article__links-list {
    grid-column: span 12/content-end;
  }
}
.article__link {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 2rem;
  padding: var(--link-padding) 0;
  font-size: var(--link-font-size);
  border-bottom: 1px solid rgba(var(--rgb-green), 0.1);
}
.article__link:first-child {
  border-top: 1px solid rgba(var(--rgb-green), 0.1);
}
@media only screen and (min-width: 960px) {
  .article__link:first-child {
    border-top: none;
  }
}
.article__link::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  top: calc(var(--link-padding) + var(--link-font-size) * var(--link-line-height) / 2 - 0.15rem);
  width: 0.3rem;
  height: 0.3rem;
  border-radius: 50%;
  background: currentColor;
  transform: scale(0);
  transition: transform 0.3s var(--easing);
}
@media (hover: hover) and (pointer: fine) {
  .article__link:hover::before {
    transform: scale(1);
  }
  .article__link:hover .article__link-label {
    transform: translateX(0.8rem);
  }
}
.article__link-label {
  flex: 1;
  font-family: var(--font-serif);
  line-height: var(--link-line-height);
  transform: translateX(0);
  transition: transform 0.3s var(--easing);
}
.article__link-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  height: calc(var(--link-font-size) * var(--link-line-height));
}
.article__link-arrow svg {
  width: 1em;
  height: 1em;
}
.article__image .component-image,
.article__image picture {
  display: block;
}
.article__image img {
  width: 100%;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2.1rem;
  pointer-events: none;
}
.richtext + .contact-details,
.contact-details + .button {
  margin-top: 2.8rem;
}
.contact-details__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  pointer-events: none;
  color: var(--colour-green-80);
}
@media (hover: hover) and (pointer: fine) {
  .contact-details__item:hover span {
    background-position: 0% 100%, 0% 100%;
    background-size: 100% 1px, 100% 1px;
  }
}
.eyebrow + .contact-details__item {
  margin-top: 0.7rem;
}
.contact-details__item span {
  display: block;
  pointer-events: auto;
  background-image: linear-gradient(rgba(var(--rgb-green), 0.2), rgba(var(--rgb-green), 0.2)), linear-gradient(var(--colour-green-80), var(--colour-green-80));
  background-position: 0% 100%, 100% 100%;
  background-repeat: no-repeat;
  background-size: 100% 1px, 0% 1px;
  transition: background-size 0.4s var(--easing);
}
.contact-details__item span:nth-child(2) {
  transition-delay: 0.05s;
}
.contact-details__item span:nth-child(3) {
  transition-delay: 0.1s;
}
.contact-details__item span:nth-child(4) {
  transition-delay: 0.15s;
}
.contact-details__item span:nth-child(5) {
  transition-delay: 0.2s;
}
.contact-details__item span:nth-child(6) {
  transition-delay: 0.25s;
}

.cta {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--colour-white);
  background: var(--colour-black);
}
.cta__container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: var(--spacing-block);
  min-height: min(120vmin, 100vh);
  padding: var(--spacing-block) var(--grid-margin);
}
.cta__container .button--primary {
  color: var(--colour-white);
  background-color: var(--colour-green-50);
}
@supports (backdrop-filter: blur(30px)) or (-webkit-backdrop-filter: blur(30px)) {
  .cta__container .button--primary {
    color: var(--colour-white);
    backdrop-filter: blur(30px);
    background-color: rgba(136, 144, 142, 0.3);
  }
}
@media (hover: hover) and (pointer: fine) {
  .cta__container .button--primary:hover {
    color: var(--colour-green);
    background-color: var(--colour-white);
  }
}
.cta__heading {
  max-width: 20em;
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  line-height: 1.1;
  text-transform: uppercase;
  text-wrap: balance;
}
.cta__background {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.bg-offwhite + .divider {
  background: var(--colour-offwhite);
}
.divider hr {
  margin: 0;
  border: 0;
  border-bottom: 1px solid rgba(var(--rgb-green), 0.1);
}

.exclusive-use {
  position: relative;
  min-height: min(120vmin, 100vh);
  overflow: hidden;
  background: var(--colour-black);
}
.exclusive-use__content {
  position: relative;
  z-index: 2;
  min-width: 0;
  padding: calc(var(--grid-margin) * 2) var(--grid-margin) var(--grid-margin) var(--grid-margin);
  color: var(--colour-green);
  text-align: center;
  background: var(--colour-offwhite);
}
@media (hover: hover) and (pointer: fine) {
  .exclusive-use__content {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    min-height: 0;
    padding: 0;
    color: var(--colour-white);
    background: none;
  }
}
.exclusive-use__content .swiper-wrapper {
  align-items: center;
}
.exclusive-use__content .swiper-slide {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 3rem 5%;
  transition-property: transform, opacity;
  transition-timing-function: var(--easing);
}
.exclusive-use__content-carousel {
  width: 100%;
  min-width: 0;
  overflow: hidden;
}
.exclusive-use__background {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  width: 100%;
  height: 75%;
  -webkit-mask-image: linear-gradient(0deg, transparent, #000 25%);
  mask-image: linear-gradient(0deg, transparent, #000 25%);
}
@media (hover: hover) and (pointer: fine) {
  .exclusive-use__background {
    height: 100%;
    -webkit-mask-image: none;
    mask-image: none;
  }
}
.exclusive-use__background .swiper-wrapper,
.exclusive-use__background .swiper-slide,
.exclusive-use__background .component-image,
.exclusive-use__background .component-mp4,
.exclusive-use__background .component-vimeo,
.exclusive-use__background .iframe-container:not([data-parallax-image]),
.exclusive-use__background picture {
  width: 100%;
  height: 100%;
}
.exclusive-use__background .component-image,
.exclusive-use__background .component-mp4,
.exclusive-use__background .component-vimeo,
.exclusive-use__background .iframe-container:not([data-parallax-image]),
.exclusive-use__background picture {
  display: block;
}
.exclusive-use__background img:not([data-parallax-image]),
.exclusive-use__background video:not([data-parallax-image]) {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.exclusive-use__background .component-image img:not([data-parallax-image]),
.exclusive-use__background .component-mp4 video:not([data-parallax-image]) {
  -o-object-fit: cover;
     object-fit: cover;
}
.exclusive-use__background .component-vimeo,
.exclusive-use__background .iframe-container:not([data-parallax-image]) {
  position: relative;
  overflow: hidden;
}
.exclusive-use__background .iframe-container {
  overflow: hidden;
}
.exclusive-use__background .component-vimeo iframe,
.exclusive-use__background .iframe-container:not([data-parallax-image]) iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  min-height: 101%;
  min-width: 101%;
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.exclusive-use__background .swiper-slide {
  transition-property: transform, opacity;
  transition-timing-function: var(--easing);
}
.exclusive-use__image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  opacity: 0;
  transform: scale(1.03);
  transition: opacity 0.4s var(--easing), transform 0.8s var(--easing);
}
.exclusive-use__image.active {
  opacity: 1;
  transform: scale(1);
}
.exclusive-use__heading {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  text-wrap: balance;
}
@media (hover: hover) and (pointer: fine) {
  .exclusive-use__heading {
    font-size: var(--font-size-2xl);
  }
}
.exclusive-use__description {
  max-width: 32rem;
  margin-top: 1.2rem;
  color: var(--colour-green-80);
  text-align: center;
}
.exclusive-use__description + .card__link {
  margin-top: 1.4rem;
}
.exclusive-use__links {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  visibility: hidden;
}
@media (hover: hover) and (pointer: fine) {
  .exclusive-use__links:hover .exclusive-use__link {
    opacity: 0.4;
  }
  .exclusive-use__links:hover .exclusive-use__link:hover {
    opacity: 1;
  }
}
.exclusive-use__link {
  display: block;
  transition: opacity 0.4s var(--easing);
  visibility: visible;
}
.exclusive-use__nav {
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
.exclusive-use__pagination {
  display: flex;
  flex: 1;
  gap: 0.35rem;
  align-items: center;
  color: rgba(var(--rgb-green), 0.4);
}
.exclusive-use__pagination::before, .exclusive-use__pagination::after {
  flex: 1;
  height: 1px;
  content: "";
  background: rgba(var(--rgb-green), 0.1);
}
.exclusive-use__pagination::before {
  margin-right: 0.45rem;
}
.exclusive-use__pagination::after {
  margin-left: 0.45rem;
}
.exclusive-use__pagination .swiper-pagination-current {
  color: var(--colour-green);
}
.exclusive-use--mobile {
  display: flex;
  align-items: flex-end;
  min-height: min(120vmin, 100vh);
  padding: min(80vmin, 60vh) var(--grid-margin) var(--grid-margin) var(--grid-margin);
}
@media (hover: hover) and (pointer: fine) {
  .exclusive-use--mobile {
    display: none;
  }
}
.exclusive-use--mobile .exclusive-use__background .iframe-container,
.exclusive-use--mobile .exclusive-use__background .component-vimeo,
.exclusive-use--mobile .exclusive-use__background img,
.exclusive-use--mobile .exclusive-use__background video {
  opacity: 0.95;
}
.exclusive-use--desktop {
  display: none;
  min-height: min(120vmin, 100vh);
  padding: var(--spacing-block) var(--grid-margin);
}
@media (hover: hover) and (pointer: fine) {
  .exclusive-use--desktop {
    display: flex;
    flex-direction: column;
  }
}
.exclusive-use--desktop .exclusive-use__background .iframe-container,
.exclusive-use--desktop .exclusive-use__background .component-vimeo,
.exclusive-use--desktop .exclusive-use__background img,
.exclusive-use--desktop .exclusive-use__background video {
  opacity: 0.6;
}

.feature-listing__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media only screen and (min-width: 960px) {
  .feature-listing__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.feature-listing__heading {
  max-width: 16em;
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  line-height: 1.1;
  text-transform: uppercase;
  text-wrap: balance;
}
.feature-listing__intro {
  max-width: 34rem;
  color: var(--colour-green-80);
}

.floor-plans {
  color: var(--colour-green);
}
.floor-plans .floor-plans-header {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: var(--grid-margin);
}
@media only screen and (min-width: 720px) {
  .floor-plans .floor-plans-header {
    align-items: flex-end;
    border-bottom: 1px solid rgba(var(--rgb-green), 0.1);
    flex-direction: row;
    justify-content: space-between;
    padding-bottom: var(--grid-margin);
  }
}
.floor-plans .floor-plans-tabs {
  background: var(--colour-offwhite);
  border-radius: 0.45rem;
  display: flex;
  gap: 0.25rem;
  overflow: hidden;
  padding: 0.25rem;
}
.floor-plans .floor-plans-tab {
  align-items: center;
  background: transparent;
  border-radius: 0.2rem;
  color: var(--colour-green-80);
  display: inline-flex;
  flex-grow: 1;
  flex-shrink: 0;
  font-family: var(--font-medium);
  font-size: 0.65rem;
  height: 2.2rem;
  justify-content: center;
  letter-spacing: 0.1em;
  padding: 0 1.1rem;
  text-transform: uppercase;
  transition: color 0.4s var(--easing), background-color 0.4s var(--easing);
}
@media only screen and (min-width: 720px) {
  .floor-plans .floor-plans-tab {
    flex-grow: revert;
  }
}
@media (hover: hover) and (pointer: fine) {
  .floor-plans .floor-plans-tab:hover {
    background: rgba(var(--rgb-green), 0.05);
    color: var(--colour-green);
  }
}
.floor-plans .floor-plans-tab.is-active {
  background: var(--colour-green);
  color: var(--colour-white);
}
.floor-plans .floor-plans-carousel {
  overflow: hidden;
}
.floor-plans .floor-plans-slide {
  display: grid;
  gap: var(--grid-gutter);
  grid-template-columns: 1fr;
}
@media only screen and (min-width: 1200px) {
  .floor-plans .floor-plans-slide {
    grid-template-columns: 1fr 1fr;
  }
}
.floor-plans .floor-plans-image,
.floor-plans .floor-plans-list {
  grid-column: span 1;
  min-width: 0;
}
@media only screen and (min-width: 1200px) {
  .floor-plans .floor-plans-list {
    border-right: 1px solid rgba(var(--rgb-green), 0.1);
    order: 1;
    padding-right: var(--grid-gutter);
  }
}
.floor-plans .floor-plans-room {
  border-bottom: 1px solid rgba(var(--rgb-green), 0.1);
  display: grid;
  font-size: clamp(13px, 0.25vi + 12px, 15px);
  gap: var(--grid-gutter);
  grid-template-columns: 1fr 4fr 5fr;
  padding: 1em 0;
}
@media only screen and (min-width: 1200px) {
  .floor-plans .floor-plans-room {
    font-size: clamp(13px, 0.17vi + 11px, 15px);
  }
}
.floor-plans .floor-plans-room__description {
  color: var(--colour-green-50);
}
.floor-plans .floor-plans-image {
  position: relative;
}
.floor-plans .floor-plans-image .component-image,
.floor-plans .floor-plans-image picture {
  display: block;
  width: 100%;
}
.floor-plans .floor-plans-image img {
  position: relative;
  width: 100%;
  z-index: 0;
}
.floor-plans .floor-plans-image .expand-button {
  background: var(--colour-white);
  position: absolute;
  right: 10px;
  top: 10px;
  z-index: 2;
}
@media only screen and (min-width: 1200px) {
  .floor-plans .floor-plans-image {
    aspect-ratio: 4/3;
    order: 2;
  }
  .floor-plans .floor-plans-image .component-image,
  .floor-plans .floor-plans-image picture {
    height: 100%;
  }
  .floor-plans .floor-plans-image img {
    height: 100%;
    left: 0;
    -o-object-fit: contain;
       object-fit: contain;
    position: absolute;
    top: 0;
  }
}

.gallery-grid {
  grid-column: content;
  width: 100%;
}
.gallery-grid__inner {
  position: relative;
}
.gallery-grid--item {
  position: absolute;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.heading-content {
  grid-column: content;
  display: grid;
  grid-template-columns: subgrid;
  row-gap: 1rem;
}
.heading-content__column:first-of-type {
  grid-column: span 4;
}
@media only screen and (min-width: 960px) {
  .heading-content__column:first-of-type {
    grid-column: span 4;
  }
}
@media only screen and (min-width: 1600px) {
  .heading-content__column:first-of-type {
    grid-column: span 12;
  }
}
.heading-content__column:last-of-type {
  grid-column: span 4;
}
@media only screen and (min-width: 960px) {
  .heading-content__column:last-of-type {
    grid-column: span 8;
  }
}
@media only screen and (min-width: 1600px) {
  .heading-content__column:last-of-type {
    grid-column: span 12;
  }
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: subgrid;
  overflow: hidden;
  min-height: 90vh;
  min-height: 90svh;
  padding-top: var(--header-height);
  color: var(--colour-white);
  background: var(--colour-black);
}
.hero + .form-block-item:not(.newsletter-signup) {
  position: relative;
}
.hero + .form-block-item:not(.newsletter-signup)::before {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: -20px;
  width: 88px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='28' fill='none' viewBox='0 0 88 28'%3E%3Cpath fill='%23FAF6F4' d='M88 28H0v-8.003h10.096c.618.013 6.226.057 12.923-2.086 4.119-1.32 7.823-3.2 11.01-5.588C38.05 9.311 41.24 5.488 43.516.962L43.999 0h.002l.483.962c2.276 4.526 5.468 8.35 9.487 11.361 3.187 2.389 6.891 4.268 11.01 5.588 6.697 2.143 12.305 2.099 12.923 2.086H88V28Z'/%3E%3Cpath fill='%23162A27' d='M41.53 28 44 26.174 46.47 28l-.889-3.04L48 23.058l-3.024-.05L44 20l-.976 3.007-3.024.05 2.419 1.908-.89 3.035Z'/%3E%3C/svg%3E");
  transform: translateX(-50%);
}
.hero > *:not(.hero__background, .hero__scroll) {
  position: relative;
  z-index: 2;
}
.hero__content {
  grid-column: content;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: var(--spacing-block-xl) 0 var(--spacing-block) 0;
  text-align: center;
}
.hero__content .card__link-label {
  background-image: linear-gradient(rgba(var(--rgb-white), 0.5), rgba(var(--rgb-white), 0.5)), linear-gradient(rgba(var(--rgb-white), 0.2), rgba(var(--rgb-white), 0.2));
}
.hero__content .button--primary {
  color: var(--colour-white);
  background-color: var(--colour-green-50);
}
@supports (backdrop-filter: blur(30px)) or (-webkit-backdrop-filter: blur(30px)) {
  .hero__content .button--primary {
    color: var(--colour-white);
    backdrop-filter: blur(30px);
    background-color: rgba(136, 144, 142, 0.3);
  }
}
@media (hover: hover) and (pointer: fine) {
  .hero__content .button--primary:hover {
    color: var(--colour-green);
    background-color: var(--colour-white);
  }
}
.hero__content * + .button,
.hero__content * + .button-group {
  margin-top: 2.8rem;
}
.hero__heading {
  text-wrap: balance;
}
.hero__button-group {
  justify-content: center;
}
.hero__heading {
  font-family: var(--font-serif);
  font-size: var(--font-size-2xl);
  line-height: 1.1;
  text-transform: uppercase;
}
.hero__heading i,
.hero__heading em {
  font-family: var(--font-serif-italic);
  font-style: normal;
  text-transform: none;
}
.hero__text {
  max-width: 30rem;
  text-wrap: balance;
}
.hero__heading + .hero__text {
  margin-top: 1.6rem;
}
.hero__background {
  position: absolute;
  z-index: 0;
  inset: 0;
  background: var(--colour-black);
  will-change: transform;
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), black 25vh);
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), black 25vh);
}
.hero__background img,
.hero__background video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.hero__background iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero__media-carousel {
  height: 100%;
}
.hero--full {
  min-height: calc(100vh - 18px);
  min-height: calc(100svh - 18px);
}
.hero--inverted {
  color: white;
  background-color: black;
}
.hero--inverted .hero__scroll button {
  color: white;
}
.hero--inverted .button--primary {
  color: black;
  background: white;
}
.hero--inverted .button--secondary {
  color: white;
  border: 1px solid white;
}
.hero .swiper-slide > * {
  height: 100%;
}

.intro-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.intro-block--left {
  align-items: flex-start;
  text-align: left;
}
.intro-block--right {
  align-items: flex-end;
  text-align: right;
}
.intro-block__heading {
  font-family: var(--font-serif);
  font-size: var(--font-size-xl);
  line-height: 1.2;
  text-wrap: balance;
}
.intro-block__heading i,
.intro-block__heading em {
  font-family: var(--font-serif-italic);
  font-style: normal;
}
.intro-block .richtext {
  max-width: 40rem;
}

.full-width-media {
  position: relative;
  grid-column: full;
  overflow: hidden;
  padding-bottom: min(120vmin, 100vh);
  background-color: var(--colour-black);
  line-height: 0;
}
.full-width-media img:not([data-parallax-image]),
.full-width-media video:not([data-parallax-image]) {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news-carousel {
  grid-column: full;
  overflow: hidden;
  padding-left: var(--grid-margin);
  padding-right: var(--grid-margin);
}
.news-carousel__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: var(--grid-gutter);
  margin-bottom: var(--spacing-sm);
}
.news-carousel__nav {
  display: flex;
  gap: 1rem;
  align-items: center;
}
.news-carousel__nav svg {
  width: 1.25rem;
  height: 1.25rem;
}

.news-listings {
  grid-column: content;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-md) var(--grid-gutter);
}
@media only screen and (min-width: 960px) {
  .news-listings {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1600px) {
  .news-listings {
    grid-template-columns: repeat(3, 1fr);
  }
}

.newsletter-page,
.newsletter-signup {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newsletter-page {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: calc(100vh - 18px);
  min-height: calc(100svh - 18px);
}
.newsletter-page .richtext {
  max-width: 32rem;
}
.newsletter-page .newsletter-form input {
  color: var(--colour-green);
  border: 1px solid rgba(var(--rgb-green), 0.2);
}
.newsletter-page .newsletter-form input:focus {
  border: 1px solid var(--colour-green);
}
.newsletter-page .newsletter-form__submit {
  color: var(--colour-white);
  background: var(--colour-green);
}
.newsletter-page .newsletter-form__note a {
  background-image: linear-gradient(var(--colour-green-80), var(--colour-green-80)), linear-gradient(var(--colour-green-20), var(--colour-green-20));
}
@media (hover: hover) and (pointer: fine) {
  .newsletter-page .newsletter-form__note a:hover {
    color: var(--colour-green);
  }
}

.newsletter-signup {
  position: relative;
  text-align: center;
  background-color: var(--colour-green-90);
  color: var(--colour-white);
}
.newsletter-signup--light {
  background-color: var(--colour-offwhite);
  color: var(--colour-green);
}
.newsletter-signup--light::after {
  display: none;
}
.newsletter-signup--light .button--primary {
  color: var(--colour-white);
  background: var(--colour-green);
}
.newsletter-signup::after {
  content: "";
  position: absolute;
  z-index: 0;
  bottom: -20px;
  width: 88px;
  height: 28px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='88' height='28' fill='none' viewBox='0 0 88 28'%3E%3Cpath fill='%232D3E3C' d='M0 0h88v8.003H77.904c-.618-.013-6.226-.057-12.923 2.086-4.119 1.32-7.823 3.2-11.01 5.588-4.02 3.012-7.211 6.835-9.487 11.361l-.483.962h-.002l-.483-.962c-2.276-4.526-5.468-8.35-9.487-11.361-3.187-2.389-6.891-4.268-11.01-5.588-6.697-2.143-12.305-2.099-12.923-2.086H0V0Z'/%3E%3Cpath fill='%23162A27' d='M41.53 8 44 6.174 46.47 8l-.889-3.04L48 3.058l-3.024-.05L44 0l-.976 3.007-3.024.05 2.419 1.908L41.529 8Z'/%3E%3C/svg%3E%0A");
}
.newsletter-signup .button--primary {
  color: var(--colour-green);
  background: var(--colour-white);
}
.newsletter-signup .newsletter-form input {
  color: var(--colour-white);
  border: 1px solid rgba(var(--rgb-white), 0.2);
}
.newsletter-signup .newsletter-form input:focus {
  border: 1px solid var(--colour-white);
}
.newsletter-signup .newsletter-form__submit {
  color: var(--colour-green);
  background: var(--colour-white);
}
.newsletter-signup .newsletter-form__note a {
  background-image: linear-gradient(var(--colour-green-20), var(--colour-green-20)), linear-gradient(var(--colour-green-80), var(--colour-green-80));
}
@media (hover: hover) and (pointer: fine) {
  .newsletter-signup .newsletter-form__note a:hover {
    color: var(--colour-white);
  }
}
.newsletter-signup__form {
  width: 100%;
  max-width: 50rem;
}
* + .newsletter-signup__form {
  margin-top: 2.8rem;
}

.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  width: 100%;
  max-width: 50rem;
}
* + .newsletter-form {
  margin-top: 2.8rem;
}
.newsletter-form input {
  width: 100%;
  height: var(--button-height);
  padding: 0 1rem;
  font-size: 0.8rem;
  border-radius: 0.2rem;
  background: none;
  transition: border 0.4s var(--easing);
}
@media only screen and (min-width: 720px) {
  .newsletter-form input {
    flex: 1;
    width: auto;
  }
}
.newsletter-form input::-moz-placeholder {
  color: var(--colour-green-50);
}
.newsletter-form input::placeholder {
  color: var(--colour-green-50);
}
.newsletter-form__submit {
  width: 100%;
}
.newsletter-form__note {
  width: 100%;
  font-size: 0.7rem;
  text-align: center;
  color: var(--colour-green-50);
}
.newsletter-form__note a {
  padding-bottom: 0.2em;
  background-position: 100% 100%, 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px, 100% 1px;
  transition: color 0.4s var(--easing), background-size 0.4s var(--easing);
}
@media (hover: hover) and (pointer: fine) {
  .newsletter-form__note a:hover {
    background-position: 0% 100%, 0% 100%;
    background-size: 100% 1px, 100% 1px;
  }
}

.reviews-carousel {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--grid-gutter);
  padding: var(--spacing-block) var(--grid-margin);
  background: var(--colour-offwhite);
}
@media only screen and (min-width: 960px) {
  .reviews-carousel {
    grid-template-columns: repeat(2, 1fr);
  }
}
.reviews-carousel__header {
  grid-column: span 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border-right: 1px solid rgba(var(--rgb-green), 0.1);
}
.reviews-carousel__title::after {
  content: open-quote;
  font-family: var(--font-serif);
  font-size: 4.5rem;
  line-height: 0.8;
}
@media only screen and (min-width: 960px) {
  .reviews-carousel__title::after {
    display: none;
  }
}
.reviews-carousel__title .eyebrow {
  display: none;
}
@media only screen and (min-width: 960px) {
  .reviews-carousel__title .eyebrow {
    display: block;
  }
}
.reviews-carousel__main {
  grid-column: span 3;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: var(--spacing-block);
}
@media only screen and (min-width: 960px) {
  .reviews-carousel__main {
    grid-column: span 1;
  }
}
.reviews-carousel__nav {
  flex-direction: column;
}
@media only screen and (min-width: 960px) {
  .reviews-carousel__nav {
    flex-direction: row;
  }
}
.reviews-carousel__container {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.reviews-carousel__container .swiper-wrapper {
  align-items: flex-end;
}
.reviews-carousel__container .swiper-slide {
  height: auto;
}
.reviews-carousel__pagination {
  display: flex;
  gap: 0.5em;
  color: rgba(var(--rgb-green), 0.4);
}
.reviews-carousel__pagination .swiper-pagination-current {
  color: var(--colour-green);
}
.reviews-carousel__slide {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.6rem;
  transition-property: transform, opacity;
  transition-timing-function: var(--easing);
}
.reviews-carousel__quote {
  max-width: 30em;
  font-family: var(--font-serif);
  font-size: var(--font-size-lg);
  line-height: 1.2;
  text-wrap: balance;
}
.reviews-carousel__ref {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.search-panel {
  position: fixed;
  z-index: 1000;
  inset: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: gainsboro;
  pointer-events: auto;
}
.search-panel[data-search-status=not-active] {
  display: none;
  pointer-events: none;
}
.search-panel__close {
  position: absolute;
  z-index: 20;
  right: 1rem;
  top: 1rem;
}

body.search-panel-active {
  overflow: hidden;
}

.split {
  display: grid;
  grid-template-columns: [start] repeat(1, 1fr) [end];
  gap: 4rem var(--grid-gutter);
}
@media only screen and (min-width: 960px) {
  .split {
    grid-template-columns: [start] repeat(12, 1fr) [end];
  }
}
.split__media {
  order: 1;
  position: relative;
  grid-column: span 1;
  display: flex;
  overflow: hidden;
}
@media only screen and (min-width: 960px) {
  .split__media {
    grid-column: start/span 6;
  }
}
.split__media::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: min(120%, 100vh);
}
.split__media img,
.split__media video,
.split__media [data-map] {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.split__media img,
.split__media video {
  -o-object-fit: cover;
     object-fit: cover;
}
.split__media iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.split__media [data-map] iframe {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-width: 0;
  min-height: 0;
  aspect-ratio: auto;
  transform: none;
  pointer-events: auto;
}
.split__content {
  order: 2;
  grid-column: span 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--spacing-block);
}
@media only screen and (min-width: 960px) {
  .split__content {
    grid-column: span 5/end;
  }
}
@media only screen and (min-width: 1200px) {
  .split__content {
    grid-column: span 4/end;
  }
}
.split__content-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.split__content-body {
  max-width: 38rem;
}
@media only screen and (min-width: 960px) {
  .split__content-body {
    max-width: 28rem;
  }
}
.split__content-body p:first-child {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--colour-green);
}
.split__content-media {
  display: none;
}
@media only screen and (min-width: 960px) {
  .split__content-media {
    display: grid;
    grid-template-columns: [start] repeat(4, 1fr) [end];
    gap: var(--grid-gutter);
  }
}
.split__content-media-wrap {
  position: relative;
  grid-column: span 3/end;
  overflow: hidden;
}
@media only screen and (min-width: 2000px) {
  .split__content-media-wrap {
    grid-column: span 2/end;
  }
}
.split__content-media-wrap::after {
  content: "";
  display: block;
  width: 100%;
  padding-bottom: 120%;
}
.split__content-media .component-image,
.split__content-media .component-media,
.split__content-media .component-mp4,
.split__content-media .component-vimeo,
.split__content-media .video-player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.split__content-media img,
.split__content-media video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.split__content-media iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.split--full {
  grid-column: full;
  gap: 0;
  padding: 0;
}
.split--full .split__content {
  padding: var(--spacing-xl) calc(var(--grid-margin) * 2);
}
@media only screen and (min-width: 960px) {
  .split--reverse .split__media {
    order: 2;
    grid-column: span 6/end;
  }
}
@media only screen and (min-width: 960px) {
  .split--reverse .split__content {
    order: 1;
    grid-column: start/span 5;
  }
}
@media only screen and (min-width: 1200px) {
  .split--reverse .split__content {
    grid-column: start/span 4;
  }
}
.split--reverse .split__content-media-wrap {
  grid-column: start/span 3;
}
@media only screen and (min-width: 2000px) {
  .split--reverse .split__content-media-wrap {
    grid-column: start/span 2;
  }
}

.sticky-features {
  position: relative;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .sticky-features {
    padding: 50vh 0;
  }
}
.sticky-features__triggers {
  position: relative;
  z-index: 0;
  display: none;
  pointer-events: none;
}
@media only screen and (min-width: 960px) {
  .sticky-features__triggers {
    display: block;
  }
}
.sticky-features__triggers-item {
  height: 100vh;
}
@media only screen and (min-width: 960px) {
  .sticky-features__scroll {
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}
.sticky-features__container {
  display: flex;
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .sticky-features__container {
    position: sticky;
    top: var(--header-height-condensed);
    height: calc(100vh - var(--header-height-condensed));
    height: calc(100svh - var(--header-height-condensed));
  }
}
.sticky-features__col {
  position: relative;
  width: 100%;
  height: 100%;
}
@media only screen and (min-width: 960px) {
  .sticky-features__col {
    width: 50%;
  }
}
.sticky-features__col.is--img {
  display: none;
  overflow: hidden;
}
@media only screen and (min-width: 960px) {
  .sticky-features__col.is--img {
    display: block;
  }
}
.sticky-features__col.is--text {
  display: flex;
  flex-flow: column;
  align-items: center;
  gap: var(--spacing-block-sm);
  padding: var(--spacing-block) var(--grid-margin);
}
@media only screen and (min-width: 960px) {
  .sticky-features__col.is--text {
    padding: var(--spacing-block-sm) var(--grid-margin) var(--grid-margin) var(--grid-margin);
  }
}
.sticky-features__pagination {
  position: relative;
  display: none;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 0.8em;
  min-width: 0;
  line-height: 1.5;
  color: var(--colour-green-50);
}
@media only screen and (min-width: 960px) {
  .sticky-features__pagination {
    display: flex;
  }
}
.sticky-features__pagination-current, .sticky-features__pagination-total {
  width: 1.5em;
  text-align: center;
}
.sticky-features__pagination-current {
  position: relative;
  height: 1.5em;
  overflow: hidden;
  color: var(--colour-green);
}
.sticky-features__pagination-dynamic {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  width: 100%;
  transform: translateY(0);
  transition: transform 0.75s var(--easing);
}
.sticky-features__pagination-index {
  flex-shrink: 0;
  display: block;
  width: 100%;
  height: 1.5em;
}
.sticky-features__progress {
  display: none;
  width: 100%;
  height: 1px;
  background: rgba(var(--rgb-green), 0.1);
}
@media only screen and (min-width: 960px) {
  .sticky-features__progress {
    display: block;
  }
}
.sticky-features__progress-bar {
  width: 100%;
  height: 100%;
  background-color: currentColor;
  transform: scale3d(0, 1, 1);
  transform-origin: left;
}
.sticky-features__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sticky-features__img-collection {
  width: 100%;
  height: 100%;
}
.sticky-features__img-list {
  position: relative;
  width: 100%;
  height: 100%;
}
.sticky-features__img-item {
  position: absolute;
  inset: 0%;
  width: 100%;
  height: 100%;
  will-change: transform, opacity;
}
.sticky-features__img-item picture {
  display: block;
  width: 100%;
  height: 100%;
}
.sticky-features__iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
}
.sticky-features__text-collection {
  flex: 1;
  width: 100%;
}
.sticky-features__text-list {
  position: relative;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  gap: var(--spacing-block);
}
@media only screen and (min-width: 960px) {
  .sticky-features__text-list {
    height: 100%;
    max-height: 100%;
  }
}
.sticky-features__text-item {
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
}
@media only screen and (min-width: 960px) {
  .sticky-features__text-item {
    position: absolute;
    max-width: 30em;
    height: 100%;
  }
}
.sticky-features__text-item-img {
  position: relative;
  aspect-ratio: 1/1.2;
  overflow: hidden;
  width: 100%;
  margin-bottom: 2.8rem;
}
@media only screen and (min-width: 720px) {
  .sticky-features__text-item-img {
    aspect-ratio: 1.2/1;
  }
}
@media only screen and (min-width: 960px) {
  .sticky-features__text-item-img {
    display: none;
  }
}
.sticky-features__text-item-img img,
.sticky-features__text-item-img picture,
.sticky-features__text-item-img video {
  width: 100%;
  height: 100%;
}
.sticky-features__text-item-img picture {
  display: block;
}
.sticky-features__text-item-img img,
.sticky-features__text-item-img video {
  -o-object-fit: cover;
     object-fit: cover;
}
.sticky-features__text-item-img iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
}
.sticky-features__description {
  max-width: 30em;
  font-size: 0.9rem;
  text-wrap: balance;
  color: var(--colour-green-80);
}
h1 + .sticky-features__description, h2 + .sticky-features__description, h3 + .sticky-features__description, h4 + .sticky-features__description, h5 + .sticky-features__description, h6 + .sticky-features__description {
  margin-top: 1.6rem;
}
.sticky-features__description + .button {
  margin-top: 2.1rem;
}

.team-grid {
  grid-column: content;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-md) var(--grid-gutter);
}
@media only screen and (min-width: 720px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 1200px) {
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.team-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.team-item[data-modal-target] {
  cursor: pointer;
}
.team-item__image img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/5;
}

.team-modal__links {
  display: flex;
  gap: 1rem;
}
.team-modal__links-item svg {
  width: 2rem;
  height: 2rem;
}

.timeline {
  display: grid;
  gap: var(--grid-gutter);
  grid-template-columns: repeat(4, 1fr);
}
@media only screen and (min-width: 720px) {
  .timeline {
    grid-template-columns: repeat(3, 1fr);
  }
}
.timeline__header {
  align-items: flex-start;
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
  grid-column: span 1;
  justify-content: space-between;
  min-width: 0;
}
.timeline__header .show-for-sm {
  display: none;
}
@media only screen and (min-width: 720px) {
  .timeline__header .show-for-sm {
    display: inline;
  }
}
.timeline__nav {
  flex-direction: column;
}
@media only screen and (min-width: 720px) {
  .timeline__nav {
    flex-direction: row;
  }
}
.timeline__nav .navigation-button {
  background: #fff;
}
.timeline__main {
  border-left: 1px solid rgba(var(--rgb-green), 0.1);
  display: flex;
  gap: var(--grid-gutter);
  grid-column: span 3;
  min-width: 0;
  overflow: clip;
}
@media only screen and (min-width: 720px) {
  .timeline__main {
    grid-column: span 2;
  }
}
.timeline__carousel {
  width: 100%;
}
@media only screen and (min-width: 720px) {
  .timeline__carousel {
    width: 50%;
  }
}
.timeline__slide {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-block-sm);
  padding-left: var(--grid-gutter);
  position: relative;
}
@media only screen and (min-width: 720px) {
  .timeline__slide {
    padding-right: 10%;
  }
}
.timeline__slide::before {
  background: rgba(var(--rgb-green), 0.1);
  content: "";
  height: 100%;
  left: -1px;
  position: absolute;
  top: 0;
  width: 1px;
}
.timeline__slide-body {
  color: var(--colour-green-80);
  max-width: 25em;
  text-wrap: pretty;
}

.activities-details {
  display: flex;
  flex-wrap: wrap;
  line-height: 1.6;
}
h1 + .activities-details, h2 + .activities-details, h3 + .activities-details, h4 + .activities-details, h5 + .activities-details, h6 + .activities-details, .richtext + .activities-details {
  margin-top: 0.8rem;
}
.activities-details__item {
  display: inline-flex;
  align-items: center;
  gap: 0.2em;
}
.activities-details__item:not(:last-child)::after {
  content: "•";
  margin: 0 0.4rem;
  color: var(--colour-green-50);
}
.activities-details__label, .activities-details__value {
  display: inline-block;
}
.activities-details__label {
  color: var(--colour-green-50);
}
.activities-details__label::after {
  content: ":";
}
.activities-details__value {
  font-family: var(--font-medium);
  color: var(--colour-green);
}
.activities-details__value a {
  display: block;
  padding: 0.1em 0;
  color: currentColor;
  background-image: linear-gradient(var(--colour-green-50), var(--colour-green-50)), linear-gradient(var(--colour-green-20), var(--colour-green-20));
  background-position: 100% 100%, 0% 100%;
  background-repeat: no-repeat;
  background-size: 0% 1px, 100% 1px;
  transition: color 0.4s var(--easing), background-size 0.4s var(--easing);
}
@media (hover: hover) and (pointer: fine) {
  .activities-details__value a:hover {
    background-position: 0% 100%, 0% 100%;
    background-size: 100% 1px, 100% 1px;
  }
}

.page-error {
  grid-column: content;
}

.latest-feed.no-events .latest-feed__sticky {
  display: none;
}
@media only screen and (min-width: 960px) {
  .latest-feed.no-events .latest-feed__scroll {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 0;
  }
}
@media only screen and (min-width: 1200px) {
  .latest-feed.no-events .latest-feed__scroll {
    grid-template-columns: repeat(3, 1fr);
  }
}
.latest-feed.no-events .latest-feed__scroll .card:nth-child(3) {
  display: flex;
}
@media only screen and (min-width: 720px) {
  .latest-feed.no-events .latest-feed__scroll .card:nth-child(3) {
    display: none;
  }
}
@media only screen and (min-width: 1200px) {
  .latest-feed.no-events .latest-feed__scroll .card:nth-child(3) {
    display: flex;
  }
}
.latest-feed__header {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0 var(--grid-margin);
  margin-bottom: 4rem;
}
@media only screen and (min-width: 720px) {
  .latest-feed__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.latest-feed__title {
  max-width: 15em;
  font-family: var(--font-serif);
  font-size: var(--font-size-2xl);
  line-height: 1.1;
  text-transform: uppercase;
  text-wrap: balance;
}
.latest-feed__title i {
  font-family: var(--font-serif-italic);
  text-transform: none;
}
.latest-feed__main {
  display: flex;
  flex-direction: column;
  gap: 4rem 0;
}
@media only screen and (min-width: 960px) {
  .latest-feed__main {
    flex-direction: row;
    align-items: flex-start;
  }
}
.latest-feed__sticky {
  width: 100%;
}
@media only screen and (min-width: 960px) {
  .latest-feed__sticky {
    position: sticky;
    top: calc(var(--header-height-condensed) + var(--grid-margin));
    width: 67%;
    height: calc(100vh - (var(--header-height-condensed) + var(--grid-margin) * 2));
    padding-right: var(--grid-margin);
  }
}
.latest-feed__sticky::after {
  content: "";
  position: absolute;
  z-index: 0;
  top: 0;
  right: 0;
  height: 100%;
  border-right: 1px solid rgba(var(--rgb-green), 0.1);
}
.latest-feed__scroll {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 4rem var(--grid-gutter);
}
@media only screen and (min-width: 720px) {
  .latest-feed__scroll {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (min-width: 960px) {
  .latest-feed__scroll {
    flex: 1;
    grid-template-columns: repeat(1, 1fr);
    width: auto;
    padding-left: var(--grid-margin);
  }
}
.latest-feed__scroll .card:nth-child(3) {
  display: none;
}
@media only screen and (min-width: 960px) {
  .latest-feed__scroll .card:nth-child(3) {
    display: flex;
  }
}
.latest-feed__featured {
  position: relative;
  display: block;
  width: 100%;
  height: 100vmin;
  color: var(--colour-white);
  background-color: var(--colour-black);
}
@media only screen and (min-width: 960px) {
  .latest-feed__featured {
    position: sticky;
    top: calc(var(--header-height-condensed) + var(--grid-margin));
    height: 100%;
    max-height: 75vw;
  }
}
@media (hover: hover) and (pointer: fine) {
  .latest-feed__featured:hover .latest-feed__featured-media img,
  .latest-feed__featured:hover .latest-feed__featured-media video {
    transform: scale(1.05);
  }
  .latest-feed__featured:hover .latest-feed__featured-content .card__link-label {
    background-position: 0% 100%, 0% 100%;
    background-size: 100% 1px, 100% 1px;
  }
  .latest-feed__featured:hover .latest-feed__featured-content .button--primary {
    color: var(--colour-green);
    background-color: var(--colour-white);
  }
}
.latest-feed__featured-media {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.7;
  -webkit-mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), black 33%);
          mask-image: linear-gradient(to top, rgba(0, 0, 0, 0.3), black 33%);
}
.latest-feed__featured-media img,
.latest-feed__featured-media video {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition: transform 0.4s var(--easing);
}
.latest-feed__featured-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  height: 100%;
  padding: 2.4rem var(--grid-margin);
}
.latest-feed__featured-content .card__link-label {
  background-image: linear-gradient(rgba(var(--rgb-white), 0.5), rgba(var(--rgb-white), 0.5)), linear-gradient(rgba(var(--rgb-white), 0.2), rgba(var(--rgb-white), 0.2));
}
.latest-feed__featured-content .button--primary {
  color: var(--colour-white);
  background-color: var(--colour-green-50);
}
@supports (backdrop-filter: blur(30px)) or (-webkit-backdrop-filter: blur(30px)) {
  .latest-feed__featured-content .button--primary {
    color: var(--colour-white);
    backdrop-filter: blur(30px);
    background-color: rgba(136, 144, 142, 0.3);
  }
}
@media (hover: hover) and (pointer: fine) {
  .latest-feed__featured-content .button--primary:hover {
    color: var(--colour-green);
    background-color: var(--colour-white);
  }
}
.latest-feed__featured-label {
  position: absolute;
  left: var(--grid-margin);
  top: var(--grid-margin);
  padding: 0.4rem 0.6rem;
  border-radius: 0.2rem;
  font-family: var(--font-medium);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: var(--colour-gold);
}
.latest-feed__featured-title {
  max-width: 15em;
  font-family: var(--font-serif);
  font-size: 1.4rem;
  line-height: 1.3;
  text-wrap: balance;
}
@media only screen and (min-width: 960px) {
  .latest-feed__featured-title {
    font-size: 2.1rem;
    line-height: 1.2;
  }
}
.latest-feed__featured-title + .button {
  margin-top: 1.4rem;
}

.events-carousel {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  text-align: center;
  min-height: min(120vmin, 100vh);
  padding: min(80vmin, 60vh) var(--grid-margin) var(--grid-margin) var(--grid-margin);
  background: var(--colour-black);
}
@media only screen and (min-width: 960px) {
  .events-carousel {
    align-items: stretch;
    min-height: 0;
    padding: 0;
  }
}
.events-carousel__container {
  position: relative;
  z-index: 2;
  width: 100%;
  background: var(--colour-offwhite);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  padding: calc(var(--grid-margin) * 2) var(--grid-margin) var(--grid-margin) var(--grid-margin);
}
@media only screen and (min-width: 960px) {
  .events-carousel__container {
    gap: var(--spacing-block);
    width: 50%;
    padding: clamp(60px, 2.08vi + 40px, 90px) var(--grid-margin);
  }
}
.events-carousel__slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition-property: transform, opacity;
  transition-timing-function: var(--easing);
}
.events-carousel__slide * + .button {
  margin-top: 2.1rem;
}
.events-carousel__heading + .eyebrow {
  margin-top: 1.4rem;
}
.events-carousel__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 0.8rem;
}
@media only screen and (min-width: 960px) {
  .events-carousel__nav {
    gap: 0.4rem;
  }
}
.events-carousel__tracker {
  position: absolute;
  z-index: 20;
  left: 50%;
  top: 50%;
  display: none;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  background: var(--colour-green);
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 960px) {
  .events-carousel__tracker {
    display: flex;
  }
}
.events-carousel__pagination {
  display: flex;
  justify-content: center;
  gap: 0.5em;
  width: auto;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--colour-green-50);
}
.events-carousel__pagination .swiper-pagination-current {
  color: var(--colour-green);
}
@media only screen and (min-width: 960px) {
  .events-carousel__pagination .swiper-pagination-current {
    color: var(--colour-white);
  }
}
.events-carousel__pagination-mobile {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media only screen and (min-width: 960px) {
  .events-carousel__pagination-mobile {
    display: none;
  }
}
.events-carousel__pagination-mobile::before, .events-carousel__pagination-mobile::after {
  content: "";
  flex: 1;
  height: 1px;
  background: rgba(var(--rgb-green), 0.1);
}
.events-carousel__progress {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 5.2rem;
  height: 5.2rem;
  transform: translate(-50%, -50%);
}
.events-carousel__progress svg {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

.events-media-carousel {
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  overflow: hidden;
  width: 100%;
  min-width: 0;
  height: 75%;
  -webkit-mask-image: linear-gradient(to top, transparent, black 25%);
          mask-image: linear-gradient(to top, transparent, black 25%);
}
@media only screen and (min-width: 960px) {
  .events-media-carousel {
    position: relative;
    left: auto;
    top: auto;
    width: 50%;
    height: auto;
    -webkit-mask-image: none;
            mask-image: none;
  }
}
.events-media-carousel .swiper-slide {
  position: relative;
  min-height: min(60vw, 100vh);
  transition-property: opacity;
  transition-timing-function: var(--easing);
}
.events-media-carousel .component-image,
.events-media-carousel picture {
  display: block;
  width: 100%;
  height: 100%;
}
.events-media-carousel .component-mp4,
.events-media-carousel .component-vimeo {
  width: 100%;
  height: 100%;
}
.events-media-carousel img,
.events-media-carousel video {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.events-media-carousel iframe {
  position: absolute;
  left: 50%;
  top: 50%;
  width: auto;
  min-width: 100%;
  min-height: 100%;
  aspect-ratio: 16/9;
  transform: translate(-50%, -50%);
}

.events-content-carousel {
  flex: 1;
  width: 100%;
  min-width: 0;
  overflow: hidden;
}

.search-results-header {
  grid-column: content;
}

.search-results {
  grid-column: full-start/full-end;
  display: grid;
  grid-template-columns: subgrid;
}
.search-results .component-links {
  grid-column: content;
}

/*# sourceMappingURL=app.css.map*/