/* SCHORLEWETTER — Design-System
   Farben und Typografie: docs/farben-typografie.md (Schema „Sonnen-Gold 2c", maßgeblich).
   Layout und Komponenten: docs/konzept-v2.html.

   Regeln: keine border-radius, keine Schatten (harte Kanten sind Marke),
   nie Opacity auf Text, immer explizite Hex-Werte, Fließtext min. 16px. */

:root {
  --sw-papier:    #F0ECDE;  /* Karten- und Flächenhintergrund */
  --sw-desk:      #DDD8C6;  /* Seitenhintergrund */
  --sw-karte:     #E6E0CD;  /* Motiv-Kacheln */
  --sw-ink:       #2E3A26;  /* Rebengrün — Text, Rahmen, Logo */
  --sw-gold:      #BF8A2C;  /* Sonnengold — Akzent, Logo PFALZ, Stempel, Links */
  --sw-gold-hell: #E7C069;  /* Gold auf dunkelgrünem Grund */
  --sw-linie:     #CFC7AE;  /* 120px-Raster, Trennlinien */
  --sw-muted:     #5C614C;  /* Sekundärtext */
  --sw-ph-hell:   #E6E0CD;  /* Schraffur-Fläche hell */
  --sw-ph-dunkel: #DDD6BF;  /* Schraffur-Fläche dunkel */
  --sw-ph-rand:   #9E8F6E;  /* gestrichelter Platzhalter-Rand */

  --display: 'Barlow Condensed', 'Oswald', 'Avenir Next Condensed', 'Arial Narrow', sans-serif;
  --text:    'Archivo', 'Helvetica Neue', Helvetica, Arial, sans-serif;
}

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

body {
  background: var(--sw-desk);
  background-image:
    linear-gradient(var(--sw-linie) 1px, transparent 1px),
    linear-gradient(90deg, var(--sw-linie) 1px, transparent 1px);
  background-size: 120px 120px;
  color: var(--sw-ink);
  font-family: var(--text);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

::selection { background: var(--sw-gold); color: var(--sw-papier); }

.wrap { max-width: 960px; margin: 0 auto; padding: 0 24px; }

/* — Typo-Rollen aus der Spezifikation — */
.eyebrow {
  font-family: var(--display); font-weight: 600; font-size: 14px;
  letter-spacing: .24em; text-transform: uppercase;
  color: var(--sw-gold); margin-bottom: 36px;
}
h1 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(34px, 6vw, 52px); letter-spacing: .04em;
  text-transform: uppercase; line-height: .95;
  color: var(--sw-gold); margin: 36px 0 12px;
}
h2 {
  font-family: var(--display); font-weight: 700;
  font-size: clamp(26px, 4vw, 34px); letter-spacing: .02em;
  text-transform: uppercase; line-height: 1.02;
  color: var(--sw-ink); margin-bottom: 6px;
}
.sub {
  font-family: var(--display); font-weight: 600; font-size: 13px;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--sw-gold); margin-bottom: 24px;
}
.claim { font-size: 20px; line-height: 1.5; max-width: 560px; margin: 0 auto; }
.claim strong { font-weight: 600; }

p { margin-bottom: 16px; max-width: 680px; }
strong { font-weight: 600; }
.matt { color: var(--sw-muted); }
.caption { font-size: 13px; color: var(--sw-muted); }

a { color: var(--sw-gold); text-decoration-thickness: 2px; text-underline-offset: 3px; }
a:hover { color: var(--sw-ink); }
a:focus-visible { outline: 3px solid var(--sw-ink); outline-offset: 3px; }

/* — Kopf — */
header {
  padding: 72px 0 56px; border-bottom: 3px solid var(--sw-ink);
  text-align: center; background: var(--sw-papier);
}

/* — Abschnitte: Papierfläche im Wechsel mit offenem Raster — */
section { padding: 56px 0; border-bottom: 1px solid var(--sw-linie); background: var(--sw-papier); }
section.offen { background: transparent; }

/* — Logo-System — */
.system { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
          gap: 20px; margin-top: 28px; }
.sys-card {
  border: 2px solid var(--sw-ink); background: var(--sw-karte);
  padding: 40px 20px 24px; text-align: center;
  display: flex; flex-direction: column; align-items: center;
  justify-content: space-between; gap: 28px;
}
.sys-card figcaption {
  font-family: var(--display); font-weight: 600; font-size: 13px;
  letter-spacing: .12em; text-transform: uppercase; color: var(--sw-ink);
}
.stempel-mini { transform: rotate(-5deg); }

/* — Produkte — */
.produkte { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
            gap: 20px; margin-top: 28px; }
.produkt { border: 2px solid var(--sw-ink); background: var(--sw-papier); }
.produkt .bild { background: var(--sw-karte); padding: 36px 20px;
                 display: flex; align-items: center; justify-content: center; min-height: 260px; }
.produkt .text { padding: 20px 22px 24px; }
.produkt h3 {
  font-family: var(--display); font-weight: 700; font-size: 18px;
  letter-spacing: .06em; text-transform: uppercase;
  color: var(--sw-ink); margin-bottom: 8px;
}
.produkt p { font-size: 15px; margin-bottom: 0; max-width: none; }
.idee {
  display: inline-block; font-family: var(--display); font-weight: 700;
  font-size: 11px; letter-spacing: .16em; text-transform: uppercase;
  background: var(--sw-ink); color: var(--sw-papier);
  padding: 4px 10px; margin-bottom: 10px;
}

/* — Motivliste — */
.steps { list-style: none; margin-top: 24px; max-width: 680px; }
.steps li { display: flex; gap: 16px; padding: 16px 0;
            border-bottom: 1px dashed var(--sw-linie); align-items: flex-start; }
.steps li:last-child { border-bottom: none; }
.steps .tag {
  flex-shrink: 0; font-family: var(--display); font-weight: 700; font-size: 13px;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--sw-papier); background: var(--sw-ink);
  padding: 4px 10px; margin-top: 2px;
}
.steps .tag.gesperrt { background: var(--sw-gold); color: var(--sw-ink); }
.steps div p { margin-bottom: 0; font-size: 15.5px; }
.steps div strong { display: block; margin-bottom: 2px; font-size: 16px; }

/* — Rechtsseiten — */
.blatt { max-width: 48rem; padding-top: 48px; padding-bottom: 48px; }
.blatt h2 { margin-top: 40px; }
.blatt h2:first-of-type { margin-top: 0; }
address { font-style: normal; line-height: 1.75; margin-bottom: 16px; }

/* Unausgefüllte Pflichtangabe — muss vor Launch ersetzt werden.
   Bewusst in Tinte statt Gold: Gold auf Papier misst nur 2.6:1. */
.platzhalter {
  color: var(--sw-ink); font-weight: 600;
  background: var(--sw-ph-dunkel);
  border-bottom: 2px dashed var(--sw-ph-rand);
  padding: 1px 4px;
}

.hinweis { background: var(--sw-karte); border-left: 5px solid var(--sw-gold);
           padding: 16px 20px; margin: 28px 0; }
.hinweis p { margin: 0; }

/* — Fuß — */
footer { padding: 40px 0 64px; text-align: center; font-size: 13px;
         color: var(--sw-muted); background: var(--sw-papier); }
footer p { max-width: none; margin-bottom: 8px; }
