/* ═══════════════════════════════════════════════════
   Kobold Manufaktur – Haupt-Stylesheet
   Schriften: Cormorant Garamond (Display) + Jost (Body)
   Farben: Warm Cream / Steel Blue / Gold / Slate
═══════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

:root {
  --cream:   #f7f4ef;
  --cream2:  #ede8df;
  --beige:   #d4c5b0;
  --gold:    #b09060;
  --gold-l:  #d4b483;
  --steel:   #3d5a73;
  --steel-d: #263a4a;
  --steel-l: #e8eef3;
  --slate:   #7a8a96;
  --text:    #1e1e1e;
  --muted:   #7a7a7a;
  --white:   #ffffff;
  --line:    #ddd8cf;

  --fd: 'Cormorant Garamond', Georgia, serif;
  --fb: 'Jost', system-ui, sans-serif;

  --r: 4px;
  --r-md: 10px;
  --r-lg: 18px;
  --sh1: 0 2px 12px rgba(0,0,0,.06);
  --sh2: 0 8px 36px rgba(0,0,0,.10);
  --sh3: 0 20px 64px rgba(0,0,0,.13);
  --tr: .35s cubic-bezier(.4,0,.2,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--fb); color: var(--text); background: var(--cream); line-height: 1.65; }
img  { max-width: 100%; display: block; }
a    { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--fb); border: none; background: none; }
ul { list-style: none; }

/* ── UTILS ── */
.wrap   { max-width: 1200px; margin: 0 auto; padding: 0 28px; }
.wrap-sm { max-width: 780px; margin: 0 auto; padding: 0 28px; }
.sec    { padding: 96px 0; }
.sec-sm { padding: 60px 0; }
.center { text-align: center; }
.center .sec-sub { margin: 0 auto; }

/* ── TYPOGRAPHY ── */
.eyebrow {
  display: inline-block; font-family: var(--fb); font-size: 10.5px;
  font-weight: 500; letter-spacing: .22em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 14px;
}
.sec-title {
  font-family: var(--fd); font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 300; line-height: 1.18; color: var(--text);
  margin-bottom: 16px;
}
.sec-title em { font-style: italic; color: var(--gold); }
.sec-sub { color: var(--muted); font-size: 15px; font-weight: 300; max-width: 560px; line-height: 1.8; }
.lead { font-family: var(--fd); font-size: clamp(17px, 2vw, 22px); font-weight: 300; line-height: 1.6; color: var(--muted); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 26px; border-radius: var(--r);
  font-family: var(--fb); font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  transition: all var(--tr); cursor: pointer;
}
.btn-gold  { background: var(--gold); color: #fff; }
.btn-gold:hover { background: #9a7a50; transform: translateY(-2px); box-shadow: var(--sh2); }
.btn-steel { background: var(--steel); color: #fff; }
.btn-steel:hover { background: var(--steel-d); transform: translateY(-2px); box-shadow: var(--sh2); }
.btn-out   { border: 1.5px solid var(--gold); color: var(--gold); }
.btn-out:hover { background: var(--gold); color: #fff; }
.btn-out-steel { border: 1.5px solid var(--steel); color: var(--steel); }
.btn-out-steel:hover { background: var(--steel); color: #fff; }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.45); color: #fff; }
.btn-ghost:hover { background: rgba(255,255,255,.15); }

/* ── NAVIGATION ── */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 300;
  height: 68px; display: flex; align-items: center;
  background: rgba(247,244,239,.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow var(--tr);
}
.nav.scrolled { box-shadow: var(--sh1); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-logo  { display: flex; align-items: center; gap: 12px; }
.nav-logo img { height: 42px; width: auto; }
.nav-logo-text { font-family: var(--fd); font-size: 20px; font-weight: 400; letter-spacing: .04em; }
.nav-logo-text span { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-size: 12.5px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase;
  color: var(--muted); position: relative; transition: color var(--tr); padding-bottom: 3px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--gold);
  transform: scaleX(0); transition: transform var(--tr); transform-origin: left;
}
.nav-links a:hover, .nav-links a.active { color: var(--text); }
.nav-links a:hover::after, .nav-links a.active::after { transform: scaleX(1); }
.nav-cta { font-size: 12px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; }
.burger  { display: none; flex-direction: column; gap: 5px; padding: 6px; }
.burger span { display: block; width: 22px; height: 1.5px; background: var(--text); transition: var(--tr); border-radius: 1px; }
.burger.open span:nth-child(1) { transform: rotate(45deg) translate(4.5px,4.5px); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }
.mob-menu {
  position: fixed; top: 68px; left: 0; right: 0; bottom: 0; z-index: 299;
  background: var(--cream); display: none; flex-direction: column;
  padding: 40px 28px; gap: 28px; border-top: 1px solid var(--line);
}
.mob-menu.open { display: flex; }
.mob-menu a { font-size: 22px; font-family: var(--fd); font-weight: 300; color: var(--text); }
.mob-menu .btn { width: fit-content; }

/* ── HERO ── */
.hero {
  min-height: 100vh; padding-top: 68px;
  display: grid; grid-template-columns: 1fr 1fr;
  position: relative; overflow: hidden;
}
.hero-edu, .hero-ind {
  position: relative; display: flex; flex-direction: column;
  justify-content: flex-end; padding: 0;
  min-height: calc(100vh - 68px);
}

/* Slideshow container */
.slideshow {
  position: absolute; inset: 0; z-index: 0;
}
.slide {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 1.2s ease;
}
.slide.active { opacity: 1; }

/* Overlay gradients */
.hero-edu .slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(247,244,239,.96) 0%, rgba(247,244,239,.7) 40%, rgba(247,244,239,.2) 100%);
}
.hero-ind .slide-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to top, rgba(38,58,74,.97) 0%, rgba(38,58,74,.75) 40%, rgba(38,58,74,.2) 100%);
}

/* Hero content */
.hero-content {
  position: relative; z-index: 2; padding: 48px 48px 56px;
}
.hero-edu .hero-content { color: var(--text); }
.hero-ind .hero-content { color: #fff; }
.hero-eyebrow { font-size: 10px; font-weight: 500; letter-spacing: .24em; text-transform: uppercase; margin-bottom: 16px; opacity: .75; }
.hero-edu .hero-eyebrow { color: var(--gold); }
.hero-ind .hero-eyebrow { color: var(--gold-l); }
.hero-title-lg {
  font-family: var(--fd); font-size: clamp(32px, 4vw, 58px);
  font-weight: 300; line-height: 1.12; margin-bottom: 18px;
}
.hero-edu .hero-title-lg em { font-style: italic; color: var(--gold); }
.hero-ind .hero-title-lg em { font-style: italic; color: var(--gold-l); }
.hero-sub-txt { font-size: 14.5px; font-weight: 300; line-height: 1.75; margin-bottom: 28px; max-width: 400px; opacity: .88; }
.hero-points { margin-bottom: 32px; display: flex; flex-direction: column; gap: 8px; }
.hero-points li { display: flex; align-items: center; gap: 10px; font-size: 13.5px; font-weight: 300; opacity: .85; }
.hero-points li::before { content: ''; width: 16px; height: 1px; flex-shrink: 0; }
.hero-edu .hero-points li::before { background: var(--gold); }
.hero-ind .hero-points li::before { background: var(--gold-l); }
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* Slideshow dots */
.slide-dots { display: flex; gap: 7px; margin-bottom: 20px; }
.slide-dot { width: 20px; height: 2px; border-radius: 1px; background: rgba(255,255,255,.3); cursor: pointer; transition: all var(--tr); }
.hero-edu .slide-dot { background: rgba(176,144,96,.35); }
.hero-edu .slide-dot.active { background: var(--gold); width: 32px; }
.hero-ind .slide-dot { background: rgba(255,255,255,.3); }
.hero-ind .slide-dot.active { background: rgba(255,255,255,.9); width: 32px; }

/* Bridge divider */
.hero-divider {
  display: none; /* hidden on desktop – handled by CSS grid gap look */
}

/* ── BRIDGE SECTION ── */
.bridge-sec {
  background: var(--cream); padding: 0;
  display: flex; align-items: center; justify-content: center;
}
.bridge-img-wrap {
  width: 100%; max-height: 420px; overflow: hidden; position: relative;
}
.bridge-img-wrap img {
  width: 100%; height: 420px; object-fit: cover; object-position: center;
  display: block;
}
.bridge-caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(247,244,239,.98) 0%, transparent 100%);
  padding: 48px 28px 36px; text-align: center;
}
.bridge-caption h2 {
  font-family: var(--fd); font-size: clamp(22px,3vw,38px);
  font-weight: 300; color: var(--text); margin-bottom: 8px;
}
.bridge-caption h2 em { font-style: italic; color: var(--gold); }
.bridge-caption p { color: var(--muted); font-size: 15px; font-weight: 300; max-width: 580px; margin: 0 auto 22px; line-height: 1.75; }
.bridge-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── LEISTUNGS-CARDS ── */
.leistungen {
  background: var(--cream); 
}
.leistungen-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 2px;
  background: var(--line);
}
.leistung-col {
  background: var(--cream); padding: 64px 48px;
}
.leistung-col.ind-col { background: var(--steel-d); color: #fff; }
.leistung-col .eyebrow { display: block; margin-bottom: 10px; }
.leistung-col.ind-col .eyebrow { color: var(--gold-l); }
.leistung-col .sec-title { margin-bottom: 20px; }
.leistung-col.ind-col .sec-title { color: #fff; }
.leistung-col.ind-col .sec-title em { color: var(--gold-l); }
.leistung-list { margin: 28px 0 36px; display: flex; flex-direction: column; gap: 16px; }
.leistung-item { display: flex; align-items: flex-start; gap: 14px; }
.leistung-icon {
  width: 38px; height: 38px; border-radius: 3px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center; margin-top: 2px;
}
.leistung-icon-edu { background: var(--cream2); }
.leistung-icon-ind { background: rgba(255,255,255,.1); }
.leistung-item h4 { font-size: 14.5px; font-weight: 500; margin-bottom: 4px; }
.leistung-item p  { font-size: 13px; font-weight: 300; color: var(--muted); line-height: 1.65; }
.leistung-col.ind-col .leistung-item h4 { color: #fff; }
.leistung-col.ind-col .leistung-item p  { color: rgba(255,255,255,.6); }

/* ── BOTSCHAFTEN (10er Cards) ── */
.botschaften { padding: 88px 0; }
.botschaften-edu { background: var(--cream); }
.botschaften-ind { background: var(--steel-d); }
.botschaften-ind .sec-title { color: #fff; }
.botschaften-ind .sec-title em { color: var(--gold-l); }
.botschaften-ind .sec-sub { color: rgba(255,255,255,.6); }
.botschaften-ind .eyebrow { color: var(--gold-l); }
.b-cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px,1fr)); gap: 18px; margin-top: 44px; }
.b-card {
  padding: 24px 22px; border-radius: var(--r-md);
  border: 1px solid var(--line); background: var(--white);
  transition: box-shadow var(--tr), transform var(--tr);
  position: relative;
}
.b-card:hover { box-shadow: var(--sh2); transform: translateY(-3px); }
.botschaften-ind .b-card { background: rgba(255,255,255,.07); border-color: rgba(255,255,255,.12); }
.botschaften-ind .b-card:hover { background: rgba(255,255,255,.12); }
.b-card-num {
  font-family: var(--fd); font-size: 38px; font-weight: 300;
  line-height: 1; margin-bottom: 10px; opacity: .12;
}
.botschaften-edu .b-card-num { color: var(--gold); opacity: .2; }
.botschaften-ind .b-card-num { color: var(--gold-l); opacity: .25; }
.b-card p { font-size: 13.5px; font-weight: 300; line-height: 1.65; }
.botschaften-ind .b-card p { color: rgba(255,255,255,.82); }

/* ── PROZESS-SCHRITTE ── */
.prozess { background: var(--cream2); padding: 88px 0; }
.prozess-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.prozess-col h3 { font-family: var(--fd); font-size: 28px; font-weight: 300; margin-bottom: 32px; }
.steps-list { display: flex; flex-direction: column; gap: 24px; }
.step-item { display: flex; gap: 18px; align-items: flex-start; }
.step-num-box {
  width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center;
  justify-content: center; font-family: var(--fd); font-size: 15px; font-weight: 400;
  flex-shrink: 0; color: #fff;
}
.step-num-edu { background: var(--gold); }
.step-num-ind { background: var(--steel); }
.step-item h4 { font-size: 14.5px; font-weight: 500; margin-bottom: 4px; }
.step-item p  { font-size: 13px; color: var(--muted); font-weight: 300; line-height: 1.65; }

/* ── TESTIMONIALS ── */
.testimonials { background: var(--cream); padding: 88px 0; }
.t-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px,1fr)); gap: 24px; margin-top: 44px; }
.t-card { padding: 32px; border-radius: var(--r-md); background: var(--white); border: 1px solid var(--line); }
.t-card-q { font-family: var(--fd); font-size: 48px; color: var(--gold); line-height: .8; margin-bottom: 14px; font-weight: 300; }
.t-card p  { font-size: 14px; font-weight: 300; line-height: 1.75; margin-bottom: 20px; color: var(--text); font-family: var(--fd); font-style: italic; }
.t-card-name { font-size: 13px; font-weight: 500; }
.t-card-role { font-size: 12px; color: var(--muted); margin-top: 2px; }

/* ── STANDORTE ── */
.standorte { background: var(--cream2); padding: 72px 0; text-align: center; }
.standorte h3 { font-family: var(--fd); font-size: clamp(20px,2.5vw,30px); font-weight: 300; margin-bottom: 8px; }
.standorte p  { color: var(--muted); font-size: 14px; margin-bottom: 28px; }
.ort-chips { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.ort-chip {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 18px; border-radius: 24px;
  border: 1px solid var(--line); background: var(--white);
  font-size: 13px; font-weight: 500; color: var(--text);
}
.ort-chip svg { color: var(--gold); }

/* ── KONTAKT ── */
.kontakt-sec { background: var(--cream); padding: 96px 0; }
.kontakt-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.kontakt-info h3 { font-family: var(--fd); font-size: 34px; font-weight: 300; margin-bottom: 10px; line-height: 1.2; }
.kontakt-info h3 em { font-style: italic; color: var(--gold); }
.kontakt-info p { color: var(--muted); font-size: 14.5px; font-weight: 300; line-height: 1.8; margin-bottom: 32px; }
.k-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.k-icon { width: 40px; height: 40px; border-radius: var(--r); background: var(--cream2); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.k-label { font-size: 11px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-bottom: 2px; }
.k-val   { font-size: 15px; font-weight: 500; }
.sprachen { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 24px; }
.spr { padding: 5px 13px; border-radius: 20px; background: var(--cream2); border: 1px solid var(--line); font-size: 12.5px; color: var(--muted); }

/* Form */
.form-box { background: var(--white); border-radius: var(--r-lg); padding: 40px; box-shadow: var(--sh2); border: 1px solid var(--line); }
.form-box h3 { font-family: var(--fd); font-size: 22px; font-weight: 300; margin-bottom: 5px; }
.form-box .sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
.fg { margin-bottom: 16px; }
.fg label { display: block; font-size: 12px; font-weight: 500; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.fg input, .fg select, .fg textarea {
  width: 100%; padding: 10px 14px;
  border: 1.5px solid var(--line); border-radius: var(--r);
  font-family: var(--fb); font-size: 14px; color: var(--text);
  background: var(--cream); outline: none; transition: border-color var(--tr);
}
.fg input:focus, .fg select:focus, .fg textarea:focus { border-color: var(--gold); background: var(--white); }
.fg textarea { resize: vertical; min-height: 100px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fsub {
  width: 100%; padding: 13px; border-radius: var(--r);
  background: var(--gold); color: #fff;
  font-family: var(--fb); font-size: 13px; font-weight: 500;
  letter-spacing: .08em; text-transform: uppercase; cursor: pointer;
  transition: background var(--tr), transform var(--tr);
}
.fsub:hover { background: #9a7a50; transform: translateY(-1px); }
.form-note { font-size: 11px; color: var(--muted); text-align: center; margin-top: 10px; }

/* ── BUCHUNGSKALENDER ── */
.cal-sec { background: var(--cream2); padding: 88px 0; }
.cal-outer {
  max-width: 920px; margin: 48px auto 0;
  background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--sh2); border: 1px solid var(--line);
  display: grid; grid-template-columns: 1fr 300px; overflow: hidden;
}
.cal-left { padding: 36px; }
.cal-nav  { display: flex; align-items: center; justify-content: space-between; margin-bottom: 22px; }
.cal-month-label { font-family: var(--fd); font-size: 22px; font-weight: 300; }
.cal-arr  { width: 32px; height: 32px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; font-size: 15px; transition: all var(--tr); color: var(--muted); }
.cal-arr:hover { border-color: var(--gold); color: var(--gold); }
.cal-grid { display: grid; grid-template-columns: repeat(7,1fr); gap: 3px; text-align: center; }
.cal-dname { font-size: 10px; font-weight: 500; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); padding: 5px 0; }
.cal-cell  { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; margin: 0 auto; transition: all var(--tr); color: var(--text); cursor: default; }
.cal-cell.has      { cursor: pointer; color: var(--gold); font-weight: 500; }
.cal-cell.has:hover { background: var(--cream2); }
.cal-cell.selected { background: var(--gold); color: #fff !important; font-weight: 500; }
.cal-cell.today    { outline: 1.5px solid var(--gold); outline-offset: 1px; }
.cal-cell.past     { color: var(--line); }
.cal-legend { display: flex; gap: 14px; margin-top: 14px; font-size: 11.5px; color: var(--muted); align-items: center; flex-wrap: wrap; }
.cal-dot { width: 7px; height: 7px; border-radius: 50%; }
.cal-right { background: var(--cream); border-left: 1px solid var(--line); padding: 36px; display: flex; flex-direction: column; }
.cal-right h3 { font-family: var(--fd); font-size: 18px; font-weight: 300; margin-bottom: 6px; }
.cal-sel-date { font-size: 13px; color: var(--muted); margin-bottom: 18px; min-height: 18px; }
.times { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 18px; }
.time-btn { padding: 8px 5px; border-radius: var(--r); border: 1px solid var(--line); font-size: 12.5px; font-weight: 500; background: var(--white); transition: all var(--tr); cursor: pointer; color: var(--text); font-family: var(--fb); }
.time-btn:hover   { border-color: var(--gold); color: var(--gold); }
.time-btn.active  { background: var(--gold); color: #fff; border-color: var(--gold); }
.time-btn.taken   { opacity: .35; cursor: not-allowed; text-decoration: line-through; }
.cal-form { display: none; flex-direction: column; gap: 9px; margin-top: auto; }
.cal-form input, .cal-form select { width: 100%; padding: 9px 11px; border: 1.5px solid var(--line); border-radius: var(--r); font-family: var(--fb); font-size: 13px; outline: none; transition: border-color var(--tr); background: var(--white); }
.cal-form input:focus, .cal-form select:focus { border-color: var(--gold); }
.cal-confirm { width: 100%; padding: 11px; border-radius: var(--r); background: var(--gold); color: #fff; font-weight: 500; font-size: 13px; letter-spacing: .06em; text-transform: uppercase; transition: all var(--tr); cursor: pointer; border: none; font-family: var(--fb); }
.cal-confirm:hover { background: #9a7a50; transform: translateY(-1px); }
.cal-success { display: none; text-align: center; padding: 20px; background: #f0f7f2; border-radius: var(--r-md); }
.cal-success .big { font-size: 38px; color: #4a9a6a; margin-bottom: 8px; }
.cal-success h4 { font-family: var(--fd); font-size: 18px; font-weight: 300; margin-bottom: 6px; }
.cal-success p  { font-size: 12.5px; color: var(--muted); }

/* ── ÜBER UNS TEASER ── */
.ueber-teaser { background: var(--cream2); padding: 88px 0; }
.ueber-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.ueber-stats { display: flex; gap: 40px; flex-wrap: wrap; margin-top: 32px; }
.u-stat .n { font-family: var(--fd); font-size: 48px; font-weight: 300; line-height: 1; color: var(--gold); }
.u-stat .l { font-size: 12px; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); margin-top: 4px; }
.ueber-img { border-radius: var(--r-md); overflow: hidden; box-shadow: var(--sh2); }
.ueber-img img { width: 100%; height: 340px; object-fit: cover; }

/* ── FOOTER ── */
.footer { background: var(--steel-d); color: rgba(255,255,255,.65); padding: 56px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 44px; margin-bottom: 44px; }
.footer-brand { font-family: var(--fd); font-size: 22px; font-weight: 300; color: #fff; margin-bottom: 10px; }
.footer-brand span { color: var(--gold-l); }
.footer-tagline { font-size: 13px; font-weight: 300; line-height: 1.75; margin-bottom: 18px; }
.footer-col h4 { font-size: 10.5px; font-weight: 500; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.5); margin-bottom: 14px; }
.footer-links a { display: block; font-size: 14px; font-weight: 300; margin-bottom: 9px; transition: color var(--tr); }
.footer-links a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 20px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; font-size: 12.5px; }
.footer-flags { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 14px; }
.footer-flag { padding: 3px 10px; border-radius: 14px; background: rgba(255,255,255,.08); font-size: 12px; }

/* ── CHATBOT ── */
.chat-fab {
  position: fixed; bottom: 24px; right: 24px; z-index: 400;
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--gold); display: flex; align-items: center; justify-content: center;
  box-shadow: var(--sh3); cursor: pointer; transition: transform var(--tr);
  border: none;
}
.chat-fab:hover { transform: scale(1.08); }
.chat-win {
  position: fixed; bottom: 86px; right: 24px; z-index: 400;
  width: 316px; background: var(--white); border-radius: var(--r-lg);
  box-shadow: var(--sh3); border: 1px solid var(--line);
  display: none; flex-direction: column; max-height: 420px; overflow: hidden;
}
.chat-win.open { display: flex; }
.chat-head { background: linear-gradient(135deg, var(--gold), var(--steel)); color: #fff; padding: 14px 18px; display: flex; align-items: center; justify-content: space-between; }
.chat-head h4 { font-size: 14px; font-family: var(--fd); font-weight: 400; }
.chat-head span { font-size: 11px; opacity: .72; }
.chat-close { color: #fff; font-size: 20px; line-height: 1; cursor: pointer; }
.chat-body { flex: 1; padding: 14px; overflow-y: auto; display: flex; flex-direction: column; gap: 9px; }
.chat-msg { padding: 9px 13px; border-radius: 12px; font-size: 13px; line-height: 1.55; max-width: 85%; font-weight: 300; }
.chat-bot  { background: var(--cream2); color: var(--text); align-self: flex-start; border-bottom-left-radius: 3px; }
.chat-user { background: var(--gold); color: #fff; align-self: flex-end; border-bottom-right-radius: 3px; }
.chat-opts { display: flex; flex-direction: column; gap: 5px; }
.chat-opt  { background: var(--white); border: 1px solid var(--line); padding: 7px 11px; border-radius: 8px; font-size: 12px; text-align: left; font-family: var(--fb); transition: background var(--tr); cursor: pointer; font-weight: 300; }
.chat-opt:hover { background: var(--cream2); }
.chat-in-row { padding: 10px 14px; border-top: 1px solid var(--line); display: flex; gap: 7px; }
.chat-in   { flex: 1; padding: 7px 11px; border: 1.5px solid var(--line); border-radius: 18px; font-family: var(--fb); font-size: 13px; outline: none; background: var(--cream); }
.chat-in:focus { border-color: var(--gold); }
.chat-send { width: 32px; height: 32px; border-radius: 50%; background: var(--gold); color: #fff; display: flex; align-items: center; justify-content: center; border: none; cursor: pointer; flex-shrink: 0; }

/* ── SEO / PREVIEW BADGE ── */
.seo-badge {
  position: fixed; top: 80px; right: 12px; z-index: 250;
  background: #22a06b; color: #fff; font-size: 10px; font-weight: 600;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 14px; opacity: .85;
  pointer-events: none;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity:0; transform:translateY(22px); } to { opacity:1; transform:translateY(0); } }
.fu1 { animation: fadeUp .6s ease both; }
.fu2 { animation: fadeUp .6s ease .12s both; }
.fu3 { animation: fadeUp .6s ease .24s both; }
.fu4 { animation: fadeUp .6s ease .36s both; }

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .leistungen-grid { grid-template-columns: 1fr; }
  .kontakt-grid { grid-template-columns: 1fr; gap: 36px; }
  .ueber-grid { grid-template-columns: 1fr; gap: 40px; }
  .prozess-grid { grid-template-columns: 1fr; gap: 40px; }
  .cal-outer { grid-template-columns: 1fr; max-width: 480px; }
  .cal-right { border-left: none; border-top: 1px solid var(--line); }
}
@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .burger { display: flex; }

  /* Mobile hero: stacked but both visible */
  .hero { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .hero-edu, .hero-ind { min-height: 55vh; }
  .hero-content { padding: 28px 20px 36px; }
  .hero-title-lg { font-size: clamp(28px, 8vw, 40px); }

  .leistung-col { padding: 40px 24px; }
  .bridge-img-wrap img { height: 300px; }
  .frow { grid-template-columns: 1fr; }
  .sec { padding: 64px 0; }
  .wrap { padding: 0 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .chat-win { right: 8px; left: 8px; width: auto; }
  .b-cards { grid-template-columns: repeat(auto-fill, minmax(180px,1fr)); }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero { grid-template-columns: 1fr 1fr; }
  .hero-edu, .hero-ind { min-height: calc(100vh - 68px); }
}
