/* ── FONTS (lokal gehostet) ── */
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lora-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('fonts/lora-600.woff2') format('woff2');
}
@font-face {
  font-family: 'Lora';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/lora-400-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/dmsans-300.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/dmsans-400.woff2') format('woff2');
}
@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/dmsans-500.woff2') format('woff2');
}

/* ── TOKENS ── */
:root {
  --forest:      #2D4A35;
  --forest-deep: #1e3324;
  --sage:        #7A9E7E;
  --sage-light:  #A8C4AC;
  --sage-pale:   #e8f0e9;
  --off-white:   #F5F2EC;
  --warm-grey:   #E8E4DC;
  --parchment:   #EDEBE5;
  --charcoal:    #1E1E1E;
  --mid-grey:    #6B6B6B;
  --light-grey:  #9a9a9a;

  --font-serif: 'Lora', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --max-w: 1100px;
  --pad-x: clamp(1.5rem, 5vw, 4rem);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--charcoal);
  line-height: 1.6;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── NAV ── */
nav {
  background: var(--off-white);
  border-bottom: 1px solid var(--warm-grey);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}
.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--forest);
  letter-spacing: -0.02em;
}
.nav-logo .suffix { font-weight: 500; font-style: italic; }
.nav-back {
  font-size: 0.82rem;
  color: var(--mid-grey);
  transition: color 0.2s;
}
.nav-back:hover { color: var(--forest); }

/* ── LEGAL CONTENT ── */
.legal-main {
  padding: 5rem 0 6rem;
  max-width: 760px;
}
.legal-main h1 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 600;
  color: var(--forest);
  margin-bottom: 2rem;
  letter-spacing: -0.02em;
}
.legal-main h2 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--forest);
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}
.legal-main h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 1.6rem;
  margin-bottom: 0.5rem;
}
.legal-main p, .legal-main li {
  font-size: 0.92rem;
  color: #444;
  line-height: 1.8;
  margin-bottom: 0.9rem;
}
.legal-main ul { padding-left: 1.3rem; margin-bottom: 0.9rem; }
.legal-main a { color: var(--forest); text-decoration: underline; }
.legal-main a:hover { color: var(--forest-deep); }
.legal-main strong { font-weight: 600; color: var(--charcoal); }

/* ── FOOTER ── */
footer {
  background: var(--charcoal);
  padding: 2.5rem var(--pad-x);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--off-white);
}
.footer-logo .suffix { font-style: italic; font-weight: 400; color: var(--sage-light); }
.footer-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}
.footer-links a {
  font-size: 0.75rem;
  color: rgba(245,242,236,0.4);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--off-white); }
.footer-copy {
  font-size: 0.72rem;
  color: rgba(245,242,236,0.3);
  width: 100%;
  text-align: right;
}
@media (max-width: 600px) {
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
}
