/* ═══════════════════════════════════════════
   KRISCH CORPORATE HEALTH — Custom Styles
   ═══════════════════════════════════════════ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #1B4332;
  --secondary: #E8DCC8;
  --accent: #E07A3A;
  --dark: #1A1A2E;
  --light: #FAF9F6;
  --accent-hover: #c96a2e;
  --primary-light: #2D6A4F;
  --shadow-sm: 0 2px 8px rgba(27,67,50,0.08);
  --shadow-md: 0 8px 24px rgba(27,67,50,0.12);
  --shadow-lg: 0 16px 48px rgba(27,67,50,0.16);
  --radius: 12px;
  --radius-lg: 20px;
}

/* ---------- Base ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }

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

body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--dark);
  background: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'DM Serif Display', serif;
  color: var(--primary);
  line-height: 1.2;
  font-weight: 400;
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }

p { margin-bottom: 1rem; }

a {
  color: var(--primary);
  text-decoration: none;
  transition: color 0.3s;
}
a:hover { color: var(--accent); }

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

/* ---------- Container ---------- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ---------- Navigation ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.transparent {
  background: transparent;
}

.navbar.solid {
  background: rgba(250, 249, 246, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 20px rgba(27,67,50,0.08);
  padding: 0.6rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 40px;
  width: auto;
  transition: height 0.3s;
}

.navbar.solid .nav-logo img {
  height: 36px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding: 0.3rem 0;
}

.navbar.transparent .nav-links a {
  color: #fff;
}

.navbar.solid .nav-links a {
  color: var(--dark);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}

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

.nav-cta {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0.55rem 1.4rem !important;
  border-radius: 8px;
  font-weight: 600 !important;
  transition: all 0.3s !important;
}

.nav-cta:hover {
  background: var(--accent-hover) !important;
  transform: translateY(-1px);
}

.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 26px;
  height: 2.5px;
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar.transparent .hamburger span { background: #fff; }
.navbar.solid .hamburger span { background: var(--dark); }

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .hamburger { display: flex; }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 360px;
    height: 100vh;
    background: var(--light);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 30px rgba(0,0,0,0.15);
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--dark) !important;
    font-size: 1.15rem;
  }

  .mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
  }

  .mobile-overlay.active {
    opacity: 1;
    pointer-events: all;
  }
}

/* ---------- Hero Sections ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(27,67,50,0.75) 0%, rgba(27,67,50,0.55) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  color: #fff;
  padding-top: 6rem;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1.2rem;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
}

.hero-content p {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  opacity: 0.92;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Page header (smaller hero for subpages) */
.page-header {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
}

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

.page-header .hero-overlay {
  background: linear-gradient(to top, rgba(27,67,50,0.85) 0%, rgba(27,67,50,0.4) 100%);
}

.page-header .hero-content {
  padding-top: 0;
  padding-bottom: 2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.02em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover {
  background: var(--accent-hover);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(224,122,58,0.35);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.4);
}
.btn-secondary:hover {
  border-color: #fff;
  color: #fff;
  background: rgba(255,255,255,0.1);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover {
  background: var(--primary);
  color: #fff;
}

/* ---------- Sections ---------- */
section {
  padding: 5rem 0;
}

.section-sand {
  background: var(--secondary);
}

.section-dark {
  background: var(--primary);
  color: #fff;
}

.section-dark h2, .section-dark h3 {
  color: #fff;
}

.section-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #555;
  max-width: 620px;
  line-height: 1.8;
}

.section-subtitle.centered {
  margin: 0 auto;
  text-align: center;
}

/* ---------- Cards ---------- */
.card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-sm);
}

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

.card-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.card-body {
  padding: 1.8rem;
}

.card-body h3 {
  margin-bottom: 0.6rem;
}

.card-body p {
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
  margin-top: 1rem;
}

.card-link:hover { gap: 0.7rem; }

/* ---------- Grid ---------- */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

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

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

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

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

/* ---------- USP Kacheln ---------- */
.usp-card {
  text-align: center;
  padding: 2.5rem 2rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
}

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

.usp-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--secondary), #f5efe6);
}

.usp-icon svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
}

.usp-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.3rem;
}

.usp-card p {
  color: #666;
  font-size: 0.92rem;
}

/* ---------- Pricing ---------- */
.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s;
  border: 2px solid transparent;
}

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

.pricing-card.featured {
  border-color: var(--accent);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
}

.pricing-card.featured:hover {
  transform: scale(1.03) translateY(-4px);
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent);
  color: #fff;
  padding: 0.3rem 1.2rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
}

.pricing-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary);
  margin-bottom: 0.3rem;
}

.pricing-duration {
  color: #888;
  font-size: 0.9rem;
  margin-bottom: 1.2rem;
}

.pricing-price {
  font-family: 'DM Serif Display', serif;
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 0.2rem;
}

.pricing-price span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: #888;
}

.pricing-desc {
  color: #666;
  font-size: 0.92rem;
  margin: 1rem 0 1.5rem;
  min-height: 3rem;
}

.pricing-note {
  font-size: 0.82rem;
  color: #999;
  margin-top: 1rem;
}

/* ---------- Timeline ---------- */
.timeline {
  position: relative;
  padding: 2rem 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--secondary);
  transform: translateX(-50%);
}

.timeline-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 3rem;
  position: relative;
}

.timeline-item:nth-child(odd) {
  flex-direction: row-reverse;
  text-align: right;
}

.timeline-content {
  width: 45%;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--accent);
  border-radius: 50%;
  position: absolute;
  left: 50%;
  top: 1.5rem;
  transform: translateX(-50%);
  z-index: 2;
  border: 3px solid var(--light);
}

/* Horizontal timeline for process */
.process-timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: 2rem 0;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: var(--secondary);
}

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

.process-dot {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
  position: relative;
  z-index: 2;
}

.process-step h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  .timeline::before { left: 24px; }
  .timeline-item, .timeline-item:nth-child(odd) {
    flex-direction: column;
    text-align: left;
    padding-left: 52px;
  }
  .timeline-content { width: 100%; }
  .timeline-dot { left: 24px; }
  .process-timeline { flex-direction: column; gap: 1.5rem; }
  .process-timeline::before { display: none; }
}

/* ---------- Feature Blocks (alternating) ---------- */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 4rem;
}

.feature-block.reverse {
  direction: rtl;
}

.feature-block.reverse > * {
  direction: ltr;
}

.feature-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.feature-text .section-label {
  margin-bottom: 0.5rem;
}

.feature-price {
  font-family: 'DM Serif Display', serif;
  font-size: 2rem;
  color: var(--primary);
  margin: 1rem 0 0.3rem;
}

.feature-price span {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  color: #888;
}

.feature-bonus {
  background: linear-gradient(135deg, #f0ebe3, var(--secondary));
  padding: 1rem 1.2rem;
  border-radius: 8px;
  font-size: 0.9rem;
  margin: 1rem 0;
  border-left: 3px solid var(--accent);
}

@media (max-width: 768px) {
  .feature-block, .feature-block.reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
    direction: ltr;
  }
}

/* ---------- Stats / Counter ---------- */
.stats {
  display: flex;
  justify-content: center;
  gap: 4rem;
  flex-wrap: wrap;
}

.stat {
  text-align: center;
}

.stat-number {
  font-family: 'DM Serif Display', serif;
  font-size: 3.5rem;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 0.3rem;
}

.stat-label {
  font-size: 0.95rem;
  color: #666;
  font-weight: 500;
}

/* ---------- Branchen Section ---------- */
.branchen-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.branche-card {
  text-align: center;
  padding: 2rem 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

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

.branche-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  color: var(--primary);
}

.branche-card h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

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

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: var(--primary);
  padding: 4rem 0;
  text-align: center;
}

.cta-banner h2 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ---------- Contact Form ---------- */
.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 2px solid #e5e5e5;
  border-radius: 8px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.95rem;
  transition: border-color 0.3s;
  background: #fff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 1.2rem 0;
}

.form-check input {
  margin-top: 0.25rem;
  accent-color: var(--primary);
}

.form-check label {
  font-size: 0.85rem;
  color: #666;
}

/* ---------- Footer ---------- */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin-top: 1rem;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer h4 {
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1.2rem;
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.6rem;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.9rem;
  transition: color 0.3s;
}

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

.footer-social {
  display: flex;
  gap: 1rem;
  margin-top: 1rem;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  transition: all 0.3s;
}

.footer-social a:hover {
  background: var(--accent);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
}

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

/* ---------- Scroll Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger children */
.stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.stagger.visible > *:nth-child(2) { transition-delay: 0.1s; }
.stagger.visible > *:nth-child(3) { transition-delay: 0.2s; }
.stagger.visible > *:nth-child(4) { transition-delay: 0.3s; }

.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Placeholder Images (SVG-based) ---------- */
.img-placeholder {
  width: 100%;
  background: linear-gradient(135deg, var(--secondary) 0%, #d4c8b0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 0.85rem;
  font-weight: 500;
  position: relative;
  overflow: hidden;
}

.img-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.2) 100%);
}

/* ---------- Feature Grid (App page) ---------- */
.feature-grid-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.5rem;
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s;
}

.feature-grid-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.feature-grid-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--secondary), #f0ebe3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

.feature-grid-item h4 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.feature-grid-item p {
  font-size: 0.88rem;
  color: #666;
  margin: 0;
}

/* ---------- About Page ---------- */
.about-story {
  font-size: 1.1rem;
  line-height: 1.9;
  color: #444;
}

.about-story p {
  margin-bottom: 1.5rem;
}

.get-shaped-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.2rem;
  background: var(--secondary);
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

/* ---------- Legal pages ---------- */
.legal-content {
  padding: 8rem 0 4rem;
}

.legal-content h1 {
  margin-bottom: 2rem;
}

.legal-content h2 {
  font-size: 1.4rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
}

.legal-content p, .legal-content li {
  color: #555;
  line-height: 1.8;
}

.legal-content ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

/* ---------- Cookie Banner ---------- */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: rgba(255,255,255,0.85);
  padding: 1.2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

.cookie-banner.visible {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  font-size: 0.88rem;
}

.cookie-banner a { color: var(--accent); }

.cookie-buttons {
  display: flex;
  gap: 0.8rem;
  flex-shrink: 0;
}

.cookie-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.3s;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-decline {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

@media (max-width: 640px) {
  .cookie-banner { flex-direction: column; text-align: center; }
}

/* ---------- Highlight Box ---------- */
.highlight-box {
  background: linear-gradient(135deg, #f5f0e8, var(--secondary));
  border-left: 4px solid var(--accent);
  padding: 1.5rem 2rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: 2rem 0;
}

.highlight-box p {
  margin: 0;
  font-size: 1rem;
}

/* ---------- Map ---------- */
.map-container {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}

.map-container iframe {
  width: 100%;
  height: 300px;
  border: none;
}

/* ---------- Beta Badge ---------- */
.beta-badge {
  display: inline-block;
  background: var(--accent);
  color: #fff;
  padding: 0.2rem 0.8rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  vertical-align: super;
  margin-left: 0.5rem;
}

/* ---------- Schedule Timeline ---------- */
.schedule {
  max-width: 600px;
  margin: 2rem auto;
}

.schedule-item {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.schedule-time {
  font-weight: 700;
  color: var(--primary);
  min-width: 60px;
  font-size: 0.95rem;
}

.schedule-desc {
  color: #555;
  font-size: 0.95rem;
}

/* ---------- Contact split ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 4rem;
  align-items: flex-start;
}

.contact-info-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--secondary), #f0ebe3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---------- Misc ---------- */
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mt-4 { margin-top: 2rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }

/* GS-HEADLINE-LOOK */
.h-look-1,.h-look-2,.h-look-3,.h-look-4,.h-look-5,.h-look-6{font-family:'DM Serif Display',serif;color:var(--primary);line-height:1.2;font-weight:400;display:block;margin:0 0 .5em}
.h-look-1{font-size:clamp(2.2rem,5vw,3.8rem)}
.h-look-2{font-size:clamp(1.8rem,4vw,2.8rem)}
.h-look-3{font-size:clamp(1.3rem,3vw,1.8rem)}
.h-look-4{font-size:1.3rem}
.h-look-5{font-size:1.1rem}
.h-look-6{font-size:1rem}
.hero-content .h-look-1,.hero-content .h-look-2,.hero-content .h-look-3{color:#fff}
/* CKE5-Prosa */
.content-text{font-size:1.05rem;line-height:1.8;color:#444}
.content-text p{margin:0 0 1rem}
.content-text p:last-child{margin-bottom:0}
.content-text ul,.content-text ol{margin:0 0 1rem 1.4rem}
.content-text li{margin:.2rem 0}
.content-text a{color:var(--accent,#E07A3A);text-decoration:underline}
.content-text strong{font-weight:700}
.content-text h2,.content-text h3,.content-text h4{margin:1.6rem 0 .6rem}

/* GS-FORM-MESSAGE */
.form-message{font-size:.95rem}
.form-message.error{background:#fdecea;color:#a3261c;border:1px solid #f5c6cb}
.form-message.success{background:#e8f5e9;color:#1b5e20;border:1px solid #c8e6c9}

/* WS-MOBILE-SPACING: Abstände Workshops/Feature-Blöcke auf Mobile enger (Kunden-Korrektur) */
@media (max-width: 768px) {
  section:has(.feature-block) { padding: 2.5rem 0; }
  .feature-block, .feature-block.reverse { margin-bottom: 1rem; gap: 1.75rem; }
}

/* Mobile: Abstand "Workshop anfragen" -> Highlight-Box ("In jedem Workshop-Paket inklusive") halbieren */
@media (max-width: 768px) {
  section:has(.feature-block):has(+ section .highlight-box) { padding-bottom: 2rem; }
  section:has(.highlight-box) { padding-top: 1.25rem; }
  .highlight-box { margin: 1rem 0; }
}
