/* Bodywise vita bundle — consolidated for upload. */

.bw-floating-booking {
  position: fixed;
  right: clamp(1rem, 2.2vw, 2rem);
  bottom: clamp(1rem, 2.2vw, 2rem);
  z-index: 180;
  display: grid;
  grid-template-columns: 2.4rem minmax(0, 1fr);
  align-items: center;
  gap: 0.58rem;
  min-width: 12.9rem;
  min-height: 3.55rem;
  padding: 0.52rem 0.85rem 0.52rem 0.58rem;
  overflow: hidden;
  color: #f3eee3;
  text-decoration: none;
  border: 1px solid rgba(243, 238, 227, 0.2);
  border-radius: 0.65rem;
  background:
    radial-gradient(
      circle at 12% 0%,
      rgba(255, 255, 255, 0.16),
      transparent 42%
    ),
    linear-gradient(135deg, #34656d 0%, #27454a 100%);
  box-shadow:
    0 1.15rem 2.75rem rgba(24, 33, 54, 0.25),
    0 0.25rem 0.75rem rgba(39, 38, 38, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.16);
  isolation: isolate;
  transform: translateY(0);
  visibility: visible;
  transition:
    transform 220ms ease,
    opacity 220ms ease,
    visibility 0s linear 0s,
    box-shadow 220ms ease,
    border-color 220ms ease;
  animation: bw-floating-booking-in 620ms cubic-bezier(0.22, 1, 0.36, 1)
    500ms both;
}

.bw-floating-booking::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    115deg,
    transparent 18%,
    rgba(255, 255, 255, 0.1) 48%,
    transparent 72%
  );
  transform: translateX(-115%);
  transition: transform 650ms ease;
}

.bw-floating-booking:hover,
.bw-floating-booking:focus-visible {
  color: #fff;
  border-color: rgba(243, 238, 227, 0.38);
  box-shadow:
    0 1.35rem 3.2rem rgba(24, 33, 54, 0.32),
    0 0.35rem 0.9rem rgba(39, 38, 38, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

.bw-floating-booking:hover::before,
.bw-floating-booking:focus-visible::before {
  transform: translateX(115%);
}

.bw-floating-booking:focus-visible {
  outline: 3px solid rgba(243, 238, 227, 0.96);
  outline-offset: 4px;
}

.bw-floating-booking.is-context-hidden {
  opacity: 0;
  transform: translateY(calc(100% + 2rem));
  visibility: hidden;
  pointer-events: none;
  transition-delay: 0s, 0s, 220ms, 0s, 0s;
}

.bw-floating-booking__icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(243, 238, 227, 0.2);
  border-radius: 50%;
  background: rgba(243, 238, 227, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.bw-floating-booking__icon svg {
  width: 1.05rem;
  height: 1.05rem;
}

.bw-floating-booking__copy {
  display: flex;
  flex-direction: column;
  gap: 0.18rem;
  min-width: 0;
  line-height: 1;
}

.bw-floating-booking__eyebrow {
  color: rgba(243, 238, 227, 0.76);
  font-family: "Roboto", sans-serif;
  font-size: 0.55rem;
  font-weight: 200;
  letter-spacing: 0.06em;
  line-height: 1.2;
}

.bw-floating-booking__label {
  color: inherit;
  font-family: "PPPaloma", serif;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  white-space: nowrap;
}

@keyframes bw-floating-booking-in {
  from {
    opacity: 0;
    transform: translateY(1.25rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 600px) {
  .bw-floating-booking {
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: max(0.75rem, env(safe-area-inset-bottom));
    grid-template-columns: 2.2rem minmax(0, 1fr);
    gap: 0.5rem;
    min-width: 11.9rem;
    min-height: 3.25rem;
    padding: 0.46rem 0.72rem 0.46rem 0.5rem;
    border-radius: 0.58rem;
  }

  .bw-floating-booking__icon {
    width: 2.2rem;
    height: 2.2rem;
  }

  .bw-floating-booking__label {
    font-size: 0.84rem;
  }

  .bw-floating-booking__eyebrow {
    font-size: 0.51rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .bw-floating-booking {
    animation: none;
    transition: none;
  }

  .bw-floating-booking::before {
    transition: none;
  }
}

* {
  box-sizing: border-box;
}

body {
  background-color: #e8e4e0;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  overflow-x: hidden;
}

@font-face {
  font-family: "PPPaloma";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/PPPaloma/PPPaloma-Medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("/assets/fonts/Roboto/roboto-medium.woff2") format("woff2");
  font-display: swap;
}

@font-face {
  font-family: "Roboto";
  font-style: normal;
  font-weight: 200;
  src: url("/assets/fonts/Roboto/roboto-light.woff2") format("woff2");
  font-display: swap;
}

.header-desktop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  padding: 1.4rem 3.8rem;
  transition:
    background 0.3s ease-in-out,
    top 0.3s ease-in-out,
    box-shadow 0.3s ease-in-out;

  --header-link-color: #e8e4e0;
  --header-link-color-scrolled: #e8e4e0;
  --header-chevron-filter: brightness(0) saturate(100%) invert(94%) sepia(17%)
    saturate(422%) hue-rotate(303deg) brightness(106%) contrast(101%);
  --header-chevron-filter-scrolled: brightness(0) saturate(100%) invert(94%)
    sepia(17%) saturate(422%) hue-rotate(303deg) brightness(106%) contrast(101%);
  --header-scrolled-bg: linear-gradient(
    0deg,
    rgba(29, 29, 29, 0) 0%,
    rgba(29, 29, 29, 0.8) 100%
  );
  --header-scrolled-shadow: none;

  --header-open-bg: #f3eee3;
  --header-open-shadow: 0 1px 0 rgba(44, 42, 42, 0.05);
  --header-open-link-color: #272626;
  --header-open-chevron-filter: invert(1);

  --mega-bg: #f3eee3;
}

.header-desktop--dark-scrolled {
  --header-link-color-scrolled: #272626;
  --header-chevron-filter-scrolled: none;
  --header-scrolled-bg: rgba(243, 238, 227, 0.96);
  --header-scrolled-shadow: 0 1px 0 rgba(44, 42, 42, 0.05);
}

header.scrolled {
  background: var(--header-scrolled-bg);
  box-shadow: var(--header-scrolled-shadow);
  margin-top: 0;
}

.header-desktop--mega-open,
.header-desktop--mega-open.scrolled {
  background: var(--header-open-bg);
  box-shadow: var(--header-open-shadow);
}

.header-desktop__nav {
  position: relative;
  z-index: 5;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-desktop__brand,
.header-desktop__center,
.header-desktop__right {
  display: flex;
  align-items: center;
}

.header-desktop__brand {
  justify-content: flex-start;
  min-width: 120px;
}

.header-desktop__center {
  justify-content: center;
  flex: 1;
  margin-top: 1.5rem;
  gap: clamp(0.95rem, 1.35vw, 1.45rem);
}

.header-desktop__right {
  justify-content: flex-end;
  min-width: 120px;
  margin-top: 1.5rem;
  gap: 1rem;
}

.header-desktop__brand a {
  display: inline-flex;
  align-items: center;
}

.header-desktop__logo {
  width: 100px;
  height: auto;
  display: block;
  transition: width 0.3s ease-in-out;
}

header.scrolled .header-desktop__logo {
  width: 85px;
}

.header-desktop__item {
  position: relative;
}

.header-desktop__trigger {
  appearance: none;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font: inherit;
}

.header-desktop__link-text,
.nav-link {
  color: var(--header-link-color);
  text-decoration: none;
  font-size: 1.2rem;
  line-height: 1.1;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
  transition: color 0.3s ease-in-out;
}

.nav-link.current-page,
.header-desktop__trigger.current-page {
  position: relative;
  color: var(--header-link-color, #e8e4e0);
  font-weight: 300;
  text-decoration: none;
}

.nav-link.current-page::before,
.header-desktop__trigger.current-page::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.72rem;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  transform: translateY(-50%);
}

.header-desktop__trigger.current-page .header-desktop__link-text {
  color: inherit;
  font-weight: inherit;
}

.header-desktop.header-desktop--mega-open .nav-link.current-page,
.header-desktop.header-desktop--mega-open .header-desktop__trigger.current-page {
  color: var(--bw-accent, #34656d);
}

header.scrolled .header-desktop__link-text,
header.scrolled .nav-link {
  color: var(--header-link-color-scrolled);
}

header.scrolled .nav-link.current-page,
header.scrolled .header-desktop__trigger.current-page {
  color: var(--header-link-color-scrolled, #e8e4e0);
}

.header-desktop.header-desktop--mega-open .header-desktop__link-text,
.header-desktop.header-desktop--mega-open .nav-link {
  color: var(--header-open-link-color);
}
.header-desktop.header-desktop--mega-open .nav-link.current-page,
.header-desktop.header-desktop--mega-open .header-desktop__trigger.current-page {
  color: var(--bw-accent, #34656d);
}

.header-desktop__chevron,
.header-desktop__lang-chevron {
  width: 0.8rem;
  height: 0.8rem;
  min-width: 0.8rem;
  min-height: 0.8rem;
  display: block;
  object-fit: contain;
  filter: var(--header-chevron-filter);
  transition:
    transform 0.35s ease,
    filter 0.3s ease-in-out,
    opacity 0.3s ease-in-out;
}

header.scrolled .header-desktop__chevron,
header.scrolled .header-desktop__lang-chevron {
  filter: var(--header-chevron-filter-scrolled);
}

.header-desktop.header-desktop--mega-open .header-desktop__chevron,
.header-desktop.header-desktop--mega-open .header-desktop__lang-chevron {
  filter: var(--header-open-chevron-filter);
}

.header-desktop__item.is-active .header-desktop__chevron {
  transform: rotate(180deg);
}

.lang-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.main-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0.8rem 1.2rem;
  background-color: #34656d;
  color: #e8e4e0;
  text-decoration: none;
  font-weight: 200;
  font-family: "Roboto", sans-serif;
  border-radius: 4px;
}

.header-desktop__mega {
  position: fixed;
  inset: 0;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.header-desktop__mega-panel {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  background: var(--mega-bg);
  border-top: 1px solid rgba(44, 42, 42, 0.05);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.08);
  clip-path: inset(0 0 100% 0);
  overflow: hidden;
  z-index: 2;
  will-change: clip-path;
}

.header-desktop__mega-inner {
  max-width: 1520px;
  margin: 0 auto;
  padding: 10.8rem 3.8rem 3.2rem 3.8rem;
}

.header-desktop__mega-layout {
  display: grid;
  grid-template-columns: minmax(420px, 760px) minmax(320px, 440px);
  justify-content: space-between;
  align-items: start;
  gap: 4.5rem;
}

.header-desktop__mega-main,
.header-desktop__mega-card-body {
  display: flex;
  flex-direction: column;
}

.header-desktop__mega-linkline {
  overflow: hidden;
  width: fit-content;
  margin-bottom: 0.14rem;
  padding-top: 0.12em;
  padding-bottom: 0.2em;
}

.header-desktop__mega-service {
  display: inline-block;
  text-decoration: none;
  color: #2c2a2a;
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: clamp(1.55rem, 1.75vw, 2.35rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
  transition: color 0.28s ease;
}

.header-desktop__mega-service:hover,
.header-desktop__mega-service:focus-visible {
  color: #34656d;
}

.header-desktop__mega-service span {
  display: inline-block;
  will-change: transform, opacity;
}

.header-desktop__mega-card {
  display: block;
  text-decoration: none;
  color: inherit;
  max-width: 440px;
}

.header-desktop__mega-card-image-wrap {
  overflow: hidden;
  border-radius: 1.6rem;
  margin-bottom: 1.3rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.1);
}

.header-desktop__mega-card-image {
  width: 100%;
  aspect-ratio: 1.42 / 1;
}

.header-desktop__mega-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 0.45s ease;
}

.header-desktop__mega-card:hover .header-desktop__mega-card-image img {
  transform: scale(1.04);
}

.header-desktop__mega-card-title {
  margin: 0 0 0.7rem 0;
  font-family: "PPFrama", sans-serif;
  font-weight: 500;
  font-size: 2.6rem;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: #2c2a2a;
}

.header-desktop__mega-card-text {
  margin: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 300;
  font-size: 1.08rem;
  line-height: 1.58;
  color: #5f5955;
  max-width: 28rem;
}

.header-desktop__mega-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(20, 18, 17, 0.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  z-index: 1;
  cursor: default;
}

.header-desktop__mega.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

@media (max-width: 1280px) {
  .header-desktop__mega-layout {
    grid-template-columns: minmax(360px, 1fr) minmax(300px, 380px);
    gap: 3rem;
  }

  .header-desktop__mega-service {
    font-size: clamp(1.5rem, 1.7vw, 2.1rem);
  }

  .header-desktop__mega-card-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 1100px) {
  .header-desktop__mega-layout {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .header-desktop__mega-card {
    max-width: 560px;
  }
}

.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%
  );
}

.logo-mobile {
  width: 70px;
  height: auto;
}

.mobile-header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.nav-menu {
  background: transparent;
  border: none;
}

.line-menu {
  background-color: #e8e4e0;
  width: 25px;
  height: 1px;
  margin-bottom: 5px;
}

.line-small {
  background-color: #e8e4e0;
  width: 20px;
  height: 1px;
  margin-bottom: 5px;
  float: right;
}

.menu-mobile {
  display: none;
  background-color: #e8e4e0;
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0 100%);
  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 {
  height: 20px;
  position: relative;
  width: 20px;
}

.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 {
  text-decoration: none;
  padding: 0.6rem 0;
  color: #272626;
  font-weight: 200;
  font-size: 1.6rem;
  line-height: 1.4rem;
}
.menu-links a.current-page,
.menu-mobile-services__trigger.current-page {
  position: relative;
  color: var(--bw-accent, #34656d);
  font-weight: 300;
}

.menu-links a.current-page::before,
.menu-mobile-services__trigger.current-page::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.9rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--bw-accent, #34656d);
  transform: translateY(-50%);
}


.menu-mobile-services {
  display: flex;
  flex-direction: column;
}

.menu-mobile-services__trigger {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 100%;
  padding: 0.6rem 0;
  border: 0;
  background: transparent;
  color: #272626;
  font-weight: 200;
  font-size: 1.6rem;
  line-height: 1.4rem;
  text-align: left;
  cursor: pointer;
  font-family: "Roboto", sans-serif;
}

.menu-mobile-services__icon {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.menu-mobile-services.is-open .menu-mobile-services__icon {
  transform: rotate(90deg);
}

.menu-mobile-services__panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  overflow: hidden;
}

.menu-mobile-services__panel-inner {
  min-height: 0;
}

.menu-mobile-services__panel a {
  display: block;
  padding: 0.4rem 0 0.4rem 1.25rem;
  font-size: 1.3rem;
  line-height: 1.45rem;
}

.menu-divider {
  display: block;
  margin: 2rem 2rem 0 auto;
  width: calc(100% - 4rem);
  height: 2px;
}

.menu-divider line {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000;
}

.language-switch {
  display: flex;
  color: #272626;
  font-weight: 200;
  font-size: 1.5rem;
  line-height: 2rem;
  padding: 0.8rem 0 0 1.5rem;
}

.language-switch a {
  text-decoration: none;
  color: #272626;
  margin: 0 0.5rem;
  font-weight: 200;
  font-size: 1.2rem;
}

main {
  position: relative;
  height: 100vh;
  overflow: hidden;
  color: #e8e4e0;
}

.hero-img {
  width: 100%;
  height: 100vh;
}

.hero-img img {
  width: 100%;
  height: 100vh;
  object-fit: cover;
  display: block;
  filter: brightness(76%);
}

.hero-gradient {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(255, 242, 224, 0.02) 18%,
    rgba(39, 38, 38, 0.22) 52%,
    rgba(24, 33, 54, 0.72) 100%
  );
}

.hero-navigation {
  position: absolute;
  left: 6rem;
  top: 10rem;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.hero-navigation a {
  color: rgba(255, 242, 224, 0.75);
  font-size: 1rem;
  font-weight: 200;
  text-decoration: none;
}

.hero-navigation span {
  color: rgba(255, 242, 224, 0.55);
  font-weight: 200;
  font-size: 1rem;
}

.current-nav {
  color: #e8e4e0 !important;
}

.hero-navigation a:hover {
  color: #e8e4e0;
}

.hero-text {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 6rem;
  transform: translateX(-50%);
  width: calc(100% - 16rem);
  max-width: none;
  text-align: center;
}

.hero-text h1 {
  width: 100%;
  margin: 0;
  font-family: "PPPaloma", sans-serif;
  font-size: 3.4rem;
  line-height: 1.05;
  font-weight: 500;
  color: #e8e4e0;
}

.hero-line {
  width: 100%;
  height: 1px;
  background-color: rgba(255, 242, 224, 0.25);
  margin: 2rem 0 1.4rem 0;
}

.article-info {
  display: flex;
  justify-content: center;
  align-items: center;
}

.info-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  flex-wrap: wrap;
}

.article-info p,
.article-info span {
  margin: 0;
  font-weight: 200;
  font-size: 1rem;
  color: #e8e4e0;
}

.intro-section {
  padding: 6rem 8rem;
  display: flex;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}

.intro-wrapper {
  width: 52%;
  margin: 0 auto;
}

.headline-kicker {
  font-weight: 200;
  margin: 0;
  color: #34656d;
}

.intro-section h2 {
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  color: #272626;
  font-size: 2rem;
  line-height: 1.15;
  margin: 0.4rem 0 1rem 0;
}

.intro-section p {
  color: #272626;
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.45;
  margin: 0;
}

.cta-wrapper {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cta-wrapper-pos {
  display: flex;
  justify-content: center;
  margin-top: 2rem;
}

.main-cta {
  background-color: #34656d;
  padding: 0.8rem 1.2rem;
  color: #e8e4e0;
  text-decoration: none;
  font-weight: 200;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease-in-out;
}

.main-cta:hover {
  transform: translateY(-2px);
  background-color: #27454a;
  color: #e8e4e0;
}

.main-cta img {
  margin-top: 2px;
  width: 12px;
  height: auto;
}

.secondary-cta {
  border-radius: 4px;
  padding: 0.8rem 1.2rem;
  color: #272626;
  text-decoration: none;
  font-weight: 200;
  cursor: pointer;
  border: 1px solid #272626;
  transition: all 0.2s ease-in-out;
}

.secondary-cta:hover {
  transform: translateY(-2px);
  opacity: 0.8;
}

.timeline-section {
  padding: 0 8rem 6rem 8rem;
}

.timeline-intro {
  width: 56%;
  margin: 0 auto 2rem auto;
  text-align: center;
}

.timeline-intro h2 {
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  color: #272626;
  font-size: 2rem;
  line-height: 1.15;
  margin: 0.4rem 0 1rem 0;
}

.timeline-intro p {
  color: #272626;
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.45;
  margin: 0;
}

.timeline-wrapper {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.timeline-item {
  border: 1px solid rgba(39, 38, 38, 0.28);
  border-radius: 4px;
  padding: 1.8rem;
}

.timeline-year {
  margin: 0 0 0.75rem 0;
  color: #34656d;
  font-size: 0.95rem;
  font-weight: 200;
}

.timeline-item h3 {
  margin: 0 0 0.8rem 0;
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.1;
  color: #272626;
}

.timeline-item p {
  margin: 0;
  color: #272626;
  font-weight: 200;
  font-size: 1.05rem;
  line-height: 1.4;
}

.bg-section {
  background-color: #182136;
  padding: 6rem 8rem;
}

.approach-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4rem;
}

.bg-text,
.bg-img {
  width: 50%;
  color: #e8e4e0;
}

.bg-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

.headline-kicker-bg {
  font-weight: 200;
  margin: 0;
  color: #e8e4e0;
}

.bg-text h2 {
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  font-size: 2rem;
  line-height: 1.15;
  color: #e8e4e0;
  margin: 0.4rem 0 1rem 0;
}

.bg-text p {
  color: #e8e4e0;
  font-weight: 200;
  font-size: 1.2rem;
  line-height: 1.45;
  margin: 0 0 1rem 0;
}

.main-cta-bg {
  background-color: #34656d;
  padding: 0.8rem 1.2rem;
  color: #e8e4e0;
  text-decoration: none;
  font-weight: 200;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 4px;
}

.main-cta-bg img {
  margin-top: 2px;
  width: 12px;
  height: auto;
}

.category-section {
  padding: 6rem 8rem;
}

.section-intro {
  margin-bottom: 1.5rem;
}

.section-intro h2 {
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  color: #272626;
  font-size: 2rem;
  line-height: 1.15;
  margin: 0.4rem 0 0 0;
}

.category-wrapper {
  display: flex;
  border: 1px solid rgba(39, 38, 38, 0.45);
  border-radius: 4px;
  overflow: hidden;
}

.category-item {
  width: 33.33%;
  padding: 2rem;
  border-right: 1px solid rgba(39, 38, 38, 0.45);
  color: #272626;
  display: flex;
  flex-direction: column;
}

.category-item:last-child {
  border-right: none;
}

.category-item h3 {
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  font-size: 1.7rem;
  line-height: 1.1;
  color: #272626;
  margin: 0 0 1rem 0;
}

.category-item p {
  margin: 0 0 1rem 0;
  color: #272626;
  font-weight: 200;
  font-size: 1.05rem;
  line-height: 1.38;
  max-width: 96%;
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.6rem 0;
}

.category-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  margin-bottom: 0.45rem;
  color: #272626;
  font-weight: 200;
  font-size: 1.05rem;
  line-height: 1.35;
}

.category-list li img {
  width: 8px;
  height: 8px;
  display: block;
  flex-shrink: 0;
  margin-top: 0.45rem;
}

.category-btn {
  display: inline-block;
  padding: 0.8rem 1rem;
  border: 1px solid rgba(39, 38, 38, 0.45);
  border-radius: 4px;
  text-decoration: none;
  color: #272626;
  font-weight: 200;
  font-size: 1rem;
  box-shadow: 0 2px 6px rgba(39, 38, 38, 0.12);
  margin-top: auto;
  align-self: flex-start;
}

.fit-section {
  padding: 0 8rem 8rem 8rem;
}

.fit-wrapper {
  display: flex;
  align-items: stretch;
  gap: 2rem;
}

.fit-text,
.fit-card {
  width: 50%;
}

.fit-text h2 {
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  color: #272626;
  font-size: 2rem;
  line-height: 1.15;
  margin: 0.4rem 0 1rem 0;
}

.fit-text p {
  color: #272626;
  font-size: 1.2rem;
  font-weight: 200;
  line-height: 1.45;
  margin: 0 0 1rem 0;
}

.fit-card {
  border: 1px solid rgba(39, 38, 38, 0.45);
  border-radius: 4px;
  padding: 2rem;
}

.fit-card h3 {
  margin: 0 0 1rem 0;
  font-family: "PPPaloma", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  color: #272626;
}

.fit-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1.2rem 0;
}

.fit-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  color: #272626;
  font-weight: 200;
  font-size: 1.08rem;
  line-height: 1.4;
}

.fit-list li img {
  width: 10px;
  height: 10px;
  margin-top: 0.35rem;
  flex-shrink: 0;
}

.fit-note {
  margin: 0;
  color: #272626;
  font-weight: 200;
  font-size: 1rem;
  line-height: 1.4;
}

.final-cta-section {
  padding: 8rem;
}

@media (max-width: 1200px) {
  .intro-wrapper,
  .timeline-intro {
    width: 74%;
  }

  .approach-wrapper,
  .fit-wrapper,
  .category-wrapper {
    flex-direction: column;
  }

  .bg-text,
  .bg-img,
  .fit-text,
  .fit-card,
  .category-item {
    width: 100%;
  }

  .category-item {
    border-right: none;
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }

  .category-item:last-child {
    border-bottom: none;
  }
}

@media (max-width: 900px) {
  .timeline-wrapper {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero-navigation {
    left: 2rem;
    right: 2rem;
    top: 8rem;
  }

  .hero-text {
    width: calc(100% - 4rem);
    bottom: 3rem;
    max-width: none;
  }

  .hero-text h1 {
    font-size: 2.1rem;
  }

  .hero-line {
    margin: 1.6rem 0 1.2rem 0;
  }

  .article-info p,
  .article-info span,
  .hero-navigation a,
  .hero-navigation span {
    font-size: 0.95rem;
  }

  .intro-section,
  .timeline-section,
  .bg-section,
  .category-section,
  .fit-section {
    padding-left: 2rem;
    padding-right: 2rem;
  }

  .intro-wrapper,
  .timeline-intro {
    width: 100%;
  }

  .cta-wrapper,
  .cta-wrapper-pos {
    flex-direction: column;
  }

  .intro-section h2,
  .timeline-intro h2,
  .bg-text h2,
  .section-intro h2,
  .fit-text h2 {
    font-size: 1.8rem;
  }

  .timeline-item,
  .category-item,
  .fit-card {
    padding: 1.5rem;
  }
}

footer {
  background-color: #272626;
  padding: 2rem 8rem 1rem 8rem;
}

.footer-logo {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
  gap: 2rem;
  width: 30%;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-links img {
  width: 40px !important;
  cursor: pointer;
}

.footer-logo img {
  width: 140px;
}

.footer-layout {
  display: flex;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  justify-content: space-between;
  margin-top: 2rem;
  width: 70%;
}

.footer-links div {
  display: flex;
  flex-direction: column;
}

.footer-links h4 {
  color: #e8e4e0;
  font-weight: 500;
  font-size: 1.1rem;
  font-family: "PPPaloma", sans-serif;
  margin-bottom: 1rem;
}

.footer-links a {
  text-decoration: none;
  color: #e8e4e0;
  font-size: 1rem;
  font-weight: 200;
  line-height: 1.4rem;
}

.line-footer {
  background-color: #e8e4e080;
  width: 100%;
  height: 0.5px;
  margin: 4rem 0 1rem 0;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  color: #e8e4e0;
  font-weight: 200;
  font-size: 0.9rem;
  margin: 0;
}

.footer-bottom a {
  color: #e8e4e0;
  text-decoration: none;
}

@media (max-width: 768px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .solo-img {
    --hero-img-side-padding: 1rem;
  }

  h1 {
    width: 100%;
    font-size: 2rem;
  }
  .hero-intro p {
    margin-top: 0;
  }
  .intro-section {
    padding: 6rem 1rem;
  }
  .intro-wrapper {
    width: 100%;
  }
  .intro-section h2 {
    font-size: 1.7rem;
  }
  .intro-section,
  .timeline-section,
  .bg-section,
  .category-section,
  .fit-section {
    padding: 2rem 1rem 6rem 1rem;
  }
  .category-wrapper {
    flex-direction: column;
  }
  .category-item {
    width: 100%;
    border-right: none;
  }
  .category-item:nth-child(1) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .category-item:nth-child(2) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .bg-section {
    padding: 6rem 1rem;
  }
  .pees-info-wrapper {
    flex-direction: column;
  }
  .bg-text,
  .bg-img {
    width: 100%;
  }
  .bg-text h2 {
    font-size: 1.7rem;
  }
  .services-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .services-outer h2 {
    font-size: 1.7rem;
  }
  .service-item {
    width: 100%;
    border-right: none;
  }
  .service-item:nth-child(1) {
    border-bottom: 1px solid #e8e4e0;
  }
  .service-item:nth-child(2) {
    border-bottom: 1px solid #e8e4e0;
  }
  .service-content h3 {
    font-size: 1.5rem;
  }
  .service-content p {
    font-size: 1.2rem;
  }
  .faq-section {
    padding: 6rem 1rem 4rem 1rem;
  }
  .faq-icon {
    display: none;
  }
  .faq-text h2 {
    font-size: 1.7rem;
  }
  .blog-section {
    padding: 6rem 1rem;
  }
  .blog-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-item {
    width: 100%;
    border-right: none;
  }
  .blog-item:nth-child(1) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .blog-item:nth-child(2) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .blog-content h3 {
    font-size: 1.5rem;
  }
  footer {
    padding: 2rem 1rem 1rem 1rem;
  }
  .footer-layout {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .header-desktop {
    display: none;
  }
  .mobile-header {
    display: flex;
  }
  .solo-img {
    --hero-img-side-padding: 3rem;
  }
  .menu-links a {
    font-size: 1.9rem;
    line-height: 2rem;
    padding: 0.8rem 0;
  }
.menu-links a.current-page,
.menu-mobile-services__trigger.current-page {
  color: var(--bw-accent, #34656d);
  font-weight: 300;
}

  .menu-mobile-services__trigger {
    font-size: 1.9rem;
    line-height: 2rem;
    padding: 0.8rem 0;
  }
  .hero-text {
    left: 1rem;
    right: 1rem;
    padding: 12rem 3rem 2rem 3rem;
    flex-direction: column;
  }
  .hero-title {
    width: 100%;
  }
  .hero-intro {
    width: 100%;
    padding-top: 0;
  }
  .hero-intro .secondary-cta {
    display: none;
  }
  h1 {
    width: 100%;
    font-size: 2.4rem;
  }
  .hero-intro p {
    margin-top: 0;
  }
  .intro-section {
    padding: 6rem 3rem;
  }
  .intro-wrapper {
    width: 100%;
  }
  .intro-section h2 {
    font-size: 2rem;
  }
  .category-section {
    padding: 2rem 3rem 6rem 3rem;
  }
  .category-wrapper {
    flex-direction: column;
  }
  .category-item {
    width: 100%;
    border-right: none;
  }
  .category-item:nth-child(1) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .category-item:nth-child(2) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .bg-section {
    padding: 6rem 3rem;
  }
  .pees-info-wrapper {
    flex-direction: column;
  }
  .bg-text,
  .bg-img {
    width: 100%;
  }
  .bg-text h2 {
    font-size: 2rem;
  }
  .services-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
  .services-outer h2 {
    font-size: 2rem;
  }
  .service-item {
    width: 100%;
    border-right: none;
  }
  .service-item:nth-child(1) {
    border-bottom: 1px solid #e8e4e0;
  }
  .service-item:nth-child(2) {
    border-bottom: 1px solid #e8e4e0;
  }
  .service-content h3 {
    font-size: 1.7rem;
  }
  .service-content p {
    font-size: 1.2rem;
  }
  .faq-section {
    padding: 6rem 3rem 4rem 3rem;
  }
  .faq-icon {
    display: none;
  }
  .faq-text h2 {
    font-size: 2rem;
  }
  .blog-section {
    padding: 6rem 3rem;
  }
  .blog-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .blog-item {
    width: 100%;
    border-right: none;
  }
  .blog-content {
    gap: 1rem;
  }
  .blog-item:nth-child(1) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .blog-item:nth-child(2) {
    border-bottom: 1px solid rgba(39, 38, 38, 0.45);
  }
  .blog-content h3 {
    font-size: 1.7rem;
    min-height: inherit;
  }
  .blog-content p {
    min-height: inherit;
  }
  footer {
    padding: 2rem 3rem 1rem 3rem;
  }
  .footer-layout {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1200px) and (orientation: landscape) {
  .header-desktop {
    padding: 1.8rem 2.5%;
  }
  .hero-text {
    bottom: 10%;
    left: 5%;
  }
}

@media only screen and (min-width: 1024px) and (max-width: 1520px) {
  main .hero-text h1 {
    font-size: 2.6rem;
  }

  .hero-intro {
    align-self: flex-end;
    padding-top: 0;
  }
  .intro-section {
    padding: 6rem;
  }
  .category-section {
    padding: 2rem 6rem 6rem 6rem;
  }
  .bg-section {
    padding: 6rem;
  }
  .faq-section {
    padding: 6rem;
  }
  .blog-section {
    padding: 6rem;
  }
  .process-section {
    padding: 6rem;
  }
  .timeline-section {
    padding: 0 6rem 6rem 6rem;
  }
  footer {
    background-color: #272626;
    padding: 2rem 6rem 1rem 6rem;
  }
}

/* Responsive refinements */
.hero-text,
.article-info,
.intro-wrapper,
.timeline-wrapper > *,
.category-wrapper > *,
.footer-layout > *,
.footer-links > * {
  min-width: 0;
}

.hero-text {
  max-width: none;
}

.hero-text h1,
main .hero-text h1 {
  width: 100%;
  max-width: none;
  font-size: clamp(2.45rem, 3.35vw, 3.9rem);
  line-height: 1.08;
  overflow-wrap: normal;
  text-wrap: balance;
}

.main-cta,
.secondary-cta {
  max-width: 100%;
  white-space: normal;
  text-align: center;
}

@media (max-width: 768px) {
  .hero-text {
    right: 1rem;
    left: 1rem;
    width: auto;
  }

  .hero-text h1,
  main .hero-text h1 {
    font-size: clamp(2rem, 8vw, 2.45rem);
    line-height: 1.08;
  }
}

@media (max-width: 420px) {
  .hero-text h1,
  main .hero-text h1 {
    font-size: clamp(1.9rem, 8.2vw, 2.15rem);
  }
}

