:root{
  --red:#d71920;
  --ink:#111214;
  --line:rgba(17,18,20,.12);
  --sea:#0f6f8f;
}
*{box-sizing:border-box}
body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--ink);
  background:
    radial-gradient(circle at 88% 15%,rgba(215,25,32,.10),transparent 28%),
    radial-gradient(circle at 12% 92%,rgba(15,111,143,.12),transparent 30%),
    linear-gradient(135deg,#fbfaf7,#ece7de);
  min-height:100vh;
}
.page{
  width:min(1240px,calc(100% - 48px));
  margin:0 auto;
  padding:52px 0 34px;
}
.hero{
  margin-bottom:50px;
}
.brand{
  width:230px;
  height:auto;
  margin-bottom:62px;
}
h1{
  margin:0;
  font-size:clamp(54px,8vw,104px);
  line-height:.94;
  letter-spacing:-4px;
  font-weight:650;
}
.hero p{
  margin:24px 0 0;
  max-width:650px;
  font-size:23px;
  line-height:1.5;
  color:#454545;
}
.cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.card{
  min-height:500px;
  padding:34px;
  border-radius:30px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.84);
  box-shadow:0 28px 90px rgba(0,0,0,.08);
  color:inherit;
  text-decoration:none;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  overflow:hidden;
  position:relative;
  transition:transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.card:after{
  content:"";
  position:absolute;
  right:-70px;
  bottom:-80px;
  width:230px;
  height:230px;
  border-radius:50%;
  background:rgba(215,25,32,.10);
}
.card:hover{
  transform:translateY(-7px);
  box-shadow:0 36px 120px rgba(0,0,0,.14);
  border-color:rgba(215,25,32,.38);
}
.logo-box{
  height:175px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  position:relative;
  z-index:1;
  overflow:visible;
}
.logo{
  display:block;
  max-width:100%;
  max-height:170px;
  object-fit:contain;
}
.logo-druckerei{
  width:360px;
  max-width:96%;
}
.logo-borkum{
  width:380px;
  max-width:98%;
  mix-blend-mode:multiply;
}
.logo-arndt{
  width:360px;
  max-width:98%;
}
.text{
  position:relative;
  z-index:1;
}
.text span{
  display:block;
  margin-bottom:16px;
  color:var(--red);
  font-size:12px;
  text-transform:uppercase;
  letter-spacing:2px;
  font-weight:800;
}
.card-borkum .text span,
.card-borkum strong{
  color:var(--sea);
}
.card h2{
  margin:0 0 16px;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-1px;
}
.card p{
  margin:0;
  font-size:17px;
  line-height:1.55;
  color:#484848;
  min-height:84px;
}
.card strong{
  position:relative;
  z-index:1;
  margin-top:34px;
  display:block;
  color:var(--red);
  font-size:14px;
  letter-spacing:.8px;
  text-transform:uppercase;
}
.card-external:after{
  background:rgba(70,70,70,.10);
}
.card-external strong{
  color:#777;
}
.card-borkum:after{
  background:rgba(15,111,143,.12);
}
footer{
  display:flex;
  justify-content:space-between;
  gap:20px;
  margin-top:42px;
  color:#666;
  font-size:14px;
}
@media(max-width:1050px){
  .cards{grid-template-columns:1fr}
  .card{min-height:auto}
  .logo-box{
    height:auto;
    min-height:150px;
    margin-bottom:34px;
  }
  .logo-druckerei,.logo-arndt,.logo-borkum{
    width:min(520px,100%);
  }
}
@media(max-width:620px){
  .page{width:min(100% - 28px,1240px);padding-top:34px}
  .brand{width:210px;margin-bottom:48px}
  h1{letter-spacing:-2px}
  .hero p{font-size:19px}
  .card{padding:26px;border-radius:24px}
  .logo-box{min-height:120px}
  .card p{min-height:0}
  footer{flex-direction:column}
}


/* Finale Korrektur Logos + Markenakzente */
.card{
  overflow:hidden;
}
.logo-box{
  height:210px !important;
  min-height:210px !important;
  align-items:center !important;
  overflow:visible !important;
}
.logo{
  object-fit:contain !important;
  display:block !important;
}
.logo-druckerei{
  width:100% !important;
  max-width:100% !important;
  max-height:190px !important;
}
.logo-borkum{
  width:112% !important;
  max-width:112% !important;
  max-height:205px !important;
  margin-left:-6% !important;
}
.logo-arndt{
  width:100% !important;
  max-width:100% !important;
  max-height:185px !important;
}
.card:before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  right:0;
  height:5px;
  z-index:2;
}
.card-main:before{
  background:#d71920;
}
.card-borkum:before{
  background:#0f6f8f;
}
.card-external:before{
  background:#d5b442;
}
@media(max-width:1050px){
  .logo-box{
    height:auto !important;
    min-height:170px !important;
  }
  .logo-druckerei{
    width:100% !important;
    max-height:210px !important;
  }
  .logo-borkum{
    width:106% !important;
    max-width:106% !important;
    margin-left:-3% !important;
    max-height:230px !important;
  }
  .logo-arndt{
    width:100% !important;
    max-height:210px !important;
  }
}
@media(max-width:620px){
  .logo-box{
    min-height:145px !important;
  }
  .logo-druckerei{
    width:110% !important;
    max-width:110% !important;
    margin-left:-5% !important;
  }
  .logo-borkum{
    width:112% !important;
    max-width:112% !important;
    margin-left:-6% !important;
  }
}


/* Finale Logo-Korrektur Druckerei + Arndt Text */
.logo-box{
  overflow:visible !important;
}
.logo-druckerei{
  width:82% !important;
  max-width:82% !important;
  max-height:165px !important;
  margin-left:0 !important;
  object-fit:contain !important;
}
.card-main .logo-box{
  justify-content:flex-start !important;
  padding-right:28px !important;
}
.card-external .text span:empty{
  display:none !important;
}
@media(max-width:1050px){
  .logo-druckerei{
    width:78% !important;
    max-width:78% !important;
    max-height:185px !important;
  }
}
@media(max-width:620px){
  .logo-druckerei{
    width:88% !important;
    max-width:88% !important;
    margin-left:0 !important;
    max-height:160px !important;
  }
}


/* Logo-Frame endgültig vergrößert */
.card-main .logo-box{
  height:240px !important;
  min-height:240px !important;
  width:100% !important;
  overflow:visible !important;
  padding-right:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
}

.logo-druckerei{
  width:115% !important;
  max-width:none !important;
  max-height:220px !important;
  margin-left:0 !important;
  object-fit:contain !important;
}

@media(max-width:1050px){
  .card-main .logo-box{
    height:220px !important;
    min-height:220px !important;
  }
  .logo-druckerei{
    width:112% !important;
    max-width:none !important;
    max-height:210px !important;
  }
}

@media(max-width:620px){
  .card-main .logo-box{
    height:190px !important;
    min-height:190px !important;
  }
  .logo-druckerei{
    width:112% !important;
    max-width:none !important;
    max-height:180px !important;
  }
}


/* Druckerei-Logo als PNG: optisch größer und gleichwertig */
.card-main{
  overflow:hidden !important;
}

.card-main .logo-box{
  height:230px !important;
  min-height:230px !important;
  width:100% !important;
  overflow:visible !important;
  padding-right:0 !important;
  display:flex !important;
  align-items:center !important;
  justify-content:flex-start !important;
}

.logo-druckerei{
  width:128% !important;
  max-width:none !important;
  max-height:225px !important;
  margin-left:-4% !important;
  object-fit:contain !important;
}

@media(max-width:1050px){
  .card-main .logo-box{
    height:230px !important;
    min-height:230px !important;
  }
  .logo-druckerei{
    width:118% !important;
    max-width:none !important;
    max-height:220px !important;
    margin-left:-3% !important;
  }
}

@media(max-width:620px){
  .card-main .logo-box{
    height:185px !important;
    min-height:185px !important;
  }
  .logo-druckerei{
    width:118% !important;
    max-width:none !important;
    max-height:178px !important;
    margin-left:-3% !important;
  }
}


/* Edge-Fix: Logos dürfen nicht mehr angeschnitten werden */
.card{
  overflow:hidden !important;
}

.logo-box{
  width:100% !important;
  min-height:210px !important;
  height:auto !important;
  overflow:visible !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
}

.card-main .logo-box{
  justify-content:flex-start !important;
  padding-right:0 !important;
}

.logo-druckerei{
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
  max-height:190px !important;
  object-fit:contain !important;
  object-position:left center !important;
  margin-left:0 !important;
  margin-right:0 !important;
  display:block !important;
}

.logo-borkum{
  width:104% !important;
  max-width:104% !important;
  height:auto !important;
  max-height:205px !important;
  object-fit:contain !important;
}

.logo-arndt{
  width:100% !important;
  max-width:100% !important;
  height:auto !important;
  max-height:190px !important;
  object-fit:contain !important;
}

@media(max-width:1050px){
  .logo-box{
    min-height:190px !important;
  }
  .logo-druckerei{
    width:100% !important;
    max-width:100% !important;
    max-height:185px !important;
  }
}

@media(max-width:620px){
  .logo-box{
    min-height:155px !important;
  }
  .logo-druckerei{
    width:100% !important;
    max-width:100% !important;
    max-height:150px !important;
  }
}
