/* Raleway selbst gehostet (fonts/), damit beim Seitenaufruf keine
   Verbindung zu Google-Servern aufgebaut wird. */
@font-face{
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/raleway-latin-400-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family: "Raleway";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("/fonts/raleway-latin-ext-400-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face{
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/raleway-latin-600-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family: "Raleway";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("/fonts/raleway-latin-ext-600-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}
@font-face{
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/raleway-latin-700-normal.woff2") format("woff2");
  unicode-range: U+0000-00FF,U+0131,U+0152-0153,U+02BB-02BC,U+02C6,U+02DA,U+02DC,U+0304,U+0308,U+0329,U+2000-206F,U+20AC,U+2122,U+2191,U+2193,U+2212,U+2215,U+FEFF,U+FFFD;
}
@font-face{
  font-family: "Raleway";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("/fonts/raleway-latin-ext-700-normal.woff2") format("woff2");
  unicode-range: U+0100-02BA,U+02BD-02C5,U+02C7-02CC,U+02CE-02D7,U+02DD-02FF,U+0304,U+0308,U+0329,U+1D00-1DBF,U+1E00-1E9F,U+1EF2-1EFF,U+2020,U+20A0-20AB,U+20AD-20C0,U+2113,U+2C60-2C7F,U+A720-A7FF;
}

/* ═══════════════════════════════════════════════════════════════
   silosophia.com — Personenseite Heinz-Georg Geissler
   Gemeinsames Stylesheet für alle Seiten (index, impressum, datenschutz)
   ═══════════════════════════════════════════════════════════════ */

:root {
  --bg: #fbf8f1;
  --ink: #1a1a1a;
  --muted: #6a6a6a;
  --rule: #ebe3d6;
  --accent: #ff6f1d;        /* WelikeU-Orange */
  --accent-soft: #ffe7d9;
  --max: 720px;
}

* { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16.5px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 32px 24px 80px;
}

/* ──────────────── Seiten-Header (alle Seiten) ──────────────── */
.pagehead {
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--rule);
}

.pagehead a {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 14px;
  letter-spacing: 1px;
  color: var(--muted);
  text-decoration: none;
}

.pagehead a:hover { color: var(--ink); background: none; }

/* ──────────────── Hero (nur Startseite) ──────────────── */
.hero { margin: 0 0 48px; }

.hero img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
  background: #e8e6df;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  object-position: center 25%;
}

.hero-text { margin-top: 32px; }

/* ──────────────── Typografie ──────────────── */
h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 36px;
  line-height: 1.15;
  font-weight: 400;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

h1 .nick {
  color: var(--muted);
  font-style: italic;
  font-size: 0.7em;
}

.claim {
  font-size: 19px;
  color: var(--muted);
  margin: 0;
  max-width: 560px;
}

.claim strong {
  color: var(--ink);
  font-weight: 600;
}

section { margin: 64px 0; }

h2 {
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.4px;
  text-transform: uppercase;
  color: #8c8477;
  margin: 0 0 24px;
  padding-bottom: 12px;
  border-bottom: 2px dotted var(--accent);
}

h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  margin: 28px 0 8px;
}

p { margin: 0 0 16px; }

a {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-color: var(--accent);
  text-decoration-thickness: 2px;
  text-underline-offset: 3px;
  transition: background .15s;
}

a:hover { background: var(--accent-soft); }

/* ──────────────── Werk-Liste (Startseite) ──────────────── */
.werk {
  list-style: none;
  padding: 0;
  margin: 0;
}

.werk li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}

.werk li:last-child { border-bottom: none; }

.werk .jahr {
  font-variant-numeric: tabular-nums;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0.5px;
}

.werk .titel {
  font-size: 16px;
  line-height: 1.45;
}

.werk .typ {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--muted);
  margin-left: 8px;
}

.werk .geplant {
  background: var(--accent-soft);
  padding: 1px 6px;
  border-radius: 2px;
  font-size: 11px;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #a8410f;
  margin-left: 8px;
  vertical-align: middle;
}

/* ──────────────── Ökosystem (Startseite) ──────────────── */
.eco {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.eco li {
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: #fff;
  transition: border-color .15s;
}

.eco li:hover { border-color: var(--accent); }

.eco a {
  display: block;
  padding: 18px 18px 20px;
  text-decoration: none;
  color: var(--ink);
  background: none !important;
}

.eco .name {
  font-family: Georgia, serif;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 6px;
}

.eco .desc {
  font-size: 13px;
  color: var(--muted);
  margin: 0;
  line-height: 1.45;
}

/* ──────────────── Rechtsseiten (Impressum, Datenschutz) ──────────────── */
.legal h1 {
  font-size: 28px;
  margin-bottom: 24px;
}

.legal h2 {
  border-bottom: none;
  padding-bottom: 0;
  margin-top: 36px;
  margin-bottom: 12px;
}

.legal h3 {
  font-size: 16px;
  margin: 20px 0 6px;
}

.legal dl {
  margin: 0 0 24px;
}

.legal dt {
  font-weight: 600;
  margin-top: 12px;
}

.legal dd {
  margin: 0;
  color: var(--muted);
}

.legal .note {
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  padding: 12px 16px;
  margin: 16px 0;
  font-size: 14px;
  line-height: 1.5;
}

.legal .placeholder {
  background: var(--accent-soft);
  color: #a8410f;
  padding: 1px 6px;
  border-radius: 2px;
  font-family: ui-monospace, "SF Mono", Menlo, monospace;
  font-size: 0.9em;
}

/* ──────────────── Kontakt ──────────────── */
.kontakt p { font-size: 16px; }

/* ──────────────── Footer ──────────────── */
footer {
  margin-top: 80px;
  padding-top: 24px;
  border-top: 1px solid var(--rule);
  font-size: 13px;
  color: var(--muted);
}

footer p { margin: 0 0 6px; }

footer a {
  color: var(--muted);
  text-decoration-color: var(--rule);
}

/* ──────────────── Werkstatt-Banner (Philosophia-Bot) ──────────────── */
.werkstatt {
  background: var(--accent-soft);
  border-left: 4px solid var(--accent);
  padding: 36px 36px;
  margin: 64px 0;
}
.werkstatt-label {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c2531a;
  margin: 0 0 6px 0;
}
.werkstatt h2 {
  margin: 0 0 14px 0;
  padding-bottom: 0;
  border-bottom: none;
  font-size: 28px;
}
.werkstatt-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 0 22px 0;
  max-width: 640px;
}
.werkstatt-cta {
  display: inline-block;
  padding: 12px 22px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.werkstatt-cta:hover {
  background: var(--accent);
  color: var(--ink);
}

/* ──────────────── Newsletter-Sektion ──────────────── */
.newsletter {
  background: transparent;
  border-top: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  padding: 40px 32px;
  margin: 64px 0;
  text-align: center;
}
.newsletter-label {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c2531a;
  margin: 0 0 10px 0;
}
.newsletter h2 {
  margin: 0 0 16px 0;
  padding-bottom: 0;
  border-bottom: none;
  font-size: 28px;
}
.newsletter-desc {
  font-size: 16px;
  line-height: 1.6;
  color: var(--ink);
  margin: 0 auto 24px auto;
  max-width: 580px;
}
.newsletter-cta {
  display: inline-block;
  padding: 12px 26px;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 12.5px;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  border-radius: 999px;
  transition: background 0.2s, color 0.2s;
}
.newsletter-cta:hover {
  background: var(--accent);
  color: var(--ink);
}
.newsletter-frequency {
  display: block;
  margin-top: 12px;
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.5px;
}

/* ──────────────── Standpunkt-Banner (Manifest) ──────────────── */
.standpunkt {
  background: var(--ink);
  color: var(--bg);
  padding: 56px 44px;
  margin: 64px 0;
  border-left: 4px solid var(--accent);
}
.standpunkt-label {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c2531a;
  margin: 0 0 14px 0;
}
.standpunkt h2 {
  color: var(--bg);
  border-bottom: none;
  padding-bottom: 0;
  font-size: 28px;
  margin: 0 0 28px 0;
}
.standpunkt blockquote {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: #ffd9c2;
  margin: 0 0 28px 0;
  padding-left: 0;
  border-left: none;
}
.standpunkt-text {
  font-size: 15px;
  line-height: 1.7;
  color: #c8c4b8;
  margin: 0 0 14px 0;
  max-width: 720px;
}
.standpunkt-text:last-child { margin-bottom: 0; }
.standpunkt-text strong { color: var(--bg); font-weight: 600; }

/* ──────────────── Mobile ──────────────── */
@media (max-width: 520px) {
  .container { padding: 24px 18px 60px; }
  h1 { font-size: 28px; }
  .claim { font-size: 17px; }
  .eco { grid-template-columns: 1fr; }
  .werk li {
    grid-template-columns: 60px 1fr;
    gap: 12px;
  }
  .legal h1 { font-size: 24px; }
  .werkstatt { padding: 28px 22px; }
  .werkstatt h2 { font-size: 24px; }
  .standpunkt { padding: 40px 26px; }
  .standpunkt h2 { font-size: 24px; }
  .standpunkt blockquote { font-size: 19px; }
}

/* ──────────────── Halbkreis unter dem Namen ────────────────
   Anknüpfung an das Signet der WelikeU GmbH; nur auf der Startseite. */
.hero-text h1::after {
  content: "";
  display: block;
  width: 46px;
  height: 23px;
  margin-top: 16px;
  background: var(--accent);
  border-radius: 0 0 46px 46px;
}

/* ──────────────── Partner-Modul ────────────────
   Baugleich auf silosophia.com und welikeu.de; Vorlage für die
   zweite Seite liegt in partner-modul-welikeu.html. */
.partner {
  border-top: 2px dotted var(--accent);
  border-bottom: 2px dotted var(--accent);
  padding: 36px 0 32px;
  margin: 64px 0;
}
.partner-label {
  font-family: "Raleway", -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: #c2531a;
  margin: 0 0 10px;
}
.partner h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
  letter-spacing: -0.01em;
  text-transform: none;
  color: var(--ink);
  border-bottom: none;
  padding-bottom: 0;
  margin: 0 0 12px;
}
.partner-intro {
  font-size: 15.5px;
  color: var(--muted);
  margin: 0 0 24px;
  max-width: 620px;
}
.partner-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
}
.partner-list li {
  border: 1px solid var(--rule);
  border-radius: 3px;
  background: #fff;
  transition: border-color .15s, box-shadow .15s;
}
.partner-list li:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 0 var(--accent);
}
.partner-list a {
  display: block;
  padding: 18px 18px 20px;
  text-decoration: none;
  color: var(--ink);
  background: none !important;
}
.partner-name {
  display: block;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  margin: 0 0 6px;
}
.partner-role {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
}

@media (max-width: 520px) {
  .partner-list { grid-template-columns: 1fr; }
  .partner h2 { font-size: 22px; }
  .hero-text h1::after { width: 38px; height: 19px; margin-top: 13px; }
}
