/* === Base === */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; height: 100%; }
img { display: block; max-width: 100%; height: auto; }

:root{
  --bg: #000;
  --fg: #fff;
  --muted: #dcdadd;
  --accent: #c69c86; /* bronzy text color for headings/notes */
  --pill-bg: #f4efee;
  --pill-fg: #9e7f73;
  --radius-pill: 999px;
  --wrap: 680px;
}

body{
  background: var(--bg);
  color: var(--fg);
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  line-height: 1.6;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  display: flex;
  flex-direction: column;
}

/* === Banners / Brand === */
.banner{
  position: relative;
  overflow: hidden;
  background: #111;
}
.banner--top{
  aspect-ratio: 46/6.2;
}
.banner--bottom{
  margin: 0;
}
.banner img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.brand{
  position: absolute;
  left: clamp(16px, 6vw, 52px);
  top: clamp(12px, 5vw, 24px);
  margin: 0;
  font: 800 clamp(28px, 6.5vw, 64px) Montserrat, Inter, system-ui, sans-serif;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 24px rgba(0,0,0,.35);
}
.sparkles{
  position: absolute;
  left: clamp(16px, 6vw, 52px);
  top: clamp(64px, 12vw, 110px);
  font-size: clamp(18px, 3.5vw, 36px);
  opacity: .9;
}

/* === Main wrapper === */
.wrap{
  max-width: var(--wrap);
  margin: clamp(24px, 6vw, 56px) auto;
  padding: 0 16px;
  text-align: center;
  flex: 1; /* Inhalt füllt den Platz */
}

/* Section title */
.section-title{
  color: var(--accent);
  font-weight: 700;
  letter-spacing: .12em;
  font-size: clamp(16px, 2.2vw, 22px);
  margin: 0 0 clamp(20px, 5vw, 36px);
}

/* === Links: immer 1 Spalte für Buttons, 2. Spalte nur für Hinweise === */
.links{
  display: grid;
  grid-auto-flow: row;                 /* nacheinander je Zeile: Pill, dann Note */
  grid-template-columns: 1fr;          /* mobil: nur 1 Spalte */
  gap: clamp(14px, 2.8vw, 18px);
  justify-items: center;               /* mobil: Buttons zentriert */
  margin-bottom: clamp(30px, 6vw, 60px);
}

.pill{
  grid-column: 1;                      /* Button immer in Spalte 1 */
  width: 100%;                         /* füllt Spalte */
  max-width: 520px;                    /* opt. maximale Breite */
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  background: var(--pill-bg);
  color: var(--pill-fg);
  text-decoration: none;
  font-weight: 700;
  letter-spacing: .05em;
  box-shadow: 0 8px 28px rgba(255,255,255,.06);
  transition: transform .06s ease, filter .2s ease, opacity .2s ease;
}
.pill:hover{ transform: translateY(+1px); filter: brightness(0.75); }
.pill:active{ transform: translateY(0); opacity: .95; }

.note{
  font-size: 13px;
  /* color: var(--muted); */
  color: var(--accent);
  white-space: nowrap;
}
/* Desktop: zweite Spalte für Hinweise neben dem jeweiligen Link */
@media (min-width: 820px){
  .links{
    /* Spalte 1 dehnt sich, Spalte 2 ist so breit wie nötig */
    grid-template-columns: minmax(320px, 560px) auto;
    justify-items: stretch;            /* Buttons füllen Spalte 1 */
    column-gap: 15px;
  }
  .pill{ grid-column: 1; }
  .note{ grid-column: 2; align-self: center; justify-self: start; }
}

/* Mobile: Hinweise unter den zugehörigen Buttons */
@media (max-width: 819.98px){
  .note{
    grid-column: 1;           /* unter den Button */
    justify-self: center;
    margin-top: -10px;
	margin-bottom: 7px;
  }
}

/* Logos-Zeile */
.brand-logos{
  display:flex;
  justify-content:center;
  align-items:center;
  gap: clamp(16px, 3.5vw, 28px);
  margin: clamp(24px, 5vw, 50px) 0;
}
.brand-logos .logo{
  display:inline-flex;
  width: clamp(36px, 5vw, 54px);
  height: clamp(36px, 5vw, 54px);
  opacity: .9;
  transition: transform .08s ease, opacity .2s ease, filter .2s ease;
}
.brand-logos .logo:hover{ transform: translateY(-1px); opacity:1; }
.brand-logos img{
  width:100%; height:100%; object-fit: contain;
  /* Falls deine PNGs dunkel/farbig sind, macht das sie hell/weißlich auf Schwarz: */
  /* filter: invert(1) grayscale(1) brightness(1.2); */
  /* Wenn deine Dateien bereits weiß sind, kannst du die Filter deaktivieren: */
  /* filter: none; */
}

/* Footer */
.site-footer{
  text-align: center;
  font-size: 14px;
  color: #fff;
  margin-top: auto; /* Footer rutscht ans Ende */
}
.site-footer p{
  margin: 0 0 10px;
  letter-spacing: .08em;
  color: var(--accent);
}

/* Motion respect */
@media (prefers-reduced-motion: reduce){
  .pill{ transition: none !important; }
}
