/* ═══════════════════════════════════════════════════════════════
   PIONEER COMMUNITY – Shared Stylesheet
   Basiert auf Design A (Bold Sections), Pioneer Bold Contrast Palette
   ═══════════════════════════════════════════════════════════════ */

:root {
  --gold: #F0CE45;
  --dark-gold: #C9A832;
  --wine: #8B2D3A;
  --deep-wine: #3D1C24;
  --warm-gray: #EDE8E2;
  --cream: #FFF8F0;
  --white: #FFFFFF;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  color: var(--deep-wine);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background: var(--cream);
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.sg { font-family: 'Space Grotesk', sans-serif; }

/* ═══ NAV ═══ */
nav.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem clamp(1.5rem, 5vw, 4rem);
  background: rgba(61,28,36,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--gold);
}
.nav-logo { display: flex; flex-direction: column; text-decoration: none; }
.nav-logo .main { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--gold); line-height: 1; letter-spacing: -0.5px; }
.nav-logo .sub { font-family: 'Space Grotesk', sans-serif; font-size: 9px; font-weight: 500; color: var(--cream); text-transform: uppercase; letter-spacing: 4px; margin-top: 3px; }
.nav-links { display: flex; gap: 1.75rem; list-style: none; align-items: center; }
.nav-links a { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 500; color: var(--cream); text-decoration: none; letter-spacing: 0.5px; opacity: 0.7; transition: opacity 0.2s; }
.nav-links a:hover, .nav-links a.active { opacity: 1; }
.nav-links li.has-sub { position: relative; }
.nav-sub {
  position: absolute; top: calc(100% + 0.6rem); left: -1rem;
  background: var(--deep-wine); border: 1px solid rgba(240,206,69,0.25);
  border-radius: 8px; padding: 0.6rem 0;
  min-width: 220px; list-style: none;
  opacity: 0; transform: translateY(-4px); pointer-events: none;
  transition: opacity 0.18s, transform 0.18s;
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}
.nav-links li.has-sub:hover .nav-sub,
.nav-links li.has-sub:focus-within .nav-sub {
  opacity: 1; transform: translateY(0); pointer-events: auto;
}
.nav-sub li { padding: 0; }
.nav-sub a { display: block; padding: 0.55rem 1.1rem; font-size: 13px; opacity: 0.75; }
.nav-sub a:hover { opacity: 1; background: rgba(240,206,69,0.08); }
.nav-cta {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
  color: var(--deep-wine); background: var(--gold);
  padding: 0.5rem 1.25rem; border-radius: 6px;
  text-decoration: none; letter-spacing: 0.5px; transition: background 0.2s;
}
.nav-cta:hover { background: var(--dark-gold); }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  width: 38px; height: 38px; padding: 0;
}
.nav-toggle span { display: block; width: 22px; height: 2px; background: var(--gold); margin: 4px auto; transition: transform 0.2s, opacity 0.2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  background: var(--deep-wine);
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(6rem, 12vh, 10rem) clamp(1.5rem, 8vw, 8rem);
  position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0.22;
  filter: saturate(0.8);
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(135deg, rgba(61,28,36,0.85) 0%, rgba(61,28,36,0.65) 55%, rgba(139,45,58,0.55) 100%);
}
.hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 6px; background: var(--gold); z-index: 3;
}
.hero > *:not(.hero-bg):not(.hero-overlay) { position: relative; z-index: 2; }
.hero-eyebrow {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem;
  display: flex; align-items: center; gap: 0.75rem;
}
.hero-eyebrow::before { content: ''; width: 40px; height: 2px; background: var(--gold); }
.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.4rem, 6vw, 5.5rem);
  font-weight: 700; line-height: 1.05; letter-spacing: -2px;
  color: var(--cream); max-width: 800px;
}
.hero h1 em { font-style: normal; color: var(--gold); }
.hero p {
  font-size: clamp(1rem, 1.5vw, 1.2rem);
  color: var(--cream); opacity: 0.8; max-width: 580px;
  margin-top: 1.5rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; margin-top: 2.5rem; flex-wrap: wrap; }
.btn-primary {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--deep-wine); background: var(--gold); padding: 0.85rem 2rem;
  border-radius: 8px; text-decoration: none; letter-spacing: 0.3px;
  transition: background 0.2s, transform 0.15s; border: none; cursor: pointer;
  display: inline-block;
}
.btn-primary:hover { background: var(--dark-gold); transform: translateY(-1px); }
.btn-ghost {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 500;
  color: var(--cream); background: transparent; padding: 0.85rem 2rem;
  border: 1px solid rgba(255,248,240,0.35); border-radius: 8px;
  text-decoration: none; letter-spacing: 0.3px; transition: border-color 0.2s, background 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: rgba(255,248,240,0.7); background: rgba(255,248,240,0.05); }
.btn-wine {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--cream); background: var(--wine); padding: 0.85rem 2rem;
  border-radius: 8px; text-decoration: none; letter-spacing: 0.3px;
  transition: background 0.2s; border: none; cursor: pointer; display: inline-block;
}
.btn-wine:hover { background: var(--deep-wine); }

/* ═══ HERO BILD-STREIFEN ═══ */
.hero-strip {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 0; background: var(--deep-wine);
}
.hero-strip-img {
  aspect-ratio: 1/1; background-size: cover; background-position: center;
  position: relative; filter: saturate(0.85);
  transition: filter 0.3s, transform 0.3s;
}
.hero-strip-img:hover { filter: saturate(1.1); transform: scale(1.02); z-index: 2; }
.hero-strip-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(61,28,36,0.5) 100%);
}

/* ═══ SECTION SYSTEM ═══ */
.section { padding: clamp(4rem, 8vh, 7rem) clamp(1.5rem, 8vw, 8rem); }
.section-cream { background: var(--cream); }
.section-wine { background: var(--deep-wine); color: var(--cream); }
.section-gold { background: var(--gold); color: var(--deep-wine); }
.section-warm { background: var(--warm-gray); }
.section-eyebrow {
  font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600;
  letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem;
}
.section-cream .section-eyebrow,
.section-warm .section-eyebrow { color: var(--dark-gold); }
.section-wine .section-eyebrow { color: var(--gold); }
.section-gold .section-eyebrow { color: var(--wine); }
.section h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  font-weight: 700; line-height: 1.1; letter-spacing: -1px;
  max-width: 720px; margin-bottom: 1.5rem;
}
.section h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(1.3rem, 2.4vw, 1.8rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.5px;
  margin-bottom: 0.75rem;
}
.section-divider { width: 60px; height: 3px; border-radius: 2px; margin-bottom: 2rem; }
.section-cream .section-divider,
.section-warm .section-divider { background: var(--wine); }
.section-wine .section-divider { background: var(--gold); }
.section-gold .section-divider { background: var(--wine); }
.section .lead {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  line-height: 1.75; max-width: 760px; margin-bottom: 1.25rem; opacity: 0.92;
}
.section p { line-height: 1.75; max-width: 760px; }
.section p + p, .section ul + p, .section ol + p { margin-top: 1rem; }
.section ul, .section ol { max-width: 760px; padding-left: 1.25rem; line-height: 1.75; }
.section li { margin-bottom: 0.5rem; }

/* ═══ VISION GRID ═══ */
.vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 5vw, 5rem); align-items: center; max-width: 1100px; }
.vision-text { font-size: 1.1rem; line-height: 1.8; opacity: 0.9; }
.vision-text strong { color: var(--wine); font-weight: 700; }
.vision-visual {
  aspect-ratio: 4/5; border-radius: 16px; position: relative; overflow: hidden;
  background: var(--wine);
  display: flex; align-items: flex-end;
}
.vision-visual img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(0.9); }
.vision-visual::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(61,28,36,0.1) 40%, rgba(61,28,36,0.85) 100%);
}
.vision-visual .vv-text {
  position: relative; z-index: 2;
  font-family: 'Space Grotesk', sans-serif; font-size: 32px; font-weight: 700;
  color: var(--cream); line-height: 1.2; padding: 2rem;
}
.vision-visual .vv-text em { font-style: italic; font-family: 'DM Sans', sans-serif; color: var(--gold); }

/* ═══ FEATURES ═══ */
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.5rem; max-width: 1200px;
}
.feature-card {
  background: rgba(255,248,240,0.05); border: 1px solid rgba(240,206,69,0.18);
  border-radius: 12px; overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex; flex-direction: column;
}
.feature-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.25); }
.feature-img { aspect-ratio: 16/10; background-size: cover; background-position: center; position: relative; }
.feature-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(61,28,36,0.6) 100%); }
.feature-body { padding: 1.5rem 1.75rem 1.75rem; }
.feature-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  margin-top: -2.75rem; margin-bottom: 1rem; position: relative; z-index: 2;
  box-shadow: 0 4px 12px rgba(61,28,36,0.4);
}
.feature-icon svg { width: 20px; height: 20px; stroke: var(--deep-wine); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.feature-card h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: var(--cream); margin-bottom: 0.5rem; letter-spacing: -0.3px; }
.feature-card p { font-size: 14px; color: var(--cream); opacity: 0.78; line-height: 1.65; }
.section-cream .feature-card,
.section-warm .feature-card {
  background: var(--white); border-color: rgba(139,45,58,0.12);
}
.section-cream .feature-card h3,
.section-warm .feature-card h3 { color: var(--deep-wine); }
.section-cream .feature-card p,
.section-warm .feature-card p { color: var(--wine); opacity: 0.85; }

/* ═══ TESTIMONIAL ═══ */
.testimonial-block { max-width: 760px; margin: 0 auto; text-align: center; padding: 2rem 0; }
.testimonial-block .quote-mark { font-family: 'Space Grotesk', sans-serif; font-size: 72px; font-weight: 700; color: var(--wine); line-height: 1; margin-bottom: -0.5rem; }
.testimonial-block blockquote { font-family: 'DM Sans', sans-serif; font-style: italic; font-size: clamp(1.05rem, 1.7vw, 1.3rem); line-height: 1.7; color: var(--deep-wine); }
.testimonial-author { margin-top: 2rem; display: flex; align-items: center; gap: 0.75rem; justify-content: center; }
.testimonial-avatar { width: 48px; height: 48px; border-radius: 50%; background-size: cover; background-position: center; border: 2px solid var(--wine); background-color: var(--wine); display: flex; align-items: center; justify-content: center; color: var(--gold); font-weight: 700; font-family: 'Space Grotesk', sans-serif; }
.testimonial-author .ta-name { font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600; color: var(--wine); letter-spacing: 0.5px; text-align: left; }
.testimonial-author .ta-role { font-size: 12px; color: var(--deep-wine); opacity: 0.6; text-align: left; }

/* Testimonial-Karten Grid */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem; max-width: 1200px;
}
.testimonial-card {
  background: var(--white); padding: 1.75rem 1.75rem 1.5rem;
  border-radius: 12px; box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  border-left: 3px solid var(--gold);
}
.testimonial-card blockquote { font-style: italic; font-size: 14px; line-height: 1.7; color: var(--deep-wine); margin-bottom: 1rem; }
.testimonial-card .ta-name { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 700; color: var(--wine); letter-spacing: 0.5px; }

/* ═══ TRACKS (Bewohner / Gäste) ═══ */
.tracks-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; max-width: 1100px; }
.track-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  display: flex; flex-direction: column;
  box-shadow: 0 4px 16px rgba(61,28,36,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.track-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(61,28,36,0.12); }
.track-img { height: 200px; background-size: cover; background-position: center; position: relative; }
.track-label {
  position: absolute; top: 1rem; left: 1rem;
  font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  background: var(--gold); color: var(--deep-wine);
  padding: 0.35rem 0.8rem; border-radius: 4px;
}
.track-body { padding: 1.75rem 2rem 2rem; flex: 1; display: flex; flex-direction: column; }
.track-body h3 { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--deep-wine); margin-bottom: 0.75rem; letter-spacing: -0.5px; }
.track-body p { font-size: 15px; color: var(--wine); opacity: 0.85; line-height: 1.7; }
.track-list { list-style: none !important; margin-top: 1rem; padding-left: 0 !important; }
.track-list li { font-size: 14px; color: var(--deep-wine); opacity: 0.9; padding: 0.35rem 0 0.35rem 1.25rem; position: relative; }
.track-list li::before { content: ''; position: absolute; left: 0; top: 0.75rem; width: 6px; height: 6px; background: var(--gold); border-radius: 50%; }
.track-cta {
  margin-top: auto; padding-top: 1.25rem;
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--wine); text-decoration: none; display: inline-flex; align-items: center; gap: 0.4rem;
  transition: color 0.2s;
}
.track-cta:hover { color: var(--deep-wine); }
.track-cta::after { content: '→'; transition: transform 0.2s; }
.track-cta:hover::after { transform: translateX(3px); }

/* ═══ COACHING-FORMATE ═══ */
.coaching-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; max-width: 1100px; }
.coaching-card {
  background: rgba(255,248,240,0.06); border: 1px solid rgba(240,206,69,0.22);
  border-radius: 12px; padding: 2rem 1.75rem;
  transition: border-color 0.2s, background 0.2s;
}
.coaching-card:hover { border-color: var(--gold); background: rgba(240,206,69,0.08); }
.coaching-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 20px; font-weight: 700; color: var(--gold); letter-spacing: -0.3px; margin-bottom: 0.5rem; }
.coaching-card .c-price { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 500; color: var(--cream); opacity: 0.6; margin-bottom: 1.25rem; letter-spacing: 0.5px; }
.coaching-card p { font-size: 14px; color: var(--cream); opacity: 0.85; line-height: 1.65; }
.section-cream .coaching-card,
.section-warm .coaching-card {
  background: var(--white); border-color: rgba(139,45,58,0.15);
}
.section-cream .coaching-card h4,
.section-warm .coaching-card h4 { color: var(--wine); }
.section-cream .coaching-card .c-price,
.section-warm .coaching-card .c-price { color: var(--deep-wine); opacity: 0.7; }
.section-cream .coaching-card p,
.section-warm .coaching-card p { color: var(--deep-wine); opacity: 0.85; }

/* ═══ EVENTS ═══ */
.events-list { max-width: 900px; display: flex; flex-direction: column; gap: 1rem; padding-left: 0 !important; list-style: none !important; }
.event-item {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--white); border: 1px solid rgba(139,45,58,0.15);
  border-radius: 12px; padding: 1rem 1.5rem 1rem 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.event-item:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(61,28,36,0.06); }
.event-thumb { width: 100px; height: 80px; border-radius: 8px; flex-shrink: 0; background-size: cover; background-position: center; background-color: var(--warm-gray); }
.event-date-box { text-align: center; flex-shrink: 0; min-width: 56px; padding: 0.4rem 0.6rem; background: var(--gold); border-radius: 8px; }
.event-date-box .day { font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--deep-wine); line-height: 1; }
.event-date-box .month { font-family: 'Space Grotesk', sans-serif; font-size: 10px; font-weight: 600; color: var(--wine); text-transform: uppercase; letter-spacing: 1px; }
.event-info { flex: 1; min-width: 0; }
.event-info h4 { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 600; color: var(--deep-wine); letter-spacing: -0.3px; }
.event-info p { font-size: 14px; color: var(--wine); opacity: 0.7; margin-top: 0.2rem; max-width: none; }
.event-tag { margin-left: auto; font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--wine); border: 1px solid rgba(139,45,58,0.3); padding: 0.3rem 0.75rem; border-radius: 6px; white-space: nowrap; }

/* ═══ TEAM ═══ */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 2rem; max-width: 1100px; }
.team-card { text-align: center; }
.team-avatar {
  width: 150px; height: 150px; border-radius: 50%; margin: 0 auto 1rem;
  background: var(--wine);
  background-size: cover; background-position: center;
  border: 3px solid var(--gold);
  position: relative;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-family: 'Space Grotesk', sans-serif; font-weight: 700; font-size: 42px;
}
.team-avatar::after { content: ''; position: absolute; inset: -3px; border-radius: 50%; background: linear-gradient(135deg, var(--gold), transparent 40%); opacity: 0.18; pointer-events: none; }
.team-card h4 { font-family: 'Space Grotesk', sans-serif; font-size: 17px; font-weight: 600; color: var(--deep-wine); }
.team-card .role { font-family: 'Space Grotesk', sans-serif; font-size: 12px; color: var(--dark-gold); margin-top: 0.2rem; letter-spacing: 0.5px; text-transform: uppercase; font-weight: 600; }
.team-card p { font-size: 13px; color: var(--wine); opacity: 0.8; margin-top: 0.5rem; line-height: 1.55; max-width: none; }

/* ═══ BLOG ═══ */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 2rem; max-width: 1200px; }
.blog-card {
  background: var(--white); border-radius: 12px; overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none; color: inherit;
  display: block;
}
.blog-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(61,28,36,0.12); }
.blog-img { height: 200px; position: relative; background-size: cover; background-position: center; background-color: var(--wine); display: flex; align-items: flex-end; padding: 1rem; }
.blog-img::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 40%, rgba(61,28,36,0.65) 100%); }
.blog-img .blog-tag { position: relative; z-index: 2; font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; color: var(--deep-wine); background: var(--gold); padding: 0.25rem 0.65rem; border-radius: 4px; }
.blog-body { padding: 1.5rem; }
.blog-body h3 { font-family: 'Space Grotesk', sans-serif; font-size: 18px; font-weight: 700; color: var(--deep-wine); line-height: 1.3; letter-spacing: -0.3px; margin-bottom: 0.5rem; }
.blog-body p { font-size: 14px; color: var(--wine); opacity: 0.8; line-height: 1.55; max-width: none; }
.blog-body .blog-date { font-size: 12px; color: var(--dark-gold); margin-top: 0.75rem; font-weight: 500; }

/* Blog-Article-Single */
.article-hero {
  background: var(--deep-wine); color: var(--cream);
  padding: clamp(7rem, 14vh, 10rem) clamp(1.5rem, 8vw, 8rem) clamp(3rem, 6vh, 5rem);
}
.article-hero .tag { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); }
.article-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2rem, 4vw, 3.4rem); font-weight: 700; line-height: 1.1; letter-spacing: -1px; margin: 0.75rem 0 1rem; max-width: 880px; }
.article-hero .meta { font-family: 'Space Grotesk', sans-serif; font-size: 13px; opacity: 0.7; }
.article-body {
  background: var(--cream); padding: clamp(3rem, 6vh, 5rem) clamp(1.5rem, 8vw, 8rem);
}
.article-body article { max-width: 720px; margin: 0 auto; font-size: 1.05rem; line-height: 1.85; }
.article-body article h2 { font-family: 'Space Grotesk', sans-serif; font-size: 1.6rem; margin: 2rem 0 0.75rem; color: var(--wine); }
.article-body article h3 { font-family: 'Space Grotesk', sans-serif; font-size: 1.25rem; margin: 1.5rem 0 0.5rem; color: var(--deep-wine); }
.article-body article p { margin-bottom: 1.1rem; max-width: none; }
.article-body article ul, .article-body article ol { margin: 0 0 1.1rem 0; padding-left: 1.4rem; }
.article-body article li { margin-bottom: 0.45rem; }
.article-body article blockquote { border-left: 3px solid var(--gold); padding: 0.5rem 0 0.5rem 1.25rem; margin: 1.25rem 0; font-style: italic; color: var(--wine); }

/* ═══ HERITAGE BANNER ═══ */
.heritage-banner {
  background: var(--deep-wine);
  padding: 2.5rem clamp(1.5rem, 6vw, 6rem);
  border-top: 1px solid rgba(240,206,69,0.2);
  border-bottom: 1px solid rgba(240,206,69,0.2);
}
.heritage-inner { max-width: 900px; margin: 0 auto; display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.heritage-badge { flex-shrink: 0; font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--deep-wine); background: var(--gold); padding: 0.4rem 0.9rem; border-radius: 4px; }
.heritage-text { flex: 1; min-width: 260px; font-family: 'DM Sans', sans-serif; font-size: 15px; line-height: 1.7; color: var(--cream); opacity: 0.9; }
.heritage-text strong { color: var(--gold); font-weight: 600; }

/* ═══ CTA ═══ */
.cta-inner { max-width: 720px; margin: 0 auto; text-align: center; }
.cta-inner h2 { margin: 0 auto 1rem; }
.cta-inner p { font-size: 1.05rem; opacity: 0.8; margin: 0 auto 2rem; line-height: 1.7; max-width: 580px; }
.cta-form { display: flex; gap: 0.75rem; max-width: 460px; margin: 0 auto; }
.cta-form input {
  flex: 1; padding: 0.85rem 1.25rem; border: 2px solid var(--wine);
  border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 15px;
  background: var(--white); color: var(--deep-wine); outline: none;
  transition: border-color 0.2s;
}
.cta-form input::placeholder { color: var(--wine); opacity: 0.5; }
.cta-form input:focus { border-color: var(--gold); }
.cta-form button {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--deep-wine); background: var(--gold); padding: 0.85rem 1.75rem;
  border: none; border-radius: 8px; cursor: pointer; white-space: nowrap;
  transition: background 0.2s;
}
.cta-form button:hover { background: var(--dark-gold); }

/* ═══ KONTAKT + SPENDEN ═══ */
.contact-donate { display: grid; grid-template-columns: 2fr 1fr; gap: 0; }
.contact-block { background: var(--cream); padding: clamp(3rem, 6vh, 5rem) clamp(1.5rem, 5vw, 5rem); }
.contact-block h2 { margin-bottom: 1rem; max-width: 480px; }
.contact-block .intro { font-size: 1rem; color: var(--wine); opacity: 0.85; max-width: 480px; line-height: 1.7; margin-bottom: 1.75rem; }
.contact-form { display: grid; gap: 0.75rem; max-width: 540px; }
.contact-form input, .contact-form textarea {
  padding: 0.85rem 1.15rem; border: 1.5px solid rgba(139,45,58,0.25);
  border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 15px;
  background: var(--white); color: var(--deep-wine); outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus { border-color: var(--wine); }
.contact-form textarea { min-height: 130px; resize: vertical; }
.contact-form button {
  font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 600;
  color: var(--cream); background: var(--wine); padding: 0.85rem 1.75rem;
  border: none; border-radius: 8px; cursor: pointer;
  justify-self: start; transition: background 0.2s;
}
.contact-form button:hover { background: var(--deep-wine); }
.contact-meta { margin-top: 1.75rem; display: flex; gap: 1.75rem; flex-wrap: wrap; font-size: 14px; }
.contact-meta div { color: var(--deep-wine); }
.contact-meta div span { display: block; font-size: 11px; color: var(--dark-gold); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 0.25rem; font-weight: 600; font-family: 'Space Grotesk', sans-serif; }

.donate-block {
  background: var(--gold);
  padding: clamp(3rem, 6vh, 5rem) clamp(1.5rem, 4vw, 3rem);
  display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.donate-block::before { content: ''; position: absolute; top: -30%; right: -25%; width: 400px; height: 400px; border: 2px solid var(--wine); border-radius: 50%; opacity: 0.08; }
.donate-block .d-eyebrow { font-family: 'Space Grotesk', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--wine); margin-bottom: 0.75rem; }
.donate-block h3 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.4rem, 2.5vw, 1.9rem); font-weight: 700; color: var(--deep-wine); line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 1rem; }
.donate-block p { font-size: 14px; color: var(--wine); opacity: 0.92; line-height: 1.65; margin-bottom: 1.75rem; max-width: none; }
.donate-btn {
  font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 600;
  color: var(--gold); background: var(--wine); padding: 0.85rem 1.75rem;
  border-radius: 8px; text-decoration: none; letter-spacing: 0.5px;
  display: inline-flex; align-items: center; gap: 0.5rem;
  transition: background 0.2s;
  align-self: flex-start;
}
.donate-btn:hover { background: var(--deep-wine); }

/* ═══ TICKET-CARDS ═══ */
.tickets-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; max-width: 1100px; }
.ticket-card { background: var(--white); border: 2px solid rgba(139,45,58,0.15); border-radius: 16px; padding: 2rem 1.75rem; display: flex; flex-direction: column; }
.ticket-card.featured { border-color: var(--gold); box-shadow: 0 12px 32px rgba(240,206,69,0.18); }
.ticket-card h3 { color: var(--deep-wine); font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; margin-bottom: 0.4rem; }
.ticket-card .price { font-family: 'Space Grotesk', sans-serif; font-size: 28px; font-weight: 700; color: var(--wine); margin: 0.4rem 0 0.2rem; }
.ticket-card .price-note { font-size: 13px; color: var(--deep-wine); opacity: 0.65; margin-bottom: 1rem; }
.ticket-card p.descr { font-size: 14px; color: var(--wine); opacity: 0.85; margin-bottom: 1.25rem; max-width: none; }
.ticket-card ul { padding-left: 0 !important; list-style: none !important; margin: 0 0 1.5rem !important; }
.ticket-card ul li { font-size: 13px; color: var(--deep-wine); opacity: 0.85; padding: 0.3rem 0 0.3rem 1.4rem; position: relative; line-height: 1.5; margin: 0; }
.ticket-card ul li::before { content: '✓'; position: absolute; left: 0; top: 0.3rem; color: var(--gold); font-weight: 700; }
.ticket-card .ticket-cta { margin-top: auto; }

/* ═══ FOOTER ═══ */
footer.site-footer {
  background: var(--deep-wine); color: var(--cream);
  padding: 3rem clamp(1.5rem, 8vw, 8rem) 2rem;
  border-top: 3px solid var(--gold);
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2rem; margin-bottom: 2.5rem; }
.footer-brand .main { font-family: 'Space Grotesk', sans-serif; font-size: 24px; font-weight: 700; color: var(--gold); }
.footer-brand .sub { font-family: 'Space Grotesk', sans-serif; font-size: 9px; font-weight: 500; color: var(--cream); text-transform: uppercase; letter-spacing: 4px; margin-top: 3px; opacity: 0.7; }
.footer-brand p { font-size: 14px; opacity: 0.6; margin-top: 1rem; max-width: 320px; line-height: 1.6; }
.footer-col h5 { font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.footer-col a { display: block; font-size: 14px; color: var(--cream); opacity: 0.7; text-decoration: none; margin-bottom: 0.5rem; transition: opacity 0.2s; }
.footer-col a:hover { opacity: 1; }
.footer-bottom { border-top: 1px solid rgba(240,206,69,0.18); padding-top: 1.5rem; display: flex; justify-content: space-between; font-size: 13px; opacity: 0.5; flex-wrap: wrap; gap: 0.5rem; }

/* Social Footer */
.social-row { display: flex; gap: 0.6rem; margin-top: 1.25rem; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(240,206,69,0.1); border: 1px solid rgba(240,206,69,0.25);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s; text-decoration: none;
}
.social-icon:hover { background: rgba(240,206,69,0.2); border-color: var(--gold); }
.social-icon svg { width: 16px; height: 16px; stroke: var(--gold); fill: none; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }

/* ═══ COOKIE BANNER ═══ */
.cookie-banner {
  position: fixed; bottom: 1rem; left: 1rem; right: 1rem;
  max-width: 640px; margin: 0 auto;
  background: var(--deep-wine); color: var(--cream);
  border: 1px solid var(--gold); border-radius: 14px;
  padding: 1.25rem 1.5rem; z-index: 200;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  display: none;
}
.cookie-banner.visible { display: block; }
.cookie-banner h4 { font-family: 'Space Grotesk', sans-serif; font-size: 15px; color: var(--gold); margin-bottom: 0.5rem; }
.cookie-banner p { font-size: 13px; opacity: 0.85; line-height: 1.55; margin-bottom: 1rem; }
.cookie-banner .cookie-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cookie-banner button {
  font-family: 'Space Grotesk', sans-serif; font-size: 13px; font-weight: 600;
  padding: 0.55rem 1rem; border-radius: 6px; cursor: pointer; border: none;
}
.cookie-banner .btn-accept { background: var(--gold); color: var(--deep-wine); }
.cookie-banner .btn-decline { background: transparent; color: var(--cream); border: 1px solid rgba(255,248,240,0.3); }

/* ═══ HEADING-PAGE (kleinerer Hero für Unterseiten) ═══ */
.page-hero {
  background: var(--deep-wine); color: var(--cream);
  padding: clamp(7rem, 14vh, 10rem) clamp(1.5rem, 8vw, 8rem) clamp(3rem, 6vh, 5rem);
  position: relative; overflow: hidden;
  border-bottom: 4px solid var(--gold);
}
.page-hero::before {
  content: ''; position: absolute; right: -10%; top: 30%;
  width: 420px; height: 420px;
  border: 2px solid var(--gold); border-radius: 50%; opacity: 0.06;
}
.page-hero .eyebrow { font-family: 'Space Grotesk', sans-serif; font-size: 12px; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; }
.page-hero h1 { font-family: 'Space Grotesk', sans-serif; font-size: clamp(2.4rem, 5vw, 4.4rem); font-weight: 700; line-height: 1.05; letter-spacing: -1.5px; max-width: 880px; }
.page-hero h1 em { font-style: normal; color: var(--gold); }
.page-hero p { color: var(--cream); opacity: 0.85; font-size: clamp(1rem, 1.4vw, 1.15rem); margin-top: 1.25rem; max-width: 620px; line-height: 1.7; }

/* ═══ QUOTE BLOCK ═══ */
.quote-block { max-width: 880px; margin: 0 auto; text-align: center; }
.quote-block blockquote { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.4rem, 2.5vw, 2rem); font-weight: 500; line-height: 1.4; letter-spacing: -0.5px; color: var(--gold); }
.quote-block cite { font-style: normal; font-size: 14px; color: var(--cream); opacity: 0.7; letter-spacing: 1px; text-transform: uppercase; display: block; margin-top: 1.25rem; font-family: 'Space Grotesk', sans-serif; font-weight: 600; }

/* Number-Liste mit Gold */
.numbered-list { list-style: none !important; padding-left: 0 !important; max-width: 760px; margin-top: 1rem; }
.numbered-list li { padding: 0.85rem 0 0.85rem 3rem; position: relative; counter-increment: pioneer-counter; line-height: 1.7; border-bottom: 1px solid rgba(139,45,58,0.1); }
.numbered-list li:last-child { border-bottom: none; }
.numbered-list li::before {
  content: counter(pioneer-counter, decimal-leading-zero);
  position: absolute; left: 0; top: 0.85rem;
  font-family: 'Space Grotesk', sans-serif; font-size: 1.3rem; font-weight: 700;
  color: var(--gold);
}
.numbered-list { counter-reset: pioneer-counter; }
.section-wine .numbered-list li { border-bottom-color: rgba(240,206,69,0.18); }

/* ═══ INFO-BOX ═══ */
.info-box { background: var(--white); border-left: 4px solid var(--gold); padding: 1.5rem 1.75rem; border-radius: 8px; box-shadow: 0 2px 12px rgba(0,0,0,0.05); max-width: 760px; margin-top: 1.5rem; }
.info-box h4 { font-family: 'Space Grotesk', sans-serif; font-size: 1.05rem; color: var(--wine); margin-bottom: 0.5rem; }
.info-box p { font-size: 14px; line-height: 1.7; color: var(--deep-wine); max-width: none; }
.section-wine .info-box { background: rgba(240,206,69,0.08); border-left-color: var(--gold); }
.section-wine .info-box h4 { color: var(--gold); }
.section-wine .info-box p { color: var(--cream); opacity: 0.9; }

/* ═══ TWO-COL ═══ */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 4vw, 4rem); max-width: 1100px; align-items: start; }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: span 3; }
}
@media (max-width: 900px) {
  .tracks-grid { grid-template-columns: 1fr; }
  .coaching-grid { grid-template-columns: 1fr; }
  .hero-strip { grid-template-columns: repeat(3, 1fr); }
  .hero-strip-img:nth-child(n+4) { display: none; }
  .heritage-inner { flex-direction: column; align-items: flex-start; }
  .contact-donate { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--deep-wine); flex-direction: column;
    padding: 1.25rem; gap: 1rem; border-bottom: 2px solid var(--gold);
  }
  .nav-links.open { display: flex; }
  .nav-links li.has-sub .nav-sub { position: static; opacity: 1; transform: none; pointer-events: auto; box-shadow: none; padding: 0 0 0 1rem; min-width: 0; background: transparent; border: none; }
  .nav-toggle { display: block; }
  .vision-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid .footer-col:last-child { grid-column: span 2; }
  .cta-form { flex-direction: column; }
  .event-tag { display: none; }
  .event-thumb { display: none; }
  .contact-meta { flex-direction: column; gap: 1rem; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid .footer-col:last-child { grid-column: span 1; }
  .footer-bottom { flex-direction: column; }
}
