/* ═══════════════════════════════════════════════
   Buchner Stanzformen – Shared Stylesheet
   ═══════════════════════════════════════════════ */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy:   #0D1B2A;
  --steel:  #1a3a1f;
  --accent: #287233;
  --mid:    #64748B;
  --border: #E2E8F0;
  --light:  #F4F9F5;
  --white:  #FFFFFF;
}

body {
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
}

/* ── HERO ── */
.hero {
  position: relative;
  background-size: cover;
  background-position: center 30%;
  color: var(--white);
  padding: 56px 48px 80px;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(13,27,42,0.88) 50%, rgba(26,58,31,0.70) 100%);
  z-index: 0;
}
.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
}
.hero-logo { margin-bottom: 28px; }
.hero-logo img { height: 56px; width: auto; }
.hero .label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8EC99A;
  margin-bottom: 24px;
}
.hero h1 {
  font-size: clamp(26px, 3.5vw, 44px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.6);
  max-width: 580px;
  line-height: 1.7;
}

/* ── DIVIDER ── */
hr { border: none; border-top: 1px solid var(--border); }

/* ── SECTION LABEL ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 40px;
  display: block;
}

/* ── CARD GRID (shared base) ── */
.card-grid {
  display: grid;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}

/* ── SPEC CARDS (Kampagne) ── */
.specs-section {
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 48px;
}
.spec-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.spec-card {
  background: var(--white);
  padding: 36px 32px;
}
.spec-card h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}
.spec-card .value {
  font-size: 17px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}
.spec-card p {
  font-size: 14px;
  color: var(--mid);
  line-height: 1.65;
}
.spec-card .detail {
  margin-top: 16px;
  font-size: 12px;
  color: var(--accent);
  background: #E8F3EA;
  padding: 6px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* ── PRODUKT-BILDER (Kampagne) ── */
.produkt-bilder {
  max-width: 1040px;
  margin: 0 auto;
  display: flex;
  gap: 32px;
  align-items: flex-end;
  justify-content: center;
}
.produkt-bilder figure { margin: 0; }
.produkt-bilder img {
  height: 420px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  display: block;
}
.produkt-bilder figcaption {
  margin-top: 14px;
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ── PRODUKT CARDS (Homepage) ── */
.produkte {
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 48px;
}
.produkt-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.produkt-card {
  background: var(--white);
  display: flex;
  flex-direction: column;
}
.produkt-card .card-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
.produkt-card .card-body {
  padding: 28px 32px 32px;
  flex: 1;
}
.produkt-card h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 16px;
}
.check-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--navy);
  line-height: 1.4;
}
.check-list li .dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 6px;
}

/* ── RELEVANZ ── */
.relevanz {
  background: var(--light);
  padding: 64px 48px;
}
.relevanz-inner {
  max-width: 1040px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.relevanz h2 {
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 20px;
}
.relevanz p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}
.relevanz p + p { margin-top: 14px; }
.fact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 15px;
  line-height: 1.5;
}
.fact-list li .dot {
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  margin-top: 8px;
}
.fact-list li strong { display: block; font-weight: 600; }
.fact-list li span { color: var(--mid); font-size: 13px; }

/* ── MUSTER FORM (Kampagne) ── */
.muster {
  max-width: 1040px;
  margin: 0 auto;
  padding: 72px 48px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.muster h2 {
  font-size: clamp(18px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 16px;
}
.muster p {
  font-size: 15px;
  color: var(--mid);
  line-height: 1.7;
}
.muster-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.muster-form input,
.muster-form textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid var(--border);
  border-radius: 7px;
  font-size: 14px;
  font-family: inherit;
  color: var(--navy);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s;
}
.muster-form input:focus,
.muster-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(37,99,235,0.1);
}
.muster-form textarea { resize: vertical; min-height: 90px; }
.muster-form button {
  padding: 14px 28px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 7px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: background 0.15s;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.muster-form button:hover { background: var(--steel); }
.muster-form .note { font-size: 12px; color: var(--mid); }

/* ── KONTAKT BAR ── */
.kontakt {
  background: var(--navy);
  color: var(--white);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.kontakt-person {
  display: flex;
  align-items: center;
  gap: 16px;
}
.kontakt-person img {
  width: 84px;
  height: 84px;
  border-radius: 50%;
  object-fit: cover;
  filter: grayscale(20%);
  flex-shrink: 0;
}
.kontakt-person strong { display: block; font-size: 15px; font-weight: 700; }
.kontakt-person .role { font-size: 12px; color: rgba(255,255,255,0.5); margin-bottom: 6px; }
.kontakt-person span { font-size: 13px; color: rgba(255,255,255,0.5); }
.kontakt-person .links { display: flex; flex-direction: column; gap: 2px; }
.kontakt-person .links a,
.kontakt-links a {
  color: #8EC99A;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.7;
}
.kontakt-person .links a:hover,
.kontakt-links a:hover { color: var(--white); }
.kontakt-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.kontakt-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.12);
  flex-shrink: 0;
}
.kontakt-address {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  line-height: 1.6;
}
.kontakt-address strong {
  display: block;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 2px;
}

/* ── CONTENT PAGES (Impressum / Datenschutz) ── */
.content {
  max-width: 720px;
  margin: 0 auto;
  padding: 64px 48px;
}
.content h2 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-top: 48px;
  margin-bottom: 16px;
}
.content h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 32px;
  margin-bottom: 10px;
}
.content h2:first-child,
.content h3:first-child { margin-top: 0; }
.content p {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.75;
  margin-top: 12px;
}
.content p:first-child { margin-top: 0; }
.content ul { margin-top: 12px; padding-left: 20px; }
.content ul li { font-size: 15px; line-height: 1.75; margin-bottom: 6px; }
.content a { color: var(--accent); text-decoration: none; }
.content a:hover { text-decoration: underline; }

/* ── FOOTER ── */
footer {
  background: #060F1A;
  color: rgba(255,255,255,0.3);
  padding: 20px 48px;
  font-size: 12px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
}
footer a { color: rgba(255,255,255,0.3); text-decoration: none; }
footer a:hover { color: rgba(255,255,255,0.6); }

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .hero, .specs-section, .produkte, .relevanz, .muster, .kontakt, .content, footer {
    padding-left: 24px;
    padding-right: 24px;
  }
  .relevanz-inner, .muster {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .produkt-grid {
    grid-template-columns: 1fr;
  }
  .kontakt { flex-direction: column; gap: 24px; }
  .kontakt-divider { width: 100%; height: 1px; }
  .produkt-bilder {
    flex-direction: column;
    align-items: stretch;
  }
  .produkt-bilder img {
    height: auto !important;
    width: 100% !important;
  }
}
