/*
Theme Name: Cologne Bestplace
Theme URI: https://colognebestplace.de
Description: Conversion-orientierte Kooperations- und Visitenkarten-Website für Cologne Bestplace – Kölns digitales Stadtmagazin. Design-System mit Peach/Navy Farbpalette, Syne + Outfit Fonts.
Author: Cologne Bestplace
Author URI: https://colognebestplace.de
Version: 3.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cologne-bestplace
Tags: custom-colors, custom-menu, featured-images, full-width-template, one-column, two-columns
*/

/* ============================================================
   0. CSS CUSTOM PROPERTIES (Design System)
   ============================================================ */
:root {
  --peach:      #F07A52;
  --peach-mid:  #F4A07E;
  --peach-soft: #FAD5C4;
  --peach-pale: #FEF0E9;
  --cream:      #FDF8F4;
  --cream-warm: #FAF3EC;
  --navy:       #162055;
  --navy-mid:   #1E2E72;
  --white:      #FFFFFF;
  --text:       #160F0A;
  --text-soft:  #7A6458;
  --border:     #F5DDD1;

  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-pill: 100px;

  --shadow-sm:  0 2px 8px rgba(22,32,85,.08);
  --shadow-md:  0 4px 20px rgba(22,32,85,.12);
  --shadow-lg:  0 8px 40px rgba(22,32,85,.16);

  --transition: .2s ease;
  --nav-h: 60px;
  --max-w: 1160px;
  --gap:   clamp(24px, 4vw, 48px);
}

/* ============================================================
   1. RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  outline: none;
  border: none;
  background: none;
}

button { cursor: pointer; }

/* ============================================================
   2. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Syne', sans-serif;
  color: var(--navy);
  line-height: 1.15;
  font-weight: 700;
}

h1 { font-size: clamp(36px, 5vw, 72px); }
h2 { font-size: clamp(28px, 3.5vw, 52px); }
h3 { font-size: clamp(20px, 2.5vw, 32px); }
h4 { font-size: clamp(16px, 2vw, 22px); }

p { color: var(--text-soft); line-height: 1.7; }

em { font-style: normal; color: var(--peach); }

.label {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--peach);
}

/* ============================================================
   3. LAYOUT UTILITIES
   ============================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

.section {
  padding: clamp(60px, 8vw, 120px) 0;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; gap: 12px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ============================================================
   4. SCROLL PROGRESS BAR
   ============================================================ */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--peach), var(--peach-mid));
  width: 0%;
  z-index: 9999;
  pointer-events: none;
  transition: width .1s linear;
}

/* ============================================================
   5. NAVIGATION
   ============================================================ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-h);
  background: rgba(253,248,244,.93);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 clamp(20px, 5vw, 60px);
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 36px;
  height: 36px;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.logo-icon svg { width: 16px; height: 16px; }

.logo-text { display: flex; flex-direction: column; line-height: 1.1; }

.logo-cologne {
  font-family: 'Syne', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--navy);
}

.logo-bestplace {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 400;
  color: var(--peach);
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.nav-links a {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--text);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  transition: color var(--transition);
}

.nav-links a:hover { color: var(--peach); }

.nav-pill {
  background: var(--peach);
  color: var(--white) !important;
  border-radius: var(--radius-pill);
  padding: 8px 18px !important;
  transition: background var(--transition) !important;
}

.nav-pill:hover { background: var(--navy) !important; color: var(--white) !important; }

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}

.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: all .3s ease;
}

.nav-burger.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* Mobile Drawer */
.nav-drawer {
  position: fixed;
  top: var(--nav-h);
  left: 0;
  right: 0;
  background: rgba(253,248,244,.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 999;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  display: none;
}

.nav-drawer.open { display: block; }

.nav-drawer a {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  padding: 14px clamp(20px, 5vw, 60px);
  border-bottom: 1px solid var(--border);
  transition: color var(--transition), background var(--transition);
}

.nav-drawer a:hover { color: var(--peach); background: var(--peach-pale); }

.nav-drawer .drawer-cta {
  display: block;
  margin: 16px clamp(20px, 5vw, 60px) 0;
  background: var(--peach);
  color: var(--white) !important;
  text-align: center;
  padding: 14px 20px !important;
  border-radius: var(--radius-pill);
  border-bottom: none !important;
}

.nav-drawer .drawer-cta:hover { background: var(--navy) !important; }

@media (max-width: 860px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
}

/* ============================================================
   6. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
  cursor: pointer;
  white-space: nowrap;
}

.btn-primary {
  background: var(--peach);
  color: var(--white);
  border: 2px solid var(--peach);
}
.btn-primary:hover { background: var(--navy); border-color: var(--navy); }

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn-ghost:hover { border-color: var(--peach); color: var(--peach); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border: 2px solid var(--navy);
}
.btn-navy:hover { background: var(--navy-mid); border-color: var(--navy-mid); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero {
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: clamp(60px, 8vw, 120px);
  background: var(--cream);
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--peach-pale);
  color: var(--peach);
  border: 1px solid var(--peach-soft);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
  margin-bottom: 24px;
}

.hero-tag::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--peach);
  border-radius: 50%;
}

.hero h1 { margin-bottom: 20px; }

.hero p.lead {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-soft);
  margin-bottom: 36px;
  max-width: 480px;
}

.hero-visual {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--peach-pale) 0%, var(--peach-soft) 100%);
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-visual-inner {
  text-align: center;
  padding: 40px;
}

.hero-visual-badge {
  width: 80px;
  height: 80px;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-lg);
}

.hero-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}

.hero-stat {
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  box-shadow: var(--shadow-sm);
}

.hero-stat-num {
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--navy);
}

.hero-stat-label {
  font-size: 11px;
  color: var(--text-soft);
  font-weight: 500;
}

@media (max-width: 860px) {
  .hero { padding-top: calc(var(--nav-h) + 40px); }
  .hero-visual { min-height: 260px; }
}

/* ============================================================
   8. BAND / INTRO STRIP
   ============================================================ */
.band {
  background: var(--navy);
  padding: 20px 0;
  overflow: hidden;
}

.band-inner {
  display: flex;
  align-items: center;
  gap: 40px;
  white-space: nowrap;
}

.band-text {
  font-family: 'Syne', sans-serif;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 700;
  color: var(--white);
  flex-shrink: 0;
}

.band-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--peach);
  flex-shrink: 0;
}

/* ============================================================
   9. SECTION: WARUM KÖLN / FÜR WEN
   ============================================================ */
.why-section { background: var(--cream-warm); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(40px, 6vw, 72px);
}

.section-header .label { margin-bottom: 12px; display: block; }
.section-header h2 { margin-bottom: 16px; }
.section-header p { font-size: 17px; }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 40px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition), transform var(--transition);
}

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

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--peach-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  color: var(--peach);
  font-size: 22px;
}

.card h4 { margin-bottom: 8px; }
.card p { font-size: 15px; }

/* ============================================================
   10. PROCESS (3 SCHRITTE)
   ============================================================ */
.process-section { background: var(--cream); }

.process-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
  position: relative;
}

.process-step {
  text-align: center;
  position: relative;
}

.step-number {
  width: 56px;
  height: 56px;
  background: var(--peach);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}

.step-connector {
  position: absolute;
  top: 28px;
  left: 50%;
  right: -50%;
  height: 2px;
  background: var(--border);
  z-index: 0;
}

.process-step:last-child .step-connector { display: none; }

@media (max-width: 860px) {
  .process-steps { grid-template-columns: 1fr; }
  .step-connector { display: none; }
}

/* ============================================================
   11. PARTNER / REFERENZEN
   ============================================================ */
.partners-section { background: var(--cream-warm); }

.partners-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.partner-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 20px;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-soft);
  transition: all var(--transition);
}

.partner-item:hover {
  border-color: var(--peach-mid);
  color: var(--peach);
  background: var(--peach-pale);
}

/* ============================================================
   12. TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--navy);
  padding: clamp(60px, 8vw, 120px) 0;
}

.testimonials-section .section-header h2 { color: var(--white); }
.testimonials-section .section-header p { color: rgba(255,255,255,.6); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.testimonial-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-lg);
  padding: clamp(24px, 3vw, 36px);
}

.testimonial-quote {
  font-size: 36px;
  color: var(--peach);
  font-family: 'Syne', sans-serif;
  line-height: 1;
  margin-bottom: 12px;
}

.testimonial-text {
  color: rgba(255,255,255,.85);
  font-size: 15px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  background: var(--peach);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: 'Syne', sans-serif;
  font-weight: 700;
  font-size: 16px;
}

.testimonial-name {
  font-family: 'Syne', sans-serif;
  font-weight: 600;
  color: var(--white);
  font-size: 14px;
}

.testimonial-role {
  font-size: 12px;
  color: rgba(255,255,255,.5);
}

@media (max-width: 860px) {
  .testimonials-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   13. KOOPERATIONSPAKETE
   ============================================================ */
.packages-section { background: var(--cream); }

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.package-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  position: relative;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}

.package-card:hover { border-color: var(--peach-mid); box-shadow: var(--shadow-md); }

.package-card.featured {
  border-color: var(--peach);
  box-shadow: var(--shadow-md);
  transform: translateY(-8px);
}

.package-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--peach);
  color: var(--white);
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 700;
  padding: 4px 16px;
  border-radius: var(--radius-pill);
  white-space: nowrap;
}

.package-name {
  font-family: 'Syne', sans-serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 20px;
}

.package-features {
  flex: 1;
  margin-bottom: 28px;
}

.package-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-soft);
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
}

.package-features li:last-child { border-bottom: none; }

.package-features li::before {
  content: '✓';
  color: var(--peach);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

@media (max-width: 860px) {
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { transform: none; }
}

/* ============================================================
   14. NEWSLETTER
   ============================================================ */
.newsletter-section { background: var(--peach-pale); }

.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  align-items: center;
}

.newsletter-form-wrap { }

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-bottom: 12px;
}

.newsletter-input {
  flex: 1;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 14px 22px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: border-color var(--transition);
}

.newsletter-input:focus { border-color: var(--peach); }
.newsletter-input::placeholder { color: var(--text-soft); }

.newsletter-msg {
  display: none;
  background: var(--navy);
  color: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  margin-top: 12px;
}

.newsletter-note {
  font-size: 12px;
  color: var(--text-soft);
  margin-top: 8px;
}

.newsletter-note a { color: var(--peach); text-decoration: underline; }

.mediakit-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.mediakit-icon {
  width: 56px;
  height: 56px;
  background: var(--peach-pale);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .newsletter-inner { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
}

/* ============================================================
   15. FAQ
   ============================================================ */
.faq-section { background: var(--cream-warm); }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
  transition: box-shadow var(--transition);
}

.faq-item.open { box-shadow: var(--shadow-sm); }

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  font-size: clamp(14px, 2vw, 17px);
  font-weight: 600;
  color: var(--navy);
  gap: 16px;
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--peach-pale);
  color: var(--peach);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
  font-size: 18px;
  line-height: 1;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
  background: var(--peach);
  color: var(--white);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  padding: 0 24px;
}

.faq-item.open .faq-answer {
  max-height: 600px;
  padding: 0 24px 24px;
}

.faq-answer p { font-size: 15px; line-height: 1.75; }
.faq-answer a { color: var(--peach); text-decoration: underline; }

/* ============================================================
   16. CTA BLOCK (Navy)
   ============================================================ */
.cta-block {
  background: var(--navy);
  padding: clamp(60px, 8vw, 100px) 0;
  text-align: center;
}

.cta-block h2 { color: var(--white); margin-bottom: 16px; }
.cta-block p { color: rgba(255,255,255,.7); font-size: 17px; margin-bottom: 36px; }

/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
  background: var(--navy-mid);
  padding: 48px 0 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
  margin-bottom: 40px;
}

.footer-brand p {
  color: rgba(255,255,255,.6);
  font-size: 14px;
  margin-top: 12px;
  max-width: 300px;
}

.footer-links h5 {
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 16px;
}

.footer-links a {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  padding: 4px 0;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--peach); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  color: rgba(255,255,255,.4);
  font-size: 13px;
}

.footer-bottom a { color: rgba(255,255,255,.4); }
.footer-bottom a:hover { color: var(--peach); }

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

@media (max-width: 860px) {
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================================
   18. KOOPERATIONEN PAGE
   ============================================================ */
.page-hero {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: clamp(40px, 6vw, 80px);
  background: var(--cream);
  text-align: center;
}

.page-hero .label { margin-bottom: 12px; display: block; }
.page-hero h1 { margin-bottom: 16px; }
.page-hero p { font-size: 17px; max-width: 600px; margin: 0 auto; }

.koop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.koop-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: all var(--transition);
}

.koop-card:hover {
  border-color: var(--peach-mid);
  background: var(--peach-pale);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.koop-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.koop-card h4 { font-size: 16px; margin-bottom: 8px; }
.koop-card p { font-size: 13px; }

.format-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.format-tag {
  background: var(--peach-pale);
  color: var(--peach);
  border: 1px solid var(--peach-soft);
  border-radius: var(--radius-pill);
  padding: 6px 16px;
  font-size: 13px;
  font-weight: 600;
  font-family: 'Outfit', sans-serif;
}

.cases-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.case-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}

.case-image {
  height: 180px;
  background: linear-gradient(135deg, var(--peach-pale), var(--peach-soft));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
}

.case-content { padding: 24px; }
.case-content h4 { margin-bottom: 8px; }
.case-content p { font-size: 14px; }

@media (max-width: 860px) {
  .koop-grid { grid-template-columns: repeat(2, 1fr); }
  .cases-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .koop-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   19. STADTFÜHRER PAGE
   ============================================================ */
.tab-switcher {
  display: flex;
  gap: 8px;
  background: var(--cream-warm);
  padding: 6px;
  border-radius: var(--radius-pill);
  width: fit-content;
  margin: 0 auto clamp(32px, 5vw, 56px);
}

.tab-btn {
  padding: 10px 28px;
  border-radius: var(--radius-pill);
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-soft);
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  background: none;
}

.tab-btn.active {
  background: var(--white);
  color: var(--navy);
  box-shadow: var(--shadow-sm);
}

.tab-content { display: none; }
.tab-content.active { display: block; }

.place-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.place-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: all var(--transition);
}

.place-card:hover {
  border-color: var(--peach-mid);
  box-shadow: var(--shadow-sm);
  transform: translateX(4px);
}

.place-rank {
  font-family: 'Syne', sans-serif;
  font-size: 28px;
  font-weight: 800;
  color: var(--peach-soft);
  line-height: 1;
  flex-shrink: 0;
  width: 32px;
}

.place-info h4 { font-size: 16px; margin-bottom: 4px; }

.place-meta {
  font-size: 13px;
  color: var(--text-soft);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.place-meta span { display: flex; align-items: center; gap: 4px; }

.place-maps {
  margin-left: auto;
  font-size: 13px;
  color: var(--peach);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}

@media (max-width: 860px) {
  .place-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   20. TEAM PAGE
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.team-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 16px;
  text-align: center;
  transition: all var(--transition);
}

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

.team-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--peach-pale), var(--peach-soft));
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Syne', sans-serif;
  font-size: 24px;
  font-weight: 800;
  color: var(--peach);
  border: 3px solid var(--peach-soft);
}

.team-name {
  font-family: 'Syne', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}

.team-role {
  font-size: 13px;
  color: var(--text-soft);
  line-height: 1.4;
}

@media (max-width: 1060px) {
  .team-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .team-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   21. KONTAKT PAGE
   ============================================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: var(--gap);
  align-items: start;
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.contact-sticky { position: sticky; top: calc(var(--nav-h) + 24px); }

.contact-info-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
}

.contact-info-card h3 { margin-bottom: 20px; }

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
  font-size: 14px;
  color: var(--text-soft);
}

.contact-info-item span:first-child {
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 1px;
}

.contact-info-item a { color: var(--peach); }

.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.form-input, .form-textarea {
  width: 100%;
  background: var(--cream);
  border: 2px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  color: var(--text);
  transition: border-color var(--transition);
}

.form-input:focus, .form-textarea:focus { border-color: var(--peach); }
.form-input::placeholder, .form-textarea::placeholder { color: var(--text-soft); }
.form-textarea { resize: vertical; min-height: 120px; }

/* Configurator */
.configurator-divider {
  border: none;
  border-top: 2px solid var(--border);
  margin: 32px 0 24px;
}

.configurator-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--cream-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 4px 14px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text-soft);
  margin-bottom: 24px;
}

.config-block { margin-bottom: 28px; }

.config-block-title {
  font-family: 'Syne', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 12px;
}

.chips-wrap { display: flex; flex-wrap: wrap; gap: 8px; }

.chip {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-soft);
  cursor: pointer;
  transition: all var(--transition);
  user-select: none;
}

.chip:hover {
  background: var(--peach-pale);
  border-color: var(--peach-mid);
  color: var(--text);
}

.chip.active {
  background: var(--peach);
  border-color: var(--peach);
  color: var(--white);
}

.budget-note {
  background: var(--peach-pale);
  border: 1px solid var(--peach-soft);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 13px;
  color: var(--text-soft);
  margin-top: 8px;
}

.captcha-group { display: flex; align-items: center; gap: 12px; }

.captcha-question {
  background: var(--cream-warm);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
}

.success-msg {
  display: none;
  background: var(--navy);
  color: var(--white);
  padding: 20px 24px;
  border-radius: var(--radius-md);
  font-size: 15px;
  margin-top: 16px;
  text-align: center;
}

@media (max-width: 860px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-sticky { position: static; }
  .form-row { grid-template-columns: 1fr; }
}

/* ============================================================
   22. LEGAL PAGES (Impressum, Datenschutz)
   ============================================================ */
.legal-page {
  padding-top: calc(var(--nav-h) + 60px);
  padding-bottom: clamp(60px, 8vw, 100px);
}

.legal-content {
  max-width: 760px;
  margin: 0 auto;
}

.legal-content h1 { margin-bottom: 8px; }
.legal-date {
  font-size: 14px;
  color: var(--text-soft);
  margin-bottom: 48px;
}

.legal-content h2 {
  font-size: 20px;
  margin-top: 40px;
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--border);
}

.legal-content h3 { font-size: 17px; margin-top: 24px; margin-bottom: 8px; }
.legal-content p { font-size: 15px; margin-bottom: 12px; }
.legal-content a { color: var(--peach); text-decoration: underline; }
.legal-content address { font-style: normal; }

/* ============================================================
   23. UTILITY CLASSES
   ============================================================ */
.text-center { text-align: center; }
.text-white { color: var(--white); }
.text-navy { color: var(--navy); }
.text-peach { color: var(--peach); }

.bg-navy { background: var(--navy); }
.bg-cream { background: var(--cream); }
.bg-cream-warm { background: var(--cream-warm); }

.mt-4 { margin-top: 16px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -40px;
  left: 0;
  background: var(--peach);
  color: var(--white);
  padding: 8px 16px;
  z-index: 99999;
  border-radius: 0 0 var(--radius-sm) 0;
  font-size: 14px;
}

.skip-link:focus { top: 0; }

/* ============================================================
   24. PRINT
   ============================================================ */
@media print {
  .site-nav, .nav-drawer, #scroll-progress, .cta-block { display: none; }
  body { color: #000; background: #fff; }
}


/* ===== LOGO IMAGE (real photo) ===== */
.logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.site-footer .logo-img {
  height: 60px;
  width: auto;
  filter: invert(1);
  mix-blend-mode: screen;
}
