/* Gemeinsame Gestaltung der Rechtstexte. Palette und Schriften wie auf der Startseite,
   nur ruhiger gesetzt: Rechtstexte werden gelesen, nicht bestaunt. */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --forest: #3a6b35;
  --amber: #c47a2b;
  --ruby: #a83232;
  --deep-teal: #2a6e6e;
  --cream: #faf3e6;
  --text-dark: #3d2e1e;
  --text-body: #4a3a28;
}

body {
  font-family: 'Lora', Georgia, serif;
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

.wrap { max-width: 44rem; margin: 0 auto; padding: 2.5rem 1.5rem 4rem; }

a { color: var(--forest); }
a:hover { color: var(--amber); }

.zurueck {
  display: inline-block;
  margin-bottom: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--deep-teal);
}
.zurueck:hover { color: var(--amber); }
.zurueck::before { content: "\2190\00a0"; }

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 6vw, 3rem);
  font-weight: 700;
  color: var(--ruby);
  line-height: 1.15;
  margin-bottom: 0.4rem;
}

.stand { font-size: 0.9rem; color: #7a6a56; margin-bottom: 2.5rem; }

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.4rem, 4vw, 1.8rem);
  font-weight: 600;
  color: var(--forest);
  margin: 2.5rem 0 0.75rem;
}

h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--deep-teal);
  margin: 1.75rem 0 0.4rem;
}

p, ul { margin-bottom: 1rem; }
ul { padding-left: 1.3rem; }
li { margin-bottom: 0.35rem; }

.anschrift { margin-bottom: 1rem; }

footer {
  margin-top: 3.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(74, 58, 40, 0.18);
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-align: center;
}
footer a { margin: 0 0.5rem; }

/* Sprungmarke fuer die Tastaturbedienung: sichtbar, sobald sie den Fokus hat.
   Nicht per position:absolute aus dem Fluss nehmen, das macht die Seite scrollbar. */
.skip {
  position: fixed; top: -4rem; left: 1rem; z-index: 10;
  background: var(--forest); color: #fff;
  padding: 0.6rem 1rem; border-radius: 0 0 6px 6px; text-decoration: none;
  transition: top 0.15s;
}
.skip:focus { top: 0; color: #fff; }

:focus-visible { outline: 3px solid var(--amber); outline-offset: 3px; }
