/* Lohndorf 700 — Design-System */

:root {
  --stone-900: #1f160e;
  --stone-800: #2a1f15;
  --stone-700: #3a2a1c;
  --stone-600: #4d3a28;
  --stone-500: #6b5640;
  --stone-400: #9a8467;
  --stone-300: #c9b896;

  --sand-50:  #faf6ec;
  --sand-100: #f4ede0;
  --sand-200: #ebe0cb;
  --sand-300: #dcc9a4;

  --gold-600: #8a6624;
  --gold-500: #b58a3d;
  --gold-400: #cda35a;

  --rule: rgba(58, 42, 28, 0.18);
  --rule-strong: rgba(58, 42, 28, 0.35);

  --serif: "Playfair Display", "Hoefler Text", Georgia, serif;
  --sans: "Lato", -apple-system, "Helvetica Neue", Helvetica, Arial, sans-serif;

  --measure: 64ch;
  --container: 1240px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--sand-100);
  color: var(--stone-800);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: var(--stone-700); text-decoration: none; }
a:hover { color: var(--gold-600); }

/* Typografie ------------------------------------------------------------- */

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  color: var(--stone-800);
  margin: 0;
  letter-spacing: 0.005em;
  text-wrap: balance;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-600);
  font-weight: 700;
}

.dropcap::first-letter {
  font-family: var(--serif);
  font-size: 4.4em;
  float: left;
  line-height: 0.9;
  padding: 0.08em 0.08em 0 0;
  color: var(--stone-700);
}

/* Container & Linien ----------------------------------------------------- */

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

.rule-double {
  border: 0;
  border-top: 1px solid var(--rule-strong);
  border-bottom: 1px solid var(--rule-strong);
  height: 4px;
  background: transparent;
  margin: 0;
}

.rule-thin {
  border: 0;
  border-top: 1px solid var(--rule);
  margin: 0;
}

.ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: var(--gold-500);
  font-family: var(--serif);
  letter-spacing: 0.3em;
  font-size: 13px;
  text-transform: uppercase;
}
.ornament::before,
.ornament::after {
  content: "";
  flex: 1;
  border-top: 1px solid var(--rule-strong);
  max-width: 140px;
}
.ornament .diamond {
  width: 6px; height: 6px;
  background: var(--gold-500);
  transform: rotate(45deg);
  display: inline-block;
}

/* Top-Band & Navigation -------------------------------------------------- */

.topband {
  background: var(--stone-800);
  color: var(--sand-100);
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.topband .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 36px;
}
.topband .gold { color: var(--gold-400); }

.masthead {
  padding: 32px 0 20px;
  text-align: center;
  border-bottom: 1px solid var(--rule);
  background: var(--sand-100);
}
.masthead .anno {
  font-family: var(--serif);
  font-style: italic;
  color: var(--gold-600);
  letter-spacing: 0.18em;
  font-size: 13px;
}
.masthead h1.wordmark {
  font-family: var(--serif);
  font-size: 38px;
  letter-spacing: 0.06em;
  margin: 4px 0 2px;
  text-transform: uppercase;
  color: var(--stone-800);
}
.masthead .sub {
  font-family: var(--serif);
  font-style: italic;
  color: var(--stone-500);
  font-size: 15px;
  letter-spacing: 0.04em;
}

.mainnav {
  background: var(--sand-100);
  border-bottom: 1px solid var(--rule);
  position: sticky;
  top: 0;
  z-index: 30;
}
.mainnav .container {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.mainnav a {
  display: inline-block;
  padding: 14px 24px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--stone-700);
  font-weight: 700;
  border-bottom: 2px solid transparent;
  transition: border-color .2s, color .2s;
}
.mainnav a:hover { color: var(--gold-600); }
.mainnav a.active {
  color: var(--stone-900);
  border-bottom-color: var(--gold-500);
}

/* Buttons ---------------------------------------------------------------- */

.btn {
  display: inline-block;
  padding: 14px 28px;
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--stone-700);
  background: var(--stone-700);
  color: var(--sand-50);
  cursor: pointer;
  transition: background .2s, color .2s, border-color .2s;
}
.btn:hover { background: var(--stone-900); color: var(--sand-50); border-color: var(--stone-900); }
.btn.ghost {
  background: transparent;
  color: var(--stone-800);
}
.btn.ghost:hover { background: var(--stone-800); color: var(--sand-50); }
.btn.gold {
  background: var(--gold-500);
  border-color: var(--gold-500);
  color: var(--stone-900);
}
.btn.gold:hover { background: var(--gold-600); border-color: var(--gold-600); color: var(--sand-50); }

/* Footer ----------------------------------------------------------------- */

footer.site {
  background: var(--stone-800);
  color: var(--sand-200);
  padding: 56px 0 32px;
  margin-top: 96px;
}
footer.site .cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
}
footer.site h4 {
  font-family: var(--serif);
  color: var(--sand-50);
  font-size: 18px;
  margin-bottom: 14px;
}
footer.site .eyebrow { color: var(--gold-400); }
footer.site a { color: var(--sand-200); }
footer.site a:hover { color: var(--gold-400); }
footer.site ul { list-style: none; padding: 0; margin: 0; }
footer.site li { padding: 4px 0; font-size: 14px; }
footer.site p { font-size: 14px; line-height: 1.7; color: var(--sand-300); }
footer.site .legal {
  margin-top: 40px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--stone-300);
}

/* Utility ---------------------------------------------------------------- */

.center { text-align: center; }
.muted { color: var(--stone-500); }
.italic { font-style: italic; }

@media (max-width: 600px) {
  .topband .container span:last-child {
    display: none;
  }
}

