/* Corporate Branding – Martin Luhm (externes CSS)
   Leitfarben: #94c01b (Green) | #565655 (Gray)
   Font: Lato / Myriad Pro Regular (Fallbacks)
*/

:root{
  --green:#94c01b;
  --gray:#565655;
  --dark:#2d2d30;
  --muted:#6f6f6f;
  --line:#e7e7e7;
  --bg:#ffffff;

  --font: Lato, "Myriad Pro Regular", "Myriad Pro", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  --radius:18px;
  --shadow:0 14px 40px rgba(0,0,0,.10);
  --max:1200px;
}

*{box-sizing:border-box}
body{
  margin:0;
  font: 400 15px/1.8 var(--font);
  color:#777;
  background:
    radial-gradient(1200px 500px at 50% -60px, rgba(148,192,27,.22), rgba(148,192,27,0) 60%),
    linear-gradient(180deg, rgba(45,45,48,.06), rgba(45,45,48,0) 380px),
    var(--bg);
}

.wrap{max-width:var(--max); margin:0 auto; padding:22px 16px 70px}

.topbar{
  position:sticky; top:0; z-index:50;
  background:rgba(45,45,48,.92);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.topbar-inner{
  max-width:var(--max);
  margin:0 auto;
  padding:10px 16px;
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.brand{
  display:flex; align-items:center; gap:12px; min-width:0;
  color:var(--green);
  letter-spacing:2px;
  font-size:12px;
  text-transform:uppercase;
}
.brand .mark{
  width:46px; height:32px; border-radius:10px;
  background:rgba(148,192,27,.16);
  border:1px solid rgba(148,192,27,.35);
  display:grid; place-items:center; overflow:hidden;
}
.brand .mark img{width:100%; height:100%; object-fit:contain}
.brand .title{font-weight:700; white-space:nowrap; overflow:hidden; text-overflow:ellipsis}

.nav{
  display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end;
  color:var(--green);
  font-size:12px;
  letter-spacing:2px;
}
.nav a{
  color:var(--green);
  text-decoration:none;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(148,192,27,.25);
  background:rgba(0,0,0,.10);
}
.nav a:hover{background:rgba(148,192,27,.16)}

.hero{
  margin-top:18px;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--line);
  box-shadow:var(--shadow);
  background:
    linear-gradient(135deg, rgba(148,192,27,.18), rgba(86,86,85,.08)),
    #fff;
}
.hero-inner{
  padding:28px 18px;
  display:grid;
  grid-template-columns:1fr;
  gap:14px;
}
@media (min-width: 920px){
  .hero-inner{grid-template-columns: 1.2fr .8fr; align-items:center}
}
.hero h1{
  margin:0 0 6px;
  color:#111;
  font-size:30px;
  letter-spacing:2px;
  text-transform:uppercase;
}
.hero p{margin:0; color:#555; font-size:14px}

.pillrow{margin-top:14px; display:flex; gap:10px; flex-wrap:wrap}
.pill{
  display:inline-flex; align-items:center; gap:8px;
  font-size:12px;
  color:var(--gray);
  padding:8px 10px;
  border-radius:999px;
  background:#fff;
  border:1px solid var(--line);
}
.dot{width:10px; height:10px; border-radius:50%; background:var(--green)}
.kbd{
  font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
  font-size:12px;
  padding:2px 6px;
  border:1px solid var(--line);
  border-radius:8px;
  background:#fafafa;
  color:#333;
}

h2{
  margin:28px 0 10px;
  color:#111;
  font-size:18px;
  letter-spacing:2px;
  text-transform:uppercase;
}

.card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:16px 16px;
  color:#555;
}
.card b{color:#111}
.mini{color:var(--muted); font-size:12px}

.grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:14px;
}
@media (min-width: 920px){
  .grid{grid-template-columns: 1fr 1fr}
}

.swatches{display:flex; gap:12px; flex-wrap:wrap}
.swatch{width:240px; border:1px solid var(--line); border-radius:16px; overflow:hidden; background:#fff}
.swatch .chip{height:64px}
.swatch .meta{padding:10px 12px}
.swatch .meta b{display:block; color:#111; font-size:13px}
.swatch .meta span{display:block; color:var(--muted); font-size:12px; margin-top:2px}

.gallery{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:12px;
}
@media (min-width: 920px){
  .gallery{grid-template-columns: 1fr 1fr 1fr 1fr}
}
.asset{
  margin:0;
  border:1px dashed rgba(86,86,85,.45);
  border-radius:16px;
  overflow:hidden;
  background:#fafafa;
  display:flex;
  flex-direction:column;
  min-height:220px;
}
.asset .thumb{
  aspect-ratio:4/3;
  display:grid;
  place-items:center;
  background: linear-gradient(180deg, rgba(45,45,48,.06), rgba(45,45,48,0));
}
.asset img{width:100%; height:100%; object-fit:cover; display:block}
.asset figcaption{
  padding:10px 12px;
  border-top:1px solid rgba(0,0,0,.06);
  background:#fff;
}
.asset .name{font-weight:700; color:#111; font-size:13px; line-height:1.25}
.asset .file{font-size:12px; color:var(--muted); word-break:break-word}

.hr{height:1px; background:var(--line); margin:14px 0}
.prose{white-space:pre-wrap; color:#555}

footer{
  margin-top:24px;
  padding:18px 6px 0;
  color:var(--muted);
  font-size:12px;
}
