:root {
  --pink: #e6007e;
  --pink-dark: #b8005f;
  --magenta: #f40470;
  --black: #1a1a1a;
  --gray: #6b6b6b;
  --light: #f5f5f5;
  --eggshell: #F4F1EA;
  --green: #2d7a3f;
  --radius: 14px;
  --radius-small: 10px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html, body { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Futura', 'Futura PT', 'Trebuchet MS', system-ui, sans-serif;
  color: var(--black);
  background: white;
  min-height: 100vh;
  line-height: 1.45;
}

/* === Header === */
.site-header {
  padding: 1.2rem 1.5rem;
  border-bottom: 2px solid var(--black);
}
.brand { display: flex; align-items: center; gap: 0.8rem; }
.logo-box {
  border: 2px solid var(--black); border-radius: var(--radius);
  padding: 0.3rem 0.6rem; flex-shrink: 0;
}
.logo-box img { height: 2.6rem; display: block; }
.brand-title {
  font-size: 1.05rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.04em; line-height: 1.1;
}
.brand-sub {
  font-size: 0.78rem; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.06em;
  margin-top: 0.15rem;
}

/* === Hero === */
.hero {
  padding: 2.5rem 1.5rem 1.5rem;
  max-width: 64rem; margin: 0 auto;
}
.hero h1 {
  font-size: 2.6rem; font-weight: 900;
  line-height: 1.05; margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}
.hero .lead {
  font-size: 1.05rem; color: var(--gray);
  max-width: 38rem; line-height: 1.5;
}

/* === Cards === */
.cards {
  padding: 1.5rem;
  max-width: 64rem; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr));
  gap: 1.2rem;
}
.loading-state {
  grid-column: 1 / -1;
  text-align: center; color: var(--gray);
  padding: 3rem 1rem;
}

.card {
  border: 2px solid var(--black); border-radius: var(--radius);
  background: white; overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform 0.15s, box-shadow 0.15s;
}
.card:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.07); }
.card-archiv { opacity: 0.85; }

.card-preview {
  background: var(--eggshell);
  aspect-ratio: 4 / 3;
  display: flex; align-items: center; justify-content: center;
  border-bottom: 2px solid var(--black);
  position: relative;
}
.preview-empty {
  color: var(--gray); font-size: 0.85rem;
  text-transform: uppercase; letter-spacing: 0.1em;
}
.preview-strip {
  display: grid; grid-template-columns: 1fr 1fr;
  width: 100%; height: 100%;
}
.preview-tile {
  background-size: cover; background-position: center;
  border-right: 1px solid rgba(255,255,255,0.6);
  border-bottom: 1px solid rgba(255,255,255,0.6);
}
.preview-tile:nth-child(2n) { border-right: none; }
.preview-tile:nth-last-child(-n+2) { border-bottom: none; }
.preview-count {
  position: absolute; bottom: 0.6rem; right: 0.6rem;
  background: var(--black); color: white;
  padding: 0.25rem 0.55rem; border-radius: var(--radius-small);
  font-size: 0.7rem; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.05em;
}

.card-body { padding: 1rem 1.1rem 1.1rem; flex: 1; display: flex; flex-direction: column; }
.card-meta {
  display: flex; gap: 0.4rem; align-items: center; flex-wrap: wrap;
  font-size: 0.72rem; color: var(--gray);
  text-transform: uppercase; letter-spacing: 0.08em;
  margin-bottom: 0.5rem; font-weight: 700;
}
.card-meta .dot { color: var(--gray); }
.status {
  padding: 0.15rem 0.5rem; border-radius: var(--radius-small);
  font-weight: 900;
}
.status-in-vorbereitung { background: #fff4d6; color: #a07000; border: 1px solid #d4a400; }
.status-live { background: #d9efdf; color: var(--green); border: 1px solid var(--green); }
.status-archiv { background: var(--light); color: var(--gray); border: 1px solid var(--gray); }

.card-title {
  font-size: 1.3rem; font-weight: 900;
  line-height: 1.15; margin-bottom: 0.15rem;
}
.card-subtitle {
  font-size: 0.85rem; color: var(--pink); font-weight: 700;
  margin-bottom: 0.6rem;
}
.card-desc {
  font-size: 0.92rem; color: var(--black);
  line-height: 1.45; flex: 1;
}

.card-links {
  display: flex; gap: 0.4rem; flex-wrap: wrap;
  margin-top: 0.9rem;
}
.card-links a {
  text-decoration: none; font-family: inherit;
  font-weight: 900; font-size: 0.74rem;
  text-transform: uppercase; letter-spacing: 0.05em;
  padding: 0.45rem 0.7rem;
  border-radius: var(--radius-small);
  border: 2px solid var(--black);
  background: white; color: var(--black);
  transition: all 0.12s;
}
.card-links a:hover { background: var(--pink); color: white; border-color: var(--pink); }
.card-links .link-primary {
  background: var(--pink); color: white; border-color: var(--pink);
}
.card-links .link-primary:hover { background: white; color: var(--pink); }

/* === Footer === */
.site-footer {
  border-top: 2px solid var(--black);
  margin-top: 3rem; padding: 1.5rem;
  display: flex; flex-wrap: wrap; gap: 1rem;
  justify-content: space-between;
  font-size: 0.8rem; color: var(--gray);
}
.site-footer a { color: var(--pink); font-weight: 700; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

/* === Mobile === */
@media (max-width: 640px) {
  .hero h1 { font-size: 2rem; }
  .hero .lead { font-size: 0.95rem; }
  .cards { grid-template-columns: 1fr; gap: 1rem; padding: 1rem; }
  .brand-title { font-size: 0.95rem; }
}
