@charset "UTF-8";
/* stylelint-disable */
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

button {
  border: 0;
  margin: 0;
  padding: 0;
  width: auto;
  overflow: visible;
  background: transparent;
  /* inherit font & color from ancestor */
  color: inherit;
  font: inherit;
  text-align: inherit;
  /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
  line-height: normal;
  line-height: inherit;
}

:root {
  --container-width: calc(100% - var(--gutter) * 2);
  --gutter: 20px;
  --header-height: 90px;
  --container-l: calc(100% - var(--gutter) * 2);
  --container-wide: calc(100% - var(--gutter) * 2);
  --font-family-primary: "Suisse Int'l", sans-serif;
  --font-family-alt: 'henderson-sans-basic', sans-serif;
  --td-s: 0.2s;
  --td-m: 0.4s;
  --td-l: 1s;
  --td-xl: 1.4s;
  --neutral-10: #ffffff;
  --neutral-9: #f7f7f7;
  --neutral-8: #e6e6e6;
  --neutral-7: #d9d9d9;
  --neutral-6: #cccccc;
  --neutral-5: #b2b2b2;
  --neutral-4: #999999;
  --neutral-3: #666666;
  --neutral-2: #4d4d4d;
  --neutral-1: #333333;
  --neutral-0: #000000;
  --black: var(--neutral-0);
  --white: var(--neutral-10);
  --onyx: #25221f;
  --light-sand: #ffefd5;
  --dark-sand: #a58e74;
  --copper: #e09132;
  --forest: #424530;
  --text-primary: var(--black);
  --text-receding: var(--neutral-3);
  --text-light: var(--neutral-8);
  --text-size-6xl: 54px;
  --text-size-5xl: 45px;
  --text-size-4xl: 30px;
  --text-size-3xl: 26px;
  --text-size-2xl: 20px;
  --text-size-xl: 18px;
  --text-size-l: 16px;
  --text-size-m: 14px;
  --text-size-s: 12px;
  --text-size-xs: 11px;
  --spacing-3xl: 100px;
  --spacing-2xl: 80px;
  --spacing-xl: 40px;
  --spacing-l: 25px;
  --spacing-m: 15px;
  --spacing-s: 10px;
  --spacing-xs: 5px;
  --spacing-2xs: 2px;
  --spacing-3xs: 0px;
  --border-radius-round: 50%;
  --border-radius-rounded: 500px;
  --border-radius-l: 20px;
  --border-radius-m: 10px;
  --border-radius-s: 5px;
  --border-radius-xs: 3px;
}
@media (min-width: 768px) {
  :root {
    --container-width: calc(720px - var(--gutter) * 2);
    --header-height: clamp(80px, calc((120 / 1170) * var(--container-width)), 120px);
    --container-l: clamp(var(--container-width), calc(100% - var(--spacing-2xl) * 2), 1260px);
    --container-wide: clamp(var(--container-width), calc(100% - var(--spacing-xl) * 2), 1600px);
    --text-size-6xl: clamp(54px, calc((135 / 1170) * var(--container-width)), 135px);
    --text-size-5xl: clamp(45px, calc((100 / 1170) * var(--container-width)), 100px);
    --text-size-4xl: clamp(30px, calc((70 / 1170) * var(--container-width)), 70px);
    --text-size-3xl: clamp(26px, calc((46 / 1170) * var(--container-width)), 46px);
    --text-size-2xl: clamp(20px, calc((30 / 1170) * var(--container-width)), 30px);
    --text-size-xl: clamp(18px, calc((20 / 1170) * var(--container-width)), 20px);
    --text-size-l: clamp(16px, calc((19 / 1170) * var(--container-width)), 19px);
    --text-size-m: clamp(14px, calc((16 / 1170) * var(--container-width)), 16px);
    --text-size-xs: 9px;
    --spacing-3xl: clamp(100px, calc((150 / 1170) * var(--container-width)), 150px);
    --spacing-2xl: clamp(80px, calc((100 / 1170) * var(--container-width)), 100px);
    --spacing-xl: clamp(40px, calc((50 / 1170) * var(--container-width)), 50px);
    --spacing-l: clamp(25px, calc((30 / 1170) * var(--container-width)), 30px);
    --spacing-m: clamp(15px, calc((20 / 1170) * var(--container-width)), 20px);
    --spacing-s: clamp(10px, calc((15 / 1170) * var(--container-width)), 15px);
    --spacing-xs: clamp(5px, calc((10 / 1170) * var(--container-width)), 10px);
    --spacing-2xs: clamp(2px, calc((5 / 1170) * var(--container-width)), 5px);
    --spacing-3xs: clamp(0px, calc((2 / 1170) * var(--container-width)), 2px);
  }
}
@media (min-width: 992px) {
  :root {
    --container-width: calc(960px - var(--gutter) * 2);
  }
}
@media (min-width: 1300px) {
  :root {
    --container-width: calc(1200px - var(--gutter) * 2);
  }
}

@font-face {
  font-family: "Suisse Int'l";
  src: url("../../fonts/SuisseIntl.woff2") format("woff2"), url("../../fonts/SuisseIntl.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url("../../fonts/SuisseIntl-Light.woff2") format("woff2"), url("../../fonts/SuisseIntl-Light.woff") format("woff");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url("../../fonts/SuisseIntl-Thin.woff2") format("woff2"), url("../../fonts/SuisseIntl-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url("../../fonts/SuisseIntl-Medium.woff2") format("woff2"), url("../../fonts/SuisseIntl-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Suisse Int'l";
  src: url("../../fonts/SuisseIntl-Italic.woff2") format("woff2"), url("../../fonts/SuisseIntl-Italic.woff") format("woff");
  font-weight: normal;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: "MADE Mirage";
  src: url("../../fonts/MADEMirage.woff2") format("woff2"), url("../../fonts/MADEMirage.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE Mirage";
  src: url("../../fonts/MADEMirage-Thin.woff2") format("woff2"), url("../../fonts/MADEMirage-Thin.woff") format("woff");
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MADE Mirage";
  src: url("../../fonts/MADEMirage-Medium.woff2") format("woff2"), url("../../fonts/MADEMirage-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
.heading, .generic-page .page-main h2,
.generic-page .page-main h3,
.generic-page .page-main h4, .heading-xl, .heading-2xl, .heading-3xl, .heading-4xl, .heading-5xl, .heading-6xl {
  font-family: var(--font-family-alt);
  line-height: 1;
  letter-spacing: -0.08em;
}

.heading-6xl {
  font-size: var(--text-size-6xl);
  line-height: 0.92;
}

.heading-5xl {
  font-size: var(--text-size-5xl);
}

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

.heading-3xl {
  font-size: var(--text-size-3xl);
}

.heading-2xl {
  font-size: var(--text-size-2xl);
}

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

.styled-heading {
  font-weight: 100;
}
.styled-heading .heading-text--bold {
  font-weight: 400;
}
.styled-heading .heading-text--accent {
  color: var(--accent);
}
.styled-heading .heading-text .small {
  font-size: 0.75em;
}

.container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-inline: var(--gutter);
}
@media (min-width: 768px) {
  .container {
    width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    width: 960px;
  }
}
@media (min-width: 1300px) {
  .container {
    width: 1200px;
  }
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

* {
  outline: none;
}

html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
}

body {
  min-width: 320px;
  font-family: var(--font-family-primary);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  line-height: 1.3;
  font-size: var(--text-size-l);
  text-wrap: pretty;
  color: var(--onyx);
  letter-spacing: -0.01em;
}
body::-moz-selection {
  background-color: var(--onyx);
  color: var(--copper);
}
body::selection {
  background-color: var(--onyx);
  color: var(--copper);
}
body.page-template-page-about {
  --section-bg-colour: var(--white);
}
body.page-template-page-about section {
  background-color: var(--section-bg-colour);
}
body.page-template-page-services {
  background-color: var(--light-sand);
}

a {
  text-decoration: none;
}

strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

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

p:not(:first-child) {
  margin-top: 0.8em;
}

button {
  cursor: pointer;
}

.media-wrapper {
  position: relative;
  overflow: hidden;
}
.media-wrapper img,
.media-wrapper video,
.media-wrapper picture {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.moving-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  pointer-events: none;
}
.moving-bg-fixed {
  position: fixed;
  height: 100lvh;
  display: none;
  z-index: -1;
}
.moving-bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../../img/backgrounds/banner-bg.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  opacity: 0.8;
}
.moving-bg video,
.moving-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  mix-blend-mode: multiply;
  opacity: 0.8;
}
@media (min-width: 768px) {
  .moving-bg video,
  .moving-bg img {
    opacity: 1;
  }
}
.moving-bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 43.78%);
  z-index: 2;
  opacity: 0.9;
}
.moving-bg svg {
  position: absolute;
  right: -60%;
  top: 50%;
  max-width: unset;
  translate: 0 -50%;
  width: 180%;
  z-index: 3;
  mix-blend-mode: overlay;
}

body.page-template-page-contact .moving-bg-fixed {
  display: block;
}

body.page-template-page-about .moving-bg-fixed {
  display: block;
}
@media (min-width: 768px) {
  body.page-template-page-about .moving-bg-fixed {
    display: none;
  }
}

@property --header-colour {
  header {
    syntax: "<color>";
    inherits: false;
    initial-value: var(--black);
  }
}
header {
  --header-colour: var(--black);
  height: var(--header-height);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  color: var(--header-colour);
  transition-property: background-color, backdrop-filter, translate, --header-colour;
  transition-duration: var(--td-m);
}
header.scrolled:not(.open) {
  background-color: color-mix(in srgb, var(--white) 40%, transparent);
  backdrop-filter: blur(10px);
}
header.scrolling-down:not(.open) {
  translate: 0 calc(-100% - 1px);
}
header .header-inner {
  max-width: var(--container-wide);
  margin-inline: auto;
  display: flex;
  align-items: center;
  height: 100%;
  justify-content: space-between;
}
header .header-logo {
  display: block;
  color: inherit;
}
header .header-logo svg {
  width: 135px;
}
@media (min-width: 768px) {
  header .header-logo svg {
    width: clamp(135px, 200 / 1170 * var(--container-width), 200px);
  }
}
header .header-logo svg path,
header .header-logo svg polygon {
  fill: var(--header-colour);
}
header .button {
  font-size: var(--text-size-s);
}
@media (min-width: 768px) {
  header .button {
    font-size: var(--text-size-l);
    min-width: clamp(75px, 105 / 1170 * var(--container-width), 105px);
  }
}
header .menu-button {
  display: grid;
}
header .menu-button .text {
  place-items: center;
  grid-area: 1/1/span 1/span 1;
}
header .menu-button .close {
  opacity: 0;
  pointer-events: none;
}

body:has(section:first-of-type[data-header=light]) header {
  --header-colour: var(--white);
}
body:has(section:first-of-type[data-header=light]) header.scrolled:not(.open) {
  background-color: color-mix(in srgb, var(--black) 40%, transparent);
}

body:has(header.open) {
  overflow: hidden;
}
body:has(header.open) header {
  --header-colour: var(--white) !important;
}
body:has(header.open) .menu-button .close {
  opacity: 1;
  pointer-events: all;
}
body:has(header.open) .menu-button .open {
  opacity: 0;
  pointer-events: none;
}
body:has(header.open) .main-menu {
  opacity: 1;
  pointer-events: all;
}

.main-menu {
  position: fixed;
  z-index: 999;
  inset: 0;
  background-color: var(--white);
  padding-bottom: 40px;
  padding-top: var(--header-height);
  color: var(--white);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--td-m);
}
.main-menu .main-menu-inner {
  position: relative;
  max-width: var(--container-wide);
  width: 100%;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}
.main-menu .main-menu-inner::before {
  content: "";
}
.main-menu .header-nav .menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
}
@media (min-width: 992px) {
  .main-menu .header-nav .menu {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
  }
}
.main-menu .header-nav a {
  position: relative;
  display: block;
  color: inherit;
  font-size: 50px;
  font-family: var(--font-family-alt);
  font-weight: 500;
  line-height: 0.9;
  padding: 15px 30px;
  letter-spacing: -0.08em;
}
@media (min-width: 992px) {
  .main-menu .header-nav a {
    font-size: var(--text-size-4xl);
  }
}
.main-menu .header-nav a:hover::after {
  border-color: color-mix(in srgb, var(--white) 40%, transparent);
}
.main-menu .header-nav a[aria-current=page]::after {
  border-color: var(--header-colour);
}
.main-menu .header-nav a:after {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  border: 1px solid transparent;
  border-radius: var(--border-radius-rounded);
  transition: border-color var(--td-s);
}
.main-menu .main-menu-footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  font-size: var(--text-size-s);
}
@media (min-width: 768px) {
  .main-menu .main-menu-footer {
    flex-direction: row;
    justify-content: space-between;
    font-size: var(--text-size-m);
  }
}
.main-menu .main-menu-footer .menu {
  display: flex;
  gap: 20px;
}
@media (min-width: 768px) {
  .main-menu .main-menu-footer .menu {
    display: contents;
  }
}
@media (min-width: 768px) {
  .main-menu .main-menu-footer .menu li:last-of-type {
    order: 3;
  }
}
.main-menu .main-menu-footer .menu a {
  color: inherit;
}

footer {
  background-color: var(--onyx);
  color: var(--white);
  padding-block: var(--spacing-2xl);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  footer {
    padding-block: clamp(60px, 80 / 1170 * var(--container-width), 80px);
  }
}
footer .footer-bg {
  position: absolute;
  right: -60%;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 0;
  opacity: 0.2;
}
@media (min-width: 768px) {
  footer .footer-bg {
    left: 50%;
    top: 50%;
    right: unset;
    translate: -50% -50%;
    width: 105%;
    height: auto;
  }
}
footer .footer-bg svg {
  height: 100%;
  width: auto;
  max-width: unset;
}
@media (min-width: 768px) {
  footer .footer-bg svg {
    width: 100%;
    height: auto;
  }
}
footer .footer-inner {
  max-width: var(--container-wide);
  margin-inline: auto;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  footer .footer-inner {
    gap: clamp(50px, 300 / 1170 * var(--container-width), 300px);
  }
}
footer .footer-logo {
  position: absolute;
  display: block;
  right: 0;
  bottom: 0;
}
@media (min-width: 768px) {
  footer .footer-logo {
    position: unset;
  }
}
footer .footer-logo svg {
  width: 45px;
}
@media (min-width: 768px) {
  footer .footer-logo svg {
    width: clamp(45px, 100 / 1170 * var(--container-width), 100px);
  }
}
@media (min-width: 768px) {
  footer .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: var(--spacing-xl);
  }
}
footer .footer-nav .menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  footer .footer-nav .menu {
    flex-direction: row;
    justify-content: space-between;
  }
}
footer .footer-nav a {
  color: inherit;
  font-family: var(--font-family-alt);
  font-size: 46px;
  font-weight: 500;
  line-height: 1;
  text-box: trim-both cap alphabetic;
  letter-spacing: -0.08em;
  transition: color var(--td-s);
}
footer .footer-nav a:hover {
  color: var(--copper);
}
footer .footer-info {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-l);
}
@media (min-width: 768px) {
  footer .footer-info {
    flex-direction: row;
    justify-content: space-between;
    gap: clamp(40px, 80 / 1170 * var(--container-width), 80px);
  }
}
footer .footer-info-box {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
footer .box-heading {
  opacity: 0.5;
}
footer .box-content {
  line-height: 1.5;
  max-width: 300px;
}
@media (min-width: 768px) {
  footer .box-content {
    max-width: 22em;
    line-height: 1.2;
  }
}
footer .box-items {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
@media (min-width: 768px) {
  footer .box-items {
    gap: 10px;
    font-size: var(--text-size-m);
    line-height: 1.5;
  }
}
footer .box-items a {
  color: inherit;
  display: block;
}
footer .box-items .menu {
  display: contents;
}

.button {
  color: var(--btn-text-colour, inherit);
  border: 1px solid var(--btn-border-colour, currentColor);
  border-radius: var(--border-radius-s);
  background-color: var(--btn-bg-colour, transparent);
  padding-inline: 1em;
  display: flex;
  line-height: 1;
  align-items: center;
  gap: 5px;
  border-radius: var(--border-radius-rounded);
  min-height: 2em;
  justify-content: center;
  min-width: 75px;
  white-space: nowrap;
  transition-property: background-color, color, border-color;
  transition-duration: var(--td-s);
}
.button:has(svg) {
  padding-right: 0.8em;
}
.button .text {
  text-box: trim-both cap alphabetic;
}
.button svg {
  height: 1em;
  width: auto;
}
.button svg path {
  stroke: var(--btn-text-colour, currentColor);
}
.button:hover {
  background-color: var(--btn-bg-colour-hover, color-mix(in srgb, var(--btn-text-colour, currentColor) 10%, transparent));
}

.consent {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translateY(calc(100% + 40px));
  transition: transform 0.4s;
  z-index: 999;
  pointer-events: none;
  background-color: color-mix(in srgb, var(--white) 70%, transparent);
  backdrop-filter: blur(20px);
  padding-block: 20px;
}
@media (min-width: 768px) {
  .consent {
    padding-block: 30px;
  }
}
.consent--visible {
  transform: translateY(0);
}

.consent-inner {
  pointer-events: auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
@media (min-width: 768px) {
  .consent-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
}
.consent-inner .consent-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 11px;
}
@media (min-width: 768px) {
  .consent-inner .consent-content {
    font-size: clamp(11px, 14 / 1170 * var(--container-width), 14px);
  }
}
.consent-inner .consent-links a {
  color: inherit;
  border-bottom: 1px solid currentColor;
}
.consent-inner .consent-buttons {
  display: grid;
  gap: 10px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  flex-shrink: 0;
}
.banner-home {
  min-height: 100svh;
  padding-block: var(--header-height);
  display: flex;
  background-color: black;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .banner-home {
    padding-block: clamp(50px, 80 / 1170 * var(--container-width), 80px);
  }
}
.banner-home .banner-home-inner {
  max-width: var(--container-wide);
  margin-inline: auto;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .banner-home .banner-home-inner {
    display: flex;
    flex-direction: column;
  }
  .banner-home .banner-home-inner::before {
    content: "";
    flex: 1;
  }
}
.banner-home .banner-content {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
  gap: 30px;
}
@media (min-width: 768px) {
  .banner-home .banner-content {
    height: auto;
    flex: 0 0 auto;
  }
}
.banner-home .banner-heading {
  font-weight: 100;
}
@media (min-width: 768px) {
  .banner-home .banner-heading {
    font-size: min(9vw, 145px);
  }
}
@media (min-width: 992px) {
  .banner-home .banner-heading {
    display: flex;
    flex-direction: column;
    gap: 0.1em;
  }
}
.banner-home .banner-heading .heading-text {
  display: block;
}
@media (min-width: 768px) {
  .banner-home .banner-heading .heading-text:nth-child(2) {
    text-align: right;
  }
}
@media (min-width: 992px) {
  .banner-home .banner-heading .heading-text .small {
    font-size: inherit;
  }
}
@media (min-width: 768px) {
  .banner-home .banner-text.mobile {
    display: none;
  }
}
.banner-home .banner-text.desktop {
  display: none;
}
@media (min-width: 768px) {
  .banner-home .banner-text.desktop {
    display: block;
    max-width: 22em;
  }
}
@media (min-width: 768px) {
  .banner-home .banner-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex: 1;
  }
}
.banner-home .banner-button {
  position: absolute;
  top: 100%;
  left: 0;
}
@media (min-width: 768px) {
  .banner-home .banner-button {
    position: unset;
    flex: 0 0 auto;
  }
}

.services-section {
  --accent: var(--copper);
  margin-block: var(--spacing-2xl);
  scroll-margin-block: var(--spacing-2xl);
  overflow: hidden;
}
@media (min-width: 768px) {
  .services-section {
    margin-block: var(--spacing-3xl);
    scroll-margin-block: var(--spacing-3xl);
  }
}
.services-section .services-section-inner {
  max-width: var(--container-l);
  margin-inline: auto;
  gap: var(--spacing-xl);
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .services-section .services-section-inner {
    gap: var(--spacing-2xl);
  }
}
.services-section .intro-block {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}
@media (min-width: 768px) {
  .services-section .intro-block {
    gap: 0;
  }
}
@media (min-width: 768px) {
  .services-section .intro-block .mobile {
    display: none;
  }
}
.services-section .intro-block .desktop {
  display: none;
}
@media (min-width: 768px) {
  .services-section .intro-block .desktop {
    display: block;
  }
}
@media (min-width: 768px) {
  .services-section .intro-block .intro-block-top {
    display: flex;
    justify-content: space-between;
  }
}
.services-section .intro-block .intro-block-bottom:not(:has(.intro-text)) {
  display: none;
}
@media (min-width: 768px) {
  .services-section .intro-block .intro-block-bottom:not(:has(.intro-text)) {
    display: block;
  }
}
@media (min-width: 768px) {
  .services-section .intro-block .intro-block-bottom {
    text-align: right;
  }
}
.services-section .intro-block .intro-heading-right {
  margin-top: -0.15em;
}
.services-section .intro-text {
  max-width: 280px;
}
@media (min-width: 768px) {
  .services-section .intro-text {
    max-width: 21em;
  }
}
.services-section .heading-text {
  line-height: 1;
}
.services-section .heading-text--bold {
  display: block;
}
@media (min-width: 992px) {
  .services-section .service-block-swiper {
    display: none;
  }
}
.services-section .swiper-slide {
  height: auto;
  width: auto;
}
.services-section .swiper-slide:not(:last-of-type) {
  padding-right: 50px;
  border-right: 1px solid var(--onyx);
}
.services-section .swiper-slide:not(:first-of-type) {
  padding-left: 50px;
}
.services-section .service-block {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 25px;
  height: 100%;
  justify-content: space-between;
  max-width: 190px;
}
.services-section .service-block-top {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.services-section .service-block-content {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.services-section .service-block-heading {
  font-size: 30px;
  font-weight: 500;
}
.services-section .service-block-text {
  font-size: 16px;
}
.services-section .service-block-button {
  --btn-text-color: var(--onyx);
  --btn-border-color: var(--onyx);
  --btn-bg-colour: transparent;
  --btn-bg-colour-hover: color-mix(in srgb, var(--onyx) 10%, transparent);
}
.services-section .service-block-items {
  display: none;
}
@media (min-width: 992px) {
  .services-section .service-block-items {
    display: flex;
    justify-content: space-between;
    width: 100%;
    gap: clamp(10px, 70 / 1170 * var(--container-width), 70px);
  }
}
.services-section .service-block-items .block-divider {
  display: block;
  background-color: var(--onyx);
  width: 1px;
}
.services-section .service-block-items .service-block {
  max-width: unset;
  height: auto;
}

.text-carousel-section {
  --accent: var(--copper);
  margin-top: var(--spacing-2xl);
  margin-bottom: var(--spacing-xl);
}
@media (min-width: 768px) {
  .text-carousel-section {
    margin-block: var(--spacing-3xl);
  }
}
.text-carousel-section .text-carousel-section-inner {
  max-width: var(--container-l);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
}
.text-carousel-section .carousel-block .carousel-swiper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.text-carousel-section .carousel-block .item-image {
  width: 100%;
  aspect-ratio: 17/15;
  max-height: 400px;
}
@media (min-width: 768px) {
  .text-carousel-section .carousel-block .item-image {
    aspect-ratio: 1260/600;
    max-height: unset;
  }
}

.swiper-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.swiper-controls .swiper-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}
.swiper-controls .swiper-button-prev, .swiper-controls .swiper-button-next {
  transition: opacity var(--td-s);
}
.swiper-controls .swiper-button-prev svg, .swiper-controls .swiper-button-next svg {
  width: 25px;
}
.swiper-controls .swiper-button-prev svg path, .swiper-controls .swiper-button-next svg path {
  stroke: currentColor;
}
.swiper-controls .swiper-button-prev {
  scale: -1 1;
}
.swiper-controls .swiper-button-lock {
  opacity: 0.5;
  pointer-events: none;
}
.swiper-controls .swiper-pagination {
  font-size: var(--text-size-s);
  padding: 0.8em 1em;
  border: 1px solid currentColor;
  line-height: 1;
  text-box: trim-both cap alphabetic;
  border-radius: var(--border-radius-rounded);
  min-width: 5.5em;
  text-align: center;
}

.intro-fields-section {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
  align-items: flex-start;
}
@media (min-width: 768px) {
  .intro-fields-section {
    text-align: center;
    align-items: center;
    gap: 30px;
  }
}
.intro-fields-section .intro-heading {
  line-height: 1;
}
@media (min-width: 768px) {
  .intro-fields-section .intro-heading {
    font-size: var(--text-size-4xl);
  }
}
.intro-fields-section .intro-heading .heading-text {
  display: block;
}
.intro-fields-section .intro-text {
  max-width: 32em;
}

.banner {
  padding-block: var(--header-height);
  padding-top: calc(var(--header-height) + 20px);
  display: flex;
  position: relative;
  overflow: hidden;
}
@media (min-width: 768px) {
  .banner {
    padding-top: calc(var(--header-height) + clamp(70px, 4vw, 150px));
    padding-bottom: clamp(70px, 9vw, 180px);
  }
}
@media (min-width: 768px) and (min-aspect-ratio: 1) {
  .banner {
    min-height: 100svh;
  }
}
.banner .banner-inner {
  display: flex;
  flex-direction: column;
  gap: 35px;
  max-width: var(--container-l);
  margin-inline: auto;
  width: 100%;
  justify-content: center;
}
@media (min-width: 768px) {
  .banner .banner-inner {
    gap: clamp(35px, 40 / 1170 * var(--container-width), 40px);
  }
}
@media (min-width: 768px) {
  .banner .banner-top {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 768px) {
  .banner .banner-heading.mobile {
    display: none;
  }
}
.banner .banner-heading.mobile .banner-mobile-bottom {
  text-align: right;
  text-box: trim-end cap alphabetic;
}
.banner .banner-heading.desktop {
  display: none;
}
@media (min-width: 768px) {
  .banner .banner-heading.desktop {
    display: block;
    line-height: 0.87;
  }
}
.banner .banner-heading.desktop.bottom-right {
  text-box: trim-both cap alphabetic;
}
.banner .banner-middle {
  width: 100%;
  aspect-ratio: 1.28;
  max-height: 400px;
}
@media (min-width: 768px) {
  .banner .banner-middle {
    max-height: unset;
    aspect-ratio: 1260/260;
  }
}
@media (min-width: 768px) {
  .banner .banner-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.banner .banner-text {
  max-width: 290px;
}
@media (min-width: 768px) {
  .banner .banner-text {
    max-width: 22em;
  }
}
@media (min-width: 768px) {
  .banner .banner-text--l {
    max-width: 27em;
  }
}

.text-flow-section {
  --section-bg-colour: var(--light-sand);
  padding-block: var(--spacing-2xl);
}
@media (min-width: 768px) {
  .text-flow-section {
    padding-block: var(--spacing-3xl);
  }
}
.text-flow-section .text-flow-section-inner {
  width: 100%;
  max-width: var(--container-l);
  margin-inline: auto;
}
.text-flow-section .flow-content {
  color: color-mix(in srgb, var(--dark-sand) 50%, transparent);
  font-weight: 300;
  font-size: 36px;
}
@media (min-width: 768px) {
  .text-flow-section .flow-content {
    line-height: 1.2;
    font-size: clamp(36px, 60 / 1170 * var(--container-width), 60px);
  }
}

.timeline-section {
  position: relative;
  padding-block: var(--spacing-2xl);
  color: var(--white);
  --section-bg-colour: var(--transparent);
}
@media (min-width: 768px) {
  .timeline-section {
    --section-bg-colour: var(--white);
  }
}
.timeline-section .moving-bg {
  display: none;
}
@media (min-width: 768px) {
  .timeline-section .moving-bg {
    display: block;
  }
}
.timeline-section .timeline-section-inner {
  position: relative;
  max-width: var(--container-l);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .timeline-section .timeline-section-inner {
    gap: clamp(40px, 100 / 1170 * var(--container-width), 100px);
  }
}
.timeline-section .timeline-heading {
  text-align: center;
}
.timeline-section .timeline-stacked {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 768px) {
  .timeline-section .timeline-stacked {
    display: none;
  }
}
.timeline-section .timeline-swiper {
  display: none;
}
@media (min-width: 768px) {
  .timeline-section .timeline-swiper {
    display: flex;
    flex-direction: column;
    gap: clamp(25px, 100 / 1170 * var(--container-width), 100px);
  }
}
.timeline-section .timeline-swiper .swiper-slide {
  width: auto;
  height: auto;
}
.timeline-section .timeline-swiper .swiper-slide:not(:last-of-type) {
  --padding-gap: clamp(25px, calc((160 / 1170) * var(--container-width)), 160px);
  padding-right: var(--padding-gap);
}
.timeline-section .timeline-swiper .swiper-slide:not(:last-of-type):after {
  content: "";
  position: absolute;
  right: calc(var(--padding-gap) / 2);
  top: 50%;
  translate: 50% -50%;
  width: clamp(25px, 66 / 1170 * var(--container-width), 66px);
  height: 1px;
  background-color: var(--white);
  opacity: 0.4;
}
.timeline-section .timeline-swiper .swiper-slide:nth-of-type(even) {
  padding-top: clamp(25px, 70 / 1170 * var(--container-width), 70px);
}
.timeline-section .timeline-swiper .timeline-item {
  flex-direction: row;
  gap: clamp(25px, 60 / 1170 * var(--container-width), 60px);
  align-items: center;
}
.timeline-section .timeline-swiper .timeline-item .timeline-image {
  aspect-ratio: 1.34;
  width: clamp(280px, 350 / 1170 * var(--container-width), 350px);
}
.timeline-section .timeline-swiper .timeline-year {
  font-size: var(--text-size-5xl);
}
.timeline-section .timeline-swiper .timeline-summary {
  max-width: 21em;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.timeline-item .timeline-image {
  width: 100%;
  aspect-ratio: 1.8;
}
.timeline-item .timeline-image:not(:has(img)) {
  background-color: var(--neutral-6);
}
.timeline-item .timeline-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.timeline-item .timeline-year {
  opacity: 0.5;
}
.timeline-item .timeline-summary {
  font-size: var(--text-size-m);
}

.service-blocks-section {
  overflow: hidden;
  margin-top: -30px;
  margin-bottom: var(--spacing-3xl);
}
@media (min-width: 768px) {
  .service-blocks-section {
    margin-top: 0;
  }
}
.service-blocks-section .service-blocks-section-inner {
  max-width: var(--container-width);
  margin-inline: auto;
  width: 100%;
}
.service-blocks-section .service-blocks {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (min-width: 992px) {
  .service-blocks-section .service-blocks {
    gap: var(--spacing-3xl);
  }
}
.service-blocks-section .service-block {
  display: flex;
  flex-direction: column;
  gap: 40px;
  scroll-margin-block-start: 50px;
}
@media (min-width: 992px) {
  .service-blocks-section .service-block {
    scroll-margin-block-start: var(--spacing-3xl);
    display: grid;
    grid-template-columns: 1fr clamp(400px, 660 / 1170 * var(--container-width), 660px);
    -moz-column-gap: clamp(40px, 80 / 1170 * var(--container-width), 80px);
         column-gap: clamp(40px, 80 / 1170 * var(--container-width), 80px);
    row-gap: clamp(30px, 50 / 1170 * var(--container-width), 50px);
    align-items: center;
  }
}
@media (min-width: 992px) {
  .service-blocks-section .service-block:nth-of-type(even) {
    grid-template-columns: clamp(400px, 660 / 1170 * var(--container-width), 660px) 1fr;
  }
  .service-blocks-section .service-block:nth-of-type(even) .service-image-block {
    grid-column: 1/span 1;
    grid-row: 1/span 2;
  }
  .service-blocks-section .service-block:nth-of-type(even) .service-intro-block {
    grid-column: 2/span 1;
    grid-row: 1/span 1;
  }
  .service-blocks-section .service-block:nth-of-type(even) .service-swiper-block {
    grid-column: 2/span 1;
    grid-row: 2/span 1;
  }
}
.service-blocks-section .service-intro-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 992px) {
  .service-blocks-section .service-intro-block {
    grid-column: 1/span 1;
    grid-row: 1/span 1;
    gap: 20px;
  }
}
.service-blocks-section .service-heading {
  font-size: 36px;
  font-weight: 500;
  text-wrap: balance;
}
@media (min-width: 992px) {
  .service-blocks-section .service-image-block {
    grid-column: 2/span 1;
    grid-row: 1/span 2;
    place-content: center;
  }
}
.service-blocks-section .service-image-block .media-wrapper {
  width: 100%;
  aspect-ratio: 2.2;
}
@media (min-width: 992px) {
  .service-blocks-section .service-image-block .media-wrapper {
    aspect-ratio: 1.55;
  }
}
.service-blocks-section .service-swiper-block {
  margin-top: -10px;
}
@media (min-width: 992px) {
  .service-blocks-section .service-swiper-block {
    margin: 0;
    grid-column: 1/span 1;
    grid-row: 2/span 1;
    min-width: 0;
  }
}
.service-blocks-section .services-swiper {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}
.service-blocks-section .services-swiper .service-slide-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.service-blocks-section .services-swiper .service-item-heading {
  font-size: 18px;
  font-weight: 500;
}
.service-blocks-section .services-swiper .service-item-summary {
  font-size: 14px;
}
@media (min-width: 992px) {
  .service-blocks-section .services-swiper .service-item-summary {
    line-height: 1.5;
  }
}

.highlights-section {
  margin-block: var(--spacing-3xl);
}
.highlights-section .highlights-section-inner {
  max-width: var(--container-l);
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .highlights-section .highlights-section-inner {
    gap: clamp(40px, 80 / 1170 * var(--container-width), 80px);
  }
}
.highlights-section .highlights-heading {
  line-height: 1;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--neutral-5);
}
@media (min-width: 768px) {
  .highlights-section .highlights-heading {
    font-size: var(--text-size-5xl);
    padding-bottom: clamp(40px, 80 / 1170 * var(--container-width), 80px);
  }
}
.highlights-section .highlights-heading .heading-text {
  display: block;
}
.highlights-section .highlights-heading .heading-text:last-child {
  text-align: right;
}
.highlights-section .highlights-bottom {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 992px) {
  .highlights-section .highlights-bottom {
    flex-direction: row-reverse;
    justify-content: space-between;
    gap: clamp(40px, 100 / 1170 * var(--container-width), 100px);
  }
}
.highlights-section .highlights-summary {
  font-size: var(--text-size-xl);
}
@media (min-width: 992px) {
  .highlights-section .highlights-summary {
    max-width: 16em;
    flex-shrink: 0;
  }
}
.highlights-section .highlights-items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  .highlights-section .highlights-items {
    flex-direction: row;
    gap: clamp(40px, 50 / 1170 * var(--container-width), 50px);
  }
}
.highlights-section .highlight-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.highlights-section .item-number {
  font-weight: 500;
  line-height: 1;
}
@media (min-width: 768px) {
  .highlights-section .item-number {
    font-size: var(--text-size-4xl);
  }
}
.highlights-section .item-summary {
  max-width: 16em;
}
@media (min-width: 768px) {
  .highlights-section .item-summary {
    font-size: var(--text-size-s);
    line-height: 1.4;
  }
}

.contact-page-wrapper {
  position: relative;
  color: var(--white);
  padding-block: 1px;
}

.contact-form-section {
  position: relative;
  padding-top: calc(var(--header-height) + 20px);
  margin-bottom: var(--spacing-2xl);
  display: flex;
  overflow: hidden;
}
@media (min-width: 768px) {
  .contact-form-section {
    padding-top: calc(var(--header-height) + var(--spacing-2xl));
    margin-bottom: var(--spacing-3xl);
  }
}
.contact-form-section .contact-form-section-inner {
  max-width: var(--container-l);
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 768px) {
  .contact-form-section .contact-form-section-inner {
    gap: clamp(25px, 100 / 1170 * var(--container-width), 100px);
    justify-content: center;
  }
}
@media (min-width: 992px) {
  .contact-form-section .form-intro {
    display: flex;
    justify-content: space-between;
  }
}
.contact-form-section .form-intro .intro-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-form-section .form-heading {
  font-size: var(--text-size-5xl);
}
.contact-form-section .form-intro-text {
  max-width: 18em;
}
@media (min-width: 768px) {
  .contact-form-section .form-intro-text {
    max-width: 20em;
  }
}

.contact-form-wrapper .alternative-contact {
  width: 100%;
  margin-top: var(--spacing-m);
  max-width: 20em;
  margin-bottom: var(--spacing-l);
}
@media (min-width: 992px) {
  .contact-form-wrapper .alternative-contact {
    margin-bottom: unset;
    width: 30%;
    margin-top: unset;
    max-width: unset;
  }
}
@media (min-width: 992px) {
  .contact-form-wrapper .alternative-contact p {
    max-width: 257px;
  }
}
.contact-form-wrapper .alternative-contact a {
  color: var(--white);
  text-decoration: underline;
}
.contact-form-wrapper .alternative-contact .tel-email {
  margin-top: var(--spacing-l);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-form-wrapper {
  width: 100%;
  --fields-gap: 10px;
}
@media (min-width: 768px) {
  .contact-form-wrapper {
    --fields-gap: clamp(15px, calc((20 / 1170) * var(--container-width)), 20px);
  }
}
@media (min-width: 992px) {
  .contact-form-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
  }
}
.contact-form-wrapper .nf-form-cont {
  width: 100%;
}
@media (min-width: 992px) {
  .contact-form-wrapper .nf-form-cont {
    max-width: clamp(600px, 800 / 1170 * var(--container-width), 800px);
  }
}
.contact-form-wrapper .nf-form-fields-required {
  display: none;
}
.contact-form-wrapper .nf-cell {
  padding: 0;
  width: auto !important;
}
.contact-form-wrapper .nf-field-container {
  margin: 0;
}
.contact-form-wrapper .nf-field-label {
  display: none;
}
.contact-form-wrapper .nf-after-field {
  display: none;
}
.contact-form-wrapper .nf-after-form-content {
  display: none;
}
.contact-form-wrapper nf-cells {
  display: flex;
  flex-direction: column;
  gap: var(--fields-gap);
}
@media (min-width: 768px) {
  .contact-form-wrapper nf-cells {
    flex-direction: row;
    width: 100%;
    gap: clamp(15px, 25 / 1170 * var(--container-width), 25px);
  }
}
@media (min-width: 768px) {
  .contact-form-wrapper nf-cells .nf-cell {
    flex: 1;
  }
}
.contact-form-wrapper nf-cells .nf-cell:nth-of-type(1) nf-fields {
  display: grid;
  gap: var(--fields-gap);
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 768px) {
  .contact-form-wrapper nf-cells .nf-cell:nth-of-type(1) nf-fields {
    grid-template-columns: 1fr;
  }
}
.contact-form-wrapper nf-cells .nf-cell:nth-of-type(1) nf-fields :nth-of-type(1),
.contact-form-wrapper nf-cells .nf-cell:nth-of-type(1) nf-fields :nth-of-type(2) {
  grid-column: 1/-1;
}
.contact-form-wrapper nf-cells .nf-cell:nth-of-type(2) nf-fields {
  display: flex;
  flex-direction: column;
  gap: var(--fields-gap);
}
@media (min-width: 768px) {
  .contact-form-wrapper nf-cells .nf-cell:nth-of-type(2) nf-fields {
    height: 100%;
    gap: 10px;
  }
}
@media (min-width: 768px) {
  .contact-form-wrapper nf-cells .nf-cell:nth-of-type(2) nf-fields :nth-of-type(1) {
    flex: 1;
  }
}
.contact-form-wrapper .nf-cell {
  padding: 0 !important;
}
.contact-form-wrapper input[type=text],
.contact-form-wrapper input[type=email],
.contact-form-wrapper input[type=tel],
.contact-form-wrapper textarea {
  padding: 10px 15px;
  padding-bottom: 8px;
  font-size: inherit;
  color: inherit;
  line-height: inherit;
  background-color: transparent;
  border: 1px solid var(--white);
  font-family: inherit;
  border-radius: var(--border-radius-rounded);
}
@media (min-width: 768px) {
  .contact-form-wrapper input[type=text],
  .contact-form-wrapper input[type=email],
  .contact-form-wrapper input[type=tel],
  .contact-form-wrapper textarea {
    padding-inline: clamp(15px, 20 / 1170 * var(--container-width), 20px);
  }
}
.contact-form-wrapper input[type=text]::-moz-placeholder, .contact-form-wrapper input[type=email]::-moz-placeholder, .contact-form-wrapper input[type=tel]::-moz-placeholder, .contact-form-wrapper textarea::-moz-placeholder {
  color: var(--white);
}
.contact-form-wrapper input[type=text]::placeholder,
.contact-form-wrapper input[type=email]::placeholder,
.contact-form-wrapper input[type=tel]::placeholder,
.contact-form-wrapper textarea::placeholder {
  color: var(--white);
}
.contact-form-wrapper input[type=text][aria-invalid=true],
.contact-form-wrapper input[type=email][aria-invalid=true],
.contact-form-wrapper input[type=tel][aria-invalid=true],
.contact-form-wrapper textarea[aria-invalid=true] {
  border-color: var(--copper);
}
@media (min-width: 768px) {
  .contact-form-wrapper .textarea-container {
    height: 100%;
  }
}
@media (min-width: 768px) {
  .contact-form-wrapper .textarea-container .nf-field {
    height: 100%;
  }
}
@media (min-width: 768px) {
  .contact-form-wrapper .textarea-container .textarea-wrap {
    height: 100%;
  }
}
.contact-form-wrapper textarea {
  resize: none;
  height: 100px;
  display: block;
  border-radius: var(--border-radius-m);
  line-height: 1.4;
}
@media (min-width: 768px) {
  .contact-form-wrapper textarea {
    height: 100% !important;
  }
}
.contact-form-wrapper .checkbox-container .checkbox-wrap {
  display: flex;
  gap: 10px;
}
.contact-form-wrapper .checkbox-container .nf-field-element {
  width: auto !important;
}
.contact-form-wrapper .checkbox-container .nf-field-label {
  display: block;
  padding: 0;
  line-height: 1.1;
}
.contact-form-wrapper .checkbox-container .ninja-forms-req-symbol {
  color: var(--copper);
}
.contact-form-wrapper .checkbox-container label {
  font-weight: inherit;
  font-size: var(--text-size-s);
  color: inherit;
}
.contact-form-wrapper .checkbox-container label a {
  color: inherit;
  text-decoration: underline;
  display: inline-block;
}
.contact-form-wrapper .checkbox-container input[type=checkbox] {
  accent-color: var(--light-sand);
}
.contact-form-wrapper input[type=submit] {
  font-family: inherit;
  border: none;
  font-size: inherit;
  line-height: inherit;
  background-color: var(--copper);
  color: var(--white);
  border-radius: var(--border-radius-rounded);
  padding: 10px 15px;
  padding-bottom: 8px;
  border: 1px solid var(--copper);
  width: 100% !important;
  cursor: pointer !important;
  transition: background-color var(--td-s), border-color var(--td-s);
}
@media (min-width: 768px) {
  .contact-form-wrapper input[type=submit] {
    margin-top: 5px;
  }
}
.contact-form-wrapper input[type=submit]:hover {
  background-color: color-mix(in srgb, var(--copper) 90%, var(--black));
  border-color: color-mix(in srgb, var(--copper) 90%, var(--black));
}

.contact-map-section {
  margin-block: var(--spacing-xl);
}
@media (min-width: 768px) {
  .contact-map-section {
    margin-bottom: var(--spacing-3xl);
  }
}
.contact-map-section .contact-map-section-inner {
  max-width: var(--container-l);
  margin-inline: auto;
  width: 100%;
}
.contact-map-section .contact-map-wrapper {
  position: relative;
}
.contact-map-section .contact-map {
  width: 100%;
  height: calc(100svh - var(--header-height) - 40px);
}
@media (min-width: 768px) {
  .contact-map-section .contact-map {
    aspect-ratio: 2.1;
    height: auto;
    min-height: 400px;
  }
}
.contact-map-section .map-box {
  position: absolute;
  left: 50%;
  bottom: 20px;
  translate: -50% 0;
  background-color: color-mix(in srgb, var(--copper) 80%, transparent);
  border-radius: 15px;
  padding: 15px;
  display: flex;
  gap: 25px;
  backdrop-filter: blur(5px);
}
@media (min-width: 768px) {
  .contact-map-section .map-box {
    left: unset;
    right: clamp(20px, 25 / 1170 * var(--container-width), 25px);
    bottom: clamp(20px, 25 / 1170 * var(--container-width), 25px);
    padding: clamp(15px, 20 / 1170 * var(--container-width), 20px);
    translate: unset;
  }
}
.contact-map-section .image-block {
  width: 120px;
  aspect-ratio: 1;
}
@media (min-width: 768px) {
  .contact-map-section .image-block {
    aspect-ratio: 1.4;
    width: clamp(120px, 160 / 1170 * var(--container-width), 160px);
  }
}
.contact-map-section .info-block {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  align-self: center;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .contact-map-section .info-block {
    gap: clamp(10px, 20 / 1170 * var(--container-width), 20px);
  }
}
.contact-map-section .block-top {
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-start;
}
.contact-map-section .block-heading {
  font-size: var(--text-size-s);
  opacity: 0.6;
}
.contact-map-section .block-address {
  font-size: var(--text-size-m);
  line-height: 1;
}
.contact-map-section .block-button {
  font-size: 14px;
  min-height: 30px;
}

.generic-page {
  padding-top: calc(var(--header-height) + var(--spacing-xl));
  padding-bottom: var(--spacing-2xl);
}
.generic-page .generic-page-inner {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2xl);
}
@media (min-width: 768px) {
  .generic-page .generic-heading {
    font-size: var(--text-size-5xl);
  }
}
@media (min-width: 992px) {
  .generic-page .page-main {
    max-width: 900px;
  }
}
.generic-page .page-main > *:not(:first-child) {
  margin-top: 0.8em;
}
.generic-page .page-main h2,
.generic-page .page-main h3,
.generic-page .page-main h4 {
  margin-bottom: 0.6em;
  font-weight: 500;
}
.generic-page .page-main h2:not(:first-child),
.generic-page .page-main h3:not(:first-child),
.generic-page .page-main h4:not(:first-child) {
  margin-top: 1.6em;
}
.generic-page .page-main h2 {
  font-size: 25px;
}
@media (min-width: 768px) {
  .generic-page .page-main h2 {
    font-size: clamp(25px, 30 / 1170 * var(--container-width), 30px);
  }
}
.generic-page .page-main h3 {
  font-size: 20px;
}
@media (min-width: 768px) {
  .generic-page .page-main h3 {
    font-size: clamp(20px, 25 / 1170 * var(--container-width), 25px);
  }
}
.generic-page .page-main h4 {
  font-size: var(--text-size-xl);
}
.generic-page .page-main ul li {
  padding-left: 1em;
}
.generic-page .page-main ul li:not(:first-child) {
  margin-top: 0.3em;
}
.generic-page .page-main ul li::before {
  content: "•";
  margin-left: -1em;
  margin-right: 0.5em;
}
.generic-page .page-main a {
  color: var(--copper);
}
.generic-page .page-main strong {
  font-weight: 500;
}
.generic-page .page-main table {
  border: 1px solid var(--black);
  border-collapse: collapse;
  width: 100%;
}
.generic-page .page-main table th,
.generic-page .page-main table td {
  border: 1px solid var(--black);
  padding: 10px;
  text-align: left;
  width: 50%;
}
.generic-page .page-main table th {
  font-weight: 500;
}

.text-section {
  --accent: var(--copper);
  padding-block: var(--spacing-2xl);
}
@media (min-width: 768px) {
  .text-section {
    padding-block: var(--spacing-3xl);
  }
}
.text-section .text-section-inner {
  max-width: var(--container-width);
  margin-inline: auto;
  width: 100%;
}

body.error404 .text-section {
  padding-top: calc(var(--header-height) + 20px);
}
@media (min-width: 768px) {
  body.error404 .text-section {
    padding-top: calc(var(--header-height) + clamp(70px, 4vw, 150px));
  }
}
