/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --color-bg:        #f9f8f6;
  --color-surface:   #ffffff;
  --color-text:      #343D45;
  --color-muted:     #1F3D34;
  --color-rule:      #d8d2c8;
  --color-accent:    #2d4a3e;
  --font-body:       'Source Serif 4', Georgia, serif;
  --font-display:    'Cormorant Garamond', Georgia, serif;
}

html { font-size: 18px; scroll-behavior: smooth; }

body {
  background-color: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  line-height: 1.85;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  padding: 5.5rem 1rem 5rem;
}

/* ── Card ── */
.card {
  background: var(--color-surface);
  border-radius: 8px;
  max-width: 800px;
  margin: 0 auto;
  padding: 4.5rem 3.5rem 4.5rem;
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

/* ── Header: zentriert ── */
.site-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 2.5rem;
}

.site-logo img {
  width: 80px;
  height: 80px;
  display: block;
}

/* ── Horizontal Rules ── */
hr {
  border: none;
  border-top: 1px solid var(--color-rule);
  margin: 2.5rem 0;
}

/* ── Typography ── */
h1 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.5;
  margin-bottom: 1.75rem;
  letter-spacing: 0;
  color: #343D45;
}

h2 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 300;
  line-height: 1.5;
  letter-spacing: 0.05em;
  margin: 3rem 0 1.25rem;
  color: #464B56;
}

p {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0;
  margin-bottom: 1em;
  color: #343D45;
}

p:last-child { margin-bottom: 0; }

strong {
  font-weight: 700;
}

em { font-style: italic; }

ul {
  margin: 0.75rem 0 1em 1.25rem;
  list-style: disc;
}

ul li {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  color: #343D45;
  margin-bottom: 0.4em;
}

/* ── Eyebrow label ── */
.label {
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 800;
  line-height: 1.5;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #585F66;
  margin-bottom: 0.5rem;
  display: block;
}

/* ── Tip Box ── */
.tip-box {
  background: #F2F3F4;
  border: 1px solid var(--color-rule);
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0 1rem;
}

.tip-box a {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-weight: 400;
  color: var(--color-accent);
  text-decoration: none;
  border-bottom: 1px solid var(--color-accent);
  padding-bottom: 1px;
}

.tip-box a:hover {
  opacity: 0.75;
}

.tip-box p {
  font-size: 0.92rem;
  margin-bottom: 0;
  color: #585F66;
  font-weight: 400;
}

/* ── CTA Box ── */
.cta-box {
  background: #f7f5f2;
  border: none;
  border-left: 4px solid var(--color-accent);
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
}

.cta-box p {
  font-size: 1rem;
  margin-bottom: 0.9rem;
  color: var(--color-muted);
  font-weight: 300;
}

.cta-box p:last-child { margin-bottom: 0; }

.cta-link {
  display: inline-block;
  background: var(--color-accent);
  color: #ffffff;
  padding: 0.5rem 0.9rem;
  border: none;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  transition: opacity 0.15s;
}

.cta-link:hover { color: var(--color-rule); }

.contact-icons {
  display: flex;
  gap: 1.25rem;
  margin-top: 0.75rem;
}

.contact-icons a {
  color: #585F66;
  text-decoration: none;
  border: none;
  transition: color 0.15s;
}

.contact-icons a:hover {
  color: var(--color-accent);
}

/* ── Footer ── */
.site-footer {
  margin-top: 3.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--color-rule);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
}

.site-footer p {
  font-size: 0.68rem;
  color: var(--color-muted);
  margin: 0;
  letter-spacing: 0.03em;
}

.site-footer nav { display: flex; gap: 1.25rem; }

.site-footer nav a {
  font-size: 0.68rem;
  color: var(--color-muted);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s;
  font-family: var(--font-display);
}

.site-footer nav a:hover { border-color: var(--color-muted); }

/* ── Responsive ── */
@media (max-width: 600px) {
  html { font-size: 16px; }
  body { padding: 1.5rem 0.75rem 4rem; }
  .card { padding: 2.5rem 1.5rem 3rem; border-radius: 6px; max-width: 100%; }
}
