/* ==========================================================
   Elchland – Schweden ungefiltert
   Farben aus dem Banner: Fichtengrün, Abendgold, Falunrot,
   Flechtengrau als Seitenhintergrund. Keine Webfonts (DSGVO).
   ========================================================== */

:root {
  --spruce: #1f3a2e;      /* Fichtenwald, dunkel */
  --spruce-deep: #152a21; /* Footer, Hero-Rahmen */
  --lichen: #eef1ea;      /* Seitenhintergrund, kühles Flechtengrau */
  --lichen-dark: #dde3d7; /* Linien, Karten */
  --ink: #17231d;         /* Text */
  --ink-soft: #4a5a50;    /* Nebentext */
  --gold: #e0a64b;        /* Abendsonne, Akzent */
  --gold-deep: #b8812c;   /* Akzent auf hellem Grund */
  --falu: #8a2e2a;        /* Schwedenhaus-Rot, nur für den Pfosten */
  --white: #fbfbf8;

  --display: "Helvetica Neue", "Arial Narrow", Arial, system-ui, sans-serif;
  --body: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;

  --measure: 62ch;
  --radius: 3px;
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--lichen);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  line-height: 1.6;
}

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

a { color: var(--gold-deep); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--spruce); }
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.wrap { width: min(100% - 2.5rem, 68rem); margin-inline: auto; }

/* ---------- Hero: das Banner ist die These ---------- */
.hero {
  background: var(--spruce-deep);
}
.hero img {
  width: 100%;
  height: auto;
  margin-inline: auto;
  max-width: 1672px;
}

/* ---------- Schmale Kopfzeile auf Unterseiten ---------- */
.topbar {
  background: var(--spruce);
  color: var(--white);
}
.topbar .wrap {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.9rem;
}
.wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 90%;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 1.1rem;
  color: var(--white);
  text-decoration: none;
}
.wordmark:hover { color: var(--gold); }
.topbar .claim { font-size: 0.9rem; color: var(--lichen-dark); }

/* ---------- Typografie ---------- */
.eyebrow {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-size: 0.78rem;
  color: var(--gold-deep);
  margin: 0 0 0.75rem;
}

h1, h2 {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 90%;
  line-height: 1.05;
  letter-spacing: -0.01em;
  margin: 0 0 1rem;
  text-wrap: balance;
}
h1 { font-size: clamp(2rem, 1.2rem + 3.4vw, 3.4rem); }
h2 { font-size: clamp(1.5rem, 1.1rem + 1.6vw, 2.2rem); }
h3 {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  margin: 1.75rem 0 0.5rem;
}

p { margin: 0 0 1rem; max-width: var(--measure); }
.lede { font-size: 1.2rem; color: var(--ink-soft); }

/* Das eine Wort, das die Seite trägt */
.mark {
  background: linear-gradient(transparent 62%, var(--gold) 62%, var(--gold) 88%, transparent 88%);
  padding-inline: 0.05em;
}

/* ---------- Abschnitte ---------- */
.intro { padding-block: 3.5rem 2.5rem; }

.section { padding-block: 3rem; }
.section + .section { border-top: 1px solid var(--lichen-dark); }

/* ---------- Der Wegweiser (Signatur-Element) ----------
   Vier Schilder an einem roten Pfosten. Jedes Schild ist ein Link.
   Die Pfeilspitze entsteht über clip-path, kein Bild nötig.  */
.signpost {
  position: relative;
  padding-left: 1.9rem;
  margin-top: 2rem;
}
.signpost::before {          /* der Pfosten */
  content: "";
  position: absolute;
  left: 0.45rem;
  top: -1.25rem;
  bottom: -1.25rem;
  width: 0.55rem;
  background: var(--falu);
  border-radius: 2px;
  box-shadow: inset -2px 0 0 rgba(0,0,0,0.18);
}

.sign {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.5rem 1.5rem;
  align-items: center;
  background: var(--spruce);
  color: var(--white);
  text-decoration: none;
  padding: 1.1rem 3.2rem 1.1rem 1.4rem;
  margin-bottom: 0.85rem;
  clip-path: polygon(0 0, calc(100% - 1.6rem) 0, 100% 50%, calc(100% - 1.6rem) 100%, 0 100%);
  transition: transform 180ms ease, background-color 180ms ease;
  max-width: 46rem;
}
.sign:nth-child(even) { margin-left: clamp(0rem, 4vw, 2.5rem); }
.sign:hover, .sign:focus-visible { transform: translateX(6px); background: #24473a; color: var(--white); }
.sign:focus-visible { outline-offset: -4px; }

.sign .where {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold);
  display: block;
  margin-bottom: 0.15rem;
}
.sign .what {
  font-family: var(--display);
  font-weight: 800;
  font-stretch: 90%;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  font-size: clamp(1.25rem, 1rem + 1.2vw, 1.7rem);
  line-height: 1.1;
  display: block;
}
.sign .why {
  display: block;
  margin-top: 0.35rem;
  color: #cfd8cf;
  font-size: 0.95rem;
  max-width: 38ch;
}
.sign .go {
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  white-space: nowrap;
  color: var(--gold);
}

@media (max-width: 640px) {
  .sign { grid-template-columns: 1fr; padding-right: 2.6rem; }
  .sign .go { margin-top: 0.2rem; }
  .sign:nth-child(even) { margin-left: 0; }
}

/* Sanftes Einblenden der Schilder, nur wenn erwünscht */
@media (prefers-reduced-motion: no-preference) {
  .sign { animation: rise 520ms ease both; }
  .sign:nth-child(2) { animation-delay: 80ms; }
  .sign:nth-child(3) { animation-delay: 160ms; }
  .sign:nth-child(4) { animation-delay: 240ms; }
  @keyframes rise {
    from { opacity: 0; transform: translateX(-10px); }
    to   { opacity: 1; transform: translateX(0); }
  }
}

/* ---------- Wer dahintersteckt ---------- */
.about { display: grid; gap: 2rem; grid-template-columns: 1fr; }
@media (min-width: 820px) { .about { grid-template-columns: 1.4fr 1fr; gap: 3rem; } }

.facts {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--lichen-dark);
}
.facts li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--lichen-dark);
  display: grid;
  grid-template-columns: 9rem 1fr;
  gap: 1rem;
  font-size: 0.98rem;
}
.facts dt, .facts .k {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--ink-soft);
  padding-top: 0.25rem;
}

.soon {
  background: var(--white);
  border: 1px solid var(--lichen-dark);
  border-left: 4px solid var(--gold);
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  max-width: 46rem;
}
.soon p:last-child { margin-bottom: 0; }

/* ---------- Footer ---------- */
.footer {
  background: var(--spruce-deep);
  color: var(--lichen-dark);
  margin-top: 3rem;
  padding-block: 2.2rem;
  font-size: 0.92rem;
}
.footer .wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 2rem;
  align-items: baseline;
  justify-content: space-between;
}
.footer nav { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer a { color: var(--gold); }
.footer a:hover { color: var(--white); }
.footer .small { color: #9db09f; }

/* ---------- Rechtstexte ---------- */
.legal { padding-block: 3rem 1rem; }
.legal h1 { font-size: clamp(1.8rem, 1.2rem + 2.2vw, 2.6rem); }
.legal h2 { font-size: 1.35rem; margin-top: 2.25rem; }
.legal p, .legal li, .legal address { max-width: var(--measure); }
.legal address { font-style: normal; line-height: 1.7; }
.legal ul { padding-left: 1.2rem; }
.todo {
  background: #fff6e3;
  border: 1px dashed var(--gold-deep);
  padding: 0.15em 0.4em;
  border-radius: 3px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.92em;
}
.hint {
  background: #fff6e3;
  border-left: 4px solid var(--gold-deep);
  padding: 0.9rem 1.1rem;
  margin: 0 0 2rem;
  font-size: 0.95rem;
  max-width: var(--measure);
}

/* ---------- Start-Hinweis unter der Einleitung ---------- */
.launch {
  margin-top: 1.75rem;
  background: var(--white);
  border: 1px solid var(--lichen-dark);
  border-left: 4px solid var(--gold);
  padding: 1.1rem 1.3rem;
  border-radius: var(--radius);
  max-width: 46rem;
}
.launch .eyebrow { margin-bottom: 0.4rem; }
.launch p:last-of-type { margin-bottom: 0.6rem; }
.launch a {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  color: var(--gold-deep);
}
.launch a:hover { color: var(--spruce); }
