:root
  {
  --bg: #0e1412;
  --text: #e7efe9;
  --muted: #b9c7bf;
  --card: rgba(255,255,255,0.06);
  --cardBorder: rgba(255,255,255,0.12);
  --link: #dff7ea;
  --btn: rgba(255,255,255,0.12);
  --btnHover: rgba(255,255,255,0.18);
  --shadow: 0 10px 30px rgba(0,0,0,0.35);
  --radius: 18px;
  }

*{ box-sizing: border-box; }

html, body { height: 100%; }

body
  {
  margin: 0;
  font: 16px/1.55 system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background: var(--bg);
  }

a { color: var(--link); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap
  {
  width: min(1100px, calc(100% - 2rem));
  margin: 0 auto;
  }

/* Skip link (Barrierefreiheit) */
.skip_link
  {
  position: absolute;
  top: 0;
  left: 0;
  padding: .6rem .9rem;
  border-radius: 10px;
  background: #ffffff;
  color: #000;
  /* moderner unsichtbar-Trick */
  transform: translateY(-120%);
  }

.skip_link:focus
  {
  transform: translateY(0);
  z-index: 9999;
  }

.site_header
  {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(14,20,18,0.78);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  }

.header_inner
  {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .75rem 0;
  gap: 1rem;
  }

.brand
  {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  }

.brand_mark
  {
  width: 40px;
  height: 40px;
  display: block;
  }

.brand_text
  {
  font-weight: 650;
  letter-spacing: .2px;
  }

.top_nav
  {
  display: flex;
  gap: 1rem;
  }

.top_nav a
  {
  padding: .35rem .55rem;
  border-radius: 10px;
  }

.top_nav a:hover
  {
  background: rgba(255,255,255,0.08);
  text-decoration: none;
  }

.hero
  {
  background: radial-gradient(1200px 800px at 50% 0%, rgba(255,255,255,0.06), transparent 60%);
  padding: 1.2rem 0 0.8rem;
  }
.hero_figure { margin: 0; }

.hero_img
  {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,0.10);
    /*
    Stabilität gegen „kaputt“ wirkende Crops:
    Bild bleibt vollständig sichtbar, keine Verzerrung
    */
  object-fit: contain;
  background: rgba(255,255,255,0.02);
  }

.hero_map
  {
  position: relative;
  }

.hero_map .hotspots
  {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: auto;
  }

.title_wrap
  {
  display: flex;
  justify-content: center;
  }

/* Scope für alle Unterseiten */
.page_inhalt .intro_card
  {
  position: relative;
  overflow: hidden;
  }

.page_inhalt .title_wrap
  {
  position: relative;
  margin: 0 0 1.2rem;
  padding-bottom: 10px; /* Nebel sitzt höher */
  isolation: isolate;
  }

.page_inhalt .title_wrap::before
  {
  content:"";
  position:absolute;
  left:-14%;
  right:-14%;
  bottom: 18px;
  height:90px;
  background: radial-gradient(ellipse at 50% 45%,
    rgba(189,225,175,0.06) 0%,
    rgba(189,225,175,0.03) 45%,
    transparent 85%);
  pointer-events:none;
  opacity:0.35;
  filter: blur(1.5px);
  animation: moor_nebel_soft 18s ease-in-out infinite;
  }

.page_inhalt .title_wrap::after
  {
  content:"";
  position:absolute;
  left:-10%;
  right:-10%;
  bottom: 18px;
  height:70px;
  background: radial-gradient(ellipse at 50% 40%,
    rgba(189,225,175,0.10) 0%,
    rgba(189,225,175,0.06) 35%,
    rgba(189,225,175,0.02) 60%,
    transparent 85%);
  pointer-events:none;
  filter: blur(1.5px);
  animation: moor_nebel 10s ease-in-out infinite;
  }

/* Impressum-Layout (nur, wenn .impressum gesetzt ist) */
.story_text.impressum h2
  {
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 1.4rem 0 .65rem;
  font-weight: 650;
  letter-spacing: .01em;
  }

.story_text.impressum p
  {
  margin: 0 0 .85rem;
  }

.impr_note
  {
  color: var(--muted);
  margin-bottom: 1.1rem;
  }

.impr_block
  {
  padding-top: .2rem;
  }

.impr_dl
  {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: .35rem 1.1rem;
  margin: .6rem 0 0;
  }

.impr_dl dt
  {
  color: var(--muted);
  }

.impr_dl dd
  {
  margin: 0;
  }

.impr_address
  {
  font-style: normal;
  line-height: 1.45;
  }

.story_text.impressum .impr_block:last-of-type
  {
  margin-top: 2.6rem;
  }

.impr_stamp
  {
  margin-top: 0;
  color: var(--muted);
  opacity: .9;
  font-style: italic;
  }

.title_img
  {
  display: block;
  width: clamp(320px, 72%, 860px);
  height: auto;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,0.35));
  transition: filter .6s ease;
  } 

.title_img:hover
  {
  filter: brightness(1.05) saturate(1.05);
  }

.intro { padding: 1rem 0 2.5rem; }

.intro_card
  {
  background: rgba(255,255,255,0.06); /* statt Verlauf */
  border: 1px solid var(--cardBorder);
  border-radius: var(--radius);
  padding: 1.25rem 5rem 2.2rem 5rem;
  box-shadow: 0 12px 40px rgba(0,0,0,0.25);
  transform: translateY(-8px);
  }

/* Typografie ruhig halten: maximale Zeilenlänge */
.intro_title
  {
  font-size: clamp(1.4rem, 2.4vw, 2rem);
  text-shadow:
    0 0 6px rgba(210, 235, 210, 0.12),
    0 0 14px rgba(255, 245, 210, 0.06);
  line-height: 1.35;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 1.35rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.10);
  }

.intro_story, .intro_meta, .story_text
  {
  margin: 0 0 .9rem;
  color: var(--text);
  }

.intro_story
  {
  line-height: 1.4;
  margin-top: 0.55rem;
  }

.story_text
  {
  line-height: 1.4;
  margin-top: 0.55rem;
  }

.intro_meta
  {
  line-height: 1.6;
  margin-top: 1.4rem;
  color: #bde1af;
  font-weight: normal;
  opacity: 0.9;
  }

.intro_meta + .intro_meta
  {
  margin-top: 0.35rem;
  }

.contact_form
  {
  display: grid;
  gap: .9rem;
  margin-top: 1.1rem;
  }

.contact_form label
  {
  display: grid;
  gap: .35rem;
  }

.contact_form input,
.contact_form textarea
  {
  width: 100%;
  padding: .7rem .85rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(255,255,255,0.05);
  color: var(--text);
  }

.contact_form textarea { resize: vertical; }

/* Formularblock schmaler und zentriert */
.story_text.impressum .contact_form
  {
  width: min(680px, 100%);
  margin-left: auto;
  margin-right: auto;
  }

.story_text.impressum .contact_form input,
.story_text.impressum .contact_form textarea
  {
  max-width: 100%;
  border-radius: 12px;
  }

/* Desktop: Button nur so breit wie der Inhalt */
.story_text.impressum .contact_form .btn
  {
  width: fit-content;
  justify-self: start;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
  }

.hp_field
  {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
  }

/* Buttons für Unterseiten */
.intro_actions
  {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin: 1rem 0 1rem;
  }

.title_wrap
  {
  display: flex;
  justify-content: center;
  margin: 0 0 1.2rem;
  }

.page_inhalt .title_wrap::before,
.page_inhalt .title_wrap::after
  {
  -webkit-mask-image: linear-gradient(to right,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%
    );
  mask-image: linear-gradient(to right,
    transparent 0%,
    #000 14%,
    #000 86%,
    transparent 100%);
  }

/* Kontakt-Text + Brieftaube: Desktop nebeneinander, mobil untereinander */
.story_text.impressum .impr_pigeon_row
  {
  display: grid;
  grid-template-columns: 1fr minmax(220px, 320px);
  gap: .6rem 1.2rem;
  align-items: start;
  margin-bottom: .6rem;
  }

.story_text.impressum .impr_pigeon_text p:last-child
  {
  margin-bottom: 0;
  }

.story_text.impressum .impr_bird
  {
  width: 100%;
  height: auto;
  margin: 0;
  justify-self: end;
  }

@keyframes moor_nebel
  {
  0%   { opacity: 0.18; }
  35%  { opacity: 0.85; }
  60%  { opacity: 0.35; }
  100% { opacity: 0.18; }
  }

@keyframes moor_nebel_soft
  {
  0%   { opacity: 0.22; }
  45%  { opacity: 0.55; }
  75%  { opacity: 0.30; }
  100% { opacity: 0.22; }
  }

.btn
  {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .65rem 1rem;
  border-radius: 999px;
  background: var(--btn);
  border: 1px solid rgba(255,255,255,0.16);
  text-decoration: none;
  color: var(--text);
  }

.btn:hover
  {
  background: var(--btnHover);
  text-decoration: none;
  }

.btn_secondary { background: transparent; }

.nowrap{ white-space: nowrap; }

.site_footer
  {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 1rem 0 2rem;
  color: var(--muted);
  }

.footer_inner
  {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  }

.site_footer a { color: var(--muted); }

/* Mobile: Button volle Breite (Daumenfreundlich) */
@media (max-width: 520px)
  {
  .story_text.impressum .contact_form .btn
    {
    width: 100%;
    justify-self: stretch;
    }
  }

/* Mobile Feinschliff */
@media (max-width: 560px)
  {
  .title_wrap{ margin-bottom: 1rem; }
  .title_img{ max-width: 520px; }
  .top_nav{ gap: .4rem; }
  .top_nav a{ padding: .3rem .45rem; }
  .intro_card
    {
    padding: 1rem;
    transform: translateY(-4px);
    }
  .impr_dl
    {
    grid-template-columns: 1fr;
    }

@media (max-width: 720px)
  {
  .story_text.impressum .impr_pigeon_row
    {
    grid-template-columns: 1fr;
    }
  .story_text.impressum .impr_bird
    {
    max-width: 380px;
    justify-self: start; /* oder center */
    margin-top: .4rem;
    }
  }

/* Reduced motion */
@media (prefers-reduced-motion: reduce)
  {
  *{ scroll-behavior: auto !important; }
  .title_wrap::before, .title_wrap::after
    {
    animation:none;
    }
  }