
/* ===== Historie: Bildkarten mit Overlay / Duotone ===== */
    :root {
	--brand-blue: #174577;
	--brand-blue-2: #2b6cb0;
	--brand-red: #ce2e3a;
	--brand-yellow: #d4a300;
	--brand-purple: #36013f;;
	--text: #111111;
	--text-weak: #000000e0;
	--bg: #fafafa;
	--shadow: #37373775;
	--btn-radius: 50px;
	--container-max: 1280px;
	--space-4: 1rem;
	--space-6: 1.5rem;
	--space-8: 2rem;
	--space-16: 4rem;
	--font-body: system-ui, -apple-system, sans-serif;
    }

    *, *::before, *::after { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    html, body { height: 100%; margin: 0; }
    body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	background: var(--bg);
	color: var(--text);
	font-family: var(--font-body);
    }
    img { max-width: 100%; display: block; }
    h1, h2, h3, h4, p { margin: 0 0 var(--space-4); }
    ul[role='list'] { list-style: none; padding: 0; }

    /* =========================
       Layout
       ========================= */
    main { 
	box-shadow: 0 -15px 21px 2px var(--shadow); 
	background: #fff;
	position: relative;
	z-index: 1;
    }
    .container { 
	padding: var(--space-16); 
	max-width: var(--container-max); 
	margin: 0 auto;
    }
    .section { background: #fff; }
    .section.alt { background: #f5f6f8; }

    /* =========================
       Hero Section
       ========================= */
    .hero {
	min-height: 100svh;
	display: grid;
	place-items: center;
	position: relative;
	overflow: hidden;
	isolation: isolate;
    }
    .hero::before,
    .hero::after {
	content: "";
	position: absolute;
	width: 25%;
	height: 100%;
	z-index: 0;
    }
    .hero::before { 
	left: 0;
	background: var(--brand-red); 
	clip-path: polygon(0 100%, 0 0, 100% 100%); 
    }
    .hero::after { 
	right: 0;
	background: var(--brand-blue); 
	clip-path: polygon(0 0, 100% 0, 100% 100%); 
    }
    .hero-inner { 
	text-align: center; 
	padding: var(--space-4);
	position: relative;
	z-index: 1;
    }
    .hero-logo { 
	width: clamp(220px, 30vw, 480px); 
	margin: 0 auto var(--space-4); 
    }
    h1 { font-size: clamp(1.75rem, 6vw, 3.5rem); }
    .subtitle { 
	font-weight: 700; 
	font-size: clamp(1rem, 2.2vw, 1.25rem); 
	display: flex;
	align-items: center;
	justify-content: center;
	word-spacing: 2rem;
	gap: 0.25rem;
    }
    .heart-icon { 
	width: 48px; 
	height: 48px; 
    }
    .heart-icon text { 
	font-family: var(--font-body); 
	font-weight: 800; 
	fill: #fff; 
    }
    .hero-buttons { 
	display: flex; 
	gap: var(--space-4); 
	justify-content: center; 
	margin-top: var(--space-8); 
	flex-wrap: wrap; 
    }

    /* Scroll Indicator */
    .scroll-indicator { 
	position: absolute; 
	left: 50%; 
	bottom: 28px; 
	transform: translateX(-50%); 
	opacity: 0.95; 
	pointer-events: none;
    }
    .mouse { 
	width: 36px; 
	height: 56px; 
	border: 2px solid var(--text-weak); 
	border-radius: 18px; 
	display: flex; 
	align-items: flex-start; 
	justify-content: center; 
	padding-top: 8px; 
    }
    .wheel { 
	width: 6px; 
	height: 6px; 
	background: var(--text-weak); 
	border-radius: 50%; 
	animation: scroll 1.6s infinite; 
    }
    @keyframes scroll { 
      0% { opacity: 0; transform: translateY(-4px); } 
      10% { opacity: 1; transform: translateY(0); } 
      50% { opacity: 1; transform: translateY(10px); } 
      90% { opacity: 0; transform: translateY(18px); } 
    }

    /* =========================
       Buttons
       ========================= */
    .btn {
	display: inline-block;
	padding: 0.8rem 1.8rem;
	border-radius: var(--btn-radius);
	text-decoration: none;
	font-weight: 650;
	transition: all 0.25s ease;
	border: 2px solid transparent;
	cursor: pointer;
    }
    .btn:active { transform: translateY(1px); }
    .btn-primary { 
	background: linear-gradient(135deg, var(--brand-blue), var(--brand-blue-2)); 
	color: #fff; 
	box-shadow: 0 4px 15px rgba(43, 108, 176, 0.3); 
    }
    .btn-primary:hover { box-shadow: 0 6px 20px rgba(43, 108, 176, 0.4); }
    .btn-secondary { 
	background: transparent; 
	color: var(--text); 
	border: 2px solid var(--text); 
    }
    .btn-secondary:hover { background: #fff; }

    /* =========================
       Leitidee Section
       ========================= */
    .has-grid {
	position: absolute;
	inset: 0;
	z-index: 0;
	background:
            repeating-linear-gradient(0deg, rgba(23, 69, 119, 0.4) 0 1px, transparent 1px 48px),
            repeating-linear-gradient(90deg, rgba(23, 69, 119, 0.4) 0 1px, transparent 1px 48px);
	-webkit-mask-image: radial-gradient(circle at center, #000 30%, transparent 80%);
	mask-image: radial-gradient(circle at center, #000 30%, transparent 80%);
	opacity: 0.5;
	pointer-events: none;
    }
    .leitidee  {
	position: relative;
	z-index: 1;
	background: #fff;
	font-size: clamp(1.75rem, 6vw, 3.5rem);
	text-align: center;
	padding-top: clamp(2rem, 4vw, 5rem);
	padding-bottom: clamp(2rem, 4vw, 3rem);
	.front{
	    position: relative;
	    z-index: 1;
	}
    }
    .hl {
	font-weight: 700;
	padding: 0 0.15em;
	border-radius: 0.2em;
    }
    .hl-red { color: var(--brand-red); }
    .hl-blue { color: var(--brand-blue); }
    .hl-yellow { color: var(--brand-yellow); }
    .hl-purple { color: var(--brand-purple); }

    /* Image Row */
    .image-row {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 5rem;
	z-index: 1;
	position:relative;
	max-width: 900px;
	margin: 2rem auto 0;
	padding: 0 var(--space-4);
    }
    .image-row img {
	width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	border-radius: 0.75rem;
	box-shadow: 0 8px 24px rgba(0,0,0,.5);
    }

    @media (max-width: 768px) {
	.image-row {
            grid-template-columns: 1fr;
            max-width: 400px;
	}
    }

    /* =========================
       Cards & Grids
       ========================= */
    .cards, .grid-2 { 
	display: grid; 
	gap: 1rem; 
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    }
    .card { 
	border: 1px solid rgba(0,0,0,.08); 
	border-radius: 1rem; 
	padding: 1.5rem; 
	box-shadow: 0 4px 12px rgba(0,0,0,.05); 
	background: white;
    }

    /* Timeline */
    .timeline { 
	position: relative; 
	padding-left: 1rem; 
	border-left: 3px solid var(--brand-blue); 
    }
    .tl-item { 
	position: relative; 
	margin-left: 1rem; 
	padding: 0 0 1rem 0.5rem; 
    }
    .tl-dot { 
	position: absolute; 
	left: -1.3rem; 
	top: 0.25rem; 
	width: 0.75rem; 
	height: 0.75rem; 
	border-radius: 50%; 
	background: var(--brand-red); 
	box-shadow: 0 2px 6px rgba(0,0,0,.2); 
    }

    /* Bullet Grid */
    .bullet-grid { 
	display: grid; 
	gap: 0.5rem; 
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
	padding-left: 2rem; 
    }
    .bullet-grid li { list-style: disc; }

    /* Swatches */
    .swatches { 
	display: flex; 
	gap: 0.75rem; 
	margin-top: 0.5rem; 
    }
    .swatch { 
	width: 48px; 
	height: 48px; 
	border-radius: 0.5rem; 
	box-shadow: 0 2px 6px rgba(0,0,0,.08); 
	border: 1px solid rgba(0,0,0,.08); 
    }
    .sw-white { background: #ffffff; }
    .sw-red { background: var(--brand-red); }
    .sw-blue { background: var(--brand-blue); }

    /* Heading with Icon */
    .heading-with-icon {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	margin-bottom: 1rem;
    }
    .heading-with-icon .icon {
	width: 32px;
	height: 32px;
	stroke: #ff6600;
	flex-shrink: 0;
    }
    .heading-with-icon h2 {
	font-size: 1.75rem;
	font-weight: 700;
	margin: 0;
    }

    /* =========================
       Footer
       ========================= */
    .site-footer { 
	background: #0f1115; 
	color: #fff; 
    }
    .footer-grid { 
	display: grid; 
	gap: 1.25rem; 
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); 
    }
    .footer-col h3 { 
	margin: 0 0 0.5rem; 
	font-size: 1rem; 
    }
    .footer-col ul { 
	margin: 0; 
	padding: 0; 
	list-style: none; 
    }
    .footer-col li { margin: 0.25rem 0; }
    .footer-col a { color: #fff; }
    .legal { 
	border-top: 1px solid rgba(255,255,255,.12); 
	margin-top: 1.25rem; 
	padding-top: 1rem; 
	display: flex; 
	gap: 0.75rem; 
	flex-wrap: wrap; 
	align-items: center; 
	justify-content: space-between;
    }
    .legal a { 
	color: #fff; 
	opacity: 0.9; 
	text-decoration: none;
    }
    .legal-links {
	display: flex;
	gap: 1rem;
	align-items: center;
    }


/* ========================= Ziele: horizontale „Check“-Liste (leer) ========================= */
.goals-row{
    display: flex;
    gap: 2rem;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;         /* keine Bullets */
}

.goals-row li{
    white-space: nowrap;
    background: #fff;
    font-weight: 700;
    display: flex;
    gap: 1rem;
}

.goals-row .box{
  width: 1.15rem;           /* ~18px */
  height: 1.15rem;
  flex: 0 0 auto;
  color: var(--text);       /* stroke übernimmt currentColor */
  opacity: .9;
}

.goals-row span{
  font-size: .95rem;
  line-height: 1.2;
}



/* Mobile: Text darf umbrechen, Items werden luftiger */
@media (max-width: 560px){
  .goals-row li{
    white-space: normal;    /* erlaubt Zeilenumbruch im Text */
    padding: .45rem .55rem;
  }
  .goals-row span{
    font-size: .98rem;
    line-height: 1.25;
  }
}





/* ===== Zielgruppen als Persona-Cards (passt zu deinem Card-Design) ===== */
.persona-cards {
  /* nutzt .cards-Grid von dir; hier nur minimal verfeinern falls nötig */
  align-items: stretch;
}

.persona {
  --accent: var(--brand-blue);
  border: 6px solid var(--accent);
  padding-bottom: 2.25rem;             /* Platz, damit Icon nicht Text überlappt */
}

.persona .persona-copy { color: #444; }

/* Badge oben links */
.persona-badge {
  display: inline-block;
  font-size: .72rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #fff;
  background: var(--accent);
  padding: .28rem .5rem;
    border-radius: .4rem;
    margin-bottom: .5rem;
}

/* Farbliche Varianten */
.persona--blue { --accent: var(--brand-blue); }
.persona--red  { --accent: var(--brand-red); }
.persona--dark { --accent: #2b2f36; }

/* Watermark-Icon übernimmt currentColor = --accent, aber sehr dezent */
.persona .card-icon {
  stroke: var(--accent);
    width: 58px; height: 58px;           /* nutzt deine bestehenden Defaults */
    float:right;
}



























/* Reset: figure/figcaption */
.history-card figure,
.history-card figcaption { margin: 0; }

/* Layout & Stil */
.history-cards{ align-items: stretch; gap: .9rem; }
.history-card{
  position: relative; overflow: hidden; border-radius: 1rem;
  padding: 0; border: 0; background: #0c1020;
  box-shadow: 0 6px 20px rgba(0,0,0,.08);
}
.history-media{ position: relative; aspect-ratio: 4/5; width: 100%; overflow: hidden; }

/* Cover + steuerbarer Zoom/Fokus */
.history-media img{
  width: 100%; height: 100%; display: block;
  object-fit: cover;
  object-position: var(--focus-x,50%) var(--focus-y,50%);
  transform-origin: var(--focus-x,50%) var(--focus-y,50%);
  transform: scale(var(--zoom,1));
  transition: transform .55s ease, filter .55s ease;
}

/* Lesbarkeits-Gradient unten */
.history-card::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,.62) 100%);
  pointer-events: none;
}

/* Overlay + Badge */
.history-overlay{
  position: absolute; inset: auto 0 0 0; z-index: 1;
  padding: 1rem 1.1rem 1.2rem; color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.45);
}
.history-badge{
  display: inline-block; font-size: .78rem; letter-spacing: .04em;
  text-transform: uppercase; color:#fff; background: var(--brand-blue);
  padding: .28rem .55rem; border-radius: .45rem; margin-bottom: .45rem;
}
.history-badge--red{ background: var(--brand-red); }
.history-overlay h3{ margin: 0 0 .3rem; font-size: 1.12rem; }
.history-overlay p{ margin: 0; font-size: .96rem; }

/* Credit */
.history-credit{
  position: absolute; right: .75rem; bottom: .55rem; z-index: 1;
  font-size: .72rem; color: rgba(255,255,255,.85);
}

/* Hover (optional) */
@media (hover:hover){
  .history-card:hover .history-media img{
    transform: scale(calc(var(--zoom,1) * 1.05));
  }
}
