/* ==========================================================
   FONT
========================================================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");



/* ==========================================================
   RESET
========================================================== */

* {
  box-sizing: border-box;
}


html {
  margin: 0;
  padding: 0;

  scroll-behavior: smooth;
}


body {
  margin: 0;
  padding: 0;

  overflow-x: hidden;

  color: #111111;

  background: #ffffff;

  font-family:
    "Inter",
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
}


a {
  color: inherit;

  text-decoration: none;
}



.cultvre-hero {

  position: relative;

  display: flex;

  width: 100%;

  min-height: 100vh;
  min-height: 100svh;

  align-items: center;

  justify-content: center;

  overflow: hidden;

  padding:
    60px
    clamp(24px, 5vw, 80px)
    110px;

  color: #ffffff;

  text-align: center;


  /* ========================================================
     HERO BILD

     Das Bild muss liegen unter:

     assets/images/hero.jpg

  ======================================================== */

  background-image:

    linear-gradient(
      rgba(0, 0, 0, 0.34),
      rgba(0, 0, 0, 0.42)
    ),

    url("assets/images/hero.jpg");


  background-position: center;

  background-repeat: no-repeat;

  background-size: cover;

}



.cultvre-hero::after {

  position: absolute;

  z-index: 1;

  right: 0;

  bottom: 0;

  left: 0;

  height: 260px;

  content: "";

  pointer-events: none;

  background:

    linear-gradient(
      to bottom,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.48)
    );

}



.cultvre-hero-content {

  position: relative;

  z-index: 2;

  display: flex;

  width: 100%;

  max-width: 1150px;

  flex-direction: column;

  align-items: center;

  justify-content: center;

}



.cultvre-hero-eyebrow {

  margin:

    0
    0
    24px;

  color: rgba(
    255,
    255,
    255,
    0.9
  );

  font-size: 13px;

  font-weight: 700;

  letter-spacing: 0.32em;

  text-transform: uppercase;

}



.cultvre-hero h1 {

  max-width: 1100px;

  margin: 0;

  color: #ffffff;

  font-size:

    clamp(
      56px,
      8.5vw,
      122px
    );

  font-weight: 800;

  line-height: 0.9;

  letter-spacing: -0.065em;

}



.cultvre-hero-description {

  max-width: 680px;

  margin:

    34px
    auto
    0;

  color:

    rgba(
      255,
      255,
      255,
      0.84
    );

  font-size:

    clamp(
      16px,
      1.55vw,
      20px
    );

  font-weight: 400;

  line-height: 1.65;

}

.cultvre-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;

  min-height: 52px;
  padding: 0 26px;

  background: #ffffff;
  color: #000000;

  border: none;
  border-radius: 999px;

  font-family: "Inter", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;

  text-decoration: none;
  white-space: nowrap;

  cursor: pointer;

  transition:
    transform 180ms ease,
    background 180ms ease;
}

.cultvre-btn:hover {
  transform: translateY(-2px);
}

.cultvre-btn-arrow {
  font-size: 21px;
  line-height: 1;
}
.cultvre-hero .cultvre-btn {
  margin-top: 22px;
}


.cultvre-partners {
  --partner-text: #111111;
  --partner-muted: #737373;
  --partner-gold: #b89346;
  --partner-line: rgba(17, 17, 17, 0.08);

  position: relative;
  z-index: 10;

  width: 100%;

  margin-top: -42px;

  overflow: hidden;

  padding:
    72px
    0
    68px;

  color: var(--partner-text);

  background: #ffffff;

  border-radius:
    42px
    42px
    0
    0;

  box-shadow:
    0
    -14px
    45px
    rgba(0, 0, 0, 0.07);
}



.cultvre-partners::before {
  position: absolute;

  top: 18px;
  left: 50%;

  width: 44px;
  height: 3px;

  content: "";

  border-radius: 999px;

  background:
    rgba(17, 17, 17, 0.09);

  transform: translateX(-50%);
}



.cultvre-partners-wrap {

  width: 100%;

}



.cultvre-partners-header {
  width:
    min(
      720px,
      calc(100% - 40px)
    );

  margin:
    0
    auto
    34px;

  text-align: center;
}



.cultvre-partners-kicker {
  display: inline-flex;

  align-items: center;
  justify-content: center;

  gap: 11px;

  margin-bottom: 12px;

  color: var(--partner-gold);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.2em;

  text-transform: uppercase;

  white-space: nowrap;
}


.cultvre-partners-kicker::before,
.cultvre-partners-kicker::after {
  width: 30px;
  height: 1px;

  content: "";

  background:
    rgba(184, 147, 70, 0.4);
}



.cultvre-partners-title {

  margin: 0;

  color: var(--partner-text);

  font-size:

    clamp(
      38px,
      4.2vw,
      56px
    );

  font-weight: 900;

  line-height: 0.96;

  letter-spacing: -0.055em;

}



.cultvre-partners-subline {

  max-width: 600px;

  margin:

    14px
    auto
    0;

  color: var(--partner-muted);

  font-size:

    clamp(
      14px,
      1.4vw,
      19px
    );

  font-weight: 500;

  line-height: 1.7;

}



.cultvre-partners-marquee {

  position: relative;

  width: 100%;

  overflow: hidden;

  padding:

    6px
    0;

}



.cultvre-partners-marquee::before,
.cultvre-partners-marquee::after {

  position: absolute;

  z-index: 5;

  top: 0;

  bottom: 0;

  width:

    clamp(
      35px,
      8vw,
      130px
    );

  content: "";

  pointer-events: none;

}


.cultvre-partners-marquee::before {

  left: 0;

  background:

    linear-gradient(
      90deg,
      #ffffff 10%,
      rgba(
        255,
        255,
        255,
        0
      )
    );

}


.cultvre-partners-marquee::after {

  right: 0;

  background:

    linear-gradient(
      -90deg,
      #ffffff 10%,
      rgba(
        255,
        255,
        255,
        0
      )
    );

}



.cultvre-partners-track {
  display: flex;

  width: max-content;

  will-change: transform;

  animation:
    cultvrePartnerScroll
    34s
    linear
    infinite;
}


.cultvre-partners-group {
  display: flex;

  flex-shrink: 0;

  align-items: center;

  gap: 14px;

  padding-right: 14px;
}



.cultvre-partners-card {
  display: flex;

  flex: 0 0 auto;

  width:
    clamp(
      170px,
      16vw,
      215px
    );

  height:
    clamp(
      82px,
      7vw,
      96px
    );

  align-items: center;
  justify-content: center;

  overflow: hidden;

  padding: 16px;

  border:
    1px solid
    var(--partner-line);

  border-radius: 16px;

  background: #ffffff;

  box-shadow:
    0
    8px
    24px
    rgba(0, 0, 0, 0.025);

  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.cultvre-partners-card .logo-tsv {
  max-width: 200%;
}

.cultvre-partners-card .logo-team-esslingen {
  max-width: 150%;
}

.cultvre-partners-card .logo-chargehere {
  max-width: 200%;
}

.cultvre-partners-card .logo-enbw {
  max-width: 60%;
}


.cultvre-partners-card:hover {
  border-color:
    rgba(17, 17, 17, 0.14);

  box-shadow:
    0
    12px
    28px
    rgba(17, 17, 17, 0.05);

  transform:
    translateY(-2px);
}



.cultvre-partners-card img {
  display: block;

  width: auto;
  height: auto;

  max-width: 78%;
  max-height: 50px;

  object-fit: contain;

  transition:
    transform 250ms ease;
}


.cultvre-partners-card:hover img {
  transform: scale(1.05);
}



.cultvre-partners-card
img.logo-enbw {

  transform:

    scale(
      1.6
    );

}


.cultvre-partners-card:hover
img.logo-enbw {

  transform:

    scale(
      1.67
    );

}



.cultvre-partners-card
img.logo-chargehere {

  transform:

    scale(
      1.3
    );

}


.cultvre-partners-card:hover
img.logo-chargehere {

  transform:

    scale(
      1.36
    );

}



/* ==========================================================
   ENDLOS-ANIMATION
========================================================== */

@keyframes cultvrePartnerScroll {

  from {

    transform:

      translateX(
        0
      );

  }


  to {

    transform:

      translateX(
        -50%
      );

  }

}



/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {


  .cultvre-hero {

    min-height: 100svh;

    padding:

      60px
      22px
      90px;

    background-position: center;

  }


  .cultvre-hero h1 {

    font-size:

      clamp(
        48px,
        15vw,
        72px
      );

    line-height: 0.92;

  }


  .cultvre-hero-description {

    max-width: 520px;

    margin-top: 25px;

    font-size: 16px;

    line-height: 1.6;

  }



  .cultvre-partners {

    margin-top: -32px;

    padding:

      85px
      0
      80px;

    border-radius:

      30px
      30px
      0
      0;

  }


  .cultvre-partners::before {

    top: 18px;

    width: 42px;

    height: 3px;

  }


  .cultvre-partners-header {

    width:

      calc(
        100%
        -
        40px
      );

    margin-bottom: 48px;

  }


  .cultvre-partners-kicker {

    gap: 11px;

    font-size: 10px;

  }


  .cultvre-partners-kicker::before,
.cultvre-partners-kicker::after {

    width: 28px;

  }


  .cultvre-partners-title {

    font-size:

      clamp(
        45px,
        13vw,
        64px
      );

  }


  .cultvre-partners-subline {

    margin-top: 18px;

    font-size: 16px;

  }


  .cultvre-partners-card {

    width: 185px;

    height: 100px;

    padding: 18px;

    border-radius: 18px;

  }


  .cultvre-partners-card img {

    max-height: 60px;

  }


  .cultvre-partners-track {

    animation-duration: 25s;

  }


}



/* ==========================================================
   BARRIEREFREIHEIT:
   ANIMATION DEAKTIVIEREN WENN GEWÜNSCHT
========================================================== */

@media (prefers-reduced-motion: reduce) {

  .cultvre-partners-track {

    animation: none;

  }


  .cultvre-partners-card,
.cultvre-partners-card img {

    transition: none;

  }

}
.cultvre-services,
.cultvre-services * {
  box-sizing: border-box;
}


.cultvre-services {
  width: 100%;

  padding:
    clamp(90px, 9vw, 145px)
    clamp(22px, 5vw, 80px);

  background: #ffffff;

  color: #111111;
}


.cultvre-services-wrap {
  width: min(1380px, 100%);

  margin: 0 auto;
}


.cultvre-services-header {
  display: grid;

  grid-template-columns:
    1fr
    0.65fr;

  align-items: end;

  gap:
    clamp(50px, 8vw, 120px);

  margin-bottom:
    clamp(55px, 6vw, 85px);
}


.cultvre-services-kicker {
  margin: 0 0 18px;

  color: #b89346;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.22em;

  text-transform: uppercase;
}


.cultvre-services-header h2 {
  margin: 0;

  font-size:
    clamp(48px, 6vw, 82px);

  font-weight: 900;

  line-height: 0.94;

  letter-spacing: -0.055em;
}


.cultvre-services-intro {
  max-width: 480px;

  margin: 0;

  color: #747474;

  font-size: 16px;

  line-height: 1.7;
}


.cultvre-services-grid {
  display: grid;

  grid-template-columns:
    1.2fr
    0.8fr;

  grid-template-rows:
    390px
    390px;

  gap: 14px;
}


.cultvre-service-teamwear {
  grid-row: 1 / 3;
}


.cultvre-service-card {
  position: relative;

  min-height: 100%;

  overflow: hidden;

  background: #111111;

  color: #ffffff;
}


.cultvre-service-card > img {
  position: absolute;

  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;

  transition:
    transform 700ms cubic-bezier(.2,.7,.2,1);
}


.cultvre-service-card:hover > img {
  transform: scale(1.04);
}


.cultvre-service-gradient {
  position: absolute;

  inset: 0;

  background:
    linear-gradient(
      180deg,
      rgba(0,0,0,.08) 15%,
      rgba(0,0,0,.18) 50%,
      rgba(0,0,0,.78) 100%
    );

  transition:
    opacity 250ms ease;
}


.cultvre-service-content {
  position: absolute;

  z-index: 2;

  inset: 0;

  display: flex;

  flex-direction: column;

  justify-content: space-between;

  padding:
    clamp(25px, 3vw, 42px);

  transition:
    opacity 220ms ease,
    transform 300ms ease;
}


.cultvre-service-number {
  display: block;

  margin-bottom: 18px;

  color: rgba(255,255,255,.45);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .13em;
}


.cultvre-service-category {
  margin: 0 0 10px;

  color: rgba(255,255,255,.67);

  font-size: 10px;

  font-weight: 800;

  letter-spacing: .15em;

  text-transform: uppercase;
}


.cultvre-service-content h3 {
  margin: 0;

  font-size:
    clamp(28px, 3vw, 48px);

  font-weight: 800;

  line-height: 1;

  letter-spacing: -0.045em;
}


.cultvre-service-hint {
  display: flex;

  align-items: center;

  gap: 10px;

  font-size: 11px;

  font-weight: 700;
}


.cultvre-service-hint > span {
  transition:
    transform 200ms ease;
}


.cultvre-service-card:hover
.cultvre-service-hint > span {
  transform:
    translateY(4px);
}


.cultvre-service-prices {
  position: absolute;

  z-index: 3;

  right: 0;
  bottom: 0;
  left: 0;

  padding:
    clamp(25px, 3vw, 42px);

  color: #ffffff;

  background:
    rgba(10,10,10,.94);

  backdrop-filter:
    blur(10px);

  -webkit-backdrop-filter:
    blur(10px);

  transform:
    translateY(101%);

  transition:
    transform
    420ms
    cubic-bezier(.22,.75,.2,1);
}


.cultvre-service-card:hover
.cultvre-service-prices {
  transform:
    translateY(0);
}


.cultvre-service-prices-head > div > span {
  display: block;

  margin-bottom: 7px;

  color: #b89346;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: .15em;

  text-transform: uppercase;
}


.cultvre-service-prices h4 {
  margin: 0 0 24px;

  font-size:
    clamp(22px, 2vw, 29px);

  font-weight: 800;

  letter-spacing: -0.035em;
}


.cultvre-service-price-list {
  border-top:
    1px solid
    rgba(255,255,255,.14);
}


.cultvre-service-price-list > div {
  display: flex;

  min-height: 50px;

  align-items: center;

  justify-content: space-between;

  gap: 25px;

  border-bottom:
    1px solid
    rgba(255,255,255,.12);
}


.cultvre-service-price-list span {
  color:
    rgba(255,255,255,.65);

  font-size: 12px;
}


.cultvre-service-price-list strong {
  color: #ffffff;

  font-size: 13px;

  font-weight: 700;
}


.cultvre-service-price-note {
  margin:
    17px
    0
    0;

  color:
    rgba(255,255,255,.3);

  font-size: 9px;

  line-height: 1.5;
}


.cultvre-service-cta {
  display: inline-flex;

  align-items: center;

  gap: 14px;

  margin-top: 24px;

  color: #ffffff;

  font-size: 12px;

  font-weight: 700;

  text-decoration: none;
}


.cultvre-service-cta span {
  transition:
    transform 180ms ease;
}


.cultvre-service-cta:hover span {
  transform:
    translateX(4px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 950px) {

  .cultvre-services-header {
    grid-template-columns: 1fr;

    gap: 30px;
  }


  .cultvre-services-grid {
    grid-template-columns: 1fr 1fr;

    grid-template-rows:
      600px
      420px;
  }


  .cultvre-service-teamwear {
    grid-column: 1 / -1;
    grid-row: auto;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

  .cultvre-services {
    padding:
      75px
      16px;
  }


  .cultvre-services-grid {
    display: flex;

    flex-direction: column;

    gap: 12px;
  }


  .cultvre-service-card {
    min-height: 560px;
  }


  .cultvre-service-prices {
    transform: translateY(0);

    padding:
      25px
      22px;
  }


  .cultvre-service-content {
    justify-content: flex-start;

    padding:
      26px
      22px;
  }


  .cultvre-service-hint {
    display: none;
  }


  .cultvre-service-content h3 {
    font-size: 32px;
  }

}
.cultvre-process {
  width: 100%;

  padding:
    clamp(90px, 9vw, 145px)
    clamp(24px, 5vw, 80px);

  color: #111111;
  background: #f5f4f0;
}


.cultvre-process-wrap {
  width: min(1440px, 100%);
  margin: 0 auto;
}


.cultvre-process-header {
  display: grid;

  grid-template-columns:
    minmax(280px, 0.8fr)
    minmax(500px, 1.2fr);

  align-items: end;

  gap: clamp(60px, 9vw, 150px);

  margin-bottom:
    clamp(80px, 8vw, 120px);
}


.cultvre-process-intro-block {
  max-width: 480px;
}


.cultvre-process-kicker {
  margin: 0 0 24px;

  color: #b89346;

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.23em;

  text-transform: uppercase;
}


.cultvre-process-intro {
  margin: 0;

  color: #676767;

  font-size: clamp(17px, 1.4vw, 20px);

  line-height: 1.65;
}


.cultvre-process-heading {
  display: flex;
  justify-content: flex-end;
}


.cultvre-process-heading h2 {
  max-width: 760px;

  margin: 0;

  text-align: right;

  font-size:
    clamp(
      48px,
      6vw,
      86px
    );

  font-weight: 900;

  line-height: 0.93;

  letter-spacing: -0.06em;
}


.cultvre-process-timeline {
  position: relative;

  display: grid;

  grid-template-columns:
    repeat(4, 1fr);

  gap: clamp(30px, 4vw, 65px);
}


.cultvre-process-timeline::before {
  position: absolute;

  top: 103px;

  right: 0;
  left: 0;

  height: 1px;

  content: "";

  background: #c8c7c2;
}


.cultvre-process-step {
  position: relative;
}


.cultvre-process-marker {
  position: relative;

  z-index: 2;

  height: 135px;
}


.cultvre-process-number {
  display: block;

  color: #d8d7d2;

  font-size:
    clamp(
      64px,
      6vw,
      98px
    );

  font-weight: 900;

  line-height: 0.85;

  letter-spacing: -0.07em;

  transition:
    color 250ms ease,
    transform 250ms ease;
}


.cultvre-process-dot {
  position: absolute;

  bottom: 25px;
  left: 0;

  width: 13px;
  height: 13px;

  border: 3px solid #f5f4f0;

  border-radius: 50%;

  background: #111111;

  box-shadow:
    0 0 0 1px #111111;
}


.cultvre-process-step:hover
.cultvre-process-number {
  color: #111111;

  transform: translateY(-3px);
}


.cultvre-process-content {
  padding-top: 28px;
}


.cultvre-process-label {
  margin: 0 0 12px;

  color: #969696;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.17em;

  text-transform: uppercase;
}


.cultvre-process-content h3 {
  margin: 0;

  font-size:
    clamp(
      25px,
      2vw,
      32px
    );

  font-weight: 800;

  line-height: 1;

  letter-spacing: -0.04em;
}


.cultvre-process-content > p:last-child {
  max-width: 300px;

  margin: 19px 0 0;

  color: #6d6d6d;

  font-size: 15px;

  line-height: 1.65;
}


.cultvre-process-footer {
  display: flex;

  align-items: center;

  justify-content: flex-end;

  gap: 30px;

  margin-top:
    clamp(75px, 8vw, 115px);

  padding-top: 28px;

  border-top: 1px solid #d5d4cf;
}


.cultvre-process-footer > span {
  color: #777777;

  font-size: 14px;
}


.cultvre-process-footer a {
  display: inline-flex;

  align-items: center;

  gap: 18px;

  color: #111111;

  font-size: 14px;

  font-weight: 800;
}


.cultvre-process-footer a span {
  display: flex;

  width: 39px;
  height: 39px;

  align-items: center;
  justify-content: center;

  border-radius: 50%;

  color: #ffffff;
  background: #111111;

  transition:
    transform 200ms ease;
}


.cultvre-process-footer a:hover span {
  transform: translateX(5px);
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

  .cultvre-process-header {
    grid-template-columns: 1fr;

    gap: 45px;
  }


  .cultvre-process-heading {
    justify-content: flex-start;
  }


  .cultvre-process-heading h2 {
    max-width: 800px;

    text-align: left;
  }


  .cultvre-process-timeline {
    grid-template-columns:
      repeat(2, 1fr);

    gap:
      65px
      40px;
  }


  .cultvre-process-timeline::before {
    display: none;
  }


  .cultvre-process-marker {
    height: auto;

    padding-bottom: 22px;

    border-bottom:
      1px
      solid
      #c8c7c2;
  }


  .cultvre-process-dot {
    bottom: -6px;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 700px) {

  .cultvre-process {
    padding:
      80px
      22px;
  }


  .cultvre-process-header {
    margin-bottom: 65px;
  }


  .cultvre-process-heading h2 {
    font-size:
      clamp(
        46px,
        13vw,
        64px
      );
  }


  .cultvre-process-timeline {
    display: block;
  }


  .cultvre-process-step {
    display: grid;

    grid-template-columns:
      72px
      1fr;

    gap: 22px;

    padding:
      30px
      0
      40px;

    border-top:
      1px
      solid
      #cbc9c4;
  }


  .cultvre-process-step:last-child {
    border-bottom:
      1px
      solid
      #cbc9c4;
  }


  .cultvre-process-marker {
    height: auto;

    padding: 0;

    border: 0;
  }


  .cultvre-process-number {
    font-size: 53px;
  }


  .cultvre-process-dot {
    display: none;
  }


  .cultvre-process-content {
    padding: 0;
  }


  .cultvre-process-content h3 {
    font-size: 29px;
  }


  .cultvre-process-content > p:last-child {
    max-width: 400px;
  }


  .cultvre-process-footer {
    align-items: flex-start;

    flex-direction: column;

    gap: 20px;

    margin-top: 50px;
  }

}



/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

}



/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

}
.cultvre-cases,
.cultvre-cases * {
  box-sizing: border-box;
}


.cultvre-cases {
  width: 100%;

  padding:
    clamp(85px, 9vw, 140px)
    clamp(22px, 5vw, 80px);

  color: #111111;

  background: #f5f4f0;
}



.cultvre-cases-header {
  max-width: 850px;

  margin-bottom:
    clamp(50px, 6vw, 80px);
}


.cultvre-cases-header h2 {
  margin: 0;

  color: #111111;

  font-size:
    clamp(
      44px,
      5.4vw,
      76px
    );

  font-weight: 900;

  line-height: 0.95;

  letter-spacing: -0.055em;
}


.cultvre-cases-intro {
  max-width: 600px;

  margin: 24px 0 0;

  color: #737373;

  font-size: 16px;

  line-height: 1.7;
}



.cultvre-case {
  display: none;

  grid-template-columns:
    minmax(0, 1.15fr)
    minmax(390px, 0.85fr);

  min-height: 600px;

  overflow: hidden;

  background: #ffffff;
}



.cultvre-case-category {
  margin: 0 0 18px;

  color: #989898;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 950px) {

}



/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

  .cultvre-cases {
    padding:
      75px
      16px;
  }


  .cultvre-cases-header {
    padding: 0 6px;

    margin-bottom: 42px;
  }


  .cultvre-cases-header h2 {
    font-size:
      clamp(
        42px,
        13vw,
        60px
      );
  }


  .cultvre-cases-intro {
    font-size: 15px;
  }


  .cultvre-case {
    min-height: 0;
  }

}
@media (max-width: 768px) {

}
.cultvre-case-project-media {
  position: relative;

  width: 100%;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: #ececea;
}


.cultvre-case-project-pdf {
  position: absolute;

  inset: 0;

  display: block;

  width: 100%;
  height: 100%;

  border: 0;

  pointer-events: none;

  transition:
    opacity 450ms ease,
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}


.cultvre-case-project-pdf--main {
  z-index: 1;

  opacity: 1;

  transform: scale(1);
}


.cultvre-case-project-pdf--hover {
  z-index: 2;

  opacity: 0;

  transform: scale(1.015);
}


.cultvre-case--himmelsstuermer:hover
.cultvre-case-project-pdf--main {
  opacity: 0;

  transform: scale(1.015);
}


.cultvre-case--himmelsstuermer:hover
.cultvre-case-project-pdf--hover {
  opacity: 1;

  transform: scale(1);
}


.cultvre-case-variants {
  margin:
    16px
    0
    0;

  color: #b89346;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}
.cultvre-eisele-showcase {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 1px;

  width: 100%;

  aspect-ratio: 4 / 3;

  overflow: hidden;

  background: #deded9;
}


.cultvre-eisele-product {
  position: relative;

  display: flex;

  min-width: 0;

  align-items: center;
  justify-content: center;

  overflow: hidden;

  background: #f0f0ed;
}


.cultvre-eisele-product-image {
  display: flex;

  width: 100%;
  height: 100%;

  align-items: center;
  justify-content: center;

  padding:
    24px
    10px
    32px;
}


.cultvre-eisele-product-image img {
  display: block;

  width: 100%;
  height: 100%;

  object-fit: contain;

  object-position: center;

  transition:
    transform 450ms
    cubic-bezier(0.22, 1, 0.36, 1);
}


.cultvre-eisele-product:hover
.cultvre-eisele-product-image img {
  transform: scale(1.035);
}


.cultvre-eisele-product-label {
  position: absolute;

  z-index: 2;

  right: 8px;
  bottom: 8px;

  padding:
    5px
    8px;

  border-radius: 999px;

  color: #111111;

  background:
    rgba(255, 255, 255, 0.88);

  font-size: 7px;

  font-weight: 800;

  letter-spacing: 0.06em;

  text-transform: uppercase;

  pointer-events: none;
}
.cultvre-why,
.cultvre-why * {
  box-sizing: border-box;
}


.cultvre-why {
  width: 100%;

  padding:
    clamp(90px, 9vw, 145px)
    clamp(22px, 5vw, 80px);

  color: #111111;

  background: #ffffff;
}


.cultvre-why-wrap {
  display: grid;

  width: min(1380px, 100%);

  grid-template-columns:
    minmax(320px, 0.8fr)
    minmax(500px, 1.2fr);

  gap:
    clamp(80px, 11vw, 170px);

  margin: 0 auto;
}


.cultvre-why-intro {
  position: sticky;

  top: 80px;

  align-self: start;

  max-width: 560px;
}


.cultvre-why-kicker {
  margin: 0 0 18px;

  color: #b89346;

  font-size: 11px;

  font-weight: 800;

  letter-spacing: 0.22em;

  text-transform: uppercase;
}


.cultvre-why-intro h2 {
  margin: 0;

  font-size:
    clamp(
      46px,
      5.5vw,
      78px
    );

  font-weight: 900;

  line-height: 0.94;

  letter-spacing: -0.055em;
}


.cultvre-why-text {
  max-width: 500px;

  margin: 28px 0 0;

  color: #707070;

  font-size:
    clamp(
      16px,
      1.35vw,
      18px
    );

  line-height: 1.7;
}


.cultvre-why-list {
  border-top:
    1px solid
    #d9d9d6;
}


.cultvre-why-item {
  display: grid;

  grid-template-columns:
    55px
    1fr;

  gap: 28px;

  padding:
    34px
    0;

  border-bottom:
    1px solid
    #d9d9d6;
}


.cultvre-why-number {
  color: #b7b7b2;

  font-size: 12px;

  font-weight: 800;

  letter-spacing: 0.13em;
}


.cultvre-why-item h3 {
  margin: 0;

  font-size:
    clamp(
      24px,
      2.2vw,
      32px
    );

  font-weight: 800;

  line-height: 1;

  letter-spacing: -0.04em;
}


.cultvre-why-item p {
  max-width: 560px;

  margin: 15px 0 0;

  color: #717171;

  font-size: 14px;

  line-height: 1.65;
}


.cultvre-why-item {
  transition:
    padding-left 180ms ease;
}


.cultvre-why-item:hover {
  padding-left: 12px;
}


/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

  .cultvre-why-wrap {
    grid-template-columns: 1fr;

    gap: 65px;
  }


  .cultvre-why-intro {
    position: static;

    max-width: 760px;
  }

}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

  .cultvre-why {
    padding:
      75px
      20px;
  }


  .cultvre-why-intro h2 {
    font-size:
      clamp(
        42px,
        12vw,
        58px
      );
  }


  .cultvre-why-item {
    grid-template-columns:
      42px
      1fr;

    gap: 18px;

    padding:
      28px
      0;
  }


  .cultvre-why-item:hover {
    padding-left: 0;
  }


  .cultvre-why-item h3 {
    font-size: 25px;
  }

}
.cultvre-inquiry,
.cultvre-inquiry * {
  box-sizing: border-box;
}

.cultvre-inquiry {
  width: 100%;
  padding:
    clamp(90px, 9vw, 145px)
    clamp(22px, 5vw, 80px);

  color: #ffffff;
  background: #101010;
}

.cultvre-inquiry-wrap {
  width: min(1380px, 100%);
  margin: 0 auto;
}


.cultvre-inquiry-header {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  align-items: end;
  gap: 80px;

  margin-bottom:
    clamp(55px, 7vw, 95px);
}

.cultvre-inquiry-kicker {
  margin: 0 0 18px;

  color: #b89346;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.cultvre-inquiry-header h2 {
  margin: 0;

  font-size:
    clamp(48px, 6vw, 84px);

  font-weight: 900;
  line-height: 0.93;

  letter-spacing: -0.055em;
}

.cultvre-inquiry-intro {
  max-width: 470px;
  margin: 0;

  color: rgba(255,255,255,.5);

  font-size: 16px;
  line-height: 1.7;
}


.cultvre-project-form {
  width: 100%;

  padding:
    clamp(32px, 5vw, 70px);

  background: #181818;

  border: 1px solid rgba(255,255,255,.1);
}


.cultvre-form-top {
  display: flex;
  align-items: center;
  gap: 25px;

  margin-bottom:
    clamp(50px, 6vw, 80px);
}

#cultvre-step-label {
  min-width: 130px;

  color: rgba(255,255,255,.45);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: .14em;
  text-transform: uppercase;
}

.cultvre-form-progress {
  width: 100%;
  height: 1px;

  overflow: hidden;

  background: rgba(255,255,255,.14);
}

.cultvre-form-progress span {
  display: block;

  width: 20%;
  height: 100%;

  background: #b89346;

  transition: width 300ms ease;
}


.cultvre-form-step {
  display: none;
}

.cultvre-form-step.is-active {
  display: block;
}

.cultvre-step-heading {
  max-width: 850px;

  margin-bottom:
    clamp(38px, 5vw, 65px);
}

.cultvre-step-number {
  display: block;

  margin-bottom: 14px;

  color: #b89346;

  font-size: 10px;
  font-weight: 800;

  letter-spacing: .16em;
}

.cultvre-step-heading h3 {
  margin: 0;

  font-size:
    clamp(34px, 4.5vw, 62px);

  font-weight: 800;
  line-height: 1;

  letter-spacing: -0.05em;
}

.cultvre-step-heading p {
  margin: 18px 0 0;

  color: rgba(255,255,255,.48);

  font-size: 15px;
  line-height: 1.6;
}


.cultvre-project-types {
  border-top:
    1px solid rgba(255,255,255,.14);
}

.cultvre-project-type {
  display: flex;

  width: 100%;
  min-height: 110px;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  padding: 20px 0;

  border: 0;
  border-bottom:
    1px solid rgba(255,255,255,.14);

  color: #ffffff;
  background: transparent;

  text-align: left;

  cursor: pointer;
}

.cultvre-project-type div {
  display: flex;
  align-items: baseline;
  gap: 35px;
}

.cultvre-project-type strong {
  min-width: 230px;

  font-size:
    clamp(25px, 2.7vw, 38px);

  letter-spacing: -0.04em;
}

.cultvre-project-type div span {
  color: rgba(255,255,255,.4);

  font-size: 14px;
}

.cultvre-option-arrow {
  font-size: 25px;

  transition: transform 180ms ease;
}

.cultvre-project-type:hover .cultvre-option-arrow {
  transform: translateX(7px);
}


.cultvre-product-options,
.cultvre-choice-grid {
  display: grid;

  grid-template-columns:
    repeat(3, minmax(0, 1fr));

  gap: 10px;
}

.cultvre-product-option,
.cultvre-choice-grid button {
  min-height: 65px;

  padding: 15px 20px;

  border:
    1px solid rgba(255,255,255,.16);

  color: rgba(255,255,255,.65);
  background: transparent;

  font: inherit;
  font-size: 14px;

  cursor: pointer;

  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.cultvre-product-option:hover,
.cultvre-choice-grid button:hover {
  color: #ffffff;

  border-color: rgba(255,255,255,.4);
}

.cultvre-product-option.is-selected,
.cultvre-choice-grid button.is-selected {
  color: #111111;

  border-color: #ffffff;

  background: #ffffff;
}


.cultvre-question {
  margin: 0 0 45px;
  padding: 0;

  border: 0;
}

.cultvre-question legend {
  margin-bottom: 18px;

  color: #ffffff;

  font-size: 15px;
  font-weight: 700;
}


.cultvre-contact-grid {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 28px 18px;
}

.cultvre-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cultvre-field-full {
  grid-column: 1 / -1;

  margin-top: 20px;
}

.cultvre-field label,
.cultvre-upload-label {
  color: rgba(255,255,255,.72);

  font-size: 12px;
  font-weight: 600;
}

.cultvre-field label span,
.cultvre-upload-label span {
  margin-left: 5px;

  color: rgba(255,255,255,.3);

  font-weight: 400;
}

.cultvre-field input,
.cultvre-field textarea {
  width: 100%;

  padding: 16px 0;

  border: 0;
  border-bottom:
    1px solid rgba(255,255,255,.22);

  border-radius: 0;

  outline: none;

  color: #ffffff;
  background: transparent;

  font: inherit;
}

.cultvre-field textarea {
  resize: vertical;

  line-height: 1.6;
}

.cultvre-field input:focus,
.cultvre-field textarea:focus {
  border-color: #b89346;
}


.cultvre-upload {
  margin-top: 50px;
}

.cultvre-upload-box {
  display: flex;

  min-height: 220px;

  margin-top: 14px;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  gap: 9px;

  border:
    1px dashed rgba(255,255,255,.25);

  cursor: pointer;

  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.cultvre-upload-box:hover {
  border-color: #b89346;

  background: rgba(255,255,255,.025);
}

.cultvre-upload-box strong {
  font-size: 15px;
}

.cultvre-upload-box small {
  margin-top: 6px;

  color: rgba(255,255,255,.27);

  font-size: 10px;

  letter-spacing: .08em;
}

#project-files {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
}

.cultvre-file-list {
  display: grid;

  gap: 8px;

  margin-top: 15px;
}

.cultvre-file-item {
  display: flex;

  justify-content: space-between;

  gap: 20px;

  padding: 13px 15px;

  border:
    1px solid rgba(255,255,255,.12);

  color: rgba(255,255,255,.7);

  font-size: 12px;
}


.cultvre-privacy {
  display: flex;

  max-width: 760px;

  align-items: flex-start;

  gap: 13px;

  margin-top: 45px;

  color: rgba(255,255,255,.45);

  font-size: 12px;
  line-height: 1.6;

  cursor: pointer;
}

.cultvre-privacy input {
  margin-top: 4px;

  accent-color: #b89346;
}


.cultvre-form-error {
  display: none;

  margin: 25px 0 0;

  color: #e2aaa0;

  font-size: 12px;
}

.cultvre-form-error.is-visible {
  display: block;
}


.cultvre-form-actions {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin-top: 55px;
}

.cultvre-back,
.cultvre-next,
.cultvre-submit {
  border: 0;

  font: inherit;
  font-size: 13px;
  font-weight: 700;

  cursor: pointer;
}

.cultvre-back {
  padding: 15px 0;

  color: rgba(255,255,255,.48);
  background: transparent;
}

.cultvre-back:hover {
  color: #ffffff;
}

.cultvre-next,
.cultvre-submit {
  padding: 17px 25px;

  color: #111111;
  background: #ffffff;
}

.cultvre-next:hover,
.cultvre-submit:hover {
  background: #b89346;
}


.cultvre-summary {
  border-top:
    1px solid rgba(255,255,255,.15);
}

.cultvre-summary-row {
  display: grid;

  grid-template-columns:
    minmax(130px, .4fr)
    1fr;

  gap: 30px;

  padding: 22px 0;

  border-bottom:
    1px solid rgba(255,255,255,.15);
}

.cultvre-summary-row span {
  color: rgba(255,255,255,.35);

  font-size: 11px;

  text-transform: uppercase;
  letter-spacing: .1em;
}

.cultvre-summary-row strong {
  font-size: 15px;
  font-weight: 600;
}


.cultvre-form-success {
  max-width: 720px;

  padding: 40px 0;
}

.cultvre-success-mark {
  display: flex;

  width: 52px;
  height: 52px;

  margin-bottom: 40px;

  align-items: center;
  justify-content: center;

  border: 1px solid #b89346;
  border-radius: 50%;

  color: #b89346;
}

.cultvre-form-success h3 {
  margin: 0;

  font-size:
    clamp(38px, 5vw, 66px);

  line-height: 1;

  letter-spacing: -0.05em;
}

.cultvre-form-success > p:last-child {
  max-width: 580px;

  margin: 25px 0 0;

  color: rgba(255,255,255,.5);

  line-height: 1.7;
}


/* TABLET */

@media (max-width: 900px) {

  .cultvre-inquiry-header {
    grid-template-columns: 1fr;

    gap: 30px;
  }

  .cultvre-project-type div {
    align-items: flex-start;
    flex-direction: column;

    gap: 7px;
  }

  .cultvre-project-type strong {
    min-width: 0;
  }

  .cultvre-product-options,
.cultvre-choice-grid {
    grid-template-columns: 1fr 1fr;
  }

}


/* MOBILE */

@media (max-width: 650px) {

  .cultvre-inquiry {
    padding:
      75px
      16px;
  }

  .cultvre-inquiry-header h2 {
    font-size:
      clamp(44px, 13vw, 62px);
  }

  .cultvre-project-form {
    padding:
      30px
      20px;
  }

  .cultvre-form-top {
    align-items: flex-start;

    flex-direction: column;

    gap: 14px;
  }

  .cultvre-project-type {
    min-height: 105px;
  }

  .cultvre-product-options,
.cultvre-choice-grid,
.cultvre-contact-grid {
    grid-template-columns: 1fr;
  }

  .cultvre-field-full {
    grid-column: auto;
  }

  .cultvre-summary-row {
    grid-template-columns: 1fr;

    gap: 8px;
  }

  .cultvre-form-actions {
    align-items: stretch;

    flex-direction: column-reverse;
  }

  .cultvre-next,
.cultvre-submit {
    width: 100%;
  }

  .cultvre-back {
    text-align: left;
  }

}
.cultvre-inquiry-header {
  grid-template-columns:
    minmax(0, 1fr)
    minmax(320px, 0.55fr);

  gap:
    clamp(55px, 8vw, 130px);

  margin-bottom:
    clamp(60px, 7vw, 95px);
}


.cultvre-inquiry-header h2 {
  max-width: 850px;

  font-size:
    clamp(48px, 5.5vw, 78px);
}


.cultvre-inquiry-header-right {
  max-width: 470px;

  justify-self: end;
}


.cultvre-inquiry-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;

  margin-top: 24px;
}


.cultvre-inquiry-meta span {
  padding: 7px 11px;

  border:
    1px solid
    rgba(255, 255, 255, 0.13);

  border-radius: 999px;

  color:
    rgba(255, 255, 255, 0.4);

  font-size: 10px;

  font-weight: 600;

  letter-spacing: 0.06em;

  text-transform: uppercase;
}


.cultvre-project-form {
  position: relative;

  width: min(1180px, 100%);

  margin: 0 auto;

  padding:
    clamp(32px, 5vw, 68px);

  border:
    1px solid
    rgba(255, 255, 255, 0.1);

  background: #161616;
}


.cultvre-form-top {
  margin-bottom:
    clamp(55px, 7vw, 90px);
}


#cultvre-step-label {
  color:
    rgba(255, 255, 255, 0.34);
}


.cultvre-form-progress {
  background:
    rgba(255, 255, 255, 0.1);
}


.cultvre-form-progress span {
  background: #b89346;
}


.cultvre-step-heading {
  max-width: 760px;
}


.cultvre-step-heading h3 {
  font-size:
    clamp(34px, 4vw, 56px);
}


.cultvre-step-heading p {
  max-width: 560px;

  color:
    rgba(255, 255, 255, 0.42);
}


.cultvre-project-type {
  position: relative;

  min-height: 105px;

  padding:
    25px
    5px;

  transition:
    padding-left 200ms ease,
    background 200ms ease;
}


.cultvre-project-type:hover {
  padding-left: 15px;

  background:
    rgba(255, 255, 255, 0.018);
}


.cultvre-project-type strong {
  font-size:
    clamp(24px, 2.5vw, 34px);
}


.cultvre-project-type div span {
  color:
    rgba(255, 255, 255, 0.35);
}


.cultvre-product-options,
.cultvre-choice-grid {
  gap: 8px;
}


.cultvre-product-option,
.cultvre-choice-grid button {
  position: relative;

  min-height: 62px;

  padding:
    17px
    19px;

  text-align: left;

  border:
    1px solid
    rgba(255, 255, 255, 0.13);

  background:
    rgba(255, 255, 255, 0.015);
}


.cultvre-product-option:hover,
.cultvre-choice-grid button:hover {
  border-color:
    rgba(255, 255, 255, 0.35);

  background:
    rgba(255, 255, 255, 0.03);
}


.cultvre-product-option.is-selected,
.cultvre-choice-grid button.is-selected {
  color: #111111;

  border-color: #ffffff;

  background: #ffffff;
}


.cultvre-product-option.is-selected::after,
.cultvre-choice-grid button.is-selected::after {
  position: absolute;

  top: 50%;

  right: 16px;

  content: "✓";

  font-size: 12px;

  transform:
    translateY(-50%);
}


.cultvre-question {
  margin:
    0
    0
    45px;

  padding-top: 30px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.08);
}


.cultvre-question legend {
  padding-right: 15px;

  background: #161616;

  font-size: 13px;
}


.cultvre-field label {
  color:
    rgba(255, 255, 255, 0.55);

  font-size: 11px;

  letter-spacing: 0.03em;
}


.cultvre-field input,
.cultvre-field textarea {
  padding:
    14px
    0
    16px;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.16);

  font-size: 16px;

  transition:
    border-color 180ms ease;
}


.cultvre-field input:hover,
.cultvre-field textarea:hover {
  border-color:
    rgba(255, 255, 255, 0.35);
}


.cultvre-field input:focus,
.cultvre-field textarea:focus {
  border-color: #b89346;
}


.cultvre-field textarea::placeholder {
  color:
    rgba(255, 255, 255, 0.22);
}


.cultvre-upload {
  width: 100%;
  margin-top: 55px;
  padding-top: 36px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.cultvre-upload-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;

  gap: 30px;

  margin-bottom: 20px;
}


.cultvre-upload-heading > div {
  max-width: 600px;
}


.cultvre-upload-label {
  margin: 0;

  color: #ffffff;

  font-size: 14px;
  font-weight: 700;
}


.cultvre-upload-description {
  margin: 8px 0 0;

  color: rgba(255, 255, 255, 0.4);

  font-size: 12px;
  line-height: 1.65;
}


.cultvre-upload-heading > span {
  flex-shrink: 0;

  color: rgba(255, 255, 255, 0.28);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.1em;
  text-transform: uppercase;
}


.cultvre-upload-box {
  display: flex;

  width: 100%;
  min-height: 190px;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  gap: 8px;

  padding: 34px 25px;

  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: 0;

  outline: none;

  color: #ffffff;

  background: rgba(255, 255, 255, 0.015);

  font: inherit;

  text-align: center;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  transition:
    border-color 180ms ease,
    background 180ms ease;
}


.cultvre-upload-box:hover {
  border-color: #b89346;

  background: rgba(184, 147, 70, 0.04);
}


.cultvre-upload-box:focus-visible {
  outline: 2px solid #b89346;
  outline-offset: 3px;
}


.cultvre-upload-box.is-dragging {
  border-color: #b89346;

  background: rgba(184, 147, 70, 0.07);
}


.cultvre-upload-icon {
  display: flex;

  width: 46px;
  height: 46px;

  align-items: center;
  justify-content: center;

  margin-bottom: 10px;

  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;

  color: #ffffff;

  font-size: 23px;
  font-weight: 300;
  line-height: 1;
}


.cultvre-upload-copy {
  display: flex;

  align-items: center;

  flex-direction: column;

  gap: 5px;
}


.cultvre-upload-copy strong {
  color: #ffffff;

  font-size: 14px;
  font-weight: 700;
}


.cultvre-upload-copy > span {
  color: rgba(255, 255, 255, 0.42);

  font-size: 11px;
}


.cultvre-upload-box small {
  margin-top: 9px;

  color: rgba(255, 255, 255, 0.25);

  font-size: 10px;
  font-weight: 500;

  letter-spacing: 0.03em;
}


#project-files {
  position: absolute;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;

  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);

  white-space: nowrap;

  border: 0;
}


.cultvre-upload-error {
  display: none;

  margin: 13px 0 0;

  color: #e5a89d;

  font-size: 11px;
  line-height: 1.55;
}


.cultvre-upload-error.is-visible {
  display: block;
}


.cultvre-file-list {
  display: grid;

  gap: 8px;

  width: 100%;

  margin-top: 14px;
}


.cultvre-file-list:empty {
  display: none;
}


.cultvre-file-item {
  display: flex;

  width: 100%;
  min-height: 60px;

  align-items: center;
  justify-content: space-between;

  gap: 18px;

  padding: 12px 14px;

  border: 1px solid rgba(255, 255, 255, 0.1);

  background: rgba(255, 255, 255, 0.025);
}


.cultvre-file-info {
  display: flex;

  min-width: 0;

  align-items: center;

  gap: 13px;
}


.cultvre-file-check {
  display: flex;

  width: 30px;
  height: 30px;

  flex: 0 0 30px;

  align-items: center;
  justify-content: center;

  border: 1px solid rgba(184, 147, 70, 0.55);
  border-radius: 50%;

  color: #b89346;

  font-size: 11px;
  font-weight: 700;
}


.cultvre-file-text {
  display: flex;

  min-width: 0;

  flex-direction: column;

  gap: 3px;
}


.cultvre-file-name {
  max-width: 650px;

  overflow: hidden;

  color: rgba(255, 255, 255, 0.84);

  font-size: 12px;
  font-weight: 600;

  text-overflow: ellipsis;
  white-space: nowrap;
}


.cultvre-file-size {
  color: rgba(255, 255, 255, 0.3);

  font-size: 10px;
}


.cultvre-file-remove {
  display: flex;

  width: 32px;
  height: 32px;

  flex: 0 0 32px;

  align-items: center;
  justify-content: center;

  padding: 0;

  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 50%;

  color: rgba(255, 255, 255, 0.48);

  background: transparent;

  font: inherit;
  font-size: 18px;
  font-weight: 300;
  line-height: 1;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}


.cultvre-file-remove:hover {
  color: #ffffff;

  border-color: rgba(255, 255, 255, 0.4);

  background: rgba(255, 255, 255, 0.05);
}


.cultvre-form-actions {
  display: flex;

  width: 100%;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  margin-top: 60px;
  padding-top: 28px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);
}


.cultvre-back {
  padding: 14px 0;

  border: 0;

  color: rgba(255, 255, 255, 0.45);

  background: transparent;

  font: inherit;
  font-size: 12px;
  font-weight: 700;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  transition:
    color 180ms ease,
    transform 180ms ease;
}


.cultvre-back:hover {
  color: #ffffff;

  transform: translateX(-3px);
}


.cultvre-next,
.cultvre-submit {
  display: inline-flex;

  min-height: 52px;
  min-width: 155px;

  align-items: center;
  justify-content: center;

  gap: 12px;

  padding: 15px 24px;

  border: 0;

  color: #111111;

  background: #ffffff;

  font: inherit;
  font-size: 12px;
  font-weight: 800;

  cursor: pointer;

  appearance: none;
  -webkit-appearance: none;

  transition:
    background 180ms ease,
    transform 180ms ease;
}


.cultvre-next:hover,
.cultvre-submit:hover {
  background: #b89346;

  transform: translateX(3px);
}


.cultvre-back:focus-visible,
.cultvre-next:focus-visible,
.cultvre-submit:focus-visible,
.cultvre-file-remove:focus-visible {
  outline: 2px solid #b89346;
  outline-offset: 3px;
}


.cultvre-privacy {
  display: flex;

  max-width: 760px;

  align-items: flex-start;

  gap: 13px;

  margin-top: 45px;
  padding-top: 30px;

  border-top: 1px solid rgba(255, 255, 255, 0.08);

  color: rgba(255, 255, 255, 0.45);

  font-size: 12px;
  line-height: 1.65;

  cursor: pointer;
}


.cultvre-privacy input {
  width: 15px;
  height: 15px;

  flex: 0 0 15px;

  margin-top: 3px;

  accent-color: #b89346;
}


.cultvre-summary {
  width: 100%;

  margin-top: 10px;

  border-top: 1px solid rgba(255, 255, 255, 0.14);
}


.cultvre-summary-row {
  display: grid;

  min-height: 68px;

  grid-template-columns:
    minmax(120px, 0.35fr)
    minmax(0, 1fr);

  align-items: center;

  gap: 30px;

  padding: 20px 0;

  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}


.cultvre-summary-row > span {
  color: rgba(255, 255, 255, 0.3);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.09em;
  text-transform: uppercase;
}


.cultvre-summary-row > strong {
  max-width: 720px;

  color: rgba(255, 255, 255, 0.88);

  font-size: 14px;
  font-weight: 600;

  line-height: 1.55;
}


.cultvre-form-success {
  width: 100%;
  max-width: 760px;

  padding:
    clamp(40px, 6vw, 80px)
    0;
}


.cultvre-success-mark {
  display: flex;

  width: 56px;
  height: 56px;

  align-items: center;
  justify-content: center;

  margin-bottom: 45px;

  border: 1px solid #b89346;
  border-radius: 50%;

  color: #b89346;

  font-size: 18px;
}


.cultvre-form-success h3 {
  margin: 0;

  color: #ffffff;

  font-size:
    clamp(44px, 6vw, 76px);

  font-weight: 900;

  line-height: 0.95;

  letter-spacing: -0.055em;
}


.cultvre-form-success > p:not(.cultvre-inquiry-kicker) {
  max-width: 560px;

  margin: 27px 0 0;

  color: rgba(255, 255, 255, 0.48);

  font-size: 15px;
  line-height: 1.7;
}


.cultvre-success-signature {
  display: block;

  margin-top: 55px;

  color: rgba(255, 255, 255, 0.3);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.2em;
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

  .cultvre-upload {
    margin-top: 45px;
    padding-top: 28px;
  }


  .cultvre-upload-heading {
    flex-direction: column;

    gap: 8px;
  }


  .cultvre-upload-box {
    min-height: 175px;

    padding: 28px 18px;
  }


  .cultvre-upload-copy > span {
    line-height: 1.5;
  }


  .cultvre-file-item {
    gap: 12px;

    padding: 12px;
  }


  .cultvre-file-name {
    max-width: 210px;
  }


  .cultvre-form-actions {
    align-items: stretch;

    flex-direction: column-reverse;

    gap: 12px;

    margin-top: 45px;
    padding-top: 24px;
  }


  .cultvre-next,
.cultvre-submit {
    width: 100%;
    min-height: 54px;
  }


  .cultvre-back {
    width: 100%;

    text-align: left;
  }


  .cultvre-summary-row {
    grid-template-columns: 1fr;

    gap: 7px;

    padding: 18px 0;
  }


  .cultvre-summary-row > strong {
    font-size: 13px;
  }

}
.cultvre-footer,
.cultvre-footer * {
  box-sizing: border-box;
}


.cultvre-footer {
  width: 100%;

  padding:
    0
    clamp(22px, 5vw, 80px);

  color: #ffffff;

  background: #0b0b0b;
}


.cultvre-footer-wrap {
  width: min(1380px, 100%);

  margin: 0 auto;
}



.cultvre-footer-cta {
  display: flex;

  min-height:
    clamp(
      300px,
      32vw,
      470px
    );

  align-items: center;
  justify-content: space-between;

  gap: 50px;

  padding:
    clamp(70px, 8vw, 120px)
    0;

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.13);

  color: #ffffff;

  text-decoration: none;
}


.cultvre-footer-kicker {
  display: block;

  margin-bottom: 20px;

  color: #b89346;

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.22em;

  text-transform: uppercase;
}


.cultvre-footer-cta h2 {
  margin: 0;

  max-width: 950px;

  font-size:
    clamp(
      46px,
      6.3vw,
      88px
    );

  font-weight: 900;

  line-height: 0.94;

  letter-spacing: -0.06em;
}


.cultvre-footer-cta-arrow {
  display: flex;

  width:
    clamp(
      65px,
      7vw,
      92px
    );

  height:
    clamp(
      65px,
      7vw,
      92px
    );

  flex: 0 0 auto;

  align-items: center;
  justify-content: center;

  border:
    1px solid
    rgba(255, 255, 255, 0.24);

  border-radius: 50%;

  font-size:
    clamp(
      25px,
      3vw,
      38px
    );

  transition:
    color 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}


.cultvre-footer-cta:hover
.cultvre-footer-cta-arrow {
  color: #111111;

  border-color: #b89346;

  background: #b89346;

  transform:
    translateX(6px);
}



.cultvre-footer-main {
  display: grid;

  grid-template-columns:
    minmax(300px, 1.6fr)
    repeat(3, minmax(130px, 0.6fr));

  gap:
    clamp(
      40px,
      6vw,
      90px
    );

  align-items: start;

  padding:
    clamp(65px, 7vw, 95px)
    0;
}



.cultvre-footer-brand {
  display: flex;

  flex-direction: column;

  align-items: flex-start;
}


.cultvre-footer-logo {
  display: block;

  text-decoration: none;
}


.cultvre-footer-logo img {
  display: block;

  width: auto;
  height: 72px;

  object-fit: contain;
}


.cultvre-footer-brand p {
  margin: 18px 0 0;

  color:
    rgba(255, 255, 255, 0.4);

  font-size: 13px;

  line-height: 1.65;
}



.cultvre-footer-label {
  display: block;

  margin-bottom: 22px;

  color:
    rgba(255, 255, 255, 0.28);

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


.cultvre-footer-column nav {
  display: flex;

  align-items: flex-start;

  flex-direction: column;

  gap: 12px;
}


.cultvre-footer-column a {
  position: relative;

  color:
    rgba(255, 255, 255, 0.68);

  font-size: 13px;

  font-weight: 500;

  text-decoration: none;

  transition:
    color 180ms ease;
}


.cultvre-footer-column a:hover {
  color: #ffffff;
}



.cultvre-footer-bottom {
  display: flex;

  min-height: 80px;

  align-items: center;
  justify-content: space-between;

  gap: 30px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.1);

  color:
    rgba(255, 255, 255, 0.25);

  font-size: 10px;

  letter-spacing: 0.04em;
}



/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

  .cultvre-footer-main {
    grid-template-columns:
      1.4fr
      1fr
      1fr
      1fr;

    gap:
      35px;
  }


  .cultvre-footer-brand {
    grid-column: auto;
  }

}



/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

  .cultvre-footer {
    padding:
      0
      20px;
  }


  .cultvre-footer-cta {
    min-height: 380px;

    align-items: flex-start;

    flex-direction: column;

    justify-content: center;

    gap: 45px;
  }


  .cultvre-footer-cta h2 {
    font-size:
      clamp(
        44px,
        13vw,
        64px
      );
  }


  .cultvre-footer-cta-arrow {
    width: 62px;
    height: 62px;

    font-size: 27px;
  }


  .cultvre-footer-main {
    grid-template-columns:
      1fr
      1fr;

    gap:
      50px
      30px;
  }


  .cultvre-footer-brand {
    grid-column: 1 / -1;

    margin-bottom: 10px;
  }

  .cultvre-footer-logo img {
    height: 62px;
  }


  .cultvre-footer-bottom {
    min-height: 100px;

    align-items: flex-start;

    flex-direction: column;

    justify-content: center;

    gap: 7px;
  }

}
html {
  scroll-behavior: smooth;

  /*
    Verhindert, dass Überschriften
    unter der Navigation verschwinden.
  */
  scroll-padding-top: 95px;
}


.cultvre-nav,
.cultvre-nav * {
  box-sizing: border-box;
}


.cultvre-nav {
  position: fixed;

  z-index: 9999;

  top: 0;
  right: 0;
  left: 0;

  width: 100%;

  padding:
    0
    clamp(22px, 5vw, 80px);

  color: #ffffff;

  background:
    rgba(8, 8, 8, 0.88);

  border-bottom:
    1px solid
    rgba(255, 255, 255, 0.09);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.cultvre-nav-inner {
  display: flex;

  width: min(1380px, 100%);
  height: 78px;

  align-items: center;
  justify-content: space-between;

  gap: 40px;

  margin: 0 auto;
}



.cultvre-nav-logo {
  display: flex;

  flex: 0 0 auto;

  align-items: center;

  text-decoration: none;
}


.cultvre-nav-logo img {
  display: block;

  width: auto;
  height: 73px;

  object-fit: contain;
}



.cultvre-nav-menu {
  display: flex;

  flex: 1;

  align-items: center;
  justify-content: flex-end;

  gap:
    clamp(
      30px,
      4vw,
      65px
    );
}


.cultvre-nav-links {
  display: flex;

  align-items: center;

  gap:
    clamp(
      22px,
      2.5vw,
      38px
    );
}


.cultvre-nav-links a {
  position: relative;

  padding:
    29px
    0;

  color:
    rgba(
      255,
      255,
      255,
      0.7
    );

  font-size: 12px;

  font-weight: 600;

  text-decoration: none;

  transition:
    color 180ms ease;
}


.cultvre-nav-links a:hover {
  color: #ffffff;
}



.cultvre-nav-links a::after {
  position: absolute;

  right: 0;
  bottom: 20px;
  left: 0;

  height: 1px;

  content: "";

  background: #b89346;

  transform:
    scaleX(0);

  transform-origin: left;

  transition:
    transform 180ms ease;
}


.cultvre-nav-links a:hover::after {
  transform:
    scaleX(1);
}

.cultvre-nav-toggle {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;

  pointer-events: none;
}


.cultvre-nav-burger {
  display: none;
}



/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 1000px) {

  .cultvre-nav-links {
    gap: 18px;
  }


  .cultvre-nav-links a {
    font-size: 11px;
  }

}



/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 780px) {

  html {
    scroll-padding-top: 80px;
  }


  .cultvre-nav {
  padding:
    0
    20px;
}


.cultvre-nav-inner {
  width: 100%;
  height: 70px;
}


  .cultvre-nav-logo img {
    height: 45px;
  }



  .cultvre-nav-burger {
    position: relative;

    z-index: 10002;

    display: flex;

    width: 42px;
    height: 42px;

    flex-direction: column;

    align-items: center;
    justify-content: center;

    gap: 7px;

    cursor: pointer;
  }


  .cultvre-nav-burger span {
    display: block;

    width: 22px;
    height: 1px;

    background: #ffffff;

    transition:
      transform 220ms ease;
  }



  .cultvre-nav-menu {
    position: fixed;

    z-index: 10000;

    top: 70px;
    right: 0;
    left: 0;

    display: flex;

    width: 100%;
    height:
      calc(
        100vh - 70px
      );

    padding:
      50px
      22px
      35px;

    flex-direction: column;

    align-items: stretch;
    justify-content: space-between;

    gap: 50px;

    background: #0b0b0b;

    opacity: 0;

    visibility: hidden;

    transform:
      translateY(-10px);

    transition:
      opacity 220ms ease,
      visibility 220ms ease,
      transform 220ms ease;
  }


  .cultvre-nav-links {
    display: flex;

    flex-direction: column;

    align-items: stretch;

    gap: 0;
  }


  .cultvre-nav-links a {
    display: flex;

    min-height: 72px;

    align-items: center;

    padding: 0;

    border-bottom:
      1px solid
      rgba(
        255,
        255,
        255,
        0.12
      );

    color: #ffffff;

    font-size:
      clamp(
        25px,
        8vw,
        36px
      );

    font-weight: 700;

    letter-spacing: -0.035em;
  }


  .cultvre-nav-links a::after {
    display: none;
  }


  #cultvre-nav-toggle:checked
  ~ .cultvre-nav-menu {
    opacity: 1;

    visibility: visible;

    transform:
      translateY(0);
  }



  #cultvre-nav-toggle:checked
  + .cultvre-nav-burger
  span:first-child {
    transform:
      translateY(4px)
      rotate(45deg);
  }


  #cultvre-nav-toggle:checked
  + .cultvre-nav-burger
  span:last-child {
    transform:
      translateY(-4px)
      rotate(-45deg);
  }

}
/* ==========================================================
   FOOTER – FINALES DESKTOP LAYOUT
========================================================== */

@media (min-width: 901px) {

  .cultvre-footer-main {
    display: grid !important;

    grid-template-columns:
      minmax(280px, 1.6fr)
      minmax(140px, 0.7fr)
      minmax(140px, 0.7fr)
      minmax(140px, 0.7fr) !important;

    align-items: start;

    column-gap:
      clamp(45px, 6vw, 100px);

    row-gap: 0;
  }


  .cultvre-footer-brand {
    grid-column: 1 !important;
    grid-row: 1 !important;

    display: flex;

    flex-direction: column;

    align-items: flex-start;
  }


  .cultvre-footer-main > .cultvre-footer-column:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1;
  }


  .cultvre-footer-main > .cultvre-footer-column:nth-of-type(3) {
    grid-column: 3;
    grid-row: 1;
  }


  .cultvre-footer-main > .cultvre-footer-column:nth-of-type(4) {
    grid-column: 4;
    grid-row: 1;
  }

}
.cultvre-cases {
  width: 100%;

  overflow: hidden;

  padding:
    100px
    0
    115px;

  color: #0b0b0b;

  background: #ffffff;
}


.cultvre-cases-inner {
  width:
    min(
      1440px,
      100%
    );

  margin: 0 auto;

  padding:
    0
    40px;
}


.cultvre-cases-header {
  max-width: 720px;

  margin-bottom: 48px;
}


.cultvre-cases-eyebrow {
  display: block;

  margin-bottom: 17px;

  color: #b89346;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.18em;

  text-transform: uppercase;
}


.cultvre-cases-header h2 {
  margin: 0;

  font-size:
    clamp(
      50px,
      5.5vw,
      78px
    );

  font-weight: 900;

  line-height: 0.94;

  letter-spacing: -0.055em;
}


.cultvre-cases-intro {
  max-width: 500px;

  margin:
    22px
    0
    0;

  color: #737373;

  font-size: 15px;

  line-height: 1.65;
}


.cultvre-cases-track {
  display: flex;

  gap: 18px;

  overflow-x: auto;

  padding-bottom: 8px;

  scroll-behavior: smooth;

  scroll-snap-type:
    x mandatory;

  scrollbar-width: none;
}


.cultvre-cases-track::-webkit-scrollbar {
  display: none;
}


.cultvre-case {
  display: block;

  flex:
    0 0
    clamp(
      390px,
      36vw,
      510px
    );

  overflow: hidden;

  border:
    1px solid
    #e4e4df;

  border-radius: 22px;

  background: #f7f7f4;

  scroll-snap-align: start;

  transition:
    transform 250ms ease,
    border-color 250ms ease;
}


.cultvre-case:hover {
  border-color: #d3d3cc;

  transform:
    translateY(-4px);
}


.cultvre-case-body {
  padding:
    24px
    26px
    26px;
}


.cultvre-case-top {
  display: flex;

  align-items: center;
  justify-content: space-between;

  padding-bottom: 16px;

  border-bottom:
    1px solid
    #ddddD7;
}


.cultvre-case-number {
  color: #aaa9a2;

  font-size: 10px;

  font-weight: 700;
}


.cultvre-case-category {
  color: #b89346;

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.15em;
}


.cultvre-case-main {
  padding:
    26px
    0
    28px;
}


.cultvre-case-main h3 {
  margin: 0;

  font-size:
    clamp(
      32px,
      3.1vw,
      46px
    );

  font-weight: 900;

  line-height: 0.98;

  letter-spacing: -0.045em;
}


.cultvre-case-description {
  max-width: 390px;

  margin:
    14px
    0
    0;

  color: #6d6d69;

  font-size: 13px;

  line-height: 1.55;
}


.cultvre-case-bottom {
  display: flex;

  min-height: 48px;

  align-items: flex-end;
  justify-content: space-between;

  gap: 25px;

  padding-top: 18px;

  border-top:
    1px solid
    #ddddD7;
}


.cultvre-case-bottom > span {
  max-width: 220px;

  color: #999992;

  font-size: 9px;

  font-weight: 700;

  line-height: 1.5;

  letter-spacing: 0.04em;

  text-transform: uppercase;
}


.cultvre-case-bottom a {
  display: inline-flex;

  flex: 0 0 auto;

  align-items: center;

  gap: 10px;

  color: #111111;

  font-size: 10px;

  font-weight: 800;

  white-space: nowrap;
}


.cultvre-case-bottom a span {
  font-size: 15px;

  transition:
    transform 180ms ease;
}


.cultvre-case-bottom a:hover span {
  transform:
    translateX(3px);
}


/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 768px) {

  .cultvre-cases {
    padding:
      78px
      0
      85px;
  }


  .cultvre-cases-inner {
    padding:
      0
      20px;
  }


  .cultvre-cases-header {
    margin-bottom: 34px;
  }


  .cultvre-cases-header h2 {
    font-size:
      clamp(
        44px,
        13vw,
        60px
      );
  }


  .cultvre-cases-intro {
    font-size: 14px;
  }


  .cultvre-cases-track {
    gap: 12px;
  }


  .cultvre-case {
    flex:
      0 0
      86%;

    border-radius: 18px;
  }


  .cultvre-case-body {
    padding:
      20px;
  }


  .cultvre-case-main {
    padding:
      22px
      0;
  }


  .cultvre-case-main h3 {
    font-size: 34px;
  }


  .cultvre-case-bottom {
    align-items: flex-start;

    flex-direction: column;

    gap: 13px;
  }

}
.cultvre-inquiry {
  width: 100%;

  padding:
    clamp(80px, 8vw, 120px)
    clamp(22px, 5vw, 80px);

  color: #ffffff;

  background: #101010;
}


.cultvre-inquiry-wrap {
  display: grid;

  grid-template-columns:
    minmax(240px, 330px)
    minmax(0, 760px);

  justify-content: space-between;

  gap:
    clamp(60px, 9vw, 150px);

  width:
    min(
      1180px,
      100%
    );

  margin: 0 auto;
}


.cultvre-inquiry-header {
  position: sticky;

  top: 130px;

  display: block;

  align-self: start;

  margin: 0;
}


.cultvre-inquiry-kicker {
  margin:
    0
    0
    18px;

  color: #b89346;

  font-size: 10px;

  font-weight: 800;

  letter-spacing: 0.2em;

  text-transform: uppercase;
}


.cultvre-inquiry-header h2 {
  max-width: 330px;

  margin: 0;

  font-size:
    clamp(
      40px,
      4.5vw,
      62px
    );

  font-weight: 900;

  line-height: 0.94;

  letter-spacing: -0.055em;
}


.cultvre-inquiry-header-right {
  max-width: 300px;

  margin-top: 28px;

  justify-self: auto;
}


.cultvre-inquiry-intro {
  margin: 0;

  color:
    rgba(
      255,
      255,
      255,
      0.45
    );

  font-size: 14px;

  line-height: 1.65;
}


.cultvre-inquiry-meta {
  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 20px;
}


.cultvre-inquiry-meta span {
  padding:
    6px
    10px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.12
    );

  border-radius: 999px;

  color:
    rgba(
      255,
      255,
      255,
      0.42
    );

  font-size: 9px;

  font-weight: 700;

  letter-spacing: 0.06em;

  text-transform: uppercase;
}



.cultvre-project-form {
  position: relative;

  width: 100%;

  margin: 0;

  padding:
    clamp(
      28px,
      4vw,
      46px
    );

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.08
    );

  border-radius: 24px;

  background: #151515;

  box-shadow:
    0
    30px
    80px
    rgba(
      0,
      0,
      0,
      0.18
    );
}



.cultvre-form-top {
  display: flex;

  align-items: center;

  gap: 20px;

  margin-bottom: 38px;
}


#cultvre-step-label {
  flex: 0 0 auto;

  min-width: 95px;

  color:
    rgba(
      255,
      255,
      255,
      0.38
    );

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.12em;

  text-transform: uppercase;
}


.cultvre-form-progress {
  width: 100%;
  height: 2px;

  overflow: hidden;

  border-radius: 999px;

  background:
    rgba(
      255,
      255,
      255,
      0.09
    );
}


.cultvre-form-progress span {
  display: block;

  width: 20%;
  height: 100%;

  border-radius: inherit;

  background: #b89346;

  transition:
    width
    300ms
    ease;
}



.cultvre-form-step {
  display: none;
}


.cultvre-form-step.is-active {
  display: block;
}


.cultvre-step-heading {
  max-width: 580px;

  margin-bottom: 30px;
}


.cultvre-step-number {
  display: block;

  margin-bottom: 10px;

  color:
    rgba(
      255,
      255,
      255,
      0.32
    );

  font-size: 9px;

  font-weight: 800;

  letter-spacing: 0.14em;
}


.cultvre-step-heading h3 {
  margin: 0;

  font-size:
    clamp(
      28px,
      3vw,
      38px
    );

  font-weight: 800;

  line-height: 1.02;

  letter-spacing: -0.04em;
}


.cultvre-step-heading p {
  max-width: 500px;

  margin:
    12px
    0
    0;

  color:
    rgba(
      255,
      255,
      255,
      0.42
    );

  font-size: 13px;

  line-height: 1.6;
}



.cultvre-project-types {
  display: flex;

  flex-direction: column;

  gap: 9px;

  border: 0;
}


.cultvre-project-type {
  display: flex;

  width: 100%;
  min-height: 78px;

  align-items: center;
  justify-content: space-between;

  gap: 25px;

  padding:
    17px
    20px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.1
    );

  border-radius: 14px;

  color: #ffffff;

  background:
    rgba(
      255,
      255,
      255,
      0.018
    );

  text-align: left;

  cursor: pointer;

  transition:
    background 180ms ease,
    border-color 180ms ease,
    transform 180ms ease;
}


.cultvre-project-type:hover {
  border-color:
    rgba(
      255,
      255,
      255,
      0.28
    );

  background:
    rgba(
      255,
      255,
      255,
      0.045
    );

  transform:
    translateY(
      -2px
    );
}


.cultvre-project-type div {
  display: block;
}


.cultvre-project-type strong {
  display: block;

  min-width: 0;

  font-size: 17px;

  font-weight: 700;

  letter-spacing: -0.025em;
}


.cultvre-project-type div span {
  display: block;

  margin-top: 5px;

  color:
    rgba(
      255,
      255,
      255,
      0.37
    );

  font-size: 11px;

  line-height: 1.4;
}


.cultvre-option-arrow {
  display: flex;

  width: 34px;
  height: 34px;

  flex: 0 0 auto;

  align-items: center;
  justify-content: center;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.13
    );

  border-radius: 50%;

  font-size: 15px;

  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}


.cultvre-project-type:hover
.cultvre-option-arrow {
  color: #111111;

  background: #ffffff;

  transform:
    translateX(
      3px
    );
}



.cultvre-product-options,
.cultvre-choice-grid {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(
        0,
        1fr
      )
    );

  gap: 8px;
}


.cultvre-product-option,
.cultvre-choice-grid button {
  min-height: 54px;

  padding:
    12px
    15px;

  border:
    1px solid
    rgba(
      255,
      255,
      255,
      0.11
    );

  border-radius: 11px;

  color:
    rgba(
      255,
      255,
      255,
      0.62
    );

  background:
    rgba(
      255,
      255,
      255,
      0.015
    );

  font: inherit;

  font-size: 12px;

  cursor: pointer;

  transition:
    color 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}


.cultvre-product-option:hover,
.cultvre-choice-grid button:hover {
  color: #ffffff;

  border-color:
    rgba(
      255,
      255,
      255,
      0.28
    );

  transform:
    translateY(
      -1px
    );
}


.cultvre-product-option.is-selected,
.cultvre-choice-grid button.is-selected {
  color: #111111;

  border-color: #ffffff;

  background: #ffffff;
}



.cultvre-question {
  margin:
    0
    0
    30px;

  padding: 0;

  border: 0;
}


.cultvre-question legend {
  margin-bottom: 13px;

  color:
    rgba(
      255,
      255,
      255,
      0.83
    );

  font-size: 12px;

  font-weight: 700;
}



.cultvre-contact-grid {
  display: grid;

  grid-template-columns:
    1fr
    1fr;

  gap:
    20px
    16px;
}


.cultvre-field {
  display: flex;

  flex-direction: column;

  gap: 7px;
}


.cultvre-field-full {
  grid-column:
    1 / -1;

  margin-top: 5px;
}


.cultvre-field label {
  color:
    rgba(
      255,
      255,
      255,
      0.55
    );

  font-size: 10px;

  font-weight: 600;
}


.cultvre-field input,
.cultvre-field textarea {
  width: 100%;

  padding:
    11px
    0;

  border: 0;

  border-bottom:
    1px solid
    rgba(
      255,
      255,
      255,
      0.16
    );

  border-radius: 0;

  outline: none;

  color: #ffffff;

  background: transparent;

  font: inherit;

  font-size: 13px;

  transition:
    border-color 180ms ease;
}


.cultvre-field input:focus,
.cultvre-field textarea:focus {
  border-color: #ffffff;
}



.cultvre-upload {
  margin-top: 28px;
}


.cultvre-upload-heading {
  margin-bottom: 12px;
}


.cultvre-upload-box {
  min-height: 100px;

  border-radius: 14px;
}



.cultvre-form-actions {
  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 18px;

  margin-top: 36px;

  padding-top: 22px;

  border-top:
    1px solid
    rgba(
      255,
      255,
      255,
      0.08
    );
}


.cultvre-back {
  padding: 0;

  border: 0;

  color:
    rgba(
      255,
      255,
      255,
      0.42
    );

  background: transparent;

  font: inherit;

  font-size: 11px;

  cursor: pointer;
}


.cultvre-back:hover {
  color: #ffffff;
}


.cultvre-next,
.cultvre-submit {
  display: inline-flex;

  min-height: 46px;

  align-items: center;
  justify-content: center;

  padding:
    0
    20px;

  border:
    1px solid
    #ffffff;

  border-radius: 999px;

  color: #111111;

  background: #ffffff;

  font: inherit;

  font-size: 11px;

  font-weight: 700;

  cursor: pointer;

  transition:
    color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}


.cultvre-next:hover,
.cultvre-submit:hover {
  color: #ffffff;

  background: #111111;

  transform:
    translateY(
      -2px
    );
}



.cultvre-summary {
  border-top:
    1px solid
    rgba(
      255,
      255,
      255,
      0.1
    );
}


.cultvre-summary-row {
  min-height: 48px;

  padding:
    11px
    0;
}



/* ==========================================================
   TABLET
========================================================== */

@media (max-width: 900px) {

  .cultvre-inquiry-wrap {
    grid-template-columns:
      1fr;

    gap: 45px;
  }


  .cultvre-inquiry-header {
    position: static;

    max-width: 650px;
  }


  .cultvre-inquiry-header-right {
    max-width: 480px;

    margin-top: 20px;
  }


  .cultvre-inquiry-header h2 {
    max-width: 550px;
  }


  .cultvre-project-form {
    max-width: 760px;
  }

}



/* ==========================================================
   MOBILE
========================================================== */

@media (max-width: 650px) {

  .cultvre-inquiry {
    padding:
      70px
      16px;
  }


  .cultvre-inquiry-wrap {
    gap: 35px;
  }


  .cultvre-inquiry-header h2 {
    font-size:
      clamp(
        39px,
        12vw,
        52px
      );
  }


  .cultvre-project-form {
    padding:
      25px
      18px;

    border-radius: 18px;
  }


  .cultvre-form-top {
    gap: 12px;

    margin-bottom: 30px;
  }


  #cultvre-step-label {
    min-width: 78px;
  }


  .cultvre-step-heading {
    margin-bottom: 25px;
  }


  .cultvre-step-heading h3 {
    font-size: 28px;
  }


  .cultvre-project-type {
    min-height: 74px;

    padding:
      15px
      16px;
  }


  .cultvre-product-options,
.cultvre-choice-grid,
.cultvre-contact-grid {
    grid-template-columns:
      1fr;
  }


  .cultvre-field-full {
    grid-column: auto;
  }


  .cultvre-form-actions {
    align-items: stretch;

    flex-direction: column-reverse;
  }


  .cultvre-next,
.cultvre-submit {
    width: 100%;
  }

}