/* Butz-Bauwelt — premium architectural redesign */
:root {
  --brand: #96152a;
  --brand-dark: #6e0d1d;
  --brand-soft: #efe0e1;
  --ink: #15191c;
  --ink-2: #252a2e;
  --paper: #f4f0e8;
  --paper-2: #ebe5da;
  --white: #fffdf9;
  --muted: #686b6b;
  --line: rgba(21, 25, 28, .13);
  --line-light: rgba(255, 255, 255, .18);
  --wrap: 1280px;
  --r: 2px;
  --shadow: 0 28px 80px rgba(22, 25, 27, .14);
  --shadow2: 0 14px 42px rgba(22, 25, 27, .09);
  --ease: cubic-bezier(.22, 1, .36, 1);
}

html {
  scroll-behavior: smooth;
  background: var(--paper);
}

body {
  min-width: 320px;
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(21, 25, 28, .025) 50%, transparent calc(50% + 1px)),
    var(--paper);
  color: var(--ink);
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: -.01em;
  -webkit-font-smoothing: antialiased;
}

body::before {
  content: "";
  position: fixed;
  z-index: 80;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand-dark), var(--brand), #be5c68);
  pointer-events: none;
}

::selection {
  background: var(--brand);
  color: #fff;
}

a,
button,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(150, 21, 42, .32);
  outline-offset: 3px;
}

.wrap {
  width: min(var(--wrap), calc(100% - 72px));
}

h1,
h2,
h3,
h4 {
  color: inherit;
  font-family: "Manrope", "Inter", system-ui, sans-serif;
  font-weight: 700;
  letter-spacing: -.055em;
}

h1 {
  max-width: 1000px;
  font-size: clamp(3.2rem, 6.6vw, 6.6rem);
  line-height: .93;
  text-wrap: balance;
}

h2 {
  font-size: clamp(2.25rem, 4.3vw, 4.4rem);
  line-height: 1;
  text-wrap: balance;
}

h3 {
  font-size: clamp(1.25rem, 2vw, 1.65rem);
  line-height: 1.2;
}

p,
.small,
.lead {
  font-weight: 500;
}

.lead {
  max-width: 66ch;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.3vw, 1.18rem);
  line-height: 1.8;
}

.small {
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.65;
}

.kicker {
  gap: 12px;
  color: var(--brand-dark);
  font-size: .72rem;
  font-weight: 800;
  letter-spacing: .19em;
}

.kicker::before {
  width: 36px;
  height: 1px;
  background: var(--brand);
}

.btn {
  min-height: 50px;
  padding: 13px 20px;
  border-radius: 1px;
  border-color: rgba(21, 25, 28, .22);
  font-size: .73rem;
  font-weight: 800;
  letter-spacing: .105em;
  line-height: 1.1;
  text-transform: uppercase;
  transition:
    color .3s ease,
    background .3s ease,
    border-color .3s ease,
    box-shadow .3s ease,
    transform .3s var(--ease);
}

.btn::after {
  content: "↗";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  transition: transform .3s var(--ease);
}

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

.btn:hover::after {
  transform: translate(2px, -2px);
}

.btn--brand {
  border-color: var(--brand);
  background: var(--brand);
  box-shadow: 0 12px 28px rgba(110, 13, 29, .2);
}

.btn--brand:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  box-shadow: 0 18px 38px rgba(110, 13, 29, .25);
}

.btn--ink {
  border-color: var(--ink);
  background: var(--ink);
}

.btn--ink:hover {
  background: #30363a;
}

.btn--ghost {
  border-color: rgba(255, 255, 255, .42);
  background: rgba(255, 255, 255, .1);
  color: #fff;
  backdrop-filter: blur(12px);
}

.section .btn--ghost,
.footer .btn--ghost,
.formCard .btn--ghost,
.accordion .btn--ghost {
  border-color: rgba(21, 25, 28, .22);
  background: transparent;
  color: var(--ink);
  backdrop-filter: none;
}

.badge {
  min-height: 30px;
  padding: 7px 11px;
  border-radius: 1px;
  border-color: rgba(255, 255, 255, .34);
  background: rgba(15, 19, 22, .34);
  font-size: .67rem;
  font-weight: 800;
  letter-spacing: .18em;
  backdrop-filter: blur(12px);
}

/* Header */
.header {
  position: fixed;
  top: 3px;
  left: 0;
  right: 0;
  z-index: 70;
  border-bottom: 1px solid rgba(255, 255, 255, .18);
  background: rgba(13, 16, 18, .18);
  color: #fff;
  backdrop-filter: blur(4px);
  transition:
    background .35s ease,
    border-color .35s ease,
    color .35s ease,
    box-shadow .35s ease,
    backdrop-filter .35s ease;
}

.header.is-scrolled {
  border-color: var(--line);
  background: rgba(244, 240, 232, .94);
  color: var(--ink);
  box-shadow: 0 12px 34px rgba(21, 25, 28, .07);
  backdrop-filter: blur(18px) saturate(135%);
}

.headerRow {
  min-height: 82px;
  padding: 10px 0;
}

.brand {
  min-width: 205px;
  gap: 0;
  transition: opacity .25s ease;
}

.brand:hover {
  opacity: .78;
}

.brand > div:last-child {
  display: none;
}

.mark--logo {
  height: 53px;
  padding: 6px 10px;
  background: rgba(255, 253, 249, .97);
  box-shadow: 0 5px 20px rgba(14, 17, 19, .08);
}

.brandLogo {
  width: 193px;
  max-width: 193px;
  height: 41px;
  object-fit: contain;
}

.nav {
  gap: 2px;
}

.nav a {
  position: relative;
  padding: 11px 10px;
  border-radius: 0;
  color: rgba(255, 255, 255, .82);
  font-size: .69rem;
  font-weight: 700;
  letter-spacing: .075em;
  text-transform: uppercase;
  transition: color .25s ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 5px;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease);
}

.nav a:hover,
.nav a.active {
  background: transparent;
  color: #fff;
  border: 0;
}

.nav a:hover::after,
.nav a.active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header.is-scrolled .nav a {
  color: rgba(21, 25, 28, .68);
}

.header.is-scrolled .nav a:hover,
.header.is-scrolled .nav a.active {
  color: var(--brand-dark);
}

.headerActions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.headerActions .btn {
  min-height: 44px;
  padding: 11px 16px;
}

.burger {
  width: 48px;
  height: 44px;
  border-radius: 1px;
  border-color: rgba(255, 255, 255, .32);
  background: rgba(255, 255, 255, .08);
}

.burger span {
  width: 21px;
  height: 1px;
  background: #fff;
  transition: all .25s ease;
}

.header.is-scrolled .burger {
  border-color: var(--line);
  background: rgba(255, 255, 255, .8);
}

.header.is-scrolled .burger span {
  background: var(--ink);
}

.mobile {
  border-color: var(--line);
  background: rgba(244, 240, 232, .98);
  color: var(--ink);
  backdrop-filter: blur(20px);
}

.mobileInner {
  padding: 16px 0 24px;
  gap: 0;
}

.mobileInner a {
  padding: 15px 4px;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  font-size: .8rem;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.mobileInner .mobileCta {
  margin-top: 16px;
  padding: 13px 18px;
  border: 1px solid var(--brand);
  background: var(--brand);
  color: #fff;
}

/* Hero */
.hero {
  min-height: 70svh !important;
  isolation: isolate;
  align-items: end;
  background: var(--ink);
}

.page-home .hero {
  min-height: 92svh !important;
}

.hero::before {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .055) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 12.5vw 100%, 100% 25%;
  opacity: .72;
  mix-blend-mode: normal;
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(11, 14, 16, .86) 0%, rgba(11, 14, 16, .48) 52%, rgba(11, 14, 16, .18) 100%),
    linear-gradient(180deg, rgba(11, 14, 16, .48), transparent 32%, rgba(11, 14, 16, .76));
  pointer-events: none;
}

.heroMedia {
  transform: scale(1.025) translateY(var(--hero-shift, 0));
  filter: saturate(.76) contrast(1.05);
  transition: transform .15s linear;
}

body.page-home .heroMedia,
body.page-config .heroMedia,
body.page-vr3d .heroMedia,
body.page-about .heroMedia,
.heroMedia--contact,
.heroMedia--leistungen {
  background-image: var(--hero-image);
  background-size: cover;
  background-position: center;
}

body.page-home { --hero-image: url("../img/hero-haus.webp"); }
body.page-config { --hero-image: url("../img/hero-konfigurator.webp"); }
body.page-vr3d { --hero-image: url("../img/hero-vr3d.webp"); }
body.page-about { --hero-image: url("../img/ueber-uns-hero.jpg"); }
body.page-contact { --hero-image: url("../img/kontakt-hero.webp"); }
body.page-services { --hero-image: url("../img/leistungen-hero.webp"); }
body.page-legal { --hero-image: url("../img/hero-haus.webp"); }

.hero .wrap,
.hero .wrap[style] {
  z-index: 3;
  padding: 170px 0 66px !important;
}

.page-home .hero .wrap {
  padding-bottom: 38px !important;
}

.heroTop {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  align-items: end;
  gap: 72px;
}

.heroCopy {
  max-width: 900px;
}

.hero h1 {
  color: #fff;
  text-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.hero .lead,
.hero .lead[style] {
  max-width: 680px;
  color: rgba(255, 255, 255, .77) !important;
  font-size: clamp(1rem, 1.28vw, 1.17rem);
  line-height: 1.72;
}

.heroActions {
  gap: 10px;
  margin-top: 26px;
}

.heroPanel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 1px;
  background: rgba(18, 21, 23, .42);
  padding: 23px;
  backdrop-filter: blur(14px);
}

.heroTop > .heroPanel {
  padding-top: 52px;
}

.heroTop > .heroPanel::before {
  content: "01";
  position: absolute;
  top: 20px;
  right: 20px;
  color: rgba(255, 255, 255, .5);
  font-size: .7rem;
  letter-spacing: .18em;
}

.heroPanel strong {
  font-size: .96rem;
  font-weight: 700;
}

.heroPanel span {
  margin-top: 7px;
  color: rgba(255, 255, 255, .66);
  font-size: .88rem;
  font-weight: 500;
}

.heroLogoWrap {
  margin-top: 20px;
  padding-top: 18px;
}

.heroLogo {
  max-width: 220px;
  opacity: .82;
}

.heroStripe {
  grid-template-columns: 1fr 1fr;
  max-width: 760px;
  gap: 1px;
  margin-top: 38px;
  background: rgba(255, 255, 255, .22);
}

.heroStripe .heroPanel {
  border: 0;
  background: rgba(17, 20, 22, .58);
}

.cut::after {
  display: none;
}

/* Main sections */
.section {
  position: relative;
  padding: 118px 0;
}

.section--paper {
  border-color: var(--line);
  background:
    linear-gradient(90deg, transparent calc(50% - 1px), rgba(21, 25, 28, .03) 50%, transparent calc(50% + 1px)),
    var(--white);
}

.grid12 {
  gap: 22px;
}

.tile {
  position: relative;
  border: 0;
  border-radius: 1px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow2);
  isolation: isolate;
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
}

.tile:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow);
}

.tileTop {
  height: 330px;
  overflow: hidden;
}

.tileTop::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(12, 15, 17, .8));
  pointer-events: none;
}

.tileTop img {
  opacity: 1;
  filter: saturate(.78);
  transition: transform .8s var(--ease), filter .5s ease;
}

.tile:hover .tileTop img {
  transform: scale(1.045);
  filter: saturate(.95);
}

.tileTop .label {
  z-index: 2;
  left: 20px;
  bottom: 18px;
}

.tileBody {
  min-height: 126px;
  padding: 22px;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.tileBody b {
  display: block;
  font-size: 1.18rem;
  font-weight: 650;
  letter-spacing: -.03em;
}

.tileBody .small {
  margin-top: 7px;
  color: rgba(255, 255, 255, .64);
}

.split {
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: clamp(42px, 7vw, 100px);
  align-items: center;
}

.photo,
.split .photo {
  position: relative;
  min-height: 620px;
  max-height: none;
  border: 0;
  border-radius: 1px;
  background: var(--ink);
  box-shadow: var(--shadow);
}

.photo::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, .32);
  pointer-events: none;
}

.photo img {
  filter: saturate(.74) contrast(1.04);
}

.featureList {
  margin-top: 2px;
  gap: 0;
  border-top: 1px solid var(--line);
}

.feature {
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
}

.feature .num {
  width: 46px;
  height: 46px;
  border: 1px solid rgba(150, 21, 42, .35);
  border-radius: 50%;
  background: transparent;
  color: var(--brand);
  font-size: .7rem;
  letter-spacing: .1em;
}

.feature b {
  font-size: 1rem;
  font-weight: 700;
}

.feature span {
  color: var(--muted);
  font-weight: 500;
}

.card,
.formCard,
.ctaStrip {
  border: 1px solid var(--line);
  border-radius: 1px;
  background: var(--white);
  box-shadow: var(--shadow2);
}

.cardPad {
  padding: 34px;
}

.cardTitle {
  font-size: clamp(1.4rem, 2.4vw, 2.2rem);
  font-weight: 650;
  letter-spacing: -.045em;
}

/* Founder */
.founder {
  border: 0;
  border-radius: 1px;
  background: var(--ink);
  color: #fff;
  box-shadow: var(--shadow);
}

.founderInner {
  grid-template-columns: minmax(360px, .9fr) minmax(0, 1.1fr);
  gap: 0;
}

.founderMedia {
  min-height: 670px;
}

.founderMedia--clean img {
  filter: saturate(.72) contrast(1.04);
  object-position: center top;
}

.founderCopy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(42px, 7vw, 90px);
}

.founderCopy .kicker {
  color: #d69aa3;
}

.founderCopy .kicker::before {
  background: #d69aa3;
}

.founderCopy .lead,
.founderCopy .small,
.founderCopy .sig span {
  color: rgba(255, 255, 255, .68);
}

.founderCopy .pill {
  border-color: rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .06);
  color: rgba(255, 255, 255, .8);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.founderCopy .btn--ghost {
  border-color: rgba(255, 255, 255, .32);
  color: #fff;
}

.sigLine {
  background: linear-gradient(90deg, var(--brand), transparent);
}

.sig {
  margin-top: 14px;
}

.sig b {
  font-size: 1.16rem;
  font-weight: 600;
}

/* CTAs */
.ctaCalc {
  grid-template-columns: 1fr auto 220px;
  gap: 24px;
}

.ctaCalc__media,
.ctaStripIcon {
  border: 0;
  background: var(--paper-2);
  box-shadow: none;
}

.ctaCalc__media img {
  width: 172px;
}

.ctaStrip {
  margin-top: 32px;
}

.ctaStrip--fancy {
  background:
    linear-gradient(100deg, rgba(255, 255, 255, .98), rgba(235, 229, 218, .9)),
    var(--white);
}

.ctaStripPad {
  min-height: 180px;
  grid-template-columns: 1fr auto 200px;
  padding: 28px !important;
}

.ctaStripCopy > b {
  font-size: clamp(1.2rem, 2vw, 1.8rem);
  letter-spacing: -.035em;
}

/* Accordion */
.accordion {
  border: 0;
  border-top: 1px solid var(--line);
  border-radius: 0;
  background: transparent;
}

.accordion details {
  border-color: var(--line);
}

.accordion summary {
  padding: 27px 0;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
  font-weight: 650;
  letter-spacing: -.035em;
}

.accordion summary span:not(.plus) {
  margin-left: auto;
  font-size: .68rem;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.accordion summary .plus {
  width: 44px;
  height: 44px;
  margin-left: 20px;
  border-radius: 50%;
  font-size: 1.15rem;
  font-weight: 400;
  transition: transform .35s var(--ease), background .3s ease;
}

.accordion details[open] summary .plus {
  border-color: var(--brand);
  background: var(--brand);
  color: #fff;
  transform: rotate(45deg);
}

.accordion .content {
  max-width: 930px;
  padding: 0 0 32px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.8;
}

.accordionActions {
  margin-top: 18px;
}

/* VR information section */
#kundenHinweis {
  min-height: 720px;
  display: grid;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(10, 13, 15, .84), rgba(10, 13, 15, .5)),
    url("../img/vr-kundenhinweis-bg.png") center / cover no-repeat;
}

#kundenHinweis::before {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .04) 1px, transparent 1px);
  background-size: 12.5% 100%, 100% 33.333%;
}

#kundenHinweis .infoBlock {
  max-width: 1100px;
  padding: clamp(34px, 5vw, 70px);
  border: 1px solid rgba(255, 255, 255, .22);
  background: rgba(18, 21, 23, .68);
  color: #fff;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
}

#kundenHinweis .kicker {
  color: #e0b0b7;
}

#kundenHinweis .kicker::before {
  background: #e0b0b7;
}

#kundenHinweis h2,
#kundenHinweis .lead {
  color: #fff !important;
  text-shadow: none;
}

#kundenHinweis .lead {
  color: rgba(255, 255, 255, .7) !important;
}

.infoList {
  gap: 1px;
  background: rgba(255, 255, 255, .16);
}

#kundenHinweis .infoItem,
.infoItem {
  border: 0;
  background: rgba(15, 18, 20, .72);
  color: #fff;
  padding: 23px;
}

.infoItem span {
  color: rgba(255, 255, 255, .62);
  font-weight: 500;
}

/* Contact */
.formWrap {
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, .82fr);
  gap: 28px;
}

.formCard .pad,
.sideCard .pad {
  padding: clamp(28px, 4vw, 52px);
}

.formCard .note {
  margin: 20px 0 24px;
  padding: 17px 19px;
  border: 0;
  border-left: 3px solid var(--brand);
  background: var(--paper-2);
}

.labelText {
  margin: 16px 0 7px;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .095em;
  text-transform: uppercase;
}

.inputLine {
  min-height: 54px;
  padding: 14px 15px;
  border: 0;
  border-bottom: 1px solid rgba(21, 25, 28, .28);
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  font-weight: 500;
  transition: border-color .25s ease, background .25s ease;
}

.inputLine:hover {
  background: rgba(21, 25, 28, .025);
}

.inputLine:focus {
  border-color: var(--brand);
  background: rgba(150, 21, 42, .03);
  box-shadow: none;
}

.help {
  color: #848584;
  font-size: .8rem;
}

.checkRow input {
  accent-color: var(--brand);
}

.sideCard {
  border: 0;
  border-radius: 1px;
  background:
    linear-gradient(145deg, rgba(150, 21, 42, .2), transparent 42%),
    var(--ink);
  box-shadow: var(--shadow);
}

.sideList {
  margin-top: 22px;
  gap: 0;
  border-top: 1px solid rgba(255, 255, 255, .14);
}

.sideItem {
  grid-template-columns: 46px 1fr;
  padding: 19px 0;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: transparent;
}

.sideItem .ic {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  background: transparent;
  color: #d69aa3;
  font-size: .67rem;
  letter-spacing: .08em;
}

/* Configurator */
.page-config .calcNotice {
  max-width: 1040px;
  margin: 0 auto 32px;
  padding: 30px 34px;
  border: 1px solid rgba(150, 21, 42, .2);
  border-radius: 1px;
  background: var(--brand-soft);
  box-shadow: none;
}

.page-config .calcNotice__badge {
  border-radius: 1px;
}

.page-config .calc {
  max-width: 1120px;
  border: 1px solid var(--line);
  border-radius: 1px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.page-config .calcHead {
  min-height: 84px;
  padding: 22px 26px;
  background: var(--paper-2);
}

.page-config .calcHead strong {
  font-weight: 700;
}

.progress {
  height: 4px;
  border-radius: 0 !important;
  background: rgba(21, 25, 28, .12);
}

.progress > span {
  border-radius: 0 !important;
  background: var(--brand);
}

.page-config .calcBody {
  padding: 26px;
}

.calcGrid {
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, .7fr);
  gap: 24px;
}

.page-config .stepCard {
  min-height: 420px;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 1px;
  background: #fff;
}

.page-config .stepCard h3 {
  margin-bottom: 24px;
  font-size: 1.35rem;
  font-weight: 700;
}

.page-config .choices {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.page-config .choice {
  min-width: 0;
  min-height: 142px;
  padding: 14px;
  border-radius: 1px;
  background: var(--white);
}

.page-config .choice:hover {
  border-color: rgba(150, 21, 42, .4);
}

.page-config .choice.selected {
  border-color: var(--brand);
  background: var(--brand-soft);
  box-shadow: inset 0 -3px var(--brand);
}

.page-config .choiceIcon {
  border: 0;
  border-radius: 0;
  background: rgba(21, 25, 28, .035);
}

.page-config .choiceLabel {
  font-size: .76rem;
  font-weight: 700;
}

input[type="range"] {
  accent-color: var(--brand);
}

.calcAside {
  top: 106px;
}

.page-config .calcAside .miniSum {
  border: 0;
  border-radius: 1px;
  background: var(--ink);
}

.page-config .calcAside .miniSum::before {
  height: 4px;
  background: var(--brand);
}

.miniTitle {
  font-family: inherit;
  font-weight: 700;
}

.miniTotal {
  border-radius: 1px;
}

.summary {
  background: var(--ink);
}

.calcNav {
  margin-top: 22px;
}

/* Legal */
.page-legal .hero {
  min-height: 48svh !important;
}

.legalWrap {
  max-width: 1080px;
}

.legalCard {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.legalCard > .pad {
  padding: 0;
}

.legalGrid {
  gap: 18px;
  margin-top: 34px;
}

.legalBlock {
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 10px 28px rgba(21, 25, 28, .045);
}

.legalBlock .pad {
  padding: 28px;
}

.legalBlock h3 {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.legalLabel {
  color: var(--brand-dark);
}

/* Footer */
.footer {
  padding: 76px 0 42px;
  border-top: 0;
  background: var(--ink);
  color: #fff;
}

.footerGrid {
  grid-template-columns: 1.35fr .8fr .8fr;
  gap: clamp(36px, 6vw, 90px);
}

.footer .mark--logo {
  background: #fff;
}

.footer .brandRow > div:last-child {
  display: none;
}

.footer .small,
.footerCol .small {
  color: rgba(255, 255, 255, .55);
}

.footer .kicker {
  color: rgba(255, 255, 255, .46);
}

.footer .kicker::before {
  background: var(--brand);
}

.footerLinks {
  display: grid;
  gap: 0;
}

.footerLinks a {
  padding: 9px 0;
  color: rgba(255, 255, 255, .68);
  font-size: .82rem;
  transition: color .25s ease, transform .25s ease;
}

.footerLinks a:hover {
  color: #fff;
  transform: translateX(4px);
}

.footer .btn--brand {
  margin-top: 8px;
}

/* Motion */
.heroIntro {
  transition:
    opacity .85s var(--ease),
    transform .85s var(--ease);
}

body:not(.page-loaded) .heroIntro {
  opacity: 0;
  transform: translateY(24px);
}

.reveal {
  transform: translateY(28px);
  transition:
    opacity .85s var(--ease) var(--reveal-delay, 0ms),
    transform .85s var(--ease) var(--reveal-delay, 0ms);
}

/* Responsive */
@media (max-width: 1120px) {
  .headerRow {
    min-height: 76px;
  }

  .nav {
    display: none;
  }

  .burger {
    display: inline-block;
  }

  .heroTop {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .heroTop > .heroPanel {
    max-width: 560px;
  }

  .split {
    gap: 46px;
  }

  .founderInner {
    grid-template-columns: .9fr 1.1fr;
  }
}

@media (max-width: 900px) {
  .wrap {
    width: min(100% - 40px, var(--wrap));
  }

  h1 {
    font-size: clamp(2.7rem, 11vw, 5rem);
  }

  .headerActions > .btn {
    display: none;
  }

  .hero {
    min-height: 66svh !important;
  }

  .page-home .hero {
    min-height: 88svh !important;
  }

  .hero .wrap,
  .hero .wrap[style] {
    padding: 142px 0 42px !important;
  }

  .hero::before {
    background-size: 25vw 100%, 100% 25%;
  }

  .heroStripe {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 86px 0;
  }

  .grid12 {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .grid12 > [style*="grid-column"] {
    grid-column: auto !important;
  }

  .grid12 > [style*="grid-column:1 / span 7"] {
    grid-column: 1 / -1 !important;
  }

  .grid12 > [style*="grid-column:8 / -1"] {
    grid-column: 1 / -1 !important;
    justify-content: flex-start !important;
  }

  .split,
  .founderInner,
  .formWrap {
    grid-template-columns: 1fr;
  }

  .photo,
  .split .photo {
    min-height: 480px;
  }

  .founderMedia {
    min-height: 560px;
  }

  .ctaCalc,
  .ctaStripPad {
    grid-template-columns: 1fr;
  }

  .ctaCalc__actions {
    justify-content: flex-start;
  }

  .ctaCalc__media,
  .ctaStripIcon {
    width: 100%;
    justify-self: stretch;
  }

  .ctaStripActions {
    order: 2;
  }

  .ctaStripIcon {
    order: 3;
  }

  .infoList {
    grid-template-columns: 1fr;
  }

  .calcGrid {
    grid-template-columns: 1fr;
  }

  .calcAside {
    position: static;
  }

  .footerGrid {
    grid-template-columns: 1fr 1fr;
  }

  .footerGrid .footerCol:first-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 620px) {
  .wrap {
    width: min(100% - 28px, var(--wrap));
  }

  .headerRow {
    min-height: 68px;
  }

  .mark--logo {
    height: 46px;
    padding: 5px 7px;
  }

  .brandLogo {
    width: 158px;
    max-width: 158px;
    height: 36px;
  }

  .brand {
    min-width: 0;
  }

  .hero {
    min-height: 72svh !important;
  }

  .page-home .hero {
    min-height: 92svh !important;
  }

  .hero .wrap,
  .hero .wrap[style] {
    padding: 124px 0 30px !important;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 13.6vw, 4rem);
    line-height: .95;
  }

  .hero .lead,
  .hero .lead[style] {
    font-size: .94rem;
    line-height: 1.66;
  }

  .heroActions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .heroActions .btn {
    width: 100%;
  }

  .heroTop > .heroPanel {
    display: none;
  }

  .heroStripe {
    margin-top: 24px;
  }

  .heroStripe .heroPanel {
    padding: 15px;
  }

  .heroStripe .heroPanel:nth-child(2) {
    display: none;
  }

  .section {
    padding: 70px 0;
  }

  .grid12 {
    grid-template-columns: 1fr;
  }

  .tileTop {
    height: 270px;
  }

  .photo,
  .split .photo {
    min-height: 360px;
  }

  .founderMedia {
    min-height: 430px;
  }

  .founderCopy {
    padding: 30px 22px 36px;
  }

  .founderCopy .pills {
    display: grid;
  }

  .cardPad,
  .formCard .pad,
  .sideCard .pad {
    padding: 24px 20px;
  }

  .grid2 {
    grid-template-columns: 1fr;
  }

  .page-config .calcNotice {
    padding: 23px 19px;
  }

  .page-config .calcHead {
    padding: 18px;
  }

  .page-config .calcHead .progress {
    order: 3;
    flex-basis: 100%;
  }

  .page-config .calcBody {
    padding: 12px;
  }

  .page-config .stepCard {
    min-height: 0;
    padding: 22px 16px;
  }

  .page-config .choices {
    grid-template-columns: 1fr 1fr;
  }

  .page-config .choice {
    min-height: 130px;
    padding: 10px;
  }

  .calcNav {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .calcNav .btn {
    width: 100%;
  }

  #kundenHinweis {
    min-height: 0;
  }

  #kundenHinweis .infoBlock {
    padding: 28px 18px;
  }

  .footer {
    padding: 56px 0 34px;
  }

  .footerGrid {
    grid-template-columns: 1fr;
  }

  .footerGrid .footerCol:first-child {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}
