/* ==========================================================================
   Softescu – Static Replica Stylesheet
   Based on actual SCSS source from /actual-site/docroot/themes/custom/softescu/
   ========================================================================== */

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  font-size: 10px; /* rem-calc base: rem-calc(X) = X/10 rem = Xpx */
  height: 100%;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.8rem; /* 18px */
  line-height: 1.33;
  color: #f3f2f2;
  background-color: #1e2430;
  background-image: url("../assets/images/background.png");
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  height: 100%;
  min-height: 100%;
  z-index: 1;
}

@media (min-width: 768px) {
  body {
    font-size: 2rem; /* 20px */
    line-height: 1.6;
  }
}

a {
  color: #fcfcfb;
  text-decoration: none;
}
a:hover {
  color: #fcfcfb;
  text-decoration: none;
}

ul, ol { list-style: none; padding: 0; margin: 0; }
img { max-width: 100%; height: auto; }

/* ---------- Typography ---------- */
h1, .h1, h2, .h2, h3, .h3, h4, .h4 {
  font-family: "IBM Plex Mono", monospace;
}

h1, .h1 {
  font-size: 8rem; /* 80px */
  font-weight: 400;
  line-height: 1.3;
}

h2, .h2 {
  font-size: 2.4rem; /* 24px */
  font-weight: 600;
  line-height: 1.33;
}
@media (min-width: 768px) {
  h2, .h2 {
    font-size: 3.6rem; /* 36px */
    line-height: 1.30;
  }
}
@media (min-width: 992px) {
  h2, .h2 {
    font-size: 4.8rem; /* 48px */
    line-height: 1.29;
  }
}

h3, .h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.33;
}
@media (min-width: 768px) {
  h3, .h3 {
    font-size: 3.6rem;
    line-height: 1.33;
  }
}

h4, .h4 {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.25;
}
@media (min-width: 768px) {
  h4, .h4 {
    font-size: 2.4rem;
    line-height: 1.33;
  }
}

caption {
  font-size: 1.2rem;
  line-height: 1.16;
}

/* ---------- Animations ---------- */
@keyframes slide-overlay {
  0% { width: 0%; }
  50% { width: 50%; }
  100% { width: 100%; }
}

@keyframes slide-h2-2right {
  0% { right: 150px; }
  100% { right: 7px; }
}

@keyframes slide-h2-2right-partial {
  0% { left: -10px; }
  100% { left: 10px; }
}

@keyframes float {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-15px); }
  100% { transform: translateY(0px); }
}

/* ---------- Navbar ---------- */
.navbar-collapse.collapse {
  justify-content: flex-end;
  padding: 1.5rem 0;
  display: none;
}
.navbar-collapse.collapse.open {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 100%;
  padding: 1.5rem 2.4rem 2rem;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #1e2430;
}
@media (min-width: 992px) {
  .navbar-collapse.collapse,
  .navbar-collapse.collapse.open {
    display: flex !important;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 1.5rem 0;
    position: static;
    background: transparent;
  }
}

.navbar.container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 0 auto;
  padding: 1.5rem 2.4rem 0;
  width: 100%;
  position: relative;
}
@media (min-width: 768px) {
  .navbar.container {
    padding: 1.5rem 25px 0;
  }
}
@media (min-width: 992px) {
  .navbar.container {
    max-width: 1280px;
    width: 100%;
    padding: 1.5rem 0 0;
    align-items: flex-start;
  }
}
@media (max-width: 1323px) {
  .navbar.container {
    padding: 1.5rem 25px 0;
  }
}

.navbar-right { margin-right: 0; }

.navbar-lang {
  display: none;
  list-style: none;
  margin: 0 0 0 2.4rem;
  padding: 0 0 0 2.4rem;
  border-left: 1px solid rgba(172,177,187,0.25);
  align-items: center;
  gap: 2px;
}
@media (min-width: 992px) {
  .navbar-lang {
    display: flex;
  }
}
.navbar-lang a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #acb1bb;
  text-decoration: none;
  text-transform: uppercase;
  padding: 3px 6px;
  transition: color 0.15s;
}
.navbar-lang a:hover { color: #fcfcfb; }
.navbar-lang a.is-active {
  color: #c5198d;
  border-bottom: 1px solid #c5198d;
}

.open-menu {
  align-items: center;
  cursor: pointer;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  line-height: 1.25;
  margin-top: 0.8rem;
  padding-left: 2.5rem;
  text-transform: uppercase;
  font-family: "Source Sans Pro", sans-serif;
  color: #fcfcfb;
  display: none;
}
@media (min-width: 768px) {
  .open-menu {
    display: flex;
    align-items: flex-end;
  }
}

.navbar-default {
  background: transparent;
  border: none;
  padding-top: 1.5rem;
  z-index: 9;
}
@media (min-width: 992px) {
  .navbar-default {
    padding-top: 2.5rem;
  }
}

.navbar-default .logo img {
  height: 44.37px;
}
@media (min-width: 992px) {
  .navbar-default .logo img {
    margin-top: 1.5rem;
  }
}

/* Hamburger toggle */
.navbar-toggle {
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  margin-top: 0.4rem;
  margin-right: 0.5rem;
  padding: 9px 10px;
  display: block;
}
@media (min-width: 768px) {
  .navbar-toggle {
    display: block;
    margin: 1.5rem 0 0;
    padding-right: 0;
  }
}
@media (min-width: 992px) {
  .navbar-toggle {
    display: none;
  }
}

.navbar-toggle:hover .icon-bar,
.navbar-toggle:active .icon-bar,
.navbar-toggle:focus .icon-bar {
  background: #c5198d;
}

.icon-bar {
  background-color: #fff;
  display: block;
  width: 20px;
  height: 2px;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.icon-bar + .icon-bar {
  margin-top: 0.3rem;
}

/* Hamburger → X when overlay is open */
.navbar-toggle.is-open > span:nth-child(2) {
  transform: translateY(5px) rotate(45deg);
}
.navbar-toggle.is-open > span:nth-child(3) {
  opacity: 0;
  transform: scaleX(0);
}
.navbar-toggle.is-open > span:nth-child(4) {
  transform: translateY(-5px) rotate(-45deg);
}

/* Navbar nav (desktop links) */
.navbar-nav {
  background: transparent;
  font-family: "Source Sans Pro", sans-serif;
  letter-spacing: 0.2rem;
  line-height: 2.4rem;
  margin-top: 0.8rem;
  text-align: center;
  text-transform: uppercase;
  display: none;
  list-style: none;
  padding: 0;
  margin-left: 0;
}
@media (min-width: 992px) {
  .navbar-nav {
    display: flex;
  }
}
.navbar-nav > li {
  padding-left: 3.2rem;
}
.navbar-nav > li:last-child {
  padding-right: 0;
}
.navbar-nav > li > a {
  font-size: 1.6rem;
  padding: 0;
  color: #fcfcfb;
  position: relative;
}
.navbar-nav > li > a:hover {
  background: transparent;
  color: #fcfcfb;
}

/* ---------- Homepage Full-Page Layout ---------- */
.full-page.overlay-on header,
.full-page.overlay-on .main-container,
.full-page.overlay-on .footer-homepage {
  display: none;
}

.full-page {
  align-content: stretch;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
}

.full-page .main-container {
  align-content: stretch;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  padding: 0 2.4rem;
}
@media (min-width: 768px) {
  .full-page .main-container {
    max-width: 638px;
    padding: 0;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .full-page .main-container {
    max-width: 960px;
    margin: 0 auto;
  }
}

.full-page .main-container > .row {
  height: 100%;
  margin: 0 auto;
  width: 100%;
}
@media (min-width: 768px) {
  .full-page .main-container > .row {
    margin: 0;
  }
}
.full-page .main-container > .row > section {
  height: 100%;
  padding: 0;
}
@media (min-width: 768px) {
  .full-page .main-container > .row > section {
    margin: 0;
  }
}
.full-page .main-container > .row > section > .region {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

/* ---------- Home Menu ---------- */
.full-page .block-mainmenu {
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: 0;
  width: 100%;
}

.home-menu {
  display: flex;
  flex-direction: column;
  flex: 1 0 auto;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.home-menu .link-title {
  position: relative;
  z-index: 1;
}

.home-menu .link-title .big-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 8rem; /* h1 extend */
  font-weight: 400;
  line-height: 1.3;
  color: #f3f2f2;
  /* Override h1 sizes for homepage */
  font-size: 3.6rem;
  line-height: 1.16;
  margin: 0;
}
@media (min-width: 768px) {
  .home-menu .link-title .big-title {
    font-size: 6.4rem;
    line-height: 1.12;
  }
}
@media (min-width: 992px) and (orientation: portrait),
(min-width: 1200px) and (orientation: landscape) {
  .home-menu .link-title .big-title {
    font-size: 8rem;
    line-height: 1.2;
  }
}

.home-menu .link-title .link-overlay {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 2.4rem;
  line-height: 1.33;
  bottom: 0;
  height: 100%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 0%;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
@media (min-width: 768px) {
  .home-menu .link-title .link-overlay {
    font-size: 3.6rem;
    line-height: 1.30;
  }
}
@media (min-width: 992px) and (orientation: portrait),
(min-width: 1200px) and (orientation: landscape) {
  .home-menu .link-title .link-overlay {
    pointer-events: auto;
    font-size: 4.8rem;
    line-height: 1.29;
  }
}

.home-menu .link-title .link-overlay span {
  bottom: 0.8rem;
  display: inline-block;
  height: 0;
  opacity: 0;
  position: absolute;
  top: 0;
  width: 0;
  color: #fff;
  white-space: nowrap;
}

/* Home menu floating images */
.home-menu .link-graphics {
  bottom: 0;
  display: none;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transition: opacity 0s;
  z-index: -1;
}
.home-menu .link-graphics .field--item {
  animation: float 6s ease-in-out infinite;
  position: absolute;
  transform: translateY(0);
}
.home-menu .link-graphics .field--item:first-of-type {
  left: 31.5rem;
  top: -4rem;
}
.home-menu .link-graphics .field--item:nth-of-type(2) {
  animation: float 3.5s ease-in-out infinite;
  right: 10rem;
  top: -5.5rem;
}
.home-menu .link-graphics .field--item:nth-of-type(3) {
  animation: float 4.5s ease-in-out infinite;
  right: 0;
  top: 20rem;
}
.home-menu .link-graphics .field--item:last-of-type {
  animation: float 5s ease-in-out infinite;
  bottom: 5rem;
  right: 17rem;
}
.home-menu .link-graphics .field--item img {
  max-width: 150px;
  max-height: 150px;
}

/* Home menu li */
.home-menu li {
  display: inherit;
}
@media (min-width: 992px) and (orientation: portrait),
(min-width: 1200px) and (orientation: landscape) {
  .home-menu li {
    width: -moz-max-content;
    width: -webkit-max-content;
    width: max-content;
  }
}

/* Hover effects - desktop only */
@media (min-width: 992px) and (orientation: portrait),
(min-width: 1200px) and (orientation: landscape) {
  .home-menu li:hover .link-title .big-title {
    opacity: 0.5;
  }
  .home-menu li:hover .link-overlay {
    animation: slide-overlay 0.25s forwards;
    background-color: rgba(197, 25, 141, 0.9);
    opacity: 1;
    width: 100%;
  }
  .home-menu li:hover .link-overlay span {
    height: auto;
    opacity: 1;
    top: unset;
    transition: opacity 0.25s ease 0.25s;
    width: auto;
  }
  .home-menu li:hover:nth-of-type(odd) .link-overlay span {
    animation: slide-h2-2right 0.75s forwards;
  }
  .home-menu li:hover:nth-of-type(even) .link-overlay span {
    animation: slide-h2-2right-partial 0.75s forwards;
  }
  .home-menu li:hover .link-graphics {
    display: inline-block;
  }
}

/* Darken effect on siblings */
@media (min-width: 992px) and (orientation: portrait),
(min-width: 1200px) and (orientation: landscape) {
  li.darken .link-title .big-title {
    opacity: 0.5;
  }
}

/* ---------- Tap Button (Mobile & Tablet) ---------- */
.tap-button {
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  width: 100%;
}
@media (min-width: 992px) and (orientation: portrait),
(min-width: 1200px) and (orientation: landscape) {
  .tap-button {
    display: none;
    height: 0;
    width: 0;
  }
}

.tap-button .tap {
  cursor: pointer;
  font-size: 1.2rem;
  letter-spacing: 0.3rem;
  line-height: 1.25;
  text-transform: uppercase;
  color: #acb1bb;
}
@media (max-width: 767px) {
  .tap-button .tap {
    padding-bottom: 3rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .tap-button .tap {
    font-size: 1.2rem;
    padding-bottom: 8rem;
  }
}

.tap-button .tap:before {
  border-bottom: 1px solid #acb1bb;
  content: "";
  display: block;
  margin-bottom: 0.8rem;
  opacity: 0.5;
}

/* Mobile tap state */
.home-menu.mobile-tap .link-title {
  width: 100%;
}
.home-menu.mobile-tap .link-title .big-title {
  opacity: 0;
}
.home-menu.mobile-tap .menu-item {
  background-color: #c5198d;
  height: 4.2rem;
  opacity: 1;
  overflow: hidden;
  margin-top: 1rem;
}
@media (min-width: 768px) {
  .home-menu.mobile-tap .menu-item {
    height: 6.8rem;
    margin-top: 1.5rem;
  }
}
.home-menu.mobile-tap .menu-item:nth-of-type(odd) .link-overlay {
  display: flex;
  flex-direction: row-reverse;
  width: 100%;
}
.home-menu.mobile-tap .menu-item:nth-of-type(even) .link-overlay {
  width: 100%;
}
.home-menu.mobile-tap .menu-item .link-overlay {
  display: block;
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.25s ease-in-out;
}
.home-menu.mobile-tap .menu-item .link-overlay span {
  height: auto;
  opacity: 1;
  width: auto;
  position: relative;
  top: auto;
  bottom: auto;
}
@media (max-width: 767px) {
  .home-menu.mobile-tap .menu-item .link-overlay span {
    padding: 0.5rem 1rem;
  }
}
@media (min-width: 768px) {
  .home-menu.mobile-tap .menu-item .link-overlay span {
    padding: 1rem 1rem 1.5rem;
  }
}

.tap-button .tap.mobile-tap {
  cursor: none;
  margin-top: 0.2rem;
  visibility: hidden;
}

/* ---------- Footer Homepage (inline, not <footer>) ---------- */
.footer-homepage {
  align-items: center;
  display: flex;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  margin-top: 0;
  max-width: 960px;
  position: relative;
  width: 100%;
}
@media (min-width: 768px) {
  .footer-homepage {
    margin-bottom: 2rem;
  }
}

.footer-homepage:before,
.footer-homepage:after {
  display: none;
}

.footer-homepage .menu--footer li {
  display: inline-block;
  margin-right: 1.6rem;
}
.footer-homepage .menu--footer li a {
  color: #f3f2f2;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.4rem;
  opacity: 0.7;
  padding: 0;
}
@media (min-width: 768px) {
  .footer-homepage .menu--footer li a {
    font-size: 1.6rem;
  }
}
@media (min-width: 992px) and (orientation: portrait),
(min-width: 1200px) and (orientation: landscape) {
  .footer-homepage .menu--footer li a {
    font-size: 2rem;
  }
}
.footer-homepage .menu--footer li a:hover {
  background-color: transparent;
}

.footer-homepage .menu--footer-menu-right:after {
  clear: both;
  content: "";
  display: table;
}

/* Social menu */
.social-menu {
  opacity: 0.7;
}
.social-menu ul.menu {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: center;
}
@media (min-width: 768px) {
  .social-menu ul.menu {
    justify-content: flex-end;
    margin-right: 0;
  }
}
.social-menu .menu li {
  display: inline-block;
  height: 16px;
  margin-left: 1rem;
  position: relative;
  width: 16px;
}
@media (min-width: 768px) {
  .social-menu .menu li {
    margin-left: 1.6rem;
  }
}
.social-menu .menu li a {
  display: block;
  font-size: 0;
  height: 100%;
  padding: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 2;
}
.social-menu .menu li svg {
  height: 16px;
  position: absolute;
  top: 0;
  fill: #acb1bb;
}

/* ---------- Overlay (Full-Screen Nav) ---------- */
.overlay-home {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  overflow-y: auto;
}
.overlay-home:before {
  background: #1e2430;
  background-image: url("../assets/images/background.png");
  content: " ";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  z-index: -2;
}
.overlay-home .overlay-page {
  height: 100%;
}

.overlay-page {
  align-content: stretch;
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  height: 100%;
  width: 100%;
  padding: 0.4rem 2.4rem 0;
}
@media (min-width: 768px) {
  .overlay-page {
    max-width: 636px;
    padding: 0.4rem 0 0;
    margin: 0 auto;
  }
}
@media (min-width: 992px) {
  .overlay-page {
    max-width: 1280px;
    width: 100%;
    padding: 0.4rem 2.4rem 0;
  }
}
@media (min-width: 1328px) {
  .overlay-page {
    padding: 0.4rem 0 0;
  }
}

.overlay-page .open > a {
  background: transparent;
}
.overlay-page li:focus,
.overlay-page li:active,
.overlay-page li:hover,
.overlay-page a:focus,
.overlay-page a:active,
.overlay-page a:hover {
  background: transparent;
  color: #fff;
}

/* Overlay nav bar (logo + close) */
.overlay-nav {
  display: flex;
  justify-content: space-between;
  padding-bottom: 4.8rem;
}
@media (min-width: 768px) {
  .overlay-nav {
    padding: 2rem 0 13.5rem;
  }
}
@media (min-width: 992px) {
  .overlay-nav {
    padding: 15.7rem 0 13.5rem;
  }
}

.overlay-nav .navbar-header .navbar-toggle {
  display: none;
}

.overlay-nav .logo {
  margin: 0;
}
.overlay-nav .logo img {
  height: 24.21px;
  margin-top: 2rem;
}
@media (min-width: 768px) {
  .overlay-nav .logo img {
    height: 61px;
    margin: 0.5rem 0 0 0.2rem;
  }
}
@media (min-width: 992px) {
  .overlay-nav .logo img {
    height: 70.6px;
    margin: 0;
  }
}

.overlay-nav img.close-overlay {
  height: 20px;
  margin: 2rem 0 0 0;
  width: 20px;
  cursor: pointer;
}
@media (min-width: 768px) {
  .overlay-nav img.close-overlay {
    margin: 0.3rem -0.3rem 0 0.3rem;
  }
}
@media (min-width: 992px) {
  .overlay-nav img.close-overlay {
    margin: 0 -0.3rem 0 0.3rem;
  }
}

.overlay-nav span#Close {
  display: flex;
  align-items: center;
  cursor: pointer;
}
@media (min-width: 768px) {
  .overlay-nav span#Close {
    padding-top: 4rem;
  }
}
@media (min-width: 992px) {
  .overlay-nav span#Close {
    padding-top: 0;
  }
}
.overlay-nav span#Close span {
  display: none;
  text-transform: uppercase;
  font-size: 16px;
  margin-top: -0.3rem;
  letter-spacing: 0.2rem;
  cursor: pointer;
  align-items: center;
  color: #f3f2f2;
  font-family: "Source Sans Pro", sans-serif;
}
@media (min-width: 768px) {
  .overlay-nav span#Close span {
    display: block;
    margin-top: 0.2rem;
  }
}
@media (min-width: 992px) {
  .overlay-nav span#Close span {
    margin-top: -0.1rem;
  }
}

.overlay-nav a {
  align-self: flex-end;
  color: #f3f2f2;
  display: flex;
  font-size: 1.6rem;
  letter-spacing: 0.2rem;
  line-height: 1.5;
  z-index: 9999;
}

/* Overlay content (3-column layout) */
.overlay-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0;
}
@media (min-width: 768px) {
  .overlay-content {
    flex-direction: row;
  }
}

/* Left column */
.region-nav-coll-left {
  order: 2;
}
@media (min-width: 768px) {
  .region-nav-coll-left {
    display: flex;
    flex-direction: column;
    width: 16%;
  }
}
.region-nav-coll-left #block-overlayleftmenu {
  flex: 1;
}
.region-nav-coll-left li a {
  font-family: "Source Sans Pro", sans-serif;
  margin: 0;
  padding: 0;
}
.region-nav-coll-left .menu--overlay-left-menu {
  width: 80px;
}
.region-nav-coll-left .menu--overlay-left-menu li a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.8rem;
  line-height: 1.66;
}
@media (min-width: 768px) {
  .region-nav-coll-left .menu--overlay-left-menu li a {
    font-size: 2rem;
  }
}

.region-nav-coll-left .menu--footer-menu {
  padding: 2rem 0;
  width: 125px;
}
@media (min-width: 768px) {
  .region-nav-coll-left .menu--footer-menu {
    padding: 2rem 0 7.5rem 0;
  }
}
.region-nav-coll-left .menu--footer-menu li a {
  color: #acb1bb;
  font-size: 1.4rem;
  font-weight: 200;
  letter-spacing: 0.05rem;
  line-height: 1.71;
}

/* Language switcher in overlay */
.region-nav-coll-left .language-switcher-language-url {
  padding: 1rem 0 1.5rem;
}
@media (min-width: 768px) {
  .region-nav-coll-left .language-switcher-language-url {
    padding: 0;
  }
}
.region-nav-coll-left .language-switcher-language-url .links {
  display: flex;
  font-size: 18px;
  line-height: 1.11;
  list-style: none;
  margin-left: 0;
  padding-left: 0;
}
@media (min-width: 768px) {
  .region-nav-coll-left .language-switcher-language-url .links {
    padding-bottom: 1.5rem;
  }
}
@media (min-width: 992px) {
  .region-nav-coll-left .language-switcher-language-url .links {
    margin: 0;
    padding: 0;
  }
}
.region-nav-coll-left .language-switcher-language-url .links li {
  padding-left: 2.4rem;
}
.region-nav-coll-left .language-switcher-language-url .links li:first-of-type {
  padding-left: 0;
}
.region-nav-coll-left .language-switcher-language-url .links .is-active {
  color: #c5198d;
  font-weight: 600;
}

/* Center column */
.region-nav-coll-center {
  order: 1;
}
@media (min-width: 768px) {
  .region-nav-coll-center {
    order: 2;
    width: 68%;
  }
}

.menu--overlay-main-menu {
  padding-top: 1rem;
  position: relative;
  max-width: 100%;
}
@media (min-width: 768px) {
  .menu--overlay-main-menu {
    margin-left: 7rem;
    padding-top: 0;
    max-width: 400px;
  }
}
@media (min-width: 992px) {
  .menu--overlay-main-menu {
    margin-left: 0;
  }
}

.menu--overlay-main-menu li {
  display: flex;
  padding: 1.7rem 0;
  position: static;
  flex-direction: column;
  line-height: 1.33;
}
@media (min-width: 768px) {
  .menu--overlay-main-menu li {
    padding: 0 0 2rem;
  }
}

.menu--overlay-main-menu li a {
  font-family: "IBM Plex Mono", monospace;
  font-size: 2.4rem;
  font-weight: 500;
  margin: 0;
  padding: 0 0 8px 0;
  width: 100%;
  color: #fcfcfb;
}
@media (min-width: 768px) {
  .menu--overlay-main-menu li a {
    font-size: 3.2rem;
  }
}
@media (min-width: 992px) {
  .menu--overlay-main-menu li a {
    font-size: 3.6rem;
  }
}

.menu--overlay-main-menu .gray-links {
  color: rgba(243, 242, 242, 0.5);
}

/* Dropdown menu in overlay */
.menu--overlay-main-menu .dropdown-menu {
  background: transparent;
  border: none;
  box-shadow: none;
  position: static;
  margin: 2.5rem 0 -1.2rem;
  width: 100%;
  max-width: 100%;
  list-style: none;
  padding: 0;
}
@media (min-width: 992px) {
  .menu--overlay-main-menu .dropdown-menu {
    left: 43.6rem;
    position: absolute;
    top: -0.8rem;
  }
}
.menu--overlay-main-menu .dropdown-menu li {
  display: flex;
  padding: 0.8rem 0;
  position: static;
  width: 100%;
}
.menu--overlay-main-menu .dropdown-menu li a {
  color: #fff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.42;
  margin: 0 20px;
  padding: 0;
  white-space: pre-line;
  width: 100%;
}

/* Right column */
.region-nav-coll-right {
  align-items: flex-end;
  display: flex;
  order: 3;
  z-index: 9999;
}
@media (min-width: 768px) {
  .region-nav-coll-right {
    justify-content: flex-end;
    margin-right: -1.5rem;
    padding-bottom: 2.7rem;
    z-index: 0;
  }
}
@media (min-width: 992px) {
  .region-nav-coll-right {
    padding-bottom: 0;
    width: 16%;
  }
}

.region-nav-coll-right nav {
  position: relative;
}
@media (min-width: 992px) {
  .region-nav-coll-right nav {
    padding: 0 0 2.7rem 0;
  }
}

.region-nav-coll-right .menu li {
  margin: 0;
}
@media (min-width: 768px) {
  .region-nav-coll-right .menu li {
    margin: 0 0 0.14rem 1.6rem;
  }
}

/* Overlay on (hides page content) */
.dialog-off-canvas-main-canvas.overlay-on header,
.dialog-off-canvas-main-canvas.overlay-on .main-container,
.dialog-off-canvas-main-canvas.overlay-on footer {
  display: none;
}

/* ---------- Footer (for non-homepage pages) ---------- */
.footer {
  background: #2d3649;
  border: none;
  margin: 0;
  padding: 0;
}

.footer .region-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  max-width: 320px;
  padding: 4.3rem 0 4rem;
  width: 100%;
}
@media (max-width: 767px) {
  .footer .region-footer {
    padding-bottom: 5.6rem;
  }
}
@media (min-width: 768px) {
  .footer .region-footer {
    max-width: 638px;
  }
}
@media (min-width: 992px) {
  .footer .region-footer {
    max-width: 1280px;
    padding: 4.3rem 2.5rem 4rem;
  }
}
@media (min-width: 1320px) {
  .footer .region-footer {
    max-width: 1280px;
    padding: 4.3rem 0 4rem;
  }
}

.footer .region-footer .footer-menu-center {
  order: 1;
  padding: 0;
  max-width: 100%;
  width: 100%;
}
@media (min-width: 768px) {
  .footer .region-footer .footer-menu-center {
    max-width: 70%;
  }
}
@media (max-width: 767px) {
  .footer .region-footer .footer-menu-center {
    padding-top: 2.2rem;
    width: 100%;
  }
}
.footer .region-footer .footer-menu-center a {
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 0;
  text-align: center;
  color: #fcfcfb;
}
.footer .region-footer .footer-menu-center a:focus,
.footer .region-footer .footer-menu-center a:active {
  color: #fcfcfb;
  background: transparent;
}

.footer .region-footer .footer-menu-center .menu--bottom-menu {
  list-style: none;
  padding: 0;
}
@media (min-width: 768px) {
  .footer .region-footer .footer-menu-center .menu--bottom-menu {
    display: flex;
    flex-wrap: wrap;
  }
}
@media (max-width: 767px) {
  .footer .region-footer .footer-menu-center .menu--bottom-menu li {
    padding: 0.8rem 0;
  }
  .footer .region-footer .footer-menu-center .menu--bottom-menu .first {
    padding-top: 0;
  }
  .footer .region-footer .footer-menu-center .menu--bottom-menu .last {
    padding-bottom: 0;
  }
}
@media (min-width: 768px) {
  .footer .region-footer .footer-menu-center .menu--bottom-menu li:not(.last) {
    margin-right: 2.8rem;
  }
}

.footer .region-footer .footer-menu-left {
  order: 3;
  max-width: 100%;
  width: 100%;
  padding: 6.4rem 0 0 0;
}
@media (min-width: 768px) {
  .footer .region-footer .footer-menu-left {
    order: 2;
    max-width: 30%;
    padding: 0;
    text-align: center;
  }
}
.footer .region-footer .footer-menu-left a {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: -0.1px;
  line-height: 0.83;
  padding: 0 0 3.2rem;
  color: #fcfcfb;
}
@media (min-width: 768px) {
  .footer .region-footer .footer-menu-left a {
    padding: 1rem 0 3.2rem;
  }
}
.footer .region-footer .footer-menu-left .menu--footer-menu {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) {
  .footer .region-footer .footer-menu-left .menu--footer-menu {
    align-items: flex-end;
  }
}

.footer .region-footer .footer-menu-right {
  order: 3;
  max-width: 100%;
  width: 100%;
  margin-right: 0;
  align-items: end;
}
.footer .region-footer .footer-menu-right ul.menu {
  padding-top: 0.5rem;
  margin-right: 0;
}
.footer .region-footer .footer-menu-right .menu--footer-menu-right {
  display: flex;
  justify-content: flex-end;
  margin-right: -1rem;
}
.footer .region-footer .footer-menu-right .menu--footer-menu-right a {
  color: #acb1bb;
  font-size: 1.4rem;
  padding: 0 0.75rem;
}

/* Social icons in footer */
.footer-social {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.4rem;
  align-items: center;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  list-style: none;
}
.footer-social li { margin: 0; }
.footer-social a {
  display: flex;
  align-items: center;
  color: #acb1bb;
  transition: color 0.2s;
  padding: 0;
}
.footer-social a:hover { color: #c5198d; }
.footer-social svg {
  width: 2rem;
  height: 2rem;
  fill: currentColor;
  display: block;
}

.footer .region-footer .footer-copyright {
  max-width: 100%;
  width: 100%;
  order: 6;
  padding-top: 2rem;
  text-align: left;
}
@media (min-width: 768px) {
  .footer .region-footer .footer-copyright {
    max-width: 50%;
    order: 5;
    padding-top: 4rem;
    text-align: left;
  }
}
.footer .region-footer .footer-copyright li {
  font-size: 1.2rem;
  line-height: 1.16;
  list-style: none;
}
@media (max-width: 767px) {
  .footer .region-footer .footer-copyright li:not(.first) {
    padding-top: 2.1rem;
  }
}
@media (min-width: 768px) {
  .footer .region-footer .footer-copyright li:not(.first) {
    padding-top: 1rem;
  }
}

.footer .region-footer .nav > li > a:hover {
  background: transparent;
}

/* ==========================================================================
   Design System Component: Page Hero Image
   ========================================================================== */

.page-hero {
  width: 100%;
  overflow: hidden;
  line-height: 0; /* remove inline-block gap under img */
  position: relative;
  background: #ffffff; /* default white when no image is present */
}
.page-hero img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}
.page-hero__back {
  display: block;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  background-color: rgba(0, 0, 0, 0);
  border-top: 1px solid rgba(172, 177, 187, 0.5);
  box-sizing: border-box;
  color: rgb(252, 252, 251);
  cursor: pointer;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 6px;
  line-height: 2.56rem;
  padding-top: 0.7rem;
  padding-bottom: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  transition: color 0.2s ease;
}
.page-hero__back:hover {
  color: #c5198d;
}

/* ==========================================================================
   Design System Component: Content Card
   Usage:
     <div class="content-card">
       <h2 class="content-card__title">Title</h2>
       <div class="content-card__body"><p>…</p></div>
       <a href="#" class="content-card__link">Read More</a>
     </div>
   Variants (add as modifier class on .content-card):
     .content-card--light   white background, dark text
     .content-card--gray    light-gray background, dark text
     .content-card--dark    navy background, light text (default)
   ========================================================================== */

.content-card {
  padding: 5rem 2.4rem 4rem 0;
  background: #1e2430;
  color: #f3f2f2;
}
@media (min-width: 768px) {
  .content-card {
    padding: 5.6rem 4.8rem 5.6rem 0;
  }
}

.content-card__title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 3.2rem;
  line-height: 1.29;
  color: inherit;
  margin: 0 0 2.8rem;
  border-left: 4px solid #c5198d;
  padding-left: 8rem;
  padding-right: 4rem;
}
@media (min-width: 768px) {
  .content-card__title {
    padding-left: 16rem;
    padding-right: 8rem;
    font-size: 4rem;
  }
}

.content-card__body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 2rem;
  line-height: 3.2rem;
  color: #2d3649;
  -webkit-font-smoothing: antialiased;
  padding-top: 0;
  padding-right: 4rem;
  padding-bottom: 5.4rem;
  padding-left: 8rem;
  position: relative;
}
@media (min-width: 768px) {
  .content-card__body {
    padding-right: 8rem;
    padding-left: 16rem;
  }
}
.content-card__body::before {
  content: "";
  display: block;
  position: absolute;
  left: 2.4rem;
  margin-top: 1.5rem;
  width: 4rem;
  height: 2px;
  background-color: #acb1bb;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .content-card__body::before {
    left: 4.8rem;
  }
}
.content-card__body p {
  margin: 0;
}
.content-card__body h3 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 2.4rem;
  line-height: 1.4;
  margin: 3.2rem 0 1.2rem;
  color: inherit;
}
.content-card__body ul,
.content-card__body ol {
  list-style: disc;
  padding-left: 2.4rem;
  margin: 1.6rem 0;
}
.content-card__body ol { list-style: decimal; }
.content-card__body li { margin-bottom: 0.8rem; }

.content-card__link {
  display: inline-block;
  margin-left: 8rem;
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  border: 1px solid #acb1bb;
  padding: 1rem 2.4rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.content-card__link:hover {
  border-color: #c5198d;
  color: #c5198d;
}
@media (min-width: 768px) {
  .content-card__link {
    margin-left: 16rem;
  }
}

/* -- Variant: light (white bg, dark text) -- */
.content-card--light {
  background: #fff;
  color: #2d3649;
}
.content-card--light .content-card__link a,
.content-card--gray .content-card__link a {
  color: #1e2430;
}
.content-card--light .content-card__link a:hover,
.content-card--gray .content-card__link a:hover {
  color: #c5198d;
}
.content-card--light .content-card__body a,
.content-card--gray .content-card__body a {
  color: #c5198d;
}
.content-card--light .content-card__body a:hover,
.content-card--gray .content-card__body a:hover {
  color: #1e2430;
}

/* -- Variant: gray (off-white bg, dark text) -- */
.content-card--gray {
  background: #f5f5f5;
  color: #2d3649;
}

/* -- Variant: dark (navy bg, light text — same as base) -- */
.content-card--dark {
  background: #1e2430;
  color: #f3f2f2;
}
.content-card--dark .content-card__title,
.content-card--dark .content-card__body {
  color: #ffffff;
}

/* -- Variant: grid (blue bg + GridSquares pattern, light text) -- */
.content-card--grid {
  background-color: #20438f;
  background-image: url('../assets/images/GridSquares.svg');
  background-repeat: repeat;
  background-size: 71px 71px;
  color: #ffffff;
}
.content-card--grid .content-card__title,
.content-card--grid .content-card__body {
  color: #ffffff;
}

/* -- Variant: pattern (blue bg + BlueMathPattern, light text) -- */
.content-card--pattern {
  background-color: #20438f;
  background-image: url('../assets/images/BlueMathPattern.svg');
  background-repeat: repeat;
  background-size: 61px 61px;
  color: #ffffff;
}
.content-card--pattern .content-card__title,
.content-card--pattern .content-card__body {
  color: #ffffff;
}
.content-card--pattern .content-card__body blockquote {
  margin: 2rem 0 0;
  padding: 0;
  border: none;
  font-style: italic;
  color: rgba(255, 255, 255, 0.7);
}

/* ==========================================================================
   CTA Banner — Consultation Request
   ========================================================================== */
.cta-banner {
  background: #1e2430;
  color: #ffffff;
  padding: 6rem 4rem;
  text-align: center;
  width: 100%;
  box-sizing: border-box;
}
.cta-banner__title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 2.8rem;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 1.2rem;
}
.cta-banner__text {
  font-size: 1.8rem;
  font-weight: 400;
  color: #acb1bb;
  margin-bottom: 3.2rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}
.cta-banner__btn {
  display: inline-block;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: transparent;
  color: #acb1bb;
  padding: 1rem 3.2rem;
  border: 1px solid #acb1bb;
  text-decoration: none;
  transition: border-color 0.2s ease-in-out, color 0.2s ease-in-out;
}
.cta-banner__btn:hover {
  border-color: #ffffff;
  color: #ffffff;
}

/* ==========================================================================
   GenericCard (content-card-ds) — Design System Generic Cards
   ========================================================================== */
.content-card-ds {
  background: #1e2430;
  color: #f3f2f2;
  padding: 5.6rem 4.8rem 5.6rem 0;
}
.content-card-ds--light {
  background: #ffffff;
  color: #1e2430;
}
.content-card-ds--gray {
  background: #f5f5f5;
  color: #1e2430;
}
.content-card-ds--pattern {
  background-color: #20498d;
  background-image: url('../assets/images/BlueMathPattern.svg');
  background-repeat: repeat;
  background-size: 61px 61px;
  color: #ffffff;
}
.content-card-ds--grid {
  background-color: #20438f;
  background-image: url('../assets/images/GridSquares.svg');
  background-repeat: repeat;
  background-size: 71px 71px;
  color: #ffffff;
}
.content-card-ds--grid-fuchsia {
  background-color: #c5198d;
  background-image: url('../assets/images/GridSquares.svg');
  background-repeat: repeat;
  background-size: 71px 71px;
  color: #ffffff;
}
.content-card-ds__title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 2.4rem;
  padding-left: 16rem;
  padding-right: 8rem;
}
.content-card-ds__body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 2rem;
  line-height: 3.2rem;
  font-weight: 400;
  padding-left: 16rem;
  padding-right: 8rem;
  position: relative;
}
.content-card-ds__body::before {
  content: "";
  display: block;
  position: absolute;
  left: 12rem;
  top: 0;
  width: 2px;
  height: 100%;
  background-color: #acb1bb;
  opacity: 0.9;
}
.content-card-ds:not(.content-card-ds--light):not(.content-card-ds--gray) .content-card-ds__body {
  color: #ffffff;
}
.content-card-ds__body p { margin: 0; }
.content-card-ds__body ul { margin: 0; padding-left: 1.8rem; }
.content-card-ds__link {
  display: inline-block;
  margin-left: 16rem;
  margin-top: 2.4rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.4rem;
  font-weight: 400;
  color: #acb1bb;
  border: 1px solid #acb1bb;
  padding: 1rem 2.4rem;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.content-card-ds__link:hover { border-color: #c5198d; color: #c5198d; }
.content-card-ds--grid-fuchsia .content-card-ds__link,
.content-card-ds--grid .content-card-ds__link,
.content-card-ds--pattern .content-card-ds__link {
  color: #ffffff;
  border-color: #ffffff;
}
.content-card-ds--grid-fuchsia .content-card-ds__link:hover,
.content-card-ds--grid .content-card-ds__link:hover,
.content-card-ds--pattern .content-card-ds__link:hover {
  border-color: #f3f2f2;
  color: #f3f2f2;
}
@media (max-width: 991px) {
  .content-card-ds { padding: 4rem 2.4rem 4rem 0; }
  .content-card-ds__title { font-size: 3rem; padding-left: 4rem; padding-right: 2.4rem; }
  .content-card-ds__body { padding-left: 4rem; padding-right: 2.4rem; }
  .content-card-ds__body::before { left: 2rem; }
  .content-card-ds__link { margin-left: 4rem; }
}

/* ==========================================================================
   Mission Slider (Carousel)
   ========================================================================== */
.mission-slider {
  background: #1e2430 url('../assets/images/tile-blue.jpg') center center repeat;
  background-size: auto;
  overflow: hidden;
  position: relative;
  width: 100%;
}
.mission-slider__track-wrapper {
  overflow: hidden;
}
.mission-slider__track {
  display: flex;
  transition: transform 0.4s ease;
}
.mission-slider__slide {
  flex: 0 0 100%;
  padding: 48px 40px 40px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.mission-slider__box {
  background: #ffffff;
  padding: 40px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 520px;
  width: 100%;
}
.mission-slider__tag {
  display: inline-block;
  background: #c5198d;
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 24px;
}
.mission-slider__body {
  font-family: "IBM Plex Mono", monospace;
  font-size: 20px;
  font-weight: 400;
  color: #1e2430;
  line-height: 1.6;
  margin: 0;
}
.mission-slider__body strong {
  font-weight: 600;
}
.mission-slider__dots {
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 24px 0 32px;
  margin: 0;
}
.mission-slider__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(30,36,48,0.25);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.2s ease;
}
.mission-slider__dot.is-active {
  background: #c5198d;
}

/* ==========================================================================
   Client Logo Grid
   ========================================================================== */
.client-logo-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4.8rem;
  align-items: center;
  justify-items: center;
  padding: 3.4rem 4rem;
  background: #1e2430;
}
@media (min-width: 768px) {
  .client-logo-grid {
    grid-template-columns: repeat(3, 1fr);
    padding: 3.4rem 8rem;
    gap: 5.6rem;
  }
}
@media (min-width: 992px) {
  .client-logo-grid {
    grid-template-columns: repeat(4, 1fr);
    padding: 3.4rem 10rem;
    gap: 6.4rem;
  }
}
.client-logo-grid img {
  min-width: 140px;
  width: auto;
  height: auto;
  opacity: 0.7;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease;
}
.client-logo-grid img:hover {
  opacity: 1;
}
.client-logo-grid span {
  color: rgba(255, 255, 255, 0.5);
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.2rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ---------- Inner page layout ---------- */
.dialog-off-canvas-main-canvas {
  height: 100%;
  min-height: 100%;
}
.dialog-off-canvas-main-canvas .main-container {
  max-width: 100%;
  width: 100%;
  min-height: calc(100% - 301px);
  padding-left: 2.4rem;
  padding-right: 2.4rem;
  box-sizing: border-box;
}
@media (min-width: 992px) {
  .dialog-off-canvas-main-canvas .main-container {
    max-width: 1090px;
    width: calc(100% - 50px);
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
  }
}
.dialog-off-canvas-main-canvas .main-container > .row > section {
  padding: 0;
}

/* ---------- Utility ---------- */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hidden-lg {
  display: block;
}
@media (min-width: 992px) and (orientation: portrait),
(min-width: 1200px) and (orientation: landscape) {
  .hidden-lg {
    display: none;
  }
}
/* ==========================================================================
   Component: Scroll to Top Button
   ========================================================================== */

.scroll-to-top {
  position: fixed;
  bottom: 3.2rem;
  right: 3.2rem;
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c5198d;
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 2rem;
  line-height: 1;
  border: none;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, background 0.2s ease;
  z-index: 9000;
}
.scroll-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-to-top:hover {
  background: #a0157a;
}

/* ==========================================================================
   Component: Section Hero (title + animation)
   ========================================================================== */

.section-hero {
  display: flex;
  align-items: center;
  gap: 4rem;
  padding: 2rem 0 4rem;
}
.section-hero__title {
  box-sizing: border-box;
  color: rgb(243, 242, 242);
  display: block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 8rem;
  font-weight: 400;
  line-height: 10.4rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  width: 28.8rem;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  -webkit-font-smoothing: antialiased;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.section-hero__animation {
  flex: 1;
  min-width: 0;
}
.section-hero__animation lottie-player {
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Inner page margin (all pages using dialog-off-canvas-main-canvas)
   ========================================================================== */

.dialog-off-canvas-main-canvas .main-container {
  margin-top: 4rem;
  margin-bottom: 10rem;
}
/* ==========================================================================
   Blog Cards (BlogCard component)
   ========================================================================== */

.blog-columns {
  background: #1e2430;
  border: 1px solid rgba(172,177,187,0.15);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-list-top { position: relative; }
.blog-image { overflow: hidden; line-height: 0; }
.blog-image img {
  display: block;
  width: 100%;
  height: 200px !important;
  object-fit: cover;
  transition: transform 0.3s ease;
}
.blog-columns:hover .blog-image img { transform: scale(1.03); }
.blog-taxonomy {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #c5198d;
  color: #ffffff;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
}
.blog-list-bottom {
  background: #ffffff;
  padding: 20px 24px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 320px;
  box-sizing: border-box;
  overflow: hidden;
}
.blog-title {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.7rem;
  font-weight: 600;
  color: #1e2430;
  line-height: 1.4;
  margin-bottom: 12px;
}
.blog-body {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.5rem;
  color: #1e2430;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 16px;
  -webkit-font-smoothing: antialiased;
}
.authon-blog {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.1rem;
  color: #1e2430;
  letter-spacing: 0.05em;
  border-top: 1px solid rgba(30,36,48,0.15);
  padding-top: 12px;
}
.authon-blog time { display: block; }
.blog-lang-link {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.1rem;
  font-weight: 600;
  color: #acb1bb;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: inline-block;
  margin-top: 8px;
  padding: 2px 0;
  border-bottom: 1px solid rgba(172,177,187,0.3);
  transition: color 0.15s, border-color 0.15s;
}
.blog-lang-link:hover { color: #c5198d; border-color: #c5198d; }

.blog-card-grid {
  list-style: none;
  padding: 0;
  margin: 0 0 48px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  align-items: stretch;
}
.blog-card-grid li {
  display: flex;
  flex-direction: column;
}
.blog-card-grid li > a {
  flex: 1;
  display: flex !important;
  flex-direction: column;
}
@media (min-width: 768px) {
  .blog-card-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
  .blog-card-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ── Blog card grid — empty state (Careers) ─────────────── */
.blog-card-grid--empty {
  grid-template-columns: 1fr;
}
.blog-card-empty .blog-columns {
  cursor: default;
  min-height: auto;
}
.blog-card-empty .blog-list-bottom {
  padding: 3.2rem;
}

/* ── Blog Pagination ─────────────────────────────────────── */
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 0 4rem;
  padding: 0;
  list-style: none;
  font-family: "IBM Plex Mono", monospace;
}
.blog-pagination__btn {
  background: transparent;
  border: 1px solid #acb1bb;
  color: #f3f2f2;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.8rem 1.6rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  line-height: 1;
}
.blog-pagination__btn:hover,
.blog-pagination__btn.is-active {
  border-color: #c5198d;
  color: #c5198d;
}
.blog-pagination__btn:disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}

/* ── Paragraph With Image ────────────────────────────────── */
.content-card > .field--name-field-paragraphs:first-child {
  margin-top: -5rem;
}
@media (min-width: 768px) {
  .content-card > .field--name-field-paragraphs:first-child {
    margin-top: -5.6rem;
  }
}
.paragraph--type--paragraph-with-image.right.transparent-no-padding,
.paragraph--type--paragraph-with-image.left.transparent-no-padding {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 60px 4rem;
  flex-direction: column-reverse;
}
.paragraph--type--paragraph-with-image.right.transparent-no-padding {
  flex-direction: column-reverse;
}
.field--item + .field--item .paragraph--type--paragraph-with-image.left.transparent-no-padding,
.field--item + .field--item .paragraph--type--paragraph-with-image.right.transparent-no-padding {
  border-top: 1px solid #acb1bb;
}
@media (min-width: 992px) {
  .paragraph--type--paragraph-with-image.right.transparent-no-padding {
    flex-direction: row-reverse;
    padding: 80px 4rem;
  }
  .paragraph--type--paragraph-with-image.left.transparent-no-padding {
    flex-direction: row;
    padding: 80px 4rem;
  }
}
.paragraph--type--paragraph-with-image .wrap-elemets {
  width: 100%;
}
.paragraph--type--paragraph-with-image .field--name-field-image {
  width: 100%;
  text-align: center;
  margin-bottom: 32px;
}
@media (min-width: 992px) {
  .paragraph--type--paragraph-with-image .wrap-elemets { width: 55%; }
  .paragraph--type--paragraph-with-image .field--name-field-image {
    width: 40%;
    margin-bottom: 0;
    text-align: left;
  }
}
.paragraph--type--paragraph-with-image .wrap-elemets .field--name-field-title h2 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 4rem;
  font-weight: 600;
  color: #f3f2f2;
  margin: 0 0 2.8rem;
  line-height: 1.29;
}
.paragraph--type--paragraph-with-image .wrap-elemets .field--name-field-body p {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 2rem;
  color: #f3f2f2;
  margin: 0 0 16px;
  line-height: 3.2rem;
}
.paragraph--type--paragraph-with-image .wrap-elemets .field--name-field-body p:first-of-type {
  position: relative;
  padding-top: 20px;
}
.paragraph--type--paragraph-with-image .wrap-elemets .field--name-field-body p:first-of-type::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: #c5198d;
  opacity: 0.9;
}
.paragraph--type--paragraph-with-image .wrap-elemets .field--name-field-body a.link-into-paragraph {
  display: inline-block;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  border: 1px solid #acb1bb;
  padding: 1rem 2.4rem;
  transition: border-color 0.2s ease, color 0.2s ease;
}
.paragraph--type--paragraph-with-image .wrap-elemets .field--name-field-body a.link-into-paragraph:hover {
  border-color: #c5198d;
  color: #c5198d;
}
.paragraph--type--paragraph-with-image .field--name-field-image img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: auto;
}
/* wrapper for multiple paragraph-with-image items */
.field.field--name-field-paragraphs .field--item {
  display: block;
}

/* ── Responsive image utility ─────────────────────────────── */
.img-responsive {
  max-width: 100%;
  height: auto;
  display: block;
}
.content-card__body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin-bottom: 2.4rem;
}

/* ==========================================================================
   Contact Page
   ========================================================================== */

/* Contact page title header */
.header-contact {
  padding: 5.4rem 2.4rem 0;
}
@media (min-width: 768px) {
  .header-contact { padding: 7.2rem 4.8rem 0; }
}
@media (min-width: 992px) {
  .header-contact { padding: 7.4rem 12rem 0; }
}
.header-contact h2 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 4rem;
  font-weight: 700;
  color: #f3f2f2;
  margin: 0;
  padding-left: 2.4rem;
  border-left: 4px solid #c5198d;
}

/* Address cards */
.contact-addresses {
  background-color: #fcfcfb;
  color: #1e2430;
  position: relative;
  padding: 4.9rem 2.4rem 5rem;
  width: 100%;
  box-sizing: border-box;
}
@media (min-width: 768px) {
  .contact-addresses { padding: 8.4rem 4.8rem; }
}
@media (min-width: 992px) {
  .contact-addresses { padding: 8.4rem 12rem; }
}
.addresses-row {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
.address-card {
  flex: 1;
  min-width: 200px;
}
.address-card p {
  line-height: 1.3;
  margin: 0;
  padding: 0;
  color: #1e2430;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.8rem;
}
@media (min-width: 768px) {
  .address-card p { line-height: 1.6; }
}
.address-card .address-city {
  font-family: "IBM Plex Mono", monospace;
  font-weight: 600;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding-bottom: 1.6rem;
}
.address-card a {
  color: #1e2430;
  text-decoration: none;
}
.address-card a:hover { color: #c5198d; }
.btn-directions {
  display: inline-block;
  margin-top: 2.4rem;
  border: 1px solid #acb1bb;
  padding: 0.8rem 2rem;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1e2430;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}
.btn-directions:hover {
  border-color: #c5198d;
  color: #c5198d;
  text-decoration: none;
}

/* Contact form */
.contact-form-section {
  background: #1e2430;
  padding: 4rem 2.4rem;
}
@media (min-width: 768px) {
  .contact-form-section { padding: 6.4rem 4.8rem; }
}
@media (min-width: 992px) {
  .contact-form-section { padding: 6.4rem 12rem; }
}
.contact-message-feedback-form h3 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 2.4rem;
  font-weight: 600;
  color: #f3f2f2;
  margin: 0;
  padding-bottom: 4rem;
  line-height: 1.2;
}
@media (min-width: 992px) {
  .contact-message-feedback-form h3 { font-size: 4rem; }
}
.form-group {
  position: relative;
  margin-bottom: 2.4rem;
}
.control-label {
  display: block;
  color: #acb1bb;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.6rem;
  font-weight: 400;
  margin-bottom: 0.6rem;
}
.form-control {
  display: block;
  width: 100%;
  background: transparent;
  border: 1px solid rgba(172,177,187,0.4);
  border-radius: 0;
  color: #f3f2f2;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.8rem;
  padding: 1.2rem 1.5rem;
  box-sizing: border-box;
  transition: border-color 0.3s;
  outline: none;
}
.form-control:focus { border-color: #c5198d; }
.form-textarea {
  min-height: 160px;
  resize: vertical;
}
.form-actions { margin-top: 2.4rem; }
.btn-submit {
  background: transparent;
  border: 1px solid #acb1bb;
  color: #f3f2f2;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1.2rem 3.2rem;
  cursor: pointer;
  transition: border-color 0.2s, color 0.2s;
}
.btn-submit:hover {
  border-color: #c5198d;
  color: #c5198d;
}
.btn-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  border-color: #acb1bb;
  color: #acb1bb;
}
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2.4rem;
}
.form-check input[type="checkbox"] {
  width: 1.6rem;
  height: 1.6rem;
  margin-top: 0.3rem;
  accent-color: #c5198d;
  flex-shrink: 0;
  cursor: pointer;
}
.form-check label {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.5rem;
  color: #acb1bb;
  line-height: 1.5;
  cursor: pointer;
}
.form-check label a { color: #fcfcfb; text-decoration: underline; }
.form-check label a:hover { color: #c5198d; }
.form-message {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.5rem;
  font-weight: 600;
  padding: 1.2rem 1.6rem;
  margin-bottom: 2rem;
}
.form-message--success { background: rgba(0,180,100,0.12); color: #00b464; border-left: 3px solid #00b464; }
.form-message--error   { background: rgba(197,25,141,0.1);  color: #c5198d; border-left: 3px solid #c5198d; }
.recaptcha-disclaimer {
  margin-top: 1.6rem;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
  color: rgba(172,177,187,0.7);
}
.recaptcha-disclaimer a { color: rgba(172,177,187,0.7); text-decoration: underline; }
.recaptcha-disclaimer a:hover { color: #fcfcfb; }
.grecaptcha-badge { visibility: hidden !important; }

/* Stay connected */
.stay-connected {
  background: #2d3649;
  padding: 4rem 2.4rem;
}
@media (min-width: 768px) {
  .stay-connected { padding: 6.4rem 4.8rem; }
}
@media (min-width: 992px) {
  .stay-connected { padding: 6.4rem 12rem; }
}
.stay-connected h2 {
  font-family: "IBM Plex Mono", monospace;
  font-size: 3.2rem;
  font-weight: 700;
  color: #f3f2f2;
  margin: 0 0 1.6rem;
  border-left: 4px solid #c5198d;
  padding-left: 2.4rem;
}
.stay-connected p {
  color: #acb1bb;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.8rem;
  margin: 0 0 3.2rem;
}
.social-links-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  align-items: center;
}
.social-links-contact a {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: #fcfcfb;
  text-decoration: none;
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.social-links-contact a:hover { color: #c5198d; }

/* ==========================================================================
   Cookie Banner
   ========================================================================== */
.site-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #2d3649;
  border-top: 1px solid rgba(172, 177, 187, 0.2);
  padding: 2rem 2.4rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.site-notice.is-visible {
  transform: translateY(0);
}
.site-notice__text {
  flex: 1 1 260px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #acb1bb;
}
.site-notice__text a {
  color: #fcfcfb;
  text-decoration: underline;
  transition: color 0.2s;
}
.site-notice__text a:hover {
  color: #c5198d;
}
.site-notice__actions {
  display: flex;
  gap: 1.2rem;
  flex-shrink: 0;
}
.site-notice__btn {
  font-family: "IBM Plex Mono", monospace;
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 1rem 2rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.site-notice__btn--confirm {
  background: #c5198d;
  color: #ffffff;
}
.site-notice__btn--confirm:hover {
  background: #a8157a;
}
.site-notice__btn--dismiss {
  background: transparent;
  color: #acb1bb;
  border: 1px solid #acb1bb;
}
.site-notice__btn--dismiss:hover {
  border-color: #f3f2f2;
  color: #f3f2f2;
}
@media (max-width: 767px) {
  .site-notice {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-notice__actions {
    width: 100%;
  }
  .site-notice__btn {
    flex: 1;
    text-align: center;
  }
}
.social-links-contact svg { width: 1.8rem; height: 1.8rem; }
