/* ============================================================
   Köln Steht auf – Campaign Editorial Design System
   Authentic Civic Movement • Premium Editorial Style
   ============================================================ */

/* --- Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,500;0,9..144,600;0,9..144,700;0,9..144,800;1,9..144,400;1,9..144,600&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* --- Design Tokens --- */
:root {
  /* Warm Editorial Color Palette */
  --bg:          #FAF8F5; /* Warm sand/cream paper */
  --bg-dark:     #121416; /* Deep charcoal ink */
  --bg-warm:     #F3EFEA; /* Elevated warm sand */
  --bg-card:     #FFFFFF; /* Clean white cards */
  --bg-elev:     #FDFCFB; /* Very light sand */
  
  --border:      rgba(29, 32, 34, 0.08);
  --border-hi:   rgba(29, 32, 34, 0.16);
  --border-light: rgba(255, 255, 255, 0.08);
  
  /* Text colors */
  --text:        #1D2022; /* Ink black */
  --text-muted:  #5C6266; /* Slate gray */
  --text-dim:    #82888C; /* Muted gray */
  --text-light:  #F5F5F0; /* Off-white for dark sections */
  --white:       #FFFFFF;
  
  /* Accents */
  --primary:     #9E1B2B; /* Deep Crimson/Burgundy */
  --primary-hover: #801321;
  --primary-bg:  rgba(158, 27, 43, 0.06);
  --accent:      #B88A38; /* Warm Gold */
  --accent-hover: #9E742E;
  --success:     #1E6B3F; /* Forest Green */
  --success-bg:  rgba(30, 107, 63, 0.06);
  
  /* Typography */
  --ff-head:     'Fraunces', Georgia, serif;
  --ff-body:     'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  
  /* Layout */
  --ease:        cubic-bezier(0.16, 1, 0.3, 1); /* Ultra smooth ease */
  --dur:         0.4s;
  --max-w:       1200px;
  --radius:      12px;
  --radius-sm:   6px;
  
  /* Shadows */
  --shadow-sm:   0 2px 8px rgba(29, 32, 34, 0.04);
  --shadow-md:   0 12px 36px rgba(29, 32, 34, 0.06);
  --shadow-lg:   0 24px 60px rgba(29, 32, 34, 0.1);
  --shadow-dark: 0 20px 40px rgba(0, 0, 0, 0.5);

  /* Header Background Variables */
  --header-bg:          rgba(250, 248, 245, 0.75);
  --header-bg-scrolled: rgba(250, 248, 245, 0.95);
}

/* --- Dark Theme Tokens --- */
[data-theme="dark"] {
  --bg:          #121416; /* Deep charcoal ink */
  --bg-dark:     #0D0F10; /* Even darker black */
  --bg-warm:     #1C1E21; /* Slightly lighter charcoal for section background */
  --bg-card:     #1A1C1E; /* Lighter charcoal for cards */
  --bg-elev:     #222528; /* Elevated cards/elements */
  
  --border:      rgba(255, 255, 255, 0.08);
  --border-hi:   rgba(255, 255, 255, 0.16);
  
  --text:        #FAF8F5; /* Warm sand/cream paper for reading */
  --text-muted:  #A2A8AB; /* Light slate gray */
  --text-dim:    #767C80; /* Darker gray */
  --text-light:  #F5F5F0;
  
  --primary-bg:  rgba(158, 27, 43, 0.2);
  
  --header-bg:          rgba(18, 20, 22, 0.75);
  --header-bg-scrolled: rgba(18, 20, 22, 0.95);
  
  --shadow-sm:   0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md:   0 12px 36px rgba(0, 0, 0, 0.35);
  --shadow-lg:   0 24px 60px rgba(0, 0, 0, 0.45);
}

/* Dark mode image adjustment for natural integration */
[data-theme="dark"] img {
  filter: brightness(0.8) contrast(1.05);
}
[data-theme="dark"] .hero-bg img,
[data-theme="dark"] .page-header-bg img,
[data-theme="dark"] .img-banner img {
  filter: brightness(0.26) contrast(1.05);
}

/* --- Reset & Base --- */
*, *::before, *::after { 
  margin: 0; 
  padding: 0; 
  box-sizing: border-box; 
}

html { 
  scroll-behavior: smooth; 
  font-size: 16px; 
  -webkit-font-smoothing: antialiased; 
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--ff-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

a { 
  color: inherit; 
  text-decoration: none; 
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), background var(--dur) var(--ease); 
}

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

ul, ol { 
  list-style: none; 
}

button, input, textarea, select { 
  font-family: inherit; 
  color: inherit;
}

button {
  cursor: pointer; 
  border: none; 
  background: none; 
  outline: none;
}

/* --- Utilities --- */
.container { 
  max-width: var(--max-w); 
  margin: 0 auto; 
  padding: 0 32px; 
}

.accent { color: var(--accent); }
.red { color: var(--primary); }
.sr-only { 
  position: absolute; 
  width: 1px; 
  height: 1px; 
  overflow: hidden; 
  clip: rect(0,0,0,0); 
}

/* --- Section Layouts --- */
.section { 
  padding: 120px 0; 
  position: relative; 
}

.section-dark { 
  background: var(--bg-dark); 
  color: var(--text-light); 
}

.section-dark .section-title {
  color: var(--white);
}

.section-dark .section-desc {
  color: var(--text-dim);
}

.section-header { 
  margin-bottom: 64px; 
}

.section-header.centered { 
  text-align: center; 
  max-width: 700px; 
  margin-left: auto; 
  margin-right: auto; 
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem; 
  font-weight: 700; 
  color: var(--primary);
  text-transform: uppercase; 
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}

.section-tag::before {
  content: ''; 
  position: absolute; 
  left: 0; 
  top: 50%;
  width: 18px; 
  height: 2px; 
  background: var(--primary); 
  transform: translateY(-50%);
}

.section-header.centered .section-tag::before { 
  display: none; 
}

.section-header.centered .section-tag { 
  padding-left: 0; 
}

.section-title {
  font-family: var(--ff-head); 
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 700;
  color: var(--text); 
  margin-bottom: 20px; 
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  font-family: var(--ff-head);
  font-weight: 400;
}

.section-desc {
  font-size: 1.15rem; 
  color: var(--text-muted); 
  max-width: 600px;
  font-weight: 400;
}

.section-header.centered .section-desc { 
  margin-left: auto; 
  margin-right: auto; 
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100%; 
  z-index: 100;
  background: var(--header-bg);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(16px); 
  -webkit-backdrop-filter: blur(16px);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.site-header.scrolled {
  background: var(--header-bg-scrolled);
  box-shadow: 0 4px 30px rgba(29, 32, 34, 0.03);
}

.header-inner {
  max-width: var(--max-w); 
  margin: 0 auto; 
  padding: 20px 32px;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
}

/* Logo */
.site-logo { 
  display: flex; 
  align-items: center; 
  gap: 12px; 
}

.logo-mark {
  background: var(--primary);
  color: var(--white); 
  font-family: var(--ff-body); 
  font-weight: 800; 
  font-size: 0.85rem;
  padding: 6px 10px; 
  border-radius: 4px; 
  letter-spacing: 0.08em;
  line-height: 1;
  box-shadow: 0 2px 8px rgba(158, 27, 43, 0.2);
}

.logo-name {
  font-family: var(--ff-head); 
  font-size: 1.1rem; 
  line-height: 1.15;
  color: var(--text);
  font-weight: 700;
}

/* Nav */
.site-nav { 
  display: flex; 
  gap: 32px; 
}

.nav-item {
  font-size: 0.95rem; 
  font-weight: 600; 
  color: var(--text-muted);
  position: relative; 
  padding: 6px 0;
}

.nav-item::after {
  content: ''; 
  position: absolute; 
  bottom: 0; 
  left: 0; 
  width: 0; 
  height: 2px;
  background: var(--primary); 
  transition: width var(--dur) var(--ease);
}

.nav-item:hover, .nav-item.active { 
  color: var(--text); 
}

.nav-item:hover::after, .nav-item.active::after { 
  width: 100%; 
}

/* Header Right */
.header-right { 
  display: flex; 
  align-items: center; 
  gap: 16px;
}

/* Theme Toggle Button */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-warm);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: background var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease);
}
.theme-toggle:hover {
  background: var(--bg-elev);
  border-color: var(--border-hi);
  transform: scale(1.06);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
  display: block;
}

/* Buttons */
.cta-btn {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  padding: 11px 24px; 
  border-radius: var(--radius-sm);
  background: var(--primary); 
  color: var(--white);
  font-weight: 700; 
  font-size: 0.9rem; 
  letter-spacing: 0.02em;
  box-shadow: 0 4px 14px rgba(158, 27, 43, 0.2);
  transition: background var(--dur) var(--ease), transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.cta-btn:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(158, 27, 43, 0.3);
}

/* Burger Menu */
.burger { 
  display: none; 
  flex-direction: column; 
  gap: 6px; 
  padding: 8px; 
}

.burger span {
  display: block; 
  width: 24px; 
  height: 2px; 
  background: var(--text);
  transition: transform var(--dur) var(--ease), opacity var(--dur) var(--ease);
}

/* Mobile Menu */
.mobile-menu {
  position: fixed; 
  top: 0; 
  left: 0; 
  width: 100vw; 
  height: 100vh;
  background: var(--bg-dark); 
  z-index: 200;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  justify-content: center;
  gap: 28px; 
  opacity: 0; 
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}

.mobile-menu.open { 
  opacity: 1; 
  visibility: visible; 
}

.mobile-menu-link {
  font-family: var(--ff-head); 
  font-size: 2rem; 
  color: var(--text-dim);
}

.mobile-menu-link:hover, .mobile-menu-link.active { 
  color: var(--white); 
}

.mobile-cta { 
  margin-top: 20px; 
  font-size: 1.1rem; 
  padding: 14px 38px; 
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative; 
  min-height: 95vh;
  display: flex; 
  align-items: flex-end;
  padding: 160px 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; 
  inset: 0; 
  z-index: 0;
}

.hero-bg img {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  filter: brightness(0.4) contrast(1.05) saturate(0.9);
}

.hero-bg::after {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 20, 22, 0.3) 0%, rgba(18, 20, 22, 0.75) 50%, var(--bg) 100%);
}

.hero-noise {
  position: absolute; 
  inset: 0; 
  z-index: 1;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative; 
  z-index: 2;
  max-width: 800px; 
  padding: 0 32px;
  margin: 0 auto 0 calc((100% - var(--max-w))/2 + 32px);
}

.hero-eyebrow {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  background: rgba(158, 27, 43, 0.15); 
  border: 1px solid rgba(158, 27, 43, 0.3);
  padding: 6px 16px; 
  border-radius: 4px;
  font-size: 0.8rem; 
  font-weight: 700; 
  color: #ffcbd1;
  text-transform: uppercase; 
  letter-spacing: 0.12em;
  margin-bottom: 28px;
}

.hero h1 {
  font-family: var(--ff-head); 
  font-size: clamp(2.6rem, 7vw, 4.6rem);
  line-height: 1.1; 
  color: var(--white);
  margin-bottom: 24px;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.hero h1 em {
  font-style: italic; 
  color: var(--accent);
  font-family: var(--ff-head);
  font-weight: 400;
}

.hero-sub {
  font-size: 1.25rem; 
  color: var(--text-light); 
  max-width: 620px;
  margin-bottom: 40px; 
  font-weight: 400;
  line-height: 1.65;
  opacity: 0.95;
}

.hero-actions { 
  display: flex; 
  gap: 16px; 
  flex-wrap: wrap; 
  margin-bottom: 56px; 
}

.btn-hero {
  padding: 16px 32px; 
  border-radius: var(--radius-sm);
  font-weight: 700; 
  font-size: 1rem;
  display: inline-flex; 
  align-items: center; 
  gap: 10px;
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}

.btn-hero.primary {
  background: var(--primary); 
  color: var(--white);
  box-shadow: 0 4px 18px rgba(158, 27, 43, 0.3);
}

.btn-hero.primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(158, 27, 43, 0.45);
}

.btn-hero.secondary {
  background: rgba(255, 255, 255, 0.08); 
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
}

.btn-hero.secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

/* Hero Stats Strip */
.hero-stats {
  display: flex; 
  gap: 60px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding-top: 32px;
}

.hero-stat { 
  display: flex; 
  flex-direction: column; 
}

.hero-stat-val {
  font-family: var(--ff-head); 
  font-size: 2.2rem; 
  color: var(--accent);
  font-weight: 700;
}

.hero-stat-lbl {
  font-size: 0.8rem; 
  color: var(--text-dim); 
  text-transform: uppercase; 
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* ============================================================
   ANNOUNCEMENT / ACTION CARD (Status)
   ============================================================ */
.announce-card {
  background: var(--bg-card); 
  border: 1px solid var(--border);
  border-radius: var(--radius); 
  overflow: hidden;
  display: grid; 
  grid-template-columns: 1.25fr 0.75fr;
  box-shadow: var(--shadow-md);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.announce-card:hover {
  box-shadow: var(--shadow-lg);
}

.announce-left { 
  padding: 56px; 
}

.announce-badge {
  display: inline-block;
  background: var(--primary-bg);
  border: 1px solid rgba(158, 27, 43, 0.12);
  color: var(--primary); 
  font-weight: 700; 
  font-size: 0.75rem;
  padding: 6px 14px; 
  border-radius: 4px;
  text-transform: uppercase; 
  letter-spacing: 0.1em;
  margin-bottom: 24px;
}

.announce-left h3 {
  font-family: var(--ff-head); 
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--text); 
  margin-bottom: 32px;
  line-height: 1.2;
}

.announce-list { 
  display: flex; 
  flex-direction: column; 
  gap: 24px; 
  margin-bottom: 40px; 
}

.announce-item {
  display: flex; 
  gap: 20px; 
  align-items: flex-start;
}

.announce-icon {
  width: 46px; 
  height: 46px; 
  border-radius: 50%;
  background: var(--bg-warm); 
  border: 1px solid var(--border);
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: var(--primary); 
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.announce-icon svg { 
  width: 20px; 
  height: 20px; 
}

.announce-text strong { 
  display: block; 
  font-size: 1.05rem; 
  color: var(--text); 
  margin-bottom: 4px; 
  font-weight: 700;
}

.announce-text span { 
  font-size: 0.95rem; 
  color: var(--text-muted); 
}

.announce-btns { 
  display: flex; 
  gap: 16px; 
}

.btn {
  display: inline-flex; 
  align-items: center; 
  gap: 8px;
  padding: 13px 28px; 
  border-radius: var(--radius-sm);
  font-weight: 700; 
  font-size: 0.95rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease), background var(--dur) var(--ease);
}

.btn-red { 
  background: var(--primary); 
  color: var(--white); 
  box-shadow: 0 4px 14px rgba(158, 27, 43, 0.15);
}

.btn-red:hover { 
  background: var(--primary-hover);
  transform: translateY(-2px); 
  box-shadow: 0 6px 20px rgba(158, 27, 43, 0.25); 
}

.btn-ghost {
  background: transparent; 
  color: var(--text);
  border: 1px solid var(--border-hi);
}

.btn-ghost:hover { 
  background: rgba(29, 32, 34, 0.04); 
  transform: translateY(-2px); 
}

.btn-block { 
  width: 100%; 
  justify-content: center; 
}

/* Action Progress Strip (New Professional Authentic Indicator) */
.action-progress-wrap {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.action-progress-title {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
}
.action-progress-bar {
  height: 6px;
  background: var(--bg-warm);
  border-radius: 10px;
  overflow: hidden;
}
.action-progress-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--primary));
  border-radius: 10px;
  width: 75%;
}
.action-steps-indicator {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  font-size: 0.8rem;
  color: var(--text-dim);
}
.action-step-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.action-step-badge.done {
  color: var(--success);
  font-weight: 600;
}

/* Countdown sidebar */
.announce-right {
  padding: 56px; 
  display: flex; 
  flex-direction: column;
  justify-content: center; 
  align-items: center;
  background: var(--bg-warm); 
  border-left: 1px solid var(--border);
}

.announce-right h4 {
  font-size: 0.85rem; 
  text-transform: uppercase; 
  letter-spacing: 0.1em;
  color: var(--text-muted); 
  margin-bottom: 24px;
  font-weight: 700;
}

.countdown { 
  display: flex; 
  gap: 12px; 
  margin-bottom: 32px; 
}

.cd-box {
  background: var(--bg-card); 
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); 
  padding: 16px 12px; 
  min-width: 76px; 
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.cd-val {
  font-family: var(--ff-head); 
  font-size: 2.2rem; 
  color: var(--primary); 
  line-height: 1;
  display: block; 
  margin-bottom: 4px;
  font-weight: 700;
}

.cd-lbl { 
  font-size: 0.7rem; 
  color: var(--text-dim); 
  text-transform: uppercase; 
  letter-spacing: 0.05em; 
}

.cd-footer {
  font-size: 0.95rem; 
  color: var(--text-muted); 
  text-align: center;
  border-top: 1px solid var(--border); 
  padding-top: 24px; 
  width: 100%;
}

.cd-footer strong { 
  color: var(--primary); 
}

/* ============================================================
   VALUES & DEMANDS GRID
   ============================================================ */
.values-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 28px;
}

.value-card {
  background: var(--bg-card); 
  border: 1px solid var(--border);
  border-radius: var(--radius); 
  padding: 44px 40px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.value-card:hover {
  transform: translateY(-5px); 
  border-color: var(--border-hi);
  box-shadow: var(--shadow-md);
}

.value-card.highlight {
  border-color: rgba(158, 27, 43, 0.15);
  background: linear-gradient(180deg, var(--bg-card) 0%, rgba(158, 27, 43, 0.02) 100%);
}

.value-card.highlight:hover {
  border-color: rgba(158, 27, 43, 0.35);
  box-shadow: 0 16px 40px rgba(158, 27, 43, 0.05);
}

.value-num {
  font-family: var(--ff-head); 
  font-size: 2.6rem; 
  color: var(--primary);
  font-weight: 800;
  opacity: 0.15; 
  line-height: 1; 
  margin-bottom: 20px;
  font-style: italic;
}

.value-card.highlight .value-num { 
  opacity: 0.8; 
}

.value-card h3 {
  font-family: var(--ff-head); 
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text); 
  margin-bottom: 14px;
}

.value-card p { 
  font-size: 0.95rem; 
  color: var(--text-muted); 
}

/* ============================================================
   IMAGE BANNER & BLOCKQUOTES
   ============================================================ */
.img-banner {
  position: relative; 
  height: 480px; 
  overflow: hidden;
  margin: 0; 
  display: flex; 
  align-items: center; 
  justify-content: center;
}

.img-banner img {
  position: absolute; 
  inset: 0; 
  width: 100%; 
  height: 100%;
  object-fit: cover; 
  filter: brightness(0.28) contrast(1.05);
}

.img-banner-overlay {
  position: absolute; 
  inset: 0;
  background: linear-gradient(180deg, var(--bg) 0%, transparent 25%, transparent 75%, var(--bg) 100%);
}

.img-banner-text {
  position: relative; 
  z-index: 2; 
  text-align: center; 
  padding: 0 32px;
  max-width: 800px;
}

.img-banner-text blockquote {
  font-family: var(--ff-head); 
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: var(--white); 
  line-height: 1.3;
  font-weight: 500;
  font-style: italic;
  letter-spacing: -0.01em;
}

.img-banner-text cite {
  display: block; 
  margin-top: 24px;
  font-family: var(--ff-body); 
  font-size: 0.95rem; 
  color: var(--accent);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
}

/* ============================================================
   TIMELINE (Route & Ablauf Page)
   ============================================================ */
.timeline-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 64px;
}

.timeline { 
  position: relative; 
  padding-left: 48px; 
}

.timeline::before {
  content: ''; 
  position: absolute; 
  left: 12px; 
  top: 8px; 
  bottom: 8px;
  width: 2px; 
  background: linear-gradient(180deg, var(--primary), rgba(158, 27, 43, 0.1));
}

.tl-step { 
  position: relative; 
  margin-bottom: 48px; 
  transition: transform var(--dur) var(--ease);
}

.tl-step:last-child { 
  margin-bottom: 0; 
}

.tl-step::before {
  content: ''; 
  position: absolute; 
  left: -48px; 
  top: 6px;
  width: 26px; 
  height: 26px; 
  border-radius: 50%;
  background: var(--bg-card); 
  border: 4px solid var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--dur) var(--ease);
}

.tl-step:hover::before { 
  background: var(--primary); 
  transform: scale(1.15); 
}

.tl-time {
  font-family: var(--ff-head); 
  font-size: 1.2rem; 
  color: var(--accent);
  margin-bottom: 6px;
  font-weight: 700;
}

.tl-step h4 { 
  font-family: var(--ff-head); 
  font-size: 1.3rem; 
  color: var(--text); 
  margin-bottom: 10px; 
  font-weight: 700;
}

.tl-step p { 
  font-size: 0.95rem; 
  color: var(--text-muted); 
}

/* ============================================================
   MAP EMBED & RULES
   ============================================================ */
.map-wrap {
  background: var(--bg-card); 
  border: 1px solid var(--border);
  border-radius: var(--radius); 
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.map-wrap iframe { 
  width: 100%; 
  height: 380px; 
  display: block; 
  border: none; 
}

.map-footer { 
  padding: 32px; 
}

.map-legend {
  display: flex; 
  gap: 24px; 
  margin-bottom: 24px; 
  font-size: 0.85rem; 
  color: var(--text-muted);
  font-weight: 600;
}

.legend-dot {
  display: inline-block; 
  width: 10px; 
  height: 10px; 
  border-radius: 50%; 
  margin-right: 8px;
}

.legend-dot.red { background: var(--primary); }
.legend-dot.gold { background: var(--accent); }
.legend-dot.green { background: var(--success); }

.rules {
  background: var(--bg-warm); 
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); 
  padding: 24px;
}

.rules h5 { 
  font-size: 1rem; 
  color: var(--text); 
  margin-bottom: 14px; 
  font-weight: 700;
}

.rules li {
  font-size: 0.9rem; 
  color: var(--text-muted); 
  padding-left: 18px; 
  position: relative;
  margin-bottom: 8px;
}

.rules li::before { 
  content: '→'; 
  position: absolute; 
  left: 0; 
  color: var(--primary); 
  font-weight: 700;
}

/* ============================================================
   FORMS & USER INTERACTION (Mitmachen Page)
   ============================================================ */
.form-grid {
  display: grid; 
  grid-template-columns: 1fr 1fr; 
  gap: 40px;
}

.form-card {
  background: var(--bg-card); 
  border: 1px solid var(--border);
  border-radius: var(--radius); 
  padding: 48px;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.form-card:hover {
  box-shadow: var(--shadow-md);
}

.form-card-icon { 
  color: var(--primary); 
  margin-bottom: 20px; 
}

.form-card-icon svg { 
  width: 40px; 
  height: 40px; 
}

.form-card h3 { 
  font-family: var(--ff-head); 
  font-size: 1.6rem; 
  color: var(--text); 
  margin-bottom: 12px; 
  font-weight: 700;
}

.form-card > p { 
  font-size: 0.95rem; 
  color: var(--text-muted); 
  margin-bottom: 32px; 
}

.form-stack { 
  display: flex; 
  flex-direction: column; 
  gap: 22px; 
}

.form-field label {
  display: block; 
  font-size: 0.8rem; 
  font-weight: 700; 
  color: var(--text-muted);
  margin-bottom: 8px; 
  text-transform: uppercase; 
  letter-spacing: 0.08em;
}

.form-field input[type="text"],
.form-field input[type="email"],
.form-field input[type="tel"],
.form-field textarea {
  width: 100%; 
  padding: 14px 18px;
  background: var(--bg-warm); 
  border: 1px solid var(--border);
  border-radius: var(--radius-sm); 
  color: var(--text); 
  font-family: inherit; 
  font-size: 0.95rem;
  transition: border-color var(--dur) var(--ease), background var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none; 
  border-color: var(--primary);
  background: var(--bg-card);
  box-shadow: 0 0 0 3px rgba(158, 27, 43, 0.08);
}

.form-field textarea { 
  resize: vertical; 
  min-height: 120px; 
}

.check-group {
  display: flex; 
  align-items: flex-start; 
  gap: 12px;
  font-size: 0.88rem; 
  color: var(--text-muted);
  line-height: 1.5;
}

.check-group input { 
  margin-top: 4px; 
  accent-color: var(--primary); 
  width: 16px;
  height: 16px;
}

.form-success {
  display: none; 
  flex-direction: column; 
  align-items: center; 
  text-align: center;
  padding: 48px 24px; 
  border: 1px dashed rgba(30, 107, 63, 0.3);
  background: var(--success-bg); 
  border-radius: var(--radius);
  animation: fadeIn 0.4s var(--ease) forwards;
}

.form-success.show { 
  display: flex; 
}

.form-success svg { 
  color: var(--success); 
  width: 48px; 
  height: 48px; 
  margin-bottom: 16px; 
}

.form-success h4 { 
  font-family: var(--ff-head); 
  color: var(--success); 
  margin-bottom: 8px;
  font-size: 1.3rem; 
}

.form-success p { 
  font-size: 0.95rem; 
  color: var(--text-muted); 
}

@keyframes fadeIn { 
  from { opacity: 0; transform: translateY(10px); } 
  to { opacity: 1; transform: translateY(0); } 
}

/* Telegram Box styling */
.tg-box {
  display: flex; 
  gap: 20px; 
  align-items: flex-start;
  margin-top: 32px; 
  padding-top: 32px; 
  border-top: 1px solid var(--border);
}

.tg-icon {
  width: 48px; 
  height: 48px; 
  border-radius: 50%;
  background: rgba(0, 136, 204, 0.08); 
  border: 1px solid rgba(0, 136, 204, 0.15);
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: #0088cc; 
  flex-shrink: 0;
}

.tg-text h4 { 
  font-size: 1.05rem; 
  color: var(--text); 
  margin-bottom: 6px; 
  font-weight: 700;
}

.tg-text p { 
  font-size: 0.9rem; 
  color: var(--text-muted); 
  margin-bottom: 10px; 
}

.tg-link { 
  color: #0088cc; 
  font-weight: 700; 
  display: inline-flex; 
  align-items: center; 
  gap: 6px; 
}

.tg-link:hover { 
  color: #0077b3; 
}

/* ============================================================
   DOWNLOADS GRID
   ============================================================ */
.dl-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}

.dl-card {
  background: var(--bg-card); 
  border: 1px solid var(--border);
  border-radius: var(--radius); 
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}

.dl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.dl-preview {
  height: 200px; 
  background: var(--bg-warm);
  display: flex; 
  align-items: center; 
  justify-content: center;
  border-bottom: 1px solid var(--border);
}

.dl-mock {
  width: 110px; 
  height: 150px; 
  background: var(--bg-card);
  border: 1px solid var(--border-hi); 
  border-radius: 4px;
  padding: 12px; 
  display: flex; 
  flex-direction: column;
  justify-content: space-between; 
  font-family: var(--ff-body);
  box-shadow: 0 10px 25px rgba(29, 32, 34, 0.12);
}

.dl-mock-head { 
  font-size: 6px; 
  font-weight: 800; 
  color: var(--accent); 
  letter-spacing: 0.08em; 
  border-bottom: 1px solid var(--border); 
  padding-bottom: 4px; 
}

.dl-mock-big { 
  font-size: 20px; 
  font-weight: 800; 
  color: var(--primary); 
  text-align: center; 
  font-family: var(--ff-head); 
  font-style: italic;
}

.dl-mock-sub { 
  font-size: 5.5px; 
  color: var(--text-muted); 
  text-align: center; 
}

.dl-mock-badge { 
  font-size: 5px; 
  font-weight: 800; 
  background: var(--primary); 
  color: var(--white); 
  padding: 3px 4px; 
  border-radius: 2px; 
  text-align: center; 
  text-transform: uppercase; 
}

.dl-info { 
  padding: 28px; 
}

.dl-info h4 { 
  font-family: var(--ff-head); 
  font-size: 1.25rem; 
  color: var(--text); 
  margin-bottom: 8px; 
  font-weight: 700;
}

.dl-info p { 
  font-size: 0.9rem; 
  color: var(--text-muted); 
  margin-bottom: 20px; 
}

/* ============================================================
   TOAST SYSTEM
   ============================================================ */
.toast {
  position: fixed; 
  bottom: 32px; 
  right: 32px;
  background: var(--bg-card); 
  border: 1px solid var(--success);
  border-left: 5px solid var(--success);
  border-radius: var(--radius-sm); 
  padding: 18px 28px;
  z-index: 1000; 
  display: flex; 
  align-items: center; 
  gap: 16px;
  box-shadow: var(--shadow-lg);
  transform: translateY(150px); 
  opacity: 0;
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease);
}

.toast.show { 
  transform: translateY(0); 
  opacity: 1; 
}

.toast-icon { 
  color: var(--success); 
  flex-shrink: 0; 
}

.toast-text strong { 
  display: block; 
  font-size: 0.95rem; 
  color: var(--text); 
  margin-bottom: 2px;
}

.toast-text span { 
  font-size: 0.85rem; 
  color: var(--text-muted); 
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--bg-dark); 
  border-top: 1px solid var(--border-light);
  padding-top: 80px;
  color: var(--text-light);
}

.footer-inner {
  max-width: var(--max-w); 
  margin: 0 auto; 
  padding: 0 32px;
  display: grid; 
  grid-template-columns: 1.5fr 1fr 1fr 1fr; 
  gap: 48px;
  margin-bottom: 64px;
}

.footer-logo { 
  margin-bottom: 20px; 
}

.footer-logo .logo-name {
  color: var(--white);
}

.footer-desc { 
  font-size: 0.9rem; 
  color: var(--text-dim); 
  margin-bottom: 24px; 
  max-width: 300px; 
}

.footer-social { 
  display: flex; 
  gap: 14px; 
}

.footer-social a {
  width: 40px; 
  height: 40px; 
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04); 
  border: 1px solid var(--border-light);
  display: flex; 
  align-items: center; 
  justify-content: center;
  color: var(--text-dim);
  transition: color var(--dur) var(--ease), border-color var(--dur) var(--ease), transform var(--dur) var(--ease), background var(--dur) var(--ease);
}

.footer-social a:hover { 
  color: var(--white); 
  border-color: var(--white); 
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-3px); 
}

.footer-col h4 {
  font-family: var(--ff-head); 
  font-size: 1.05rem; 
  color: var(--white);
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col a, .footer-col p {
  display: block; 
  font-size: 0.9rem; 
  color: var(--text-dim); 
  margin-bottom: 12px;
}

.footer-col a:hover { 
  color: var(--white); 
  padding-left: 4px; 
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding: 32px 32px; 
  text-align: center;
  font-size: 0.8rem; 
  color: var(--text-dim);
}

/* ============================================================
   LEGAL MODAL
   ============================================================ */
.legal-modal {
  position: fixed; 
  inset: 0; 
  z-index: 500;
  display: flex; 
  align-items: center; 
  justify-content: center;
  opacity: 0; 
  visibility: hidden;
  transition: opacity var(--dur) var(--ease), visibility var(--dur) var(--ease);
}

.legal-modal.open { 
  opacity: 1; 
  visibility: visible; 
}

.legal-backdrop {
  position: absolute; 
  inset: 0;
  background: rgba(18, 20, 22, 0.8); 
  backdrop-filter: blur(8px);
}

.legal-panel {
  position: relative; 
  z-index: 2;
  width: 100%; 
  max-width: 640px; 
  max-height: 80vh;
  background: var(--bg-card); 
  border: 1px solid var(--border);
  border-radius: var(--radius); 
  padding: 44px;
  overflow-y: auto; 
  margin: 24px;
  box-shadow: var(--shadow-lg);
}

.legal-close {
  position: absolute; 
  top: 20px; 
  right: 20px;
  color: var(--text-muted); 
  transition: color var(--dur) var(--ease);
}

.legal-close:hover { 
  color: var(--text); 
}

.legal-panel h3 { 
  font-family: var(--ff-head); 
  font-size: 1.6rem; 
  color: var(--text); 
  margin-bottom: 24px; 
  font-weight: 700;
}

.legal-panel h4 { 
  font-family: var(--ff-head); 
  font-size: 1.25rem; 
  color: var(--text); 
  margin-top: 24px; 
  margin-bottom: 10px; 
  font-weight: 700;
}

.legal-panel p { 
  font-size: 0.95rem; 
  color: var(--text-muted); 
  margin-bottom: 16px; 
}

/* ============================================================
   PAGE HEADER (Sub-pages)
   ============================================================ */
.page-header {
  position: relative; 
  padding: 180px 0 90px; 
  overflow: hidden;
}

.page-header-bg {
  position: absolute; 
  inset: 0; 
  z-index: 0;
}

.page-header-bg img {
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  filter: brightness(0.32) contrast(1.05);
}

.page-header-bg::after {
  content: ''; 
  position: absolute; 
  inset: 0;
  background: linear-gradient(180deg, rgba(18, 20, 22, 0.4) 0%, var(--bg) 100%);
}

.page-header .container { 
  position: relative; 
  z-index: 2; 
}

.page-header h1 {
  font-family: var(--ff-head); 
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: var(--white); 
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.page-header p { 
  font-size: 1.25rem; 
  color: var(--text-light); 
  max-width: 580px; 
  opacity: 0.9;
}

/* ============================================================
   ADDITIONAL AUTHENTIC SECTIONS
   ============================================================ */

/* News list styling (Startseite news) */
.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.news-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  display: flex;
  flex-direction: column;
}
.news-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.news-img {
  height: 180px;
  background: var(--bg-warm);
  overflow: hidden;
  position: relative;
}
.news-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur) var(--ease);
}
.news-card:hover .news-img img {
  transform: scale(1.04);
}
.news-content {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.news-meta {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.news-meta span.date {
  color: var(--text-dim);
}
.news-content h3 {
  font-family: var(--ff-head);
  font-size: 1.3rem;
  color: var(--text);
  margin-bottom: 12px;
  line-height: 1.3;
}
.news-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 16px;
  flex-grow: 1;
}
.news-link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.news-link:hover {
  color: var(--primary-hover);
}

/* FAQ Accordion (For Ablauf and Forderungen pages) */
.faq-list {
  max-width: 760px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
}
.faq-item:hover {
  border-color: var(--border-hi);
}
.faq-trigger {
  width: 100%;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: left;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text);
}
.faq-icon-toggle {
  transition: transform var(--dur) var(--ease);
  color: var(--primary);
}
.faq-item.active {
  border-color: var(--primary);
  box-shadow: var(--shadow-sm);
}
.faq-item.active .faq-icon-toggle {
  transform: rotate(180deg);
}
.faq-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--dur) var(--ease);
}
.faq-content {
  padding: 0 24px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
  border-top: 1px solid transparent;
}
.faq-item.active .faq-content {
  border-top-color: var(--border);
}

/* Core Team Section */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  margin-top: 48px;
}
.team-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.team-card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--primary-bg);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.team-card h4 {
  font-family: var(--ff-head);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 6px;
  font-weight: 700;
}
.team-card span.role {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 16px;
}
.team-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Need list (mitmachen page) */
.need-list {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  margin-top: 48px;
}
.need-list h3 {
  font-family: var(--ff-head);
  font-size: 1.5rem;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.need-items {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}
.need-item {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--bg-warm);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border);
}
.need-item-status {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.need-item-status.urgent {
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(158, 27, 43, 0.15);
}
.need-item-status.filled {
  background: var(--success);
}
.need-item-text {
  font-size: 0.9rem;
  font-weight: 600;
}
.need-item-text span {
  display: block;
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ============================================================
   RESPONSIVE MEDIA QUERIES
   ============================================================ */
@media (max-width: 1024px) {
  .announce-card { 
    grid-template-columns: 1fr; 
  }
  .announce-right { 
    border-left: none; 
    border-top: 1px solid var(--border); 
    padding: 48px;
  }
  .timeline-grid { 
    grid-template-columns: 1fr; 
    gap: 48px;
  }
  .footer-inner { 
    grid-template-columns: 1fr 1fr; 
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .container { padding: 0 16px; }
  .section { padding: 80px 0; }
  .site-header {
    background: rgba(250, 248, 245, 0.95);
  }
  .site-nav { 
    display: none; 
  }
  .burger { 
    display: flex; 
  }
  .header-right .cta-btn { 
    display: none; 
  }
  .hero { 
    min-height: 90vh; 
    padding: 120px 0 64px; 
  }
  .hero-content { 
    margin-left: 0; 
    padding: 0 16px;
  }
  .hero-stats { 
    gap: 24px; 
    flex-wrap: wrap; 
  }
  .values-grid { 
    grid-template-columns: 1fr; 
  }
  .form-grid { 
    grid-template-columns: 1fr; 
  }
  .dl-grid { 
    grid-template-columns: 1fr; 
  }
  .footer-inner { 
    grid-template-columns: 1fr; 
    gap: 32px; 
    text-align: center;
  }
  .footer-social {
    justify-content: center;
  }
  .img-banner { 
    height: 340px; 
  }
  .faq-list {
    padding: 0 16px;
  }
  .need-list {
    padding: 24px 16px;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2rem;
  }
  .hero h1 { 
    font-size: 2.2rem; 
  }
  .hero-stats {
    gap: 16px;
    flex-direction: column;
  }
  .hero-stat-val {
    font-size: 1.8rem;
  }
  .announce-left {
    padding: 24px 16px;
  }
  .announce-right {
    padding: 24px 16px;
  }
  .announce-btns {
    flex-direction: column;
    width: 100%;
  }
  .announce-btns .btn {
    width: 100%;
    justify-content: center;
  }
  .countdown { 
    gap: 8px; 
    justify-content: center;
  }
  .cd-box { 
    min-width: 60px; 
    padding: 10px 6px; 
  }
  .cd-val { 
    font-size: 1.5rem; 
  }
  .form-card {
    padding: 24px 16px;
  }
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }
  .hero-actions .btn-hero {
    width: 100%;
    justify-content: center;
  }
  .bring-grid, .ways-grid {
    grid-template-columns: 1fr;
  }
  .news-content {
    padding: 20px 16px;
  }
  .legal-panel {
    padding: 24px 16px;
    margin: 16px;
    max-height: 85vh;
  }
}

/* ============================================================
   SCROLL ANIMATIONS (Intersection Observer Targets)
   ============================================================ */
.anim-target {
  opacity: 0; 
  transform: translateY(24px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.anim-target.in-view {
  opacity: 1; 
  transform: translateY(0);
}

.anim-target:nth-child(2) { transition-delay: 0.08s; }
.anim-target:nth-child(3) { transition-delay: 0.16s; }
.anim-target:nth-child(4) { transition-delay: 0.24s; }
.anim-target:nth-child(5) { transition-delay: 0.32s; }
.anim-target:nth-child(6) { transition-delay: 0.40s; }

/* ============================================================
   BRING ITEMS & TIMELINE DECORATIONS
   ============================================================ */
.bring-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.bring-item {
  background: var(--bg-card); 
  border: 1px solid var(--border);
  border-radius: var(--radius); 
  padding: 32px 24px;
  display: flex; 
  flex-direction: column; 
  align-items: center; 
  text-align: center;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: var(--shadow-sm);
}

.bring-item:hover { 
  transform: translateY(-4px); 
  border-color: var(--border-hi); 
  box-shadow: var(--shadow-md);
}

.bring-item-icon {
  color: var(--accent); 
  margin-bottom: 16px;
}

.bring-item h4 { 
  font-family: var(--ff-head); 
  font-size: 1.15rem; 
  color: var(--text); 
  margin-bottom: 8px; 
  font-weight: 700;
}

.bring-item p { 
  font-size: 0.85rem; 
  color: var(--text-muted); 
}

.ways-grid {
  display: grid; 
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.way-card {
  background: var(--bg-card); 
  border: 1px solid var(--border);
  border-radius: var(--radius); 
  padding: 36px;
  transition: transform var(--dur) var(--ease), border-color var(--dur) var(--ease), box-shadow var(--dur) var(--ease);
  box-shadow: var(--shadow-sm);
}

.way-card:hover { 
  transform: translateY(-4px); 
  border-color: var(--border-hi); 
  box-shadow: var(--shadow-md);
}

.way-card h4 { 
  font-family: var(--ff-head); 
  font-size: 1.25rem; 
  color: var(--text); 
  margin-bottom: 10px; 
  font-weight: 700;
}

.way-card p { 
  font-size: 0.92rem; 
  color: var(--text-muted); 
}

.way-icon { 
  color: var(--primary); 
  margin-bottom: 16px; 
}
