:root {
  --linen: #f4eee6;
  --linen-dark: #e9e0d4;
  --taupe: #a89a8b;
  --ink: #5b4e43;
  --ink-soft: #85766a;
  --rose: #d99a9a;
  --rose-light: #ecc4c0;
  --sage: #9fb0a0;
  --sage-dark: #7e917f;
  --gold: #c7a56e;
}

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

body {
  min-height: 100vh;
  padding: 40px 16px 32px;
  overflow-x: hidden;
  font-family: "Josefin Sans", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  color: var(--ink);
  background: radial-gradient(ellipse 90% 80% at 50% 20%, #faf6f0 0%, var(--linen) 55%, var(--linen-dark) 100%) fixed;
}

.page {
  max-width: 720px;
  margin: 0 auto;
}

.page-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.page-header a.home {
  display: block;
  width: min(280px, 70vw);
}

.page-header img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 4px;
  box-shadow: 0 12px 28px -14px rgba(91, 78, 67, 0.45);
}

.divider {
  width: 180px;
  margin: 28px 0 12px;
}

h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 400;
  font-size: clamp(2.2rem, 7vw, 3rem);
  line-height: 1.1;
}

h2 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: 1.55rem;
  line-height: 1.25;
  margin: 36px 0 10px;
}

h3 {
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: 0.06em;
  margin: 22px 0 6px;
}

p, ul, address { margin-bottom: 12px; }
address { font-style: normal; }
ul { padding-left: 1.2em; }
li { margin-bottom: 4px; }
strong { font-weight: 400; }

a {
  color: var(--ink);
  text-decoration-color: var(--rose);
  text-underline-offset: 3px;
  overflow-wrap: anywhere;
}
a:hover { color: var(--rose); }

/* Noch auszufüllende Angaben */
.todo {
  background: #fbe7a8;
  color: #5b4e43;
  padding: 0 4px;
  border-radius: 3px;
}

.back {
  display: inline-block;
  margin-top: 40px;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
}

footer {
  max-width: 720px;
  margin: 56px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(168, 154, 139, 0.4);
  text-align: center;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--ink-soft);
}

footer a { color: var(--ink-soft); }
