/* ==========================================================================
   KODA — Celina Klappacher · Premium-Website
   main.css · überarbeitete Version
   ========================================================================== */

:root {
  /* Farben */
  --bg: #F9F6F0;
  --bg-elevated: #FFFFFF;
  --bg-soft: #F1EADF;
  --bg-warm: #EFE6DB;

  --ink: #3B2B22;
  --ink-deep: #241A15;
  --ink-soft: #665145;
  --ink-muted: #8B7668;

  --rose: #C88F9D;
  --rose-dark: #A96F7E;
  --rose-soft: #F1DDE3;
  --rose-glow: rgba(200, 143, 157, 0.22);

  --line: #E3D8C9;
  --line-soft: #EFE6D9;

  /* Typografie */
  --font-display: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-script: "Allura", "Pinyon Script", "Great Vibes", cursive;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;

  /* Maße */
  --container: 1240px;
  --container-narrow: 920px;
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --radius-pill: 999px;

  /* Easings */
  --ease-out: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-in-out: cubic-bezier(0.77, 0, 0.175, 1);

  /* Schatten */
  --shadow-soft: 0 14px 42px rgba(59, 43, 34, 0.08);
  --shadow-card: 0 1px 2px rgba(59, 43, 34, 0.04), 0 18px 50px rgba(59, 43, 34, 0.08);
  --shadow-hover: 0 8px 22px rgba(59, 43, 34, 0.10), 0 28px 62px rgba(59, 43, 34, 0.12);
  --shadow-rose: 0 14px 36px rgba(200, 143, 157, 0.30);
}

/* Reset */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  min-width: 320px;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(200, 143, 157, 0.10), transparent 28rem),
    var(--bg);
  font-feature-settings: "kern", "liga";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, picture, video, svg { display: block; max-width: 100%; height: auto; }
button { font: inherit; color: inherit; cursor: pointer; border: 0; background: transparent; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; color: inherit; }
::selection { background: var(--rose-soft); color: var(--ink-deep); }

/* Typografie */
.font-display { font-family: var(--font-display); font-weight: 400; letter-spacing: -0.005em; }
.font-script { font-family: var(--font-script); font-weight: 400; }

.eyebrow {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--rose-dark);
  font-weight: 600;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.12;
  color: var(--ink-deep);
}
h1 { font-size: clamp(2.55rem, 5.4vw, 5rem); letter-spacing: -0.025em; }
h2 { font-size: clamp(2.05rem, 3.7vw, 3.15rem); letter-spacing: -0.018em; }
h3 { font-size: clamp(1.45rem, 2vw, 1.8rem); }
h4 { font-size: 1.16rem; }

p { color: var(--ink-soft); }
.lead { font-size: clamp(1.04rem, 1.3vw, 1.2rem); color: var(--ink-soft); line-height: 1.75; }
strong { color: var(--ink-deep); font-weight: 600; }

/* Layout */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.container-narrow { width: 100%; max-width: var(--container-narrow); margin: 0 auto; padding: 0 24px; }
.section { padding: 104px 0; }
.section-lg { padding: 136px 0; }

@media (max-width: 768px) {
  body { font-size: 16px; }
  .container, .container-narrow { padding: 0 20px; }
  .section { padding: 68px 0; }
  .section-lg { padding: 88px 0; }
}

.hairline {
  height: 1px;
  width: 100%;
  background: linear-gradient(to right, transparent, var(--line) 18%, var(--line) 82%, transparent);
  border: 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 14px 26px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.01em;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  transition: transform 200ms var(--ease-out), box-shadow 200ms var(--ease-out), background 200ms var(--ease-out), border-color 200ms var(--ease-out), color 200ms var(--ease-out);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }
.btn-primary {
  background: var(--rose);
  color: #FFFFFF;
  border-color: var(--rose);
  box-shadow: var(--shadow-rose);
}
.btn-primary:hover {
  background: var(--rose-dark);
  border-color: var(--rose-dark);
  transform: translateY(-2px);
  box-shadow: 0 16px 42px rgba(169, 111, 126, 0.34);
}
.btn-secondary {
  background: rgba(255, 255, 255, 0.42);
  color: var(--ink-deep);
  border-color: rgba(59, 43, 34, 0.28);
}
.btn-secondary:hover {
  background: var(--ink-deep);
  color: var(--bg);
  border-color: var(--ink-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--rose); color: var(--rose-dark); }
.btn-arrow::after { content: "→"; transition: transform 200ms var(--ease-out); }
.btn-arrow:hover::after { transform: translateX(4px); }

/* Navigation */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(249, 246, 240, 0.82);
  backdrop-filter: saturate(180%) blur(18px);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid rgba(227, 216, 201, 0.55);
  transition: background 200ms var(--ease-out), box-shadow 200ms var(--ease-out);
}
.nav.scrolled { background: rgba(249, 246, 240, 0.94); box-shadow: 0 8px 30px rgba(59, 43, 34, 0.05); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 78px; gap: 32px; }
.nav-logo { display: flex; align-items: center; }
.nav-logo img { height: 52px; width: auto; object-fit: contain; }
.nav-links { display: flex; align-items: center; gap: 34px; font-size: 14.5px; letter-spacing: 0.035em; }
.nav-links a { color: var(--ink); position: relative; padding: 4px 0; transition: color 150ms var(--ease-out); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -3px;
  width: 0;
  height: 1px;
  background: var(--rose-dark);
  transform: translateX(-50%);
  transition: width 200ms var(--ease-out);
}
.nav-links a:hover { color: var(--rose-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-cta { padding: 10px 20px; font-size: 14px; }
.nav-toggle { display: none; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 1.5px; background: var(--ink); margin: 5px 0; transition: all 200ms var(--ease-out); }
.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); }

@media (max-width: 920px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(249, 246, 240, 0.98);
    padding: 14px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 200ms var(--ease-out), transform 200ms var(--ease-out);
  }
  .nav-links.open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line-soft); }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
}

/* Hero */
.hero {
  position: relative;
  padding: 92px 0 128px;
  background:
    radial-gradient(circle at top left, rgba(200, 143, 157, 0.18), transparent 34%),
    radial-gradient(circle at bottom right, rgba(255, 255, 255, 0.72), transparent 34%),
    linear-gradient(180deg, #FBF8F2 0%, var(--bg) 46%, var(--bg-warm) 100%);
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -160px;
  width: min(780px, 90vw);
  height: min(780px, 90vw);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.34);
  transform: translateX(-50%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 30px; }
.hero-logo { max-width: 330px; width: min(70%, 330px); margin-bottom: 4px; filter: drop-shadow(0 18px 36px rgba(59, 43, 34, 0.08)); }
.hero-eyebrow { display: inline-flex; align-items: center; gap: 12px; font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--rose-dark); font-weight: 600; }
.hero-eyebrow::before, .hero-eyebrow::after { content: ""; width: 26px; height: 1px; background: var(--rose); }
.hero-headline { max-width: 920px; }
.hero-headline .accent { font-family: var(--font-display); font-style: italic; color: var(--rose-dark); }
.hero-claim { font-family: var(--font-display); font-style: italic; font-size: clamp(1.45rem, 2.4vw, 2.08rem); color: var(--ink); max-width: 760px; line-height: 1.42; }
.hero-subtitle { max-width: 660px; font-size: 1.12rem; color: var(--ink-soft); line-height: 1.75; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }
.hero-meta { display: flex; gap: 26px 36px; flex-wrap: wrap; justify-content: center; margin-top: 22px; font-size: 12.5px; color: var(--ink-muted); letter-spacing: 0.06em; text-transform: uppercase; }
.hero-meta span { display: flex; align-items: center; gap: 8px; }
.hero-meta span::before { content: ""; width: 5px; height: 5px; background: var(--rose); border-radius: 50%; }

@media (max-width: 640px) {
  .hero { padding: 58px 0 80px; }
  .hero-logo { width: min(76%, 260px); }
  .hero-ctas { width: 100%; }
  .hero-ctas .btn { width: 100%; white-space: normal; }
}

/* KODA — Vier Säulen */
.koda-section { background: var(--bg-soft); position: relative; }
.koda-header { text-align: center; max-width: 780px; margin: 0 auto 66px; }
.koda-header .eyebrow, .services-header .eyebrow { margin-bottom: 14px; }
.pillars { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.pillars::before { content: ""; position: absolute; left: 0; right: 0; top: 60px; height: 1px; background: linear-gradient(to right, transparent, var(--line) 12%, var(--line) 88%, transparent); }
.pillar {
  text-align: center;
  position: relative;
  padding: 28px 18px 24px;
  border: 1px solid rgba(200, 143, 157, 0.16);
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.42);
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), border-color 250ms var(--ease-out), background 250ms var(--ease-out);
}
.pillar:hover { transform: translateY(-5px); border-color: rgba(200, 143, 157, 0.36); background: rgba(255, 255, 255, 0.72); box-shadow: var(--shadow-card); }
.pillar-icon { width: 112px; height: 112px; margin: 0 auto 24px; background: var(--bg); border: 1px solid var(--line); border-radius: 50%; display: flex; align-items: center; justify-content: center; position: relative; z-index: 1; transition: all 250ms var(--ease-out); }
.pillar:hover .pillar-icon { border-color: var(--rose); box-shadow: 0 14px 34px rgba(200, 143, 157, 0.18); }
.pillar-icon svg { width: 44px; height: 44px; stroke: var(--ink); fill: none; stroke-width: 1.2; }
.pillar .letter { display: block; font-size: 12px; letter-spacing: 0.3em; color: var(--rose-dark); margin-bottom: 14px; text-transform: uppercase; font-weight: 600; }
.pillar h3 { font-style: italic; font-size: 1.62rem; margin-bottom: 10px; }
.pillar p { font-size: 0.95rem; color: var(--ink-soft); }
.koda-conclusion { max-width: 740px; margin: 78px auto 0; text-align: center; padding: 36px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.koda-conclusion .quote { font-family: var(--font-display); font-style: italic; font-size: clamp(1.25rem, 2vw, 1.5rem); color: var(--ink-deep); line-height: 1.5; }

@media (max-width: 980px) { .pillars { grid-template-columns: repeat(2, 1fr); } .pillars::before { display: none; } }
@media (max-width: 560px) { .pillars { grid-template-columns: 1fr; } .pillar { padding: 26px 20px; } }

/* Über Celina */
.about { display: grid; grid-template-columns: 5fr 6fr; gap: 80px; align-items: center; }
.about-portrait { position: relative; background: var(--bg-soft); padding: 20px; border: 1px solid var(--line); border-radius: var(--radius-lg); box-shadow: var(--shadow-card); }
.about-portrait::before, .about-portrait::after { content: ""; position: absolute; width: 82px; height: 82px; border-color: var(--rose); pointer-events: none; }
.about-portrait::before { left: -10px; top: -10px; border-top: 1px solid; border-left: 1px solid; border-top-left-radius: 24px; }
.about-portrait::after { right: -10px; bottom: -10px; border-bottom: 1px solid; border-right: 1px solid; border-bottom-right-radius: 24px; }
.about-portrait img { width: 100%; aspect-ratio: 3 / 4; object-fit: cover; border-radius: calc(var(--radius-lg) - 12px); }
.about-content .eyebrow { margin-bottom: 16px; }
.about-content h2 { margin-bottom: 24px; }
.about-content h2 em { font-style: italic; color: var(--rose-dark); }
.about-content p { margin-bottom: 16px; line-height: 1.78; }
.about-signature { margin-top: 34px; padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 12px; }
.about-signature .name { font-family: var(--font-script); font-size: 1.75rem; color: var(--ink-deep); }
.about-signature .role { font-size: 12.5px; color: var(--ink-muted); letter-spacing: 0.1em; text-transform: uppercase; }

@media (max-width: 880px) { .about { grid-template-columns: 1fr; gap: 48px; } .about-portrait { max-width: 520px; margin: 0 auto; } }

/* Leistungen */
.services { background: var(--bg-soft); }
.services-header { text-align: center; max-width: 800px; margin: 0 auto 66px; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: rgba(255, 255, 255, 0.78);
  padding: 32px;
  border: 1px solid rgba(200, 143, 157, 0.18);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), border-color 250ms var(--ease-out), background 250ms var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at top right, rgba(200, 143, 157, 0.12), transparent 42%); opacity: 0; transition: opacity 250ms var(--ease-out); pointer-events: none; }
.service-card:hover { border-color: rgba(200, 143, 157, 0.42); transform: translateY(-5px); box-shadow: var(--shadow-hover); background: #FFFFFF; }
.service-card:hover::before { opacity: 1; }
.service-card .num { position: absolute; top: 24px; right: 28px; font-family: var(--font-display); font-style: italic; font-size: 1.7rem; color: var(--rose-dark); opacity: 0.55; }
.service-card .label { display: inline-block; width: fit-content; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); padding-bottom: 8px; border-bottom: 1px solid var(--line); margin-bottom: 4px; padding-right: 28px; }
.service-card h3 { font-size: 1.52rem; line-height: 1.2; padding-right: 34px; }
.service-card .desc { font-size: 0.95rem; color: var(--ink-soft); flex: 1; }
.service-card .salzburg-note { font-size: 0.87rem; color: var(--rose-dark); font-style: italic; padding: 12px 14px; background: rgba(241, 221, 227, 0.7); border-left: 2px solid var(--rose); border-radius: 0 var(--radius-sm) var(--radius-sm) 0; }
.service-card .pricing { display: flex; flex-direction: column; gap: 5px; padding: 14px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.service-card .pricing-row { display: flex; justify-content: space-between; gap: 18px; font-size: 14px; }
.service-card .pricing-row span:first-child { color: var(--ink-muted); letter-spacing: 0.025em; }
.service-card .pricing-row span:last-child { color: var(--ink-deep); font-weight: 600; text-align: right; }
.service-card .platform { font-size: 0.78rem; color: var(--ink-muted); letter-spacing: 0.04em; }

@media (max-width: 1020px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 680px) { .services-grid { grid-template-columns: 1fr; } .service-card { padding: 28px 24px; } .service-card .pricing-row { flex-direction: column; gap: 2px; } .service-card .pricing-row span:last-child { text-align: left; } }

.komplett {
  margin-top: 52px;
  padding: 58px;
  background:
    radial-gradient(circle at top left, rgba(200, 143, 157, 0.18), transparent 36%),
    var(--ink-deep);
  color: var(--bg);
  text-align: center;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-hover);
}
.komplett::before, .komplett::after { content: ""; position: absolute; width: 42px; height: 42px; border-color: var(--rose); }
.komplett::before { top: 18px; left: 18px; border-top: 1px solid; border-left: 1px solid; }
.komplett::after { bottom: 18px; right: 18px; border-bottom: 1px solid; border-right: 1px solid; }
.komplett .eyebrow { color: var(--rose); margin-bottom: 16px; }
.komplett h3 { color: var(--bg); font-style: italic; font-size: clamp(1.85rem, 3vw, 2.35rem); margin-bottom: 16px; }
.komplett p { color: rgba(249, 246, 240, 0.82); max-width: 620px; margin: 0 auto 26px; }
.komplett .btn-primary { background: var(--rose); color: #FFFFFF; border-color: var(--rose); }
.komplett .btn-primary:hover { background: var(--rose-dark); border-color: var(--rose-dark); }

.business-model {
  margin-top: 52px;

  display: flex;
  justify-content: center;
  align-items: stretch;
  gap: 24px;
  flex-wrap: wrap;
}

.bm-card {
  width: 100%;
  max-width: 340px;

  padding: 30px;

  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(200, 143, 157, 0.18);

  border-radius: var(--radius-lg);

  box-shadow: 0 10px 30px rgba(59, 43, 34, 0.05);

  text-align: center;

  transition:
    transform 250ms var(--ease-out),
    box-shadow 250ms var(--ease-out),
    border-color 250ms var(--ease-out);
}

.bm-card:hover {
  transform: translateY(-4px);

  border-color: rgba(200, 143, 157, 0.36);

  box-shadow: 0 18px 44px rgba(59, 43, 34, 0.10);
}

.bm-card .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.85rem;

  color: var(--rose-dark);

  margin-bottom: 8px;
}

.bm-card h4 {
  margin-bottom: 10px;
}

.bm-card p {
  font-size: 0.93rem;
  color: var(--ink-soft);
}

@media (max-width: 820px) {

  .business-model {
    flex-direction: column;
    align-items: center;
  }

  .bm-card {
    max-width: 100%;
  }

  .komplett {
    padding: 42px 24px;
  }
}

/* Warum KODA */
.why-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 48px; }
.why-card { padding: 34px; border: 1px solid rgba(200, 143, 157, 0.18); background: rgba(255, 255, 255, 0.76); border-radius: var(--radius-lg); box-shadow: 0 12px 34px rgba(59, 43, 34, 0.05); transition: transform 250ms var(--ease-out), box-shadow 250ms var(--ease-out), border-color 250ms var(--ease-out); }
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); border-color: rgba(200, 143, 157, 0.36); }
.why-card h3 { font-style: italic; font-size: 1.45rem; margin-bottom: 12px; }
.why-card p { font-size: 0.96rem; }
.testimonials { margin-top: 80px; padding: 50px 32px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.28)); border: 1px solid rgba(200, 143, 157, 0.18); border-radius: var(--radius-lg); text-align: center; }
.testimonials .eyebrow { margin-bottom: 16px; }
.testimonials-empty { font-family: var(--font-display); font-style: italic; font-size: 1.22rem; color: var(--ink-muted); max-width: 600px; margin: 0 auto; }
@media (max-width: 768px) { .why-grid { grid-template-columns: 1fr; } }

.checkbox-wrap {
  display: flex;
  align-items: flex-start;
  gap: 12px;

  font-size: 13px;
  line-height: 1.6;

  color: var(--ink-muted);

  max-width: 520px;
}

.checkbox-wrap input[type="checkbox"] {
  margin-top: 3px;

  width: 18px;
  height: 18px;

  accent-color: var(--rose-dark);

  cursor: pointer;

  flex-shrink: 0;
}

.checkbox-wrap a {
  color: var(--rose-dark);
  border-bottom: 1px solid var(--rose);
}

.checkbox-wrap a:hover {
  opacity: 0.8;
}

/* Kontakt */
.contact {
  background:
    radial-gradient(circle at top right, rgba(200, 143, 157, 0.18), transparent 34%),
    var(--ink-deep);
  color: var(--bg);
}
.contact h2 { color: var(--bg); }
.contact .eyebrow { color: var(--rose); }
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 64px; }
.contact-info p { color: rgba(249, 246, 240, 0.75); }
.contact-info .lead { color: rgba(249, 246, 240, 0.93); margin-bottom: 32px; }
.contact-channels { margin-top: 32px; padding-top: 32px; border-top: 1px solid rgba(249, 246, 240, 0.18); }
.contact-channels dl { display: grid; gap: 16px; }
.contact-channels dt { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose); margin-bottom: 4px; }
.contact-channels dd { color: rgba(249, 246, 240, 0.88); }
.contact-channels dd a { color: var(--bg); border-bottom: 1px solid rgba(200, 143, 157, 0.46); }
.contact-channels dd a:hover { border-bottom-color: var(--rose); color: #FFFFFF; }
.contact-form { background: var(--bg); color: var(--ink); padding: 42px; border-radius: var(--radius-lg); box-shadow: var(--shadow-hover); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-field { display: flex; flex-direction: column; }
.form-field label { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 7px; font-weight: 600; }
.form-field input, .form-field select, .form-field textarea {
  padding: 13px 14px;
  background: rgba(241, 234, 223, 0.76);
  border: 1px solid transparent;
  border-bottom-color: var(--line);
  border-radius: var(--radius-sm);
  transition: border-color 150ms var(--ease-out), background 150ms var(--ease-out), box-shadow 150ms var(--ease-out);
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { outline: none; background: #FFFFFF; border-color: var(--rose); box-shadow: 0 0 0 4px rgba(200, 143, 157, 0.14); }
.form-field textarea { resize: vertical; min-height: 120px; }
.form-actions { display: flex; justify-content: space-between; align-items: center; margin-top: 8px; gap: 16px; flex-wrap: wrap; }
.form-actions .legal { font-size: 12px; color: var(--ink-muted); flex: 1; min-width: 220px; }
.form-actions .legal a:hover { color: var(--rose-dark) !important; }
.form-success { background: var(--rose-soft); padding: 24px; text-align: center; display: none; border-radius: var(--radius-md); margin-top: 20px; }
.form-success.visible { display: block; }
.form-success h4 { font-family: var(--font-display); font-style: italic; font-size: 1.42rem; margin-bottom: 8px; }
.calendar-block { margin-top: 64px; padding: 42px; background: rgba(249, 246, 240, 0.065); border: 1px solid rgba(249, 246, 240, 0.16); border-radius: var(--radius-lg); text-align: center; }
.calendar-block .eyebrow { color: var(--rose); margin-bottom: 12px; }
.calendar-block h3 { color: var(--bg); font-style: italic; font-size: 1.68rem; margin-bottom: 16px; }
.calendar-block p { color: rgba(249, 246, 240, 0.8); margin-bottom: 24px; }

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } .contact-form { padding: 28px 20px; } .calendar-block { padding: 34px 20px; } }

/* Footer */
.footer { padding: 66px 0 32px; background: var(--bg-soft); border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand img { height: 60px; margin-bottom: 18px; width: auto; object-fit: contain; }
.footer-brand p { font-size: 0.92rem; max-width: 360px; }
.footer-col h4 { font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-muted); margin-bottom: 16px; font-family: var(--font-body); font-weight: 600; }
.footer-col ul li { margin-bottom: 10px; font-size: 0.95rem; }
.footer-col ul li a { transition: color 150ms var(--ease-out); }
.footer-col ul li a:hover { color: var(--rose-dark); }
.footer-bottom { padding-top: 24px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; font-size: 13px; color: var(--ink-muted); }
.social { display: flex; gap: 12px; }
.social a { width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: all 200ms var(--ease-out); background: rgba(255, 255, 255, 0.3); }
.social a:hover { border-color: var(--rose); color: var(--rose-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(59, 43, 34, 0.08); }
.social svg { width: 16px; height: 16px; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } .footer-bottom { align-items: flex-start; flex-direction: column; } }

/* Cookie Banner */
.cookie { position: fixed; left: 24px; right: 24px; bottom: 24px; z-index: 100; max-width: 540px; background: var(--bg-elevated); border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 24px; box-shadow: var(--shadow-hover); transform: translateY(120%); transition: transform 300ms var(--ease-out); }
.cookie.visible { transform: translateY(0); }
.cookie h4 { font-family: var(--font-body); font-weight: 700; font-size: 1rem; margin-bottom: 8px; }
.cookie p { font-size: 0.88rem; margin-bottom: 16px; }
.cookie-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.cookie-actions .btn { padding: 10px 18px; min-height: 40px; font-size: 13px; }
@media (max-width: 560px) { .cookie { left: 14px; right: 14px; bottom: 14px; padding: 20px; } }

/* Animationen */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 700ms var(--ease-out), transform 700ms var(--ease-out); }
.fade-in.visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: 0.01ms !important; }
  .fade-in { opacity: 1; transform: none; }
}

/* Legal Pages */
.legal-page { padding: 80px 0 120px; }
.legal-page h1 { margin-bottom: 32px; }
.legal-page h2 { font-size: 1.5rem; margin: 48px 0 16px; }
.legal-page h3 { font-size: 1.15rem; margin: 32px 0 12px; font-family: var(--font-body); font-weight: 700; }
.legal-page p, .legal-page li { color: var(--ink-soft); margin-bottom: 12px; line-height: 1.7; }
.legal-page ul { padding-left: 20px; }
.legal-page ul li { list-style: disc; margin-bottom: 8px; }
.legal-page strong { color: var(--ink-deep); }
.legal-page a { color: var(--rose-dark); border-bottom: 1px solid var(--rose-soft); }
.legal-page a:hover { border-bottom-color: var(--rose-dark); }

.business-model-center {
  margin-top: 80px !important;
  display: flex !important;
  justify-content: center !important;
  align-items: stretch !important;
  flex-wrap: wrap !important;
  gap: 24px !important;
}

.business-model-center .bm-card {
  width: 340px !important;
  max-width: 100% !important;
  text-align: center !important;
}

.contact-cta-row {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  margin-top: 1rem;
}
.contact-qr {
  width: 120px;
  height: 120px;
  border-radius: 8px;
  flex-shrink: 0;
}
.contact-person {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 2rem;
}
.contact-person img {
  border-radius: 8px;
  flex-shrink: 0;
}
@media (max-width: 600px) {
  .contact-cta-row, .contact-person { flex-direction: column; text-align: center; }
}

.contact-cta-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
