:root {
  --color-white: #ffffff;
  --color-page: #f7f3ec;
  --color-surface: #fffaf2;
  --color-surface-2: #edf2ee;
  --color-text: #191d1e;
  --color-muted: #626c6b;
  --color-soft: #8a938f;
  --color-line: rgba(25, 29, 30, 0.14);
  --color-line-dark: rgba(255, 255, 255, 0.18);
  --color-ink: #15191a;
  --color-forest: #102f2a;
  --color-forest-2: #183f38;
  --color-brand: #9a2e2a;
  --color-brand-dark: #6f211e;
  --color-carton: #c79a45;
  --color-whatsapp: #1f9d55;
  --shadow-soft: 0 18px 42px rgba(21, 25, 26, 0.11);
  --shadow-strong: 0 26px 72px rgba(9, 17, 16, 0.27);
  --radius-sm: 4px;
  --radius: 8px;
  --container: 1180px;
  --container-wide: 1440px;
  --header-height: 98px;
  --space-page: 40px;
  --space-section: 104px;
  --font-body: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --font-display: Arial, "Helvetica Neue", Helvetica, sans-serif;
  --ease: cubic-bezier(0.2, 0.78, 0.2, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  min-height: 100%;
  scroll-behavior: smooth;
}

html.page-home-root {
  min-width: 0;
}

body {
  min-height: 100%;
  margin: 0;
  padding: 0;
  color: var(--color-text);
  background: var(--color-page);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.62;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid rgba(154, 46, 42, 0.42);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 18px;
  top: 18px;
  z-index: 1000;
  transform: translateY(-140%);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  color: var(--color-text);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform 180ms var(--ease);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.container {
  width: min(100% - (var(--space-page) * 2), var(--container));
  margin-inline: auto;
}

.section {
  padding: var(--space-section) 0;
}

section[id] {
  scroll-margin-top: 96px;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: var(--font-display);
  font-weight: 830;
  line-height: 1.02;
  letter-spacing: 0;
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: 64px;
}

h2 {
  margin-bottom: 20px;
  font-size: 46px;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.2;
  letter-spacing: 0;
}

p {
  color: var(--color-muted);
}

.section-label {
  display: inline-flex;
  margin: 0 0 18px;
  color: var(--color-brand);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-label--light {
  color: #f0d8b1;
}

.section-heading {
  margin-bottom: 54px;
}

.section-heading--split {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 64px;
  align-items: end;
}

.section-heading--split p {
  margin-bottom: 6px;
  font-size: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 0 22px;
  font-size: 16px;
  font-weight: 820;
  line-height: 1.12;
  text-align: center;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), color 180ms var(--ease);
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button--primary {
  color: #ffffff;
  background: var(--color-brand);
  box-shadow: 0 16px 32px rgba(154, 46, 42, 0.25);
}

.button--primary:hover,
.button--primary:focus-visible {
  background: var(--color-brand-dark);
  box-shadow: 0 20px 38px rgba(154, 46, 42, 0.31);
}

.button--light {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.button--light:hover,
.button--light:focus-visible {
  background: rgba(255, 255, 255, 0.2);
}

.button--dark-outline {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.08);
}

.button--dark-outline:hover,
.button--dark-outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.56);
  background: rgba(255, 255, 255, 0.14);
}

.button--full {
  width: 100%;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #ffffff;
  background: rgba(10, 18, 17, 0.68);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  text-shadow: none;
  backdrop-filter: blur(10px);
  transition: background 220ms var(--ease), color 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease), text-shadow 220ms var(--ease);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  color: var(--color-text);
  background: rgba(255, 250, 242, 0.97);
  border-bottom-color: var(--color-line);
  box-shadow: 0 10px 30px rgba(21, 25, 26, 0.08);
  text-shadow: none;
}

.site-header__inner {
  width: min(100% - 48px, 1320px);
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  transition: min-height 220ms var(--ease);
}

.site-header.is-scrolled .site-header__inner {
  min-height: 78px;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  color: inherit;
  background: transparent;
  transition: transform 180ms var(--ease);
  flex-shrink: 0;
}

.site-logo:hover,
.site-logo:focus-visible {
  transform: translateY(-1px);
}

.site-logo__image {
  display: block;
  width: auto;
  height: clamp(48px, 4.5vw, 54px);
  max-width: 100%;
  object-fit: contain;
}

.site-header .site-logo__image {
  height: clamp(64px, 5.3vw, 72px);
  transition: height 220ms var(--ease);
}

.site-header.is-scrolled .site-logo__image {
  height: 58px;
}

.site-header.is-scrolled .site-logo,
.site-header.is-menu-open .site-logo {
  background: transparent;
  box-shadow: none;
}

.site-logo--footer {
  width: fit-content;
  max-width: 100%;
  background: transparent;
}

.site-logo--footer .site-logo__image {
  height: clamp(112px, 11vw, 132px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.35vw, 20px);
  margin-left: auto;
}

.site-nav__link {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  border: 0;
  border-radius: 0;
  padding: 0 2px;
  color: inherit;
  background: transparent;
  font-size: 14px;
  font-weight: 680;
  letter-spacing: 0.015em;
  opacity: 0.86;
  transition: color 180ms var(--ease), opacity 180ms var(--ease), transform 180ms var(--ease);
}

.site-nav__link::after {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 4px;
  left: 2px;
  height: 2px;
  background: var(--color-brand);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms var(--ease);
}

.site-nav__link:hover,
.site-nav__link:focus-visible,
.site-nav__link.is-active {
  background: transparent;
  opacity: 1;
}

.site-nav__link:hover::after,
.site-nav__link:focus-visible::after,
.site-nav__link.is-active::after {
  transform: scaleX(1);
}

.site-header.is-scrolled .site-nav__link,
.site-header.is-menu-open .site-nav__link {
  background: transparent;
}

.site-header.is-scrolled .site-nav__link:hover,
.site-header.is-scrolled .site-nav__link:focus-visible,
.site-header.is-scrolled .site-nav__link.is-active,
.site-header.is-menu-open .site-nav__link:hover,
.site-header.is-menu-open .site-nav__link:focus-visible,
.site-header.is-menu-open .site-nav__link.is-active {
  background: transparent;
}

.site-nav__link--phone {
  min-height: 46px;
  margin-left: 6px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  padding: 0 16px;
  background: rgba(255, 255, 255, 0.07);
  font-size: 14px;
  font-weight: 760;
  letter-spacing: 0;
  opacity: 1;
}

.site-nav__link--phone::after,
.site-nav__link--cta::after {
  display: none;
}

.site-nav__link--phone:hover,
.site-nav__link--phone:focus-visible {
  background: rgba(255, 255, 255, 0.13);
}

.site-header.is-scrolled .site-nav__link--phone,
.site-header.is-menu-open .site-nav__link--phone {
  color: var(--color-forest);
  border-color: rgba(16, 47, 42, 0.2);
  background: rgba(16, 47, 42, 0.06);
}

.site-nav__link--cta {
  min-height: 46px;
  color: #ffffff;
  border: 1px solid var(--color-brand);
  border-radius: 999px;
  padding: 0 20px;
  background: var(--color-brand);
  font-weight: 780;
  letter-spacing: 0;
  opacity: 1;
  text-shadow: none;
  box-shadow: 0 10px 22px rgba(9, 17, 16, 0.18);
}

.site-nav__link--cta:hover,
.site-nav__link--cta:focus-visible,
.site-nav__link--cta.is-active {
  color: #ffffff;
  background: var(--color-brand-dark);
  transform: translateY(-1px);
}

.site-header.is-scrolled .site-nav__link--cta,
.site-header.is-menu-open .site-nav__link--cta {
  color: #ffffff;
  border-color: var(--color-brand);
  background: var(--color-brand);
}

.site-header.is-scrolled .site-nav__link--cta:hover,
.site-header.is-scrolled .site-nav__link--cta:focus-visible,
.site-header.is-scrolled .site-nav__link--cta.is-active,
.site-header.is-menu-open .site-nav__link--cta:hover,
.site-header.is-menu-open .site-nav__link--cta:focus-visible,
.site-header.is-menu-open .site-nav__link--cta.is-active {
  color: #ffffff;
  border-color: var(--color-brand-dark);
  background: var(--color-brand-dark);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 999px;
  color: inherit;
  background: rgba(255, 255, 255, 0.08);
  transition: background 180ms var(--ease), border-color 180ms var(--ease);
}

.site-header.is-scrolled .nav-toggle,
.site-header.is-menu-open .nav-toggle {
  border-color: var(--color-line);
  background: rgba(21, 25, 26, 0.05);
}

.nav-toggle__bar {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms var(--ease), opacity 180ms var(--ease);
}

.site-header.is-menu-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-menu-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}

.site-header.is-menu-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero,
.page-hero {
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.hero--home {
  min-height: 760px;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding: 142px 0 96px;
}

.hero-slider,
.hero-slide,
.hero-slide__picture,
.hero__shade,
.page-hero__media,
.page-hero__shade {
  position: absolute;
  inset: 0;
}

.hero-slider {
  z-index: 0;
  background: var(--color-forest);
}

.hero-slide {
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 800ms var(--ease);
}

.hero-slide.is-active,
.hero-slide:first-child {
  opacity: 1;
}

.js .hero-slide:first-child:not(.is-active) {
  opacity: 0;
}

.hero-slide.is-active {
  pointer-events: auto;
}

.hero-slide__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1);
  transform-origin: center center;
  transition: transform 800ms var(--ease);
}

.hero-motion-ready .hero-slide.is-active .hero-slide__picture img {
  animation: hero-image-settle 7600ms cubic-bezier(0.18, 0.72, 0.22, 1) both;
}

@keyframes hero-image-settle {
  from {
    transform: scale(1.03);
  }

  to {
    transform: scale(1);
  }
}

.hero-slide--01 .hero-slide__picture img {
  object-position: 52% center;
}

.hero-slide--02 .hero-slide__picture img {
  object-position: 52% center;
}

.hero-slide--03 .hero-slide__picture img {
  object-position: 52% center;
}

.hero__shade {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(10, 18, 17, 0.9) 0%, rgba(10, 18, 17, 0.68) 38%, rgba(10, 18, 17, 0.18) 68%, rgba(10, 18, 17, 0.03) 100%),
    linear-gradient(0deg, rgba(10, 18, 17, 0.52), transparent 48%);
}

.hero__inner {
  position: relative;
  z-index: 4;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 58px;
}

.hero__content {
  max-width: 790px;
  text-shadow: 0 2px 30px rgba(0, 0, 0, 0.34);
}

.hero__lead {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 19px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero__meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 890px;
  border-top: 1px solid rgba(255, 255, 255, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.24);
}

.hero__meta div {
  padding: 22px 24px 20px 0;
}

.hero__meta strong,
.hero__meta span {
  display: block;
}

.hero__meta strong {
  margin-bottom: 5px;
  color: #f0d8b1;
  font-size: 15px;
}

.hero__meta span {
  color: rgba(255, 255, 255, 0.86);
  font-weight: 760;
}

.hero-motion-ready.hero-content--animate .hero__content > h1,
.hero-motion-ready.hero-content--animate .hero__lead,
.hero-motion-ready.hero-content--animate .hero__actions,
.hero-motion-ready.hero-content--animate .hero__meta {
  animation: hero-content-enter 620ms var(--ease) both;
}

.hero-motion-ready.hero-content--animate .hero__content > h1 {
  animation-delay: 100ms;
}

.hero-motion-ready.hero-content--animate .hero__lead {
  animation-delay: 250ms;
}

.hero-motion-ready.hero-content--animate .hero__actions {
  animation-delay: 400ms;
}

.hero-motion-ready.hero-content--animate .hero__meta {
  animation-delay: 560ms;
}

@keyframes hero-content-enter {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

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

.hero-controls {
  position: absolute;
  right: max(var(--space-page), calc((100% - var(--container)) / 2));
  bottom: 34px;
  z-index: 5;
  display: none;
  align-items: center;
  gap: 12px;
}

.js .hero-controls {
  display: flex;
}

.hero-motion-ready .hero-controls {
  animation: hero-controls-enter 520ms var(--ease) 720ms both;
}

@keyframes hero-controls-enter {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

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

.hero-control,
.hero-dot {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
  background: rgba(10, 18, 17, 0.24);
  backdrop-filter: blur(12px);
  transition: background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease);
}

.hero-control {
  min-width: 74px;
  min-height: 42px;
  border-radius: var(--radius-sm);
  padding: 0 12px;
  font-size: 12px;
  font-weight: 820;
  text-transform: uppercase;
}

.hero-control:hover,
.hero-control:focus-visible {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-1px);
}

.hero-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.hero-dot {
  width: 38px;
  height: 6px;
  border-radius: 999px;
  padding: 0;
}

.hero-dot.is-active {
  border-color: #f0d8b1;
  background: #f0d8b1;
}

.hero-dot:hover,
.hero-dot:focus-visible {
  border-color: rgba(255, 255, 255, 0.62);
  background: rgba(255, 255, 255, 0.34);
}

.hero-dot.is-active:hover,
.hero-dot.is-active:focus-visible {
  border-color: #ffffff;
  background: #ffffff;
}

.value-strip {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-line);
}

.value-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.value-strip__item {
  min-height: 114px;
  padding: 26px 24px;
  border-left: 1px solid var(--color-line);
}

.value-strip__item:last-child {
  border-right: 1px solid var(--color-line);
}

.value-strip__item span,
.value-strip__item strong {
  display: block;
}

.value-strip__item span {
  margin-bottom: 7px;
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.value-strip__item strong {
  font-size: 19px;
  line-height: 1.18;
}

.services-board {
  background: var(--color-white);
}

.service-board {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 1fr);
  gap: 70px;
  align-items: start;
}

.service-board__stage {
  position: sticky;
  top: 104px;
  min-height: 560px;
  height: min(70vh, 660px);
  overflow: hidden;
  border-radius: var(--radius);
  color: #ffffff;
  background:
    linear-gradient(135deg, rgba(154, 46, 42, 0.16), transparent 42%),
    var(--color-forest);
  box-shadow: var(--shadow-soft);
}

.service-board__stage::before {
  content: "";
  position: absolute;
  inset: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  pointer-events: none;
  z-index: 4;
}

.service-visual {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 52px 44px;
  opacity: 0;
  transition: opacity 360ms var(--ease), transform 900ms var(--ease);
  transform: translateY(14px);
}

.service-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(10, 18, 17, 0.08) 0%, rgba(10, 18, 17, 0.42) 42%, rgba(10, 18, 17, 0.94) 100%),
    linear-gradient(90deg, rgba(10, 18, 17, 0.66), rgba(10, 18, 17, 0.14));
}

.service-visual__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.86;
}

.service-visual__image--wide {
  object-position: 45% center;
}

.service-visual > :not(.service-visual__image) {
  position: relative;
  z-index: 2;
}

.service-visual.is-active {
  opacity: 1;
  transform: translateY(0);
}

.service-visual__tag {
  display: inline-flex;
  width: fit-content;
  margin-bottom: auto;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  color: #f0d8b1;
  background: rgba(255, 255, 255, 0.07);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.service-visual h3 {
  margin-bottom: 18px;
  font-family: var(--font-display);
  font-size: 46px;
  line-height: 1;
}

.service-visual p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
}

.service-visual ul {
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-visual li {
  position: relative;
  padding-left: 22px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 680;
}

.service-visual li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 10px;
  height: 2px;
  background: var(--color-brand);
}

.service-board__list {
  border-top: 1px solid var(--color-line);
}

.service-entry {
  border-bottom: 1px solid var(--color-line);
  padding: 28px 0;
  transition: background 180ms var(--ease), padding 180ms var(--ease), margin 180ms var(--ease);
}

.service-entry.is-active {
  margin-inline: -24px;
  padding: 30px 24px;
  background: var(--color-page);
}

.service-entry--featured h3 button {
  font-size: 24px;
}

.service-entry__head {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.service-entry__number {
  color: var(--color-brand);
  font-weight: 900;
}

.service-entry h3 {
  margin: 0;
}

.service-entry h3 button {
  width: 100%;
  border: 0;
  padding: 0;
  color: var(--color-text);
  background: transparent;
  text-align: left;
  font-weight: 830;
}

.service-entry h3 button::after {
  content: "";
  display: inline-block;
  width: 34px;
  height: 2px;
  margin-left: 12px;
  vertical-align: middle;
  background: currentColor;
  transform: translateY(-2px);
  opacity: 0.36;
  transition: width 180ms var(--ease), opacity 180ms var(--ease);
}

.service-entry h3 button:hover::after,
.service-entry h3 button:focus-visible::after,
.service-entry.is-active h3 button::after {
  width: 50px;
  opacity: 0.95;
}

.service-entry > p {
  max-width: 680px;
  margin: 12px 0 0 72px;
}

.service-entry__detail {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 260ms var(--ease), opacity 220ms var(--ease);
}

.service-entry.is-active .service-entry__detail {
  max-height: 220px;
  opacity: 1;
}

.service-entry__detail ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0 72px;
  padding: 0;
  list-style: none;
}

.service-entry__detail li {
  position: relative;
  padding-left: 22px;
  color: var(--color-muted);
}

.service-entry__detail li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 10px;
  height: 2px;
  background: var(--color-brand);
}

.process-section,
.faq-section {
  background: var(--color-page);
}

.process-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.process-intro {
  position: sticky;
  top: 110px;
}

.process-intro p {
  font-size: 18px;
}

.timeline {
  display: grid;
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-top: 1px solid var(--color-line);
}

.timeline__item {
  display: grid;
  grid-template-columns: 78px minmax(0, 1fr);
  gap: 24px;
  padding: 30px 0;
  border-bottom: 1px solid var(--color-line);
}

.timeline__number {
  color: var(--color-brand);
  font-weight: 900;
}

.timeline__item h3 {
  margin-bottom: 8px;
}

.timeline__item p {
  max-width: 620px;
  margin-bottom: 0;
}

.region-section {
  background: var(--color-white);
}

.region-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.72fr);
  gap: 60px;
  align-items: center;
}

.region-card {
  border-left: 6px solid var(--color-brand);
  padding: 10px 0 10px 28px;
}

.region-card__label {
  display: block;
  margin-bottom: 12px;
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 860;
  text-transform: uppercase;
}

.region-card p {
  max-width: 740px;
  font-size: 18px;
}

.region-coverage {
  width: 100%;
  min-width: 0;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  overflow: hidden;
  background:
    linear-gradient(145deg, #fffdf8 0%, var(--color-surface) 100%);
  box-shadow: var(--shadow-soft);
}

.region-coverage__visual {
  display: grid;
  min-height: 188px;
  place-items: center;
  padding: 30px 38px 26px;
  border-bottom: 1px solid var(--color-line);
  background:
    radial-gradient(circle at center, rgba(16, 47, 42, 0.06) 0, rgba(16, 47, 42, 0.02) 48%, transparent 70%),
    rgba(237, 242, 238, 0.46);
}

.region-coverage__visual svg {
  width: min(100%, 292px);
  height: auto;
  filter: drop-shadow(0 9px 14px rgba(16, 47, 42, 0.12));
}

.region-coverage__visual path {
  fill: #e6eee9;
  stroke: rgba(16, 47, 42, 0.68);
  stroke-width: 1.8;
  stroke-linejoin: round;
  vector-effect: non-scaling-stroke;
}

.region-coverage__map-badge {
  filter: drop-shadow(0 3px 4px rgba(16, 47, 42, 0.2));
}

.region-coverage__map-badge-shape {
  fill: var(--color-brand);
  stroke: rgba(255, 255, 255, 0.82);
  stroke-width: 1.4;
}

.region-coverage__map-badge-cross {
  fill: #ffffff;
}

.region-coverage__content {
  padding: 24px 28px 28px;
}

.region-coverage__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.region-coverage__badge {
  display: inline-flex;
  min-height: 32px;
  max-width: 100%;
  align-items: center;
  border: 1px solid rgba(16, 47, 42, 0.14);
  border-radius: 999px;
  padding: 6px 11px;
  color: var(--color-forest);
  background: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 820;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-transform: uppercase;
}

.region-coverage__badge--primary {
  gap: 7px;
  border-color: var(--color-brand);
  color: #ffffff;
  background: var(--color-brand);
}

.region-coverage__cross {
  position: relative;
  flex: 0 0 auto;
  width: 12px;
  height: 12px;
}

.region-coverage__cross::before,
.region-coverage__cross::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  border-radius: 1px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.region-coverage__cross::before {
  width: 10px;
  height: 3px;
}

.region-coverage__cross::after {
  width: 3px;
  height: 10px;
}

.region-coverage__content p {
  margin: 18px 0 0;
  color: var(--color-muted);
  font-size: 15px;
  line-height: 1.6;
}

.cta-band {
  padding: 76px 0;
  color: #ffffff;
  background: var(--color-ink);
}

.cta-band__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 36px;
  align-items: center;
}

.cta-band h2 {
  max-width: 720px;
  margin-bottom: 12px;
  color: #ffffff;
}

.cta-band p {
  max-width: 680px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}

.faq-intro p {
  font-size: 18px;
}

.faq-list {
  border-top: 1px solid var(--color-line);
}

.faq-item {
  border-bottom: 1px solid var(--color-line);
}

.faq-item summary {
  position: relative;
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 20px 48px 20px 0;
  color: var(--color-text);
  font-weight: 820;
  list-style: none;
  cursor: pointer;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 0;
  top: 50%;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  color: #ffffff;
  background: var(--color-forest);
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
  background: var(--color-brand);
}

.faq-item p {
  max-width: 680px;
  margin: -4px 0 24px;
}

.inquiry-section {
  background: var(--color-white);
}

.inquiry-layout,
.contact-main__layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.74fr) minmax(0, 1fr);
  gap: 56px;
  align-items: start;
}

.inquiry-copy,
.contact-aside {
  padding-top: 14px;
}

.inquiry-detail-link {
  display: inline-block;
  max-width: 100%;
  margin-top: 12px;
  color: var(--color-brand);
  font-weight: 760;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

.inquiry-detail-link:hover {
  color: var(--color-brand-dark);
}

.contact-lines {
  display: grid;
  gap: 9px;
  margin-top: 34px;
  color: var(--color-text);
  font-weight: 760;
}

.contact-lines a {
  width: fit-content;
  color: var(--color-brand);
  overflow-wrap: anywhere;
}

.form {
  position: relative;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 32px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.form-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.form-row {
  display: grid;
  gap: 16px;
}

.form [data-move-fields][hidden],
.form [data-location-field][hidden] {
  display: none;
}

.form-row--split {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-row--split.form-row--single {
  grid-template-columns: 1fr;
}

.form label {
  display: grid;
  gap: 8px;
  margin-bottom: 18px;
  color: var(--color-text);
  font-weight: 760;
}

.form label span {
  font-size: 15px;
}

.form input,
.form select,
.form textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid rgba(25, 29, 30, 0.2);
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  color: var(--color-text);
  background: #fdfbf7;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}

.form textarea {
  resize: vertical;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  border-color: var(--color-brand);
  background: #ffffff;
  box-shadow: 0 0 0 4px rgba(154, 46, 42, 0.12);
  outline: none;
}

.checkbox-field {
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  color: var(--color-muted);
  font-weight: 520;
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  margin-top: 4px;
  padding: 0;
}

.checkbox-field span {
  font-size: 14px;
  font-weight: 520;
  line-height: 1.5;
}

.form-status-hero {
  min-height: 680px;
}

.form-status-hero .page-hero__media::after {
  content: none;
}

.form-status-hero .page-hero__inner {
  max-width: 900px;
}

.page-hero--contact .page-hero__media::after {
  content: none;
}

.page-hero--contact .page-hero__media::before {
  content: none;
}

.page-hero--contact .page-hero__inner {
  max-width: 900px;
  text-align: center;
}

.page-hero--contact .page-hero__inner p {
  margin-inline: auto;
}

.form-status-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-top: 30px;
}

.page-hero {
  min-height: 470px;
  display: flex;
  align-items: end;
  padding: 142px 0 76px;
}

.page-hero__media {
  z-index: 0;
  background:
    linear-gradient(135deg, rgba(154, 46, 42, 0.24), transparent 42%),
    var(--color-forest);
}

.page-hero__media picture,
.page-hero__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.page-hero__media picture {
  display: block;
}

.page-hero__media img {
  object-fit: cover;
}

.page-hero--contact .page-hero__media img {
  object-position: center 22%;
}

.page-hero__media::before,
.page-hero__media::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.page-hero__media::before {
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 18, 17, 0.2), transparent 58%);
}

.page-hero__media::after {
  right: 12%;
  bottom: 14%;
  width: 28%;
  height: 42%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.page-hero--legal {
  min-height: 400px;
}

.page-hero--legal-single .page-hero__media::after {
  content: none;
}

.page-hero--legal-single .page-hero__inner {
  max-width: var(--container);
  text-align: left;
}

.page-hero__shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(10, 18, 17, 0.82), rgba(10, 18, 17, 0.5) 52%, rgba(10, 18, 17, 0.18)),
    linear-gradient(0deg, rgba(10, 18, 17, 0.54), transparent 48%);
}

.page-hero--contact .page-hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 15, 14, 0.76), rgba(8, 15, 14, 0.62) 54%, rgba(8, 15, 14, 0.4)),
    linear-gradient(0deg, rgba(8, 15, 14, 0.58), rgba(8, 15, 14, 0.08) 72%);
}

.page-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 850px;
  margin-inline: auto;
}

.page-hero__inner--center {
  text-align: center;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.page-hero__inner--center p {
  margin-inline: auto;
}

.contact-methods {
  background: var(--color-white);
  padding-bottom: 48px;
}

.contact-methods__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.contact-method {
  min-height: 250px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  padding: 24px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(21, 25, 26, 0.07);
}

.contact-method__label {
  display: block;
  margin-bottom: 18px;
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 820;
  text-transform: uppercase;
}

.contact-method h2 {
  margin-bottom: 14px;
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.2;
  overflow-wrap: anywhere;
}

.contact-method p {
  margin-bottom: 0;
}

.contact-main {
  background: var(--color-page);
  padding-top: 76px;
}

.contact-main__intro {
  grid-column: 1 / -1;
  max-width: 780px;
}

.contact-main__layout {
  row-gap: 34px;
}

.contact-main__intro > p {
  margin-bottom: 0;
}

.contact-aside .prep-list {
  margin-top: 0;
}

.prep-list,
.privacy-note,
.legal-alert,
.legal-content {
  border-radius: var(--radius);
}

.prep-list {
  margin-top: 30px;
  border-top: 1px solid var(--color-line);
  padding-top: 24px;
}

.prep-list ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.prep-list li {
  position: relative;
  padding-left: 22px;
  color: var(--color-muted);
}

.prep-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.76em;
  width: 10px;
  height: 2px;
  background: var(--color-brand);
}

.privacy-note {
  margin-top: 26px;
  border: 1px solid rgba(154, 46, 42, 0.3);
  padding: 22px;
  background: rgba(154, 46, 42, 0.07);
}

.privacy-note h3 {
  margin-bottom: 12px;
}

.privacy-note p {
  margin-bottom: 0;
}

.contact-process {
  background: var(--color-white);
}

.faq-section--contact {
  background: var(--color-page);
}

.legal-section {
  background: var(--color-white);
}

.legal-layout {
  max-width: 920px;
}

.legal-alert {
  margin-bottom: 28px;
  border: 1px solid rgba(154, 46, 42, 0.3);
  padding: 24px;
  background: rgba(154, 46, 42, 0.07);
}

.legal-alert strong {
  display: block;
  margin-bottom: 6px;
}

.legal-alert p {
  margin-bottom: 0;
}

.legal-content {
  border: 1px solid var(--color-line);
  padding: 44px;
  background: #ffffff;
}

.legal-content h2 {
  margin: 34px 0 14px;
  padding-top: 26px;
  border-top: 1px solid var(--color-line);
  font-family: var(--font-body);
  font-size: 23px;
  line-height: 1.2;
}

.legal-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.legal-content p,
.legal-content li {
  margin-bottom: 8px;
  color: var(--color-muted);
}

.legal-content ul {
  margin: 12px 0 20px;
  padding-left: 22px;
}

.legal-content a {
  color: var(--color-brand);
  overflow-wrap: anywhere;
}

/* Referenzseite */
.references-hero {
  min-height: 520px;
}

.references-hero .page-hero__media {
  background: var(--color-forest);
}

.references-hero .page-hero__media img {
  object-position: center 28%;
}

.references-hero .page-hero__media::before,
.references-hero .page-hero__media::after {
  content: none;
}

.references-hero .page-hero__shade {
  background:
    linear-gradient(90deg, rgba(8, 15, 14, 0.9), rgba(8, 15, 14, 0.66) 55%, rgba(8, 15, 14, 0.28)),
    linear-gradient(0deg, rgba(8, 15, 14, 0.58), rgba(8, 15, 14, 0.06) 72%);
}

.references-hero__intro {
  margin-bottom: 0;
}

.references-hero__note {
  margin: 22px 0 0;
  border-left: 2px solid rgba(240, 216, 177, 0.72);
  padding-left: 16px;
  color: rgba(255, 255, 255, 0.7) !important;
  font-size: 15px !important;
  line-height: 1.55;
}

@media (max-width: 720px) {
  .page-hero--contact .page-hero__media img {
    object-position: center 64%;
  }

  .references-hero .page-hero__media img {
    object-position: center 56%;
  }

  .page-hero--contact .page-hero__shade,
  .references-hero .page-hero__shade {
    background:
      linear-gradient(90deg, rgba(8, 15, 14, 0.78), rgba(8, 15, 14, 0.6)),
      linear-gradient(0deg, rgba(8, 15, 14, 0.68), rgba(8, 15, 14, 0.16) 72%);
  }
}

.references-projects {
  background: var(--color-page);
}

.references-projects__list {
  display: grid;
}

.reference-project {
  min-width: 0;
  padding: 0 0 88px;
  border-bottom: 1px solid var(--color-line);
}

.reference-project + .reference-project {
  padding-top: 88px;
}

.reference-project:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.reference-project__header {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.7fr);
  align-items: end;
  gap: 36px;
  margin-bottom: 36px;
}

.reference-project__title {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  min-width: 0;
}

.reference-project__number {
  flex: 0 0 auto;
  margin-top: 7px;
  color: var(--color-brand);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.08em;
}

.reference-project__header h2 {
  min-width: 0;
  margin-bottom: 0;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.reference-project__header p {
  max-width: 460px;
  margin: 0;
  justify-self: end;
}

.before-after-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.reference-image-card {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-white);
  box-shadow: var(--shadow-soft);
  transition: transform 220ms var(--ease), border-color 220ms var(--ease), box-shadow 220ms var(--ease);
}

.reference-image-card:hover,
.reference-image-card:focus-within {
  border-color: rgba(154, 46, 42, 0.36);
  box-shadow: 0 22px 52px rgba(21, 25, 26, 0.15);
  transform: translateY(-3px);
}

.reference-image-card__link {
  position: relative;
  display: block;
  min-width: 0;
  background: #e8e8e4;
}

.reference-image-card__link img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 4;
  object-fit: contain;
}

.reference-image-card__badge {
  position: absolute;
  z-index: 1;
  top: 18px;
  left: 18px;
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  padding: 0 14px;
  color: #ffffff;
  background: rgba(21, 25, 26, 0.86);
  box-shadow: 0 8px 22px rgba(9, 17, 16, 0.22);
  font-size: 12px;
  font-weight: 820;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.reference-image-card--after .reference-image-card__badge {
  background: rgba(16, 47, 42, 0.9);
}

.references-cta {
  padding-top: 0;
  background: var(--color-page);
}

.references-cta__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 48px;
  border-radius: var(--radius);
  padding: 56px;
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(154, 46, 42, 0.2), transparent 52%),
    var(--color-forest);
  box-shadow: var(--shadow-strong);
}

.references-cta__content {
  max-width: 720px;
}

.references-cta__content h2 {
  margin-bottom: 14px;
}

.references-cta__content p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.76);
}

.references-cta__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

.site-footer {
  color: #ffffff;
  background: var(--color-ink);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: minmax(240px, 1.15fr) repeat(3, minmax(150px, 0.62fr));
  gap: 40px;
  padding: 66px 0 44px;
}

.site-footer__brand p,
.site-footer__col p,
.site-footer__bottom {
  color: rgba(255, 255, 255, 0.68);
}

.site-logo--footer {
  margin-bottom: 18px;
}

.site-footer__col h2 {
  margin-bottom: 16px;
  font-family: var(--font-body);
  color: #ffffff;
  font-size: 16px;
  line-height: 1.2;
}

.site-footer__col a,
.site-footer__col p {
  display: block;
  margin: 0 0 8px;
  overflow-wrap: anywhere;
}

.site-footer__col a {
  color: rgba(255, 255, 255, 0.74);
  transition: color 180ms var(--ease), transform 180ms var(--ease);
}

.site-footer__col a:hover,
.site-footer__col a:focus-visible {
  color: #ffffff;
  transform: translateX(2px);
}

.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 15px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 90;
  width: 60px;
  height: 60px;
  min-height: 60px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  padding: 0;
  color: #ffffff;
  background: var(--color-whatsapp);
  box-shadow: 0 16px 34px rgba(12, 80, 44, 0.28);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

.whatsapp-float::before {
  content: "";
  width: 30px;
  height: 30px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.601 2.326A7.854 7.854 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.933 7.933 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93a7.898 7.898 0 0 0-2.327-5.607zM7.994 14.521a6.573 6.573 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.558 6.558 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592zm3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.116.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.116-.198-.013-.306.089-.405.09-.088.197-.232.296-.347.1-.116.133-.198.198-.33.065-.134.033-.248-.017-.347-.05-.1-.445-1.076-.611-1.47-.16-.389-.323-.335-.445-.34-.116-.005-.248-.005-.38-.005a.729.729 0 0 0-.529.248c-.182.198-.691.677-.691 1.654s.71 1.916.81 2.049c.098.133 1.394 2.132 3.383 2.992.47.205.84.33 1.129.422.475.15.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath d='M13.601 2.326A7.854 7.854 0 0 0 7.994 0C3.627 0 .068 3.558.064 7.926c0 1.399.366 2.76 1.057 3.965L0 16l4.204-1.102a7.933 7.933 0 0 0 3.79.965h.004c4.368 0 7.926-3.558 7.93-7.93a7.898 7.898 0 0 0-2.327-5.607zM7.994 14.521a6.573 6.573 0 0 1-3.356-.92l-.24-.144-2.494.654.666-2.433-.156-.251a6.56 6.56 0 0 1-1.007-3.505c0-3.626 2.957-6.584 6.591-6.584a6.56 6.56 0 0 1 4.66 1.931 6.558 6.558 0 0 1 1.928 4.66c-.004 3.639-2.961 6.592-6.592 6.592zm3.615-4.934c-.197-.099-1.17-.578-1.353-.646-.182-.065-.315-.099-.445.099-.133.197-.513.646-.627.775-.116.133-.232.148-.43.05-.197-.1-.836-.308-1.592-.985-.59-.525-.985-1.175-1.103-1.372-.116-.198-.013-.306.089-.405.09-.088.197-.232.296-.347.1-.116.133-.198.198-.33.065-.134.033-.248-.017-.347-.05-.1-.445-1.076-.611-1.47-.16-.389-.323-.335-.445-.34-.116-.005-.248-.005-.38-.005a.729.729 0 0 0-.529.248c-.182.198-.691.677-.691 1.654s.71 1.916.81 2.049c.098.133 1.394 2.132 3.383 2.992.47.205.84.33 1.129.422.475.15.904.129 1.246.08.38-.058 1.171-.48 1.338-.943.164-.464.164-.86.114-.943-.049-.084-.182-.133-.38-.232z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.whatsapp-float span {
  display: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 20px 42px rgba(12, 80, 44, 0.36);
}

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms var(--ease), transform 520ms var(--ease);
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js .hero .reveal,
.js .page-hero .reveal {
  opacity: 1;
  transform: none;
}

@media (max-width: 1180px) {
  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 40px;
  }

  .site-nav {
    gap: 14px;
  }

  .section-heading--split,
  .service-board,
  .process-layout,
  .region-layout,
  .faq-layout,
  .inquiry-layout,
  .contact-main__layout {
    grid-template-columns: 1fr;
  }

  .service-board__stage {
    position: relative;
    top: auto;
    min-height: 430px;
    height: 54vh;
  }

  .process-intro {
    position: static;
  }

  .contact-methods__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 940px) {
  :root {
    --header-height: 82px;
    --space-page: 28px;
  }

  .site-header__inner {
    width: min(100% - 32px, 1320px);
    gap: 20px;
  }

  .site-header .site-logo__image {
    height: 60px;
  }

  .site-header.is-scrolled .site-logo__image {
    height: 54px;
  }

  .js .nav-toggle {
    display: inline-flex;
  }

  .js .site-nav {
    position: fixed;
    left: 16px;
    right: 16px;
    top: 92px;
    display: grid;
    gap: 0;
    border: 1px solid var(--color-line);
    border-radius: 14px;
    padding: 10px 14px 14px;
    color: var(--color-text);
    background: #fffaf2;
    box-shadow: 0 24px 60px rgba(9, 17, 16, 0.22);
    text-shadow: none;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition: opacity 180ms var(--ease), transform 180ms var(--ease);
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  html:not(.js) .site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  html:not(.js) .site-nav {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  html:not(.js) .site-nav__link {
    justify-content: center;
  }

  html:not(.js) .hero--home {
    padding-top: 220px;
  }

  html:not(.js) .page-hero {
    padding-top: 220px;
  }

  .site-nav__link,
  .site-header.is-scrolled .site-nav__link,
  .site-header.is-menu-open .site-nav__link {
    width: 100%;
    min-height: 50px;
    justify-content: flex-start;
    border: 0;
    border-bottom: 1px solid var(--color-line);
    border-radius: 0;
    padding: 0 4px;
    background: transparent;
    opacity: 1;
  }

  .site-nav__link::after {
    display: none;
  }

  .site-nav__link:hover,
  .site-nav__link:focus-visible,
  .site-nav__link.is-active,
  .site-header.is-scrolled .site-nav__link:hover,
  .site-header.is-scrolled .site-nav__link:focus-visible,
  .site-header.is-scrolled .site-nav__link.is-active,
  .site-header.is-menu-open .site-nav__link:hover,
  .site-header.is-menu-open .site-nav__link:focus-visible,
  .site-header.is-menu-open .site-nav__link.is-active {
    background: rgba(21, 25, 26, 0.04);
  }

  .site-nav__link--cta,
  .site-header.is-scrolled .site-nav__link--cta,
  .site-header.is-menu-open .site-nav__link--cta {
    min-height: 48px;
    margin-top: 8px;
    border: 1px solid var(--color-brand);
    border-radius: 999px;
    justify-content: center;
    background: var(--color-brand);
  }

  .site-nav__link--cta:hover,
  .site-nav__link--cta:focus-visible,
  .site-nav__link--cta.is-active,
  .site-header.is-scrolled .site-nav__link--cta:hover,
  .site-header.is-scrolled .site-nav__link--cta:focus-visible,
  .site-header.is-scrolled .site-nav__link--cta.is-active,
  .site-header.is-menu-open .site-nav__link--cta:hover,
  .site-header.is-menu-open .site-nav__link--cta:focus-visible,
  .site-header.is-menu-open .site-nav__link--cta.is-active {
    background: var(--color-brand-dark);
  }

  .site-nav__link--phone,
  .site-header.is-scrolled .site-nav__link--phone,
  .site-header.is-menu-open .site-nav__link--phone {
    display: inline-flex;
    min-height: 48px;
    margin: 10px 0 0;
    border: 1px solid rgba(16, 47, 42, 0.2);
    border-radius: 999px;
    padding: 0 16px;
    justify-content: center;
    background: rgba(16, 47, 42, 0.05);
  }

  .value-strip__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .value-strip__item:nth-child(2n) {
    border-right: 1px solid var(--color-line);
  }

  .cta-band__inner {
    grid-template-columns: 1fr;
  }

  .cta-band__actions {
    justify-content: flex-start;
  }

  .site-footer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .reference-project__header,
  .references-cta__inner {
    grid-template-columns: 1fr;
  }

  .reference-project__header p {
    max-width: 680px;
    justify-self: start;
  }

  .references-cta__actions {
    justify-content: flex-start;
  }
}

@media (min-width: 721px) and (max-width: 900px) {
  .hero-slide--01 .hero-slide__picture img {
    object-position: 63% center;
  }

  .hero-slide--02 .hero-slide__picture img {
    object-position: 75% center;
  }

  .hero-slide--03 .hero-slide__picture img {
    object-position: 74% center;
  }
}

@media (max-width: 720px) {
  :root {
    --space-section: 72px;
    --space-page: 22px;
  }

  body {
    font-size: 16px;
  }

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 32px;
  }

  h3 {
    font-size: 19px;
  }

  .section {
    padding: var(--space-section) 0;
  }

  .hero--home {
    min-height: 660px;
    min-height: 100svh;
    padding: 120px 0 88px;
  }

  .hero__inner {
    gap: 34px;
  }

  .hero__lead,
  .page-hero p {
    font-size: 16px;
  }

  .hero__meta {
    grid-template-columns: 1fr;
    max-width: 460px;
  }

  .hero__meta div {
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  }

  .hero__meta div:last-child {
    border-bottom: 0;
  }

  .hero__shade {
    background:
      linear-gradient(90deg, rgba(10, 18, 17, 0.9), rgba(10, 18, 17, 0.62)),
      linear-gradient(0deg, rgba(10, 18, 17, 0.58), transparent 48%);
  }

  .hero-slide--01 .hero-slide__picture img,
  .hero-slide--02 .hero-slide__picture img,
  .hero-slide--03 .hero-slide__picture img {
    object-position: center center;
  }

  .hero-controls {
    right: auto;
    left: var(--space-page);
    bottom: 24px;
  }

  .hero-control {
    min-width: 62px;
    min-height: 40px;
    padding: 0 9px;
  }

  .hero-dot {
    width: 28px;
  }

  .value-strip__grid,
  .form-row--split,
  .contact-methods__grid,
  .site-footer__grid {
    grid-template-columns: 1fr;
  }

  .value-strip__item,
  .value-strip__item:last-child,
  .value-strip__item:nth-child(2n) {
    min-height: auto;
    border-right: 1px solid var(--color-line);
    border-bottom: 1px solid var(--color-line);
  }

  .service-board {
    gap: 42px;
  }

  .service-board__stage {
    min-height: 390px;
    height: auto;
  }

  .service-visual {
    padding: 34px 28px;
  }

  .service-visual h3 {
    font-size: 34px;
  }

  .service-visual p {
    font-size: 16px;
  }

  .service-entry.is-active {
    margin-inline: 0;
    padding: 28px 0;
    background: transparent;
  }

  .service-entry__head {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-entry--featured h3 button {
    font-size: 21px;
  }

  .service-entry > p,
  .service-entry__detail ul {
    margin-left: 0;
  }

  .timeline__item {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .page-hero {
    min-height: 420px;
    padding: 124px 0 58px;
  }

  .page-hero--legal {
    min-height: 360px;
  }

  .references-hero {
    min-height: 440px;
  }

  .references-hero .page-hero__media::after {
    right: -26%;
    width: 78%;
    opacity: 0.42;
  }

  .form-status-hero {
    min-height: 600px;
  }

  .page-hero__media::after {
    right: -18%;
    width: 68%;
    opacity: 0.5;
  }

  .form,
  .contact-method,
  .legal-content {
    padding: 24px;
  }

  .region-card {
    padding-left: 20px;
  }

  .region-coverage__visual {
    min-height: 158px;
    padding: 24px 30px 22px;
  }

  .region-coverage__visual svg {
    width: min(100%, 248px);
  }

  .region-coverage__content {
    padding: 22px;
  }

  .site-footer__bottom {
    flex-direction: column;
  }

  .reference-project {
    padding-bottom: 64px;
  }

  .reference-project + .reference-project {
    padding-top: 64px;
  }

  .reference-project__header {
    gap: 18px;
    margin-bottom: 26px;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .references-cta__inner {
    gap: 28px;
    padding: 38px 30px;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
  }
}

@media (max-width: 460px) {
  :root {
    --space-page: 18px;
  }

  .container {
    width: min(100% - 36px, var(--container));
  }

  .site-header__inner {
    width: min(100% - 24px, var(--container-wide));
  }

  .site-logo--footer .site-logo__image {
    height: 104px;
  }

  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 29px;
  }

  .hero__actions,
  .button,
  .cta-band__actions {
    width: 100%;
  }

  .hero-controls {
    gap: 8px;
  }

  .hero-control {
    min-width: 54px;
    font-size: 11px;
  }

  .hero-dot {
    width: 22px;
  }

  .legal-content {
    padding: 20px;
  }

  .reference-project__title {
    display: block;
  }

  .reference-project__number {
    display: block;
    margin: 0 0 8px;
  }

  .reference-project__header h2 {
    font-size: 28px;
  }

  .reference-image-card__badge {
    top: 14px;
    left: 14px;
  }

  .references-cta__inner {
    padding: 30px 22px;
  }

  .whatsapp-float {
    width: 54px;
    height: 54px;
    min-height: 54px;
    padding: 0;
  }

  .whatsapp-float::before {
    width: 27px;
    height: 27px;
  }
}

/* Seiten mit freiem Overlay-Header über dem Hero */
body:is(.page-home, .page-overlay-header) .site-header {
  background: linear-gradient(180deg, rgba(8, 15, 14, 0.34) 0%, rgba(8, 15, 14, 0.12) 62%, rgba(8, 15, 14, 0) 100%);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: none;
}

body.page-home .site-header.is-entering {
  animation: hero-header-enter 560ms var(--ease) both;
}

@keyframes hero-header-enter {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

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

body:is(.page-home, .page-overlay-header) .site-header__inner {
  width: min(100% - 48px, 1320px);
  min-height: 104px;
  gap: clamp(24px, 3vw, 44px);
}

body:is(.page-home, .page-overlay-header) .site-header .site-logo__image {
  height: clamp(82px, 6.7vw, 94px);
}

@media (min-width: 1181px) {
  body:is(.page-home, .page-overlay-header) .site-header .site-logo {
    margin-top: 2px;
    margin-left: 8px;
  }
}

body:is(.page-home, .page-overlay-header) .site-header.is-scrolled,
body:is(.page-home, .page-overlay-header) .site-header.is-menu-open {
  color: #ffffff;
  background: rgba(8, 15, 14, 0.8);
  border-bottom: 0;
  box-shadow: none;
  backdrop-filter: blur(12px);
}

body:is(.page-home, .page-overlay-header) .site-header.is-scrolled .site-header__inner {
  min-height: 76px;
}

body:is(.page-home, .page-overlay-header) .site-header.is-scrolled .site-logo__image {
  height: 58px;
}

body:is(.page-home, .page-overlay-header) .site-nav {
  gap: clamp(14px, 1.25vw, 20px);
}

body:is(.page-home, .page-overlay-header) .site-nav__link,
body:is(.page-home, .page-overlay-header) .site-header.is-scrolled .site-nav__link,
body:is(.page-home, .page-overlay-header) .site-header.is-menu-open .site-nav__link {
  border: 0;
  background: transparent;
  box-shadow: none;
}

body:is(.page-home, .page-overlay-header) .site-nav__link--phone,
body:is(.page-home, .page-overlay-header) .site-header.is-scrolled .site-nav__link--phone,
body:is(.page-home, .page-overlay-header) .site-header.is-menu-open .site-nav__link--phone {
  min-height: 44px;
  margin-left: 4px;
  border: 0;
  border-radius: 0;
  padding: 0 2px;
  color: inherit;
  background: transparent;
  box-shadow: none;
}

body:is(.page-home, .page-overlay-header) .site-nav__link--phone:hover,
body:is(.page-home, .page-overlay-header) .site-nav__link--phone:focus-visible,
body:is(.page-home, .page-overlay-header) .site-header.is-scrolled .site-nav__link--phone:hover,
body:is(.page-home, .page-overlay-header) .site-header.is-scrolled .site-nav__link--phone:focus-visible,
body:is(.page-home, .page-overlay-header) .site-header.is-menu-open .site-nav__link--phone:hover,
body:is(.page-home, .page-overlay-header) .site-header.is-menu-open .site-nav__link--phone:focus-visible {
  color: #f0d8b1;
  background: transparent;
}

body:is(.page-home, .page-overlay-header) .site-nav__link--cta,
body:is(.page-home, .page-overlay-header) .site-header.is-scrolled .site-nav__link--cta,
body:is(.page-home, .page-overlay-header) .site-header.is-menu-open .site-nav__link--cta {
  min-height: 44px;
  border: 1px solid var(--color-brand);
  border-radius: 999px;
  padding: 0 18px;
  color: #ffffff;
  background: var(--color-brand);
  box-shadow: 0 8px 18px rgba(9, 17, 16, 0.16);
}

body:is(.page-home, .page-overlay-header) .nav-toggle,
body:is(.page-home, .page-overlay-header) .site-header.is-scrolled .nav-toggle,
body:is(.page-home, .page-overlay-header) .site-header.is-menu-open .nav-toggle {
  width: 44px;
  height: 44px;
  border: 0;
  background: transparent;
  box-shadow: none;
}

@media (max-width: 1180px) {
  body:is(.page-home, .page-overlay-header) .site-header__inner {
    min-height: 94px;
    gap: 24px;
  }

  body:is(.page-home, .page-overlay-header) .site-header .site-logo__image {
    height: 72px;
  }

  body:is(.page-home, .page-overlay-header) .site-nav {
    gap: 12px;
  }
}

@media (max-width: 940px) {
  body:is(.page-home, .page-overlay-header) .site-header__inner {
    width: min(100% - 32px, 1320px);
    min-height: 82px;
    gap: 16px;
  }

  body:is(.page-home, .page-overlay-header) .site-header .site-logo__image {
    height: 60px;
  }

  body:is(.page-home, .page-overlay-header) .site-header.is-scrolled .site-logo__image {
    height: 54px;
  }

  .js body:is(.page-home, .page-overlay-header) .site-nav {
    top: 82px;
    right: 0;
    left: 0;
    gap: 0;
    border: 0;
    border-radius: 0;
    padding: 12px 24px 22px;
    color: #ffffff;
    background: rgba(8, 15, 14, 0.9);
    box-shadow: none;
    backdrop-filter: blur(14px);
  }

  body:is(.page-home, .page-overlay-header) .site-nav__link,
  body:is(.page-home, .page-overlay-header) .site-header.is-scrolled .site-nav__link,
  body:is(.page-home, .page-overlay-header) .site-header.is-menu-open .site-nav__link {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    border: 0;
    padding: 0;
    color: #ffffff;
    background: transparent;
  }

  body:is(.page-home, .page-overlay-header) .site-nav__link:hover,
  body:is(.page-home, .page-overlay-header) .site-nav__link:focus-visible,
  body:is(.page-home, .page-overlay-header) .site-nav__link.is-active,
  body:is(.page-home, .page-overlay-header) .site-header.is-scrolled .site-nav__link:hover,
  body:is(.page-home, .page-overlay-header) .site-header.is-scrolled .site-nav__link:focus-visible,
  body:is(.page-home, .page-overlay-header) .site-header.is-menu-open .site-nav__link:hover,
  body:is(.page-home, .page-overlay-header) .site-header.is-menu-open .site-nav__link:focus-visible {
    color: #f0d8b1;
    background: transparent;
  }

  body:is(.page-home, .page-overlay-header) .site-nav__link--phone,
  body:is(.page-home, .page-overlay-header) .site-header.is-scrolled .site-nav__link--phone,
  body:is(.page-home, .page-overlay-header) .site-header.is-menu-open .site-nav__link--phone {
    width: fit-content;
    min-height: 44px;
    margin: 4px 0 0;
    border: 0;
    padding: 0;
    justify-content: flex-start;
    color: #ffffff;
    background: transparent;
  }

  body:is(.page-home, .page-overlay-header) .site-nav__link--cta,
  body:is(.page-home, .page-overlay-header) .site-header.is-scrolled .site-nav__link--cta,
  body:is(.page-home, .page-overlay-header) .site-header.is-menu-open .site-nav__link--cta {
    width: fit-content;
    min-height: 44px;
    margin-top: 10px;
    border: 1px solid var(--color-brand);
    border-radius: 999px;
    padding: 0 20px;
    justify-content: center;
    color: #ffffff;
    background: var(--color-brand);
  }
}

@media (max-width: 460px) {
  body:is(.page-home, .page-overlay-header) .site-header__inner {
    width: min(100% - 24px, 1320px);
  }

  body:is(.page-home, .page-overlay-header) .site-header .site-logo__image {
    height: 56px;
  }

  .js body:is(.page-home, .page-overlay-header) .site-nav {
    padding: 10px 18px 20px;
  }
}

@media (max-width: 720px) and (prefers-reduced-motion: no-preference) {
  body.page-home .site-header.is-entering {
    animation-duration: 480ms;
  }

  .hero-motion-ready .hero-slide.is-active .hero-slide__picture img {
    animation-name: hero-image-settle-mobile;
    animation-duration: 6200ms;
  }

  .hero-motion-ready.hero-content--animate .hero__content > h1,
  .hero-motion-ready.hero-content--animate .hero__lead,
  .hero-motion-ready.hero-content--animate .hero__actions,
  .hero-motion-ready.hero-content--animate .hero__meta {
    animation-duration: 520ms;
  }

  .hero-motion-ready.hero-content--animate .hero__content > h1 {
    animation-delay: 40ms;
  }

  .hero-motion-ready.hero-content--animate .hero__lead {
    animation-delay: 160ms;
  }

  .hero-motion-ready.hero-content--animate .hero__actions {
    animation-delay: 280ms;
  }

  .hero-motion-ready.hero-content--animate .hero__meta {
    animation-delay: 400ms;
  }

  .hero-motion-ready .hero-controls {
    animation-duration: 420ms;
    animation-delay: 520ms;
  }
}

@keyframes hero-image-settle-mobile {
  from {
    transform: scale(1.018);
  }

  to {
    transform: scale(1);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
  }

  .hero-slide,
  .hero-slide.is-active,
  .service-visual,
  .service-visual.is-active,
  .js .reveal {
    transform: none;
  }

  .js .reveal {
    opacity: 1;
  }

  body.page-home .site-header.is-entering,
  .hero-motion-ready .hero-slide.is-active .hero-slide__picture img,
  .hero-motion-ready .hero-controls,
  .hero-motion-ready.hero-content--animate .hero__content > h1,
  .hero-motion-ready.hero-content--animate .hero__lead,
  .hero-motion-ready.hero-content--animate .hero__actions,
  .hero-motion-ready.hero-content--animate .hero__meta {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-slide {
    transition: opacity 80ms linear !important;
  }
}
