:root {
  --ink: #09262a;
  --green: #3b845b;
  --mist: #eef3f1;
  --line: #dfe7e3;
  --white: #fff;

  /* Typography — em t.o.v. body (1em = 14px via html 87.5%) */
  --text-body-size:1.125rem;
  --text-body-line-height: 1.72;
  --text-body-color: #526363;
  --text-caption-size: 1em;
  --text-label-size:1em;
  --text-lead-size: 1.1em;
  --text-lg-size: 1.2857142857em;
  --text-xl-size: 1.5em;
  --text-2xl-size: 1.8571428571em;
  --text-3xl-size: 2.5em;
  --text-4xl-size: 2.5714285714em;
  --text-5xl-size: 2.8571428571em;
  --text-6xl-size: 3.5714285714em;
  --text-hero-size: clamp(3.7142857143em, 3vw, 5.1428571429em);
  --text-statement-size: clamp(1.8571428571em, 2.7vw, 3.0714285714em);
  --text-special-heading-size: clamp(2.7142857143em, 4vw, 4.2857142857em);
  --text-callout-icon-size: 2em;
  --text-product-title-size: 1.4285714286em;
  --text-overlay-title-size: 1.6428571429em;
  --text-mobile-hero-size: 3.2857142857em;
  --text-mobile-statement-size: 2em;
  --text-mobile-stats-size: 1.9285714286em;
  --text-mobile-overlay-size: 1.3571428571em;
  --text-mobile-special-size: 2.2857142857em;
  --text-mobile-footer-size: 2.7857142857em;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 87.5%;
}

body {
  --swiper-pagination-color: currentColor;
  --swiper-pagination-bottom: auto;
  --swiper-pagination-bullet-size: 0.5em;
  --swiper-pagination-bullet-inactive-color: currentColor;
  --swiper-pagination-bullet-inactive-opacity: 0.15;
  --swiper-pagination-bullet-horizontal-gap: 0.25em;
  --swiper-wrapper-transition-timing-function: cubic-bezier(0.625, 0.05, 0, 1);
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Space Grotesk", sans-serif;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.55;
}

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

html.is-modal-open {
  overflow: hidden;
}

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

.text-body,
.hero-text,
.about-copy > p,
.special-intro__content > p,
.special-card p,
.checks {
  font-size: var(--text-body-size);
  line-height: var(--text-body-line-height);
  color: var(--text-body-color);
}
.hero-text {
  font-size: 1.5em;
}
img {
  display: block;
  width: 100%;
}

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

h1,
h2,
h3 {
  font-weight: 400;
  line-height: 1.08;
}

.container {
  width: min(1258px, calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  height: 90px;
  display: flex;
  align-items: center;
  padding: 0 44px;
  gap: 44px;
  background: #fff;
}

.logo {
  display: flex;
  align-items: center;
  width: 170px;
  font-size: var(--text-label-size);
  line-height: 0.83;
  letter-spacing: -0.02em;
}

.logo svg,
.logo img {
  display: block;
  flex: none;
}

.logo img {
  height: 48px;
  width: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  margin-left: auto;
  font-size: var(--text-body-size);
}

.desktop-nav a,
.contact-link {
  transition: color 0.2s ease;
}

.desktop-nav a:hover,
.contact-link:hover {
  color: var(--green);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 18px;
}

.contact-link {
  color: var(--green);
  font-size: var(--text-body-size);
}

.phone {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #edf6f1;
  color: var(--green);
  font-size: var(--text-lg-size);
}

.button {
  --btn-height: 46px;
  position: relative;
  z-index: 0;
  min-height: var(--btn-height);
  padding: 0 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  overflow: hidden;
  border: 0;
  border-radius: 28px;
  font: inherit;
  font-size: var(--text-body-size);
  white-space: nowrap;
  background: transparent;
  cursor: pointer;
}

.button__bg {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.button__circle-wrap {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  overflow: hidden;
}

.button__circle {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0) rotate(0.001deg);
  transition:
    transform 0.7s cubic-bezier(0.625, 0.05, 0, 1),
    background-color 0.4s cubic-bezier(0.625, 0.05, 0, 1);
}

.button__circle-ratio {
  display: block;
  padding-top: 100%;
}

.button__text {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: inherit;
  transition: color 0.7s cubic-bezier(0.625, 0.05, 0, 1);
}

.button:hover .button__circle {
  transform: translate(-50%, -50%) scale(1) rotate(0.001deg);
}

.button__spinner {
  display: none;
  flex: none;
  width: 1.15em;
  height: 1.15em;
  border: 2px solid rgba(255, 255, 255, 0.35);
  border-top-color: currentColor;
  border-radius: 50%;
  animation: button-spin 0.65s linear infinite;
}

.button.is-loading {
  pointer-events: none;
}

.button.is-loading .button__text {
  position: relative;
  justify-content: center;
  min-width: 1.25em;
}

.button.is-loading .button__spinner {
  display: block;
}

.button.is-loading [data-offerte-submit-label] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}

.button.is-loading .button__circle-wrap {
  opacity: 0;
}

@keyframes button-spin {
  to {
    transform: rotate(360deg);
  }
}

.button-small {
  --btn-height: 44px;
  padding-right: 24px;
}

.button-dark {
  color: #fff;
}

.button-dark .button__bg {
  background: var(--ink);
}

.button-dark .button__circle {
  background: var(--green);
}

.button-dark:hover .button__text {
  color: #fff;
}

.button-dot {
  position: relative;
  z-index: 1;
  flex: none;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  transition:
    background 0.7s cubic-bezier(0.625, 0.05, 0, 1),
    color 0.7s cubic-bezier(0.625, 0.05, 0, 1);
}

.button-dot__icon {
  width: 14px;
  height: 14px;
  display: block;
}

.button-light {
  color: var(--green);
}

.button-light .button__bg {
  background: var(--mist);
}

.button-light .button__circle {
  background: var(--green);
}

.button-light:hover .button__text {
  color: #fff;
}

.button-primary {
  color: #031819;
}

.button-primary .button__bg {
  background-color: #d5ede0;
}

.button-primary .button__text {
  color: #031819;
}

.button-primary .button__circle {
  background-color: var(--green);
}

.button-primary:hover .button__text {
  color: #fff;
}

.button-green {
  color: #fff;
}

.button-green .button__bg {
  background: var(--green);
}

.button-green .button__circle {
  background: #fff;
}

.button-green:hover .button__text {
  color: var(--ink);
}

.button-green:hover .button-dot {
  color: #fff;
  background: var(--ink);
}

.button-ghost {
  color: #fff;
}

.button-ghost .button__bg {
  background: rgba(9, 38, 42, 0.45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.22);
}

.button-ghost .button__circle {
  background: rgba(255, 255, 255, 0.18);
}

.button-ghost:hover .button__text {
  color: var(--ink);
}

.button-ghost:hover .button-dot {
  color: #fff;
  background: var(--ink);
}

.button-dot--trailing {
  margin-left: 4px;
}

.menu-toggle {
  display: none;
}

.hero {
  height: 900px;
  display: grid;
  grid-template-columns: 45.5% 54.5%;
  background: var(--mist);
}

.hero-copy {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 10% 10% 0 10%;
}

.hero-copy__inner {
  width: 100%;
}

.eyebrow {
  margin-bottom: 0;
  font-size: var(--text-caption-size);
  color: #818181;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 28px;
  color: var(--green);
  font-size: var(--text-hero-size);
  letter-spacing: -0.055em;
}

.hero-text {
  max-width: 680px;
  margin-bottom: 38px;
}

.button-row {
  display: flex;
  align-items: center;
  gap: 25px;
}

.text-link {
  color: var(--green);
  font-size: var(--text-body-size);
}


.hero-image {
  background: var(--mist);
  position: relative;
  overflow: hidden;
}

.hero-image > img {
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
}

.project-callout {
  position: absolute;
  right: 0;
  bottom: 52px;
  width:25em;
  padding:3em;
  color: #fff;
  background: rgba(8, 39, 43, 0.97);
}

.project-callout h3 {
  margin-bottom: 28px;
  font-size: var(--text-xl-size);
}

.project-callout p {
  color: #c9d2d1;
  font-size: var(--text-lead-size);
  line-height: var(--text-body-line-height);
}

.project-callout__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5em;
  font-size: 1.4em;
  color: inherit;
  text-decoration: none;
}

.project-callout__link [data-underline-link] {
  display: inline-block;
}

.project-callout__arrow {
  display: block;
  flex: none;
  width: 32px;
  height: 32px;
}

.project-callout__arrow svg {
  display: block;
  width: 100%;
  height: 100%;
}

.statement {
  min-height: 610px;
  padding: 140px 30px 80px;
  text-align: center;
}

.statement h2 {
  color: #b4bbb7;
  font-size: var(--text-statement-size);
  line-height: 1.25;
  letter-spacing: -0.035em;
}

.statement h2 span {
  color: var(--green);
}

[data-split="heading"] {
  visibility: hidden;
}

[data-split="heading"] .line {
  padding-bottom: 0.04em;
}

.statement .line {
  padding-bottom: 0.04em;
}

.scroll-line {
  width: 1px;
  height: 70px;
  margin: 85px auto 0;
  background: linear-gradient(#cbd2cf, transparent);
}

.about {
  display: grid;
  grid-template-columns: 1fr 0.86fr;
  align-items: center;
  gap: 150px;
}

.about-split.about--text-left {
  grid-template-columns: 0.86fr 1fr;
}

.about-image {
  overflow: hidden;
  border-radius: 8px;
  max-width: 686px;
}

.about-image img {
  aspect-ratio: 686 / 646;
  width: 100%;
  max-width: 686px;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.about-copy {
  max-width: 475px;
}

.about-copy .eyebrow {
  margin-bottom: 21px;
}

.about-copy h2 {
  margin-bottom: 32px;
  font-size: var(--text-5xl-size);
  letter-spacing: -0.04em;
}

.about-copy > p {
  margin-bottom: 28px;
}

.checks {
  margin: 22px 0 35px;
  padding: 0;
  list-style: none;
}

.checks li::before {
  content: "\2713";
  margin-right: 13px;
  color: var(--green);
}

.checks.hero-checks {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 0;
  width: fit-content;
  max-width: 100%;
  margin: 28px 0 0;
  padding: 14px 28px;
  border: 1px solid rgba(9, 38, 42, 0.06);
  border-radius: 100em;
  background: var(--white);
  font-size: 1em;
  box-shadow: 0 4px 20px rgba(9, 38, 42, 0.06);
}

.checks.hero-checks li:not(:last-child) {
  margin-right: 14px;
}

.checks.hero-checks li:last-child {
  margin-right: 0;
  padding-right: 0;
}

.stats {
  margin-top: 105px;
  margin-bottom: 110px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-radius: 7px;
  background: var(--mist);
}

.stats div {
  min-height: 182px;
  padding: 45px 50px;
  border-right: 1px solid #d6dfdb;
  overflow: hidden;
}

.stats div:last-child {
  border-right: 0;
}

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

.stats strong {
  font-size: var(--text-4xl-size);
  font-weight: 400;
  letter-spacing: -0.04em;
}

.stats span {
  color: var(--green);
  font-size: var(--text-caption-size);
}

.projects {
  margin-bottom: 140px;
  padding: 90px 70px 115px;
  border-radius: 10px;
  background: #f1f5f3;
  overflow: hidden;
}

.projects.is--white {
  background: #fff;
}

.projects.is--mist {
  background: var(--mist);
}

.projects .project-slider {
  margin-left: 0;
  width: calc(100vw - 70px);
}

.projects-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 60px;
}

.projects-header .section-heading {
  margin-bottom: 0;
}

.projects-header__nav.swiper-navigation {
  position: static;
  transform: none;
  justify-content: flex-end;
  gap: 10px;
  flex-shrink: 0;
}

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

.section-heading .eyebrow {
  margin-bottom: 15px;
}

.section-heading h2 {
  font-size: var(--text-3xl-size);
  letter-spacing: -0.045em;
}

.swiper-group {
  width: 100%;
  position: relative;
}

.swiper {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
  overflow: visible !important;
}

.swiper-wrapper {
  flex-flow: row;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  display: flex;
}

.swiper-slide {
  flex: none;
  max-width: 20em;
  padding-right: 1.25em;
  --gap: 1.25em;
  padding-right: var(--gap);
}

.swiper-slide:last-of-type {
  margin-right: calc(-1 * var(--gap));
}

.swiper-pagination {
  pointer-events: auto;
  z-index: 0 !important;
}

.swiper-navigation {
  z-index: 2;
  pointer-events: none;
  justify-content: space-between;
  align-items: center;
  display: flex;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  transform: translate(0, 150%);
}

.swiper-navigation__button {
  z-index: 1;
  aspect-ratio: 1;
  pointer-events: auto;
  color: var(--ink);
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: 100em;
  justify-content: center;
  align-items: center;
  width: 4em;
  padding: 1em;
  display: flex;
  position: relative;
  transition: opacity 0.2s ease;
}

.swiper-button-disabled {
  opacity: 0;
  pointer-events: none;
}

.swiper-navigation__button-arorw {
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
}

.swiper-navigation__button-arorw.is--prev {
  transform: rotate(-180deg);
}

.project-slider {
  margin-left: max(40px, calc((100vw - 1258px) / 2));
  width: calc(100vw - max(40px, calc((100vw - 1258px) / 2)));
  color: var(--ink);
}

.project-slider .swiper-slide {
  max-width: none;
}

.project-card {
  position: relative;
  height: 500px;
  overflow: hidden;
  border-radius: 5px;
  background: var(--ink);
}

.project-card img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.project-card:hover img {
  transform: scale(1.025);
}

.project-card::after {
  content: "";
  position: absolute;
  inset: 30% 0 0;
  background: linear-gradient(transparent, rgba(4, 18, 21, 0.9));
}

.project-overlay {
  position: absolute;
  z-index: 1;
  left: 50px;
  right: 45px;
  bottom: 38px;
  color: #fff;
}

.project-overlay span {
  color: #bec7c5;
  font-size: var(--text-label-size);
}

.project-overlay h3 {
  margin: 7px 55px 0 0;
  font-size: var(--text-overlay-title-size);
}

.project-overlay i {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 50%;
  font-style: normal;
}

.specialties {
  margin-bottom: 140px;
  padding: 90px 70px 70px;
  border-radius: 10px;
  background: #f1f5f3;
}

.special-intro {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 90px;
  align-items: end;
  padding-bottom: 70px;
  border-bottom: 1px solid #d7e1dd;
}

.special-intro h2 {
  margin-bottom: 0;
  color: var(--green);
  font-size: var(--text-special-heading-size);
  letter-spacing: -0.04em;
}

.special-intro .eyebrow {
  margin-bottom: 20px;
}

.special-intro__content {
  max-width: 390px;
  justify-self: end;
}

.special-intro__content > p {
  margin-bottom: 30px;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  padding-top: 32px;
}

.special-card {
  min-width: 0;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  color: inherit;
  background: #fff;
  text-decoration: none;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.special-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 45px rgba(9, 38, 42, 0.08);
}

.special-card__visual {
  position: relative;
  height: 390px;
  overflow: hidden;
  background: #dfe6e2;
}

.special-card__visual img {
  height: 100%;
  object-fit: cover;
  transition: transform 0.65s cubic-bezier(0.625, 0.05, 0, 1);
}

.special-card:hover .special-card__visual img {
  transform: scale(1.06);
}

.special-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 36px 34px 30px;
}

.special-card h3 {
  margin-bottom: 20px;
  color: var(--green);
  font-size: var(--text-2xl-size);
  letter-spacing: -0.035em;
}

.special-card p {
  margin: 0;
}

@media (max-width: 991px) and (min-width: 761px) {
  .specialties {
    padding: 70px 42px 42px;
  }

  .projects {
    padding: 70px 42px 115px;
  }

  .projects .project-slider {
    width: calc(100vw - 42px);
  }

  .special-intro {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .special-intro__content {
    max-width: 520px;
    justify-self: start;
  }

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

  .special-card:last-child {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .special-card:last-child .special-card__visual {
    height: auto;
    min-height: 360px;
  }
}

footer {
  padding: 0 0 85px;
  color: #fff;
  background: var(--ink);
}

.footer-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("assets/footer.jpg") center / cover no-repeat;
  opacity: 0.38;
  z-index: -2;
}

.footer-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      102deg,
      rgba(9, 38, 42, 0.96) 0%,
      rgba(9, 38, 42, 0.9) 38%,
      rgba(36, 88, 62, 0.82) 72%,
      rgba(9, 38, 42, 0.94) 100%
    );
  z-index: -1;
}

.footer-cta__content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  align-items: center;
  column-gap: 48px;
  max-width: none;
  padding: 100px 0 90px;
}

.footer-cta__title {
  grid-column: 1;
  grid-row: 1;
  margin: 0 0 18px;
  color: white;
  font-size: clamp(2.4em, 4.2vw, 3.6em);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.footer-cta__subtitle {
  grid-column: 1;
  grid-row: 2;
  margin: 0;
  color: #fff;
  font-size: clamp(1.15em, 2vw, 1.5em);
  font-weight: 300;
  line-height: 1.45;
}

.footer-cta__actions {
  grid-column: 2;
  grid-row: 1 / -1;
  justify-self: end;
  align-self: center;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr 1.15fr 0.95fr 1.25fr 0.9fr;
  align-items: start;
  gap: 40px;
  padding-top: 85px;
  color: #bdc9c8;
  font-size: 1.2em;
  line-height: 2em;
}

.logo-footer {
  width: auto;
  max-width: 180px;
  color: #fff;
}

.logo-footer img {
  height: 52px;
  width: auto;
}

.footer-grid h4 {
  margin: 0 0 20px;
  color: #8fa3a2;
  font-size: var(--text-caption-size);
  font-weight: 400;
  text-transform: uppercase;
}

.footer-grid p,
.footer-grid a {
  display: block;
  margin-bottom: 8px;
}
.footer-grid a:hover {
  color:#3b845b
}
.footer-grid .phone-number {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 3px;
  color: #fff;
  font-size: var(--text-xl-size);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #8fa3a2;
  font-size: var(--text-caption-size);
}

.footer-bottom__legal {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35em 1.25em;
}

.footer-bottom__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35em 1.25em;
}

.footer-bottom__links a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom__links a:hover {
  color: #bdc9c8;
}

.footer-bottom__copyright,
.footer-bottom__credit {
  margin: 0;
}

.footer-bottom__credit {
  display: flex;
  align-items: center;
  gap: 0.45em;
  color: #bdc9c8;
}

.footer-bottom__credit-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.35em;
  color: #bdc9c8;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom__credit-brand:hover {
  color: #bdc9c8;
}

.footer-bottom__credit-logo {
  display: block;
  width: 23px;
  height: 21px;
  flex-shrink: 0;
}

@media (max-width: 1100px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 28px;
  }

  .logo-footer {
    grid-column: 1 / -1;
    margin-bottom: 8px;
  }

  .desktop-nav,
  .contact-link,
  .phone {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-copy {
    padding-inline: 7%;
  }

  .about {
    gap: 70px;
  }

  .specialties {
    min-height: 1350px;
  }
}

@media (max-width: 760px) {
  .container {
    width: min(100% - 36px, 620px);
  }

  .site-header {
    height: 72px;
    padding: 0 18px;
  }

  .logo {
    width: 145px;
  }

  .logo svg {
    width: 36px;
    height: 36px;
  }

  .header-actions {
    display: none;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
    margin-left: auto;
    display: grid;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 50%;
    background: var(--ink);
  }

  .menu-toggle span {
    width: 17px;
    height: 1px;
    background: #fff;
  }

  .desktop-nav.is-open {
    position: absolute;
    z-index: 10;
    top: 72px;
    left: 0;
    width: 100%;
    padding: 28px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: #fff;
  }

  .hero {
    height: auto;
    grid-template-columns: 1fr;
  }

  .hero-copy {
    align-items: center;
    justify-content: center;
    min-height: 560px;
    padding: 80px 24px;
  }

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

  .hero h1 {
    font-size: var(--text-mobile-hero-size);
  }

  .checks.hero-checks {
    gap: 6px 0;
    margin-top: 24px;
    padding: 12px 20px;
  }

  .checks.hero-checks li:not(:last-child) {
    margin-right: 20px;
  }

  .hero-image {
    height: 540px;
  }

  .project-callout {
    bottom: 0;
    width: min(88%, 390px);
    padding: 35px;
  }

  .statement {
    min-height: 470px;
    padding: 90px 24px 50px;
  }

  .statement h2 {
    font-size: var(--text-mobile-statement-size);
  }

  .statement h2 br {
    display: none;
  }

  .scroll-line {
    margin-top: 55px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .about-image img {
    max-width: none;
  }

  .about-copy {
    max-width: none;
  }

  .stats {
    grid-template-columns: repeat(2, 1fr);
    margin-block: 75px;
  }

  .stats div {
    min-height: 150px;
    padding: 35px 50px;
  }

  .stats strong {
    font-size: var(--text-mobile-stats-size);
  }

  .project-slider {
    width: calc(100vw - 18px);
    margin-left: 18px;
  }

  .projects .project-slider {
    width: calc(100vw - 22px);
    margin-left: 0;
  }

  .projects-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
  }

  .projects {
    margin-bottom: 80px;
    padding: 60px 22px 80px;
  }

  .project-card {
    height: 420px;
  }

  .swiper-slide {
    max-width: none;
    --gap: 16px;
  }

  .project-overlay {
    left: 26px;
    right: 22px;
  }

  .project-overlay h3 {
    font-size: var(--text-mobile-overlay-size);
  }

  .specialties {
    margin-bottom: 80px;
    padding: 60px 22px 22px;
  }

  .special-intro {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 50px;
  }

  .special-intro__content {
    max-width: none;
    justify-self: stretch;
  }

  .special-intro h2 {
    font-size: var(--text-mobile-special-size);
  }

  .special-grid {
    grid-template-columns: 1fr;
    gap: 18px;
    padding-top: 22px;
  }

  .special-card__visual {
    height: 290px;
  }

  .special-card__body {
    padding: 30px 26px 25px;
  }

  footer {
    padding-top: 0;
  }

  .footer-cta__content {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    gap: 32px;
    padding: 72px 0 64px;
  }

  .footer-cta__title,
  .footer-cta__subtitle,
  .footer-cta__actions {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-cta__actions {
    justify-self: stretch;
    flex-direction: column;
    align-items: stretch;
  }

  .footer-cta__actions .button {
    width: 100%;
    justify-content: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 45px 25px;
  }

  .logo-footer {
    grid-column: 1 / 3;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-top: 40px;
  }
}

/* Mega navigation */
[data-menu-wrap] {
  --nav-height: 90px;
}

.mega-nav {
  z-index: 100;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.mega-nav__bar {
  z-index: 3;
  width: 100%;
  background-color: #fff;
  border-bottom: 1px solid rgba(9, 38, 42, 0.08);
  position: relative;
  overflow: visible;
}

.mega-nav__container {
  height: var(--nav-height);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 44px;
  overflow: visible;
}

.mega-nav__bar-start {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.mega-nav__bar-logo {
  --logo-ribbon-width: 252px;
  position: relative;
  z-index: 4;
  flex: none;
  align-self: flex-start;
  display: flex;
  align-items: center;
  justify-content: center;
  width: var(--logo-ribbon-width);
  aspect-ratio: 236.41 / 118.51;
  max-width: none;
  margin-right: auto;
  padding: 18px 16px 34px 0px;
  text-decoration: none;
}

.logo svg {
  position: absolute;
  top: 0;
  left: -41px;
  width: 296px;
  height: 161px;
  margin-right: 0;
  filter: drop-shadow(0 6px 18px rgba(9, 38, 42, 0.08));
  pointer-events: none;
}

.mega-nav__bar-logo img {
  position: relative;
  z-index: 1;
  width: auto;
  top: 13px;
  height: 72px;
  max-width: calc(var(--logo-ribbon-width) - 32px);
}

.mega-nav__bar-inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  align-self: center;
  gap: 28px;
}

.mega-nav__bar-list {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-nav__bar-list.is--actions {
  margin-left: 6px;
  gap: 18px;
}

.mega-nav__bar-link {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 3px;
  padding: 8px 3px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 3px;
  font: inherit;
  text-decoration: none;
  cursor: pointer;
}

.mega-nav__bar-link-label {
  font-size: var(--text-body-size);
  font-weight: 400;
  line-height: 1.2;
}

.mega-nav__bar-link-icon {
  width: 18px;
  transition: transform 0.25s ease;
}

[data-menu-open="true"] [data-dropdown-toggle][aria-expanded="true"] .mega-nav__bar-link-icon {
  transform: rotate(180deg);
}

.mega-nav__bar-link.is--split {
  gap: 0;
  padding: 0;
}

.mega-nav__bar-link-main {
  display: flex;
  align-items: center;
  padding: 8px 3px;
  color: inherit;
  text-decoration: none;
}

.mega-nav__bar-link-toggle {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 3px;
  color: inherit;
  background: transparent;
  border: 0;
  border-radius: 3px;
  font: inherit;
  cursor: pointer;
}

.mega-nav__contact {
  color: var(--green);
}

.mega-nav__cta {
  min-height: 44px;
  padding: 0 24px 0 10px;
}

.mega-nav__bar-end {
  display: none;
  align-items: center;
  justify-content: flex-end;
}

.mega-nav__burger {
  display: flex;
  width: 42px;
  height: 42px;
  padding: 0;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  border: 0;
  border-radius: 50%;
  background: var(--ink);
}

.mega-nav__burger-line {
  z-index: 1;
  display: block;
  width: 17px;
  height: 1px;
  flex: none;
  padding: 0;
  border-radius: 2px;
  background: #fff;
  position: relative;
}

.mega-nav__back {
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  left: 0;
}

.mega-nav__backdrop {
  z-index: 0;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  background-color: rgba(9, 38, 42, 0.34);
  position: fixed;
  inset: 0;
}

.mega-nav__dropdown-wrapper {
  z-index: 2;
  pointer-events: none;
  width: 100%;
  max-width: 1258px;
  margin-inline: auto;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
}

.mega-nav__dropdown-container {
  position: relative;
  overflow: hidden;
}

.mega-nav__dropdown-bg {
  will-change: transform;
  background-color: #fff;
  border-radius: 0 0 7px 7px;
  box-shadow: 0 22px 45px rgba(9, 38, 42, 0.12);
  position: absolute;
  inset: 0;
}

.mega-nav__dropdown-panel {
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  position: absolute;
  inset: 0 0 auto;
  overflow: hidden;
}

.mega-nav__dropdown-inner {
  display: flex;
}

.mega-nav__panel-col {
  display: flex;
  flex: 1;
  flex-flow: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 18px;
  padding: 28px;
  border-right: 1px solid var(--line);
}

.mega-nav__panel-col:last-of-type {
  border-right: 0;
}

.mega-nav__panel-col.is--colored {
  background: var(--mist);
}

.mega-nav__panel-label {
  padding-left: 2px;
  color: var(--green);
  font-size: var(--text-label-size);
  line-height: 1;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mega-nav__panel-list {
  display: flex;
  flex-flow: column;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-nav__panel-link {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  padding: 10px 8px;
  border-radius: 4px;
  color: var(--ink);
  transition: background 0.2s ease;
}

.mega-nav__panel-link:hover {
  background: rgba(9, 38, 42, 0.04);
}

.mega-nav__panel-link-text {
  font-size: var(--text-body-size);
  font-weight: 400;
  line-height: 1.2;
}

.mega-nav__panel-link-desc {
  margin-top: 4px;
  color: #817F7F;
  font-size: 1em;
  line-height: 1.5;
}

.mega-nav__product-card {
  width: 100%;
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 22px;
  align-items: stretch;
  color: var(--ink);
}

.mega-nav__product-card img {
  height: 174px;
  object-fit: cover;
  border-radius: 4px;
}

.mega-nav__product-card-content {
  display: flex;
  flex-flow: column;
  align-items: flex-start;
  padding: 8px 0 4px;
}

.mega-nav__product-card strong {
  margin-bottom: 10px;
  font-size: var(--text-product-title-size);
  font-weight: 400;
  line-height: 1.12;
}

.mega-nav__product-card small {
  color: #586967;
  font-size: 0.9em;
  line-height: 1.55;
}

.mega-nav__product-card em {
  margin-top: auto;
  color: var(--green);
  font-size: var(--text-caption-size);
  font-style: normal;
}

main {
  padding-top: var(--nav-height);
}

@media screen and (max-width: 1100px) and (min-width: 992px) {
  .mega-nav__container {
    padding-inline: 24px;
  }

  .mega-nav__bar-inner,
  .mega-nav__bar-list {
    gap: 15px;
  }

  .mega-nav__bar-logo {
    --logo-ribbon-width: 210px;
    margin-right: 18px;
    padding: 14px 12px 28px;
  }

  .logo svg {
    inset: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .mega-nav__bar-logo img {
    top: 0;
    height: 58px;
  }
}

@media screen and (max-width: 991px) {
  [data-menu-wrap] {
    --nav-height: 72px;
  }

  .mega-nav__container {
    padding: 0 18px;
  }

  .mega-nav__bar-start {
    justify-content: space-between;
  }

  .mega-nav__bar-logo {
    --logo-ribbon-width: 168px;
    margin-right: 0;
    padding: 10px 10px 22px;
  }

  .logo svg {
    inset: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }

  .mega-nav__bar-logo img {
    top: 0;
    height: 44px;
  }

  .mega-nav__bar-list {
    width: 100%;
    flex-flow: column;
    align-items: stretch;
    gap: 0;
  }

  .mega-nav__bar-list.is--actions {
    width: 100%;
    margin-left: 0;
    flex-flow: column;
    gap: 10px;
  }

  .mega-nav__bar-link {
    width: 100%;
    padding: 17px 0;
    justify-content: flex-start;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .mega-nav__bar-link.is--dropdown {
    justify-content: space-between;
  }

  .mega-nav__bar-link.is--split {
    width: 100%;
  }

  .mega-nav__bar-link-main {
    flex: 1;
    padding: 17px 0;
  }

  .mega-nav__bar-link-toggle {
    padding: 17px 0 17px 12px;
    margin-left: auto;
  }

  .mega-nav__bar-link.is--back {
    border-bottom: 0;
    gap: 4px;
  }

  .mega-nav__bar-link-label {
    font-size: var(--text-lg-size);
  }

  .mega-nav__bar-link-icon {
    width: 23px;
  }

  .mega-nav__bar-link-icon.is--dropdown {
    transform: rotate(-90deg);
  }

  .mega-nav__bar-end {
    display: flex;
  }

  .mega-nav__bar-inner {
    opacity: 0;
    visibility: hidden;
    display: flex;
    flex-flow: column;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
    padding: 28px 24px;
    background: #fff;
    position: fixed;
    inset: var(--nav-height) 0 0;
    overflow: auto;
  }

  .mega-nav__contact {
    color: var(--ink);
  }

  .mega-nav__cta {
    width: 100%;
    min-height: 52px;
    justify-content: center;
  }

  .mega-nav__backdrop {
    display: none;
  }

  .mega-nav__dropdown-wrapper {
    z-index: 4;
    max-width: none;
    position: fixed;
    inset: var(--nav-height) 0 0;
  }

  .mega-nav__dropdown-container {
    height: 100%;
    overflow: auto;
  }

  .mega-nav__dropdown-bg {
    display: none;
  }

  .mega-nav__dropdown-panel {
    bottom: 0;
    background: #fff;
    overflow: auto;
  }

  .mega-nav__dropdown-inner {
    flex-flow: column;
  }

  .mega-nav__panel-col {
    padding: 24px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .mega-nav__panel-label {
    width: 100%;
  }

  .mega-nav__product-card {
    grid-template-columns: 112px 1fr;
  }

  .mega-nav__product-card img {
    height: 132px;
  }

  .mega-nav__product-card strong {
    font-size: var(--text-lg-size);
  }
}

@media screen and (max-width: 479px) {
  .mega-nav__product-card {
    grid-template-columns: 96px 1fr;
    gap: 16px;
  }

  .mega-nav__product-card img {
    height: 118px;
  }
}

.reveal {
  opacity: 0;
  transform: translateY(60px);
  filter: blur(12px);
  transition:
    opacity 0.5s cubic-bezier(.25, .46, .45, .94),
    transform 0.5s cubic-bezier(.25, .46, .45, .94),
    filter 0.5s cubic-bezier(.25, .46, .45, .94);
  will-change: opacity, transform, filter;
}
.reveal.active {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.image-reveal {
  opacity: 0;
  transform: scale(1.2);
  transition:
    opacity 1s cubic-bezier(.25, .46, .45, .94),
    transform 1s cubic-bezier(.25, .46, .45, .94);
  will-change: opacity, transform;
}
.image-reveal.active {
  opacity: 1;
  transform: scale(1);
}

/* Tab system */
.process-tabs {
  margin-bottom: 140px;
}

.tab-layout__wrap {
  z-index: 1;
  display: flex;
  flex-flow: wrap;
  gap: 60px;
  position: relative;
}

.tab-layout__col {
  width: calc(50% - 30px);
  padding: 0;
}

.tab-content__wrap {
  width: 100%;

  height: 100%;
  margin-left: auto;
  margin-right: 0;
}

.tab-content__inner {
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: flex-start;
  gap: 48px;
  min-height: 100%;
  padding-top: 0.5em;
}

.tab-content__top {
  display: flex;
  flex-flow: column;
  gap: 20px;
}

.tab-heading {
  margin: 0;
  color: var(--green);
  font-size: clamp(2em, 3.5vw, 3.2em);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.tab-visual__wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 1.35;
  max-height: 520px;
}

.tab-visual__item {
  visibility: hidden;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.tab-visual__item.active {
  visibility: visible;
}

.tab-visual__inner {
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid #dce5e1;
  border-radius: 7px;
}

.tab-image {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 6px;
}

.tab-content__bottom {
  display: flex;
  flex-flow: column;
  width: 100%;
  max-width: 40em;
  margin: 0;
  padding: 0;
}

.tab-content__item {
  position: relative;
  width: 100%;
  padding: 2em 0;
  color: var(--ink);
  text-decoration: none;
  opacity: 0.5;
  transition: opacity 0.25s ease;
  cursor: pointer;
}

.tab-content__item.active {
  opacity: 1;
}

.tab-content__item-main {
  display: flex;
  align-items: flex-start;
  gap: 1.5em;
  width: 100%;
}

.content-item__nr {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  margin-top: 0.15em;
  border: 1px solid var(--green);
  border-radius: 100em;
  color: #fff;
  background-color: var(--green);
  font-size: var(--text-caption-size);
  transition: transform 0.4s cubic-bezier(0.625, 0.05, 0, 1);
}

.content-item__heading {
  margin: 0;
  font-size: clamp(1.35em, 2vw, 1.75em);
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: -0.03em;
}

.tab-content__item-detail {
  width: 100%;
  height: 0;
  padding-left: 4em;
  overflow: hidden;
}

.tab-description {
  margin: 0;
  font-size: var(--text-body-size);
  line-height: var(--text-body-line-height);
  color: var(--text-body-color);
}

.tab-description__spacer {
  padding-top: 1em;
}

.tab-content__item-bottom {
  position: absolute;
  inset: auto 0 0;
  width: 100%;
  height: 1px;
  background-color: rgba(9, 38, 42, 0.12);
  transition: background-color 0.2s ease;
}

.tab-progress {
  width: 100%;
  height: 1px;
  transform: scale3d(0, 1, 1);
  transform-origin: 0%;
  transform-style: preserve-3d;
  background-color: var(--green);
}

@media screen and (max-width: 991px) {
  .tab-layout__col {
    width: 100%;
  }

  .tab-content__inner {
    align-items: stretch;
    padding: 0;
  }

  .tab-content__wrap {
    max-width: none;
    margin-left: 0;
  }

  .tab-visual__wrap {
    max-height: none;
    height: auto;
  }

  .tab-visual__item {
    overflow: hidden;
  }

  .tab-content__bottom {
    max-width: none;
  }
}

@media screen and (max-width: 767px) {
  .process-tabs {
    margin-bottom: 80px;
  }

  .tab-layout__wrap {
    gap: 40px;
  }

  .tab-content__item {
    padding: 1.5em 0;
  }

  .tab-content__item-main {
    gap: 1em;
  }

  .tab-content__item-detail {
    padding-left: 3em;
  }
}

main > section:last-child {
  margin-bottom: 0;
}

/* Modal — Osmo basic setup */
.modal {
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  padding: 2em 1em;
  display: flex;
  position: fixed;
  inset: 0;
  overflow: hidden;
  transition: opacity 0.2s linear, visibility 0.2s linear;
}

.modal[data-modal-group-status="active"] {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal__dark {
  opacity: 0.72;
  pointer-events: auto;
  cursor: pointer;
  background-color: var(--ink);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.modal__card {
  pointer-events: auto;
  background-color: #efeeec;
  border-radius: 2em;
  width: 100%;
  max-width: 54em;
  max-height: 100%;
  padding: 0.75em;
  display: none;
  position: relative;
}

.modal__card[data-modal-status="active"] {
  display: flex;
}

.modal__scroll {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  background-color: #e2e1df;
  border-radius: 1.25em;
  flex-flow: column;
  width: 100%;
  max-height: 100%;
  display: flex;
  position: relative;
  overflow: auto;
  overscroll-behavior: contain;
}

.modal__content {
  grid-column-gap: 1.5em;
  grid-row-gap: 1.5em;
  flex-flow: column;
  padding: 2em;
  display: flex;
}

.modal__h2 {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 2.5em;
  font-weight: 500;
  line-height: 1.175;
}

.modal__p {
  margin-bottom: 0;
  font-size: 1em;
  line-height: 1.5;
}

.modal__btn-close {
  background-color: #fff;
  border: 1px solid rgba(9, 38, 42, 0.14);
  color: var(--green);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 3em;
  height: 3em;
  display: flex;
  position: absolute;
  top: 1.5em;
  right: 1.5em;
  cursor: pointer;
  z-index: 2;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.modal__btn-close:hover {
  border-color: var(--green);
  background-color: #f8fbf9;
}

.modal__btn-close-bar {
  background-color: currentColor;
  width: 2px;
  height: 40%;
  position: absolute;
  transform: rotate(45deg);
}

.modal__btn-close-bar.is--second {
  transform: rotate(-45deg);
}

/* Brochure modal */
.modal__card--brochure {
  max-width: 80em;
  padding: 0;
  border-radius: 1.25em;
  background: #fff;
  overflow: hidden;
}

.modal__scroll--brochure {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
}

.brochure-modal {
  display: grid;
  grid-template-columns: 38% 62%;
  width: 100%;
  min-height: 26em;
}

.brochure-modal__promo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3.5em 2.75em;
  color: #fff;
  background: linear-gradient(165deg, var(--green) 0%, #2d6b48 55%, #245a3c 100%);
}

.brochure-modal__eyebrow {
  margin-bottom:0.5em;
  font-size: 1.15em;
  font-weight: 300;
  line-height: 1.3;
  text-transform: uppercase;
}

.brochure-modal__title {
  margin: 0 0 1.1em;
  font-size: clamp(2em, 3.2vw, 2.75em);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.brochure-modal__text {
  margin: 0;

  font-size: 1em;
  line-height: var(--text-body-line-height);
  color: rgba(255, 255, 255, 0.88);
}

.brochure-modal__form-wrap {
  position: relative;
  display: flex;
  align-items: center;
  padding: 3.5em 3.25em 3.5em 3em;
  background: #f1f5f3;
}

.brochure-modal__form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.1em;
  width: 100%;

}

.brochure-modal__field input {
  width: 100%;
  height: 3.25em;
  padding: 0 1.15em;
  border: 1px solid var(--line);
  border-radius: 0.65em;
  color: var(--ink);
  font: inherit;
  font-size: var(--text-body-size);
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.brochure-modal__field input::placeholder {
  color: #8a9a96;
}

.brochure-modal__field input:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(59, 132, 91, 0.14);
}

.brochure-modal__submit {
  align-self: flex-start;
  margin-top: 0.35em;
}

.brochure-modal__watermark {
  position: absolute;
  right: 0.15em;
  bottom: -0.2em;
  color: rgba(9, 38, 42, 0.05);
  font-size: clamp(4.5em, 10vw, 5em);
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

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

@media screen and (max-width: 767px) {
  .modal {
    padding: 1em;
  }

  .brochure-modal {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .brochure-modal__promo {
    padding: 2.5em 1.75em 2.25em;
  }

  .brochure-modal__text {
    max-width: none;
  }

  .brochure-modal__form-wrap {
    padding: 2.25em 1.75em 2.5em;
  }

  .modal__btn-close {
    top: 1em;
    right: 1em;
  }

  .brochure-modal__watermark {
    font-size: 4em;
    right: 0.5em;
    bottom: 0.2em;
  }
}

/* Offerte modal */
.modal__card--offerte {
  --offerte-modal-height: min(92vh, 56em);
  max-width: 94em;
  padding: 0;
  border-radius: 1.25em;
  background: #fff;
  overflow: hidden;
}

.modal__scroll--offerte {
  background: transparent;
  border-radius: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  height: var(--offerte-modal-height);
  max-height: var(--offerte-modal-height);
}

.offerte-modal {
  display: grid;
  grid-template-columns: 34% 66%;
  width: 100%;
  min-height: var(--offerte-modal-height);
  height: 100%;
  align-items: stretch;
  transition: grid-template-columns 0.65s cubic-bezier(0.4, 0, 0.2, 1);
}

.offerte-modal.is-promo-hidden {
  grid-template-columns: 1fr;
}

.offerte-modal__promo {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  overflow: hidden;
  padding: 3em 2.5em;
  color: #fff;
  background-color: var(--ink);
  background-image:
    linear-gradient(165deg, rgba(9, 38, 42, 0.82) 0%, rgba(9, 38, 42, 0.78) 55%, rgba(9, 38, 42, 0.85) 100%),
    url("assets/tuintje.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  will-change: transform, opacity;
}

.offerte-modal.is-promo-hidden .offerte-modal__promo {
  display: none;
}

.offerte-modal__eyebrow {
  margin-bottom: 0.5em;
  font-size: 1em;
  font-weight: 300;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.offerte-modal__title {
  margin: 0 0 1em;
  font-size: clamp(1.85em, 2.8vw, 2.5em);
  font-weight: 500;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.offerte-modal__text {
  margin: 0;
  font-size: 1.05em;
  line-height: var(--text-body-line-height);
  color: rgba(255, 255, 255, 0.88);
}

.offerte-modal__form-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 0;
  height: 100%;
  padding: 2.25em 2.5em 2em;
  background: #f1f5f3;
  overflow: hidden;
}

.offerte-modal__form {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.25em;
  flex: 1;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  padding-right: 0.25em;
}

.offerte-modal__step-panel {
  flex: 1;
  min-height: 26em;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding-right: 0.15em;
}

.offerte-modal__progress-wrap {
  display: flex;
  flex-direction: column;
  gap: 0.55em;
  margin-bottom: 0.15em;
}

.offerte-modal__progress-bar {
  width: 100%;
  height: 2px;
  background: #dfe7e3;
  border-radius: 999px;
  overflow: hidden;
}

.offerte-modal__progress-fill {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
  border-radius: inherit;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.offerte-modal__progress-wrap[hidden] {
  display: none !important;
}

.offerte-modal__progress {
  margin: 0;
  font-size: 0.82em;
  color: #6d7f7a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.offerte-modal__error {
  margin: 0;
  padding: 0.65em 0.85em;
  border-radius: 0.5em;
  background: #fdecec;
  color: #8b2e2e;
  font-size: 1em;
  line-height: 1.45;
}

.offerte-modal__error[hidden] {
  display: none !important;
}

.offerte-modal__step {
  display: flex;
  flex-direction: column;
  gap: 1.1em;
}

.offerte-modal__step[hidden],
.offerte-modal__step-panel[hidden],
.offerte-modal__success[hidden],
.offerte-modal__nav[hidden] {
  display: none !important;
}

.offerte-modal__success:not([hidden]) {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 26em;
  padding: 2em 1.25em;
  text-align: center;
}

.offerte-modal__form.is-submitting .offerte-modal__nav-btn:not([data-offerte-submit]) {
  pointer-events: none;
  opacity: 0.45;
}

.offerte-modal__form.is-submitting {
  pointer-events: none;
}

.offerte-modal__form.is-submitting [data-offerte-submit] {
  pointer-events: auto;
}

.modal__card--offerte.is-offerte-locked .modal__btn-close {
  opacity: 0.3;
  pointer-events: none;
  cursor: default;
}

.modal[data-modal-group-status="active"]:has(.modal__card--offerte.is-offerte-locked) .modal__dark {
  pointer-events: none;
  cursor: default;
}

.offerte-modal__fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.offerte-modal__legend {
  margin-bottom: 0.65em;
  padding: 0;
  font-size: 1.05em;
  font-weight: 500;
  color: var(--ink);
}

.offerte-modal__label {
  display: block;
  margin-bottom: 0.4em;
  font-size: 1.05em;
  font-weight: 500;
  color: var(--ink);
}

.offerte-modal__hint {
  margin: 0 0 0.5em;
  font-size: 0.98em;
  line-height: 1.5;
  color: #6d7f7a;
}

.offerte-modal__hint[hidden] {
  display: none;
}

.offerte-modal__hint--after {
  margin: 0.45em 0 0;
}

.offerte-modal__field--delivery label {
  order: 1;
}

.offerte-modal__field--delivery input {
  order: 2;
}

.offerte-modal__field--delivery .offerte-modal__hint--delivery {
  order: 3;
  margin: 0.45em 0 0;
}

.offerte-modal__grid--delivery-ref:has([data-offerte-field-zakelijk][hidden]) .offerte-modal__field--delivery .offerte-modal__hint--delivery {
  order: 2;
  margin: 0 0 0.45em;
}

.offerte-modal__grid--delivery-ref:has([data-offerte-field-zakelijk][hidden]) .offerte-modal__field--delivery input {
  order: 3;
}

.offerte-modal__field {
  display: flex;
  flex-direction: column;
}

.offerte-modal__field[hidden] {
  display: none !important;
}

.offerte-modal__grid {
  display: grid;
  gap: 0.85em;
}

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

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

.offerte-modal__grid--contact-names:has([data-offerte-field-zakelijk][hidden]) {
  grid-template-columns: 1fr;
}

.offerte-modal__grid--delivery-ref:has([data-offerte-field-zakelijk][hidden]) {
  grid-template-columns: 1fr;
}

.offerte-modal__fieldset > .offerte-modal__grid + .offerte-modal__grid,
.offerte-modal__fieldset > .offerte-modal__grid + .offerte-modal__field {
  margin-top: 0.85em;
}

.offerte-modal__field input[type="text"],
.offerte-modal__field input[type="email"],
.offerte-modal__field input[type="tel"],
.offerte-modal__field input[type="number"],
.offerte-modal__field input[type="date"],
.offerte-modal__field select,
.offerte-modal__field textarea {
  width: 100%;
  padding: 0.8em 1em;
  border: 1px solid var(--line);
  border-radius: 0.65em;
  color: var(--ink);
  font: inherit;
  font-size: 1.05em;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.offerte-modal__field textarea {
  min-height: 5.5em;
  resize: vertical;
}

.offerte-modal__field input:focus,
.offerte-modal__field select:focus,
.offerte-modal__field textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(59, 132, 91, 0.14);
}

.offerte-modal__radio-group,
.offerte-modal__checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65em;
}

.offerte-modal__checkbox-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.offerte-modal__radio-group--stacked {
  flex-direction: column;
  gap: 0.55em;
}

.offerte-modal__radio,
.offerte-modal__checkbox {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 3.1em;
  padding: 0.75em 1em;
  border: 1px solid var(--line);
  border-radius: 0.65em;
  background: #fff;
  cursor: pointer;
  font-size: 1.05em;
  line-height: 1.45;
  color: var(--ink);
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.offerte-modal__radio:hover,
.offerte-modal__checkbox:hover {
  border-color: #b8c9c3;
  background: #fafcfb;
}

.offerte-modal__radio:has(input:focus-visible),
.offerte-modal__checkbox:has(input:focus-visible) {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(59, 132, 91, 0.14);
}

.offerte-modal__radio:has(input:checked),
.offerte-modal__checkbox:has(input:checked) {
  border-color: var(--green);
  background: #f8fbf9;
  box-shadow: 0 0 0 3px rgba(59, 132, 91, 0.1);
}

.offerte-modal__radio input,
.offerte-modal__checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  opacity: 0;
  pointer-events: none;
}

.offerte-modal__radio span,
.offerte-modal__checkbox span {
  display: flex;
  align-items: center;
  gap: 0.7em;
  width: 100%;
}

.offerte-modal__radio span::before,
.offerte-modal__checkbox span::before {
  content: "";
  flex-shrink: 0;
  width: 1.15em;
  height: 1.15em;
  border: 1.5px solid #b8c9c3;
  background: #fff;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

.offerte-modal__checkbox span::before {
  border-radius: 0.35em;
}

.offerte-modal__radio span::before {
  border-radius: 50%;
}

.offerte-modal__checkbox:has(input:checked) span::before {
  border-color: var(--green);
  background-color: var(--green);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 10' fill='none'%3E%3Cpath d='M1 5.2L4.2 8.4L11 1.6' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.65em;
}

.offerte-modal__radio:has(input:checked) span::before {
  border-color: var(--green);
  background-color: #fff;
  box-shadow: inset 0 0 0 0.28em var(--green);
}

.offerte-modal__checkbox--consent {
  align-items: flex-start;
  min-height: auto;
  padding: 0.85em 1em;
  margin-bottom: 0.65em;
}

.offerte-modal__checkbox--consent span {
  align-items: flex-start;
}

.offerte-modal__checkbox--consent span::before {
  margin-top: 0.15em;
}

.offerte-modal__consent-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.offerte-modal__consent-link:hover {
  color: var(--green);
}

.offerte-modal__fieldset--consent {
  margin-top: 0.5em;
}

.offerte-modal__dropzone {
  position: relative;
  padding: 1.5em 1em 1.25em;
  border: 1px dashed #b8c9c3;
  border-radius: 0.75em;
  background: #fff;
  text-align: center;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.offerte-modal__dropzone.is-dragover {
  border-color: var(--green);
  background: #f8fbf9;
}

.offerte-modal__dropzone-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65em;
  pointer-events: none;
}

.offerte-modal__dropzone-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
}

.offerte-modal__dropzone-icon svg {
  display: block;
  width: 1.75em;
  height: 1.75em;
}

.offerte-modal__dropzone input[type="file"] {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
}

.offerte-modal__dropzone-text {
  margin: 0;
  font-size: 1em;
  color: #6d7f7a;
  pointer-events: none;
}

.offerte-modal__dropzone-text span {
  color: var(--green);
  text-decoration: underline;
}

.offerte-modal__file-list {
  margin: 0.75em 0 0;
  padding: 0;
  list-style: none;
  text-align: left;
}

.offerte-modal__file-list li {
  padding: 0.35em 0;
  font-size: 0.98em;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.offerte-modal__dimensions {
  display: flex;
  flex-direction: column;
  gap: 1em;
}

.offerte-modal__dimension-row {
  padding: 1em;
  border: 1px solid var(--line);
  border-radius: 0.75em;
  background: #fff;
}

.offerte-modal__text-btn {
  margin-top: 0.5em;
  padding: 0;
  border: 0;
  background: none;
  color: var(--green);
  font: inherit;
  font-size: 0.9em;
  cursor: pointer;
  text-decoration: underline;
}

.offerte-modal__summary {
  padding: 1.1em 1.15em;
  border: 1px solid var(--line);
  border-radius: 0.75em;
  background: #fff;
  font-size: 1em;
  line-height: 1.55;
  color: var(--ink);
}

.offerte-modal__summary h4 {
  margin: 1em 0 0.35em;
  font-size: 1.05em;
  font-weight: 500;
}

.offerte-modal__summary h4:first-child {
  margin-top: 0;
}

.offerte-modal__summary dl {
  margin: 0;
  display: grid;
  grid-template-columns: minmax(8em, 38%) 1fr;
  gap: 0.25em 0.75em;
}

.offerte-modal__summary dt {
  color: #6d7f7a;
}

.offerte-modal__summary dd {
  margin: 0;
}

.offerte-modal__success-lottie {
  width: 12em;
  max-width: 100%;
  margin: 0 auto 1.25em;
  line-height: 0;
}

.offerte-modal__success-title {
  margin: 0 0 0.75em;
  font-size: 1.75em;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.offerte-modal__success-text {
  margin: 0 0 1.75em;
  max-width: 22em;
  color: var(--text-body-color);
  line-height: var(--text-body-line-height);
}

.offerte-modal__success .button {
  margin-top: 0;
}

.offerte-modal__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75em;
  margin-top: auto;
  padding-top: 0.5em;
  position: sticky;
  bottom: 0;
}

.offerte-modal__nav-btn[hidden] {
  display: none !important;
}

.offerte-modal__watermark {
  position: absolute;
  right: 0.15em;
  bottom: -0.2em;
  color: rgba(9, 38, 42, 0.05);
  font-size: clamp(3.5em, 8vw, 4.5em);
  font-weight: 300;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

@media screen and (max-width: 900px) {
  .offerte-modal {
    grid-template-columns: 1fr;
    min-height: auto;
    height: auto;
  }

  .modal__scroll--offerte {
    height: auto;
    max-height: 96vh;
  }

  .offerte-modal__step-panel {
    min-height: 20em;
  }

  .offerte-modal__success:not([hidden]) {
    min-height: 20em;
    padding: 1.5em 1em;
  }

  .offerte-modal__promo {
    padding: 2em 1.75em 1.75em;
  }

  .offerte-modal__form-wrap {
    padding: 1.75em 1.5em 1.5em;
    max-height: 74vh;
  }

  .offerte-modal__grid--2,
  .offerte-modal__grid--3 {
    grid-template-columns: 1fr;
  }

  .offerte-modal__checkbox-group {
    grid-template-columns: 1fr;
  }
}

@media screen and (max-width: 767px) {
  .modal__card--offerte {
    max-width: 100%;
  }
}

/* Contact page */
.page-contact main,
.page-over-ons main {
  padding-bottom: 0;
}

.legal-page {
  padding: clamp(64px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
}

.page-over-ons .about-split {
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(48px, 6vw, 72px);
}

.page-over-ons .about-split + .about-split {
  padding-top: clamp(48px, 6vw, 80px);
}

.contact-hero {
  padding: 28px 0 0;
}

.contact-hero__visual {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 430px;
  padding: 0 clamp(32px, 5vw, 72px);
  border-radius: 18px;
  overflow: hidden;
  isolation: isolate;
  margin:0 2vw;
}

.contact-hero__visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 32%;
}

.contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(3, 24, 25, 0.78) 0%,
    rgba(3, 24, 25, 0.5) 52%,
    rgba(3, 24, 25, 0.38) 100%
  );
}

.contact-hero__title {
  position: relative;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: clamp(3.5em, 8vw, 5.5em);
  font-weight: 300;
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.contact-info {
  margin: 0;
  padding: 58px 0;
  border-bottom: 1px solid var(--line);
}

.contact-info__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
}

.contact-info__item {
  padding: 8px clamp(24px, 4vw, 56px);
  border-right: 1px solid var(--line);
}

.contact-info__item:first-child {
  padding-left: 0;
}

.contact-info__item:last-child {
  padding-right: 0;
  border-right: 0;
}

.contact-info__icon {
  width: 28px;
  height: 28px;
  margin-bottom: 22px;
  color: var(--green);
}

.contact-info__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.contact-info__title {
  margin: 0 0 14px;
  font-size: 1.35em;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.contact-info__text {
  margin: 0 0 18px;
  font-size: var(--text-body-size);
  line-height: var(--text-body-line-height);
  color: var(--text-body-color);
}

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

.contact-info__text a:hover {
  color: var(--green);
}

.contact-info__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--green);
  font-size: var(--text-body-size);
  font-weight: 500;
  transition: opacity 0.2s ease;
}

.contact-info__link:hover {
  opacity: 0.75;
}

.contact-form-section {
  padding: 72px 0 80px;
}

.contact-form-section__title {
  margin: 0 0 16px;
  color: var(--green);
  font-size: clamp(2.2em, 3.5vw, 3.2em);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.contact-form-section__intro {
  max-width: 42em;
  margin: 0 0 42px;
}

.contact-form-section__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 0.92fr);
  gap: clamp(24px, 3vw, 40px);
  align-items: stretch;
}

.contact-form__box {
  padding: clamp(24px, 3vw, 36px);
  border-radius: 16px;
  background: #f2f2f2;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  border: 0;
  border-radius: 10px;
  font: inherit;
  font-size: var(--text-body-size);
  color: var(--ink);
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.contact-form__field input,
.contact-form__field select {
  height: 3.4em;
  padding: 0 1em;
}

.contact-form__field select {
  appearance: none;
  padding-right: 2.5em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='none' viewBox='0 0 16 16'%3E%3Cpath d='M4 6l4 4 4-4' stroke='%23526363' stroke-width='1.25' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
  cursor: pointer;
}

.contact-form__field textarea {
  min-height: 180px;
  padding: 1em;
  resize: vertical;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(59, 132, 91, 0.18);
}

.contact-form__submit {
  margin-top: 6px;
  align-self: flex-start;
}

.contact-form-section__media,
.contact-quote__media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
}

.contact-form-section__media img,
.contact-quote__media img {
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center;
}

.contact-quote {
  padding: 0 0 100px;
}

.contact-quote__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(20px, 3vw, 32px);
  align-items: stretch;
}

.contact-quote__media img {
  min-height: 360px;
}

.contact-quote__panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(36px, 5vw, 56px);
  border-radius: 16px;
  color: #fff;
  background: #031819;
}

.contact-quote__title {
  margin: 0 0 18px;
  font-size: clamp(2em, 3vw, 2.75em);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.contact-quote__text {
  margin: 0 0 32px;
  max-width: 30em;
  font-size: var(--text-body-size);
  line-height: var(--text-body-line-height);
  color: rgba(255, 255, 255, 0.82);
}

.button-primary .button-dot {
  color: #d1fd88;
  background: #031819;
}

@media screen and (max-width: 991px) {
  .contact-info__grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .contact-info__item {
    padding: 0;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding-bottom: 36px;
  }

  .contact-info__item:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  .contact-form-section__layout,
  .contact-quote__layout {
    grid-template-columns: 1fr;
  }

  .contact-form-section__media img,
  .contact-quote__media img {
    min-height: 320px;
  }
}

@media screen and (max-width: 760px) {
  .contact-hero {
    padding-top: 16px;
  }

  .contact-hero__visual {
    min-height: 300px;
    padding: 0 24px;
    border-radius: 14px;
  }

  .contact-info {
    padding: 40px 0;
  }

  .contact-form-section {
    padding: 52px 0 60px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form__submit {
    width: 100%;
    justify-content: center;
  }

  .contact-quote {
    padding-bottom: 72px;
  }
}

.link-group {
  gap: 1em;
  justify-content: center;
  font-size: 3em;
  display: flex;
}

.underline-link {
  color: inherit;
  font-size: 1em;
  line-height: 1.25;
}

[data-underline-link] {
  text-decoration: none;
  position: relative;
}

[data-underline-link]::before,
[data-underline-link="alt"]::before,
[data-underline-link="alt"]::after{
  content: "";
  position: absolute;
  bottom: -0.0625em;
  left: 0;
  width: 100%;
  height: 0.0625em;
  background-color: currentColor;
  transition: transform 0.735s cubic-bezier(0.625, 0.05, 0, 1);
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
}

[data-underline-link="alt"]::before {
  transform-origin: left;
  transform: scaleX(1) rotate(0.001deg);
  transition-delay: 0.3s;
}

[data-underline-link="alt"]::after {
  transform-origin: right;
  transform: scaleX(0) rotate(0.001deg);
  transition-delay: 0s;
}

@media (hover: hover) and (pointer: fine) {
  [data-hover]:hover [data-underline-link]::before,
  [data-underline-link]:hover::before {
    transform-origin: left;
    transform: scaleX(1) rotate(0.001deg);
  }  
  
  [data-hover]:hover [data-underline-link="alt"]::before,
  [data-underline-link="alt"]:hover::before {
    transform-origin: right;
    transform: scaleX(0) rotate(0.001deg);
    transition-delay: 0s;
  }
  
  [data-hover]:hover [data-underline-link="alt"]::after,
  [data-underline-link="alt"]:hover::after {
    transform-origin: left;
    transform: scaleX(1) rotate(0.001deg);
    transition-delay: 0.3s;
  }
}

/* Market pages (zakelijk) */
.page-market main {
  padding-bottom: 0;
}

.page-market .about-split {
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(64px, 8vw, 96px);
}

.market-hero {
  padding: 6em 0 0;
}

.market-hero__visual {
  align-items: flex-end;
  min-height: clamp(430px, 58vh, 560px);
  padding-top: clamp(48px, 8vw, 96px);
  padding-bottom: clamp(48px, 8vw, 80px);
}

.market-hero__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.market-hero__eyebrow {
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.82);
}

.market-hero__title {
  margin: 0 0 22px;
  color: #fff;
  font-size: clamp(2.6em, 5.5vw, 4.4em);
  font-weight: 300;
  line-height: 1.02;
  letter-spacing: -0.05em;
}

.market-hero__intro {
  margin: 0 0 30px;
  max-width: 58ch;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1.4em;
  line-height: var(--text-body-line-height);
}

.market-hero__actions {
  flex-wrap: wrap;
}

.market-hero__checks {
  margin-top: 8px;
}

.market-section {
  padding: clamp(64px, 8vw, 96px) 0;
}

.market-features-section--compact {
  padding-top: 0;
}

.market-features-section--no-header .market-features {
  margin-top: 0;
}

.market-features-section--solutions .market-features {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.market-features-section--solutions .market-feature__title {
  font-size: 1.05em;
  line-height: 1.35;
}

@media (max-width: 1200px) {
  .market-features-section--solutions .market-features {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .market-features-section--solutions .market-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.market-section.is--alt {
  background: var(--mist);
}

.market-section__header {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.market-section__title {
  margin: 0;
  font-size: clamp(2em, 3.6vw, 2.8em);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.market-section__intro {
  margin: 18px 0 0;
}

.market-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(20px, 3vw, 32px);
}

.market-features.is--2x2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 4vw, 40px);
}

.market-features.is--2x2 .market-feature {
  padding: clamp(32px, 4vw, 48px);
  min-height: 180px;
}

.market-features.is--2x2 .market-feature__title {
  font-size: clamp(1.25em, 2vw, 1.45em);
  margin-bottom: 16px;
}

.market-feature {
  padding: clamp(24px, 3vw, 32px);
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.market-section.is--alt .market-feature {
  border-color: rgba(3, 24, 25, 0.08);
}

.market-feature__title {
  margin: 0 0 12px;
  font-size: 1.2em;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.market-feature__text {
  margin: 0;
  color: var(--text-body-color);
  font-size: var(--text-body-size);
  line-height: var(--text-body-line-height);
}

.market-list__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
}

.market-list__header {
  max-width: 520px;
}

.market-list {
  margin: 0;
  padding: clamp(28px, 4vw, 40px);
  border: 1px solid rgba(3, 24, 25, 0.08);
  border-radius: 16px;
  background: #fff;
}

.market-list li {
  padding: 10px 0;
  font-size: var(--text-body-size);
  line-height: var(--text-body-line-height);
}

.market-list li:not(:last-child) {
  border-bottom: 1px solid var(--line);
}

.market-cta {
  padding: clamp(48px, 6vw, 72px) 0;
}

.market-cta--inline {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.market-cta--bottom,
.market-cta--footer {
  background: var(--mist);
}

footer .market-cta {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--ink);
}

footer .market-cta__title {
  color: var(--ink);
}

footer .market-cta__text {
  color: var(--text-body-color);
}

.market-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.market-cta__copy {
  max-width: 640px;
}

.market-cta__title {
  margin: 0;
  font-size: clamp(1.8em, 3vw, 2.4em);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -0.04em;
}

.market-cta__text {
  margin: 14px 0 0;
}

.market-cta__actions {
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.market-references__placeholder {
  display: grid;
  place-items: center;
  min-height: 220px;
  padding: 40px;
  border: 1px dashed var(--line);
  border-radius: 16px;
  background: var(--mist);
  text-align: center;
}

.market-references__placeholder p {
  margin: 0;
  color: var(--text-body-color);
  font-size: var(--text-body-size);
}

.market-stats {
  margin-bottom: 0;
}

.market-why {
  position: relative;
  padding: clamp(72px, 9vw, 110px) 0;
  background: var(--mist);
  overflow: hidden;
  isolation: isolate;
}

.market-why__decor {
  position: absolute;
  left: clamp(-120px, -4vw, -40px);
  top: 50%;
  width: clamp(280px, 34vw, 460px);
  height: clamp(280px, 34vw, 460px);
  border-radius: 50%;
  background: rgba(59, 132, 91, 0.1);
  transform: translateY(-50%);
  pointer-events: none;
  z-index: 0;
}

.market-why__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.42fr) minmax(0, 0.58fr);
  gap: clamp(36px, 6vw, 88px);
  align-items: center;
}

.market-why__title {
  margin: 0 0 32px;
  font-size: var(--text-5xl-size);
  letter-spacing: -0.04em;
}

.market-why__text {
  margin: 0 0 18px;
}

.market-why__text:last-child {
  margin-bottom: 0;
}

.market-why__actions {
  margin-top: clamp(28px, 4vw, 40px);
}

.market-why__cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2.5vw, 24px);
}

.market-why-card {
  padding: clamp(24px, 3vw, 32px);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 36px rgba(9, 38, 42, 0.06);
}

.market-why-card__icon {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  border-radius: 12px;
  color: #fff;
  background: var(--green);
}

.market-why-card__icon svg {
  width: 24px;
  height: 24px;
  display: block;
}

.market-why-card__title {
  margin: 0 0 10px;
  font-size: 1.15em;
  font-weight: 500;
  letter-spacing: -0.02em;
}

.market-why-card__text {
  margin: 0;
  color: var(--text-body-color);
  font-size: var(--text-body-size);
  line-height: var(--text-body-line-height);
}

@media (max-width: 1024px) {
  .market-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .market-features.is--2x2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .market-hero__visual {
    min-height: 520px;
    align-items: flex-end;
  }

  .market-list__layout {
    grid-template-columns: 1fr;
  }

  .market-why__layout {
    grid-template-columns: 1fr;
  }

  .market-why__cards {
    grid-template-columns: 1fr;
  }

  .market-cta__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .market-cta__actions {
    width: 100%;
    justify-content: flex-start;
  }

  .market-features {
    grid-template-columns: 1fr;
  }

  .market-features-section--solutions .market-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Osmo Basic GSAP Slider */
.gsap-slider-section {
  padding: clamp(64px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
}

.gsap-slider-section--images-only {
  padding-top: clamp(48px, 6vw, 72px);
}

.gsap-slider-section--images-only [data-gsap-slider-item-status="not-active"] .demo-card,
.gsap-slider-section--products [data-gsap-slider-item-status="not-active"] .demo-card {
  filter: brightness(0.85);
}

.gsap-slider-section--images-only .gsap-slider__item,
.gsap-slider-section--products .gsap-slider__item {
  width: min(686px, calc(((100% - 1px) - (var(--slider-spv) - 1) * var(--slider-gap)) / var(--slider-spv)));
  max-width: 686px;
}

.gsap-slider-section--images-only .demo-card,
.gsap-slider-section--products .demo-card {
  aspect-ratio: 686 / 646;
  max-width: 686px;
  width: 100%;
}

.gsap-slider-section--images-only .before__125,
.gsap-slider-section--products .before__125 {
  display: none;
}

/* Team-slider: zelfde kaartstijl als products, compactere layout (3 per view) */
.gsap-slider-section--team [data-gsap-slider-init] {
  --slider-spv: 3;
  --slider-gap: 1.25em;
}

.gsap-slider-section--team.gsap-slider-section--products .gsap-slider__item {
  width: calc(((100% - 1px) - (var(--slider-spv) - 1) * var(--slider-gap)) / var(--slider-spv));
  max-width: none;
}

.gsap-slider-section--team.gsap-slider-section--products .demo-card {
  aspect-ratio: 4 / 5;
  max-width: none;
}

.gsap-slider-section--team.gsap-slider-section--products .demo-card__tag-p {
  font-size: clamp(1em, 1.4vw, 1.25em);
}

@media screen and (max-width: 991px) {
  .gsap-slider-section--team [data-gsap-slider-init] {
    --slider-spv: 2.25;
  }
}

@media screen and (max-width: 767px) {
  .gsap-slider-section--team [data-gsap-slider-init] {
    --slider-spv: 1.15;
    --slider-gap: 1em;
  }
}

.gsap-slider-section__header {
  margin-bottom: clamp(32px, 5vw, 48px);
}

.gsap-slider-section__title {
  margin: 0;
  font-size: clamp(2em, 3.6vw, 2.8em);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.gsap-slider {
  grid-column-gap: 3em;
  grid-row-gap: 3em;
  flex-flow: column;
  align-items: center;
  width: 100%;
  padding-left: 5vw;
  padding-right: 5vw;
  display: flex;
  position: relative;
  overflow: hidden;
}

.gsap-slider__collection {
  width: 100%;
  max-width: 72em;
}

.gsap-slider__list {
  -webkit-user-select: none;
  user-select: none;
  will-change: transform;
  touch-action: pan-y;
  backface-visibility: hidden;
  display: flex;
}

.gsap-slider__item {
  width: calc(((100% - 1px) - (var(--slider-spv) - 1) * var(--slider-gap)) / var(--slider-spv));
  margin-right: var(--slider-gap);
  flex: none;
}

.demo-card {
  border-radius: 1.5em;
  justify-content: center;
  align-items: center;
  width: 100%;
  display: flex;
  position: relative;
  overflow: hidden;
}

.before__125 {
  padding-top: 125%;
}

.gsap-slider .demo-card {
  border-color: transparent;
  border-radius: 5px;
}

.gsap-slider-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gsap-slider-section--products .demo-card::after {
  content: "";
  position: absolute;
  inset: 35% 0 0;
  z-index: 1;
  background: linear-gradient(transparent, rgba(4, 18, 21, 0.94));
  pointer-events: none;
}

.gsap-slider-section--products .demo-card__tag {
  top: auto;
  bottom: clamp(20px, 4vw, 32px);
  left: clamp(20px, 4vw, 32px);
  right: clamp(20px, 4vw, 32px);
  z-index: 2;
}

.gsap-slider-section--products .demo-card__tag-p {
  font-size: clamp(1.15em, 1.8vw, 1.5em);
  line-height: 1.2;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.35);
}

.demo-card__tag {
  position: absolute;
  top: 2em;
  left: 2em;
  right: 2em;
  z-index: 1;
}

.demo-card__tag-p {
  margin-bottom: 0;
  font-size: clamp(1.25em, 2vw, 1.75em);
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.03em;
  color: #fff;
}

.gsap-slider-card__tag {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72em;
  font-weight: 400;
  letter-spacing: 0;
  opacity: 0.85;
}

[data-gsap-slider-init] {
  --slider-status: on;
  --slider-spv: 2;
  --slider-gap: 1.5em;
}

@media screen and (max-width: 991px) {
  [data-gsap-slider-init] {
    --slider-status: on;
    --slider-spv: 2.25;
    --slider-gap: 1.5em;
  }
}

@media screen and (max-width: 767px) {
  [data-gsap-slider-init] {
    --slider-status: on;
    --slider-spv: 1.15;
    --slider-gap: 1em;
  }
}

[data-gsap-slider-item]:last-child {
  margin-right: 0;
}

.gsap-slider__controls {
  grid-column-gap: 0.5em;
  grid-row-gap: 0.5em;
  justify-content: center;
  align-items: center;
  display: flex;
}

.gsap-slider__control {
  color: var(--ink);
  background-color: #fff;
  border: 1px solid var(--line);
  border-radius: 100em;
  justify-content: center;
  align-items: center;
  width: 4em;
  aspect-ratio: 1;
  padding: 1em;
  display: flex;
  transition: opacity 0.3s ease;
}

.gsap-slider__control-icon {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gsap-slider__control-icon.is--prev {
  transform: rotate(-180deg);
}

[data-gsap-slider-status="not-active"] [data-gsap-slider-controls] {
  display: none;
}

[data-gsap-slider-control-status="not-active"] {
  opacity: 0.2;
  pointer-events: none;
}

.demo-card {
  transition: all 0.3s ease;
}

[data-gsap-slider-item-status="not-active"] .demo-card {
  filter: brightness(0.72);
}

.demo-card__tag {
  transition: all 0.3s ease;
}

[data-gsap-slider-item-status="not-active"] .demo-card__tag {
  opacity: 0;
}

[data-gsap-slider-list-status="grab"] {
  cursor: grab;
}

[data-gsap-slider-list-status="grabbing"] {
  cursor: grabbing;
}

/* Consumer pages (particulieren) */
.page-consumer main {
  padding-bottom: 0;
}

.page-consumer .about-split {
  padding-top: clamp(64px, 8vw, 96px);
  padding-bottom: clamp(64px, 8vw, 96px);
}

.page-consumer .market-hero__visual {
  min-height: clamp(480px, 62vh, 620px);
}

.page-consumer .consumer-styles--intro + .gsap-slider-section--products {
  padding-top: 0;
}

.market-hero__subtitle {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.35em, 2.4vw, 1.85em);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.consumer-styles {
  padding: clamp(72px, 9vw, 110px) 0;
  background: #fff;
}

.consumer-styles--intro {
  padding: clamp(64px, 8vw, 96px) 0 clamp(32px, 4vw, 48px);
}

.consumer-styles--cards {
  padding-top: clamp(64px, 8vw, 96px);
}

.consumer-styles__header {
  max-width: 720px;
}

.consumer-styles__header .eyebrow {
  margin-bottom: 21px;
}

.consumer-styles__header .consumer-styles__title {
  margin: 0 0 20px;
  color: var(--ink);
}

.consumer-styles__title {
  font-size: var(--text-5xl-size);
  letter-spacing: -0.04em;
}

.consumer-styles__intro {
  margin: 0 0 18px;
}

.consumer-styles__intro:last-child {
  margin-bottom: 0;
}

.consumer-styles__header:not(:last-child) {
  margin-bottom: clamp(40px, 5vw, 56px);
}

.consumer-styles__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
  padding-inline: clamp(20px, 4vw, 44px);
}

.consumer-styles__grid--contained {
  padding-inline: 0;
}

.consumer-style-card {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 3 / 4;
  min-height: 320px;
}

a.consumer-style-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

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

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

.consumer-style-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.consumer-style-card__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(20px, 3vw, 28px);
  background: linear-gradient(transparent 35%, rgba(4, 18, 21, 0.82) 100%);
}

.consumer-style-card__title {
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(1.1em, 1.6vw, 1.35em);
  font-weight: 500;
  letter-spacing: -0.02em;
}

.consumer-style-card__tagline {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: var(--text-caption-size);
  line-height: 1.4;
}

@media (hover: hover) and (pointer: fine) {
  .consumer-style-card:hover .consumer-style-card__img {
    transform: scale(1.04);
  }
}

.page-consumer .process-tabs {
  margin-bottom: clamp(64px, 8vw, 96px);
  padding-top: clamp(64px, 8vw, 96px);
}

.page-consumer .market-cta--inline {
  margin: 0;
  border-top: none;
  padding: clamp(64px, 8vw, 96px) 0;
  background: #fff;
}

@media (max-width: 1024px) {
  .consumer-styles__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .consumer-styles__grid--3,
  .consumer-styles__grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 600px) {
  .consumer-styles__grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin-inline: auto;
  }

  .consumer-style-card {
    aspect-ratio: 4 / 3;
    min-height: 0;
  }
}

/* Crosslink cards */
.link-cards {
  padding: clamp(72px, 8vw, 96px) 0 clamp(48px, 6vw, 72px);
}

.link-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 18px);
}

.link-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: clamp(260px, 28vw, 320px);
  padding: clamp(24px, 3vw, 36px);
  border: 1px solid var(--line);
  border-radius: 6px;
  overflow: hidden;
  color: var(--ink);
  background: #fff;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: rgba(59, 132, 91, 0.28);
  box-shadow: 0 16px 36px rgba(9, 38, 42, 0.07);
}

.link-card--media .link-card__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease;
}

.link-card--media:hover .link-card__media {
  transform: scale(1.04);
}

.link-card--media .link-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.96) 0%,
    rgba(255, 255, 255, 0.9) 38%,
    rgba(238, 243, 241, 0.82) 100%
  );
}

.link-card__content,
.link-card__footer {
  position: relative;
  z-index: 1;
}

.link-card__title {
  margin: 0 0 12px;
  color: var(--ink);
  font-size: clamp(1.15em, 1.6vw, 1.35em);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.link-card__text {
  margin: 0;
  max-width: 22em;
  color: var(--text-body-color);
  font-size: clamp(0.95em, 1.1vw, 1.05em);
  line-height: 1.55;
}

.link-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-top: clamp(28px, 4vw, 40px);
}

.link-card__icon {
  display: inline-flex;
  flex-shrink: 0;
  width: clamp(42px, 4vw, 52px);
  height: clamp(42px, 4vw, 52px);
  color: var(--green);
}

.link-card__icon svg {
  width: 100%;
  height: 100%;
}

.link-card__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--ink);
  font-size: 0.95em;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.link-card:hover .link-card__cta {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.page-over-ons .market-why + .link-cards {
  padding-top: clamp(88px, 10vw, 120px);
}

@media (max-width: 991px) {
  .link-cards__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .link-card {
    min-height: 240px;
  }
}