/* Spicy Business Onions — sbo.lake26.com
   Plain static site. All paths are relative, so it works on any host or subpath. */

@font-face { font-family: "Barlow"; font-weight: 300; font-display: swap; src: url("fonts/barlow-300.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 400; font-display: swap; src: url("fonts/barlow-400.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 600; font-display: swap; src: url("fonts/barlow-600.woff2") format("woff2"); }
@font-face { font-family: "Barlow"; font-weight: 700; font-display: swap; src: url("fonts/barlow-700.woff2") format("woff2"); }
@font-face { font-family: "Roboto Mono"; font-weight: 100 700; font-display: swap; src: url("fonts/robotomono.woff2") format("woff2"); }

:root {
  --ink: #2d2d2d;
  --ink-soft: #55505a;
  --magenta: #a3136e;
  --indigo: #2b1570;
  --lavender: #dfc6d7;
  --beige: #efe7cf;
  --paper: #fbf8f1;
  --white: #ffffff;
  --grad: linear-gradient(100deg, var(--magenta) 0%, #6a1a78 55%, var(--indigo) 100%);
  --mono: "Roboto Mono", ui-monospace, Menlo, monospace;
  --sans: "Barlow", system-ui, -apple-system, "Segoe UI", sans-serif;
  --wrap: 1120px;
  --radius: 14px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 84px; }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--magenta); }
a:hover { color: var(--indigo); }
h1, h2, h3 { line-height: 1.15; margin: 0 0 .5em; }
h2 { font-size: clamp(1.9rem, 4vw, 2.75rem); font-weight: 700; letter-spacing: -.01em; }
h3 { font-size: 1.35rem; font-weight: 600; }
p { margin: 0 0 1em; }

.wrap { width: 100%; max-width: var(--wrap); margin: 0 auto; padding: 0 20px; }
.eyebrow {
  font-family: var(--mono); font-weight: 500; font-size: .85rem;
  letter-spacing: .12em; text-transform: uppercase; color: var(--magenta);
  margin-bottom: .75rem; display: block;
}
.section { padding: clamp(64px, 9vw, 112px) 0; }
.skip { position: absolute; left: -9999px; }
.skip:focus { left: 16px; top: 16px; z-index: 100; background: var(--white); padding: 8px 12px; }

/* ---------- Header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(251, 248, 241, .92);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid rgba(43, 21, 112, .08);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; height: 72px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--ink); }
.brand img { width: 48px; height: 48px; object-fit: contain; }
.brand span { font-weight: 700; font-size: 1.15rem; letter-spacing: .01em; }
.nav ul { list-style: none; display: flex; gap: 4px; margin: 0; padding: 0; }
.nav a {
  display: block; padding: 8px 12px; border-radius: 999px;
  text-decoration: none; color: var(--ink); font-weight: 600; font-size: 1rem;
}
.nav a:hover, .nav a[aria-current="page"] { background: var(--lavender); color: var(--indigo); }
.nav-toggle {
  display: none; background: none; border: 0; padding: 8px; cursor: pointer;
  color: var(--ink); font: inherit;
}
.nav-toggle svg { width: 28px; height: 28px; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav {
    position: absolute; top: 72px; left: 0; right: 0;
    background: var(--paper); border-bottom: 1px solid rgba(43, 21, 112, .12);
    display: none;
  }
  .nav.open { display: block; }
  .nav ul { flex-direction: column; padding: 8px 12px 16px; }
  .nav a { padding: 12px 14px; border-radius: 10px; }
}

/* ---------- Hero ---------- */
.hero { background: var(--grad); color: var(--white); overflow: hidden; position: relative; }
.hero .wrap {
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 48px; align-items: center;
  padding-top: clamp(56px, 8vw, 104px); padding-bottom: clamp(56px, 8vw, 104px);
}
.hero .eyebrow { color: var(--lavender); }
.hero h1 { font-size: clamp(2.4rem, 6vw, 4.4rem); font-weight: 700; letter-spacing: -.02em; margin-bottom: .35em; }
.hero .brandline { font-family: var(--mono); font-weight: 500; font-size: clamp(1.05rem, 2vw, 1.3rem); opacity: .9; margin-bottom: 1.6rem; }
.hero .lead { font-size: 1.3rem; font-weight: 300; max-width: 34ch; }
.hero .lead strong { font-weight: 700; display: block; font-size: 1.6rem; margin-bottom: .2em; }
.hero-art { position: relative; justify-self: center; }
.hero-art .logo-disc {
  width: min(360px, 70vw); aspect-ratio: 1; border-radius: 50%;
  background: var(--white); display: grid; place-items: center;
  box-shadow: 0 30px 80px rgba(20, 5, 50, .35);
}
.hero-art .logo-disc img { width: 78%; }
.hero-art .badge {
  position: absolute; right: -18px; bottom: -22px; width: 150px;
  transition: transform .25s ease;
}
.hero-art .badge:hover { transform: rotate(-6deg) scale(1.05); }

.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 1.05rem; text-decoration: none;
  background: var(--white); color: var(--indigo);
  transition: transform .15s ease, box-shadow .15s ease;
}
.btn:hover { color: var(--magenta); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0, 0, 0, .18); }
.btn-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 1.6rem; }
.btn.ghost { background: transparent; color: var(--white); border: 2px solid rgba(255, 255, 255, .6); }
.btn.ghost:hover { border-color: var(--white); color: var(--white); }

@media (max-width: 820px) {
  .hero .wrap { grid-template-columns: 1fr; }
  .hero-art { order: -1; }
  .hero-art .logo-disc { width: min(240px, 60vw); }
  .hero-art .badge { width: 110px; right: -24px; bottom: -14px; }
}

/* ---------- Vision / Mission / Wer ---------- */
.pillars { background: var(--beige); }
.pillars .grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pillar {
  background: var(--white); border-radius: var(--radius); padding: 32px 28px;
  border-top: 5px solid var(--magenta);
}
.pillar:nth-child(2) { border-top-color: #6a1a78; }
.pillar:nth-child(3) { border-top-color: var(--indigo); }
.pillar h3 { font-family: var(--mono); font-weight: 700; font-size: 1.05rem; text-transform: uppercase; letter-spacing: .06em; color: var(--indigo); }
.pillar p { margin: 0; }
.pillar .big { font-size: 1.35rem; font-weight: 600; line-height: 1.35; }
@media (max-width: 860px) { .pillars .grid { grid-template-columns: 1fr; } }

/* ---------- Team ---------- */
.team-head { max-width: 60ch; margin-bottom: 44px; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.member { text-align: center; }
.member .photo { position: relative; width: min(220px, 100%); margin: 0 auto 22px; }
.member .photo > img:first-child {
  width: 100%; aspect-ratio: 1; object-fit: cover; border-radius: 50%;
  border: 5px solid var(--white); box-shadow: 0 0 0 2px var(--lavender);
}
.member .spice {
  position: absolute; right: 2px; bottom: 2px; width: 60px; height: 60px;
  border-radius: 50%; background: var(--white); padding: 12px;
  box-shadow: 0 6px 16px rgba(43, 21, 112, .18);
}
.member h3 { margin-bottom: .1em; }
.member .spice-name { font-family: var(--mono); color: var(--magenta); font-weight: 500; font-size: .95rem; margin-bottom: .7em; }
.member .role { font-size: 1.02rem; color: var(--ink-soft); line-height: 1.45; }
.member .role strong { display: block; color: var(--ink); font-weight: 600; margin-top: .35em; }
@media (max-width: 960px) { .team-grid { grid-template-columns: repeat(2, 1fr); row-gap: 48px; } }
@media (max-width: 480px) { .team-grid { grid-template-columns: 1fr; } }

/* ---------- Warum wir ---------- */
.why { background: var(--white); }
.why .grid { display: grid; grid-template-columns: 1.15fr 1fr; gap: 56px; align-items: center; }
.questions { list-style: none; padding: 0; margin: 0 0 1.5em; }
.questions li {
  position: relative; padding: 14px 0 14px 44px;
  border-bottom: 1px solid rgba(43, 21, 112, .1); font-size: 1.15rem;
}
.questions li::before {
  content: "?"; position: absolute; left: 0; top: 13px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--lavender); color: var(--indigo);
  font-family: var(--mono); font-weight: 700; font-size: .95rem;
  display: grid; place-items: center;
}
.callout {
  background: var(--grad); color: var(--white);
  border-radius: var(--radius); padding: 28px 30px; margin-top: 28px;
}
.callout h3 { font-size: 1.6rem; font-weight: 700; }
.callout p:last-child { margin: 0; }
.why figure { margin: 0; }
.why figure img { border-radius: var(--radius); }
@media (max-width: 860px) {
  .why .grid { grid-template-columns: 1fr; }
  .why figure { max-width: 420px; margin: 0 auto; }
}

/* ---------- Zukunftscheck ---------- */
.check { background: var(--indigo); color: var(--white); position: relative; overflow: hidden; }
.check::after {
  content: ""; position: absolute; right: -120px; top: -120px; width: 420px; height: 420px;
  border-radius: 50%; background: radial-gradient(circle, rgba(163, 19, 110, .55), transparent 70%);
  pointer-events: none;
}
.check .eyebrow { color: var(--lavender); }
.check h2 { max-width: 22ch; }
.check .cols { display: grid; grid-template-columns: 1fr 1fr; gap: 20px 56px; margin-top: 28px; position: relative; z-index: 1; }
.check p { color: rgba(255, 255, 255, .88); }
.check .ask { font-size: 1.3rem; font-weight: 600; color: var(--white); }
@media (max-width: 860px) { .check .cols { grid-template-columns: 1fr; } }

/* ---------- Zahlen & Fakten ---------- */
.facts { background: var(--beige); }
.facts .grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 56px; align-items: center; }
.facts figure { margin: 0; }
.facts figure img { border-radius: var(--radius); border: 6px solid var(--white); box-shadow: 0 20px 50px rgba(43, 21, 112, .18); }
.workshop-card {
  display: flex; gap: 18px; align-items: center; margin-top: 28px;
  background: var(--white); border-radius: var(--radius); padding: 18px 22px;
  text-decoration: none; color: var(--ink);
  border: 2px solid transparent; transition: border-color .15s ease;
}
.workshop-card:hover { border-color: var(--magenta); color: var(--ink); }
.workshop-card img { width: 72px; flex: none; }
.workshop-card strong { display: block; color: var(--indigo); font-size: 1.1rem; }
.workshop-card span { font-size: .98rem; color: var(--ink-soft); }
@media (max-width: 860px) { .facts .grid { grid-template-columns: 1fr; } }

/* ---------- Contact / Footer ---------- */
.contact { background: var(--grad); color: var(--white); text-align: center; }
.contact h2 { max-width: 26ch; margin-left: auto; margin-right: auto; }
.contact p { font-size: 1.2rem; opacity: .92; }
.contact .btn-row { justify-content: center; }
.site-footer {
  background: #1c0d49; color: rgba(255, 255, 255, .7);
  font-size: .95rem; padding: 26px 0;
}
.site-footer .wrap { display: flex; flex-wrap: wrap; gap: 12px 28px; justify-content: space-between; align-items: center; }
.site-footer a { color: rgba(255, 255, 255, .85); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.site-footer nav { display: flex; gap: 20px; flex-wrap: wrap; }

/* ---------- Legal page ---------- */
.legal { padding: clamp(48px, 7vw, 88px) 0; }
.legal .wrap { max-width: 800px; }
.legal h1 { font-size: clamp(2rem, 5vw, 3rem); }
.legal h2 { font-size: 1.6rem; margin-top: 2em; }
.legal h3 { font-size: 1.15rem; margin-top: 1.6em; }
.legal address { font-style: normal; }
.legal .card { background: var(--white); border-radius: var(--radius); padding: 24px 28px; margin: 1em 0 1.5em; }

/* ---------- Blog overview (blog.html) ---------- */
.blog-head { padding: clamp(48px, 7vw, 88px) 0 8px; }
.blog-head h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); }
.blog-head p { max-width: 60ch; color: var(--ink-soft); }
.post-list { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; padding-bottom: clamp(64px, 9vw, 112px); }
.post-card {
  display: flex; flex-direction: column; background: var(--white);
  border-radius: var(--radius); overflow: hidden; text-decoration: none; color: var(--ink);
  box-shadow: 0 1px 0 rgba(43, 21, 112, .08), 0 10px 30px rgba(43, 21, 112, .08);
  transition: transform .15s ease, box-shadow .15s ease;
}
.post-card:hover { color: var(--ink); transform: translateY(-3px); box-shadow: 0 16px 40px rgba(43, 21, 112, .16); }
.post-card img { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top; background: var(--beige); }
.post-card .body { padding: 22px 24px 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.post-card h2 { font-size: 1.3rem; font-weight: 700; margin: 0; }
.post-card p { margin: 0; font-size: 1rem; color: var(--ink-soft); }
.post-card .more { margin-top: auto; font-weight: 700; color: var(--magenta); font-size: .98rem; }
@media (max-width: 960px) { .post-list { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .post-list { grid-template-columns: 1fr; } }

.byline {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--mono); font-size: .85rem; color: var(--ink-soft);
}
.byline img { width: 30px; height: 30px; border-radius: 50%; background: var(--white); padding: 5px; box-shadow: 0 0 0 1px var(--lavender); }
.byline strong { color: var(--indigo); font-weight: 700; }

/* ---------- Blog post (blog/*.html) ---------- */
.post { padding: clamp(40px, 6vw, 72px) 0 clamp(64px, 9vw, 112px); }
.post .wrap { max-width: 760px; }
.post .back { display: inline-block; margin-bottom: 28px; font-weight: 600; text-decoration: none; }
.post h1 { font-size: clamp(2rem, 5vw, 3rem); letter-spacing: -.015em; margin-bottom: .5em; }
.post .byline { margin-bottom: 40px; padding-bottom: 24px; border-bottom: 1px solid rgba(43, 21, 112, .12); }
.post-body { font-size: 1.15rem; line-height: 1.7; }
.post-body h2 { font-size: 1.6rem; margin: 1.8em 0 .5em; }
.post-body h3 { font-size: 1.25rem; margin: 1.5em 0 .4em; }
.post-body ul, .post-body ol { padding-left: 1.3em; margin: 0 0 1.2em; }
.post-body li { margin-bottom: .45em; }
.post-body li p { margin: 0; }
.post-body blockquote {
  margin: 1.6em 0; padding: 18px 24px; border-left: 5px solid var(--magenta);
  background: var(--white); border-radius: 0 var(--radius) var(--radius) 0;
  font-size: 1.25rem; font-weight: 600; color: var(--indigo);
}
.post-body figure { margin: 2em 0; }
.post-body figure img { border-radius: var(--radius); margin: 0 auto; }
.post-body figcaption { text-align: center; font-size: .9rem; color: var(--ink-soft); margin-top: .6em; }
.post-body a { word-break: break-word; }
.post-end {
  margin-top: 48px; padding: 28px 30px; border-radius: var(--radius);
  background: var(--grad); color: var(--white);
}
.post-end p { margin: 0 0 1rem; font-size: 1.15rem; }
.post-end .btn-row { margin-top: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition: none !important; }
}
