/* Schriften liegen lokal im Ordner fonts/ — kein Aufruf an Google. */
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Cormorant Garamond';
  src: url('fonts/CormorantGaramond-LightItalic.woff2') format('woff2');
  font-weight: 300; font-style: italic; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/Jost-Light.woff2') format('woff2');
  font-weight: 300; font-style: normal; font-display: swap;
}
@font-face {
  font-family: 'Jost';
  src: url('fonts/Jost-Regular.woff2') format('woff2');
  font-weight: 400; font-style: normal; font-display: swap;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --off-white: #F4F1EC;
  --text-dark: #1a1814;
  --text-mid: #5a5650;
  --text-light: #6f6a64;
}

body {
  background: var(--off-white);
  color: var(--text-dark);
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  overflow-x: hidden;
}

.kopf {
  padding: 2rem 4rem;
}

.kopf a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 300;
  letter-spacing: 0.12em;
  color: var(--text-dark);
  text-decoration: none;
}

main {
  max-width: 720px;
  margin: 0 auto;
  padding: 3rem 4rem 6rem;
}

h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3rem);
  font-weight: 300;
  line-height: 1.12;
  margin-bottom: 0.8rem;
}

.stand {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 3.5rem;
}

h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.3;
  margin: 3rem 0 1rem;
}

h3 {
  font-size: 0.86rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  margin: 2rem 0 0.6rem;
  color: var(--text-dark);
}

p, li {
  font-size: 0.88rem;
  line-height: 1.95;
  color: var(--text-mid);
}
p + p { margin-top: 1em; }

ul, ol { margin: 1em 0 1em 1.3em; }
li { margin-bottom: 0.5em; }

a { color: var(--text-mid); text-decoration: underline; text-underline-offset: 3px; }
a:hover { color: var(--text-dark); }

.kasten {
  border: 1px solid rgba(90,86,80,0.2);
  padding: 2rem;
  margin: 2rem 0;
}
.kasten p { font-size: 0.84rem; }

footer {
  border-top: 1px solid rgba(90,86,80,0.12);
  padding: 2.5rem 4rem;
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}
footer a {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-light);
  text-decoration: none;
}
footer a:hover { color: var(--text-dark); }

@media (max-width: 768px) {
  .kopf { padding: 1.5rem 2rem; }
  main { padding: 2rem 2rem 4rem; }
  footer { padding: 2rem; }
}
