:root{
  --bg:#3b3f42;
  --bg2:#2f3336;
  --text:#f2f2f2;
  --muted:#cfcfcf;
  --accent:#d84a4a;
  --max:980px;
}
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: Arial, Helvetica, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.55;
}
a{color:var(--text); text-decoration:none}
a:hover{text-decoration:underline}
.container{
  width:min(var(--max), calc(100% - 48px));
  margin:0 auto;
}
.hero{
  position:relative;
  height: 260px;
  background-position:center;
  background-size:cover;
  border: 10px solid #e7e7e7;
  border-top:0;
  border-left:0;
  border-right:0;
}
.hero::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(to bottom, rgba(0,0,0,.25), rgba(0,0,0,.25));
  pointer-events:none;
}
.topbar{
  position:absolute;
  left:0; right:0; top:0;
  padding:14px 18px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  z-index:2;
  font-size:14px;
  text-shadow:0 1px 2px rgba(0,0,0,.6);
}
.topbar .right a{
  margin-left:18px;
  padding:6px 10px;
  background: rgba(0,0,0,.25);
  border-radius:3px;
}
.main{
  padding: 40px 0 20px;
}
h2, h3{
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  margin: 0 0 12px 0;
}
.section-title{
  text-transform: uppercase;
  letter-spacing:.06em;
  font-size: 18px;
}
.lead{
  font-weight:700;
  font-size: 13px;
  margin: 12px 0 10px 0;
}
p{
  margin: 0 0 12px 0;
  color: var(--muted);
  font-size: 13px;
}
p strong{color: var(--text)}
.spacer{height:34px}
.subhead{
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  margin-top: 18px;
  margin-bottom: 12px;
}
.bullets{
  margin: 0;
  padding-left: 22px;
  list-style: none;
}
.bullets li{
  position: relative;
  margin: 12px 0;
  padding-left: 16px;
  color: var(--text);
  font-weight: 700;
  font-size: 13px;
}
.bullets li::before{
  content:"■";
  position:absolute;
  left:0;
  top:0;
  color: var(--text);
  font-size: 12px;
  transform: translateY(3px);
}
.big-title{
  font-size: 34px;
  font-weight: 800;
  margin: 18px 0 20px;
  color: var(--text);
}
.portfolio{
  margin-top: 16px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  align-items:start;
}
.card img{
  width: 100%;
  height: 220px;
  object-fit: cover;
  display:block;
}
.card h4{
  margin: 16px 0 8px;
  font-size: 22px;
  letter-spacing:.03em;
  text-transform: uppercase;
}
.card .small{
  color: var(--muted);
  font-size: 13px;
  text-align:center;
  line-height:1.5;
  margin-top: 18px;
}
.footer{
  padding: 26px 0 34px;
}
.quote{
  text-align:center;
  font-style: italic;
  font-weight: 700;
  color: var(--text);
  margin: 20px auto 26px;
  max-width: 980px;
}
.contact{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items:center;
  padding: 20px 0 10px;
}
.contact img{
  width: 320px;
  max-width: 100%;
  display:block;
  margin: 0 auto;
}
.contact .block{
  text-align:center;
}
.contact .block h3{
  font-family: Arial, Helvetica, sans-serif;
  text-decoration: underline;
  font-size: 26px;
  margin-bottom: 10px;
}
.contact .block .name{
  font-weight: 800;
  font-size: 18px;
}
.contact .block .line{
  color: var(--text);
  margin: 6px 0;
}
.contact .block a{font-weight:700}

.impressum-body{
  padding: 32px 0 60px;
  text-align:center;
}
.impressum-body .line{
  margin: 10px 0;
  font-size: 18px;
  color: var(--text);
}
.impressum-body .muted{color: var(--muted)}
.impressum-body .title{
  font-weight: 800;
}
.hr{
  height: 0;
  border-top: 1px solid rgba(255,255,255,.15);
  margin: 26px 0;
}

/* Responsive */
@media (max-width: 900px){
  .hero{height: 220px}
  .portfolio{grid-template-columns: 1fr; gap: 18px}
  .card img{height: 240px}
  .contact{grid-template-columns: 1fr; text-align:center}
  .big-title{font-size: 30px}
}
@media (max-width: 520px){
  .topbar{font-size: 12px}
  .topbar .right a{margin-left:10px}
  .container{width: calc(100% - 28px)}
  .big-title{font-size: 26px}
  .card h4{font-size: 20px}
}
