/* ================================================
   LOKALE FONTS – DSGVO-konform
   ================================================ */

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('fonts/playfair-display-bold.woff2') format('woff2');
}

@font-face {
  font-family: 'Playfair Display';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/playfair-display-italic.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('fonts/inter-light.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('fonts/inter-regular.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('fonts/inter-medium.woff2') format('woff2');
}

/* ================================================
   ZURÜCK IN DIE KINDHEIT – Stylesheet
   Version 2.0 | Getrennte CSS-Datei
   ================================================ */

/* ------------------------------------------------
   TOKENS / VARIABLEN
   ------------------------------------------------ */
:root {
  --cream:        #FAF7F2;
  --cream-mid:    #F0EAE0;
  --cream-dark:   #E4D9CC;
  --black:        #0D0D0D;
  --black-mid:    #1A1A1A;
  --black-soft:   #2A2A2A;
  --brown:        #3D1F0F;   /* nur für Logo-Akzente */
  --gold:         #C8A96E;
  --gold-light:   #E8D4A8;
  --gold-dark:    #A8894E;
  --text:         #1A1A1A;
  --text-mid:     #4A4A4A;
  --text-light:   #888888;
  --white:        #FFFFFF;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Inter', system-ui, sans-serif;

  --max-w:        1100px;
  --pad-section:  100px 24px;
  --pad-section-sm: 64px 20px;
  --radius:       4px;
  --shadow-sm:    0 4px 20px rgba(0,0,0,0.08);
  --shadow-md:    0 12px 40px rgba(0,0,0,0.14);
  --shadow-lg:    0 20px 60px rgba(0,0,0,0.18);
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  background: var(--cream);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  color: var(--black-mid);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ------------------------------------------------
   TYPOGRAFIE
   ------------------------------------------------ */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  line-height: 1.2;
  color: var(--black-mid);
}

h1 { font-size: clamp(2.4rem, 6vw, 4.2rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.1rem, 2.5vw, 1.5rem); margin-bottom: 10px; }

p {
  margin-bottom: 16px;
  color: var(--text-mid);
}

p:last-child { margin-bottom: 0; }

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.73rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}

/* ------------------------------------------------
   BUTTONS
   ------------------------------------------------ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  border: none;
  line-height: 1;
}

.btn-primary {
  background: var(--gold);
  color: var(--black);
}

.btn-primary:hover {
  background: var(--gold-light);
  text-decoration: none;
  transform: translateY(-1px);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border: 1.5px solid rgba(250,247,242,0.45);
  margin-left: 14px;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  text-decoration: none;
}

/* ------------------------------------------------
   NAVIGATION
   ------------------------------------------------ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.35s ease, box-shadow 0.35s ease, padding 0.35s ease;
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.97);
  box-shadow: 0 1px 24px rgba(0,0,0,0.09);
  padding: 12px 24px;
}

.nav-logo img {
  height: 48px;
  width: auto;
  transition: height 0.35s ease;
}

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

.nav-cta {
  background: var(--black);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: var(--radius);
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: background 0.2s;
  text-decoration: none !important;
}

.nav-cta:hover {
  background: var(--black-soft);
  text-decoration: none !important;
}

/* ------------------------------------------------
   HERO
   ------------------------------------------------ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* --- Desktop: side-by-side split --- */
.hero-split {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.hero-split-img {
  position: relative;
  overflow: hidden;
}

.hero-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

.hero-split-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.52);
}

.hero-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0.6;
}

.hero-labels {
  position: absolute;
  bottom: 28px;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  z-index: 3;
  pointer-events: none;
}

.hero-label-item {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  padding-bottom: 4px;
}

/* --- Mobile: stacked --- */
.hero-stack {
  display: none;
  flex-direction: column;
}

/* Querformat-Banner mit Kombi-Bild */
.hero-stack-banner {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  flex-shrink: 0;
}

.hero-stack-banner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 15%;
}

/* Leichter Overlay damit Text lesbar bleibt */
.hero-stack-banner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.25);
  pointer-events: none;
}

/* Goldener Trennstrich Mitte */
.hero-stack-banner::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  opacity: 0.5;
  z-index: 2;
}

/* Label-Leiste damals / heute */
.hero-stack-label-bar {
  display: flex;
  background: var(--black);
  border-top: 1px solid rgba(200,169,110,0.15);
}

.hero-stack-label {
  flex: 1;
  text-align: center;
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(200,169,110,0.6);
  padding: 7px 0;
  white-space: nowrap;
}

.hero-stack-label + .hero-stack-label {
  border-left: 1px solid rgba(200,169,110,0.15);
}

/* --- Hero content (text) --- */
.hero-content {
  position: relative;
  z-index: 3;
  margin-top: auto;
  padding: 56px 24px 72px;
  max-width: var(--max-w);
  width: 100%;
  align-self: center;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  color: var(--cream);
  line-height: 1.05;
  margin-bottom: 20px;
}

.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: var(--gold-light);
  margin-bottom: 14px;
  max-width: 640px;
}

.hero-intro {
  font-size: 1rem;
  color: rgba(250,247,242,0.8);
  max-width: 520px;
  margin-bottom: 36px;
  font-weight: 300;
}

/* Mobile hero text area */
.hero-content-mobile {
  display: none;
  background: var(--black);
  padding: 40px 20px 56px;
}

.hero-content-mobile .hero-eyebrow { margin-bottom: 12px; }

.hero-content-mobile .hero-title {
  color: var(--cream);
  margin-bottom: 16px;
}

.hero-content-mobile .hero-sub {
  margin-bottom: 12px;
}

.hero-content-mobile .hero-intro {
  margin-bottom: 28px;
}

/* ------------------------------------------------
   PROBLEM
   ------------------------------------------------ */
.section-problem {
  padding: var(--pad-section);
  background: var(--black);
  text-align: center;
}

.section-problem h2 {
  color: var(--cream);
  max-width: 800px;
  margin: 0 auto 32px;
}

.problem-body {
  max-width: 660px;
  margin: 0 auto 16px;
  color: rgba(250,247,242,0.72) !important;
  font-size: 1.05rem;
}

.problem-rule {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 44px auto 0;
}

.problem-tagline {
  margin-top: 36px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1rem, 2vw, 1.35rem);
  color: var(--gold-light);
}

/* ------------------------------------------------
   LÖSUNG
   ------------------------------------------------ */
.section-solution {
  padding: var(--pad-section);
}

.section-solution .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.solution-text h2 { margin-bottom: 20px; }

.solution-pillars {
  margin-top: 36px;
  border-top: 1px solid var(--cream-dark);
}

.pillar {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid var(--cream-dark);
}

.pillar-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  margin-top: 8px;
}

.pillar-text strong {
  display: block;
  color: var(--black-mid);
  font-weight: 500;
  margin-bottom: 2px;
}

.pillar-text span {
  font-size: 0.88rem;
  color: var(--text-light);
}

.solution-visual {
  position: relative;
}

.solution-visual img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.ki-badge {
  position: absolute;
  bottom: -22px;
  left: -22px;
  background: var(--black);
  color: var(--cream);
  padding: 20px 22px;
  max-width: 255px;
  border-radius: var(--radius);
  font-size: 0.86rem;
  line-height: 1.55;
  box-shadow: 0 10px 32px rgba(0,0,0,0.28);
}

.ki-badge strong {
  display: block;
  color: var(--gold);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.05rem;
  margin-bottom: 6px;
}

/* ------------------------------------------------
   REFERENZ
   ------------------------------------------------ */
.section-referenz {
  padding: var(--pad-section);
  background: var(--cream-mid);
}

.referenz-header {
  text-align: center;
  margin-bottom: 60px;
}

.referenz-header h2 { margin-bottom: 16px; }
.referenz-header p { max-width: 680px; margin: 0 auto 12px; }

.ref-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 1fr;
  gap: 28px;
  margin-bottom: 56px;
  align-items: stretch;
}

.ref-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  display: flex;
  flex-direction: column;
}

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

.ref-card-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 220px;
  position: relative;
  flex-shrink: 0;
}

.ref-card-imgs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ref-card-imgs::after {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--gold);
  transform: translateX(-50%);
  opacity: 0.5;
}

/* Kombi-Bild: ein einzelnes Bild statt zwei */
.ref-card-imgs--single {
  display: block;
}

.ref-card-imgs--single img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ref-card-imgs--single::after {
  left: 50%;
  opacity: 0.4;
}

.ref-card-body {
  padding: 18px 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.ref-card-name {
  font-family: var(--font-display);
  font-size: 1.05rem;
  color: var(--black-mid);
  margin-bottom: 4px;
}

.ref-card-caption {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.45;
}

.ref-book {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 44px;
  align-items: start;
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 40px;
  box-shadow: var(--shadow-sm);
}

.ref-book img {
  width: 150px;
  border-radius: 3px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.16);
}

.ref-book-text h3 { margin-bottom: 10px; }

.ref-names {
  margin-top: 14px;
  font-size: 0.8rem;
  color: var(--text-light);
  line-height: 1.9;
  columns: 3;
  column-gap: 24px;
}

/* ------------------------------------------------
   NUTZEN
   ------------------------------------------------ */
.section-nutzen {
  padding: var(--pad-section);
}

.nutzen-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.nutzen-card {
  padding: 32px 26px;
  border: 1px solid var(--cream-dark);
  border-radius: var(--radius);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.nutzen-card:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(0,0,0,0.07);
}

.nutzen-num {
  font-family: var(--font-display);
  font-size: 2.8rem;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 14px;
}

.nutzen-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

/* ------------------------------------------------
   ABLAUF
   ------------------------------------------------ */
.section-ablauf {
  padding: var(--pad-section);
  background: var(--black);
}

.ablauf-header {
  text-align: center;
  margin-bottom: 60px;
}

.ablauf-header h2 { color: var(--cream); }
.ablauf-header p  { color: rgba(250,247,242,0.65); max-width: 580px; margin: 0 auto; }

.ablauf-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
}

.ablauf-step {
  background: var(--black);
  padding: 32px 26px;
}

.ablauf-step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  color: rgba(200,169,110,0.18);
  line-height: 1;
  margin-bottom: 14px;
}

.ablauf-step h3 {
  color: var(--gold);
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
  font-family: var(--font-body);
  font-weight: 500;
  text-transform: uppercase;
}

.ablauf-step p {
  color: rgba(250,247,242,0.6);
  font-size: 0.88rem;
  margin: 0;
}

/* ------------------------------------------------
   ANGEBOT
   ------------------------------------------------ */
.section-angebot {
  padding: var(--pad-section);
}

.angebot-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.angebot-left h2 { margin-bottom: 18px; }

.angebot-list {
  list-style: none;
  margin: 24px 0;
}

.angebot-list li {
  display: flex;
  gap: 14px;
  padding: 11px 0;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text-mid);
  font-size: 0.92rem;
  align-items: flex-start;
  line-height: 1.5;
}

.angebot-list li:first-child { border-top: 1px solid var(--cream-dark); }

.angebot-list li::before {
  content: "—";
  color: var(--gold);
  flex-shrink: 0;
  font-weight: 500;
  margin-top: 1px;
}

.angebot-box-wrap {
  position: sticky;
  top: 100px;
}

.angebot-box {
  background: var(--black);
  color: var(--cream);
  padding: 44px 36px;
  border-radius: var(--radius);
  text-align: center;
}

.angebot-box-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 500;
  margin-bottom: 16px;
  display: block;
}

.angebot-tagline {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--cream);
  margin-bottom: 6px;
}

.angebot-sub {
  color: rgba(250,247,242,0.55);
  font-size: 0.88rem;
  margin-bottom: 32px;
}

.angebot-rule {
  width: 36px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 32px;
}

.angebot-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 0.95rem;
  color: var(--gold-light);
  line-height: 1.65;
  margin-bottom: 32px;
}

.angebot-box .btn-primary {
  width: 100%;
  display: block;
  text-align: center;
}

/* ------------------------------------------------
   FAQ
   ------------------------------------------------ */
.section-faq {
  padding: var(--pad-section);
  background: var(--cream-mid);
}

.faq-header {
  text-align: center;
  margin-bottom: 52px;
}

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

.faq-item {
  border-bottom: 1px solid var(--cream-dark);
}

.faq-btn {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  padding: 22px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 0.98rem;
  font-weight: 500;
  color: var(--black-mid);
  line-height: 1.4;
}

.faq-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.faq-icon {
  width: 26px;
  height: 26px;
  border: 1.5px solid var(--black-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: transform 0.25s ease;
  font-size: 1rem;
  color: var(--black-mid);
  line-height: 1;
}

.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.32s ease;
}

.faq-item.open .faq-answer { max-height: 320px; }

.faq-answer p {
  padding: 0 0 22px;
  font-size: 0.93rem;
  line-height: 1.7;
}

/* ------------------------------------------------
   TEAM
   ------------------------------------------------ */
.section-team {
  padding: var(--pad-section);
}

.team-header {
  text-align: center;
  margin-bottom: 60px;
}

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

.team-card { text-align: center; }

.team-photo {
  width: 132px;
  height: 132px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  margin: 0 auto 18px;
  border: 3px solid var(--cream-dark);
  box-shadow: 0 4px 20px rgba(0,0,0,0.09);
}

.team-name {
  font-family: var(--font-display);
  font-size: 1.15rem;
  color: var(--black-mid);
  margin-bottom: 2px;
}

.team-role {
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  font-weight: 500;
  display: block;
}

.team-bio {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.65;
  margin-bottom: 10px;
}

.team-link {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: italic;
}

.team-link:hover { color: var(--black-mid); text-decoration: none; }

/* ------------------------------------------------
   KONTAKT
   ------------------------------------------------ */
.section-kontakt {
  padding: var(--pad-section);
  background: var(--black);
}

.kontakt-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}

.kontakt-left h2 { color: var(--cream); margin-bottom: 18px; }
.kontakt-left > p { color: rgba(250,247,242,0.68); }

.kontakt-info {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.kontakt-line {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(250,247,242,0.78);
  font-size: 0.93rem;
}

.kontakt-line a {
  color: rgba(250,247,242,0.78);
}

.kontakt-line a:hover { color: var(--gold); text-decoration: none; }

.kontakt-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(200,169,110,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  flex-shrink: 0;
}

.kontakt-24h {
  margin-top: 32px;
  font-family: var(--font-display);
  font-style: italic;
  color: var(--gold-light);
  font-size: 0.98rem;
}

/* Formular */
.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.form-field label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(250,247,242,0.45);
  font-weight: 500;
}

.form-field input,
.form-field textarea {
  background: rgba(250,247,242,0.07);
  border: 1px solid rgba(250,247,242,0.18);
  border-radius: var(--radius);
  padding: 11px 14px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 0.93rem;
  transition: border-color 0.2s;
  width: 100%;
}

.form-field input::placeholder,
.form-field textarea::placeholder { color: rgba(250,247,242,0.28); }

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
}

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

.form-hint {
  font-size: 0.75rem;
  color: rgba(250,247,242,0.35);
  line-height: 1.5;
}

.form-submit {
  width: 100%;
  margin-top: 6px;
}

.form-success {
  display: none;
  background: rgba(200,169,110,0.12);
  border: 1px solid var(--gold);
  border-radius: var(--radius);
  padding: 18px;
  color: var(--gold-light);
  text-align: center;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1rem;
}

/* ------------------------------------------------
   FOOTER
   ------------------------------------------------ */
.footer {
  background: #080808;
  padding: 36px 24px;
  text-align: center;
}

.footer-logo img {
  height: 44px;
  width: auto;
  margin: 0 auto 20px;
  opacity: 0.85;
}

.footer-text {
  font-size: 0.8rem;
  color: rgba(250,247,242,0.3);
  margin-bottom: 14px;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.footer-links a {
  font-size: 0.78rem;
  color: rgba(250,247,242,0.35);
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); text-decoration: none; }

/* ------------------------------------------------
   SCROLL REVEAL
   ------------------------------------------------ */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

/* ------------------------------------------------
   RESPONSIVE — Tablet (≤ 960px)
   ------------------------------------------------ */
@media (max-width: 960px) {
  :root { --pad-section: 72px 20px; }

  .section-solution .container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .solution-visual { order: -1; }

  .ki-badge {
    position: relative;
    bottom: auto;
    left: auto;
    margin-top: 16px;
    max-width: 100%;
  }

  .ref-grid { grid-template-columns: 1fr 1fr; }

  .ref-book {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ref-book img { margin: 0 auto; }
  .ref-names { columns: 2; }

  .nutzen-grid { grid-template-columns: 1fr 1fr; }

  .ablauf-grid { grid-template-columns: 1fr 1fr; }

  .angebot-wrap { grid-template-columns: 1fr; }
  .angebot-box-wrap { position: static; }

  .team-grid { grid-template-columns: 1fr 1fr; }

  .kontakt-wrap { grid-template-columns: 1fr; gap: 48px; }
  .form-row { grid-template-columns: 1fr; }
}

/* ------------------------------------------------
   RESPONSIVE — Mobile (≤ 640px)
   ------------------------------------------------ */
@media (max-width: 640px) {
  :root { --pad-section: 56px 18px; }

  /* Hero: hide desktop split, show mobile stack */
  .hero-split  { display: none; }
  .hero-labels { display: none; }
  .hero-content { display: none; }

  .hero-stack  { display: flex; }
  .hero-content-mobile { display: block; }

  /* Nav */
  .nav-cta { padding: 8px 14px; font-size: 0.78rem; }
  .nav-logo img { height: 38px; }

  /* Buttons */
  .btn-outline { display: none; }

  /* Ref */
  .ref-grid { grid-template-columns: 1fr; }
  .ref-names { columns: 1; }

  /* Nutzen */
  .nutzen-grid { grid-template-columns: 1fr; }

  /* Ablauf */
  .ablauf-grid { grid-template-columns: 1fr; }

  /* Team */
  .team-grid { grid-template-columns: 1fr; }
}
