:root{
  --bg:#080808;
  --text:#f3f3ee;
  --muted:#92928c;
  --line:rgba(255,255,255,.09);
  --yellow:#ffd100;
  --max:1320px;
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:
    radial-gradient(circle at 82% 7%,rgba(255,209,0,.055),transparent 24%),
    var(--bg);
  color:var(--text);
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Helvetica,Arial,sans-serif;
  -webkit-font-smoothing:antialiased;
}

a{color:inherit}

.site-header{
  width:min(calc(100% - 64px),var(--max));
  height:116px;
  margin:0 auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
}

.brand,.footer-brand{
  display:block;
  width:340px;
}

.brand img,.footer-brand img{
  display:block;
  width:100%;
  height:auto;
}

.back-link{
  display:flex;
  align-items:center;
  gap:9px;
  color:#9b9b95;
  font-size:12px;
  font-weight:700;
  text-decoration:none;
  transition:.2s ease;
}

.back-link span{color:var(--yellow)}

.back-link:hover{
  color:var(--yellow);
  gap:13px;
}

main{
  width:min(calc(100% - 64px),var(--max));
  margin:0 auto;
}

.impressum{
  min-height:680px;
  padding:105px 0 125px;
}

.eyebrow{
  margin:0 0 28px;
  display:flex;
  align-items:center;
  gap:12px;
  color:#8c8c86;
  font-size:11px;
  font-weight:800;
  letter-spacing:.16em;
  text-transform:uppercase;
}

.eyebrow span{
  width:34px;
  height:2px;
  background:var(--yellow);
  box-shadow:0 0 12px rgba(255,209,0,.2);
}

h1{
  margin:0 0 68px;
  font-size:clamp(76px,9vw,140px);
  line-height:.84;
  letter-spacing:-.075em;
}

h1 span{color:var(--yellow)}

.impressum-content{
  max-width:760px;
  padding-top:34px;
  border-top:1px solid var(--line);
}

.impressum-content p{
  margin:0 0 13px;
  color:#aaa9a3;
  font-size:17px;
  line-height:1.65;
}

.impressum-content strong{
  color:var(--text);
  font-size:22px;
  font-weight:720;
}

.impressum-content a{
  color:#d8d8d2;
  text-decoration:none;
  border-bottom:1px solid rgba(255,209,0,.28);
  transition:color .2s ease,border-color .2s ease;
}

.impressum-content a:hover{
  color:var(--yellow);
  border-color:var(--yellow);
}

.footer{
  width:min(calc(100% - 64px),var(--max));
  min-height:230px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:38px;
  border-top:1px solid var(--line);
}

.footer-brand{
  justify-self:start;
  width:340px;
  overflow:visible;
  text-decoration:none;
}

.footer-brand img{
  width:340px;
  height:auto;
}

.footer-legal{
  justify-self:center;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
  padding:8px;
  border:1px solid rgba(255,255,255,.08);
  border-radius:999px;
  background:rgba(255,255,255,.025);
}

.footer-legal a{
  padding:12px 18px;
  border-radius:999px;
  color:#b9b9b4;
  font-size:15px;
  font-weight:720;
  letter-spacing:-.015em;
  text-decoration:none;
  white-space:nowrap;
  transition:color .25s ease,background .25s ease,transform .25s ease;
}

.footer-legal a:hover{
  color:#090909;
  background:var(--yellow);
  transform:translateY(-1px);
}

.footer-copy{
  justify-self:end;
  color:#666;
  font-size:11px;
  text-align:right;
}

@media(max-width:760px){
  .site-header,
  main,
  .footer{
    width:min(calc(100% - 36px),var(--max));
  }

  .site-header{height:92px}

  .brand,.footer-brand{width:225px}

  .back-link{font-size:0}
  .back-link span{font-size:16px}

  .impressum{
    min-height:auto;
    padding:76px 0 90px;
  }

  h1{
    margin-bottom:48px;
    font-size:clamp(60px,18vw,88px);
  }

  .impressum-content{
    padding-top:28px;
  }

  .impressum-content p{
    font-size:15px;
    overflow-wrap:anywhere;
  }

  .impressum-content strong{font-size:20px}

  .footer{
    padding:58px 0;
    min-height:auto;
    grid-template-columns:1fr;
    justify-items:center;
    align-items:center;
    gap:30px;
  }

  .footer-brand{
    justify-self:center;
    width:225px;
  }

  .footer-brand img{width:225px}

  .footer-legal{
    justify-self:center;
    max-width:100%;
    padding:7px;
    gap:5px;
    flex-wrap:wrap;
  }

  .footer-legal a{
    padding:10px 13px;
    font-size:13px;
  }

  .footer-copy{
    justify-self:center;
    text-align:center;
  }
}
