@font-face {
  font-family: "Montserrat";
  src: url("assets/montserrat-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/montserrat-800.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/montserrat-900.woff2") format("woff2");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/open-sans-regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Open Sans";
  src: url("assets/open-sans-700.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --mw-red: #e60005;
  --mw-red-dark: #b90004;
  --mw-red-light: #ff4d52;
  --mw-graphite: #191a18;
  --mw-coal: #202222;
  --mw-steel: #5b5d59;
  --mw-zinc: #c8cac5;
  --mw-chalk: #f6f3ed;
  --mw-white: #ffffff;
  --mw-line: rgba(25, 26, 24, 0.16);
  --mw-line-dark: rgba(255, 255, 255, 0.16);
  --display: "Montserrat", sans-serif;
  --body: "Open Sans", sans-serif;
  --container: min(1240px, calc(100vw - 48px));
  --ease: cubic-bezier(.2, .75, .25, 1);
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--mw-chalk);
  color: var(--mw-graphite);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
}



img { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

::selection { background: var(--mw-red); color: var(--mw-white); }

.container { width: var(--container); margin-inline: auto; }
.section { position: relative; padding: clamp(88px, 10vw, 150px) 0; }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 8px;
  left: 8px;
  padding: 12px 18px;
  background: var(--mw-white);
  color: var(--mw-graphite);
  transform: translateY(-150%);
  transition: transform .2s;
}

.skip-link:focus { transform: translateY(0); }

:focus-visible {
  outline: 3px solid var(--mw-red);
  outline-offset: 4px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 22px;
  color: var(--mw-red);
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow span {
  width: 38px;
  height: 5px;
  background: var(--mw-red);
  transform: skewX(-28deg);
}

.eyebrow.light { color: var(--mw-white); }
.eyebrow.light span { background: var(--mw-red); }
.eyebrow.dark { color: var(--mw-steel); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  background: var(--mw-graphite);
  transition: box-shadow .25s var(--ease);
}

.site-header.scrolled { box-shadow: 0 14px 40px rgba(0, 0, 0, .2); }

.draft-status {
  display: grid;
  min-width: 0;
  min-height: 30px;
  place-items: center;
  padding: 5px 16px;
  border-bottom: 1px solid rgba(25, 26, 24, .22);
  background: #eee7de;
  color: var(--mw-graphite);
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .09em;
  line-height: 1.35;
  text-align: center;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.draft-status span { max-width: 100%; }

.utility-bar {
  border-bottom: 1px solid var(--mw-line-dark);
  color: rgba(255, 255, 255, .72);
  font-size: .73rem;
  font-weight: 700;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.utility-inner,
.utility-contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.utility-inner { min-height: 34px; }
.utility-inner p { margin: 0; }
.utility-inner a { color: var(--mw-white); text-decoration: none; }
.utility-inner a:hover { color: var(--mw-red); }

.nav-shell { background: var(--mw-graphite); }

.nav-inner {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand { display: block; width: 190px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }

.main-nav {
  display: flex;
  flex: 1 1 auto;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 1.35vw, 22px);
}

.main-nav > a:not(.nav-cta) {
  position: relative;
  color: rgba(255, 255, 255, .84);
  font-size: clamp(.68rem, .72vw, .76rem);
  font-weight: 700;
  letter-spacing: .035em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.eyebrow:not(.light) { color: var(--mw-red-dark); }

.main-nav > a:not(.nav-cta)::after {
  position: absolute;
  bottom: -9px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--mw-red);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .24s var(--ease);
}

.main-nav > a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav-cta,
.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 0;
  border-radius: 0;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform .2s var(--ease), background .2s, color .2s;
}

.nav-cta {
  min-height: 48px;
  padding: 0 18px;
  background: var(--mw-red);
  color: var(--mw-white);
  white-space: nowrap;
}

.nav-cta:hover,
.button-primary:hover { background: var(--mw-red-dark); transform: translateY(-2px); }

.menu-toggle {
  display: none;
  width: 52px;
  height: 48px;
  padding: 12px;
  border: 1px solid var(--mw-line-dark);
  background: transparent;
  cursor: pointer;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 2px;
  margin: 5px 0;
  background: var(--mw-white);
  transition: transform .2s, opacity .2s;
}

.hero {
  position: relative;
  min-height: 720px;
  padding: clamp(70px, 7vw, 110px) 0 80px;
  background:
    linear-gradient(90deg, transparent 49.9%, rgba(25, 26, 24, .08) 50%, transparent 50.1%),
    linear-gradient(var(--mw-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--mw-line) 1px, transparent 1px),
    var(--mw-chalk);
  background-size: auto, 84px 84px, 84px 84px, auto;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  top: 0;
  right: -120px;
  width: 48vw;
  height: 28px;
  background: var(--mw-red);
  content: "";
  transform: skewX(-42deg);
  transform-origin: right top;
}

.hero-grid {
  display: grid;
  align-items: start;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(44px, 6vw, 72px);
}

/* The enquiry belongs directly below the hero; the remaining content follows in reading order. */
main { display: flex; flex-direction: column; }
.hero { order: 1; }
.contact-early { order: 2; }
.proof-strip { order: 3; }
.statement { order: 4; }
.services { order: 5; }
.process { order: 6; }
.technology { order: 7; }
.company { order: 8; }
.network { order: 9; }

.hero-copy { position: relative; z-index: 2; min-width: 0; max-width: 760px; }

.hero-slogan-art {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: 0 0 38px;
}

.hero h1 {
  max-width: 760px;
  margin: 0;
  color: var(--mw-graphite);
  font-family: var(--display);
  font-size: clamp(3.7rem, 6.9vw, 7.1rem);
  font-weight: 900;
  letter-spacing: -.072em;
  line-height: .86;
  text-transform: uppercase;
}

.hero h1 strong { color: var(--mw-red); font-weight: 900; }

.hero-lead {
  max-width: 690px;
  margin: 38px 0 0;
  color: var(--mw-steel);
  font-size: clamp(1.02rem, 1.3vw, 1.17rem);
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 38px;
}

.button { padding: 0 28px; cursor: pointer; }
.button svg { width: 23px; fill: none; stroke: currentColor; stroke-width: 1.7; }
.button-primary { background: var(--mw-red); color: var(--mw-white); }

.text-link {
  display: grid;
  gap: 2px;
  text-decoration: none;
}

.text-link span {
  color: var(--mw-steel);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.text-link strong { font-family: var(--display); font-size: 1.05rem; }
.text-link:hover strong { color: var(--mw-red); }

.hero-visual {
  min-width: 0;
  width: min(100%, 1000px);
  margin-top: 0;
  padding: 0 0 18px;
}

.hero-visual > picture { display: block; }

.hero-visual > img,
.hero-visual > picture > img {
  position: relative;
  display: block;
  width: 100%;
  max-inline-size: min(100%, 1920px);
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: cover;
  object-position: center;
  filter: saturate(.78) contrast(1.04);
}

.hero-visual::after { display: none; }

.roof-frame {
  position: absolute;
  z-index: 3;
  top: 0;
  right: -18px;
  width: 64%;
  height: 78px;
  border-top: 12px solid var(--mw-red);
  border-right: 12px solid var(--mw-red);
  transform: skewX(-42deg);
  transform-origin: right top;
}

.image-label {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  display: flex;
  width: 210px;
  min-height: 88px;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  background: var(--mw-graphite);
  color: var(--mw-white);
}

.image-label > span {
  color: var(--mw-red);
  font-family: var(--display);
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -.08em;
}

.image-label p {
  margin: 0;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.4;
  text-transform: uppercase;
}

.experience-badge {
  position: absolute;
  z-index: 4;
  right: 0;
  bottom: 0;
  display: grid;
  width: 190px;
  min-height: 130px;
  align-content: center;
  padding: 24px;
  background: var(--mw-red);
  color: var(--mw-white);
}

.experience-badge strong { font-family: var(--display); font-size: 1.55rem; text-transform: uppercase; }
.experience-badge span { font-size: .72rem; font-weight: 700; letter-spacing: .05em; text-transform: uppercase; }

.hero-caption {
  position: static;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--mw-line);
  color: var(--mw-steel);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.hero-caption strong { color: var(--mw-red-dark); font-family: var(--display); font-size: .9rem; }

.hero-index {
  position: absolute;
  bottom: -53px;
  left: -18px;
  color: rgba(25, 26, 24, .045);
  font-family: var(--display);
  font-size: clamp(12rem, 25vw, 25rem);
  font-weight: 900;
  letter-spacing: -.12em;
  line-height: .7;
}

.proof-strip { background: var(--mw-red); color: var(--mw-white); }

.proof-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.proof-grid > div {
  position: relative;
  display: grid;
  min-height: 108px;
  align-content: center;
  padding: 20px clamp(20px, 3vw, 42px);
  border-left: 1px solid rgba(255, 255, 255, .24);
}

.proof-grid > div:last-child { border-right: 1px solid rgba(255, 255, 255, .24); }
.proof-grid strong { font-family: var(--display); font-size: 1rem; text-transform: uppercase; }
.proof-grid span { color: var(--mw-white); font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; }

.statement { background: var(--mw-white); }

.statement-grid {
  display: grid;
  grid-template-columns: 100px minmax(0, 1.15fr) minmax(320px, .75fr);
  gap: clamp(35px, 6vw, 90px);
}

.section-number {
  color: var(--mw-red-dark);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 900;
}

.statement h2,
.section-head h2,
.process h2,
.technology h2,
.company h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.2vw, 5.7rem);
  font-weight: 900;
  letter-spacing: -.065em;
  line-height: .94;
  text-transform: uppercase;
}

.statement-copy { padding-top: 42px; border-top: 1px solid var(--mw-line); }
.statement-copy p { margin: 0 0 22px; color: var(--mw-steel); }

.arrow-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  color: var(--mw-graphite);
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-decoration: none;
  text-transform: uppercase;
}

.arrow-link span { color: var(--mw-red); font-size: 1.25rem; transition: transform .2s; }
.arrow-link:hover span { transform: translate(4px, -4px); }

.services { background: var(--mw-graphite); color: var(--mw-white); }

.services::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 84px 84px;
  content: "";
  pointer-events: none;
}

.section-head {
  position: relative;
  display: grid;
  align-items: end;
  grid-template-columns: 1fr minmax(280px, .52fr);
  gap: 60px;
  margin-bottom: 70px;
}

.section-head > * { min-width: 0; }
.section-head > p { margin: 0 0 8px; color: var(--mw-steel); }
.services .section-head > p { color: rgba(255, 255, 255, .62); }

.service-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--mw-line-dark);
  border-left: 1px solid var(--mw-line-dark);
}

.service-card {
  position: relative;
  min-height: 360px;
  padding: clamp(28px, 3.2vw, 48px);
  border-right: 1px solid var(--mw-line-dark);
  border-bottom: 1px solid var(--mw-line-dark);
  background: rgba(255, 255, 255, .012);
  overflow: hidden;
  transition: background .3s var(--ease), transform .3s var(--ease);
}

.service-card::after {
  position: absolute;
  right: -34px;
  bottom: -84px;
  width: 110px;
  height: 180px;
  background: var(--mw-red);
  content: "";
  opacity: 0;
  transform: rotate(38deg) translateY(40px);
  transition: opacity .3s, transform .3s var(--ease);
}

.service-card:hover { background: rgba(255, 255, 255, .055); transform: translateY(-4px); }
.service-card:hover::after { opacity: 1; transform: rotate(38deg) translateY(0); }
.service-featured { background: var(--mw-red); }
.service-featured::after { background: var(--mw-white); opacity: .12; }

.service-top { display: flex; align-items: flex-start; justify-content: space-between; }
.service-top > span:first-child { color: rgba(255, 255, 255, .45); font-family: var(--display); font-size: .78rem; font-weight: 900; }
.service-top svg { width: 48px; height: 48px; fill: none; stroke: var(--mw-red); stroke-width: 1.6; }
.service-mark { color: rgba(255, 255, 255, .28); font-family: var(--display); font-size: 2.7rem; font-weight: 900; letter-spacing: -.09em; }

.service-card h3 {
  max-width: 330px;
  margin: 82px 0 16px;
  font-family: var(--display);
  font-size: clamp(1.65rem, 2.4vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -.045em;
  line-height: 1.05;
  text-transform: uppercase;
}

.service-card p { max-width: 360px; margin: 0; color: rgba(255, 255, 255, .62); font-size: .94rem; }
.service-featured p { color: rgba(255, 255, 255, .84); }
.service-card a { display: inline-flex; gap: 12px; margin-top: 26px; font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-decoration: none; text-transform: uppercase; }
.service-card-clickable { cursor: pointer; }
.service-card-clickable .service-card-link::before { position: absolute; z-index: 3; inset: 0; content: ""; }
.service-card-clickable .service-card-link span { position: relative; z-index: 4; }
.service-card-clickable:focus-within { outline: 3px solid var(--mw-white); outline-offset: -7px; }

.process { background: var(--mw-coal); color: var(--mw-white); overflow: hidden; }

.process-roof {
  position: absolute;
  top: -120px;
  right: -18vw;
  width: 64vw;
  height: 260px;
  border-bottom: 26px solid rgba(230, 0, 5, .34);
  transform: rotate(-12deg);
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(460px, 1.2fr);
  gap: clamp(60px, 9vw, 140px);
}

.process-intro { position: sticky; top: 160px; align-self: start; }
.process-intro > p:not(.eyebrow) { max-width: 480px; margin: 30px 0; color: rgba(255, 255, 255, .62); }

.process-list { margin: 0; padding: 0; list-style: none; counter-reset: item; }

.process-list li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 28px;
  padding: 44px 0;
  border-top: 1px solid var(--mw-line-dark);
}

.process-list li:last-child { border-bottom: 1px solid var(--mw-line-dark); }
.process-list > li > span { color: var(--mw-red-light); font-family: var(--display); font-size: 1rem; font-weight: 900; }
.process-list h3 { margin: 0 0 10px; font-family: var(--display); font-size: 1.8rem; font-weight: 800; letter-spacing: -.04em; text-transform: uppercase; }
.process-list p { max-width: 520px; margin: 0; color: rgba(255, 255, 255, .56); }

.technology { background: var(--mw-chalk); }

.technology-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(0, 900px);
  justify-content: center;
}

.technology-copy,
.feature-list,
.feature-list li { min-width: 0; }

.technology-copy > p:not(.eyebrow) { margin: 28px 0 36px; color: var(--mw-steel); }

.feature-list { margin: 0; padding: 0; border-top: 1px solid var(--mw-line); list-style: none; }

.feature-list li {
  display: grid;
  align-items: center;
  grid-template-columns: 44px minmax(0, 1fr);
  padding: 18px 0;
  border-bottom: 1px solid var(--mw-line);
}

.feature-list span { grid-row: 1 / 3; color: var(--mw-red-dark); font-family: var(--display); font-size: .75rem; font-weight: 900; }
.feature-list strong { min-width: 0; font-family: var(--display); font-size: 1.05rem; overflow-wrap: anywhere; text-transform: uppercase; }
.feature-list small { min-width: 0; color: var(--mw-steel); overflow-wrap: anywhere; }

.company { background: var(--mw-white); }

.company::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 28vw;
  height: 42px;
  background: var(--mw-red);
  content: "";
  clip-path: polygon(12% 0, 100% 0, 100% 100%, 0 100%);
}

.company-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(320px, .9fr) minmax(430px, 1.1fr);
  gap: clamp(70px, 11vw, 170px);
}

.company-brand {
  position: relative;
  display: grid;
  min-height: 440px;
  place-items: center;
  padding: clamp(30px, 5vw, 70px);
  background:
    linear-gradient(rgba(25, 26, 24, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(25, 26, 24, .05) 1px, transparent 1px),
    var(--mw-chalk);
  background-size: 42px 42px;
}

.company-brand::before,
.company-brand::after {
  position: absolute;
  background: var(--mw-red);
  content: "";
}

.company-brand::before { top: -12px; left: 10%; width: 56%; height: 12px; transform: skewX(-38deg); }
.company-brand::after { right: -12px; bottom: 12%; width: 12px; height: 44%; transform: skewY(-38deg); }
.company-brand img { width: 100%; height: auto; }
.company-copy > p:not(.eyebrow) { max-width: 650px; margin: 26px 0 0; color: var(--mw-steel); }

.signature {
  display: grid;
  gap: 3px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--mw-line);
}

.signature strong { font-family: var(--display); font-size: 1.15rem; text-transform: uppercase; }
.signature span { color: var(--mw-steel); font-size: .78rem; letter-spacing: .05em; text-transform: uppercase; }

.network { background: var(--mw-chalk); }

.network-grid {
  display: grid;
  align-items: center;
  grid-template-columns: minmax(280px, .7fr) minmax(420px, 1fr);
  gap: clamp(55px, 9vw, 130px);
}

.network-badge {
  display: grid;
  min-height: 310px;
  place-items: center;
  padding: clamp(24px, 4vw, 58px);
  background: var(--mw-graphite);
  box-shadow: 18px 18px 0 var(--mw-red);
}

.network-badge img {
  display: block;
  width: min(100%, 420px);
  height: auto;
  object-fit: contain;
}
.network-badge picture { display: block; width: min(100%, 420px); }
.network-badge picture img { width: 100%; }

.network-copy > p:not(.eyebrow) { max-width: 650px; margin: 28px 0 0; color: var(--mw-steel); }
.network-copy > .arrow-link { display: flex; width: fit-content; }
.network-innung-link { margin-top: 18px; }

.network-contact-card {
  display: grid;
  align-items: center;
  grid-template-columns: 120px 1fr;
  gap: 24px;
  margin-top: 34px;
  padding-top: 24px;
  border-top: 1px solid var(--mw-line);
}

.network-contact-card img {
  display: block;
  width: 120px;
  height: 96px;
  object-fit: contain;
  background: var(--mw-white);
}
.network-contact-card picture { display: block; width: 120px; }
.network-contact-card picture img { width: 100%; }

.network-contact-card h3 { margin: 5px 0 0; font-family: var(--display); font-size: 1.05rem; text-transform: uppercase; }
.network-contact-label { margin: 0; color: var(--mw-steel); font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.network-contact-card .arrow-link { margin-top: 12px; }

.contact { background: var(--mw-red); color: var(--mw-white); overflow: hidden; }

.contact-mark {
  position: absolute;
  top: 50%;
  left: -5vw;
  color: rgba(255, 255, 255, .075);
  font-family: var(--display);
  font-size: 28vw;
  font-weight: 900;
  letter-spacing: -.12em;
  line-height: 1;
  transform: translateY(-50%);
}

.contact-grid {
  position: relative;
  display: grid;
  align-items: start;
  grid-template-columns: minmax(320px, .8fr) minmax(470px, 1fr);
  gap: clamp(60px, 9vw, 140px);
}

.contact-copy > p:not(.eyebrow) { max-width: 520px; margin: 28px 0; color: var(--mw-white); }

.contact-phone {
  display: grid;
  gap: 4px;
  margin-top: 42px;
  color: var(--mw-white);
  text-decoration: none;
}

.contact-phone span { font-size: .72rem; font-weight: 700; letter-spacing: .13em; text-transform: uppercase; }
.contact-phone strong { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.8rem); letter-spacing: -.04em; }

.check-form {
  display: grid;
  gap: 22px;
  padding: clamp(28px, 4vw, 56px);
  background: var(--mw-graphite);
  box-shadow: 26px 26px 0 rgba(25, 26, 24, .16);
}

.form-row { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; }

.check-form label {
  display: grid;
  gap: 8px;
  color: rgba(255, 255, 255, .72);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .09em;
  text-transform: uppercase;
}

.check-form input,
.check-form select,
.check-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  border-radius: 0;
  background: transparent;
  color: var(--mw-white);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.5;
  text-transform: none;
  transition: border-color .2s;
}

.contact-form-column { min-width: 0; }
.form-required-note { margin: 0 0 12px; color: var(--mw-white); font-size: .88rem; font-weight: 700; }
.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}
.form-optional { color: rgba(255, 255, 255, .52); font-weight: 500; letter-spacing: 0; text-transform: none; }

.check-form input,
.check-form select { min-height: 47px; }
.check-form textarea { resize: vertical; }
.check-form select {
  appearance: auto;
  color-scheme: dark;
  cursor: pointer;
}
.check-form select option {
  background: var(--mw-graphite);
  color: var(--mw-white);
}
.check-form input:focus,
.check-form select:focus,
.check-form textarea:focus { border-color: var(--mw-red); }
.check-form input:focus-visible,
.check-form select:focus-visible,
.check-form textarea:focus-visible {
  outline: 3px solid var(--mw-red-light);
  outline-offset: 4px;
}
.check-form ::placeholder { color: #c7c7c7; opacity: 1; }

.button-light {
  justify-self: start;
  margin-top: 6px;
  background: var(--mw-white);
  color: var(--mw-graphite);
}

.button-light:hover { background: var(--mw-chalk); transform: translateY(-2px); }
.button-light:disabled { cursor: wait; opacity: .65; transform: none; }
.form-note { margin: 0; color: rgba(255, 255, 255, .72); font-size: .72rem; line-height: 1.55; }
.form-note a { color: var(--mw-white); font-weight: 700; }
.form-status { min-height: 1.4em; margin: -10px 0 0; color: var(--mw-white); font-size: .8rem; }
.form-status[data-state="success"] { color: #b8f6c8; }
.form-status[data-state="error"] { color: #ffd2d3; }

.site-footer { padding: 80px 0 24px; background: var(--mw-graphite); color: var(--mw-white); }

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: clamp(35px, 6vw, 80px);
  padding-bottom: 70px;
}

.footer-brand img { width: 230px; height: auto; }
.footer-brand p { max-width: 300px; color: rgba(255, 255, 255, .5); }
.footer-brand p strong { color: rgba(255, 255, 255, .84); }
.site-footer h2 { margin: 0 0 18px; color: rgba(255, 255, 255, .45); font-family: var(--body); font-size: .7rem; letter-spacing: .13em; text-transform: uppercase; }
.site-footer address { margin-bottom: 14px; color: rgba(255, 255, 255, .64); font-style: normal; }
.site-footer div > a:not(.brand) { display: block; width: fit-content; margin: 8px 0; color: rgba(255, 255, 255, .72); text-decoration: none; }
.site-footer div > a:hover { color: var(--mw-red); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 22px;
  border-top: 1px solid var(--mw-line-dark);
  color: rgba(255, 255, 255, .44);
  font-size: .73rem;
}

.footer-bottom p { margin: 0; }
.mobile-actions { display: none; }

/* Rechtliche Entwurfsseiten */
.legal-main { background: var(--mw-chalk); }
.legal-container { max-width: 920px; }
.legal-hero { padding-block: clamp(90px, 12vw, 150px); background: var(--mw-graphite); color: var(--mw-white); }
.legal-hero h1 { margin: 0; font-family: var(--display); font-size: clamp(3.5rem, 9vw, 7.2rem); letter-spacing: -.075em; line-height: .88; text-transform: uppercase; }
.legal-hero h1 strong { color: var(--mw-red); }
.draft-notice { margin-top: 42px; padding: 24px 28px; border-left: 5px solid var(--mw-red); background: rgba(255, 255, 255, .08); }
.draft-notice strong { font-family: var(--display); font-size: 1.05rem; letter-spacing: .02em; text-transform: uppercase; }
.draft-notice p { max-width: 760px; margin: 10px 0 0; color: rgba(255, 255, 255, .72); }
.legal-content { padding-block: clamp(70px, 10vw, 120px); }
.legal-copy { display: grid; gap: 22px; }
.legal-copy article { padding: clamp(24px, 5vw, 42px); background: var(--mw-white); box-shadow: 12px 12px 0 rgba(25, 26, 24, .06); }
.legal-copy h2 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(1.45rem, 4vw, 2.1rem); letter-spacing: -.03em; text-transform: uppercase; }
.legal-copy p { margin: 0 0 14px; color: var(--mw-steel); }
.legal-copy p:last-child { margin-bottom: 0; }
.legal-copy a { color: var(--mw-red-dark); text-underline-offset: 3px; }
.draft-inline { padding: 16px 18px; border-left: 3px solid var(--mw-red); background: var(--mw-chalk); }

/* Kran- und Hebebühnenverleih */
.rental-hero { background: var(--mw-graphite); color: var(--mw-white); overflow: hidden; }
.rental-hero-grid { display: grid; grid-template-columns: minmax(0, 1fr); align-items: center; min-height: 480px; }
.rental-hero-grid > *, .rental-card-grid, .rental-card { min-width: 0; }
.rental-hero h1 { max-width: 800px; margin: 0; font-family: var(--display); font-size: clamp(3.5rem, 8vw, 8rem); letter-spacing: -.08em; line-height: .86; text-transform: uppercase; }
.rental-hero h1 strong { color: var(--mw-red); }
.rental-intro { max-width: 640px; margin: 34px 0; color: rgba(255,255,255,.7); font-size: 1.12rem; }
.rental-hero .eyebrow { color: rgba(255,255,255,.72); }
.rental-hero-mark { display: none; }
.rental-hero-mark span { margin-left: 82px; color: var(--mw-white); font-size: 2rem; letter-spacing: 0; }
.rental-card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.rental-card { position: relative; min-height: 480px; padding: 34px; border-top: 4px solid var(--mw-graphite); background: var(--mw-white); box-shadow: 16px 16px 0 rgba(25,26,24,.1); }
.rental-card-featured { border-top-color: var(--mw-red); }
.rental-card-number { position: absolute; top: 22px; right: 26px; color: var(--mw-red); font-family: var(--display); font-size: 2.3rem; font-weight: 900; }
.rental-mode { display: inline-flex; align-items: center; min-height: 34px; margin: 0; padding: 8px 12px; color: var(--mw-white); font-size: .68rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; }
.rental-mode::before { content: ''; width: 7px; height: 7px; margin-right: 8px; border-radius: 50%; background: currentColor; }
.rental-mode-self { background: var(--mw-graphite); }
.rental-mode-driver { background: var(--mw-red); }
.rental-card h3 { margin: 22px 0 14px; font-family: var(--display); font-size: clamp(1.8rem, 2.7vw, 2.8rem); letter-spacing: -.06em; line-height: .95; }
.rental-card h3 strong { display: block; margin-top: 6px; color: var(--mw-red); font-size: .48em; letter-spacing: .01em; line-height: 1.05; text-transform: uppercase; }
.rental-card p { color: var(--mw-steel); }
.rental-card ul { margin: 24px 0 28px; padding-left: 18px; color: var(--mw-steel); }
.rental-card li + li { margin-top: 7px; }
.rental-card .arrow-link { display: inline-flex; margin-top: 18px; }
.rental-specs { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 26px 0 12px; }
.rental-specs div { padding-top: 9px; border-top: 1px solid var(--mw-line); }
.rental-specs dt { color: var(--mw-steel); font-size: .65rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.rental-specs dd { margin: 3px 0 0; color: var(--mw-graphite); font-family: var(--display); font-size: 1.45rem; font-weight: 800; }
.rental-footnote { font-size: .72rem; line-height: 1.45; }
.rental-gallery { background: var(--mw-white); }
.rental-gallery-dark { background: var(--mw-graphite); color: var(--mw-white); }
.rental-gallery-dark .section-head { color: var(--mw-white); }
.rental-gallery-dark .section-head p { color: rgba(255,255,255,.72); }
.rental-gallery-dark .rental-photo figcaption { background: rgba(25,26,24,.88); }
.rental-gallery .section-head strong { color: var(--mw-red); }
.rental-photo-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; gap: 18px; }
.rental-photo { position: relative; min-height: 320px; margin: 0; overflow: hidden; background: var(--mw-chalk); }
.rental-photo-wide { min-height: 460px; }
.rental-photo img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.rental-photo picture { display: block; width: 100%; height: 100%; }
.rental-photo:hover img { transform: scale(1.035); }
.rental-photo figcaption { position: absolute; right: 14px; bottom: 14px; left: 14px; padding: 11px 13px; background: rgba(25,26,24,.82); color: var(--mw-white); font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.rental-photo-grid:not(.rental-photo-grid-six) .rental-photo:nth-child(4) { grid-column: 1 / -1; min-height: 380px; }
.rental-diagrams { background: var(--mw-red); color: var(--mw-white); }
.rental-diagrams .section-head { color: var(--mw-white); }
.rental-diagrams .section-head p { color: var(--mw-white); }
.diagram-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.diagram-card { padding: 26px; background: var(--mw-white); color: var(--mw-graphite); }
.diagram-card h3 { margin: 0; font-family: var(--display); font-size: 2rem; letter-spacing: -.05em; }
.diagram-card p { color: var(--mw-steel); }
.diagram-download-note {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2px 16px;
  margin: 24px 0;
  padding: 22px;
  border-left: 5px solid var(--mw-red);
  background: var(--mw-chalk);
}
.diagram-download-note span { grid-row: 1 / 3; align-self: center; color: var(--mw-red); font-family: var(--display); font-size: 1.55rem; font-weight: 900; }
.diagram-download-note strong { font-family: var(--display); font-size: 1.05rem; text-transform: uppercase; }
.diagram-download-note small { color: var(--mw-steel); }
.rental-process { background: var(--mw-chalk); }
.rental-process h2 { margin: 0 0 48px; font-family: var(--display); font-size: clamp(3rem, 6vw, 6rem); letter-spacing: -.08em; line-height: .86; text-transform: uppercase; }
.rental-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px; margin-bottom: 46px; }
.rental-steps > div { padding-top: 18px; border-top: 2px solid var(--mw-red); }
.rental-steps strong { color: var(--mw-red); font-family: var(--display); font-size: 1.8rem; }
.rental-steps h3 { margin: 12px 0 8px; font-family: var(--display); font-size: 1.45rem; }
.rental-steps p { margin: 0; color: var(--mw-steel); }

/* Mehr Wohnraumlösung */
.living-hero { padding: 76px 0 84px; overflow: hidden; background: var(--mw-chalk); }
.living-hero-grid { display: grid; grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr); gap: clamp(42px, 5vw, 76px); align-items: center; }
.living-hero-copy { min-width: 0; }
.living-hero h1 { width: 100%; max-width: 670px; margin: 0; font-family: var(--display); font-size: clamp(3.6rem, 5.3vw, 6.2rem); letter-spacing: -.07em; line-height: .88; text-transform: uppercase; }
.living-hero h1 strong, .living-solutions h2 strong, .living-expertise h2 strong, .living-process h2 strong, .living-cta h2 strong { color: var(--mw-red); }
.living-lead { max-width: 630px; margin: 32px 0; color: var(--mw-steel); font-size: 1.08rem; }
.living-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.living-hero-visual { position: relative; min-width: 0; margin: 0; }
.living-hero-visual::before { content: ''; position: absolute; z-index: 0; top: -26px; right: -34px; width: 72%; height: 72%; background: var(--mw-red); }
.living-hero-visual picture { display: block; }
.living-hero-visual img { position: relative; z-index: 1; display: block; width: 100%; height: clamp(300px, 31vw, 440px); object-fit: cover; box-shadow: 22px 22px 0 rgba(25,26,24,.12); }
.living-hero-visual figcaption { position: relative; z-index: 2; width: min(82%, 470px); margin-left: auto; padding: 18px 22px; background: var(--mw-graphite); color: var(--mw-white); }
.living-hero-visual figcaption strong, .living-hero-visual figcaption span { display: block; }
.living-hero-visual figcaption strong { font-family: var(--display); font-size: 1.05rem; letter-spacing: .02em; text-transform: uppercase; }
.living-hero-visual figcaption span { margin-top: 3px; color: rgba(255,255,255,.66); font-size: .76rem; }
.living-promise { background: var(--mw-graphite); color: var(--mw-white); }
.living-promise-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.living-promise p { display: flex; align-items: center; min-height: 104px; margin: 0; padding: 22px 30px; border-right: 1px solid var(--mw-line-dark); font-family: var(--display); font-size: 1.05rem; font-weight: 800; letter-spacing: .01em; text-transform: uppercase; }
.living-promise p:first-child { border-left: 1px solid var(--mw-line-dark); }
.living-promise span { margin-right: 16px; color: var(--mw-red); font-size: 1.45rem; }
.living-solutions { background: var(--mw-white); }
.living-solutions .section-head strong { color: var(--mw-red); }
.living-solution-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.living-solution-card { position: relative; overflow: hidden; border-top: 4px solid var(--mw-graphite); background: var(--mw-chalk); transition: transform .28s var(--ease), box-shadow .28s var(--ease); }
.living-solution-card:nth-child(2), .living-solution-card:nth-child(3) { border-top-color: var(--mw-red); }
.living-solution-card:hover { transform: translateY(-5px); box-shadow: 14px 14px 0 rgba(25,26,24,.1); }
.living-solution-image { margin: 0; background: var(--mw-graphite); }
.living-solution-image picture { display: block; }
.living-solution-image img { display: block; width: 100%; height: auto; aspect-ratio: 3 / 2; object-fit: cover; transition: transform .55s var(--ease); }
.living-solution-card:hover .living-solution-image img { transform: scale(1.025); }
.living-solution-copy { position: relative; min-height: 245px; padding: 34px 38px 38px; }
.living-solution-copy > span { position: absolute; top: 28px; right: 32px; color: var(--mw-red); font-family: var(--display); font-size: 2rem; font-weight: 900; }
.living-solution-card h3 { max-width: 75%; margin: 0 0 18px; font-family: var(--display); font-size: clamp(2rem, 3vw, 3.25rem); letter-spacing: -.06em; line-height: .94; }
.living-solution-card p { max-width: 590px; margin: 0; color: var(--mw-steel); }
.living-expertise { background: var(--mw-graphite); color: var(--mw-white); overflow: hidden; }
.living-expertise-grid { display: grid; grid-template-columns: .72fr 1.28fr; gap: clamp(50px, 8vw, 130px); align-items: center; }
.living-brand-panel { position: relative; display: grid; place-items: center; gap: 34px; min-height: 430px; padding: clamp(34px, 5vw, 62px); border: 2px solid rgba(255,255,255,.16); background: var(--mw-white); }
.living-brand-logo { display: block; width: min(100%, 420px); height: auto; }
.living-brand-slogan { display: block; width: min(100%, 470px); height: auto; }
.living-brand-panel span { position: absolute; right: -18px; bottom: 24px; padding: 10px 16px; background: var(--mw-red); color: var(--mw-white); font-size: .72rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.living-expertise h2, .living-process h2, .living-cta h2 { margin: 0 0 32px; font-family: var(--display); font-size: clamp(3rem, 6vw, 6rem); letter-spacing: -.08em; line-height: .87; text-transform: uppercase; }
.living-expertise p:not(.eyebrow) { max-width: 680px; color: rgba(255,255,255,.7); font-size: 1.03rem; }
.living-expertise ul { display: grid; grid-template-columns: 1fr 1fr; gap: 12px 28px; margin: 30px 0 0; padding: 0; list-style: none; }
.living-expertise li { position: relative; padding: 13px 0 13px 25px; border-top: 1px solid var(--mw-line-dark); color: rgba(255,255,255,.82); }
.living-expertise li::before { content: '↗'; position: absolute; left: 0; color: var(--mw-red); }
.living-process { background: var(--mw-chalk); }
.living-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 54px; }
.living-steps article { padding: 26px 24px 30px; border-top: 3px solid var(--mw-red); background: var(--mw-white); }
.living-steps strong { color: var(--mw-red); font-family: var(--display); font-size: 1.75rem; }
.living-steps h3 { margin: 38px 0 10px; font-family: var(--display); font-size: 1.45rem; }
.living-steps p { margin: 0; color: var(--mw-steel); font-size: .9rem; }
.living-cta { background: var(--mw-red); color: var(--mw-white); }
.living-cta-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(50px, 9vw, 140px); align-items: end; }
.living-cta h2 { margin-bottom: 0; }
.living-cta h2 strong { color: var(--mw-graphite); }
.living-cta-grid > div:last-child p { margin: 0 0 28px; color: var(--mw-white); font-size: 1.05rem; }
.roof-check-page .living-hero-visual::before { background: var(--mw-graphite); }
.roof-check-page .living-hero-visual img { object-position: center; }
.roof-check-page .living-steps article:nth-child(even) { border-top-color: var(--mw-graphite); }

/* Gemeinsames Gerüst der Leistungsunterseiten */
.service-detail-page { background: var(--mw-chalk); }
.service-detail-page main { overflow: hidden; }
.service-detail-hero { padding: clamp(64px, 8vw, 112px) 0 clamp(76px, 9vw, 126px); background: var(--mw-graphite); color: var(--mw-white); }
.service-detail-grid { display: grid; grid-template-columns: minmax(0, .92fr) minmax(420px, 1.08fr); gap: clamp(42px, 7vw, 100px); align-items: center; }
.service-detail-copy, .service-detail-visual { min-width: 0; }
.service-detail-copy h1 { max-width: 760px; margin: 0; font-family: var(--display); font-size: clamp(3.25rem, 6.6vw, 7rem); letter-spacing: -.075em; line-height: .87; text-transform: uppercase; overflow-wrap: anywhere; }
.service-detail-copy h1 strong { color: var(--mw-red); }
.service-detail-lead { max-width: 650px; margin: 30px 0 34px; color: rgba(255,255,255,.76); font-size: 1.05rem; }
.service-detail-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; }
.service-detail-visual { position: relative; margin: 0; }
.service-detail-visual::before { position: absolute; z-index: 0; top: -22px; right: -26px; width: 62%; height: 74%; background: var(--mw-red); content: ''; }
.service-detail-visual picture { position: relative; z-index: 1; display: block; }
.service-detail-visual img { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; object-fit: cover; box-shadow: 20px 20px 0 rgba(0,0,0,.22); }
.service-detail-visual figcaption { position: relative; z-index: 2; width: min(86%, 520px); margin-left: auto; padding: 17px 21px; background: var(--mw-white); color: var(--mw-graphite); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
.service-detail-scope { background: var(--mw-white); }
.service-detail-scope .section-head strong, .service-detail-process h2 strong { color: var(--mw-red); }
.service-detail-cards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; }
.service-detail-card { min-width: 0; padding: 30px 28px 34px; border-top: 4px solid var(--mw-red); background: var(--mw-chalk); }
.service-detail-card:nth-child(even) { border-top-color: var(--mw-graphite); }
.service-detail-card span { color: var(--mw-red-dark); font-family: var(--display); font-size: 1.45rem; font-weight: 900; }
.service-detail-card h3 { margin: 28px 0 12px; font-family: var(--display); font-size: clamp(1.35rem, 2vw, 1.85rem); letter-spacing: -.035em; line-height: 1; overflow-wrap: anywhere; }
.service-detail-card p { margin: 0; color: var(--mw-steel); font-size: .92rem; }
.service-detail-gallery { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 20px; background: var(--mw-graphite); }
.service-detail-gallery figure { min-width: 0; margin: 0; overflow: hidden; background: var(--mw-coal); }
.service-detail-gallery figure:only-child { grid-column: 1 / -1; }
.service-detail-gallery picture { display: block; height: 100%; }
.service-detail-gallery img { display: block; width: 100%; height: auto; min-height: 340px; aspect-ratio: 3 / 2; object-fit: cover; }
.service-detail-gallery figcaption { padding: 16px 20px; color: rgba(255,255,255,.78); font-size: .78rem; }
.service-detail-process { background: var(--mw-chalk); }
.service-detail-process h2 { margin: 0; font-family: var(--display); font-size: clamp(3rem, 6vw, 6rem); letter-spacing: -.075em; line-height: .88; text-transform: uppercase; }
.service-detail-steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; margin-top: 48px; }
.service-detail-step { min-width: 0; padding: 26px 24px 30px; border-top: 3px solid var(--mw-red); background: var(--mw-white); }
.service-detail-step strong { color: var(--mw-red-dark); font-family: var(--display); font-size: 1.7rem; }
.service-detail-step h3 { margin: 34px 0 10px; font-family: var(--display); font-size: 1.32rem; line-height: 1.05; overflow-wrap: anywhere; }
.service-detail-step p { margin: 0; color: var(--mw-steel); font-size: .88rem; }
.service-detail-cta { background: var(--mw-red); color: var(--mw-white); }
.service-detail-cta-grid { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr); gap: clamp(42px, 8vw, 120px); align-items: end; }
.service-detail-cta h2 { margin: 0; font-family: var(--display); font-size: clamp(3rem, 6vw, 6rem); letter-spacing: -.075em; line-height: .88; text-transform: uppercase; overflow-wrap: anywhere; }
.service-detail-cta p:not(.eyebrow) { margin: 0 0 26px; color: var(--mw-white); }
.service-detail-cta .button-light:focus-visible { outline: 3px solid var(--mw-white); outline-offset: 4px; }

/* Photovoltaik: Die Anlage steht vor Partnern und Netzwerk. */
.photovoltaic-page .service-detail-copy h1 { font-size: clamp(2.8rem, 4.9vw, 5.1rem); overflow-wrap: normal; hyphens: manual; }
.pv-benefit-section { position: relative; }
.pv-benefit-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.pv-benefit-card { min-width: 0; padding: clamp(28px, 3vw, 42px) clamp(24px, 2.6vw, 34px); border-top: 5px solid var(--mw-red); background: var(--mw-graphite); color: var(--mw-white); }
.pv-benefit-card:nth-child(even) { background: var(--mw-chalk); color: var(--mw-graphite); }
.pv-benefit-card > span { color: var(--mw-red); font-family: var(--display); font-size: 2.2rem; font-weight: 900; }
.pv-benefit-card h3 { margin: 34px 0 14px; font-family: var(--display); font-size: clamp(1.35rem, 1.8vw, 1.75rem); letter-spacing: -.04em; line-height: 1; overflow-wrap: anywhere; }
.pv-benefit-card p { margin: 0; color: rgba(255,255,255,.76); font-size: .9rem; }
.pv-benefit-card:nth-child(even) p { color: var(--mw-steel); }
.pv-coordinated-process .service-detail-step { display: flex; flex-direction: column; }
.pv-coordinated-process .service-detail-step > strong { display: block; }
.pv-process-owner { align-self: flex-start; margin-top: 22px; padding: 7px 9px; background: var(--mw-graphite); color: var(--mw-white); font-size: .62rem; font-weight: 800; letter-spacing: .07em; line-height: 1.35; text-transform: uppercase; }
.pv-process-owner--roof { background: var(--mw-red-dark); }
.pv-process-owner--both { background: var(--mw-graphite); }
.pv-process-owner--electrical { background: var(--mw-white); color: var(--mw-graphite); outline: 2px solid var(--mw-graphite); outline-offset: -2px; }
.pv-coordinated-process .service-detail-step h3 { margin-top: 24px; }
.pv-partner-section { background: var(--mw-graphite); color: var(--mw-white); }
.pv-partner-card { display: grid; grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr); gap: clamp(38px, 7vw, 96px); padding: clamp(36px, 5vw, 72px); background: var(--mw-white); color: var(--mw-graphite); box-shadow: 18px 18px 0 var(--mw-red); }
.pv-partner-card > div { min-width: 0; }
.pv-partner-brand { display: flex; width: min(100%, 282px); max-width: 282px; align-items: center; justify-content: center; margin: 0 0 32px; padding: 14px 16px; border: 1px solid var(--mw-line); background: var(--mw-white); box-shadow: 8px 8px 0 var(--mw-chalk); text-decoration: none; transition: border-color .2s, transform .2s var(--ease); }
.pv-partner-brand:hover { border-color: var(--mw-red); transform: translateY(-2px); }
.pv-partner-brand img { width: 100%; max-width: 250px; height: auto; aspect-ratio: 250 / 121; object-fit: contain; }
.pv-partner-brand:focus-visible { outline: 3px solid var(--mw-red); outline-offset: 4px; }
.pv-partner-kicker { margin: 0 0 20px; color: var(--mw-red-dark); font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.pv-partner-card h2 { margin: 0 0 28px; font-family: var(--display); font-size: clamp(2.55rem, 5vw, 5rem); letter-spacing: -.07em; line-height: .9; text-transform: uppercase; overflow-wrap: anywhere; }
.pv-partner-card h3 { margin: 0 0 18px; font-family: var(--display); font-size: clamp(1.45rem, 2.5vw, 2.25rem); letter-spacing: -.045em; line-height: 1; text-transform: uppercase; overflow-wrap: anywhere; }
.pv-partner-card p:not(.pv-partner-kicker) { margin: 0; color: var(--mw-steel); }
.pv-partner-details { padding-top: 8px; border-top: 4px solid var(--mw-red); }
.pv-partner-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 22px; margin-top: 32px; }
.pv-partner-actions .text-link { font-size: .78rem; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.pv-partner-card a:focus-visible { outline: 3px solid var(--mw-red); outline-offset: 4px; }
.pv-network { background: var(--mw-graphite); color: var(--mw-white); }
.pv-network--supporting { padding-block: clamp(64px, 7vw, 96px); background: var(--mw-coal); }
.pv-network-grid { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: clamp(48px, 8vw, 112px); align-items: center; }
.pv-network-media, .pv-network-copy { min-width: 0; }
.pv-network-media { position: relative; display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(120px, .65fr); gap: 14px; align-items: end; padding: 0 18px 18px 0; }
.pv-network-media::before { position: absolute; right: 0; bottom: 0; width: 74%; height: 64%; background: var(--mw-red); content: ''; }
.pv-network-figure { position: relative; z-index: 1; min-width: 0; margin: 0; background: var(--mw-coal); }
.pv-network-figure picture { display: block; }
.pv-network-figure img { width: 100%; height: auto; }
.pv-network-figure--team { align-self: start; }
.pv-network-figure--work { margin-bottom: -18px; }
.pv-network-figure figcaption { padding: 13px 15px; color: rgba(255,255,255,.78); font-size: .7rem; line-height: 1.45; }
.pv-network-copy h2 { margin: 0; font-family: var(--display); font-size: clamp(2.5rem, 4.5vw, 4.8rem); letter-spacing: -.075em; line-height: .88; text-transform: uppercase; overflow-wrap: anywhere; }
.pv-network-copy h2 strong { color: var(--mw-red); }
.pv-network-copy > p:not(.eyebrow) { max-width: 650px; margin: 30px 0 32px; color: rgba(255,255,255,.76); }

@media (max-width: 900px) {
  .rental-hero-grid { grid-template-columns: 1fr; }
  .rental-hero-mark { width: 150px; height: 150px; font-size: 5rem; }
  .rental-card-grid, .diagram-grid, .rental-steps, .rental-photo-grid { grid-template-columns: 1fr; }
  .rental-card { min-height: auto; }
  .rental-photo, .rental-photo-wide { min-height: 320px; }
  .living-hero-grid, .living-expertise-grid, .living-cta-grid { grid-template-columns: 1fr; }
  .living-hero-grid { gap: 70px; }
  .living-promise-grid { grid-template-columns: 1fr; }
  .living-promise p, .living-promise p:first-child { border-right: 1px solid var(--mw-line-dark); border-bottom: 1px solid var(--mw-line-dark); border-left: 1px solid var(--mw-line-dark); }
  .living-steps { grid-template-columns: repeat(2, 1fr); }
  .living-solution-copy { padding-top: 96px; }
  .living-solution-card h3 { max-width: 100%; hyphens: auto; overflow-wrap: anywhere; }
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-detail-cta-grid { grid-template-columns: 1fr; }
  .service-detail-grid { gap: 64px; }
  .service-detail-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-detail-steps { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .pv-benefit-grid, .pv-partner-card, .pv-network-grid { grid-template-columns: 1fr; }
  .pv-benefit-grid { gap: 16px; }
  .pv-network-media { max-width: 720px; }
}

.reveal {
  opacity: 1;
  transform: none;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .72s var(--ease), transform .72s var(--ease);
}

.js .reveal-delay { transition-delay: .13s; }
.js .reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .001ms !important; animation-duration: .001ms !important; }
  .js .reveal { opacity: 1; transform: none; }
}

@media (max-width: 1080px) {
  :root { --container: min(100% - 40px, 960px); }
  body.menu-open { overflow: hidden; }
  .utility-contact span { display: none; }
  .menu-toggle { display: block; }
  .main-nav {
    position: fixed;
    inset: 146px 0 0;
    display: grid;
    align-items: stretch;
    justify-items: stretch;
    grid-template-columns: minmax(0, 1fr);
    overflow-x: hidden;
    align-content: start;
    gap: 0;
    padding: 34px max(24px, calc((100vw - 960px) / 2));
    background: var(--mw-graphite);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-18px);
    transition: opacity .22s, transform .22s;
  }
  .main-nav.open { opacity: 1; pointer-events: auto; transform: translateY(0); }
  .main-nav > a:not(.nav-cta) { padding: 18px 0; border-bottom: 1px solid var(--mw-line-dark); font-family: var(--display); font-size: 1.5rem; }
  .nav-cta { margin-top: 28px; }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(4) { transform: translateY(-7px) rotate(-45deg); }
  .hero-grid { grid-template-columns: 1fr; row-gap: clamp(32px, 5vw, 48px); }
  .hero-copy { max-width: 820px; }
  .hero-visual { margin-left: 0; }
  .proof-grid { grid-template-columns: repeat(2, 1fr); }
  .proof-grid > div { border-bottom: 1px solid rgba(255,255,255,.24); }
  .statement-grid { grid-template-columns: 70px 1fr; }
  .statement-copy { grid-column: 2; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr; }
  .process-intro { position: static; }
  .technology-grid, .company-grid, .network-grid { grid-template-columns: minmax(0, 1fr); }
  .company-brand { min-height: 360px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-copy { max-width: 760px; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; }
  .footer-grid > div:last-child { grid-column: 2; }
}

@media (max-width: 720px) {
  :root { --container: calc(100% - 30px); }
  html { scroll-padding-top: 82px; }
  body { padding-bottom: 58px; }
  .section { padding: 82px 0; }
  .utility-bar { display: none; }
  .draft-status { min-height: 32px; padding: 5px 12px; font-size: .66rem; letter-spacing: .07em; }
  .nav-inner { min-height: 78px; }
  .brand { width: 165px; }
  .main-nav { inset: 110px 0 0; padding-inline: 20px; }
  .hero { min-height: auto; padding: 64px 0 74px; }
  .hero::before { width: 72vw; }
  .hero h1 { font-size: clamp(3rem, 15vw, 5.2rem); }
  .hero-lead { margin-top: 28px; font-size: .98rem; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 22px; }
  .button { width: 100%; }
  .button { max-width: 100%; padding-inline: 18px; text-align: center; white-space: normal; }
  .text-link { padding-left: 3px; }
  .hero-slogan-art { margin-bottom: 28px; }
  .hero-visual { margin: 20px 0 0 18px; width: calc(100% - 18px); padding-left: 0; border-left: 0; }
  .hero-visual > img,
  .hero-visual > picture > img { height: auto; }
  .hero-caption { align-items: flex-start; flex-direction: column; gap: 5px; }
  .proof-grid { grid-template-columns: 1fr 1fr; }
  .proof-grid > div { min-height: 92px; padding: 16px 14px; }
  .proof-grid strong { font-size: .82rem; }
  .proof-grid span { font-size: .62rem; }
  .statement-grid { grid-template-columns: 1fr; gap: 26px; }
  .section-number { display: none; }
  .statement-copy { grid-column: auto; padding-top: 28px; }
  .statement h2, .section-head h2, .process h2, .technology h2, .company h2, .contact h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
  .technology h2 { min-width: 0; overflow-wrap: anywhere; }
  .legal-hero h1 { font-size: clamp(2.75rem, 12vw, 3.25rem); overflow-wrap: anywhere; }
  .section-head { grid-template-columns: 1fr; gap: 24px; margin-bottom: 46px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 320px; }
  .service-card h3 { margin-top: 58px; }
  .process-list li { grid-template-columns: 46px 1fr; gap: 14px; padding: 32px 0; }
  .company-grid { gap: 56px; }
  .company-brand { min-height: 270px; padding: 32px; }
  .network-grid { gap: 48px; }
  .network-badge { min-height: 240px; box-shadow: 12px 12px 0 var(--mw-red); }
  .network-contact-card { grid-template-columns: 92px 1fr; gap: 16px; }
  .network-contact-card picture { width: 92px; }
  .network-contact-card img { width: 92px; height: 76px; }
  .process-roof { right: 24px; }
  .form-row { grid-template-columns: 1fr; }
  .check-form { padding: 28px 22px; box-shadow: 12px 12px 0 rgba(25,26,24,.14); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-grid > div:last-child { grid-column: auto; }
  .footer-bottom { align-items: flex-start; flex-direction: column; gap: 12px; }
  .mobile-actions {
    position: fixed;
    z-index: 120;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    min-height: 58px;
    background: var(--mw-graphite);
    box-shadow: 0 -8px 28px rgba(0,0,0,.18);
  }
  .mobile-actions a {
    display: grid;
    place-items: center;
    color: var(--mw-white);
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-decoration: none;
    text-transform: uppercase;
  }
  .mobile-actions a:last-child { background: var(--mw-red); }
  .living-hero { padding: 56px 0 72px; }
  .rental-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
    hyphens: auto;
    overflow-wrap: anywhere;
  }
  .living-hero h1 {
    font-size: clamp(2.65rem, 12vw, 3.7rem);
    hyphens: auto;
    overflow-wrap: anywhere;
  }
  .section-head h2,
  .section-head > p,
  .rental-intro,
  .rental-card h3,
  .rental-card p {
    overflow-wrap: anywhere;
  }
  .living-hero-visual::before { top: -14px; right: -15px; }
  .living-hero-visual img { height: clamp(240px, 58vw, 340px); }
  .living-hero-visual figcaption { width: calc(100% - 20px); }
  .living-solution-grid, .living-expertise ul, .living-steps { grid-template-columns: 1fr; }
  .roof-check-page .living-process h2 { font-size: 2.35rem; }
  .living-solution-copy { min-height: auto; padding: 96px 30px 32px; }
  .living-brand-panel { min-height: 270px; }
  .service-detail-hero { padding-top: 56px; }
  .service-detail-copy h1 { font-size: clamp(2.65rem, 12vw, 4rem); overflow-wrap: normal; hyphens: manual; }
  .service-detail-actions { align-items: stretch; flex-direction: column; }
  .service-detail-visual::before { top: -14px; right: -15px; }
  .service-detail-visual img { box-shadow: 12px 12px 0 rgba(0,0,0,.2); }
  .service-detail-cards, .service-detail-gallery, .service-detail-steps { grid-template-columns: 1fr; }
  .service-detail-gallery img { min-height: 0; }
  .service-detail-card h3, .service-detail-step h3 { hyphens: auto; overflow-wrap: anywhere; }
  .photovoltaic-page .service-detail-copy h1 { font-size: clamp(2.15rem, 10vw, 3.45rem); }
  .pv-benefit-grid { grid-template-columns: 1fr; }
  .pv-benefit-card { padding: 30px 24px; }
  .pv-partner-card { padding: 34px 26px; box-shadow: 10px 10px 0 var(--mw-red); }
  .pv-partner-actions { align-items: flex-start; flex-direction: column; }
  .pv-network-media { grid-template-columns: 1fr; padding: 0 12px 12px 0; }
  .pv-network-figure--work { width: min(72%, 330px); margin: -22px 0 -12px auto; }
  .pv-network-copy h2 { font-size: clamp(2.55rem, 12vw, 4rem); }
}

@media (max-width: 420px) {
  .pv-partner-actions { align-items: stretch; }
  .pv-partner-actions .button { width: 100%; padding-inline: 18px; }
  .service-detail-copy h1 { font-size: clamp(2rem, 10.5vw, 2.65rem); }
  .photovoltaic-page .service-detail-copy h1 { font-size: clamp(1.95rem, 9.5vw, 2.15rem); overflow-wrap: normal; }
  .roof-check-page .living-hero-visual::before { right: 0; }
  .roof-check-page .living-brand-panel span { right: 0; max-width: 100%; overflow-wrap: anywhere; }
  .roof-check-page .living-process h2 { overflow-wrap: anywhere; }
  .draft-notice { padding-inline: 18px; }
  .draft-notice strong { display: block; overflow-wrap: anywhere; hyphens: auto; }
  .legal-copy article { min-width: 0; padding-inline: 18px; box-shadow: 6px 6px 0 rgba(25, 26, 24, .06); overflow-wrap: anywhere; }
  .utility-inner p { font-size: .65rem; }
  .hero h1 { font-size: 2.85rem; }
  .image-label { width: 155px; }
  .image-label p { font-size: .58rem; }
  .proof-grid { grid-template-columns: 1fr; }
  .proof-grid > div { border-right: 1px solid rgba(255,255,255,.24); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:last-child { grid-column: auto; }
}

/* Projekt-Assistent */
.assistant-page { background: var(--mw-chalk); }
.assistant-page main { overflow: hidden; }
.project-launcher {
  position: relative;
  order: 5;
  overflow: hidden;
  background: #f0efeb;
  color: var(--ink);
}
.project-launcher::after {
  content: "MW";
  position: absolute;
  right: -2vw;
  bottom: -7vw;
  color: rgba(25,26,24,.035);
  font-family: var(--display);
  font-size: clamp(12rem, 30vw, 34rem);
  font-weight: 900;
  letter-spacing: -.13em;
  line-height: .7;
  pointer-events: none;
}
.project-launcher .container { position: relative; z-index: 1; }
.project-launcher-head { display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(260px, .85fr); gap: clamp(32px, 7vw, 100px); align-items: end; margin-bottom: 48px; }
.project-launcher-head h2 { max-width: 700px; margin: 0; font-family: var(--display); font-size: clamp(3rem, 6vw, 6.4rem); letter-spacing: -.075em; line-height: .88; text-transform: uppercase; }
.project-launcher-head > p { max-width: 520px; margin: 0; color: #565853; font-size: 1.05rem; }
.project-launcher-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); border-top: 2px solid var(--ink); border-left: 2px solid var(--ink); }
.project-launcher-card { position: relative; display: flex; min-height: 330px; flex-direction: column; padding: 28px; border-right: 2px solid var(--ink); border-bottom: 2px solid var(--ink); color: var(--ink); text-decoration: none; transition: color .2s ease, background .2s ease, transform .2s ease; }
.project-launcher-card::after { content: ""; position: absolute; right: 0; bottom: 0; width: 0; height: 4px; background: var(--mw-red); transition: width .2s ease; }
.project-launcher-card:hover, .project-launcher-card:focus-visible { z-index: 1; background: var(--ink); color: #fff; transform: translateY(-6px); }
.project-launcher-card:hover::after, .project-launcher-card:focus-visible::after { width: 100%; }
.project-launcher-card:focus-visible { outline: 4px solid var(--mw-red); outline-offset: 3px; }
.project-launcher-number { color: var(--mw-red); font-family: var(--display); font-size: 1.2rem; font-weight: 900; letter-spacing: .12em; }
.project-launcher-card h3 { margin: 54px 0 16px; font-family: var(--display); font-size: clamp(1.7rem, 2.5vw, 2.35rem); letter-spacing: -.045em; line-height: .95; text-transform: uppercase; }
.project-launcher-card p { margin: 0 0 30px; color: inherit; opacity: .72; }
.project-launcher-card strong { margin-top: auto; color: var(--mw-red); font-size: .76rem; letter-spacing: .12em; text-transform: uppercase; }
.project-launcher-note { max-width: 850px; margin: 22px 0 0; color: #686a65; font-size: .83rem; }

.assistant-hero {
  position: relative;
  padding: clamp(76px, 9vw, 130px) 0;
  overflow: hidden;
  background: var(--mw-graphite);
  color: var(--mw-white);
}
.assistant-hero::before {
  position: absolute;
  top: -42%;
  right: -9%;
  width: min(54vw, 760px);
  height: 165%;
  background: var(--mw-red);
  content: "";
  transform: skewX(-16deg);
}
.assistant-hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(260px, .7fr); gap: clamp(52px, 10vw, 150px); align-items: center; }
.assistant-hero-copy { position: relative; z-index: 1; }
.assistant-hero-copy h1 { max-width: 920px; margin: 0; font-family: var(--display); font-size: clamp(3.3rem, 7vw, 7.6rem); letter-spacing: -.08em; line-height: .84; text-transform: uppercase; }
.assistant-hero-copy h1 strong { color: var(--mw-red); }
.assistant-hero-copy > p:not(.eyebrow) { max-width: 690px; margin: 34px 0; color: rgba(255,255,255,.76); font-size: 1.05rem; }
.assistant-hero-mark { position: relative; z-index: 1; display: grid; min-height: 330px; align-content: end; padding: 34px; border: 2px solid rgba(255,255,255,.45); background: rgba(25,26,24,.88); box-shadow: 20px 20px 0 rgba(25,26,24,.28); }
.assistant-hero-mark span { font-family: var(--display); font-size: clamp(5.5rem, 10vw, 9rem); font-weight: 900; letter-spacing: -.11em; line-height: .72; }
.assistant-hero-mark strong { margin-top: 32px; color: var(--mw-red); font-family: var(--display); font-size: 1.3rem; letter-spacing: .12em; }
.assistant-hero-mark small { margin-top: 4px; color: rgba(255,255,255,.64); font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.assistant-workspace { background: var(--mw-white); }
.assistant-intro { display: grid; grid-template-columns: minmax(0, 1fr) minmax(280px, .72fr); gap: clamp(38px, 8vw, 120px); align-items: end; margin-bottom: 54px; }
.assistant-intro h2 { max-width: 780px; margin: 0; font-family: var(--display); font-size: clamp(3rem, 6.2vw, 6.4rem); letter-spacing: -.075em; line-height: .86; text-transform: uppercase; }
.assistant-intro > p { max-width: 520px; margin: 0; color: var(--mw-steel); }
.assistant-shell { display: grid; grid-template-columns: minmax(220px, .3fr) minmax(0, 1fr); min-height: 720px; background: var(--mw-graphite); box-shadow: 22px 22px 0 var(--mw-red); }
.assistant-progress { display: grid; align-content: start; gap: 32px; padding: clamp(30px, 4vw, 52px); border-right: 1px solid var(--mw-line-dark); color: var(--mw-white); }
.assistant-progress-number { display: flex; align-items: baseline; color: var(--mw-red); font-family: var(--display); font-weight: 900; }
.assistant-progress-number span { font-size: clamp(3.8rem, 6vw, 6rem); letter-spacing: -.08em; line-height: 1; }
.assistant-progress-number small { margin-left: 7px; color: rgba(255,255,255,.5); font-size: 1rem; }
.assistant-progress p { margin: 0 0 12px; font-size: .72rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.assistant-progress-track { height: 5px; overflow: hidden; background: rgba(255,255,255,.14); }
.assistant-progress-track span { display: block; width: 20%; height: 100%; background: var(--mw-red); transition: width .32s var(--ease); }
.assistant-progress ol { display: grid; gap: 0; margin: 40px 0 0; padding: 0; list-style: none; counter-reset: progress; }
.assistant-progress li { position: relative; padding: 15px 0 15px 28px; border-top: 1px solid rgba(255,255,255,.12); color: rgba(255,255,255,.42); font-family: var(--display); font-size: .76rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.assistant-progress li::before { position: absolute; left: 0; content: "—"; color: rgba(255,255,255,.24); }
.assistant-progress li.is-active { color: var(--mw-white); }
.assistant-progress li.is-active::before { color: var(--mw-red); content: "↗"; }
.assistant-progress li.is-complete { color: rgba(255,255,255,.7); }
.assistant-progress li.is-complete::before { color: var(--mw-red); content: "✓"; }
.assistant-stage { position: relative; min-width: 0; padding: clamp(34px, 5vw, 70px); background: var(--mw-chalk); }
.assistant-step { animation: assistant-in .34s var(--ease) both; }
.assistant-step[hidden] { display: none; }
@keyframes assistant-in { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: translateY(0); } }
.assistant-step-kicker { margin: 0 0 18px; color: var(--mw-red-dark); font-size: .7rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.assistant-step h2 { max-width: 820px; margin: 0; font-family: var(--display); font-size: clamp(2.7rem, 5vw, 5.2rem); letter-spacing: -.07em; line-height: .88; text-transform: uppercase; }
.assistant-step h2:focus { outline: 0; }
.assistant-step-lead { max-width: 720px; margin: 24px 0 38px; color: var(--mw-steel); }
.assistant-error { margin: 0 0 24px; padding: 14px 16px; border-left: 5px solid var(--mw-red); background: #fff0f0; color: var(--mw-graphite); font-weight: 700; }
.assistant-choice-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; margin: 0; padding: 0; border: 0; }
.assistant-choice { position: relative; display: grid; min-width: 0; min-height: 220px; align-content: end; padding: 30px; border: 1px solid var(--mw-line); border-top: 5px solid var(--mw-graphite); background: var(--mw-white); cursor: pointer; transition: transform .22s var(--ease), box-shadow .22s var(--ease), border-color .22s; }
.assistant-choice--red { border-top-color: var(--mw-red); }
.assistant-choice--dark { background: var(--mw-graphite); color: var(--mw-white); }
.assistant-choice:hover { transform: translateY(-4px); box-shadow: 9px 9px 0 rgba(25,26,24,.1); }
.assistant-choice:focus-within { outline: 3px solid var(--mw-red); outline-offset: 4px; }
.assistant-choice:has(input:checked) { border-color: var(--mw-red); box-shadow: inset 0 0 0 3px var(--mw-red), 10px 10px 0 rgba(230,0,5,.13); }
.assistant-choice input { position: absolute; top: 24px; right: 24px; width: 22px; height: 22px; accent-color: var(--mw-red); }
.assistant-choice-number { position: absolute; top: 22px; left: 28px; color: var(--mw-red-dark); font-family: var(--display); font-size: 1.5rem; font-weight: 900; }
.assistant-choice--dark .assistant-choice-number { color: var(--mw-red); }
.assistant-choice strong { max-width: 92%; font-family: var(--display); font-size: clamp(1.4rem, 2.3vw, 2.2rem); letter-spacing: -.045em; line-height: .95; text-transform: uppercase; overflow-wrap: anywhere; }
.assistant-choice small { margin-top: 14px; color: var(--mw-steel); font-size: .83rem; line-height: 1.5; }
.assistant-choice--dark small { color: rgba(255,255,255,.68); }
.assistant-field-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px 18px; }
.assistant-field-grid label, .assistant-wide-field { display: grid; gap: 10px; color: var(--mw-graphite); font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.assistant-field-grid input, .assistant-field-grid select, .assistant-wide-field textarea { width: 100%; min-height: 58px; padding: 14px 16px; border: 1px solid rgba(25,26,24,.3); border-radius: 0; background: var(--mw-white); color: var(--mw-graphite); font-size: .95rem; font-weight: 400; letter-spacing: 0; text-transform: none; }
.assistant-field-grid input::placeholder, .assistant-wide-field textarea::placeholder { color: #626866; opacity: 1; }
.assistant-required-note { margin: 0 0 12px; color: var(--mw-steel); font-size: .88rem; font-weight: 700; }
.assistant-wide-field { margin-top: 24px; }
.assistant-wide-field textarea { min-height: 150px; resize: vertical; }
.assistant-field-grid [aria-invalid="true"], .assistant-wide-field [aria-invalid="true"] { border-color: var(--mw-red); box-shadow: inset 0 0 0 1px var(--mw-red); }
.assistant-choice input[aria-invalid="true"], .assistant-consent input[aria-invalid="true"], .check-form [aria-invalid="true"] { outline: 3px solid var(--mw-red-light); outline-offset: 3px; }
.assistant-check-group { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 0 18px; margin: 32px 0 0; padding: 0; border: 0; }
.assistant-check-group legend { grid-column: 1 / -1; margin-bottom: 14px; font-family: var(--display); font-size: 1.15rem; font-weight: 800; }
.assistant-check-group label { display: flex; min-height: 54px; align-items: center; gap: 12px; padding: 12px 0; border-top: 1px solid var(--mw-line); cursor: pointer; }
.assistant-check-group input, .assistant-consent input { width: 20px; height: 20px; flex: 0 0 auto; accent-color: var(--mw-red); }
.assistant-partner-note { display: grid; grid-template-columns: 72px 1fr; gap: 20px; align-items: center; margin-bottom: 32px; padding: 20px 22px; background: var(--mw-graphite); color: var(--mw-white); }
.assistant-partner-note > span { display: grid; width: 72px; height: 72px; place-items: center; background: var(--mw-red); font-family: var(--display); font-size: 1.5rem; font-weight: 900; }
.assistant-partner-note p { margin: 0; color: rgba(255,255,255,.72); }
.assistant-partner-note strong { display: block; margin-bottom: 4px; color: var(--mw-white); font-family: var(--display); font-size: 1rem; text-transform: uppercase; }
.assistant-upload { display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 28px; padding: 24px; border: 2px dashed rgba(25,26,24,.3); background: var(--mw-white); cursor: pointer; }
.assistant-upload span, .assistant-upload small { display: block; }
.assistant-upload strong { font-family: var(--display); text-transform: uppercase; }
.assistant-upload small { margin-top: 4px; color: var(--mw-steel); }
.assistant-upload input { max-width: 280px; }
.assistant-file-list { display: grid; gap: 6px; margin: 12px 0 0; padding: 0; list-style: none; }
.assistant-file-list li { padding: 8px 12px; border-left: 3px solid var(--mw-red); background: var(--mw-white); font-size: .82rem; overflow-wrap: anywhere; }
.assistant-upload-note { margin: 28px 0 0; padding: 18px 20px; border-left: 4px solid var(--mw-red); background: var(--mw-white); color: var(--mw-steel); }
.assistant-consent { display: flex; align-items: flex-start; gap: 12px; margin-top: 24px; }
.assistant-consent a { color: var(--mw-red-dark); font-weight: 700; }
.assistant-summary { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.assistant-summary > section { min-width: 0; padding: 24px; border-top: 4px solid var(--mw-red); background: var(--mw-white); }
.assistant-summary h3 { margin: 0 0 18px; font-family: var(--display); font-size: 1.1rem; text-transform: uppercase; }
.assistant-summary dl { display: grid; grid-template-columns: minmax(110px, .42fr) minmax(0, 1fr); gap: 10px 16px; margin: 0; }
.assistant-summary dt { color: var(--mw-steel); font-size: .76rem; font-weight: 700; }
.assistant-summary dd { min-width: 0; margin: 0; font-size: .86rem; overflow-wrap: anywhere; }
.assistant-draft-send { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 24px; align-items: center; margin-top: 22px; padding: 24px; background: var(--mw-graphite); color: var(--mw-white); }
.assistant-draft-send strong { font-family: var(--display); font-size: 1rem; text-transform: uppercase; }
.assistant-draft-send p { margin: 5px 0 0; color: rgba(255,255,255,.66); font-size: .82rem; }
.assistant-submit-status { min-height: 28px; margin: 16px 0 0; color: var(--mw-red-dark); font-weight: 700; }
.assistant-submit-status[data-state="success"] { color: #16652a; }
.assistant-submit-status[data-state="error"] { color: var(--mw-red-dark); }
.assistant-draft-send .button:disabled { cursor: wait; opacity: .65; }
.assistant-reset { padding: 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--mw-graphite); cursor: pointer; font-size: .76rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; }
.assistant-shell[data-completed="true"] a[aria-disabled="true"] { pointer-events: none; opacity: .58; }
.assistant-controls { display: flex; justify-content: space-between; gap: 20px; margin-top: 44px; padding-top: 26px; border-top: 1px solid var(--mw-line); }
.assistant-controls [hidden] { display: none !important; }
.assistant-controls .button { min-width: 170px; padding-inline: 24px; }
.assistant-back { padding: 12px 0; border: 0; background: transparent; color: var(--mw-graphite); cursor: pointer; font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.assistant-back span { margin-right: 8px; color: var(--mw-red); }
.assistant-faq { background: var(--mw-graphite); color: var(--mw-white); }
.assistant-faq-grid { display: grid; grid-template-columns: minmax(280px, .75fr) minmax(0, 1.25fr); gap: clamp(48px, 9vw, 130px); }
.assistant-faq h2 { margin: 0; font-family: var(--display); font-size: clamp(3rem, 5.5vw, 5.8rem); letter-spacing: -.075em; line-height: .88; text-transform: uppercase; }
.assistant-faq-list { border-top: 1px solid var(--mw-line-dark); }
.assistant-faq details { border-bottom: 1px solid var(--mw-line-dark); }
.assistant-faq summary { position: relative; padding: 24px 46px 24px 0; cursor: pointer; font-family: var(--display); font-size: 1.05rem; font-weight: 800; list-style: none; text-transform: uppercase; }
.assistant-faq summary::-webkit-details-marker { display: none; }
.assistant-faq summary::after { position: absolute; top: 22px; right: 4px; color: var(--mw-red); content: "+"; font-size: 1.5rem; }
.assistant-faq details[open] summary::after { content: "−"; }
.assistant-faq details p { max-width: 720px; margin: 0; padding: 0 48px 24px 0; color: rgba(255,255,255,.7); }

@media (max-width: 1400px) {
  .project-launcher-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .assistant-hero-grid, .assistant-intro, .assistant-faq-grid { grid-template-columns: 1fr; }
  .assistant-hero::before { right: -30%; width: 80vw; opacity: .7; }
  .assistant-hero-mark { max-width: 420px; }
  .assistant-shell { grid-template-columns: 1fr; }
  .assistant-progress { grid-template-columns: auto minmax(0, 1fr); border-right: 0; border-bottom: 1px solid var(--mw-line-dark); }
  .assistant-progress ol { grid-template-columns: repeat(5, 1fr); margin-top: 24px; }
  .assistant-progress li { padding: 12px 6px 0; border-top: 3px solid rgba(255,255,255,.12); font-size: .62rem; }
  .assistant-progress li::before { display: none; }
}

@media (max-width: 720px) {
  .project-launcher-head, .project-launcher-grid { grid-template-columns: 1fr; }
  .project-launcher-head { align-items: start; margin-bottom: 34px; }
  .project-launcher-head h2 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .project-launcher-card { min-height: 255px; }
  .project-launcher-card h3 { margin-top: 38px; }
  .assistant-hero { padding: 58px 0 78px; }
  .assistant-hero::before { top: 32%; right: -42%; height: 80%; }
  .assistant-hero-copy h1 { font-size: clamp(2.8rem, 14vw, 4.4rem); }
  .assistant-hero-mark { min-height: 240px; padding: 26px; }
  .assistant-intro { margin-bottom: 38px; }
  .assistant-intro h2, .assistant-step h2, .assistant-faq h2 { font-size: clamp(2.35rem, 11vw, 3.7rem); }
  .assistant-shell { min-height: 0; box-shadow: 10px 10px 0 var(--mw-red); }
  .assistant-progress { grid-template-columns: 1fr; gap: 18px; padding: 26px 22px; }
  .assistant-progress-number span { font-size: 3.4rem; }
  .assistant-progress ol { display: none; }
  .assistant-stage { padding: 34px 22px; }
  .assistant-choice-grid, .assistant-field-grid, .assistant-check-group, .assistant-summary { grid-template-columns: 1fr; }
  .assistant-choice { min-height: 190px; padding: 26px 22px; }
  .assistant-choice input { top: 20px; right: 20px; }
  .assistant-choice-number { top: 19px; left: 22px; }
  .assistant-partner-note { grid-template-columns: 58px 1fr; padding: 17px; }
  .assistant-partner-note > span { width: 58px; height: 58px; }
  .assistant-upload { align-items: flex-start; flex-direction: column; }
  .assistant-upload input { width: 100%; max-width: 100%; }
  .assistant-summary dl { grid-template-columns: 1fr; gap: 2px; }
  .assistant-summary dd { margin-bottom: 12px; }
  .assistant-draft-send { grid-template-columns: 1fr; }
  .assistant-controls { align-items: stretch; flex-direction: column-reverse; }
  .assistant-controls .button { width: 100%; }
  .assistant-back { min-height: 48px; }
}

@media (max-width: 420px) {
  .assistant-hero-copy h1 { font-size: 2.65rem; }
  .assistant-step h2 { overflow-wrap: anywhere; }
  .assistant-choice strong { max-width: 86%; }
  .assistant-draft-send { padding: 20px 17px; }
}
