/* Gemeinsame Gestaltung für Impressum und Datenschutz.
   Gleiche Farben und Schrift wie die Startseite. */
@font-face { font-family: Nunito; font-style: normal; font-weight: 400; font-display: swap; src: url("fonts/nunito-400.woff2") format("woff2"); }
@font-face { font-family: Nunito; font-style: normal; font-weight: 700; font-display: swap; src: url("fonts/nunito-700.woff2") format("woff2"); }
@font-face { font-family: Nunito; font-style: normal; font-weight: 800; font-display: swap; src: url("fonts/nunito-800.woff2") format("woff2"); }
@font-face { font-family: Nunito; font-style: normal; font-weight: 900; font-display: swap; src: url("fonts/nunito-900.woff2") format("woff2"); }

:root {
  --creme: #FDF8F0;
  --beige: #F3E8D8;
  --beige-hell: #FFFDF8;
  --salbei: #E4EDE1;
  --salbei-dunkel: #405340;
  --senf-dunkel: #6F5915;
  --tinte: #33302B;
  --tinte-weich: #55504A;
  --linie: #E8DAC1;
}

* { box-sizing: border-box; }
body {
  margin: 0; background: var(--creme); color: var(--tinte);
  font-family: Nunito, "Segoe UI", system-ui, sans-serif;
  -webkit-font-smoothing: antialiased; overflow-x: hidden;
}
a { color: var(--salbei-dunkel); text-underline-offset: 3px; }
a:hover { color: #2A382A; }
h1, h2 { margin: 0; letter-spacing: -.02em; text-wrap: pretty; }
p { margin: 0; text-wrap: pretty; }
.stack { display: flex; flex-direction: column; }

.head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  padding: 18px clamp(20px,5vw,72px); max-width: 900px; margin: 0 auto; width: 100%;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: inherit; min-height: 44px; }
.brand-mark {
  width: 42px; height: 42px; border-radius: 15px 21px 17px 23px; background: #607A5D;
  display: flex; align-items: center; justify-content: center;
  color: var(--creme); font-weight: 800; font-size: 17px; flex: none;
}
.brand-name { font-weight: 800; font-size: 16.5px; }
.brand-sub { font-size: 12px; color: #6E6559; font-weight: 700; }
.head-nav { display: flex; flex-wrap: wrap; gap: 8px 20px; font-size: 14.5px; font-weight: 700; }
.head-nav a { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; }

.sec { padding: clamp(16px,3vw,28px) clamp(20px,5vw,72px) clamp(36px,5vw,56px); max-width: 900px; margin: 0 auto; width: 100%; display: flex; flex-direction: column; gap: 18px; }
.sec--band { background: var(--salbei); max-width: none; padding-left: 0; padding-right: 0; }
.sec--band > * { max-width: 900px; margin: 0 auto; width: 100%; padding: 0 clamp(20px,5vw,72px); }
.eyebrow { font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: #6E6559; }
h1 { font-size: clamp(30px,4.4vw,44px); line-height: 1.1; font-weight: 800; }
h2 { font-size: clamp(24px,3vw,32px); line-height: 1.15; font-weight: 800; }

.notice { display: flex; flex-direction: column; gap: 10px; background: #F7EDD9; border-radius: 24px; padding: 22px 24px; }
.notice strong { font-size: 15.5px; }
.notice span { font-size: 15.5px; line-height: 1.7; color: #4A4238; }
.notice small { font-size: 14px; line-height: 1.65; color: var(--tinte-weich); }

.cards { display: grid; gap: 14px; grid-template-columns: repeat(auto-fit, minmax(min(240px,100%), 1fr)); }
.card { display: flex; flex-direction: column; gap: 8px; background: var(--beige-hell); border: 1px solid var(--linie); border-radius: 20px; padding: 22px 24px; }
.card-key { font-size: 12.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--senf-dunkel); }
.card-val { font-size: 15.5px; line-height: 1.7; font-weight: 600; }
.card-val a, .block a[href^="tel:"], .block a[href^="mailto:"] { display: inline-flex; align-items: center; min-height: 44px; }
.kontaktliste { display: flex; flex-direction: column; gap: 2px; }

.blocks { display: flex; flex-direction: column; gap: 12px; }
.block { display: flex; flex-direction: column; gap: 10px; background: var(--creme); border-radius: 22px; padding: 24px 26px; }
.block h3 { margin: 0; font-size: 17.5px; font-weight: 800; line-height: 1.35; }
.block p { font-size: 15.5px; line-height: 1.75; color: #4A4238; }
.intro { font-size: 16.5px; line-height: 1.7; color: #3E4A3C; max-width: 70ch; }
.hint { font-size: 14.5px; line-height: 1.7; color: var(--tinte-weich); max-width: 70ch; }

.foot {
  display: flex; flex-wrap: wrap; gap: 14px 32px; align-items: center; justify-content: space-between;
  padding: 26px clamp(20px,5vw,72px) 44px; max-width: 900px; margin: 0 auto; width: 100%;
  border-top: 1px solid var(--linie); font-size: 14px; color: #6E6559; font-weight: 700;
}
.foot nav { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.foot a { display: inline-flex; align-items: center; min-height: 44px; text-decoration: none; }

@keyframes pageIn { from { opacity: 0; transform: translate3d(0,10px,0); } to { opacity: 1; transform: none; } }
@keyframes pageOut { from { opacity: 1; } to { opacity: 0; transform: translate3d(0,-12px,0); } }
@keyframes rise { from { opacity: 0; transform: translate3d(0,16px,0); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) { * { animation: none !important; } }
