/* Bebelus GmbH — quiet editorial styles */

:root {
  --bg: #faf8f3;
  --text: #2b2c30;
  --muted: #6b6d72;
  --accent: #2c3e50;
  --border: rgba(43, 44, 48, 0.10);
  --max: 680px;
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: "Iowan Old Style", "Apple Garamond", Garamond, Baskerville, "Hoefler Text", "Times New Roman", Times, serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main { flex: 1; }

a {
  color: var(--accent);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
a:hover { text-decoration-thickness: 1.5px; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */

.site-header {
  border-bottom: 1px solid var(--border);
}
.site-header .container {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1.5rem;
  padding-top: 1.75rem;
  padding-bottom: 1.75rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  color: var(--text);
  text-decoration: none;
  line-height: 0;
}
.brand img {
  height: 56px;
  width: auto;
  display: block;
}
.brand:hover { opacity: 0.85; }
.site-nav {
  display: flex;
  gap: 1.75rem;
  font-size: 0.92rem;
}
.site-nav a {
  color: var(--muted);
  text-decoration: none;
}
.site-nav a:hover { color: var(--accent); }
.site-nav a[aria-current="page"] { color: var(--text); }

/* Page */

main { padding: 5.5rem 0 6rem; }

h1 {
  font-size: 2.6rem;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -0.015em;
  margin: 0 0 1.5rem;
  color: var(--text);
}


h2 {
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  margin: 3rem 0 1rem;
}

p { margin: 0 0 1.25rem; }

p.lede {
  font-size: 1.18rem;
  line-height: 1.6;
  color: var(--text);
  margin: 0 0 2rem;
}

p.closing {
  font-style: italic;
  color: var(--muted);
  margin-top: 3.5rem;
}

ul.focus {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
ul.focus li {
  padding-left: 1.5rem;
  position: relative;
  margin: 0.4rem 0;
}
ul.focus li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--muted);
}

/* Legal pages */

.legal h1 {
  font-size: 2rem;
  margin-bottom: 2rem;
}
.legal h2 { margin: 2.25rem 0 0.5rem; }
.legal address {
  font-style: normal;
  white-space: pre-line;
  margin: 0 0 1rem;
}
.legal p { white-space: pre-line; }
.legal .note {
  margin-top: 3rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
  font-style: italic;
  white-space: normal;
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--border);
}
.site-footer .container {
  padding-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}
.site-footer p { margin: 0; }
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
}
.footer-nav a {
  color: var(--muted);
  text-decoration: none;
}
.footer-nav a:hover { color: var(--accent); }
.footer-nav a[aria-current="page"] { color: var(--text); }

/* Responsive */

@media (max-width: 600px) {
  body { font-size: 16.5px; }
  main { padding: 3rem 0 4rem; }
  h1 { font-size: 2rem; }
  .legal h1 { font-size: 1.65rem; }
  p.lede { font-size: 1.08rem; }
  .brand img { height: 44px; }
  .site-header .container {
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
  }
}
