/* Cachebuster: cb1 */
* {
  box-sizing: border-box;
}

body {
  background-color: #efeded;
  font-family: "Roboto", sans-serif;
  margin: 0;
  padding: 0;
  overflow-x: hidden !important;
  position: relative;
  z-index: -2;
}

.page-wrapper {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #efeded;
  border-radius: 0 0 50px 50px;
  margin-bottom: -6rem;
}

@font-face {
  font-family: "PPNeueMontreal";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/PPNeueMontreal/PPNeueMontreal-Regular.woff2")
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 300;
  src: url("/assets/fonts/Roboto/roboto-v50-latin-regular.woff2")
    format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/Roboto/roboto-v50-latin-300.woff2") format("woff2");
  font-display: swap;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: auto;
}
.lenis.lenis-stopped {
  overflow: clip;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}
.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}
.lenis.lenis-stopped {
  overflow: hidden;
}
.lenis.lenis-smooth iframe {
  pointer-events: none;
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.8rem 2.6rem;
  z-index: 100;
  transition:
    top 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    background 0.3s ease-in-out;
}

.header-desktop.scrolled {
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.header-desktop nav {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  width: 380px;
}

.desktop-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.dot {
  display: inline-block;
  flex: 0 0 auto;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #81b435;
}

.desktop-links a {
  color: #26221c;
  font-size: 1.2rem;
  font-weight: 200;
  text-decoration: none;
}

.desktop-links .current-page {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.desktop-links .current-page::before {
  content: "";
  display: inline-block;
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #81b435;
}

.lang-link {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-header {
  display: none;
  width: 100%;
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  padding: 15px;
  background: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.logo-mobile {
  width: 200px;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line-menu {
  background-color: #efeded;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #efeded;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #efeded;
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  height: 100%;
  height: 100dvh;
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 100;
}

.menu-mobile-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

.menu-close {
  display: block;
  height: 20px;
  position: relative;
  width: 20px;
  padding: 0;
  border: 0;
  background: transparent;
  appearance: none;
  cursor: pointer;
}

.menu-close img {
  display: block;
  width: 100%;
  height: 100%;
}

.menu-close:focus:not(:focus-visible) {
  outline: none;
}

.menu-close:focus-visible {
  outline: 2px solid #81b435;
  outline-offset: 4px;
}

.menu-closing {
  position: absolute;
  right: 1.4rem;
  top: 1.8rem;
}

.menu-links {
  display: flex;
  flex-direction: column;
  top: 20%;
  left: 1.4rem;
  padding: 30% 2rem 2rem 2rem;
}

.menu-mobile-bottom {
  padding-bottom: 1rem;
}

.menu-links a:not(.main-cta) {
  text-decoration: none;
  padding: 0.7rem 0;
  color: #26221c;
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 1.6rem;
}
.menu-links a:not(.main-cta) + .main-cta {
  margin-top: 1.05rem;
}

.menu-divider {
  display: block;
  margin: 2rem 2rem 0;
  width: calc(100% - 4rem);
  height: 2px;
}

.menu-divider line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.language-switch {
  display: flex;
  color: #26221c;
  font-weight: 200;
  font-size: 1.3rem;
  line-height: 2rem;
  padding: 0.8rem 0 0 1.5rem;
}

.language-switch a {
  text-decoration: none;
  color: #26221c;
  margin: 0 0.5rem;
}

.main-cta-shadow {
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
}

.main-cta {
  display: inline-flex;
  align-items: center;
  width: max-content;
  gap: 0.4rem;
  padding: 0.27rem 0.27rem 0.27rem 1.1rem;
  border-radius: 1.5625rem 0 1.5625rem 1.5625rem;
  background: #143f5a;
  color: #e9eef1 !important;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1);
  color: #e6e6e6;
  font-size: 1.1rem;
  font-weight: 200;
  text-decoration: none;
}

.main-cta:hover {
  transform: translateY(-0.12rem) scale(1.025);
  box-shadow: 0 0.7rem 1.4rem rgba(20, 63, 90, 0.18);
}

.main-cta:active {
  transform: translateY(0) scale(0.985);
}

.cta-icon {
  position: relative;
  width: 2.15rem;
  height: 2.15rem;
  overflow: hidden;
  border-radius: 1.5625rem 0 1.5625rem 1.5625rem;
  background: #eef0f1;
  flex: 0 0 auto;
}

.arrow {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0.72rem;
  box-sizing: border-box;
  transition: transform 0.45s cubic-bezier(0.65, 0, 0.35, 1);
}

.arrow-1 {
  transform: translate(0, 0);
}

.arrow-2 {
  transform: translate(-120%, 120%);
}

.main-cta:hover .arrow-1 {
  transform: translate(120%, -120%);
}

.main-cta:hover .arrow-2 {
  transform: translate(0, 0);
}

html[lang="en"] .contact-section {
  padding: 12rem 8rem 8rem 8rem;
  color: #26221c;
}

html[lang="en"] .contact-intro {
  max-width: 82rem;
  margin: 0 0 4rem 0;
}

html[lang="en"] .contact-intro h2 {
  max-width: 58rem;
  color: #26221c;
  font-family: "PPNeueMontreal", sans-serif;
  font-weight: 400;
  font-size: 2.3rem;
  line-height: 1.05;
  margin: 0 0 1.2rem 0;
}

html[lang="en"] .contact-intro p {
  max-width: 82rem;
  color: #26221c;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.35;
  margin: 0;
}

html[lang="en"] .contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1fr);
  gap: 8rem;
  align-items: start;
}

html[lang="en"] .contact-info {
  min-width: 0;
}

html[lang="en"] .contact-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 6rem;
  row-gap: 3.2rem;
}

html[lang="en"] .contact-info-item h3 {
  color: #26221c;
  font-family: "PPNeueMontreal", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 0 0 0.65rem 0;
}

html[lang="en"] .contact-info-item p,
html[lang="en"] .contact-info-item a {
  color: #26221c;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.28;
  margin: 0;
  text-decoration: none;
}

html[lang="en"] .contact-info-item a[href^="tel:"],
html[lang="en"] .contact-info-item a[href^="mailto:"] {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  padding-bottom: 0.12rem;
}

html[lang="en"] .contact-info-item a[href^="tel:"]::before,
html[lang="en"] .contact-info-item a[href^="mailto:"]::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.05rem;
  width: 100%;
  height: 2px;
  background: #81b435;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.38s cubic-bezier(0.65, 0, 0.35, 1);
}

html[lang="en"] .contact-info-item a[href^="tel:"]:hover::before,
html[lang="en"] .contact-info-item a[href^="mailto:"]:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

html[lang="en"] .contact-info-item a[href^="tel:"]:focus-visible,
html[lang="en"] .contact-info-item a[href^="mailto:"]:focus-visible,
html[lang="en"] .contact-route-link:focus-visible {
  outline: 2px solid #81b435;
  outline-offset: 4px;
}

html[lang="en"] .contact-route-link {
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  line-height: 1.28;
}

html[lang="en"] .contact-route-link::before {
  display: none;
}

html[lang="en"] .contact-route-link:hover {
  text-decoration: none;
}

html[lang="en"] .contact-socials {
  grid-column: 1 / -1;
}

html[lang="en"] .contact-social-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

html[lang="en"] .contact-social-links a {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(129, 180, 53, 0.14);
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

html[lang="en"] .map-wrapper {
  width: 100%;
  height: 400px;
  position: relative;
  margin-top: 2rem;
}

html[lang="en"] #map {
  width: 100%;
  height: 100%;
}

.contact-form {
  min-width: 0;
}

.contact-form h3 {
  color: #26221c;
  font-family: "PPNeueMontreal", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 0 0 1.15rem 0;
}

.contact-form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.contact-form-field {
  position: relative;
  margin-bottom: 2rem;
}

.contact-form-field label {
  display: block;
  color: rgba(38, 34, 28, 0.46);
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1;
  margin-bottom: 0.65rem;
}

.contact-form-field input,
.contact-form-field textarea {
  width: 100%;
  display: block;
  border: 0;
  border-bottom: 1px solid rgba(38, 34, 28, 0.72);
  border-radius: 0;
  background: transparent;
  color: #26221c;
  font: inherit;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.3;
  padding: 0.15rem 0 0.5rem 0;
  outline: none;
  resize: vertical;
}

.contact-form-field textarea {
  min-height: 9.5rem;
  resize: vertical;
}

.contact-form-field input:focus,
.contact-form-field textarea:focus {
  border-bottom-color: #143b55;
}

.contact-form-field:focus-within label {
  color: #143b55;
}

.contact-subject-group {
  margin: 0 0 2rem 0;
  padding: 0;
  border: 0;
}

.contact-subject-group legend {
  display: block;
  color: #26221c;
  font-family: "PPNeueMontreal", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 0 0 1rem 0;
  padding: 0;
}

.contact-subject-options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.contact-subject-options input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.contact-subject-options label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2rem;
  padding: 0.45rem 1rem;
  border: 1px solid #143b55;
  border-radius: 999px;
  background: #143b55;
  color: #e6e6e6;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.contact-subject-options input:checked + label {
  background: #81b435;
  border-color: #81b435;
  color: #e6e6e6;
}

.contact-subject-options input:focus-visible + label {
  outline: 2px solid #81b435;
  outline-offset: 3px;
}

.contact-required-note {
  color: rgba(38, 34, 28, 0.48);
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.3;
  margin: -0.75rem 0 1.25rem 0;
}

.contact-privacy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
  margin: 0 0 2rem 0;
  color: #26221c;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.32;
  cursor: pointer;
}

.contact-privacy input {
  width: 1rem;
  height: 1rem;
  margin: 0.15rem 0 0 0;
  accent-color: #81b435;
}

.contact-privacy a {
  color: #81b435;
  text-decoration: none;
}

.contact-privacy a:hover {
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.contact-submit {
  font-family: "Roboto", sans-serif !important;
  font-weight: 200 !important;
  border: none !important;
  cursor: pointer;
}

.contact-section {
  position: relative;
  padding: 9rem 8rem 8rem 8rem;
  color: #26221c;
}

.contact-page-intro {
  max-width: 72rem;
  margin: 0 0 2rem 0;
}

.contact-page-intro h1 {
  color: #26221c;
  font-family: "PPNeueMontreal", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.05;
  margin: 0 0 1rem 0;
}

.contact-page-intro p {
  max-width: 58rem;
  color: #26221c;
  font-size: 1.15rem;
  font-weight: 200;
  line-height: 1.36;
  margin: 0;
}

.contact-locator {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(28rem, 0.88fr);
  gap: 1.75rem;
  align-items: stretch;
  min-height: 38rem;
}

.map-wrapper.contact-map-panel {
  width: 100%;
  height: auto;
  min-height: 38rem;
  position: relative;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(38, 34, 28, 0.1);
  border-radius: 8px;
  background: #d8d5cc;
  box-shadow: 0 26px 60px rgba(38, 34, 28, 0.1);
}

.map-wrapper.contact-map-panel #map {
  width: 100%;
  height: 100%;
  min-height: inherit;
}

#map-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background:
    linear-gradient(rgba(15, 32, 43, 0.68), rgba(15, 32, 43, 0.72)),
    url("/assets/media/map-overlay.webp") center / cover no-repeat;
  color: #fff6ec;
  text-align: center;
}

#map-overlay p {
  position: relative;
  z-index: 1;
  max-width: 42rem;
  padding: 0;
  margin: 0 0 1.3rem 0;
  font-size: 1.1rem;
  font-weight: 200;
  line-height: 1.35;
}

#map-overlay a {
  color: #fff6ec;
  font-size: inherit;
  font-weight: inherit;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

#accept-map {
  position: relative;
  z-index: 1;
  width: auto;
  height: auto;
  min-width: 9rem;
  min-height: 2.85rem;
  padding: 0.75rem 1.35rem;
  border: 0;
  border-radius: 4px;
  background-color: #81b435;
  color: #fff6ec;
  font-family: "Roboto", sans-serif !important;
  font-size: 1rem;
  font-weight: 200;
  margin-top: 0;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

#accept-map:hover,
#accept-map:focus-visible {
  background-color: #75a32f;
  transform: translateY(-1px);
}

#accept-map:focus-visible {
  outline: 2px solid #81b435;
  outline-offset: 4px;
}

.contact-location-panel {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
  border: 1px solid rgba(38, 34, 28, 0.1);
  border-radius: 8px;
  background: #f7f5ee;
  box-shadow: 0 26px 60px rgba(38, 34, 28, 0.08);
}

.contact-brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 0.18em;
  white-space: nowrap;
  vertical-align: -0.12em;
}

.contact-brand-icon {
  display: block;
  flex: 0 0 auto;
  width: auto;
  height: 0.9em;
}

.contact-brand-word {
  display: inline-flex;
  align-items: baseline;
}

.contact-brand-word-blue {
  color: #143b55;
}

.contact-brand-word-green {
  color: #76a917;
}

.contact-location-list {
  display: grid;
  gap: 0.75rem;
  padding-top: 0;
}

.contact-location-card {
  display: flex;
  flex-direction: column;
  gap: 0.58rem;
  padding: 0.68rem;
  border: 1px solid rgba(38, 34, 28, 0.08);
  border-radius: 8px;
  background: #ebe7dc;
}

.contact-location-card h3 {
  color: #26221c;
  font-family: "PPNeueMontreal", sans-serif;
  font-size: 1.82rem;
  font-weight: 400;
  line-height: 1.08;
  margin: 0 0 0.45rem 0;
}

.contact-location-details {
  display: grid;
  gap: 0.56rem;
  margin: 0;
}

.contact-location-details div {
  display: grid;
  grid-template-columns: 2.15rem minmax(0, 1fr);
  gap: 0.82rem;
  align-items: start;
}

.contact-location-details dt {
  position: relative;
  width: 2.15rem;
  height: 2.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.contact-location-details dt img {
  width: 1.05rem;
  height: 1.05rem;
  display: block;
}

.contact-detail-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip-path: inset(50%);
  white-space: nowrap;
}

.contact-location-details dd {
  min-width: 0;
  margin: 0;
  color: #26221c;
  font-size: 1.1rem;
  font-weight: 200;
  line-height: 1.28;
}

.contact-location-details a {
  color: inherit;
  text-decoration: none;
}

.contact-location-details a:hover {
  color: #143b55;
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.contact-form-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin-top: 0.15rem;
  padding: 0.8rem;
  border: 1px solid rgba(38, 34, 28, 0.34);
  border-radius: 6px;
  background: transparent;
  color: #26221c;
  font-family: "Roboto", sans-serif;
  font-size: 0.98rem;
  font-weight: 200;
  line-height: 1;
  text-align: left;
  text-decoration: none;
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}

.contact-form-link:hover,
.contact-form-link:focus-visible {
  border-color: #26221c;
  background: rgba(38, 34, 28, 0.06);
  color: #26221c;
}

.contact-form-link:focus-visible,
.contact-location-details a:focus-visible {
  outline: 2px solid #81b435;
  outline-offset: 3px;
}

.contact-modal[hidden] {
  display: none;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  display: grid;
  place-items: center;
  padding: 2rem;
}

.contact-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(20, 59, 85, 0.58);
  backdrop-filter: blur(4px);
}

.contact-modal-dialog {
  position: relative;
  z-index: 1;
  width: calc(100vw - 4rem);
  max-width: 58rem;
  max-height: calc(100svh - 4rem);
  overflow: auto;
  padding: 2.25rem;
  border: 1px solid rgba(38, 34, 28, 0.1);
  border-radius: 8px;
  background: #efeded;
  box-shadow: 0 36px 110px rgba(20, 59, 85, 0.32);
  outline: none;
}

.contact-modal-close {
  position: absolute;
  top: 1.1rem;
  right: 1.1rem;
  width: 2.65rem;
  height: 2.65rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(38, 34, 28, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.46);
  cursor: pointer;
  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.contact-modal-close img {
  width: 1rem;
  height: 1rem;
  display: block;
}

.contact-modal-close:hover,
.contact-modal-close:focus-visible {
  background: #ffffff;
  transform: rotate(90deg);
}

.contact-modal-close:focus-visible {
  outline: 2px solid #81b435;
  outline-offset: 3px;
}

body.contact-modal-is-open {
  overflow: hidden;
}

.contact-modal .contact-form {
  padding-right: 0.2rem;
}

.contact-modal .contact-form h3 {
  padding-right: 3.5rem;
  margin-bottom: 1.5rem;
  font-size: 1.9rem;
}

.contact-modal .contact-subject-group legend {
  font-size: 1.7rem;
}

@media only screen and (max-width: 1180px) {
  .contact-section {
    padding: 8.5rem 5rem 7rem 5rem;
  }

  .contact-page-intro {
    margin-bottom: 1.75rem;
  }

  .contact-page-intro h1 {
    font-size: 2.65rem;
  }

  .contact-locator {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .map-wrapper.contact-map-panel {
    min-height: 34.5rem;
  }

  .contact-location-panel {
    padding: 1.2rem;
  }

  .contact-location-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .contact-section {
    padding: 7.5rem 1.35rem 5rem 1.35rem;
  }

  .contact-page-intro {
    margin-bottom: 1.25rem;
  }

  .contact-page-intro h1 {
    font-size: 2.15rem;
    line-height: 1.08;
    margin-bottom: 0.8rem;
  }

  .contact-page-intro p {
    font-size: 1rem;
    line-height: 1.34;
  }

  .contact-locator {
    gap: 1rem;
  }

  .map-wrapper.contact-map-panel {
    order: 2;
    min-height: 26rem;
    border-radius: 6px;
  }

  .contact-location-panel {
    order: 1;
    padding: 0.9rem;
    border-radius: 6px;
  }

  .contact-location-list {
    grid-template-columns: 1fr;
    gap: 0.7rem;
    padding-top: 0.75rem;
  }

  .contact-location-card {
    gap: 0.58rem;
    padding: 0.62rem;
    border-radius: 6px;
  }

  .contact-location-card h3 {
    font-size: 1.78rem;
  }

  .contact-location-details div {
    grid-template-columns: 2.15rem minmax(0, 1fr);
    gap: 0.82rem;
  }

  .contact-location-details dt {
    width: 2.15rem;
    height: 2.15rem;
  }

  .contact-location-details dt img {
    width: 1.05rem;
    height: 1.05rem;
  }

  .contact-location-details dd {
    font-size: 1.08rem;
  }

  .contact-form-link {
    padding: 0.8rem;
    font-size: 0.98rem;
  }

  #map-overlay {
    padding: 1.25rem;
  }

  #map-overlay p {
    font-size: 1rem;
    line-height: 1.32;
  }

  .contact-modal {
    padding: 1rem;
  }

  .contact-modal-dialog {
    width: calc(100vw - 2rem);
    max-height: calc(100svh - 2rem);
    padding: 1.25rem;
    border-radius: 6px;
  }

  .contact-modal-close {
    top: 0.75rem;
    right: 0.75rem;
    width: 2.35rem;
    height: 2.35rem;
  }

  .contact-modal .contact-form {
    padding-right: 0;
  }

  .contact-modal .contact-form h3 {
    padding-right: 3rem;
    margin-bottom: 1.25rem;
    font-size: 1.65rem;
  }

  .contact-form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .contact-form-field {
    margin-bottom: 1.4rem;
  }

  .contact-form-field label,
  .contact-form-field input,
  .contact-form-field textarea {
    font-size: 1rem;
  }

  .contact-form-field textarea {
    min-height: 8.5rem;
  }

  .contact-subject-group {
    margin-bottom: 1.4rem;
  }

  .contact-modal .contact-subject-group legend {
    font-size: 1.35rem;
    line-height: 1.15;
  }

  .contact-subject-options {
    gap: 0.5rem;
  }

  .contact-subject-options label {
    min-height: 2rem;
    padding: 0.48rem 0.78rem;
    font-size: 0.92rem;
    line-height: 1.05;
  }

  .contact-required-note,
  .contact-privacy {
    font-size: 0.92rem;
  }
}

@media (max-width: 420px) {
  .contact-section {
    padding-right: 1rem;
    padding-left: 1rem;
  }

  .contact-page-intro h1 {
    font-size: 1.95rem;
  }

  .map-wrapper.contact-map-panel {
    min-height: 24rem;
  }

  .contact-location-panel {
    padding: 1rem;
  }

  .contact-modal-dialog {
    padding: 1rem;
  }
}

@media (hover: hover) and (pointer: fine) {
  .contact-subject-options label:hover {
    transform: translateY(-0.08rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .contact-subject-options label {
    transition: none;
  }
}

footer.site-footer {
  position: sticky;
  right: 0;
  bottom: 0;
  left: 0;
  top: auto;
  z-index: -1;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  color: #e6e6e6;
  background: #143b55;
  isolation: isolate;
}

.footer-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.footer-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.site-footer-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(
      180deg,
      rgba(20, 59, 85, 0.52) 0%,
      rgba(0, 0, 0, 0.42) 46%,
      rgba(0, 0, 0, 0.72) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.4) 0%,
      rgba(0, 0, 0, 0.1) 50%,
      rgba(0, 0, 0, 0.36) 100%
    );
}

.site-footer-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  padding: 8rem 8rem 1.4rem 8rem;
}

.site-footer-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.site-footer-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.site-footer-logo img {
  width: 17rem;
  height: auto;
  display: block;
}

.site-footer-top h2 {
  max-width: 38rem;
  color: #e6e6e6;
  font-family: "PPNeueMontreal", sans-serif;
  font-weight: 400;
  font-size: 2.3rem;
  line-height: 1.05;
  margin: 0 0 1.2rem 0;
}

.site-footer-cta {
  width: fit-content;
}

.site-footer-nav {
  width: min(82rem, calc(100% - 8rem));
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr 0.9fr;
  gap: 7rem;
  align-items: start;
  margin: 6.5rem auto 5.5rem auto;
}

.site-footer-column h3 {
  color: #e6e6e6;
  font-family: "PPNeueMontreal", sans-serif;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 0 0 0.9rem 0;
}

.site-footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer-column li {
  margin: 0 0 0.45rem 0;
}

.site-footer-column a {
  position: relative;
  display: inline-block;
  width: fit-content;
  max-width: 100%;
  color: #e6e6e6;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.25;
  text-decoration: none;
  padding-bottom: 0.08rem;
}

.site-footer-column a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.08rem;
  width: 100%;
  height: 1px;
  background: #e6e6e6;
  transform: scaleX(0);
  transform-origin: right center;
  transition: transform 0.38s cubic-bezier(0.65, 0, 0.35, 1);
}

.site-footer-column a:hover::before {
  transform: scaleX(1);
  transform-origin: left center;
}

.site-footer-column a:focus-visible {
  outline: 2px solid #81b435;
  outline-offset: 4px;
}

.site-footer-social-links {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.site-footer-social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.site-footer-social-links a::before {
  display: none;
}

.site-footer-social-links img {
  display: block;
}

.footer-bottom {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  padding: 1.2rem 0 0 0;
}

.footer-bottom::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(230, 230, 230, 0) 0%,
    rgba(230, 230, 230, 0.42) 10%,
    rgba(230, 230, 230, 0.42) 90%,
    rgba(230, 230, 230, 0) 100%
  );
}

.footer-bottom p {
  color: #e6e6e6;
  font-size: 0.9rem;
  font-weight: 100;
  margin: 0;
}

.credits {
  color: #e6e6e6;
  font-size: 0.9rem;
  font-weight: 100;
  text-decoration: none;
  transition: color 0.25s ease;
}

.credits:hover {
  color: #81b435;
}

@media (hover: hover) and (pointer: fine) {
  .site-footer-social-links a:hover {
    transform: translateY(-0.12rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .site-footer-column a::before,
  .site-footer-social-links a,
  .credits {
    transition: none;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  .site-footer-inner {
    padding-left: 5rem;
    padding-right: 5rem;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1380px) {
  .header-desktop {
    padding: 1.4rem 2rem;
  }

  .nav-logo img {
    width: 19.875rem;
  }

  .desktop-links {
    gap: 1rem;
  }

  .desktop-links a {
    font-size: 1rem;
  }

  .site-footer-inner {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }

  .mobile-header {
    display: block;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .header-desktop {
    display: none;
  }

  .mobile-header {
    display: block;
  }
}

@media (max-width: 768px) {
  .page-wrapper {
    border-radius: 0 0 30px 30px;
    margin-bottom: -3rem;
  }

  .header-desktop {
    display: none;
  }

  .mobile-header {
    display: block;
  }

  .site-footer-inner {
    padding: 2.5rem 1rem 1rem 1rem;
  }

  .site-footer-top {
    display: none;
  }

  .site-footer-nav {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 1.35rem;
    margin: 2rem 0 1rem 0;
    text-align: left;
  }

  .site-footer-column {
    width: 100%;
    text-align: left;
  }

  .site-footer-column h3 {
    font-size: 1.45rem;
    margin-bottom: 0.55rem;
  }

  .site-footer-column a {
    font-size: 1rem;
    text-align: left;
  }

  .site-footer-social-links {
    justify-content: flex-start;
  }

  .footer-bottom {
    width: 100%;
    align-items: center;
    flex-direction: column;
    gap: 0.55rem;
    text-align: center;
  }

  .footer-bottom p {
    width: 100%;
  }
}

