/* ============================================
   VARIABLES & RESET
   ============================================ */
:root {
  --berry: #8B2257;
  --berry-light: #a8336f;
  --berry-pale: #f5eaf0;
  --anthrazit: #4a4a4a;
  --anthrazit-dark: #2e2e2e;
  --off-white: #f8f7f5;
  --white: #ffffff;
  --border: #e8e4e1;
  --text: #3a3a3a;
  --text-light: #7a7a7a;

  --font-body: 'Jost', sans-serif;
  --font-display: 'Playfair Display', serif;

  --radius: 4px;
  --radius-lg: 8px;
  --shadow-sm: 0 2px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.1);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);

  --max-w: 1140px;
  --nav-h: 80px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ============================================
   LOADER
   ============================================ */
.loader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.loader.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-line {
  width: 0;
  height: 1px;
  background: var(--berry);
  animation: loaderGrow 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes loaderGrow {
  0%   { width: 0; opacity: 1; }
  70%  { width: 200px; opacity: 1; }
  100% { width: 200px; opacity: 0; }
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

section { padding: 100px 0; }

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 1rem;
}

.section-title {
  font-family: var(--font-body);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 300;
  line-height: 1.2;
  color: var(--anthrazit-dark);
  letter-spacing: -0.02em;
}

.section-title em {
  font-style: normal;
  color: var(--berry);
  font-weight: 500;
}

.section-sub {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 560px;
  margin-top: 1rem;
  font-weight: 300;
}

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

.section-header .section-sub {
  margin: 1rem auto 0;
}

.rule-line {
  width: 48px;
  height: 1px;
  background: var(--berry);
  margin: 2rem 0;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 0.9rem 2rem;
  border-radius: var(--radius);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: var(--berry);
  color: var(--white);
  border-color: var(--berry);
}

.btn-primary:hover {
  background: var(--berry-light);
  border-color: var(--berry-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(139, 34, 87, 0.25);
}

.btn-ghost {
  background: transparent;
  color: var(--anthrazit);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--berry);
  color: var(--berry);
  transform: translateY(-1px);
}

.btn-sm {
  padding: 0.6rem 1.25rem;
  font-size: 0.8rem;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: var(--transition);
}

.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 var(--border), var(--shadow-sm);
}

.nav.scrolled .nav-inner {
  height: 64px;
}

.nav-logo img {
  height: 44px;
  width: auto;
  transition: var(--transition);
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.875rem;
  font-weight: 400;
  color: var(--anthrazit);
  letter-spacing: 0.02em;
  transition: color var(--transition);
  position: relative;
}

.nav-links a:not(.nav-cta)::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--berry);
  transition: width var(--transition);
}

.nav-links a:not(.nav-cta):hover { color: var(--berry); }
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
  background: var(--berry);
  color: var(--white) !important;
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius);
  font-weight: 500;
  transition: var(--transition) !important;
}

.nav-cta:hover {
  background: var(--berry-light) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(139, 34, 87, 0.25);
}

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

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--anthrazit);
  transition: var(--transition);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-h) + 60px) 0 80px;
  background: var(--white);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 45%;
  height: 100%;
  background: var(--off-white);
  clip-path: polygon(10% 0, 100% 0, 100% 100%, 0% 100%);
  z-index: 0;
}

.hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--berry);
}

.hero h1 {
  font-family: var(--font-body);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--anthrazit-dark);
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: normal;
  color: var(--berry);
  font-weight: 500;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-visual {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}

/* Hero Deco */
.hero-deco {
  position: relative;
  width: 100%;
  max-width: 460px;
  animation: fadeUp 0.9s ease 0.3s both;
}

.hero-deco-svg {
  width: 100%;
  height: auto;
  display: block;
}

.hero-float-card {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.55rem 1.1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--anthrazit);
  box-shadow: var(--shadow-md);
  white-space: nowrap;
}

.hero-float-card--top {
  top: 14%;
  left: -4%;
  animation: fadeUp 0.8s ease 0.5s both;
}

.hero-float-card--bottom {
  bottom: 14%;
  right: -4%;
  animation: fadeUp 0.8s ease 0.7s both;
}

/* Legacy — kept for compat */
.hero-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-md);
  max-width: 340px;
  animation: fadeUp 0.8s ease 0.4s both;
}

.hero-card-icon {
  width: 56px;
  height: 56px;
  color: var(--berry);
  margin-bottom: 1rem;
}

.hero-card-text {
  font-size: 0.95rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.6;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  color: var(--anthrazit);
  font-weight: 500;
  box-shadow: var(--shadow-sm);
  animation: fadeUp 0.8s ease 0.6s both;
}

.badge-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3dba6f;
  box-shadow: 0 0 0 3px rgba(61, 186, 111, 0.2);
  animation: pulse 2s infinite;
}

.badge-dot--orange {
  background: #e07b2a;
  box-shadow: 0 0 0 3px rgba(224, 123, 42, 0.2);
  animation: pulse-orange 2s infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 3px rgba(61, 186, 111, 0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(61, 186, 111, 0.1); }
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.hero-scroll span {
  display: block;
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--berry), transparent);
  margin: 0 auto;
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; opacity: 1; }
  50%  { transform: scaleY(1); transform-origin: top; opacity: 1; }
  100% { transform: scaleY(1); transform-origin: bottom; opacity: 0; }
}

/* ============================================
   ABOUT
   ============================================ */
.about {
  background: var(--off-white);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-text p {
  color: var(--text-light);
  font-weight: 300;
  margin-bottom: 1rem;
  font-size: 1.025rem;
}

.about-text p strong {
  color: var(--anthrazit-dark);
  font-weight: 500;
}

.about-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 0.4rem 0.9rem;
  border: 1px solid var(--berry);
  color: var(--berry);
  border-radius: 100px;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.stat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.25rem;
  transition: var(--transition);
}

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

.stat-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  color: var(--berry);
}

.stat-value {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--berry);
  line-height: 1;
  margin-bottom: 0.2rem;
}

.stat-label {
  font-size: 0.82rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ============================================
   LEISTUNGEN
   ============================================ */
.leistungen {
  background: var(--white);
}

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

.leistung-card {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem;
  position: relative;
  transition: var(--transition);
  background: var(--white);
}

.leistung-card::before {
  content: attr(data-index);
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--border);
}

.leistung-card:hover {
  border-color: var(--berry);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.leistung-card.featured {
  background: var(--berry);
  border-color: var(--berry);
  color: white;
}

.leistung-card.featured::before { color: rgba(255,255,255,0.2); }

.featured-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  color: white;
  padding: 0.3rem 0.75rem;
  border-radius: 100px;
  margin-bottom: 1.5rem;
}

.leistung-icon {
  width: 52px;
  height: 52px;
  color: var(--berry);
  margin-bottom: 1.5rem;
}

.leistung-card.featured .leistung-icon {
  color: white;
}

.leistung-card h3 {
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--anthrazit-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.leistung-card.featured h3 { color: white; }

.leistung-card p {
  font-size: 0.9rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.leistung-card.featured p { color: rgba(255,255,255,0.8); }

.leistung-list {
  margin-bottom: 2rem;
}

.leistung-list li {
  font-size: 0.82rem;
  color: var(--text-light);
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.leistung-list li::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--berry);
  flex-shrink: 0;
}

.leistung-card.featured .leistung-list li {
  color: rgba(255,255,255,0.75);
  border-color: rgba(255,255,255,0.15);
}

.leistung-card.featured .leistung-list li::before {
  background: rgba(255,255,255,0.5);
}

.leistung-link {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--berry);
  letter-spacing: 0.03em;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap var(--transition);
}

.leistung-link:hover { gap: 0.75rem; }

.leistung-card.featured .leistung-link {
  color: rgba(255,255,255,0.9);
}

/* ============================================
   WORKFLOW
   ============================================ */
.workflow {
  background: var(--off-white);
}

.workflow-steps {
  display: flex;
  align-items: center;
  gap: 0;
  justify-content: center;
}

.workflow-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 2.5rem 2rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  transition: var(--transition);
}

.workflow-step:hover {
  border-color: var(--berry);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-num {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--berry);
  margin-bottom: 1.25rem;
}

.step-icon {
  width: 48px;
  height: 48px;
  color: var(--berry);
  margin: 0 auto 1.25rem;
}

.workflow-step h3 {
  font-size: 1rem;
  font-weight: 500;
  color: var(--anthrazit-dark);
  margin-bottom: 0.75rem;
}

.workflow-step p {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.65;
}

.workflow-connector {
  flex-shrink: 0;
  width: 60px;
  color: var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================================
   MANDATS-AMPEL
   ============================================ */
.ampel {
  padding: 0;
  background: var(--white);
}

.ampel-inner {
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background: var(--white);
  margin: -50px 0;
  position: relative;
  z-index: 2;
  box-shadow: var(--shadow-md);
}

.ampel-status {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.ampel-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.ampel-dot.active {
  background: #3dba6f;
  box-shadow: 0 0 0 4px rgba(61, 186, 111, 0.15);
  animation: pulse 2s infinite;
}

.ampel-dot.limited {
  background: #e07b2a;
  box-shadow: 0 0 0 4px rgba(224, 123, 42, 0.2);
  animation: pulse-orange 2s infinite;
}

@keyframes pulse-orange {
  0%, 100% { box-shadow: 0 0 0 3px rgba(224, 123, 42, 0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(224, 123, 42, 0.08); }
}

.ampel-dot.full {
  background: #c0392b;
  box-shadow: 0 0 0 4px rgba(192, 57, 43, 0.15);
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0%, 100% { box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.2); }
  50%       { box-shadow: 0 0 0 6px rgba(192, 57, 43, 0.08); }
}

.badge-dot--red {
  background: #c0392b;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.2);
  animation: pulse-red 2s infinite;
}

.ampel-text strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--anthrazit-dark);
  margin-bottom: 0.25rem;
}

.ampel-text p {
  font-size: 0.875rem;
  color: var(--text-light);
  font-weight: 300;
}

/* ============================================
   KONTAKT
   ============================================ */
.kontakt {
  background: var(--off-white);
  padding-top: 150px;
}

.kontakt-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 5rem;
  align-items: start;
}

.info-block {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

.info-block:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.info-icon {
  width: 32px;
  height: 32px;
  color: var(--berry);
  flex-shrink: 0;
  margin-top: 2px;
}

.info-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--berry);
  margin-bottom: 0.3rem;
}

.info-block p, .info-block a {
  font-size: 0.925rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.65;
}

.info-block a:hover { color: var(--berry); }

/* FORM */
.kontakt-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-sm);
}

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

.form-group {
  margin-bottom: 1.25rem;
}

.form-group label {
  display: block;
  font-size: 0.775rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--anthrazit);
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 300;
  color: var(--text);
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.8rem 1rem;
  outline: none;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238B2257' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--berry);
  box-shadow: 0 0 0 3px rgba(139, 34, 87, 0.08);
  background: var(--white);
}

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

.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.form-check input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  margin-top: 2px;
  accent-color: var(--berry);
  cursor: pointer;
}

.form-check label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 300;
  line-height: 1.5;
  cursor: pointer;
}

.form-check a { color: var(--berry); text-decoration: underline; }

.form-success {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(61, 186, 111, 0.08);
  border: 1px solid rgba(61, 186, 111, 0.3);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: #2a7d4a;
  text-align: center;
}

.form-success.visible { display: block; }

.form-error {
  display: none;
  margin-top: 1rem;
  padding: 1rem;
  background: rgba(192, 57, 43, 0.06);
  border: 1px solid rgba(192, 57, 43, 0.2);
  border-radius: var(--radius);
  font-size: 0.875rem;
  color: #c0392b;
  text-align: center;
}

/* ── Google Maps ─────────────────────────────────────────────────── */
.maps-section {
  width: 100%;
}

.maps-consent {
  background: var(--off-white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 4rem 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.maps-consent-inner {
  max-width: 480px;
}

.maps-consent-inner svg {
  margin: 0 auto 1rem;
  display: block;
}

.maps-consent-inner p {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--anthrazit-dark);
  margin-bottom: 0.5rem;
}

.maps-hint {
  font-size: 0.8rem !important;
  font-weight: 300 !important;
  color: var(--text-light) !important;
  margin-bottom: 1.5rem !important;
  line-height: 1.6;
}

.maps-hint a { color: var(--berry); text-decoration: underline; }

.maps-frame iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
  filter: grayscale(20%);
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--anthrazit-dark);
  color: rgba(255,255,255,0.7);
  padding: 80px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: 1.25rem;
  filter: brightness(0) invert(1) opacity(0.85);
}

.footer-logo p {
  font-size: 0.875rem;
  font-weight: 300;
  line-height: 1.7;
  color: rgba(255,255,255,0.5);
}

.footer-nav h4,
.footer-legal h4 {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-nav ul,
.footer-legal ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-nav a,
.footer-legal a {
  font-size: 0.875rem;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 0;
}

.footer-bottom p {
  font-size: 0.775rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .leistungen-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 0 auto;
  }

  .workflow-steps {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }

  .workflow-connector {
    display: none;
  }

  .workflow-step {
    max-width: 100%;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }

  .hero::before { display: none; }

  .hero-visual {
    display: none;
  }

  .about-inner {
    grid-template-columns: 1fr;
  }

  .kontakt-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .footer-logo {
    grid-column: 1 / -1;
  }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }

  section { padding: 72px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-links a { font-size: 1.25rem; }

  .nav-cta { padding: 0.8rem 2rem; }

  .nav-toggle { display: flex; z-index: 1001; }

  .nav-toggle.open span:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
  }

  .nav-toggle.open span:nth-child(2) {
    opacity: 0;
  }

  .nav-toggle.open span:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
  }

  .hero h1 { font-size: 2.8rem; }

  .form-row { grid-template-columns: 1fr; }

  .ampel-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-actions { flex-direction: column; }
  .btn { justify-content: center; }
}
