/* ==========================================================================
   Fachtagung Ambulante Psychiatrische Pflege – Gestaltung
   Aufbau wie vapp.ch (Schriften, Karten, Kopf, Abschnitte, Fuss),
   Farben aus dem Fachtagung-Logo: Dunkelblau #203878, Grün #609830.
   ========================================================================== */

:root {
  --navy:        #203878;
  --navy-deep:   #16295c;
  --navy-ink:    #0e1b41;
  --navy-mid:    #3b58a8;
  --navy-light:  #e8eefb;
  --navy-pale:   #f4f7fd;
  --green:       #609830;
  --green-deep:  #4a7a22;
  --green-light: #edf6e4;
  --text:        #121a33;
  --text-mid:    #46526f;
  --text-muted:  #6f7a98;
  --white:       #ffffff;
  --off-white:   #fafbfe;
  --border:      #dfe5f1;
  --danger:      #b42318;
  --danger-light:#fdecea;
  --warn:        #9a6700;
  --warn-light:  #fff6db;
  --radius-s:    10px;
  --radius-m:    18px;
  --radius-l:    28px;
  --radius-xl:   40px;
  --ease:        cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --font-body:   'DM Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --font-head:   'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  --shadow-s:    0 2px 8px rgba(32, 56, 120, .08);
  --shadow-m:    0 14px 36px rgba(32, 56, 120, .12);
  --shadow-l:    0 30px 70px rgba(14, 27, 65, .18);
}

/* ---------- Grundlagen ---------- */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 100px; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--navy); text-decoration: none; transition: color .2s; }
a:hover { color: var(--navy-mid); }
.icon { flex-shrink: 0; }
.container { max-width: 1220px; margin: 0 auto; padding: 0 2rem; }
.container-schmal { max-width: 860px; }
:focus-visible { outline: 3px solid rgba(96, 152, 48, .55); outline-offset: 2px; border-radius: 6px; }

.sprunglink {
  position: absolute; left: 1rem; top: -60px; z-index: 1000;
  background: var(--navy); color: #fff; padding: .6rem 1rem; border-radius: var(--radius-s);
}
.sprunglink:focus { top: 1rem; color: #fff; }

/* ---------- Kopf ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}
.site-header.gescrollt { box-shadow: 0 6px 24px rgba(14, 27, 65, .07); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 88px; position: relative; }
.site-logo img { height: 62px; width: auto; }
.logo-text { font-family: var(--font-head); font-weight: 800; font-size: 1.4rem; color: var(--navy); letter-spacing: -.02em; }
.logo-text span { color: var(--green); margin-left: .3rem; }

.site-nav { display: flex; align-items: center; gap: .25rem; }
.site-nav a {
  padding: .5rem .9rem; font-size: .95rem; font-weight: 500; color: var(--text-mid);
  border-radius: var(--radius-s); transition: all .2s var(--ease); white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active { background: var(--navy-light); color: var(--navy); }
.site-nav .nav-cta { margin-left: .6rem; color: #fff !important; padding: .55rem 1.15rem; }
.site-nav .nav-cta:hover, .site-nav .nav-cta.active { background: var(--navy-deep) !important; color: #fff !important; }
.site-nav .nav-admin { margin-left: .3rem; padding: .35rem .6rem; font-size: .8rem; color: var(--text-muted); opacity: .6; }
.site-nav .nav-admin:hover { opacity: 1; background: var(--navy-pale); color: var(--text-mid); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: .25s var(--ease); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Schaltflächen ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .78rem 1.5rem; border-radius: var(--radius-s);
  font-size: .95rem; font-weight: 600; font-family: var(--font-body); line-height: 1.2;
  cursor: pointer; transition: all .22s var(--ease); border: none; text-align: center;
}
.btn-primary { background: var(--navy); color: #fff; box-shadow: 0 2px 10px rgba(32, 56, 120, .22); }
.btn-primary:hover { background: var(--navy-deep); color: #fff; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(32, 56, 120, .3); }
.btn-green { background: var(--green); color: #fff; box-shadow: 0 2px 10px rgba(96, 152, 48, .25); }
.btn-green:hover { background: var(--green-deep); color: #fff; transform: translateY(-2px); }
.btn-ghost { background: transparent; border: 1.5px solid var(--border); color: var(--text-mid); }
.btn-ghost:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-light); transform: translateY(-2px); }
.btn-ghost-white { background: rgba(255, 255, 255, .8); border: 1.5px solid rgba(255, 255, 255, .7); color: var(--text-mid); backdrop-filter: blur(8px); }
.btn-ghost-white:hover { background: #fff; border-color: var(--navy); color: var(--navy); transform: translateY(-2px); }
.btn-white { background: #fff; color: var(--navy); box-shadow: 0 4px 16px rgba(0, 0, 0, .15); padding: .9rem 2rem; }
.btn-white:hover { background: var(--navy-pale); color: var(--navy); transform: translateY(-2px); }
.btn-block { width: 100%; }
.btn-gross { padding: 1rem 1.9rem; font-size: 1.02rem; }
.btn[disabled], .btn.is-disabled { opacity: .55; pointer-events: none; }

/* ---------- Startseite: Hero ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 88% -10%, rgba(59, 88, 168, .16), transparent 60%),
    radial-gradient(700px 420px at 10% 110%, rgba(96, 152, 48, .12), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, var(--navy-pale) 100%);
  padding: 5.5rem 0 6rem;
}
.hero-deko { position: absolute; inset: 0; pointer-events: none; }
.hero-deko svg { position: absolute; }
.hero-deko .deko-dreieck { right: -120px; top: -80px; width: 620px; opacity: .07; }
.hero-deko .deko-punkte { left: 46%; bottom: 40px; width: 220px; opacity: .5; }
.hero-deko .deko-kreis { left: -60px; top: 120px; width: 180px; opacity: .1; }

.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr); gap: 4rem; align-items: center; }
.hero-content { animation: fadeUp .9s var(--ease) both; }
.hero-badge {
  display: inline-flex; align-items: center; gap: .55rem;
  background: rgba(255, 255, 255, .9); border: 1px solid var(--border);
  color: var(--navy); font-size: .76rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  padding: .45rem .95rem; border-radius: 100px; margin-bottom: 1.8rem; box-shadow: var(--shadow-s);
}
.hero-badge::before {
  content: ''; width: 8px; height: 8px; background: var(--green); border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(96, 152, 48, .18); animation: pulse 2.2s ease infinite;
}
.hero h1 {
  font-family: var(--font-head); font-size: clamp(2.2rem, 4.6vw, 3.7rem); font-weight: 700;
  line-height: 1.07; color: var(--navy-ink); margin-bottom: 1.4rem; letter-spacing: -.03em;
}
.hero h1 em { font-style: italic; color: var(--green-deep); font-weight: 600; }
.hero-sub { font-size: 1.1rem; color: var(--text-mid); max-width: 540px; margin-bottom: 2.2rem; line-height: 1.7; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 2.2rem; }
.hero-fakten { display: flex; flex-wrap: wrap; gap: .6rem; }
.fakt-chip {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255, 255, 255, .92); border: 1.5px solid var(--border); border-radius: 100px;
  padding: .45rem .95rem; font-size: .88rem; color: var(--text); font-weight: 600;
}
.fakt-chip .icon { color: var(--navy); opacity: .8; }

/* Ticket-Karte */
.ticket {
  position: relative; background: #fff; border-radius: var(--radius-l);
  box-shadow: var(--shadow-l); overflow: hidden; animation: fadeUp 1s .15s var(--ease) both;
}
.ticket-kopf {
  position: relative; padding: 2rem 2rem 1.6rem; color: #fff; overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 70%, #102050 100%);
}
.ticket-kopf::after {
  content: ''; position: absolute; right: -70px; bottom: -110px; width: 220px; height: 220px;
  border-radius: 50%; background: radial-gradient(circle, rgba(96, 152, 48, .45) 0%, rgba(96, 152, 48, 0) 70%);
}
.ticket-kopf::before {
  content: ''; position: absolute; right: 26px; top: 22px; width: 18px; height: 18px;
  border-radius: 50%; background: var(--green); box-shadow: 0 0 0 6px rgba(96, 152, 48, .25);
}
.ticket-label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; opacity: .75; }
.ticket-datum { display: flex; align-items: flex-end; gap: .8rem; margin-top: .6rem; position: relative; z-index: 1; }
.ticket-tag { font-family: var(--font-head); font-size: 4.6rem; font-weight: 300; line-height: .85; letter-spacing: -.04em; }
.ticket-monat { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; line-height: 1.1; }
.ticket-monat small { display: block; font-size: .95rem; font-weight: 400; opacity: .8; }
.ticket-perforation {
  height: 22px; position: relative;
  background: radial-gradient(circle at 0 50%, var(--navy-pale) 11px, transparent 12px) left / 22px 22px no-repeat,
              radial-gradient(circle at 100% 50%, var(--navy-pale) 11px, transparent 12px) right / 22px 22px no-repeat;
}
.ticket-perforation::after {
  content: ''; position: absolute; left: 22px; right: 22px; top: 50%;
  border-top: 2px dashed var(--border);
}
.ticket-body { padding: .6rem 2rem 2rem; }
.countdown { display: grid; grid-template-columns: repeat(4, 1fr); gap: .5rem; margin-bottom: 1.4rem; }
.countdown div { background: var(--navy-pale); border-radius: var(--radius-s); padding: .7rem .3rem; text-align: center; }
.countdown strong { display: block; font-family: var(--font-head); font-size: 1.6rem; font-weight: 600; color: var(--navy); line-height: 1.1; font-variant-numeric: tabular-nums; }
.countdown span { font-size: .7rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: .06em; }
.ticket-zeilen { list-style: none; display: grid; gap: .7rem; margin-bottom: 1.4rem; }
.ticket-zeilen li { display: flex; gap: .7rem; align-items: flex-start; font-size: .93rem; color: var(--text-mid); line-height: 1.45; }
.ticket-zeilen .icon { color: var(--navy); margin-top: 1px; }
.ticket-zeilen strong { color: var(--text); font-weight: 600; }
.status-pille {
  display: inline-flex; align-items: center; gap: .5rem; font-size: .82rem; font-weight: 700;
  padding: .38rem .8rem; border-radius: 100px; margin-bottom: 1.1rem;
}
.status-pille::before { content: ''; width: 8px; height: 8px; border-radius: 50%; background: currentColor; }
.status-offen { background: var(--green-light); color: var(--green-deep); }
.status-warteliste { background: var(--warn-light); color: var(--warn); }
.status-zu { background: var(--navy-light); color: var(--navy); }

/* ---------- Band ---------- */
.intro-strip { background: var(--navy); color: #fff; padding: 1.05rem 0; }
.strip-inner { display: flex; gap: 3rem; align-items: center; justify-content: center; flex-wrap: wrap; }
.strip-item { display: flex; align-items: center; gap: .6rem; font-size: .9rem; font-weight: 600; white-space: nowrap; }
.strip-item .icon { color: #9fd070; }
.strip-dot { width: 5px; height: 5px; background: rgba(255, 255, 255, .35); border-radius: 50%; }

/* ---------- Abschnitte ---------- */
.section { padding: 6rem 0; }
.section-hell { background: var(--off-white); }
.section-blau { background: var(--navy-pale); }
.section-header { margin-bottom: 3.2rem; }
.section-header.mit-aktion { display: flex; justify-content: space-between; align-items: flex-end; gap: 1.5rem; flex-wrap: wrap; }
.section-label {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--green-deep); margin-bottom: .75rem;
}
.section-label::before { content: ''; width: 18px; height: 2px; background: var(--green); border-radius: 2px; }
.section-title {
  font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.5rem); font-weight: 400;
  color: var(--navy-ink); letter-spacing: -.02em; line-height: 1.2;
}
.section-title em { font-style: italic; color: var(--navy); font-weight: 600; }
.section-sub { margin-top: .8rem; font-size: 1.02rem; color: var(--text-mid); max-width: 580px; }

/* Einleitung */
.intro-grid { display: grid; grid-template-columns: minmax(0, 1.4fr) minmax(0, .9fr); gap: 4rem; align-items: start; }
.fliesstext p { font-size: 1.03rem; color: var(--text-mid); margin-bottom: 1.1rem; line-height: 1.8; }
.fliesstext p:first-child { font-size: 1.15rem; color: var(--text); line-height: 1.75; }
.mehr-text { position: relative; max-height: 22rem; overflow: hidden; transition: max-height .6s var(--ease); }
.mehr-text::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 7rem;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 85%); transition: opacity .3s;
}
.mehr-text.offen { max-height: 200rem; }
.mehr-text.offen::after { opacity: 0; pointer-events: none; }
.mehr-knopf { margin-top: .5rem; background: none; border: none; color: var(--navy); font-weight: 600; font-size: .95rem; cursor: pointer; display: inline-flex; gap: .4rem; align-items: center; font-family: inherit; }
.mehr-knopf:hover { color: var(--navy-mid); }

.fakten-karte { background: var(--navy-pale); border: 1px solid var(--border); border-radius: var(--radius-l); padding: 2.2rem; position: sticky; top: 112px; }
.fakten-karte h3 { font-family: var(--font-head); font-size: 1.15rem; font-weight: 600; margin-bottom: 1.4rem; color: var(--navy-ink); }
.fakten-liste { list-style: none; display: grid; gap: 1.1rem; }
.fakten-liste li { display: grid; grid-template-columns: 40px 1fr; gap: .9rem; align-items: start; }
.fakten-icon { width: 40px; height: 40px; border-radius: 12px; background: #fff; display: flex; align-items: center; justify-content: center; color: var(--navy); box-shadow: var(--shadow-s); }
.fakten-liste small { display: block; font-size: .74rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; color: var(--text-muted); }
.fakten-liste span { font-weight: 600; color: var(--text); font-size: .96rem; line-height: 1.45; }

/* Karten */
.karten-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.karten-grid.zwei { grid-template-columns: repeat(2, 1fr); }
.karte {
  background: #fff; border-radius: var(--radius-m); padding: 2rem; border: 1px solid var(--border);
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.karte::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--navy), var(--green)); transform: scaleX(0); transform-origin: left; transition: transform .35s var(--ease);
}
.karte:hover { transform: translateY(-4px); box-shadow: var(--shadow-m); border-color: #c9d4ec; }
.karte:hover::before { transform: scaleX(1); }
.karte-icon { width: 48px; height: 48px; background: var(--navy-light); border-radius: var(--radius-s); display: flex; align-items: center; justify-content: center; margin-bottom: 1.2rem; color: var(--navy); }
.karte-tag {
  display: inline-flex; align-items: center; gap: .4rem; font-size: .72rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 100px; background: var(--navy-light); color: var(--navy); margin-bottom: 1rem;
}
.karte-tag.gruen { background: var(--green-light); color: var(--green-deep); }
.karte h3 { font-family: var(--font-head); font-size: 1.16rem; font-weight: 600; margin-bottom: .8rem; color: var(--navy-ink); line-height: 1.35; }
.karte p { font-size: .95rem; color: var(--text-mid); line-height: 1.65; }
.karte .personen { margin-top: auto; }

.personen { list-style: none; display: grid; gap: .45rem; }
.personen li { font-size: .9rem; color: var(--text-mid); line-height: 1.5; }
.personen li strong { color: var(--text); font-weight: 600; }

/* Keynote-Karten */
.keynote-karte { display: flex; flex-direction: column; align-items: flex-start; min-height: 100%; }
.keynote-karte .personen { width: 100%; }
.keynote-karte .keynote-zeit { font-family: var(--font-head); font-size: .85rem; font-weight: 600; color: var(--text-muted); margin-bottom: .5rem; }
.podium-karte { grid-column: 1 / -1; background: linear-gradient(135deg, #fff 0%, var(--navy-pale) 100%); }
.podium-karte h3 { font-size: 1.35rem; margin-bottom: 1.2rem; }
.podium-karte .personen { grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: .9rem 2rem; }

/* Workshop-Karten */
.ws-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.ws-karte { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-m); padding: 1.5rem; display: flex; flex-direction: column; gap: .9rem; transition: all .25s var(--ease); }
.ws-karte:hover { border-color: #c9d4ec; box-shadow: var(--shadow-m); transform: translateY(-3px); }
.ws-nummer {
  width: 38px; height: 38px; border-radius: 12px; display: flex; align-items: center; justify-content: center;
  background: var(--navy); color: #fff; font-family: var(--font-head); font-weight: 700; font-size: .95rem;
}
.ws-karte h3 { font-family: var(--font-head); font-size: 1.02rem; font-weight: 600; color: var(--navy-ink); line-height: 1.4; }

/* Tarife */
.tarif-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.tarif-karte { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-m); padding: 1.8rem 1.5rem; display: flex; flex-direction: column; gap: .5rem; transition: all .25s var(--ease); }
.tarif-karte:hover { box-shadow: var(--shadow-m); transform: translateY(-3px); }
.tarif-karte.hervor { background: var(--navy); border-color: var(--navy); color: #fff; }
.tarif-karte.hervor .tarif-name, .tarif-karte.hervor .tarif-preis { color: #fff; }
.tarif-karte.hervor .tarif-hinweis { color: rgba(255, 255, 255, .75); }
.tarif-name { font-weight: 700; font-size: .95rem; color: var(--navy-ink); }
.tarif-preis { font-family: var(--font-head); font-size: 2.2rem; font-weight: 300; color: var(--navy); letter-spacing: -.02em; line-height: 1.1; }
.tarif-preis small { font-size: .95rem; font-weight: 600; margin-right: .2rem; }
.tarif-hinweis { font-size: .86rem; color: var(--text-muted); line-height: 1.5; }

/* Ort-Teaser */
.ort-karte { display: grid; grid-template-columns: 1fr 1fr; border-radius: var(--radius-l); overflow: hidden; border: 1px solid var(--border); background: #fff; }
.ort-karte-text { padding: 3rem; }
.ort-karte-text h3 { font-family: var(--font-head); font-size: 1.5rem; font-weight: 600; color: var(--navy-ink); margin: .3rem 0 1rem; line-height: 1.3; }
.ort-karte-text address { font-style: normal; color: var(--text-mid); line-height: 1.7; margin-bottom: 1.6rem; }
.ort-karte-bild {
  position: relative; min-height: 280px;
  background:
    radial-gradient(circle at 60% 45%, rgba(96, 152, 48, .9) 0 10px, rgba(96, 152, 48, .25) 11px 26px, transparent 27px),
    linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  overflow: hidden;
}
.ort-karte-bild svg { position: absolute; inset: 0; width: 100%; height: 100%; opacity: .22; }
.ort-karte-bild .ort-stadt {
  position: absolute; left: 2rem; bottom: 1.6rem; color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: 2.6rem; letter-spacing: -.03em; line-height: 1; opacity: .95;
}
/* Echte Karte (Google Maps, eingebettet) statt der gezeichneten Fläche */
.ort-karte-karte { position: relative; min-height: 340px; background: var(--navy-pale); }
.ort-karte-karte iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.ort-knoepfe { display: flex; flex-direction: column; align-items: flex-start; gap: .6rem; }

/* CTA */
.cta-inner {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--radius-l); padding: 4rem; display: grid; grid-template-columns: 1fr auto;
  align-items: center; gap: 3rem; position: relative; overflow: hidden;
}
.cta-inner::before { content: ''; position: absolute; right: -60px; top: -60px; width: 280px; height: 280px; border-radius: 50%; background: rgba(255, 255, 255, .06); }
.cta-inner::after { content: ''; position: absolute; right: 120px; bottom: -90px; width: 200px; height: 200px; border-radius: 50%; background: rgba(96, 152, 48, .3); }
.cta-text { position: relative; z-index: 1; }
.cta-text h2 { font-family: var(--font-head); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 300; color: #fff; margin-bottom: .75rem; letter-spacing: -.02em; }
.cta-text p { color: rgba(255, 255, 255, .78); font-size: 1.02rem; max-width: 480px; }
.cta-aktion { position: relative; z-index: 1; }

/* ---------- Unterseiten ---------- */
.page-hero {
  position: relative; overflow: hidden; padding: 4.5rem 0 3.5rem;
  background:
    radial-gradient(900px 400px at 90% -20%, rgba(59, 88, 168, .14), transparent 60%),
    linear-gradient(180deg, #fbfcff 0%, var(--navy-pale) 100%);
  border-bottom: 1px solid var(--border);
}
.page-hero-deko {
  position: absolute; right: -80px; top: -120px; width: 420px; height: 420px; opacity: .06;
  background: var(--navy); clip-path: polygon(100% 0, 0 0, 100% 100%);
}
.page-hero .container { position: relative; }
.page-title { font-family: var(--font-head); font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: var(--navy-ink); letter-spacing: -.03em; line-height: 1.12; max-width: 900px; }
.page-title em { font-style: italic; color: var(--green-deep); font-weight: 600; }
.page-sub { margin-top: 1rem; font-size: 1.08rem; color: var(--text-mid); max-width: 700px; }
.page-sub .fakt-chip { margin: .2rem .3rem .2rem 0; }

/* Programm – Zeitleiste */
.programm-kopf { display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.timeline { position: relative; }
.timeline::before { content: ''; position: absolute; left: 111px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(to bottom, var(--navy-light), var(--border)); }
.tl-item { position: relative; display: grid; grid-template-columns: 90px 44px 1fr; align-items: start; padding: .2rem 0 1.6rem; }
.tl-zeit { font-family: var(--font-head); font-weight: 600; color: var(--navy); font-size: 1.02rem; text-align: right; padding-top: .7rem; font-variant-numeric: tabular-nums; }
.tl-punkt { position: relative; height: 100%; }
.tl-punkt::before {
  content: ''; position: absolute; left: 50%; top: 1rem; transform: translate(-50%, 0);
  width: 14px; height: 14px; border-radius: 50%; background: #fff; border: 3px solid var(--navy); z-index: 1;
}
.tl-keynote .tl-punkt::before, .tl-podium .tl-punkt::before { background: var(--green); border-color: var(--green); box-shadow: 0 0 0 5px rgba(96, 152, 48, .18); }
.tl-pause .tl-punkt::before, .tl-apero .tl-punkt::before { width: 10px; height: 10px; border: 2px solid var(--text-muted); top: 1.1rem; }
.tl-inhalt { background: #fff; border: 1px solid var(--border); border-radius: var(--radius-m); padding: 1.3rem 1.6rem; transition: box-shadow .25s; }
.tl-inhalt:hover { box-shadow: var(--shadow-s); }
.tl-inhalt h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; color: var(--navy-ink); line-height: 1.4; }
.tl-inhalt .personen { margin-top: .75rem; }
.tl-inhalt .karte-tag { margin-bottom: .6rem; }
.tl-pause .tl-inhalt, .tl-apero .tl-inhalt { background: transparent; border: none; padding: .55rem 0; display: flex; align-items: center; gap: .6rem; }
.tl-pause .tl-inhalt h3, .tl-apero .tl-inhalt h3 { font-family: var(--font-body); font-size: .98rem; font-weight: 500; color: var(--text-muted); }
.tl-pause .tl-inhalt .icon, .tl-apero .tl-inhalt .icon { color: var(--text-muted); }
.tl-keynote .tl-inhalt { border-left: 4px solid var(--green); }
.tl-podium .tl-inhalt { border-left: 4px solid var(--navy); }
.tl-workshops .tl-inhalt { background: var(--navy-pale); border-color: var(--navy-light); }
.tl-workshops .ws-grid { margin-top: 1.1rem; grid-template-columns: repeat(2, 1fr); }
.tl-workshops .ws-karte { padding: 1.2rem; }
.tl-hinweis { margin-top: .4rem; color: var(--text-mid); font-size: .95rem; }

/* Tagungs-Detail (Archiv) */
.detail-grid { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: 3.5rem; align-items: start; }

/* Archiv */
.archiv-liste { display: grid; gap: 1rem; }
.archiv-zeile {
  display: grid; grid-template-columns: 110px 1fr auto; gap: 1.8rem; align-items: center;
  padding: 1.6rem 2rem; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-m);
  transition: all .25s var(--ease); color: inherit;
}
.archiv-zeile:hover { transform: translateX(4px); border-color: #c9d4ec; box-shadow: var(--shadow-s); color: inherit; }
.archiv-jahr { font-family: var(--font-head); font-size: 2.3rem; font-weight: 300; color: var(--navy); letter-spacing: -.03em; line-height: 1; }
.archiv-nr { font-size: .75rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--green-deep); }
.archiv-titel { font-family: var(--font-head); font-weight: 600; font-size: 1.12rem; color: var(--navy-ink); margin: .15rem 0 .3rem; }
.archiv-meta { font-size: .9rem; color: var(--text-mid); display: flex; gap: 1.2rem; flex-wrap: wrap; }
.archiv-meta span { display: inline-flex; gap: .4rem; align-items: center; }
.archiv-pfeil { width: 44px; height: 44px; border-radius: 50%; background: var(--navy-light); color: var(--navy); display: flex; align-items: center; justify-content: center; transition: .25s; }
.archiv-zeile:hover .archiv-pfeil { background: var(--navy); color: #fff; }

.galerie { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: .75rem; }
.galerie a { display: block; aspect-ratio: 4 / 3; border-radius: var(--radius-s); overflow: hidden; background: var(--navy-light); }
.galerie img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.galerie a:hover img { transform: scale(1.05); }
.download-liste { list-style: none; display: grid; gap: .6rem; }
.download-liste a { display: flex; align-items: center; gap: .9rem; padding: .9rem 1.1rem; border: 1px solid var(--border); border-radius: var(--radius-s); background: #fff; color: var(--text); font-weight: 500; }
.download-liste a:hover { border-color: var(--navy); color: var(--navy); }
.download-liste small { margin-left: auto; color: var(--text-muted); font-weight: 400; }

/* Partner */
.partner-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1rem; }
.partner-karte {
  display: flex; flex-direction: column; gap: 1rem; padding: 1.5rem; background: #fff;
  border: 1px solid var(--border); border-radius: var(--radius-m); color: var(--text); transition: all .25s var(--ease);
}
.partner-karte:hover { border-color: #c9d4ec; box-shadow: var(--shadow-m); transform: translateY(-3px); color: var(--text); }
.partner-logo { height: 70px; display: flex; align-items: center; }
.partner-logo img { max-height: 70px; max-width: 100%; object-fit: contain; filter: grayscale(1); opacity: .8; transition: .3s; }
.partner-karte:hover .partner-logo img { filter: none; opacity: 1; }
.partner-name { font-weight: 600; font-size: .92rem; line-height: 1.4; }
.partner-url { font-size: .82rem; color: var(--navy); display: inline-flex; gap: .3rem; align-items: center; margin-top: auto; }

.traeger { padding: 3.2rem 0; border-top: 1px solid var(--border); background: #fff; }
.traeger-titel { text-align: center; font-size: .75rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 1.8rem; }
.traeger-logos { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 2.2rem 3.5rem; }
.traeger-logo { display: flex; align-items: center; height: 56px; }
.traeger-logo img { max-height: 56px; max-width: 170px; width: auto; object-fit: contain; filter: grayscale(1); opacity: .7; transition: .3s; }
.traeger-logo:hover img { filter: none; opacity: 1; }
.traeger-logo span { font-weight: 600; color: var(--text-mid); font-size: .9rem; }

/* Inhaltsseiten */
.inhalt-text h2 { font-family: var(--font-head); font-size: 1.4rem; font-weight: 600; color: var(--navy-ink); margin: 2.4rem 0 .8rem; letter-spacing: -.01em; }
.inhalt-text h2:first-child { margin-top: 0; }
.inhalt-text h3 { font-family: var(--font-head); font-size: 1.08rem; font-weight: 600; color: var(--navy-ink); margin: 1.6rem 0 .5rem; }
.inhalt-text p, .inhalt-text li { color: var(--text-mid); line-height: 1.8; margin-bottom: .8rem; }
.inhalt-text ul { padding-left: 1.2rem; margin-bottom: 1rem; }
.inhalt-text a { text-decoration: underline; text-underline-offset: 3px; }

.info-kasten { display: flex; gap: 1rem; padding: 1.2rem 1.4rem; border-radius: var(--radius-m); background: var(--navy-pale); border: 1px solid var(--navy-light); color: var(--text-mid); font-size: .95rem; line-height: 1.6; }
.info-kasten .icon { color: var(--navy); margin-top: 2px; }
.info-kasten.gruen { background: var(--green-light); border-color: #d5eac0; }
.info-kasten.gruen .icon { color: var(--green-deep); }
.info-kasten.warn { background: var(--warn-light); border-color: #f3e2a6; }
.info-kasten.warn .icon { color: var(--warn); }
.info-kasten strong { color: var(--text); }

.kontakt-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.kontakt-karte { text-align: left; }
.kontakt-karte a { font-weight: 600; word-break: break-word; }

/* Kontaktseite – Aufbau wie «Über uns» auf vapp.ch (Vorstand/Dokumente links, Kontakt rechts) */
.zwei-spalten { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.spalten-titel { font-family: var(--font-head); font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 600; color: var(--navy); margin-bottom: 1.5rem; letter-spacing: -.01em; }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.team-karte { text-align: center; }
.team-bild {
  position: relative; width: 100%; aspect-ratio: 1; border-radius: var(--radius-m); margin-bottom: .75rem;
  border: 2px solid var(--border); overflow: hidden; display: flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.team-bild::before { content: ''; position: absolute; right: 0; top: 0; width: 42%; height: 42%; clip-path: polygon(100% 0, 0 0, 100% 100%); opacity: .12; }
.team-bild span { position: relative; font-family: var(--font-head); font-size: clamp(1.3rem, 2.2vw, 1.8rem); font-weight: 600; letter-spacing: .03em; }
.team-bild.farbe-0 { background: linear-gradient(145deg, #fff 0%, var(--navy-light) 100%); }
.team-bild.farbe-0::before { background: var(--navy); }
.team-bild.farbe-0 span { color: var(--navy); }
.team-bild.farbe-1 { background: linear-gradient(145deg, #fff 0%, var(--green-light) 100%); }
.team-bild.farbe-1::before { background: var(--green); }
.team-bild.farbe-1 span { color: var(--green-deep); }
.team-karte:hover .team-bild { transform: translateY(-3px); box-shadow: var(--shadow-m); }
.team-bild.mit-foto { background: var(--navy-pale); }
.team-bild.mit-foto::before { display: none; }
.team-bild img { width: 100%; height: 100%; object-fit: cover; object-position: center top; }
.team-name { font-family: var(--font-head); font-size: 1rem; font-weight: 600; color: var(--text); margin-bottom: .2rem; line-height: 1.35; }
.team-rolle { font-size: .82rem; color: var(--text-muted); }

.dok-liste { display: flex; flex-direction: column; gap: .6rem; margin-top: 1rem; }
.dok-eintrag { display: flex; align-items: center; justify-content: space-between; gap: 1rem; padding: .85rem 1.1rem; background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-s); transition: all .2s; color: var(--text); }
.dok-eintrag:hover { border-color: var(--navy); background: var(--navy-pale); color: var(--text); }
.dok-links { display: flex; align-items: center; gap: .6rem; font-size: .9rem; font-weight: 500; }
.dok-links svg { width: 18px; height: 18px; stroke: var(--navy); flex-shrink: 0; }
.dok-link { font-size: .85rem; font-weight: 600; color: var(--navy); white-space: nowrap; }

.kontakt-hinweis { background: var(--navy-pale); border: 1.5px solid #cfdaf2; border-radius: 12px; padding: 18px 22px; margin-bottom: 20px; }
.kontakt-hinweis-label { display: flex; align-items: center; gap: .45rem; font-size: 13px; font-weight: 700; color: var(--navy); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 8px; }
.kontakt-hinweis p { font-size: 14px; color: var(--text-mid); line-height: 1.7; }
.kontakt-adresse { display: inline-flex; align-items: center; gap: .45rem; margin: 10px 0; font-size: 16px; font-weight: 700; color: var(--navy); background: #fff; border: 2px solid var(--navy); padding: 6px 18px; border-radius: 8px; letter-spacing: .3px; word-break: break-all; }
.kontakt-adresse:hover { background: var(--navy); color: #fff; }
.kontakt-hinweis .kontakt-klein { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-top: 4px; }
.kontakt-hinweis .kontakt-klein a { font-weight: 600; }

.kontakt-formular { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-m); padding: 2rem; }
.kontakt-formular h3 { font-family: var(--font-head); font-size: 1.1rem; font-weight: 600; margin-bottom: 1.25rem; color: var(--text); }
.form-reihe { display: grid; grid-template-columns: 1fr 1fr; gap: .75rem; }
.form-feld { margin-bottom: .75rem; }
.form-feld label { display: block; font-size: .82rem; font-weight: 600; color: var(--text-mid); margin-bottom: .3rem; }
.form-feld input, .form-feld textarea { width: 100%; padding: .65rem .9rem; border: 1.5px solid var(--border); border-radius: var(--radius-s); font-size: .9rem; font-family: var(--font-body); color: var(--text); background: var(--off-white); transition: border-color .2s; }
.form-feld input:focus, .form-feld textarea:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 4px rgba(32, 56, 120, .08); }
.form-feld textarea { height: 110px; resize: vertical; line-height: 1.5; }
.form-feld.fehler input, .form-feld.fehler textarea { border-color: var(--danger); background: #fffafa; }
.form-feld .feld-fehler { margin-top: .3rem; }
.form-check { display: flex; align-items: flex-start; gap: .6rem; margin: .25rem 0 .5rem; }
.form-check input { margin-top: 3px; accent-color: var(--navy); width: 17px; height: 17px; flex-shrink: 0; }
.form-check label { font-size: .82rem; color: var(--text-muted); line-height: 1.5; }
.form-check label a { text-decoration: underline; text-underline-offset: 2px; }
.form-check .pflicht { color: var(--navy); }
.form-check.fehler label { color: var(--danger); }
.kontakt-formular .form-meldung { margin: .5rem 0 1rem; }
.form-notiz { font-size: .78rem; color: var(--text-muted); margin-top: .75rem; line-height: 1.5; }
.form-erfolg { text-align: center; padding: 2rem; }
.form-erfolg svg { width: 52px; height: 52px; stroke: var(--green-deep); margin: 0 auto 1rem; }
.form-erfolg h4 { font-family: var(--font-head); font-size: 1.2rem; margin-bottom: .5rem; color: var(--navy-ink); }
.form-erfolg p { color: var(--text-muted); font-size: .9rem; }

@media (max-width: 900px) {
  .zwei-spalten { grid-template-columns: 1fr; gap: 3rem; }
  .team-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 600px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); gap: 1rem .8rem; }
  .team-bild { border-radius: var(--radius-s); }
  .team-bild span { font-size: 1.25rem; }
  .team-name { font-size: .88rem; }
  .form-reihe { grid-template-columns: 1fr; gap: 0; }
  .dok-eintrag { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .dok-link { align-self: flex-end; }
  .kontakt-formular { padding: 1.4rem 1.2rem; }
}

/* ---------- Anmeldung ---------- */
.anmeldung-grid { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 2.5rem; align-items: start; }
.formular { display: grid; gap: 1.5rem; }
.form-block { border: 1px solid var(--border); border-radius: var(--radius-l); padding: 2rem 2.2rem; background: #fff; }
.form-block legend { float: left; width: 100%; display: flex; align-items: center; gap: .8rem; font-family: var(--font-head); font-size: 1.2rem; font-weight: 600; color: var(--navy-ink); margin-bottom: 1.5rem; }
.form-block legend + * { clear: both; }
.schritt { width: 34px; height: 34px; border-radius: 50%; background: var(--navy); color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: .9rem; font-weight: 700; flex-shrink: 0; }
.form-block .block-hinweis { font-size: .9rem; color: var(--text-muted); margin: -1rem 0 1.3rem; clear: both; }
.feld-raster { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1rem 1rem; clear: both; }
.feld { display: flex; flex-direction: column; gap: .4rem; grid-column: span 6; }
.feld.halb { grid-column: span 3; }
.feld.drittel { grid-column: span 2; }
.feld.zwei-drittel { grid-column: span 4; }
.feld label, .feld .label { font-size: .86rem; font-weight: 600; color: var(--text); }
.feld label .pflicht { color: var(--danger); margin-left: .15rem; }
.feld label .optional { color: var(--text-muted); font-weight: 400; margin-left: .3rem; font-size: .8rem; }
.feld input, .feld textarea, .feld select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--text);
  padding: .8rem 1rem; border: 1.5px solid var(--border); border-radius: var(--radius-s); background: var(--off-white);
  transition: border-color .2s, box-shadow .2s, background .2s;
}
.feld textarea { min-height: 96px; resize: vertical; line-height: 1.5; }
.feld input:hover, .feld textarea:hover { border-color: #c5cfe6; }
.feld input:focus, .feld textarea:focus, .feld select:focus { outline: none; border-color: var(--navy); background: #fff; box-shadow: 0 0 0 4px rgba(32, 56, 120, .1); }
.feld.fehler input, .feld.fehler textarea { border-color: var(--danger); background: #fffafa; }
.feld-fehler { font-size: .82rem; color: var(--danger); font-weight: 500; min-height: 0; }
.feld-fehler:empty { display: none; }
.honig { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }

/* Auswahlkarten (Tarif, Workshops) */
.wahl-liste { display: grid; gap: .7rem; clear: both; }
.wahl-liste.zweispaltig { grid-template-columns: 1fr 1fr; }
.wahl { position: relative; display: block; cursor: pointer; }
.wahl input { position: absolute; opacity: 0; inset: 0; cursor: pointer; }
.wahl-inhalt {
  display: grid; grid-template-columns: 22px 1fr auto; gap: .9rem; align-items: start;
  padding: 1rem 1.15rem; border: 1.5px solid var(--border); border-radius: var(--radius-m); background: #fff;
  transition: all .2s var(--ease);
}
.wahl:hover .wahl-inhalt { border-color: #b9c6e4; background: var(--navy-pale); }
.wahl-marker { width: 22px; height: 22px; border-radius: 50%; border: 2px solid #b8c3dc; margin-top: 1px; position: relative; transition: .2s; background: #fff; }
.wahl-marker::after { content: ''; position: absolute; inset: 4px; border-radius: 50%; background: var(--navy); transform: scale(0); transition: transform .2s var(--ease); }
.wahl input:checked + .wahl-inhalt { border-color: var(--navy); background: var(--navy-pale); box-shadow: 0 0 0 3px rgba(32, 56, 120, .1); }
.wahl input:checked + .wahl-inhalt .wahl-marker { border-color: var(--navy); }
.wahl input:checked + .wahl-inhalt .wahl-marker::after { transform: scale(1); }
.wahl input:focus-visible + .wahl-inhalt { outline: 3px solid rgba(96, 152, 48, .55); outline-offset: 2px; }
.wahl input:disabled + .wahl-inhalt { opacity: .5; cursor: not-allowed; background: var(--off-white); }
.wahl input:disabled { cursor: not-allowed; }
.wahl-titel { display: block; font-weight: 600; color: var(--text); line-height: 1.4; font-size: .96rem; }
.wahl-text { display: block; font-size: .85rem; color: var(--text-muted); margin-top: .15rem; line-height: 1.45; }
.wahl-text[hidden] { display: none; }
.wahl-text[data-doppelt] { color: var(--warn); font-weight: 600; }
.wahl-preis { font-family: var(--font-head); font-weight: 600; color: var(--navy); white-space: nowrap; font-size: 1.05rem; }
.plaetze { display: inline-block; font-size: .72rem; font-weight: 700; padding: .2rem .55rem; border-radius: 100px; white-space: nowrap; background: var(--green-light); color: var(--green-deep); }
.plaetze.knapp { background: var(--warn-light); color: var(--warn); }
.plaetze.voll { background: var(--danger-light); color: var(--danger); }
.runde { margin-top: 1.6rem; clear: both; }
.runde:first-of-type { margin-top: 0; }
.runde-kopf { display: flex; align-items: baseline; gap: .7rem; margin-bottom: .8rem; }
.runde-kopf h3 { font-family: var(--font-head); font-size: 1rem; font-weight: 700; color: var(--navy); }
.runde-kopf span { font-size: .85rem; color: var(--text-muted); }

.schalter-zeile { display: flex; gap: .8rem; align-items: flex-start; cursor: pointer; font-size: .95rem; color: var(--text); clear: both; }
.schalter-zeile input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--navy); flex-shrink: 0; cursor: pointer; }
.klappbar { display: grid; grid-template-rows: 0fr; transition: grid-template-rows .35s var(--ease); }
.klappbar > div { overflow: hidden; }
.klappbar.offen { grid-template-rows: 1fr; }
.klappbar.offen > div { padding-top: 1rem; }

.form-abschluss { border-radius: var(--radius-l); padding: 2rem 2.2rem; background: var(--navy-pale); border: 1px solid var(--navy-light); display: grid; gap: 1.2rem; }
.bedingungen { font-size: .9rem; color: var(--text-mid); line-height: 1.65; }
.bedingungen p + p { margin-top: .6rem; }
.form-meldung { padding: 1rem 1.2rem; border-radius: var(--radius-s); font-size: .95rem; font-weight: 500; }
.form-meldung.fehler { background: var(--danger-light); color: var(--danger); }
.form-meldung:empty { display: none; }

.zusammenfassung { position: sticky; top: 112px; background: #fff; border: 1px solid var(--border); border-radius: var(--radius-l); overflow: hidden; box-shadow: var(--shadow-m); }
.zf-kopf { background: linear-gradient(135deg, var(--navy), var(--navy-deep)); color: #fff; padding: 1.6rem 1.7rem; position: relative; overflow: hidden; }
.zf-kopf::after { content: ''; position: absolute; right: -30px; top: -30px; width: 110px; height: 110px; border-radius: 50%; background: rgba(96, 152, 48, .35); }
.zf-kopf small { font-size: .7rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; opacity: .75; }
.zf-kopf h3 { font-family: var(--font-head); font-size: 1.12rem; font-weight: 600; margin: .3rem 0 .6rem; line-height: 1.35; position: relative; z-index: 1; }
.zf-kopf p { font-size: .88rem; opacity: .85; position: relative; z-index: 1; }
.zf-body { padding: 1.4rem 1.7rem 1.7rem; }
.zf-zeile { display: flex; justify-content: space-between; gap: 1rem; padding: .7rem 0; border-bottom: 1px dashed var(--border); font-size: .9rem; }
.zf-zeile span:first-child { color: var(--text-muted); }
.zf-zeile span:last-child { font-weight: 600; text-align: right; color: var(--text); }
.zf-total { display: flex; justify-content: space-between; align-items: baseline; padding-top: 1rem; }
.zf-total span { font-weight: 700; color: var(--text); }
.zf-total strong { font-family: var(--font-head); font-size: 1.7rem; font-weight: 600; color: var(--navy); letter-spacing: -.02em; }
.zf-hinweis { font-size: .8rem; color: var(--text-muted); margin-top: .8rem; line-height: 1.5; }

.erfolg { text-align: center; padding: 3.5rem 2.5rem; border-radius: var(--radius-l); background: #fff; border: 1px solid var(--border); box-shadow: var(--shadow-m); animation: fadeUp .6s var(--ease) both; }
.erfolg-icon { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 1.5rem; display: flex; align-items: center; justify-content: center; background: var(--green-light); color: var(--green-deep); }
.erfolg-icon.warte { background: var(--warn-light); color: var(--warn); }
.erfolg h2 { font-family: var(--font-head); font-size: 1.9rem; font-weight: 600; color: var(--navy-ink); letter-spacing: -.02em; margin-bottom: .6rem; }
.erfolg > p { color: var(--text-mid); max-width: 520px; margin: 0 auto .6rem; }
.erfolg-referenz { display: inline-block; margin: 1.2rem 0 1.6rem; padding: .6rem 1.2rem; border-radius: 100px; background: var(--navy-pale); font-family: var(--font-head); font-weight: 700; color: var(--navy); letter-spacing: .04em; }
.erfolg-details { text-align: left; max-width: 480px; margin: 0 auto 1.8rem; }
.erfolg-aktionen { display: flex; gap: .7rem; justify-content: center; flex-wrap: wrap; }

.geschlossen-karte { text-align: center; padding: 3.5rem 2rem; border-radius: var(--radius-l); background: var(--navy-pale); border: 1px solid var(--navy-light); }
.geschlossen-karte h2 { font-family: var(--font-head); font-size: 1.6rem; font-weight: 600; color: var(--navy-ink); margin: 1rem 0 .6rem; }
.geschlossen-karte p { color: var(--text-mid); max-width: 540px; margin: 0 auto 1.5rem; }

/* ---------- Träger/Fuss ---------- */
.site-footer { background: var(--navy-ink); color: rgba(255, 255, 255, .62); padding: 4rem 0 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1.2fr; gap: 4rem; margin-bottom: 3rem; }
.footer-brand { font-family: var(--font-head); font-size: 1.4rem; font-weight: 700; color: #fff; margin-bottom: 1rem; letter-spacing: -.02em; }
.footer-brand span { color: var(--green); }
.footer-desc { font-size: .88rem; line-height: 1.7; margin-bottom: 1.2rem; max-width: 420px; }
.footer-address { font-size: .82rem; opacity: .7; line-height: 1.6; }
.footer-col-title { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: #fff; margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: .6rem; font-size: .88rem; }
.footer-links a { color: rgba(255, 255, 255, .6); }
.footer-links a:hover { color: #fff; }
.footer-fakten li { display: flex; gap: .55rem; align-items: flex-start; }
.footer-fakten .icon { margin-top: 3px; color: #9fd070; }
.footer-bottom { border-top: 1px solid rgba(255, 255, 255, .1); padding-top: 2rem; display: flex; justify-content: space-between; align-items: center; font-size: .8rem; gap: 1rem; flex-wrap: wrap; }
.footer-rechtliches { display: flex; gap: 1.4rem; }
.footer-rechtliches a { color: rgba(255, 255, 255, .5); }
.footer-rechtliches a:hover { color: #fff; }
.footer-admin { opacity: .55; }

/* Mobile Anmelde-Leiste */
.mobil-cta { display: none; }

/* ---------- Animationen ---------- */
@keyframes fadeUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }
@keyframes pulse { 0%, 100% { opacity: 1; transform: scale(1); } 50% { opacity: .55; transform: scale(.8); } }
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}

/* ---------- Tablet ---------- */
@media (max-width: 1080px) {
  .site-nav a { padding: .5rem .65rem; font-size: .92rem; }
  .hero-grid { grid-template-columns: 1fr; gap: 3rem; }
  .ticket { max-width: 520px; }
  .intro-grid, .detail-grid, .anmeldung-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .fakten-karte, .zusammenfassung { position: static; }
  .karten-grid, .ws-grid { grid-template-columns: repeat(2, 1fr); }
  .tarif-grid { grid-template-columns: repeat(2, 1fr); }
  .cta-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .kontakt-grid { grid-template-columns: 1fr 1fr; }
}

/* ---------- Mobil ---------- */
@media (max-width: 900px) {
  .header-inner { height: 72px; }
  .site-logo img { height: 48px; }
  .hamburger { display: flex; }
  .site-nav {
    display: none; flex-direction: column; align-items: stretch; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; padding: 1rem 1.5rem 1.5rem; border-bottom: 1px solid var(--border);
    box-shadow: 0 16px 32px rgba(14, 27, 65, .12); gap: 4px;
  }
  .site-nav.open { display: flex; }
  .site-nav a { text-align: center; padding: .8rem 1rem; font-size: 1rem; }
  .site-nav .nav-cta { margin: .5rem 0 0; }
}

@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3.8rem 0; }
  .hero { padding: 3rem 0 3.5rem; }
  .hero h1 { font-size: 2.2rem; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .ticket-kopf, .ticket-body { padding-left: 1.4rem; padding-right: 1.4rem; }
  .ticket-tag { font-size: 3.8rem; }
  .strip-inner { gap: .6rem 1.3rem; }
  .strip-dot { display: none; }
  .strip-item { font-size: .84rem; }
  .karten-grid, .karten-grid.zwei, .ws-grid, .tl-workshops .ws-grid { grid-template-columns: 1fr; }
  .tarif-grid { grid-template-columns: 1fr 1fr; }
  .ort-karte { grid-template-columns: 1fr; }
  .ort-karte-text { padding: 2rem 1.5rem; }
  .ort-karte-bild { min-height: 180px; }
  .ort-karte-karte { min-height: 280px; }
  .ort-knoepfe .btn { width: 100%; }
  .cta-inner { padding: 2.5rem 1.5rem; border-radius: var(--radius-m); }
  .cta-aktion .btn { width: 100%; }
  .page-hero { padding: 3rem 0 2.5rem; }
  .timeline::before { left: 7px; }
  .tl-item { grid-template-columns: 16px 1fr; gap: 0 1rem; }
  .tl-zeit { grid-column: 2; text-align: left; padding: 0 0 .35rem; font-size: .92rem; }
  .tl-punkt { grid-row: 1 / span 2; grid-column: 1; }
  .tl-punkt::before { top: .3rem; }
  .tl-inhalt { grid-column: 2; padding: 1.1rem 1.2rem; }
  .archiv-zeile { grid-template-columns: 1fr; gap: .8rem; padding: 1.4rem; }
  .archiv-pfeil { display: none; }
  .form-block, .form-abschluss { padding: 1.5rem 1.2rem; border-radius: var(--radius-m); }
  .feld.halb, .feld.drittel, .feld.zwei-drittel { grid-column: span 6; }
  .feld.plz { grid-column: span 2; }
  .feld.ortfeld { grid-column: span 4; }
  .wahl-liste.zweispaltig { grid-template-columns: 1fr; }
  .wahl-inhalt { grid-template-columns: 22px 1fr; }
  .wahl-inhalt > :last-child:not(:nth-child(2)) { grid-column: 2; justify-self: start; }
  .footer-grid, .kontakt-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .erfolg { padding: 2.5rem 1.3rem; }
  body.hat-mobil-cta { padding-bottom: 76px; }
  .mobil-cta {
    display: flex; position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; gap: .8rem; align-items: center;
    padding: .8rem 1.1rem calc(.8rem + env(safe-area-inset-bottom)); background: rgba(255, 255, 255, .95);
    backdrop-filter: blur(12px); border-top: 1px solid var(--border); box-shadow: 0 -8px 24px rgba(14, 27, 65, .08);
  }
  .mobil-cta .mobil-cta-text { font-size: .8rem; color: var(--text-muted); line-height: 1.3; }
  .mobil-cta .mobil-cta-text strong { display: block; color: var(--text); font-size: .9rem; }
  .mobil-cta .btn { margin-left: auto; padding: .75rem 1.2rem; }
}

@media (max-width: 420px) {
  .tarif-grid { grid-template-columns: 1fr; }
  .countdown strong { font-size: 1.3rem; }
}

/* ---------- Druck ---------- */
@media print {
  .site-header, .site-footer, .traeger, .mobil-cta, .hero-actions, .btn { display: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
  body { font-size: 11pt; }
  .tl-inhalt { break-inside: avoid; }
}
