/* Zeitfenster am Baum — gemeinsame Styles
   Marken-Palette Diversity Lab. Mobile-first, Dark-Mode, offline (keine externen Fonts). */

:root {
  --teal: #1a616e;
  --teal-light: #4f8c92;
  --gold: #c39641;
  --cream: #e1d9d2;
  --gray-50: #f2f2f2;
  --ink: #21302f;
  --bg: #f6f3ef;
  --card: #ffffff;
  --muted: #5d6b6a;
  --line: rgba(26, 97, 110, 0.14);
  --shadow: 0 6px 24px rgba(26, 97, 110, 0.12);
  /* Marken-Fonts später als woff2 unter /vendor self-hosten und hier eintragen. */
  --font-heading: "Belleza", "Iowan Old Style", "Palatino Linotype", Palatino, Georgia, serif;
  --font-body: "Open Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 16px;
}

@media (prefers-color-scheme: dark) {
  :root {
    --ink: #ece6df;
    --bg: #14201f;
    --card: #1c2b2a;
    --muted: #9db0ae;
    --line: rgba(195, 150, 65, 0.20);
    --shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    --teal-light: #6ba7ad;
  }
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  line-height: 1.55;
  -webkit-text-size-adjust: 100%;
}

body { min-height: 100dvh; }

h1, h2, h3 { font-family: var(--font-heading); font-weight: 400; line-height: 1.15; }

a { color: var(--teal); }
@media (prefers-color-scheme: dark) { a { color: var(--gold); } }

img { max-width: 100%; display: block; }

.wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: max(20px, env(safe-area-inset-top)) 20px calc(28px + env(safe-area-inset-bottom));
}

/* --- Kopf / Hero --- */
.site-head { text-align: center; padding: 28px 0 8px; }
.eyebrow {
  text-transform: uppercase; letter-spacing: 0.14em; font-size: 12px;
  color: var(--teal-light); font-weight: 700; margin: 0 0 6px;
}
.site-head h1 { font-size: clamp(28px, 7vw, 40px); margin: 0 0 8px; color: var(--teal); }
@media (prefers-color-scheme: dark) { .site-head h1 { color: var(--cream); } }
.lede { color: var(--muted); font-size: 17px; margin: 0 auto; max-width: 46ch; }

/* --- Menü-Karten --- */
.menu { display: grid; gap: 14px; margin: 26px 0; }
.card {
  display: flex; align-items: center; gap: 16px;
  background: var(--card); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 18px 18px;
  text-decoration: none; color: inherit; box-shadow: var(--shadow);
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:active { transform: scale(.985); }
.card .ico {
  flex: 0 0 auto; width: 52px; height: 52px; border-radius: 13px;
  display: grid; place-items: center; font-size: 26px;
  background: linear-gradient(135deg, var(--teal), var(--teal-light)); color: #fff;
}
.card.gold .ico { background: linear-gradient(135deg, var(--gold), #d8b05f); }
.card .txt { flex: 1; min-width: 0; }
.card .txt strong { display: block; font-size: 18px; font-weight: 700; }
.card .txt span { color: var(--muted); font-size: 14.5px; }
.card .chev { color: var(--teal-light); font-size: 22px; flex: 0 0 auto; }

.hero-photo {
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: var(--shadow); margin: 4px 0 8px; background: #d9d2c9;
}
.hero-photo img { width: 100%; height: auto; filter: saturate(.92); }
.hero-cap { color: var(--muted); font-size: 13px; text-align: center; margin: 8px 0 0; }

.foot { text-align: center; color: var(--muted); font-size: 12.5px; margin-top: 26px; }
.foot a { color: var(--muted); }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font: inherit; font-weight: 700; cursor: pointer;
  border: 0; border-radius: 999px; padding: 14px 22px;
  background: var(--teal); color: #fff; text-decoration: none;
}
.btn.gold { background: var(--gold); color: #26210f; }
.btn.ghost { background: transparent; color: var(--teal); border: 1.5px solid var(--line); }
.btn:active { transform: scale(.98); }
.btn[disabled] { opacity: .5; pointer-events: none; }

/* --- Datenschutz-Zeile --- */
.privacy {
  display: flex; gap: 8px; align-items: flex-start;
  color: var(--muted); font-size: 13px; margin: 14px 0 0; line-height: 1.4;
}
.privacy svg { flex: 0 0 auto; margin-top: 2px; }

.sr-only {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
