:root{
  --red:#9a191b;
  --red-2:#b51f24;
  --red-dark:#681012;
  --ink:#111414;
  --muted:#5f6662;
  --bg:#f6f1e8;
  --paper:#fffaf0;
  --white:#fff;
  --dark:#101514;
  --dark-soft:#18201e;
  --line:rgba(17,20,20,.16);
  --shadow:0 24px 80px rgba(0,0,0,.18);
  --radius:28px;
  --max:1180px;
}
*{box-sizing:border-box}
html{
  scroll-behavior:smooth
}

body{
  margin:0;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--ink);
  background:var(--bg);
  line-height:1.55
}

body.nav-open{
  overflow:hidden
}

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

a:hover{
  text-decoration:underline;
  text-underline-offset:4px
}

a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
  box-shadow: 0 0 0 6px #111;
}

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

.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;
  top:12px;
  left:12px;
  z-index:999;
  background:var(--white);
  color:var(--ink);
  padding:12px 16px;
  border-radius:999px;
  transform:translateY(-150%)
}

.skip-link:focus{
  transform:translateY(0)
}

.container{
  width:min(var(--max),calc(100% - 40px));
  margin-inline:auto
}

.narrow{
  width:min(900px,calc(100% - 40px));
  margin-inline:auto
}

.section{
  padding:104px 0
}

.section.compact{
  padding:72px 0
}

.dark{
  background:var(--dark);
  color:var(--white)
}

.site-header{
  position:fixed;
  inset:0 0 auto;
  z-index:50;color:var(--white);
  padding:22px 36px;
  transition:background .25s ease,color .25s ease,padding .25s ease,border .25s ease
}

.site-header.is-scrolled,.site-header.inner{
  background:rgba(246,241,232,.94);
  backdrop-filter:blur(16px);
  color:var(--ink);
  border-bottom:1px solid var(--line);
  padding:12px 36px
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;font-weight:900;
  letter-spacing:-.02em
}

.brand img{
  width:44px;
  height:44px;
  object-fit:contain
}

.brand span{
  line-height:1.05
}

.brand small{
  display:block;
  font-size:12px;
  font-weight:700;
  color:currentColor;
  opacity:.72;
  letter-spacing:.04em;
  text-transform:uppercase
}

.main-nav{
  display:flex;
  align-items:center;
  gap:22px;
  font-size:14px;
  font-weight:800
}

.main-nav a{
  opacity:.9
}

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

/* Sprachwahl */
.language-menu {
  position: relative;
}

.language-menu summary {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 38px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, .55);
  border-radius: 10px;
  background: rgba(255, 255, 255, .08);
  color: inherit;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .06em;
  line-height: 1;
  cursor: pointer;
  list-style: none;
  transition:
    background .2s ease,
    border-color .2s ease;
}

.language-menu summary::-webkit-details-marker {
  display: none;
}

.language-menu summary::after {
  content: "";
  width: 6px;
  height: 6px;
  margin-left: 2px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  transition: transform .2s ease;
}

.language-menu[open] summary::after {
  transform: rotate(225deg);
}

.language-menu summary:hover {
  border-color: currentColor;
  background: rgba(255, 255, 255, .16);
}

.language-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.language-options {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 100;
  width: 145px;
  padding: 7px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: var(--bg);
  box-shadow: 0 14px 40px rgba(0, 0, 0, .16);
}

.language-options a {
  display: block;
  padding: 10px 11px;
  border-radius: 9px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 750;
  letter-spacing: normal;
  text-decoration: none;
}

.language-options a:hover {
  background: rgba(151, 33, 35, .08);
  color: var(--red);
}

.language-options a[aria-current="page"] {
  background: var(--red);
  color: var(--white);
}

/* Sprachbutton auf hellem Header */
.site-header.is-scrolled .language-menu summary,
.site-header.inner .language-menu summary {
  border-color: var(--line);
  background: rgba(255, 255, 255, .45);
}

.nav-toggle{
  display:none;
  border:0;
  background:transparent;
  color:inherit;
  width:44px;
  height:44px
}

.nav-toggle span{
  display:block;
  height:2px;
  background:currentColor;
  margin:7px 4px
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:0 22px;
  border-radius:999px;
  font-weight:900;
  font-size:14px;
  border:1px solid transparent;
  transition:transform .2s ease,background .2s ease,border-color .2s ease
}

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

.btn-primary{
  background:var(--red);
  color:var(--white)
}

.btn-primary:hover{
  background:var(--red-2)
}

.btn-secondary{
  border-color:rgba(255,255,255,.42);
  color:var(--white);
  background:rgba(255,255,255,.06)
}

.site-header.is-scrolled .btn-secondary,.site-header.inner .btn-secondary,.light .btn-secondary{
  border-color:var(--line);
  color:var(--ink);
  background:rgba(255,255,255,.24)
}

.btn-outline{
  border-color:var(--line);
  background:rgba(255,255,255,.34);
  color:var(--ink)
}

.hero{
  position:relative;
  min-height:100vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  color:var(--white);
  padding:150px 0 130px
}

.hero::before {
  display: none;
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  z-index: 0;
}

.hero-slide {
  opacity: 0;
  transform: scale(1.08);
  background-size: cover;
  background-position: center;
  animation: heroFade 18s infinite;
}

.hero-slide-one {
  background-image:
    linear-gradient(120deg, rgba(8,11,11,.35), rgba(8,11,11,.12)),
    url("KS.jpg");
}

.hero-slide-two {
  animation-delay: 6s;
  background-image:
    linear-gradient(120deg, rgba(8,11,11,.35), rgba(8,11,11,.12)),
    url("Lager-2.jpg");
}

.hero-slide-three {
  animation-delay: 12s;
  background-image:
    linear-gradient(120deg, rgba(8,11,11,.42), rgba(8,11,11,.16)),
    url("Lager-3.jpg");
}

.hero-overlay {
  z-index: 1;
  background:
    radial-gradient(circle at 75% 30%, rgba(154,25,27,.24), transparent 35%),
    linear-gradient(90deg, rgba(8,11,11,.88), rgba(8,11,11,.46) 58%, rgba(8,11,11,.24));
}

.hero-content,
.hero-facts {
  position: relative;
  z-index: 2;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }

  8% {
    opacity: 1;
  }

  34% {
    opacity: 1;
  }

  43% {
    opacity: 0;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(1.1);
  }
}

.hero::after{
  content:"";
  position:absolute;
  inset:auto -10vw -8vw auto;
  width:min(46vw,560px);
  height:min(46vw,560px);
  background:url('schubert-s-mark.png') center/contain no-repeat;
  opacity:.28;
  filter:drop-shadow(0 24px 60px rgba(0,0,0,.35));
  transform:rotate(-8deg)
}

.hero-content{
  position:relative;
  z-index:1;max-width:870px
}

eyebrow,.kicker{
  text-transform:uppercase;
  letter-spacing:.14em;
  font-weight:900;
  font-size:12px;
  color:var(--red-2)
}

.hero .eyebrow{
  color:#ffcbc6
}


.hero p.lead{
  font-size:clamp(18px,2.1vw,24px);
  max-width:680px;color:rgba(255,255,255,.84)
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  margin-top:34px
}

.hero-facts{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  margin-top:64px;
    margin-left:clamp(0px,25vw,300px);
  max-width:900px;
  border:1px solid rgba(255,255,255,.24);
  background:rgba(255,255,255,.08);
  backdrop-filter:blur(18px)
}

.hero-facts div{
  padding:22px;
  border-right:1px solid rgba(255,255,255,.16)
}

.hero-facts div:last-child{
  border-right:0
}

.hero-facts strong{
  display:block;
  color:#ffcbc6;
  margin-bottom:5px
}

.hero-facts span{
  font-size:14px;
  color:rgba(255,255,255,.8)
}

.hero h1,
.page-hero h1,
.intro h2,
.section-head h2,
.feature h2,
.cta h2 {
  font-size: clamp(42px, 7vw, 98px);
  line-height: .94;
  letter-spacing: -.07em;
  margin: 16px 0 24px;
}
.cta h2 {
  max-width: 850px;
  font-size: clamp(34px, 4.5vw, 62px);
  line-height: 1.02;
  letter-spacing: -.055em;
}
@media (max-width: 560px) {
  .cta h2 {
    font-size: clamp(30px, 9vw, 42px);
    line-height: 1.08;
    letter-spacing: -.04em;
  }
}

.hero h1 em,
.page-hero h1 em {
    font-style: italic;
    color: var(--red);
}

.page-hero {
  position: relative;
  min-height: 420px;
  padding: 150px 0 82px;
  color: var(--white);
  overflow: hidden;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8,11,11,.65), rgba(8,11,11,.25)),
    var(--hero-img, none),
    var(--dark);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}


.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(8,11,11,.65), rgba(8,11,11,.25)),
     var(--hero-imgr, none);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 1;
  z-index: 0;
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero p {
  max-width: 780px;
  font-size: 20px;
  color: rgba(255,255,255,.82);
}

.intro{
  text-align:center
}

.intro h2{
  font-size:clamp(34px,5vw,64px);
  color:var(--ink)
}

.intro p{
  font-size:18px;color:var(--muted)
  ;max-width:760px;
  margin:0 auto
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:36px;
  margin-bottom:42px
}

.section-head h2{
  font-size:clamp(32px,5vw,66px);
  max-width:760px;
  margin:0
}

.section-head p{
  max-width:420px;
  color:var(--muted)
}

.dark .section-head p,.dark .muted{
  color:rgba(255,255,255,.68)
}

.card-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:18px
}

.product-card,.service-card,.info-card{
  position:relative;
  overflow:hidden;
  border:1px solid var(--line);
  background:rgba(255,255,255,.5);
  border-radius:var(--radius);
  padding:30px;
  min-height:310px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:0 8px 30px rgba(0,0,0,.04)
}

.dark .product-card,.dark .service-card{
  border-color:rgba(255,255,255,.13);
  background:linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035))
}

.product-card:hover,.service-card:hover,.info-card:hover{
  transform:translateY(-6px);
  transition:transform .25s ease
}

.card-number{
  font-weight:900;
  color:var(--red-2)
}

.product-card h3,.service-card h3,.info-card h3{
  font-size:28px;
  letter-spacing:-.04em;
  margin:48px 0 12px
}

.product-card p,.service-card p,.info-card p{
  color:var(--muted);
  margin:0
}

.dark .product-card p,.dark .service-card p{
  color:rgba(255,255,255,.72)
}

.card-link{
  font-weight:900;
  color:var(--red-2);
  margin-top:22px
}

.tag-row{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:20px
}

.tag{
  border:1px solid var(--line);
  border-radius:999px;
  padding:8px 12px;
  font-weight:800;
  font-size:13px;
  background:rgba(255,255,255,.35)
}

.dark .tag{
  border-color:rgba(255,255,255,.2);
  background:rgba(255,255,255,.06)
}

.split{
  display:grid;
  grid-template-columns:1.03fr .97fr;
  gap:68px;align-items:center
}

.feature-image{
  min-height:570px;
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  background:linear-gradient(180deg,rgba(0,0,0,.06),rgba(0,0,0,.24)),var(--feature-img, url('Lager.jpg'));
  background-size:cover;
  background-position:center
}

.feature h2{
  font-size:clamp(32px,5vw,60px)
}

.feature p{
  font-size:18px;
  color:var(--muted)
}

.check-list{
  list-style:none;
  padding:0;
  margin:26px 0 0
}

.check-list li{
  padding:15px 0;
  border-top:1px solid var(--line);
  font-weight:800
}

.check-list li::before{
  content:"—";
  color:var(--red);
  margin-right:10px
}

.dark .check-list li{
  border-color:rgba(255,255,255,.14)
}

.bands{
  display:grid;
  gap:16px
}

.band{
  display:grid;
  grid-template-columns:240px 1fr;
  gap:26px;
  padding:26px;
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.48)
}

.band h2,.band h3{
  margin:0;
  font-size:28px;
  letter-spacing:-.04em
}

.band p{
  margin:0;
  color:var(--muted)
}

.band ul{
  margin:14px 0 0;
  padding-left:20px;
  color:var(--muted)
}

.statement{
  position:relative;
  min-height:480px;
  display:grid;
  place-items:center;
  color:var(--white);
  overflow:hidden
}

.statement::before{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(90deg,rgba(8,11,11,.78),rgba(8,11,11,.36)),url('modernes-gebaeude.jpg');
  background-size:cover;
  background-position:center
}

.statement p{
  position:relative;
  font-size:clamp(30px,5vw,74px);
  line-height:1.02;
  letter-spacing:-.06em;
  max-width:1020px;
  margin:0
}

.cta-box{
  display:grid;
  grid-template-columns:1fr auto;
  gap:36px;
  align-items:center;
  background:var(--dark);
  color:var(--white);
  border-radius:var(--radius);
  padding:clamp(32px,6vw,68px);
  overflow:hidden;
  position:relative
}

.cta-box::after{
  content:"";
  position:absolute;
  right:-120px;
  bottom:-150px;
  width:360px;
  height:360px;
  background:url('schubert-s-mark.png') center/contain no-repeat;
  opacity:.14;
  transform:rotate(-10deg);
  pointer-events:none;
}

.cta-box>*{
  position:relative;
  z-index:1;
}

.cta-box p{
  color:rgba(255,255,255,.68);
  max-width:720px
}

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

.contact-card{
  border:1px solid var(--line);
  border-radius:var(--radius);
  background:rgba(255,255,255,.52);
  padding:30px
}

.contact-card h2{
  margin:0 0 10px;
  font-size:28px
}

.contact-card p{
  margin:0;
  color:var(--muted)
}

.map-embed{
  width:100%;
  min-height:360px;
  border:0;
  border-radius:var(--radius);
  filter:grayscale(.25)
}

.form{
  display:grid;
  gap:14px
}

.form label{
  font-weight:900
}

.form input,.form textarea{
  width:100%;
  border:1px solid var(--line);
  border-radius:18px;
  padding:14px 16px;
  font:inherit;
  background:var(--white)
}

.form textarea{
  min-height:140px;
  resize:vertical
}

.legal{
  max-width:900px
}

.legal h2{
  font-size:32px;
  letter-spacing:-.04em;
  margin-top:40px
}

.legal p,.legal li{
  color:var(--muted)
}

.site-footer{
  padding:42px 0;
  border-top:1px solid var(--line);
  background:#ede7dc
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr 1fr 1fr;
  gap:34px
}

.footer-grid h2,.footer-grid h3{
  font-size:14px;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin:0 0 14px;
  color:var(--red)
}

.footer-grid p,.footer-grid a{
  display:block;
  color:var(--muted);
  font-weight:650;
  margin:6px 0
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:20px;
  border-top:1px solid var(--line);
  padding-top:22px;
  margin-top:32px;
  color:var(--muted);
  font-weight:700
}

.reveal{
  opacity:0;
  transform:translateY(24px);
  transition:opacity .65s ease,transform .65s ease
}

.reveal.is-visible{
  opacity:1;
  transform:translateY(0)
}

@keyframes heroZoom{
  from{
    transform:scale(1.02)
  }
  to{
    transform:scale(1.1)}
  }

@media (prefers-reduced-motion:reduce){
  *,*::before,*::after{
    animation:none!important;
  transition:none!important;
  scroll-behavior:auto!important
}
.reveal{
  opacity:1;
  transform:none
}
}

@media (max-width:1120px){
  .nav-toggle{
    display:block;
    z-index:60
  }
  .main-nav{
    position:fixed;
    inset:0;
    display:none;
    place-items:center;
    align-content:center;
    gap:26px;
    background:var(--dark);
    color:var(--white);
    font-size:26px
  }
  .main-nav.is-open{
    display:grid
  }
  .nav-actions .btn{
    display:none
  }
  .site-header,.site-header.is-scrolled,.site-header.inner{
    padding:14px 20px
  }
  .hero-facts{
  margin-left:0
}
}

@media (max-width:980px){
  .nav-toggle{
    display:block;
    z-index:60
  }
  .main-nav{
    position:fixed;
    inset:0;
    display:none;
    place-items:center;
    align-content:center;
    gap:26px;
    background:var(--dark);
    color:var(--white);
    font-size:26px
  }
  .main-nav.is-open{
    display:grid
  }
  .nav-actions .btn{
    display:none
  }
  .site-header,.site-header.is-scrolled,.site-header.inner{
    padding:14px 20px
  }
  .hero{
    padding:132px 0 70px
  }
  .hero-facts,.card-grid,.split,.contact-grid,.footer-grid{
    grid-template-columns:1fr
  }
  .hero-facts div{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.18)
  }
  .hero-facts div:last-child{
    border-bottom:0
  }
  .section{
    padding:76px 0
  }
  .section-head{
    display:block
  }
  .band{
    grid-template-columns:1fr
  }
  .feature-image{
    min-height:380px
  }
  .cta-box{
    grid-template-columns:1fr
  }
  .footer-bottom{
    display:block
  }
  .page-hero{
    padding-top:120px
  }
  .hero h1,.page-hero h1{
    font-size:clamp(40px,12vw,72px)
  }
}

@media (max-width:560px){
html,body{
  max-width:100%;
  overflow-x:clip
}

.header-inner{
  gap:8px
}

.brand{
  min-width:0;
  gap:8px
}

.brand span{
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap
}

.nav-actions{
  gap:4px
}

.language-menu summary{
  min-height:44px;
  padding:7px 9px
}

.language-options{
  position:fixed;
  top:70px;
  right:14px
}

.main-nav{
  padding:88px 20px 32px;
  gap:18px;
  overflow-y:auto;
  font-size:clamp(22px,7vw,28px)
}

.hero{
  min-height:100svh;
  padding:116px 0 56px;
  align-items:flex-start
}

.hero h1,.page-hero h1{
  font-size:clamp(38px,13vw,56px);
  line-height:.98;
  letter-spacing:-.055em
}

.hero p.lead{
  font-size:17px;
  line-height:1.55
}

.hero-actions{
  margin-top:26px
}

.hero-facts{
  margin-top:34px;
  margin-left:0;
  width:100%
}

.hero-facts div{
  padding:17px 18px
}

.hero::after{
  right:-70px;
  bottom:-30px;
  width:240px;
  height:240px
}

.page-hero{
  min-height:340px;
  padding:112px 0 56px
}

  .container,.narrow{
    width:min(100% - 28px,var(--max))
  }
  .hero-actions .btn,.cta-box .btn{
    width:100%
  }
  .brand span{
    font-size:14px
  }
  .brand img{
    width:38px;
    height:38px
  }
  .product-card,.service-card,.info-card,.contact-card,.band{
    padding:22px;
    border-radius:22px
  }
  .section{
    padding:64px 0
  }
}

.services-head {
  align-items: start;
}

.service-grid {
  align-items: stretch;
}

.service-card-expand {
  min-height: 100%;
}

.service-card-expand[open] {
  grid-column: auto;
  min-height: 100%;
}

.service-card-expand summary {
  min-height: 100%;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 14px;
  align-items: start;
}

.service-summary-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-title {
  margin-top: 42px;
}

.service-image {
  width: 100%;
  aspect-ratio: 16 / 7;
  margin: 16px 0 14px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.5);
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-teaser {
  margin-top: 0;
}

.service-detail {
  display: block;
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.service-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 10px 18px;
  margin: 0 0 22px;
}

.service-stats div {
  padding: 4px 0;
}

.service-stats strong {
  display: block;
  font-size: clamp(20px, 2.4vw, 26px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: var(--red);
  line-height: 1.05;
}

.service-stats span {
  display: block;
  margin-top: 3px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
}

.dark .service-stats strong {
  color: #ffcbc6;
}

.dark .service-stats span {
  color: rgba(255,255,255,.6);
}

.service-detail h4 {
  margin: 0 0 14px;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}

.service-machine-list {
  display: grid;
  gap: 10px;
}

.service-machine {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 16px;
  background: rgba(255,255,255,.5);
}

.service-machine h5 {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -.01em;
}

.service-machine dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 5px 12px;
  margin: 0;
}

.service-machine dt {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .07em;
  color: var(--red);
  white-space: nowrap;
}

.service-machine dd {
  margin: 0;
  font-size: 13px;
  font-weight: 600;
  color: var(--muted);
}

.service-machine dd.placeholder-fill {
  color: rgba(154,25,27,.75);
  font-style: italic;
  font-weight: 700;
}

.dark .service-machine {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.06);
}

.dark .service-machine dd {
  color: rgba(255,255,255,.72);
}

.dark .service-machine dd.placeholder-fill {
  color: #ffcbc6;
}

@media (max-width: 560px) {
  .service-machine dl {
    grid-template-columns: 1fr;
    gap: 2px 0;
  }

  .service-machine dd {
    margin-bottom: 6px;
  }
}

@media (max-width: 560px) {
  .service-card-expand summary {
    grid-template-columns: auto 1fr;
  }

  .service-image {
    border-radius: 18px;
  }
}

.service-title {
  display: block;
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -.04em;
  line-height: 1.05;
  margin-top: 42px;
}

.service-teaser {
  display: block;
  color: var(--muted);
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.55;
}

.service-card-expand[open] .service-teaser {
  max-width: 680px;
}

.service-more {
  align-self: start;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 11px;
  font-size: 12px;
  font-weight: 900;
  color: var(--red);
  background: rgba(255,255,255,.45);
  white-space: nowrap;
}

.service-image-placeholder {
  min-height: 110px;
  aspect-ratio: 16/7;
  border-radius: 22px;
  border: 1px dashed rgba(154,25,27,.38);
  background: linear-gradient(135deg,rgba(154,25,27,.1),rgba(255,255,255,.55)),rgba(255,255,255,.52);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.55);
}

.service-image-placeholder span {
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(17,20,20,.56);
}

.dark .service-card-expand {
  border-color: rgba(255,255,255,.13);
  background: linear-gradient(180deg,rgba(255,255,255,.08),rgba(255,255,255,.035));
}

.dark .service-detail ul,
.dark .service-teaser {
  color: rgba(255,255,255,.72);
}

.dark .service-image-placeholder {
  border-color: rgba(255,255,255,.24);
  background: linear-gradient(135deg,rgba(154,25,27,.26),rgba(255,255,255,.08));
}

.dark .service-image-placeholder span {
  color: rgba(255,255,255,.66);
}

@media (max-width: 980px) {
  .service-card-expand[open] {
    grid-column: auto;
  }

  .service-detail {
    grid-template-columns: 1fr;
  }

  .service-image-placeholder {
    max-width: 320px;
    min-height: 100px;
  }

  .service-more {
    display: none;
  }
}

@media (max-width: 560px) {
  .service-card-expand summary {
    grid-template-columns: auto 1fr;
    min-height: 72px;
  }

  .service-title {
    font-size: 24px;
    margin-top: 34px;
  }

  .service-card-expand summary::after {
    right: 20px;
    bottom: 20px;
  }

  .service-detail {
    gap: 16px;
  }

  .service-image-placeholder {
    max-width: none;
    min-height: 90px;
    border-radius: 18px;
  }
}
/* Produktübersicht mit Bildplatzhaltern und sortierten Fakten */
.product-overview-head {
  align-items: start;
}

.product-overview-grid {
  display: grid;
  gap: 22px;
}

.product-detail-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(220px, 320px) 1fr;
  gap: 28px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 24px;
  box-shadow: 0 16px 45px rgba(0,0,0,.08);
  overflow: hidden;
}

.product-detail-card::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--red);
}

.product-detail-card:hover {
  transform: translateY(-4px);
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 18px 55px rgba(0,0,0,.09);
}

@media (max-width: 980px) {
  .product-detail-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .product-detail-card:nth-child(even) .product-image,
  .product-detail-card:nth-child(even) .product-image-placeholder,
  .product-detail-card:nth-child(even) .product-detail-content {
    order: initial;
  }
}

.product-image-placeholder {
  min-height: 250px;
  border-radius: 22px;
  border: 1px dashed rgba(154,25,27,.38);
  background: linear-gradient(135deg,rgba(154,25,27,.1),rgba(255,255,255,.58)),rgba(255,255,255,.52);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.56);
}

.product-image-placeholder span {
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(17,20,20,.56);
}

.product-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-image {
  min-height: 250px;
  border-radius: 22px;
  border: 1px dashed rgba(154,25,27,.38);
  background: linear-gradient(135deg,rgba(154,25,27,.1),rgba(255,255,255,.58)),rgba(255,255,255,.52);
  display: grid;
  place-items: center;
  overflow: hidden;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.56);
}

.product-image span {
  text-align: center;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: rgba(17,20,20,.56);
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail-content {
  min-width: 0;
}

.product-type {
  display: inline-flex;
  margin: 0 0 10px;
  border: 1px solid rgba(154,25,27,.24);
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--red);
  background: rgba(255,255,255,.46);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.product-detail-content h2 {
  margin: 0 0 10px;
  font-size: clamp(28px,4vw,44px);
  line-height: 1;
  letter-spacing: -.05em;
}

.product-detail-content > p:not(.product-type) {
  margin: 0 0 22px;
  color: var(--muted);
  max-width: 760px;
}

.product-facts {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 10px;
  margin: 0;
}

.product-facts div {
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 16px;
  background: rgba(255,255,255,.5);
}

.product-facts div:first-child {
  grid-column: 1 / -1;
}

.product-facts dt {
  margin: 0 0 5px;
  color: var(--red);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.product-facts dd {
  margin: 0;
  color: var(--muted);
  font-weight: 700;
}

@media (max-width: 980px) {
  .product-detail-card {
    grid-template-columns: 1fr;
  }

  .product-image-placeholder {
    min-height: 220px;
    max-width: 420px;
  }
}

@media (max-width: 560px) {
  .product-detail-card {
    padding: 20px;
    border-radius: 22px;
  }

  .product-image-placeholder {
    min-height: 170px;
    max-width: none;
    border-radius: 18px;
  }

  .product-facts {
    grid-template-columns: 1fr;
  }

  .product-facts div:first-child {
  grid-column: 1 / -1;
}
}
.product-facts-compact {
  grid-template-columns: 1fr;
}

.product-facts-compact div:first-child,
.product-facts-compact div:last-child {
  grid-column: auto;
}
.product-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.product-inline-image {
  width: min(100%,520px);
  margin: 18px 0 22px;
  border-radius: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: rgba(255,255,255,.5);
}

.product-inline-image a {
  display: block;
  text-decoration: none;
}

.product-inline-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}
.contact-card a.product-inline-image {
  display: inline-flex;
  width: 38px;
  height: 38px;
  margin: 0;
  padding: 0;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  border: 0;
  background: transparent;
}

.contact-card a.product-inline-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-linkedin-icon {
  display: inline-flex;
  width: 29px;
  height: 29px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  text-decoration: none;
}

.footer-linkedin-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.gmail-image-link {
  display: inline-flex;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.gmail-image-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.footer-icon-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 12px;
}

.footer-icon-link {
  display: inline-flex !important;
  width: 29px;
  height: 29px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 8px;
  overflow: hidden;
}

.footer-icon-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.machine-overview-section {
  padding-top: 0;
}

.machine-overview-block {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--dark);
  color: var(--white);
  padding: clamp(32px, 6vw, 64px);
  box-shadow: var(--shadow);
}

.machine-overview-block::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -140px;
  width: 360px;
  height: 360px;
  background: url("schubert-s-mark.png") center/contain no-repeat;
  opacity: .08;
  transform: rotate(-10deg);
  pointer-events: none;
}

.machine-overview-block > * {
  position: relative;
  z-index: 1;
}

.machine-overview-intro {
  max-width: 820px;
  margin-bottom: 38px;
}

.machine-overview-intro h2 {
  margin: 12px 0 18px;
  font-size: clamp(34px, 5vw, 66px);
  line-height: .98;
  letter-spacing: -.06em;
}

.machine-overview-intro p {
  max-width: 720px;
  color: rgba(255,255,255,.68);
  font-size: 18px;
}

.machine-overview-list {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(255,255,255,.14);
}

.machine-overview-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 34px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
}

.machine-overview-name {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}

.machine-overview-name span {
  color: var(--red-2);
  font-weight: 900;
  font-size: 14px;
}

.machine-overview-name h3 {
  margin: 0;
  color: var(--white);
  font-size: 30px;
  line-height: 1;
  letter-spacing: -.04em;
}

.machine-overview-content ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.machine-overview-content li {
  position: relative;
  padding-left: 24px;
  color: rgba(255,255,255,.72);
  font-weight: 650;
}

.machine-overview-content li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--red-2);
  font-weight: 900;
}

@media (max-width: 980px) {
  .machine-overview-row {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .machine-overview-block {
    padding: 28px 22px;
    border-radius: 22px;
  }

  .machine-overview-name h3 {
    font-size: 26px;
  }

  .machine-overview-intro p {
    font-size: 16px;
  }
}
/* ===== Leistungen: Kennzahlen-Band ===== */
.capability-band{
  padding: 40px 0 0;
  background: transparent;
}

.capability-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--dark);
  box-shadow: var(--shadow);
}

.capability-item{
  padding: 30px 26px;
  border-right: 1px solid rgba(255,255,255,.14);
}

.capability-item:last-child{
  border-right: 0;
}

.capability-item strong{
  display: block;
  font-size: clamp(22px, 2.6vw, 32px);
  font-weight: 900;
  letter-spacing: -.03em;
  color: #ffcbc6;
  line-height: 1.05;
  margin-bottom: 6px;
}

.capability-item span{
  display: block;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: rgba(255,255,255,.7);
}

@media (max-width: 980px){
  .capability-grid{
    grid-template-columns: repeat(2, 1fr);
  }
  .capability-item:nth-child(2n){
    border-right: 0;
  }
  .capability-item:nth-child(-n+2){
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
}

@media (max-width: 560px){
  .capability-grid{
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .capability-item{
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.14);
  }
  .capability-item:last-child{
    border-bottom: 0;
  }
}

/* ===== Leistungen: Service-Panels (immer sichtbar, kein Aufklappen) ===== */
.service-panel-list{
  display: grid;
  gap: 22px;
}

.service-panel{
  display: grid;
  grid-template-columns: minmax(260px, 380px) 1fr;
  gap: 32px;
  align-items: stretch;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  padding: 28px;
  box-shadow: 0 16px 45px rgba(0,0,0,.08);
}

.service-panel::before {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  left: 0;
  width: 4px;
  border-radius: 0 4px 4px 0;
  background: var(--red);
}

.service-panel:hover{
  transform: translateY(-4px);
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 18px 55px rgba(0,0,0,.09);
}


.service-panel-media{
  position: relative;
  min-height: 280px;
  border-radius: 22px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.4);
}

.service-panel-media::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8,11,11,.05), rgba(8,11,11,.5));
}

.service-panel-number{
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.94);
  color: var(--red);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 15px;
}

.service-panel-body{
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.service-panel-body h3{
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 36px);
  letter-spacing: -.04em;
  line-height: 1;
}

.service-panel-teaser{
  margin: 0 0 24px;
  color: var(--muted);
  font-size: 16px;
  max-width: 640px;
}

.service-panel-subhead{
  margin: 24px 0 14px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--muted);
}

.dark .service-panel-subhead{
  border-color: rgba(255,255,255,.14);
  color: rgba(255,255,255,.6);
}

@media (max-width: 980px){
  .service-panel,
  .service-panel:nth-child(even){
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px){
  .service-panel{
    padding: 20px;
    border-radius: 22px;
    gap: 20px;
  }
  .service-panel-media{
    min-height: 180px;
    border-radius: 18px;
  }
}


/* ===== Laborseite ===== */

/* Einführung */

.lab-intro {
  position: relative;
  overflow: hidden;
  background: var(--bg);
}

.lab-intro::before {
  content: "";
  position: absolute;
  top: 80px;
  right: -180px;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: rgba(151, 33, 35, .06);
  pointer-events: none;
}

.lab-intro-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(48px, 7vw, 90px);
  align-items: center;
}

.lab-visual {
  position: relative;
  min-height: 620px;
  overflow: hidden;
  border-radius: var(--radius);
  background:
    linear-gradient(
      180deg,
      rgba(8,11,11,.04),
      rgba(8,11,11,.55)
    ),
    var(--lab-image);
  background-position: center;
  background-size: cover;
  box-shadow: var(--shadow);
}

.lab-visual-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 24px 26px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 22px;
  background: rgba(8,11,11,.66);
  color: var(--white);
  backdrop-filter: blur(16px);
}

.lab-visual-badge strong {
  display: block;
  margin-bottom: 3px;
  color: var(--red-2);
  font-size: 30px;
  line-height: 1;
}

.lab-visual-badge span {
  color: rgba(255,255,255,.76);
  font-size: 14px;
  font-weight: 700;
}

.lab-intro-content h2 {
  max-width: 650px;
  margin: 14px 0 24px;
  font-size: clamp(42px, 5.5vw, 72px);
  line-height: .95;
  letter-spacing: -.065em;
}

.lab-intro-content > p {
  color: var(--muted);
  font-size: 17px;
}

.lab-intro-content .lab-lead {
  max-width: 620px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
}

.lab-proof-list {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.lab-proof-list > div {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  padding: 19px 0;
  border-bottom: 1px solid var(--line);
}

.lab-proof-list span {
  color: var(--red);
  font-size: 20px;
  line-height: 1;
  font-weight: 900;
}

.lab-proof-list p {
  margin: 0;
  color: var(--muted);
}

.lab-proof-list strong {
  display: block;
  margin-bottom: 3px;
  color: var(--ink);
}


/* Dunkler Laborbereich */

.lab-measurements {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(
      circle at 88% 8%,
      rgba(151,33,35,.24),
      transparent 30%
    ),
    var(--dark);
  color: var(--white);
}

.lab-measurements::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -150px;
  width: 380px;
  height: 380px;
  background:
    url("schubert-s-mark.png") center / contain no-repeat;
  opacity: .055;
  transform: rotate(-10deg);
  pointer-events: none;
}

.lab-measurements .container {
  position: relative;
  z-index: 1;
}

.lab-measurements .section-head h2 {
  color: var(--white);
}

.lab-measurements .section-head > p {
  color: rgba(255,255,255,.67);
}

.lab-measurements .kicker {
  color: var(--red-2);
}

.lab-measurement-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.lab-measurement-card {
  display: flex;
  flex-direction: column;
  min-height: 290px;
  padding: 30px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: var(--radius);
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.10),
    rgba(255,255,255,.04)
  );
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
  transition:
    transform .25s ease,
    border-color .25s ease,
    background .25s ease;
}

.lab-measurement-label {
  margin: 0 0 auto;
  padding-bottom: 48px;
  color: var(--red-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lab-measurement-card h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(27px, 3vw, 36px);
  line-height: 1;
  letter-spacing: -.04em;
}

.lab-measurement-card > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.66);
}

@media (max-width: 980px) {
  .lab-measurement-grid {
    grid-template-columns: 1fr;
  }

  .lab-measurement-card {
    min-height: 230px;
  }
}

.lab-measurement-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255,255,255,.28);
  background: linear-gradient(
    145deg,
    rgba(255,255,255,.14),
    rgba(255,255,255,.06)
  );
}

.lab-measurement-number {
  display: grid;
  place-items: center;
  align-self: start;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50%;
  color: var(--red-2);
  font-size: 13px;
  font-weight: 900;
}

.lab-measurement-label {
  margin: 0 0 26px;
  color: var(--red-2);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.lab-measurement-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -.04em;
}

.lab-measurement-card div > p:last-child {
  margin: 0;
  color: rgba(255,255,255,.66);
}

.lab-knowledge-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 54px;
  border-top: 1px solid rgba(255,255,255,.16);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.lab-knowledge-band > div {
  padding: 28px;
  border-right: 1px solid rgba(255,255,255,.16);
}

.lab-knowledge-band > div:first-child {
  padding-left: 0;
}

.lab-knowledge-band > div:last-child {
  border-right: 0;
}

.lab-knowledge-band span {
  display: block;
  margin-bottom: 18px;
  color: var(--red-2);
  font-size: 12px;
  font-weight: 900;
}

.lab-knowledge-band strong {
  display: block;
  color: var(--white);
  font-size: 26px;
  line-height: 1;
}

.lab-knowledge-band p {
  margin: 8px 0 0;
  color: rgba(255,255,255,.58);
}


/* Abschluss */

.lab-closing {
  padding-top: 72px;
  background: var(--dark);
  color: var(--white);
}

.lab-closing-box {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 60px;
  align-items: center;
  padding: clamp(36px, 6vw, 70px);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius);
  background: var(--dark-soft);
  box-shadow: none;
}

.lab-closing-box h2 {
  max-width: 750px;
  margin: 12px 0 0;
  font-size: clamp(36px, 5vw, 64px);
  line-height: .98;
  letter-spacing: -.06em;
}

.lab-closing-action p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, .68);
  font-size: 17px;
}

.lab-closing-box h2 {
  color: var(--white);
}

.lab-closing-box .kicker {
  color: var(--red-2);
}


/* Responsive */

@media (max-width: 980px) {
  .lab-intro-grid,
  .lab-closing-box {
    grid-template-columns: 1fr;
  }

  .lab-visual {
    min-height: 480px;
  }

  .lab-measurement-grid {
    grid-template-columns: 1fr;
  }

  .lab-closing-box {
    gap: 30px;
  }
}

@media (max-width: 700px) {
  .lab-visual {
    min-height: 390px;
  }

  .lab-measurement-card {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 24px;
  }

  .lab-measurement-label {
    margin-bottom: 18px;
  }

  .lab-knowledge-band {
    grid-template-columns: 1fr;
  }

  .lab-knowledge-band > div,
  .lab-knowledge-band > div:first-child {
    padding: 24px 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255,255,255,.16);
  }

  .lab-knowledge-band > div:last-child {
    border-bottom: 0;
  }
}

/* Kontaktseite */
.contact-section {
  padding-top: 72px;
  padding-bottom: 72px;
}

.contact-main-card,
.locations-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .55);
  box-shadow: 0 12px 40px rgba(0, 0, 0, .05);
}

.contact-main-card {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  overflow: hidden;
}

.contact-details,
.contact-form-area {
  padding: 40px;
}

.contact-details {
  border-right: 1px solid var(--line);
}

.contact-details h2,
.contact-form-area h2,
.locations-heading h2 {
  margin: 0 0 18px;
  font-size: clamp(28px, 3vw, 40px);
}

.contact-details > p {
  color: var(--muted);
}

.contact-options {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.linkedin-contact {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  width: fit-content;
  font-weight: 800;
}

.linkedin-contact img {
  width: 26px;
  height: 26px;
  object-fit: contain;
}

.contact-company-image {
  margin-top: 28px;
  border-radius: 20px;
  overflow: hidden;
}

.contact-company-image img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.locations-card {
  margin-top: 24px;
  padding: 40px;
}

.locations-heading {
  margin-bottom: 28px;
}

.locations-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.location-item {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--white);
}

.location-text {
  padding: 22px 24px;
}

.location-text h3 {
  margin: 0 0 6px;
  font-size: 22px;
}

.location-text p {
  margin: 0;
  color: var(--muted);
}

.location-item iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: 0;
}

@media (max-width: 900px) {
  .contact-main-card,
  .locations-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 560px) {
  .contact-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .contact-details,
  .contact-form-area,
  .locations-card {
    padding: 24px;
  }

  .contact-company-image img {
    height: 180px;
  }

  .location-item iframe {
    height: 240px;
  }
}

.services-section {
  position: relative;
  background:
    radial-gradient(circle at 90% 10%, rgba(151, 33, 35, .18), transparent 30%),
    var(--dark);
  color: var(--white);
}

/* ===== Über uns / About us ===== */
.about-intro-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

.about-intro-grid > div:first-child {
  width: 100%;
}

.about-intro h2 {
  width: 100%;
  max-width: none;
  margin: 12px 0 0;
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.04;
  letter-spacing: -.05em;
}

.about-lead {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(30px, 5vw, 64px);
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

.about-lead p {
  margin: 0;
}

.milestone-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.milestone-card {
  min-height: 300px;
  padding: 28px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255,255,255,.10), rgba(255,255,255,.035));
}

.milestone-card span {
  display: block;
  margin-bottom: 58px;
  color: var(--red-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.milestone-card h3 {
  margin: 0 0 12px;
  color: var(--white);
  font-size: 26px;
  line-height: 1.05;
  letter-spacing: -.04em;
}

.milestone-card p {
  margin: 0;
  color: rgba(255,255,255,.68);
}

.form-note {
  margin: 4px 0 6px;
  color: var(--muted);
  font-size: 13px;
}

.form-trap {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.form-status {
  margin-bottom: 20px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 750;
}

.form-status-success {
  border: 1px solid rgba(34, 112, 67, .24);
  background: rgba(34, 112, 67, .10);
  color: #195936;
}

.form-status-error {
  border: 1px solid rgba(154, 25, 27, .24);
  background: rgba(154, 25, 27, .09);
  color: var(--red-dark);
}

/* Abstand zwischen „Seit 2015“ und dem Kontaktbereich */
.about-milestones + .section {
  padding-bottom: 42px;
}

@media (max-width: 560px) {
  .about-milestones + .section {
    padding-bottom: 28px;
  }

  .about-milestones + .section + .cta {
    padding-top: 28px;
  }
}

.about-milestones + .section + .cta {
  padding-top: 42px;
}

@media (max-width: 980px) {
  .about-intro-grid {
    grid-template-columns: 1fr;
  }

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

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

@media (max-width: 560px) {
  .milestone-grid {
    grid-template-columns: 1fr;
  }

  .milestone-card {
    min-height: auto;
    padding: 24px;
    border-radius: 22px;
  }

  .milestone-card span {
    margin-bottom: 34px;
  }
}

.services-section .section-head h2 {
  color: var(--white);
}

.services-section .section-head p,
.services-section .services-intro {
  color: rgba(255,255,255,.68);
}

.services-section .service-panel {
  border-color: rgba(255,255,255,.12);
  background: linear-gradient(
    135deg,
    rgba(255,255,255,.10),
    rgba(255,255,255,.05)
  );
  box-shadow: 0 20px 60px rgba(0,0,0,.22);
}

.services-section .service-panel-body h3 {
  color: var(--red-2);
}

.services-section .service-panel-teaser {
  color: rgba(255,255,255,.70);
}

.services-section .service-stats div {
  border-color: rgba(255,255,255,.14);
  background: rgba(255,255,255,.07);
}

.services-section .service-stats strong {
  color: var(--white);
}

.services-section .service-stats span {
  color: rgba(255,255,255,.62);
}


/* =========================================================
   AUSWAHLGUIDE GEGENZUG
   ========================================================= */

html {
  scroll-behavior: smooth;
}

.balancing-guide-section {
  padding: clamp(64px, 8vw, 100px) 0;
  background: #eeeae6;
  scroll-margin-top: 110px;
}

.balancing-guide {
  position: relative;
  padding: clamp(38px, 5vw, 64px);
  color: #fff;
  background:
    radial-gradient(
      circle at 8% 8%,
      rgba(126, 23, 39, 0.3),
      transparent 34%
    ),
    linear-gradient(135deg, #292929 0%, #151515 100%);
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

/* Überschrift */

.balancing-guide-header {
  max-width: 800px;
  margin-bottom: 38px;
}

.balancing-guide-kicker {
  margin: 0 0 9px;
  color: #d7a0a9;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.balancing-guide-header h2 {
  margin: 0;
  color: #fff;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
}

.balancing-guide-lead {
  max-width: 700px;
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: clamp(0.98rem, 1.5vw, 1.1rem);
  line-height: 1.65;
}

/* Schichtbild und Erklärung */

.balancing-guide-intro {
  display: grid;
  grid-template-columns: minmax(280px, 440px) minmax(320px, 1fr);
  align-items: center;
  gap: clamp(34px, 5vw, 70px);
}

.balancing-guide-visual {
  position: relative;
  width: 100%;
  max-width: 440px;
  justify-self: start;
  overflow: hidden;
  background: #f6f4f1;
  border-radius: 16px;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.balancing-guide-visual::after {
  position: absolute;
  inset: 0;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: inherit;
}

.balancing-guide-visual img {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: contain;
  background: #f6f4f1;
}

.balancing-guide-copy h3 {
  margin: 7px 0 14px;
  color: #fff;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.18;
}

.balancing-guide-copy > p:not(.product-type) {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.65;
}

.balancing-guide .product-type {
  color: #d7a0a9;
}

/* Erklärung der drei Schichten */

.layer-legend {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.layer-legend span {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 48px;
  padding: 9px 12px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 11px;
  font-size: 0.83rem;
}

.layer-legend strong {
  display: grid;
  flex: 0 0 28px;
  place-items: center;
  width: 28px;
  height: 28px;
  color: #fff;
  background: var(--accent, #7e1727);
  border-radius: 50%;
  font-size: 0.72rem;
}

/* Zwischenüberschrift */

.selection-guide-heading {
  max-width: 760px;
  margin-top: clamp(50px, 7vw, 76px);
}

.selection-guide-heading h3 {
  margin: 5px 0 11px;
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.15;
}

.selection-guide-heading > p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

/* Anwendungsblöcke */

.selection-cards {
  display: grid;
  gap: 18px;
  margin-top: 30px;
}

.selection-card {
  overflow: hidden;
  color: #171717;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 16px;
  box-shadow: 0 13px 30px rgba(0, 0, 0, 0.12);
}

.selection-card-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 17px;
  padding: 20px 23px;
  background: #f3f0ed;
}

.selection-number {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  color: #fff;
  background: #292929;
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 800;
}

.selection-card-header p {
  margin: 0 0 3px;
  color: var(--accent, #7e1727);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.selection-card-header h3 {
  margin: 0;
  color: #171717;
  font-size: 1.08rem;
  line-height: 1.25;
}

.selection-card-header div > span {
  display: block;
  margin-top: 4px;
  color: #686868;
  font-size: 0.81rem;
}

.selection-results {
  display: grid;
}

.selection-result {
  display: grid;
  grid-template-columns: minmax(130px, 0.9fr) 32px minmax(190px, 1.1fr);
  align-items: center;
  gap: 20px;
  padding: 17px 23px;
  border-top: 1px solid rgba(17, 17, 17, 0.08);
}

.selection-value {
  display: grid;
  gap: 3px;
}

.selection-value > span {
  color: #737373;
  font-size: 0.71rem;
}

.selection-value > strong {
  color: #202020;
  font-size: 1rem;
}

.selection-value > small {
  color: #747474;
  font-size: 0.7rem;
}

.selection-value-result > strong {
  color: var(--accent, #7e1727);
  font-size: 1.1rem;
}

.selection-result > svg {
  width: 21px;
  height: 21px;
  justify-self: center;
  fill: none;
  stroke: #9a9a9a;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.selection-result-focus {
  background:
    linear-gradient(
      90deg,
      rgba(126, 23, 39, 0.1),
      rgba(126, 23, 39, 0.025)
    );
  box-shadow: inset 4px 0 var(--accent, #7e1727);
}

.selection-result-focus .selection-value-result > strong {
  font-size: 1.32rem;
}

/* Hinweis und Kontaktbutton */

.balancing-guide-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  margin-top: 30px;
}

.balancing-guide-footer p {
  max-width: 750px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 0.86rem;
  line-height: 1.55;
}

.balancing-guide-footer p strong {
  color: #fff;
}

/* Button in der Gegenzug-Produktkarte */

.balancing-guide-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  width: fit-content;
  margin-top: 22px;
  padding: 13px 19px;
  color: #fff;
  background: var(--accent, #7e1727);
  border: 1px solid var(--accent, #7e1727);
  border-radius: 10px;
  font-size: 0.88rem;
  font-weight: 750;
  line-height: 1;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(126, 23, 39, 0.17);
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.balancing-guide-button svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.balancing-guide-button:hover {
  color: #fff;
  background: #691320;
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(126, 23, 39, 0.24);
}

.balancing-guide-button:focus-visible {
  outline: 3px solid rgba(126, 23, 39, 0.3);
  outline-offset: 3px;
}

/* Mobile Darstellung */

@media (max-width: 800px) {
  .balancing-guide-section {
    padding: 42px 0;
    scroll-margin-top: 90px;
  }

  .balancing-guide {
    padding: 29px 20px;
    border-radius: 18px;
  }

  .balancing-guide-intro {
    grid-template-columns: 1fr;
  }

  .balancing-guide-visual {
    width: min(100%, 440px);
    justify-self: center;
  }

  .balancing-guide-visual img {
    height: auto;
    max-height: 320px;
  }

  .balancing-guide-footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 650px) {
  .selection-card-header {
    align-items: start;
  }

  .selection-result {
    grid-template-columns: 1fr 24px 1fr;
    gap: 10px;
    padding: 16px 18px;
  }

  .selection-value-result {
    text-align: right;
  }

  .selection-result > svg {
    width: 18px;
    height: 18px;
  }
}

@media (max-width: 430px) {
  .selection-result {
    grid-template-columns: 1fr;
  }

  .selection-result > svg {
    display: none;
  }

  .selection-value-result {
    margin-top: 7px;
    padding-top: 10px;
    text-align: left;
    border-top: 1px solid rgba(17, 17, 17, 0.08);
  }
}

.map-link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 230px;
  padding: 30px;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(
      circle at 85% 15%,
      rgba(151, 33, 35, 0.4),
      transparent 34%
    ),
    linear-gradient(135deg, #292929, #151515);
  border-radius: 18px;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.map-link::after {
  position: absolute;
  right: 24px;
  bottom: 20px;
  width: 58px;
  height: 58px;
  content: "";
  background: url("schubert-s-mark.png") center / contain no-repeat;
  opacity: 0.12;
}

.map-link-kicker {
  margin-bottom: 5px;
  color: #d7a0a9;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.map-link > strong {
  color: #fff;
  font-size: 28px;
  line-height: 1.15;
}

.map-link-address {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
  line-height: 1.55;
}

.map-link-action {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  margin-top: 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
}

.map-link-action::after {
  position: absolute;
  right: 0;
  bottom: -5px;
  left: 0;
  height: 2px;
  content: "";
  background: #972123;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.map-link:hover {
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.17);
}

.map-link:hover .map-link-action::after {
  transform: scaleX(1);
}

.map-link:focus-visible {
  outline: 3px solid rgba(151, 33, 35, 0.45);
  outline-offset: 3px;
}

@media (max-width: 560px) {
  .map-link {
    min-height: 200px;
    padding: 24px;
  }

  .map-link > strong {
    font-size: 25px;
  }
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 18px 0 22px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.5;
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  margin: 2px 0 0;
  accent-color: var(--red);
  cursor: pointer;
}

.form-consent span {
  flex: 1;
  min-width: 0;
}

.form-consent a {
  color: var(--red);
  font-weight: 750;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cta-compact {
  padding: 42px 0 82px;
}

.cta-compact .cta-box {
  padding: clamp(30px, 4vw, 50px);
}

.cta-compact h2 {
  max-width: 720px;
  margin: 10px 0 16px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.05;
  letter-spacing: -.05em;
}

.cta-compact p:not(.kicker) {
  max-width: 670px;
  margin-bottom: 0;
}

@media (max-width: 560px) {
  .cta-compact {
    padding: 28px 0 60px;
  }

  .cta-compact h2 {
    font-size: clamp(28px, 8vw, 38px);
    line-height: 1.08;
  }
}

/* Mobile Navigation reparieren */
@media (max-width:1120px){

  body.nav-open .site-header{
    backdrop-filter:none;
    -webkit-backdrop-filter:none;
    background:transparent;
    border-bottom:0;
  }

  .main-nav{
    position:fixed;
    top:0;
    right:0;
    bottom:0;
    left:0;
    z-index:1000;
    width:100%;
    height:100vh;
    height:100dvh;
    padding:90px 24px 40px;
    overflow-y:auto;
    align-content:start;
    justify-items:center;
    background:var(--dark);
  }

  .main-nav.is-open{
    display:grid;
  }

  .main-nav a{
    display:block;
    width:100%;
    max-width:320px;
    padding:10px;
    text-align:center;
  }

  body.nav-open .nav-toggle{
    position:fixed;
    top:14px;
    right:14px;
    z-index:1001;
    color:#fff;
  }

  body.nav-open .nav-toggle span:first-child{
    transform:translateY(4.5px) rotate(45deg);
  }

  body.nav-open .nav-toggle span:last-child{
    transform:translateY(-4.5px) rotate(-45deg);
  }

  .nav-toggle span{
    transition:transform .2s ease;
  }

  body.nav-open .language-menu{
    visibility:hidden;
  }
}