:root {
  --vp-haus-ink: #101b20;
  --vp-haus-muted: #5f6e72;
  --vp-haus-green: #ffca1b;
  --vp-haus-green-dark: #073f32;
  --vp-haus-red: #b94931;
  --vp-haus-gold: #ffca1b;
  --vp-haus-bg: #f5f3ee;
  --vp-haus-surface: #ffffff;
  --vp-haus-soft: #edf3ed;
  --vp-haus-border: rgba(13, 46, 39, 0.16);
  --vp-haus-shadow: 0 24px 58px rgba(9, 24, 28, 0.14);
  --vp-haus-radius-sm: 8px;
  --vp-haus-radius-md: 12px;
  --vp-haus-radius-lg: 18px;
  --vp-haus-max: 1240px;
  --vp-haus-wide: 1500px;
}

.vp-haus {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  color: var(--vp-haus-ink);
  background:
    linear-gradient(180deg, rgba(7, 63, 50, 0.09), rgba(7, 63, 50, 0) 24%),
    linear-gradient(180deg, #fbfaf6 0%, var(--vp-haus-bg) 100%);
  font-family: "Manrope", "Segoe UI", Arial, sans-serif;
  line-height: 1.6;
  overflow: hidden;
}

.vp-haus * {
  box-sizing: border-box;
}

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

.vp-haus h1,
.vp-haus h2,
.vp-haus h3 {
  line-height: 1.12;
  letter-spacing: 0;
  font-family: "Space Grotesk", "Trebuchet MS", Arial, sans-serif;
}

.vp-haus h1 {
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.7rem);
  max-width: 12ch;
}

.vp-haus h2 {
  margin-bottom: 14px;
  font-size: clamp(1.85rem, 3.4vw, 3.35rem);
}

.vp-haus h3 {
  margin-bottom: 10px;
  font-size: clamp(1.24rem, 1.8vw, 1.55rem);
}

.vp-haus p {
  color: var(--vp-haus-muted);
}

.vp-haus img {
  display: block;
  max-width: 100%;
}

.vp-haus a {
  color: inherit;
}

.vp-haus__container {
  width: min(var(--vp-haus-max), 100%);
  margin: 0 auto;
  padding: 0 clamp(18px, 4vw, 44px);
}

.vp-haus__container--wide {
  width: min(var(--vp-haus-wide), 100%);
}

.vp-haus__section {
  padding: clamp(58px, 8vw, 108px) 0;
}

.vp-haus__hero {
  min-height: min(820px, 100vh);
  padding: clamp(56px, 7vw, 92px) 0 clamp(44px, 7vw, 86px);
  display: grid;
  align-items: center;
}

.vp-haus__hero-grid,
.vp-haus__intro-grid,
.vp-haus__final-grid {
  display: grid;
  gap: clamp(26px, 5vw, 62px);
  align-items: center;
}

.vp-haus__eyebrow,
.vp-haus__tag {
  margin-bottom: 12px;
  color: var(--vp-haus-green);
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.78rem;
}

.vp-haus__logo {
  width: clamp(118px, 16vw, 168px);
  margin-bottom: 22px;
}

.vp-haus__lead {
  font-size: clamp(1.08rem, 1.6vw, 1.28rem);
  color: #35454f;
  max-width: 58ch;
}

.vp-haus__hero-copy > p:not(.vp-haus__eyebrow):not(.vp-haus__lead) {
  max-width: 68ch;
}

.vp-haus__hero-actions,
.vp-haus__trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.vp-haus__hero-actions {
  margin: 26px 0 18px;
}

.vp-haus__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.vp-haus__btn:hover {
  transform: translateY(-2px);
}

.vp-haus__btn:focus-visible,
.vp-haus-card__link:focus-visible,
.vp-haus__contact a:focus-visible {
  outline: 3px solid rgba(15, 106, 84, 0.28);
  outline-offset: 3px;
}

.vp-haus__btn--primary {
  background: var(--vp-haus-gold);
  color: #10231e;
  box-shadow: 0 18px 34px rgba(215, 166, 61, 0.26);
}

.vp-haus__btn--primary:hover {
  background: #efbd4d;
  color: #10231e;
}

.vp-haus__btn--secondary {
  border-color: rgba(22, 34, 42, 0.22);
  background: rgba(255, 255, 255, 0.72);
  color: var(--vp-haus-ink);
}

.vp-haus__btn--secondary:hover {
  border-color: rgba(22, 34, 42, 0.46);
}

.vp-haus__trust-row span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 7px 12px;
  border: 1px solid rgba(15, 106, 84, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--vp-haus-green-dark);
  font-weight: 800;
  font-size: 0.9rem;
}

.vp-haus__hero-media {
  position: relative;
  margin: 0;
}

.vp-haus__hero-media img {
  width: 100%;
  min-height: clamp(360px, 48vw, 640px);
  object-fit: cover;
  border-radius: var(--vp-haus-radius-lg);
  box-shadow: var(--vp-haus-shadow);
}

.vp-haus__hero-media figcaption {
  position: absolute;
  left: clamp(16px, 4vw, 28px);
  bottom: clamp(16px, 4vw, 28px);
  display: grid;
  gap: 2px;
  width: min(270px, calc(100% - 32px));
  padding: 16px;
  border-radius: var(--vp-haus-radius-md);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  box-shadow: 0 14px 34px rgba(12, 24, 31, 0.16);
}

.vp-haus__hero-media figcaption strong {
  color: var(--vp-haus-green-dark);
  font-size: 1.08rem;
}

.vp-haus__hero-media figcaption span {
  color: var(--vp-haus-muted);
}

.vp-haus__section--intro {
  background: #fff;
}

.vp-haus__intro-grid {
  align-items: start;
}

.vp-haus__intro-grid > div:first-child p {
  max-width: 72ch;
}

.vp-haus__benefit-panel {
  display: grid;
  gap: 16px;
}

.vp-haus__benefit-panel img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--vp-haus-radius-lg);
  box-shadow: var(--vp-haus-shadow);
}

.vp-haus__benefit-list {
  display: grid;
  gap: 10px;
}

.vp-haus__benefit-list div {
  padding: 16px;
  border: 1px solid rgba(15, 106, 84, 0.18);
  border-radius: var(--vp-haus-radius-sm);
  background: var(--vp-haus-soft);
}

.vp-haus__benefit-list strong,
.vp-haus__benefit-list span {
  display: block;
}

.vp-haus__benefit-list strong {
  color: var(--vp-haus-green-dark);
}

.vp-haus__benefit-list span {
  color: var(--vp-haus-muted);
}

.vp-haus__section-head {
  max-width: 940px;
  margin-bottom: clamp(30px, 4.5vw, 54px);
}

#vp-haus-projekte {
  background: #f7f5ef;
}

.vp-haus__cards {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: clamp(20px, 2.3vw, 32px);
}

.vp-haus-card {
  display: grid;
  min-height: 100%;
  overflow: hidden;
  border: 1px solid var(--vp-haus-border);
  border-radius: var(--vp-haus-radius-sm);
  background: var(--vp-haus-surface);
  box-shadow: 0 18px 42px rgba(11, 25, 28, 0.1);
}

.vp-haus-card__media {
  position: relative;
  margin: 0;
  background: #dfe6df;
}

.vp-haus-card__media img {
  width: 100%;
  aspect-ratio: 16 / 9.6;
  object-fit: cover;
}

.vp-haus-card__media span {
  position: absolute;
  right: 12px;
  bottom: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 106, 84, 0.94);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 800;
}

.vp-haus-card__number {
  position: absolute;
  left: 14px;
  bottom: 4px;
  color: var(--vp-haus-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(3.4rem, 6vw, 5.3rem);
  font-weight: 400;
  line-height: 0.9;
  text-shadow: 0 8px 18px rgba(0, 0, 0, 0.34);
}

.vp-haus-card__body {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: clamp(20px, 2.6vw, 30px);
}

.vp-haus-card__topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: var(--vp-haus-green);
  font-weight: 900;
}

.vp-haus-card__topline strong {
  min-width: 86px;
  padding: 8px 10px;
  border: 1px solid rgba(22, 34, 42, 0.12);
  border-radius: var(--vp-haus-radius-sm);
  background: #f8f7f1;
  text-align: center;
}

.vp-haus-card__topline span {
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
}

.vp-haus-card h3 {
  margin-bottom: 0;
  font-size: clamp(1.42rem, 2.1vw, 1.82rem);
}

.vp-haus-card__body p {
  margin-bottom: 0;
  min-height: 3.2em;
}

.vp-haus-card__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
}

.vp-haus-card__facts div {
  min-height: 58px;
  padding: 9px 10px;
  border: 1px solid rgba(13, 46, 39, 0.12);
  border-radius: var(--vp-haus-radius-sm);
  background: #f8f7f2;
}

.vp-haus-card__facts dt,
.vp-haus-card__facts dd {
  margin: 0;
}

.vp-haus-card__facts dt {
  color: var(--vp-haus-muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.vp-haus-card__facts dd {
  color: var(--vp-haus-green-dark);
  font-weight: 900;
}

.vp-haus-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.vp-haus-card__features li {
  padding: 7px 10px;
  border-radius: 999px;
  background: #eef2ec;
  color: #17312b;
  font-size: 0.86rem;
  font-weight: 800;
}

.vp-haus-card__price {
  margin-top: auto;
  padding: 18px;
  border-top: 0;
  border-radius: var(--vp-haus-radius-sm);
  background: var(--vp-haus-green-dark);
}

.vp-haus-card__price span,
.vp-haus-card__price small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
}

.vp-haus-card__price strong {
  display: block;
  margin: 2px 0;
  color: #fff;
  font-size: clamp(1.7rem, 2.4vw, 2.2rem);
  line-height: 1.05;
}

.vp-haus-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  margin-top: 2px;
  padding: 11px 16px;
  border-radius: 999px;
  background: var(--vp-haus-green);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
}

.vp-haus-card__link:hover {
  background: var(--vp-haus-green-dark);
  color: #fff;
}

.vp-haus__section--process {
  background: linear-gradient(135deg, rgba(15, 106, 84, 0.11), rgba(244, 182, 61, 0.16));
}

.vp-haus__steps {
  display: grid;
  gap: 14px;
}

.vp-haus__steps article {
  padding: clamp(18px, 2.6vw, 28px);
  border: 1px solid rgba(15, 106, 84, 0.2);
  border-radius: var(--vp-haus-radius-md);
  background: rgba(255, 255, 255, 0.82);
}

.vp-haus__steps span {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--vp-haus-gold);
  color: #1d261c;
  font-weight: 900;
}

.vp-haus__steps p {
  margin-bottom: 0;
}

.vp-haus__section--notice {
  padding-top: clamp(42px, 6vw, 76px);
  padding-bottom: clamp(42px, 6vw, 76px);
  background: var(--vp-haus-green-dark);
  color: #fff;
}

.vp-haus__section--notice .vp-haus__tag,
.vp-haus__section--notice h2,
.vp-haus__section--notice p {
  color: #fff;
}

.vp-haus__notice {
  display: grid;
  gap: 22px;
  align-items: start;
}

.vp-haus__notice ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  color: rgba(255, 255, 255, 0.88);
}

.vp-haus__notice strong {
  color: #fff;
}

.vp-haus__section--final {
  background:
    linear-gradient(90deg, rgba(197, 64, 44, 0.12), rgba(15, 106, 84, 0.12)),
    #fff;
}

.vp-haus__final-grid {
  align-items: center;
}

.vp-haus__final-grid p {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
}

.vp-haus__final-media {
  margin: 0;
}

.vp-haus__final-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: var(--vp-haus-radius-lg);
  box-shadow: var(--vp-haus-shadow);
}

.vp-haus__contact {
  display: grid;
  gap: 10px;
  padding: 18px;
  border: 1px solid rgba(15, 106, 84, 0.18);
  border-radius: var(--vp-haus-radius-md);
  background: rgba(255, 255, 255, 0.72);
  font-style: normal;
}

.vp-haus__contact a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  text-decoration: none;
  color: var(--vp-haus-green-dark);
  font-weight: 800;
}

.vp-haus__contact a:hover {
  color: var(--vp-haus-red);
}

.vp-haus__sticky {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 50;
  display: none;
  padding: 10px;
  border-radius: 18px;
  background: rgba(22, 34, 42, 0.86);
  backdrop-filter: blur(9px);
}

.vp-haus__sticky .vp-haus__btn {
  width: 100%;
}

.vp-haus__sticky.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.vp-haus [data-vp-haus-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.56s ease, transform 0.56s ease;
}

.vp-haus [data-vp-haus-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 760px) {
  .vp-haus__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

@media (min-width: 960px) {
  .vp-haus__hero-grid,
  .vp-haus__intro-grid {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.86fr);
  }

  .vp-haus__notice {
    grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1fr);
  }

  .vp-haus__final-grid {
    grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.82fr) minmax(250px, 0.58fr);
  }
}

@media (min-width: 1120px) {
  .vp-haus__cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 759px) {
  .vp-haus__hero {
    min-height: auto;
  }

  .vp-haus h1 {
    max-width: none;
  }

  .vp-haus__hero-actions {
    flex-direction: column;
  }

  .vp-haus__btn {
    width: 100%;
  }

  .vp-haus__sticky {
    display: block;
  }
}

@media (prefers-reduced-motion: reduce) {
  .vp-haus *,
  .vp-haus *::before,
  .vp-haus *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}
