/* ==========================================================
   GCG - German Card Grading — gemeinsames Stylesheet
   Design-Tokens identisch zu Label/Cert-Seite (siehe cert_seite_generator.py)
   ========================================================== */

:root {
  --schwarz: #0d0d0d;
  --orange: #d98f1c;
  --grau: #a1aabf;
  --creme: #f7f6f3;
  --weiss: #ffffff;
  --text: #1a1a1a;
  --text-mute: #6b6b6b;
  --max-breite: 1120px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--creme);
  color: var(--text);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, .display {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  line-height: 1.05;
  margin: 0;
  letter-spacing: 0.005em;
}

h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); }
h2 { font-size: clamp(2rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

p { margin: 0 0 1rem; max-width: 62ch; }
a { color: inherit; }

.wrapper {
  max-width: var(--max-breite);
  margin: 0 auto;
  padding: 0 28px;
}

/* ---------- Navigation ---------- */
header.nav {
  background: var(--schwarz);
  position: sticky;
  top: 0;
  z-index: 50;
}
.nav-innen {
  max-width: var(--max-breite);
  margin: 0 auto;
  padding: 14px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.nav-logo img { height: 40px; width: auto; }
.nav-logo span {
  color: var(--weiss);
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.15rem;
  letter-spacing: 0.03em;
}
.nav-links { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s;
}
.nav-links a:hover, .nav-links a.aktiv { color: var(--orange); }
.nav-links a.aktiv { border-bottom: 2px solid var(--orange); padding-bottom: 3px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--weiss);
  font-size: 1.6rem;
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 760px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--schwarz);
    flex-direction: column;
    gap: 0;
    padding: 10px 28px 20px;
  }
  .nav-links.offen { display: flex; }
  .nav-links a { padding: 12px 0; border-bottom: 1px solid #262626; }
  .nav-toggle { display: block; }
}

/* ---------- Hero mit Diagonale (Signatur-Element) ---------- */
.hero {
  position: relative;
  background: linear-gradient(115deg, var(--grau) 0%, var(--grau) 46%, var(--orange) 46%, var(--orange) 100%);
  overflow: hidden;
  padding: 90px 0 70px;
}
.hero-schwarz-keil {
  position: absolute; top: 0; left: 0; right: 0; height: 100%;
  background: var(--schwarz);
  clip-path: polygon(0 0, 38% 0, 30% 100%, 0 100%);
}
.hero-inhalt { position: relative; z-index: 2; max-width: 640px; }
.hero-logo {
  position: absolute;
  right: 50px;
  top: 50%;
  transform: translateY(-50%);
  height: 60%;
  max-height: 300px;
  width: auto;
  z-index: 1;
}
@media (max-width: 900px) { .hero-logo { display: none; } }
.hero-inhalt.hell { color: var(--weiss); }
.hero .kicker {
  display: inline-block;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.hero p.lead {
  font-size: 1.15rem;
  color: #e4e4e4;
  max-width: 52ch;
  margin-top: 18px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  transition: transform 0.12s, background 0.15s;
  border: 2px solid transparent;
}
.btn:hover { transform: translateY(-1px); }
.btn-primaer { background: var(--orange); color: var(--schwarz); }
.btn-primaer:hover { background: #c17f18; }
.btn-sekundaer { background: transparent; border-color: currentColor; color: inherit; }
.btn-reihe { display: flex; gap: 16px; margin-top: 34px; flex-wrap: wrap; }

/* ---------- Sektionen ---------- */
section { padding: 76px 0; }
section.dunkel { background: var(--schwarz); color: var(--weiss); }
section.creme { background: var(--creme); }
section.weiss { background: var(--weiss); }
.section-kopf { max-width: 640px; margin-bottom: 48px; }
.section-kopf p { color: var(--text-mute); font-size: 1.08rem; }
section.dunkel .section-kopf p { color: #aaa; }

/* ---------- Feature-Liste (kein Card-Grid mit Schatten - bewusst schlichte Liste) ---------- */
.merkmal-liste { display: grid; gap: 34px; grid-template-columns: repeat(2, 1fr); }
.merkmal {
  border-left: 3px solid var(--orange);
  padding-left: 20px;
}
.merkmal h3 { margin-bottom: 8px; }
.merkmal p { color: var(--text-mute); margin: 0; font-size: 0.98rem; }
section.dunkel .merkmal p { color: #999; }
@media (max-width: 700px) { .merkmal-liste { grid-template-columns: 1fr; } }

/* ---------- Coming-Soon-Banner ---------- */
.coming-soon {
  border: 2px dashed var(--orange);
  border-radius: 10px;
  padding: 28px 30px;
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: #fffaf0;
}
.coming-soon .tag {
  background: var(--orange); color: var(--schwarz);
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.05em;
  padding: 5px 11px; border-radius: 20px; white-space: nowrap;
}
.coming-soon h3 { margin-bottom: 6px; }
.coming-soon p { color: var(--text-mute); margin: 0; }

/* ---------- Preis-Kasten ---------- */
.preis-kasten {
  background: var(--schwarz); color: var(--weiss);
  border-radius: 14px;
  padding: 44px;
  position: relative;
  overflow: hidden;
}
.preis-kasten::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 220px; height: 220px;
  background: var(--orange);
  opacity: 0.15;
  transform: rotate(20deg);
}
.preis-zahl { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; font-size: clamp(2.6rem, 8vw, 4.2rem); color: var(--orange); line-height: 1; }
.preis-zahl small { font-size: 0.4em; color: #ccc; font-weight: 500; }
.preis-liste { list-style: none; padding: 0; margin: 26px 0; }
.preis-liste li { padding: 9px 0; border-bottom: 1px solid #262626; color: #ddd; }
.preis-liste li:last-child { border-bottom: none; }
.express-box {
  margin-top: 30px; padding-top: 26px; border-top: 1px solid #262626;
}
.express-box .preis-zahl { font-size: 2.4rem; }

/* ---------- Kontakt-Zeilen ---------- */
.kontakt-zeile { display: flex; align-items: center; gap: 16px; margin-bottom: 22px; }
.kontakt-zeile .punkt { width: 10px; height: 10px; border-radius: 50%; background: var(--orange); flex-shrink: 0; }
.kontakt-zeile a { text-decoration: none; font-size: 1.15rem; font-weight: 500; }

/* ---------- Footer ---------- */
footer {
  background: var(--schwarz);
  color: #999;
  padding: 50px 0 30px;
  font-size: 0.9rem;
}
.footer-grid { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 40px; margin-bottom: 34px; }
.footer-grid a { color: #ccc; text-decoration: none; }
.footer-grid a:hover { color: var(--orange); }
.footer-spalte h4 {
  color: var(--weiss); font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem; font-weight: 700; margin-bottom: 14px; letter-spacing: 0.03em;
}
.footer-spalte div { margin-bottom: 8px; }
.footer-unten {
  border-top: 1px solid #262626;
  padding-top: 22px;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px;
}

/* ---------- Utility ---------- */
.zentriert { text-align: center; }
.mono { font-family: 'DejaVu Sans Mono', monospace; }
